| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318 | 
							- package router
 
- import (
 
- 	"context"
 
- 	"net"
 
- 	"regexp"
 
- 	"strings"
 
- 	v2net "v2ray.com/core/common/net"
 
- 	"v2ray.com/core/common/protocol"
 
- 	"v2ray.com/core/proxy"
 
- )
 
- type Condition interface {
 
- 	Apply(ctx context.Context) bool
 
- }
 
- type ConditionChan []Condition
 
- func NewConditionChan() *ConditionChan {
 
- 	var condChan ConditionChan = make([]Condition, 0, 8)
 
- 	return &condChan
 
- }
 
- func (v *ConditionChan) Add(cond Condition) *ConditionChan {
 
- 	*v = append(*v, cond)
 
- 	return v
 
- }
 
- func (v *ConditionChan) Apply(ctx context.Context) bool {
 
- 	for _, cond := range *v {
 
- 		if !cond.Apply(ctx) {
 
- 			return false
 
- 		}
 
- 	}
 
- 	return true
 
- }
 
- func (v *ConditionChan) Len() int {
 
- 	return len(*v)
 
- }
 
- type AnyCondition []Condition
 
- func NewAnyCondition() *AnyCondition {
 
- 	var anyCond AnyCondition = make([]Condition, 0, 8)
 
- 	return &anyCond
 
- }
 
- func (v *AnyCondition) Add(cond Condition) *AnyCondition {
 
- 	*v = append(*v, cond)
 
- 	return v
 
- }
 
- func (v *AnyCondition) Apply(ctx context.Context) bool {
 
- 	for _, cond := range *v {
 
- 		if cond.Apply(ctx) {
 
- 			return true
 
- 		}
 
- 	}
 
- 	return false
 
- }
 
- func (v *AnyCondition) Len() int {
 
- 	return len(*v)
 
- }
 
- type PlainDomainMatcher string
 
- func NewPlainDomainMatcher(pattern string) Condition {
 
- 	return PlainDomainMatcher(pattern)
 
- }
 
- func (v PlainDomainMatcher) Apply(ctx context.Context) bool {
 
- 	dest, ok := proxy.TargetFromContext(ctx)
 
- 	if !ok {
 
- 		return false
 
- 	}
 
- 	if !dest.Address.Family().IsDomain() {
 
- 		return false
 
- 	}
 
- 	domain := dest.Address.Domain()
 
- 	return strings.Contains(domain, string(v))
 
- }
 
- type RegexpDomainMatcher struct {
 
- 	pattern *regexp.Regexp
 
- }
 
- func NewRegexpDomainMatcher(pattern string) (*RegexpDomainMatcher, error) {
 
- 	r, err := regexp.Compile(pattern)
 
- 	if err != nil {
 
- 		return nil, err
 
- 	}
 
- 	return &RegexpDomainMatcher{
 
- 		pattern: r,
 
- 	}, nil
 
- }
 
- func (v *RegexpDomainMatcher) Apply(ctx context.Context) bool {
 
- 	dest, ok := proxy.TargetFromContext(ctx)
 
- 	if !ok {
 
- 		return false
 
- 	}
 
- 	if !dest.Address.Family().IsDomain() {
 
- 		return false
 
- 	}
 
- 	domain := dest.Address.Domain()
 
- 	return v.pattern.MatchString(strings.ToLower(domain))
 
- }
 
- type SubDomainMatcher string
 
- func NewSubDomainMatcher(p string) Condition {
 
- 	return SubDomainMatcher(p)
 
- }
 
- func (m SubDomainMatcher) Apply(ctx context.Context) bool {
 
- 	dest, ok := proxy.TargetFromContext(ctx)
 
- 	if !ok {
 
- 		return false
 
- 	}
 
- 	if !dest.Address.Family().IsDomain() {
 
- 		return false
 
- 	}
 
- 	domain := dest.Address.Domain()
 
- 	pattern := string(m)
 
- 	if !strings.HasSuffix(domain, pattern) {
 
- 		return false
 
- 	}
 
- 	return len(domain) == len(pattern) || domain[len(domain)-len(pattern)-1] == '.'
 
- }
 
- type CIDRMatcher struct {
 
- 	cidr     *net.IPNet
 
- 	onSource bool
 
- }
 
- func NewCIDRMatcher(ip []byte, mask uint32, onSource bool) (*CIDRMatcher, error) {
 
- 	cidr := &net.IPNet{
 
- 		IP:   net.IP(ip),
 
- 		Mask: net.CIDRMask(int(mask), len(ip)*8),
 
- 	}
 
- 	return &CIDRMatcher{
 
- 		cidr:     cidr,
 
- 		onSource: onSource,
 
- 	}, nil
 
- }
 
- func (v *CIDRMatcher) Apply(ctx context.Context) bool {
 
- 	ips := make([]net.IP, 0, 4)
 
- 	if resolveIPs, ok := proxy.ResolvedIPsFromContext(ctx); ok {
 
- 		for _, rip := range resolveIPs {
 
- 			if !rip.Family().IsIPv6() {
 
- 				continue
 
- 			}
 
- 			ips = append(ips, rip.IP())
 
- 		}
 
- 	}
 
- 	var dest v2net.Destination
 
- 	var ok bool
 
- 	if v.onSource {
 
- 		dest, ok = proxy.SourceFromContext(ctx)
 
- 	} else {
 
- 		dest, ok = proxy.TargetFromContext(ctx)
 
- 	}
 
- 	if ok && dest.Address.Family().IsIPv6() {
 
- 		ips = append(ips, dest.Address.IP())
 
- 	}
 
- 	for _, ip := range ips {
 
- 		if v.cidr.Contains(ip) {
 
- 			return true
 
- 		}
 
- 	}
 
- 	return false
 
- }
 
- type IPv4Matcher struct {
 
- 	ipv4net  *v2net.IPNet
 
- 	onSource bool
 
- }
 
- func NewIPv4Matcher(ipnet *v2net.IPNet, onSource bool) *IPv4Matcher {
 
- 	return &IPv4Matcher{
 
- 		ipv4net:  ipnet,
 
- 		onSource: onSource,
 
- 	}
 
- }
 
- func (v *IPv4Matcher) Apply(ctx context.Context) bool {
 
- 	ips := make([]net.IP, 0, 4)
 
- 	if resolveIPs, ok := proxy.ResolvedIPsFromContext(ctx); ok {
 
- 		for _, rip := range resolveIPs {
 
- 			if !rip.Family().IsIPv4() {
 
- 				continue
 
- 			}
 
- 			ips = append(ips, rip.IP())
 
- 		}
 
- 	}
 
- 	var dest v2net.Destination
 
- 	var ok bool
 
- 	if v.onSource {
 
- 		dest, ok = proxy.SourceFromContext(ctx)
 
- 	} else {
 
- 		dest, ok = proxy.TargetFromContext(ctx)
 
- 	}
 
- 	if ok && dest.Address.Family().IsIPv4() {
 
- 		ips = append(ips, dest.Address.IP())
 
- 	}
 
- 	for _, ip := range ips {
 
- 		if v.ipv4net.Contains(ip) {
 
- 			return true
 
- 		}
 
- 	}
 
- 	return false
 
- }
 
- type PortMatcher struct {
 
- 	port v2net.PortRange
 
- }
 
- func NewPortMatcher(portRange v2net.PortRange) *PortMatcher {
 
- 	return &PortMatcher{
 
- 		port: portRange,
 
- 	}
 
- }
 
- func (v *PortMatcher) Apply(ctx context.Context) bool {
 
- 	dest, ok := proxy.TargetFromContext(ctx)
 
- 	if !ok {
 
- 		return false
 
- 	}
 
- 	return v.port.Contains(dest.Port)
 
- }
 
- type NetworkMatcher struct {
 
- 	network *v2net.NetworkList
 
- }
 
- func NewNetworkMatcher(network *v2net.NetworkList) *NetworkMatcher {
 
- 	return &NetworkMatcher{
 
- 		network: network,
 
- 	}
 
- }
 
- func (v *NetworkMatcher) Apply(ctx context.Context) bool {
 
- 	dest, ok := proxy.TargetFromContext(ctx)
 
- 	if !ok {
 
- 		return false
 
- 	}
 
- 	return v.network.HasNetwork(dest.Network)
 
- }
 
- type UserMatcher struct {
 
- 	user []string
 
- }
 
- func NewUserMatcher(users []string) *UserMatcher {
 
- 	usersCopy := make([]string, 0, len(users))
 
- 	for _, user := range users {
 
- 		if len(user) > 0 {
 
- 			usersCopy = append(usersCopy, user)
 
- 		}
 
- 	}
 
- 	return &UserMatcher{
 
- 		user: usersCopy,
 
- 	}
 
- }
 
- func (v *UserMatcher) Apply(ctx context.Context) bool {
 
- 	user := protocol.UserFromContext(ctx)
 
- 	if user == nil {
 
- 		return false
 
- 	}
 
- 	for _, u := range v.user {
 
- 		if u == user.Email {
 
- 			return true
 
- 		}
 
- 	}
 
- 	return false
 
- }
 
- type InboundTagMatcher struct {
 
- 	tags []string
 
- }
 
- func NewInboundTagMatcher(tags []string) *InboundTagMatcher {
 
- 	tagsCopy := make([]string, 0, len(tags))
 
- 	for _, tag := range tags {
 
- 		if len(tag) > 0 {
 
- 			tagsCopy = append(tagsCopy, tag)
 
- 		}
 
- 	}
 
- 	return &InboundTagMatcher{
 
- 		tags: tagsCopy,
 
- 	}
 
- }
 
- func (v *InboundTagMatcher) Apply(ctx context.Context) bool {
 
- 	tag, ok := proxy.InboundTagFromContext(ctx)
 
- 	if !ok {
 
- 		return false
 
- 	}
 
- 	for _, t := range v.tags {
 
- 		if t == tag {
 
- 			return true
 
- 		}
 
- 	}
 
- 	return false
 
- }
 
 
  |