2019-02-01 14:08:21 -05:00
|
|
|
// +build !confonly
|
|
|
|
|
2015-10-28 18:18:07 -04:00
|
|
|
package router
|
|
|
|
|
2018-09-30 17:08:41 -04:00
|
|
|
//go:generate errorgen
|
2017-04-08 19:43:25 -04:00
|
|
|
|
2015-10-28 18:18:07 -04:00
|
|
|
import (
|
2017-01-13 07:41:40 -05:00
|
|
|
"context"
|
|
|
|
|
2018-01-10 06:22:37 -05:00
|
|
|
"v2ray.com/core"
|
2017-01-06 09:32:36 -05:00
|
|
|
"v2ray.com/core/common"
|
2019-02-28 03:28:55 -05:00
|
|
|
"v2ray.com/core/common/net"
|
2018-10-11 16:34:31 -04:00
|
|
|
"v2ray.com/core/common/session"
|
|
|
|
"v2ray.com/core/features/dns"
|
2018-11-07 15:08:20 -05:00
|
|
|
"v2ray.com/core/features/outbound"
|
2018-10-11 16:34:31 -04:00
|
|
|
"v2ray.com/core/features/routing"
|
2015-10-28 18:18:07 -04:00
|
|
|
)
|
|
|
|
|
2018-10-22 09:58:52 -04:00
|
|
|
func init() {
|
|
|
|
common.Must(common.RegisterConfig((*Config)(nil), func(ctx context.Context, config interface{}) (interface{}, error) {
|
|
|
|
r := new(Router)
|
2018-11-07 15:08:20 -05:00
|
|
|
if err := core.RequireFeatures(ctx, func(d dns.Client, ohm outbound.Manager) error {
|
|
|
|
return r.Init(config.(*Config), d, ohm)
|
2018-10-22 09:58:52 -04:00
|
|
|
}); err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
return r, nil
|
|
|
|
}))
|
|
|
|
}
|
|
|
|
|
2018-10-11 14:43:37 -04:00
|
|
|
// Router is an implementation of routing.Router.
|
2016-10-12 10:11:13 -04:00
|
|
|
type Router struct {
|
|
|
|
domainStrategy Config_DomainStrategy
|
2018-11-07 15:08:20 -05:00
|
|
|
rules []*Rule
|
|
|
|
balancers map[string]*Balancer
|
2018-10-11 16:34:31 -04:00
|
|
|
dns dns.Client
|
2015-10-28 18:18:07 -04:00
|
|
|
}
|
|
|
|
|
2018-10-22 09:58:52 -04:00
|
|
|
// Init initializes the Router.
|
2018-11-07 15:08:20 -05:00
|
|
|
func (r *Router) Init(config *Config, d dns.Client, ohm outbound.Manager) error {
|
2018-10-22 09:58:52 -04:00
|
|
|
r.domainStrategy = config.DomainStrategy
|
|
|
|
r.dns = d
|
2016-10-12 10:11:13 -04:00
|
|
|
|
2018-11-07 15:08:20 -05: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
|
|
|
|
}
|
|
|
|
r.balancers[rule.Tag] = balancer
|
|
|
|
}
|
|
|
|
|
|
|
|
r.rules = make([]*Rule, 0, len(config.Rule))
|
|
|
|
for _, rule := range config.Rule {
|
2018-01-10 06:22:37 -05:00
|
|
|
cond, err := rule.BuildCondition()
|
|
|
|
if err != nil {
|
2018-10-22 09:58:52 -04:00
|
|
|
return err
|
2016-10-12 10:11:13 -04:00
|
|
|
}
|
2018-11-07 15:08:20 -05: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-01-10 06:22:37 -05:00
|
|
|
}
|
|
|
|
|
2018-10-22 09:58:52 -04:00
|
|
|
return nil
|
2015-10-28 18:18:07 -04:00
|
|
|
}
|
|
|
|
|
2018-01-10 06:22:37 -05:00
|
|
|
func (r *Router) PickRoute(ctx context.Context) (string, error) {
|
2018-11-07 15:08:20 -05:00
|
|
|
rule, err := r.pickRouteInternal(ctx)
|
|
|
|
if err != nil {
|
|
|
|
return "", err
|
|
|
|
}
|
|
|
|
return rule.GetTag()
|
|
|
|
}
|
|
|
|
|
2018-12-04 14:36:51 -05:00
|
|
|
func isDomainOutbound(outbound *session.Outbound) bool {
|
|
|
|
return outbound != nil && outbound.Target.IsValid() && outbound.Target.Address.Family().IsDomain()
|
|
|
|
}
|
|
|
|
|
|
|
|
// PickRoute implements routing.Router.
|
|
|
|
func (r *Router) pickRouteInternal(ctx context.Context) (*Rule, error) {
|
2019-02-28 03:28:55 -05:00
|
|
|
sessionContext := &Context{
|
|
|
|
Inbound: session.InboundFromContext(ctx),
|
|
|
|
Outbound: session.OutboundFromContext(ctx),
|
|
|
|
Content: session.ContentFromContext(ctx),
|
|
|
|
}
|
|
|
|
|
|
|
|
if r.domainStrategy == Config_IpOnDemand {
|
|
|
|
sessionContext.dnsClient = r.dns
|
2017-11-15 06:55:47 -05:00
|
|
|
}
|
|
|
|
|
2017-04-23 13:16:56 -04:00
|
|
|
for _, rule := range r.rules {
|
2019-02-28 03:28:55 -05:00
|
|
|
if rule.Apply(sessionContext) {
|
2018-11-07 15:08:20 -05:00
|
|
|
return rule, nil
|
2016-10-12 10:11:13 -04:00
|
|
|
}
|
2016-08-18 02:34:21 -04:00
|
|
|
}
|
2017-01-26 14:46:44 -05:00
|
|
|
|
2019-02-28 03:28:55 -05:00
|
|
|
if r.domainStrategy != Config_IpIfNonMatch || !isDomainOutbound(sessionContext.Outbound) {
|
2018-11-07 15:08:20 -05:00
|
|
|
return nil, common.ErrNoClue
|
2017-02-09 16:49:38 -05:00
|
|
|
}
|
|
|
|
|
2019-02-28 03:28:55 -05:00
|
|
|
sessionContext.dnsClient = r.dns
|
2018-12-04 14:36:51 -05:00
|
|
|
|
|
|
|
// Try applying rules again if we have IPs.
|
|
|
|
for _, rule := range r.rules {
|
2019-02-28 03:28:55 -05:00
|
|
|
if rule.Apply(sessionContext) {
|
2018-12-04 14:36:51 -05:00
|
|
|
return rule, nil
|
2016-10-12 10:11:13 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-11-07 15:08:20 -05:00
|
|
|
return nil, common.ErrNoClue
|
2016-10-16 10:04:30 -04:00
|
|
|
}
|
|
|
|
|
2018-04-04 15:32:40 -04:00
|
|
|
// Start implements common.Runnable.
|
2017-04-23 13:16:56 -04:00
|
|
|
func (*Router) Start() error {
|
2017-02-01 15:35:40 -05:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2018-04-04 15:32:40 -04:00
|
|
|
// Close implements common.Closable.
|
2018-02-08 09:39:46 -05:00
|
|
|
func (*Router) Close() error {
|
|
|
|
return nil
|
|
|
|
}
|
2017-02-01 15:35:40 -05:00
|
|
|
|
2018-10-12 17:57:56 -04:00
|
|
|
// Type implement common.HasType.
|
|
|
|
func (*Router) Type() interface{} {
|
|
|
|
return routing.RouterType()
|
|
|
|
}
|
2019-02-28 03:28:55 -05:00
|
|
|
|
|
|
|
type Context struct {
|
|
|
|
Inbound *session.Inbound
|
|
|
|
Outbound *session.Outbound
|
|
|
|
Content *session.Content
|
|
|
|
|
|
|
|
dnsClient dns.Client
|
|
|
|
}
|
|
|
|
|
|
|
|
func (c *Context) GetTargetIPs() []net.IP {
|
|
|
|
if c.Outbound == nil || !c.Outbound.Target.IsValid() {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
if c.Outbound.Target.Address.Family().IsIP() {
|
|
|
|
return []net.IP{c.Outbound.Target.Address.IP()}
|
|
|
|
}
|
|
|
|
|
|
|
|
if len(c.Outbound.ResolvedIPs) > 0 {
|
|
|
|
return c.Outbound.ResolvedIPs
|
|
|
|
}
|
|
|
|
|
|
|
|
if c.dnsClient != nil {
|
|
|
|
domain := c.Outbound.Target.Address.Domain()
|
|
|
|
ips, err := c.dnsClient.LookupIP(domain)
|
|
|
|
if err == nil {
|
|
|
|
c.Outbound.ResolvedIPs = ips
|
|
|
|
return ips
|
|
|
|
}
|
|
|
|
newError("resolve ip for ", domain).Base(err).WriteToLog()
|
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|