| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117 |
- package router
- //go:generate go run $GOPATH/src/v2ray.com/core/tools/generrorgen/main.go -pkg router -path App,Router
- import (
- "context"
- "v2ray.com/core/app"
- "v2ray.com/core/app/dns"
- "v2ray.com/core/app/log"
- "v2ray.com/core/common"
- "v2ray.com/core/common/net"
- "v2ray.com/core/proxy"
- )
- var (
- ErrNoRuleApplicable = newError("No rule applicable")
- )
- type Router struct {
- domainStrategy Config_DomainStrategy
- rules []Rule
- dnsServer dns.Server
- }
- func NewRouter(ctx context.Context, config *Config) (*Router, error) {
- space := app.SpaceFromContext(ctx)
- if space == nil {
- return nil, newError("no space in context")
- }
- r := &Router{
- domainStrategy: config.DomainStrategy,
- rules: make([]Rule, len(config.Rule)),
- }
- space.OnInitialize(func() error {
- 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
- }
- r.dnsServer = dns.FromSpace(space)
- if r.dnsServer == nil {
- return newError("DNS is not found in the space")
- }
- return nil
- })
- return r, nil
- }
- func (v *Router) resolveIP(dest net.Destination) []net.Address {
- ips := v.dnsServer.Get(dest.Address.Domain())
- if len(ips) == 0 {
- return nil
- }
- dests := make([]net.Address, len(ips))
- for idx, ip := range ips {
- dests[idx] = net.IPAddress(ip)
- }
- return dests
- }
- func (v *Router) TakeDetour(ctx context.Context) (string, error) {
- for _, rule := range v.rules {
- if rule.Apply(ctx) {
- return rule.Tag, nil
- }
- }
- dest, ok := proxy.TargetFromContext(ctx)
- if !ok {
- return "", ErrNoRuleApplicable
- }
- if v.domainStrategy == Config_IpIfNonMatch && dest.Address.Family().IsDomain() {
- log.Trace(newError("looking up IP for ", dest))
- ipDests := v.resolveIP(dest)
- if ipDests != nil {
- ctx = proxy.ContextWithResolveIPs(ctx, ipDests)
- for _, rule := range v.rules {
- if rule.Apply(ctx) {
- return rule.Tag, nil
- }
- }
- }
- }
- return "", ErrNoRuleApplicable
- }
- func (Router) Interface() interface{} {
- return (*Router)(nil)
- }
- func (Router) Start() error {
- return nil
- }
- func (Router) Close() {}
- func FromSpace(space app.Space) *Router {
- app := space.GetApplication((*Router)(nil))
- if app == nil {
- return nil
- }
- return app.(*Router)
- }
- func init() {
- common.Must(common.RegisterConfig((*Config)(nil), func(ctx context.Context, config interface{}) (interface{}, error) {
- return NewRouter(ctx, config.(*Config))
- }))
- }
|