mirror of
https://github.com/v2fly/v2ray-core.git
synced 2024-11-16 09:26:21 -05:00
126 lines
2.6 KiB
Go
126 lines
2.6 KiB
Go
package router
|
|
|
|
//go:generate go run $GOPATH/src/v2ray.com/core/common/errors/errorgen/main.go -pkg router -path App,Router
|
|
|
|
import (
|
|
"context"
|
|
|
|
"v2ray.com/core"
|
|
"v2ray.com/core/common"
|
|
"v2ray.com/core/common/net"
|
|
"v2ray.com/core/proxy"
|
|
)
|
|
|
|
type Router struct {
|
|
domainStrategy Config_DomainStrategy
|
|
rules []Rule
|
|
dns core.DNSClient
|
|
}
|
|
|
|
func NewRouter(ctx context.Context, config *Config) (*Router, error) {
|
|
v := core.FromContext(ctx)
|
|
if v == nil {
|
|
return nil, newError("V is not in context")
|
|
}
|
|
|
|
r := &Router{
|
|
domainStrategy: config.DomainStrategy,
|
|
rules: make([]Rule, len(config.Rule)),
|
|
dns: v.DNSClient(),
|
|
}
|
|
|
|
for idx, rule := range config.Rule {
|
|
r.rules[idx].Tag = rule.Tag
|
|
cond, err := rule.BuildCondition()
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
r.rules[idx].Condition = cond
|
|
}
|
|
|
|
if err := v.RegisterFeature((*core.Router)(nil), r); err != nil {
|
|
return nil, newError("unable to register Router").Base(err)
|
|
}
|
|
return r, nil
|
|
}
|
|
|
|
type ipResolver struct {
|
|
dns core.DNSClient
|
|
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) {
|
|
resolver := &ipResolver{
|
|
dns: r.dns,
|
|
}
|
|
if r.domainStrategy == Config_IpOnDemand {
|
|
if dest, ok := proxy.TargetFromContext(ctx); ok && dest.Address.Family().IsDomain() {
|
|
resolver.domain = dest.Address.Domain()
|
|
ctx = proxy.ContextWithResolveIPs(ctx, resolver)
|
|
}
|
|
}
|
|
|
|
for _, rule := range r.rules {
|
|
if rule.Apply(ctx) {
|
|
return rule.Tag, nil
|
|
}
|
|
}
|
|
|
|
dest, ok := proxy.TargetFromContext(ctx)
|
|
if !ok {
|
|
return "", core.ErrNoClue
|
|
}
|
|
|
|
if r.domainStrategy == Config_IpIfNonMatch && dest.Address.Family().IsDomain() {
|
|
resolver.domain = dest.Address.Domain()
|
|
ips := resolver.Resolve()
|
|
if len(ips) > 0 {
|
|
ctx = proxy.ContextWithResolveIPs(ctx, resolver)
|
|
for _, rule := range r.rules {
|
|
if rule.Apply(ctx) {
|
|
return rule.Tag, nil
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
return "", core.ErrNoClue
|
|
}
|
|
|
|
func (*Router) Start() error {
|
|
return nil
|
|
}
|
|
|
|
func (*Router) Close() error {
|
|
return nil
|
|
}
|
|
|
|
func init() {
|
|
common.Must(common.RegisterConfig((*Config)(nil), func(ctx context.Context, config interface{}) (interface{}, error) {
|
|
return NewRouter(ctx, config.(*Config))
|
|
}))
|
|
}
|