| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155 |
- package router
- import (
- "context"
- "v2ray.com/core/common/net"
- )
- // CIDRList is an alias of []*CIDR to provide sort.Interface.
- type CIDRList []*CIDR
- // Len implements sort.Interface.
- func (l *CIDRList) Len() int {
- return len(*l)
- }
- // Less implements sort.Interface.
- func (l *CIDRList) Less(i int, j int) bool {
- ci := (*l)[i]
- cj := (*l)[j]
- if len(ci.Ip) < len(cj.Ip) {
- return true
- }
- if len(ci.Ip) > len(cj.Ip) {
- return false
- }
- for k := 0; k < len(ci.Ip); k++ {
- if ci.Ip[k] < cj.Ip[k] {
- return true
- }
- if ci.Ip[k] > cj.Ip[k] {
- return false
- }
- }
- return ci.Prefix < cj.Prefix
- }
- // Swap implements sort.Interface.
- func (l *CIDRList) Swap(i int, j int) {
- (*l)[i], (*l)[j] = (*l)[j], (*l)[i]
- }
- type Rule struct {
- Tag string
- Condition Condition
- }
- func (r *Rule) Apply(ctx context.Context) bool {
- return r.Condition.Apply(ctx)
- }
- func cidrToCondition(cidr []*CIDR, source bool) (Condition, error) {
- ipv4Net := net.NewIPNetTable()
- ipv6Cond := NewAnyCondition()
- hasIpv6 := false
- for _, ip := range cidr {
- switch len(ip.Ip) {
- case net.IPv4len:
- ipv4Net.AddIP(ip.Ip, byte(ip.Prefix))
- case net.IPv6len:
- hasIpv6 = true
- matcher, err := NewCIDRMatcher(ip.Ip, ip.Prefix, source)
- if err != nil {
- return nil, err
- }
- ipv6Cond.Add(matcher)
- default:
- return nil, newError("invalid IP length").AtWarning()
- }
- }
- switch {
- case !ipv4Net.IsEmpty() && hasIpv6:
- cond := NewAnyCondition()
- cond.Add(NewIPv4Matcher(ipv4Net, source))
- cond.Add(ipv6Cond)
- return cond, nil
- case !ipv4Net.IsEmpty():
- return NewIPv4Matcher(ipv4Net, source), nil
- default:
- return ipv6Cond, nil
- }
- }
- func (rr *RoutingRule) BuildCondition() (Condition, error) {
- conds := NewConditionChan()
- if len(rr.Domain) > 0 {
- matcher, err := NewDomainMatcher(rr.Domain)
- if err != nil {
- return nil, newError("failed to build domain condition").Base(err)
- }
- conds.Add(matcher)
- }
- if len(rr.UserEmail) > 0 {
- conds.Add(NewUserMatcher(rr.UserEmail))
- }
- if len(rr.InboundTag) > 0 {
- conds.Add(NewInboundTagMatcher(rr.InboundTag))
- }
- if rr.PortRange != nil {
- conds.Add(NewPortMatcher(*rr.PortRange))
- }
- if rr.NetworkList != nil {
- conds.Add(NewNetworkMatcher(rr.NetworkList))
- }
- if len(rr.Geoip) > 0 {
- cond, err := NewMultiGeoIPMatcher(rr.Geoip, false)
- if err != nil {
- return nil, err
- }
- conds.Add(cond)
- } else if len(rr.Cidr) > 0 {
- cond, err := cidrToCondition(rr.Cidr, false)
- if err != nil {
- return nil, err
- }
- conds.Add(cond)
- }
- if len(rr.SourceGeoip) > 0 {
- cond, err := NewMultiGeoIPMatcher(rr.SourceGeoip, true)
- if err != nil {
- return nil, err
- }
- conds.Add(cond)
- } else if len(rr.SourceCidr) > 0 {
- cond, err := cidrToCondition(rr.SourceCidr, true)
- if err != nil {
- return nil, err
- }
- conds.Add(cond)
- }
- if len(rr.Protocol) > 0 {
- conds.Add(NewProtocolMatcher(rr.Protocol))
- }
- if conds.Len() == 0 {
- return nil, newError("this rule has no effective fields").AtWarning()
- }
- return conds, nil
- }
|