v2fly/app/router/router.go

151 lines
3.6 KiB
Go
Raw Normal View History

2015-10-28 22:18:07 +00:00
package router
2021-02-16 20:31:50 +00:00
//go:generate go run github.com/v2fly/v2ray-core/v4/common/errors/errorgen
2017-04-08 23:43:25 +00:00
2015-10-28 22:18:07 +00:00
import (
2017-01-13 12:41:40 +00:00
"context"
2021-04-13 15:06:48 +00:00
2021-02-16 20:31:50 +00:00
core "github.com/v2fly/v2ray-core/v4"
"github.com/v2fly/v2ray-core/v4/common"
"github.com/v2fly/v2ray-core/v4/features/dns"
"github.com/v2fly/v2ray-core/v4/features/outbound"
"github.com/v2fly/v2ray-core/v4/features/routing"
routing_dns "github.com/v2fly/v2ray-core/v4/features/routing/dns"
2015-10-28 22:18:07 +00:00
)
// Router is an implementation of routing.Router.
2016-10-12 14:11:13 +00:00
type Router struct {
domainStrategy Config_DomainStrategy
2018-11-07 20:08:20 +00:00
rules []*Rule
balancers map[string]*Balancer
2018-10-11 20:34:31 +00:00
dns dns.Client
2015-10-28 22:18:07 +00:00
}
// Route is an implementation of routing.Route.
type Route struct {
routing.Context
outboundGroupTags []string
outboundTag string
}
2018-10-22 13:58:52 +00:00
// Init initializes the Router.
2021-04-08 19:55:25 +00:00
func (r *Router) Init(ctx context.Context, config *Config, d dns.Client, ohm outbound.Manager) error {
2018-10-22 13:58:52 +00:00
r.domainStrategy = config.DomainStrategy
r.dns = d
2016-10-12 14:11:13 +00:00
2018-11-07 20:08:20 +00:00
r.balancers = make(map[string]*Balancer, len(config.BalancingRule))
for _, rule := range config.BalancingRule {
balancer, err := rule.Build(ohm)
if err != nil {
return err
}
2021-04-08 20:34:52 +00:00
balancer.InjectContext(ctx)
2018-11-07 20:08:20 +00:00
r.balancers[rule.Tag] = balancer
}
r.rules = make([]*Rule, 0, len(config.Rule))
for _, rule := range config.Rule {
cond, err := rule.BuildCondition()
if err != nil {
2018-10-22 13:58:52 +00:00
return err
2016-10-12 14:11:13 +00:00
}
2018-11-07 20:08:20 +00:00
rr := &Rule{
Condition: cond,
Tag: rule.GetTag(),
}
btag := rule.GetBalancingTag()
if len(btag) > 0 {
brule, found := r.balancers[btag]
if !found {
return newError("balancer ", btag, " not found")
}
rr.Balancer = brule
}
r.rules = append(r.rules, rr)
}
2018-10-22 13:58:52 +00:00
return nil
2015-10-28 22:18:07 +00:00
}
// PickRoute implements routing.Router.
func (r *Router) PickRoute(ctx routing.Context) (routing.Route, error) {
rule, ctx, err := r.pickRouteInternal(ctx)
if err != nil {
return nil, err
}
tag, err := rule.GetTag()
2018-11-07 20:08:20 +00:00
if err != nil {
return nil, err
2018-11-07 20:08:20 +00:00
}
return &Route{Context: ctx, outboundTag: tag}, nil
2018-11-07 20:08:20 +00:00
}
func (r *Router) pickRouteInternal(ctx routing.Context) (*Rule, routing.Context, error) {
2020-12-30 10:35:19 +00:00
// SkipDNSResolve is set from DNS module.
// the DOH remote server maybe a domain name,
// this prevents cycle resolving dead loop
skipDNSResolve := ctx.GetSkipDNSResolve()
if r.domainStrategy == Config_IpOnDemand && !skipDNSResolve {
ctx = routing_dns.ContextWithDNSClient(ctx, r.dns)
2017-11-15 11:55:47 +00:00
}
2017-04-23 17:16:56 +00:00
for _, rule := range r.rules {
if rule.Apply(ctx) {
return rule, ctx, nil
2016-10-12 14:11:13 +00:00
}
2016-08-18 06:34:21 +00:00
}
2020-12-30 10:35:19 +00:00
if r.domainStrategy != Config_IpIfNonMatch || len(ctx.GetTargetDomain()) == 0 || skipDNSResolve {
return nil, ctx, common.ErrNoClue
2017-02-09 21:49:38 +00:00
}
ctx = routing_dns.ContextWithDNSClient(ctx, r.dns)
2018-12-04 19:36:51 +00:00
// Try applying rules again if we have IPs.
for _, rule := range r.rules {
if rule.Apply(ctx) {
return rule, ctx, nil
2016-10-12 14:11:13 +00:00
}
}
return nil, ctx, common.ErrNoClue
2016-10-16 14:04:30 +00:00
}
2018-04-04 19:32:40 +00:00
// Start implements common.Runnable.
2017-04-23 17:16:56 +00:00
func (*Router) Start() error {
2017-02-01 20:35:40 +00:00
return nil
}
2018-04-04 19:32:40 +00:00
// Close implements common.Closable.
2018-02-08 14:39:46 +00:00
func (*Router) Close() error {
return nil
}
2017-02-01 20:35:40 +00:00
2018-10-12 21:57:56 +00:00
// Type implement common.HasType.
func (*Router) Type() interface{} {
return routing.RouterType()
}
// GetOutboundGroupTags implements routing.Route.
func (r *Route) GetOutboundGroupTags() []string {
return r.outboundGroupTags
}
// GetOutboundTag implements routing.Route.
func (r *Route) GetOutboundTag() string {
return r.outboundTag
}
func init() {
common.Must(common.RegisterConfig((*Config)(nil), func(ctx context.Context, config interface{}) (interface{}, error) {
r := new(Router)
if err := core.RequireFeatures(ctx, func(d dns.Client, ohm outbound.Manager) error {
2021-04-08 19:55:25 +00:00
return r.Init(ctx, config.(*Config), d, ohm)
}); err != nil {
return nil, err
}
return r, nil
}))
}