2015-10-28 18:18:07 -04:00
|
|
|
package router
|
|
|
|
|
2017-04-08 19:43:25 -04:00
|
|
|
//go:generate go run $GOPATH/src/v2ray.com/core/tools/generrorgen/main.go -pkg router -path App,Router
|
|
|
|
|
2015-10-28 18:18:07 -04:00
|
|
|
import (
|
2017-01-13 07:41:40 -05:00
|
|
|
"context"
|
|
|
|
|
2016-08-20 14:55:45 -04:00
|
|
|
"v2ray.com/core/app"
|
2016-10-12 10:11:13 -04:00
|
|
|
"v2ray.com/core/app/dns"
|
2017-02-01 15:35:40 -05:00
|
|
|
"v2ray.com/core/app/log"
|
2017-01-06 09:32:36 -05:00
|
|
|
"v2ray.com/core/common"
|
2017-01-13 18:27:45 -05:00
|
|
|
"v2ray.com/core/common/net"
|
2016-10-18 17:01:39 -04:00
|
|
|
"v2ray.com/core/proxy"
|
2015-10-28 18:18:07 -04:00
|
|
|
)
|
|
|
|
|
2016-10-12 10:11:13 -04:00
|
|
|
var (
|
2017-04-08 19:43:25 -04:00
|
|
|
ErrNoRuleApplicable = newError("No rule applicable")
|
2016-10-12 10:11:13 -04:00
|
|
|
)
|
|
|
|
|
|
|
|
type Router struct {
|
|
|
|
domainStrategy Config_DomainStrategy
|
|
|
|
rules []Rule
|
2017-01-27 16:49:54 -05:00
|
|
|
dnsServer dns.Server
|
2015-10-28 18:18:07 -04:00
|
|
|
}
|
|
|
|
|
2017-01-13 07:41:40 -05:00
|
|
|
func NewRouter(ctx context.Context, config *Config) (*Router, error) {
|
|
|
|
space := app.SpaceFromContext(ctx)
|
|
|
|
if space == nil {
|
2017-04-09 09:04:04 -04:00
|
|
|
return nil, newError("no space in context")
|
2017-01-13 07:41:40 -05:00
|
|
|
}
|
2016-10-12 10:11:13 -04:00
|
|
|
r := &Router{
|
|
|
|
domainStrategy: config.DomainStrategy,
|
2017-01-27 16:49:54 -05:00
|
|
|
rules: make([]Rule, len(config.Rule)),
|
2016-10-12 10:11:13 -04:00
|
|
|
}
|
|
|
|
|
2017-01-06 09:32:36 -05:00
|
|
|
space.OnInitialize(func() error {
|
2016-10-12 10:11:13 -04:00
|
|
|
for idx, rule := range config.Rule {
|
|
|
|
r.rules[idx].Tag = rule.Tag
|
|
|
|
cond, err := rule.BuildCondition()
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
r.rules[idx].Condition = cond
|
|
|
|
}
|
|
|
|
|
2017-01-06 09:32:36 -05:00
|
|
|
r.dnsServer = dns.FromSpace(space)
|
|
|
|
if r.dnsServer == nil {
|
2017-04-09 09:04:04 -04:00
|
|
|
return newError("DNS is not found in the space")
|
2016-10-12 10:11:13 -04:00
|
|
|
}
|
|
|
|
return nil
|
|
|
|
})
|
2017-01-13 07:41:40 -05:00
|
|
|
return r, nil
|
2015-10-28 18:18:07 -04:00
|
|
|
}
|
|
|
|
|
2017-01-27 16:49:54 -05:00
|
|
|
func (v *Router) resolveIP(dest net.Destination) []net.Address {
|
2016-11-27 15:39:09 -05:00
|
|
|
ips := v.dnsServer.Get(dest.Address.Domain())
|
2016-10-12 10:11:13 -04:00
|
|
|
if len(ips) == 0 {
|
|
|
|
return nil
|
|
|
|
}
|
2017-01-26 14:46:44 -05:00
|
|
|
dests := make([]net.Address, len(ips))
|
2016-10-12 10:11:13 -04:00
|
|
|
for idx, ip := range ips {
|
2017-01-26 14:46:44 -05:00
|
|
|
dests[idx] = net.IPAddress(ip)
|
2016-10-12 10:11:13 -04:00
|
|
|
}
|
|
|
|
return dests
|
|
|
|
}
|
|
|
|
|
2017-01-27 16:49:54 -05:00
|
|
|
func (v *Router) TakeDetour(ctx context.Context) (string, error) {
|
2016-11-27 15:39:09 -05:00
|
|
|
for _, rule := range v.rules {
|
2017-01-26 14:46:44 -05:00
|
|
|
if rule.Apply(ctx) {
|
2016-10-12 10:11:13 -04:00
|
|
|
return rule.Tag, nil
|
|
|
|
}
|
2016-08-18 02:34:21 -04:00
|
|
|
}
|
2017-01-26 14:46:44 -05:00
|
|
|
|
2017-02-09 16:49:38 -05:00
|
|
|
dest, ok := proxy.TargetFromContext(ctx)
|
|
|
|
if !ok {
|
|
|
|
return "", ErrNoRuleApplicable
|
|
|
|
}
|
|
|
|
|
2016-11-27 15:39:09 -05:00
|
|
|
if v.domainStrategy == Config_IpIfNonMatch && dest.Address.Family().IsDomain() {
|
2017-04-08 19:43:25 -04:00
|
|
|
log.Trace(newError("looking up IP for ", dest))
|
2017-01-27 16:49:54 -05:00
|
|
|
ipDests := v.resolveIP(dest)
|
2016-10-12 10:11:13 -04:00
|
|
|
if ipDests != nil {
|
2017-01-26 14:46:44 -05:00
|
|
|
ctx = proxy.ContextWithResolveIPs(ctx, ipDests)
|
|
|
|
for _, rule := range v.rules {
|
|
|
|
if rule.Apply(ctx) {
|
|
|
|
return rule.Tag, nil
|
2016-10-12 10:11:13 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return "", ErrNoRuleApplicable
|
2015-10-28 18:18:07 -04:00
|
|
|
}
|
2015-11-03 17:24:56 -05:00
|
|
|
|
2017-01-13 07:41:40 -05:00
|
|
|
func (Router) Interface() interface{} {
|
|
|
|
return (*Router)(nil)
|
2016-10-16 10:04:30 -04:00
|
|
|
}
|
|
|
|
|
2017-02-01 15:35:40 -05:00
|
|
|
func (Router) Start() error {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (Router) Close() {}
|
|
|
|
|
2017-01-06 09:32:36 -05:00
|
|
|
func FromSpace(space app.Space) *Router {
|
2017-01-13 07:41:40 -05:00
|
|
|
app := space.GetApplication((*Router)(nil))
|
2017-01-06 09:32:36 -05:00
|
|
|
if app == nil {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
return app.(*Router)
|
2016-10-16 10:04:30 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
func init() {
|
2017-01-13 07:41:40 -05:00
|
|
|
common.Must(common.RegisterConfig((*Config)(nil), func(ctx context.Context, config interface{}) (interface{}, error) {
|
|
|
|
return NewRouter(ctx, config.(*Config))
|
|
|
|
}))
|
2016-10-16 10:04:30 -04:00
|
|
|
}
|