1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-06-18 05:25:23 +00:00
v2fly/app/router/config.go

105 lines
2.0 KiB
Go
Raw Normal View History

2015-12-07 21:47:47 +00:00
package router
2015-11-14 13:24:56 +00:00
2016-10-12 14:11:13 +00:00
import (
"context"
2016-10-12 14:11:13 +00:00
2017-08-29 12:32:54 +00:00
"v2ray.com/core/common/net"
2016-10-12 14:11:13 +00:00
)
type Rule struct {
Tag string
Condition Condition
}
2017-05-08 09:48:41 +00:00
func (r *Rule) Apply(ctx context.Context) bool {
return r.Condition.Apply(ctx)
2016-10-12 14:11:13 +00:00
}
2017-05-17 11:24:53 +00:00
func cidrToCondition(cidr []*CIDR, source bool) (Condition, error) {
2017-08-29 12:32:54 +00:00
ipv4Net := net.NewIPNetTable()
2017-05-17 11:24:53 +00:00
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:
2017-12-27 21:25:12 +00:00
return nil, newError("invalid IP length").AtWarning()
2017-05-17 11:24:53 +00:00
}
}
switch {
case !ipv4Net.IsEmpty() && hasIpv6:
2017-05-17 11:24:53 +00:00
cond := NewAnyCondition()
cond.Add(NewIPv4Matcher(ipv4Net, source))
cond.Add(ipv6Cond)
return cond, nil
case !ipv4Net.IsEmpty():
2017-05-17 11:24:53 +00:00
return NewIPv4Matcher(ipv4Net, source), nil
default:
2017-05-17 11:24:53 +00:00
return ipv6Cond, nil
}
}
2017-05-08 09:48:41 +00:00
func (rr *RoutingRule) BuildCondition() (Condition, error) {
2016-10-12 14:11:13 +00:00
conds := NewConditionChan()
2017-05-08 09:48:41 +00:00
if len(rr.Domain) > 0 {
2018-08-19 20:28:02 +00:00
matcher, err := NewDomainMatcher(rr.Domain)
2018-08-19 19:04:15 +00:00
if err != nil {
return nil, newError("failed to build domain condition").Base(err)
2016-10-12 14:11:13 +00:00
}
2017-11-06 20:12:28 +00:00
conds.Add(matcher)
2016-10-12 14:11:13 +00:00
}
if len(rr.UserEmail) > 0 {
conds.Add(NewUserMatcher(rr.UserEmail))
}
if len(rr.InboundTag) > 0 {
conds.Add(NewInboundTagMatcher(rr.InboundTag))
2016-10-12 14:11:13 +00:00
}
2017-05-08 09:48:41 +00:00
if rr.PortRange != nil {
conds.Add(NewPortMatcher(*rr.PortRange))
2016-10-12 14:11:13 +00:00
}
2017-05-08 09:48:41 +00:00
if rr.NetworkList != nil {
conds.Add(NewNetworkMatcher(rr.NetworkList))
2016-10-12 14:11:13 +00:00
}
if len(rr.Cidr) > 0 {
cond, err := cidrToCondition(rr.Cidr, false)
2017-05-17 11:24:53 +00:00
if err != nil {
return nil, err
2016-10-18 21:01:39 +00:00
}
2017-05-17 11:24:53 +00:00
conds.Add(cond)
2016-10-18 21:01:39 +00:00
}
if len(rr.SourceCidr) > 0 {
cond, err := cidrToCondition(rr.SourceCidr, true)
if err != nil {
return nil, err
}
conds.Add(cond)
2016-11-13 20:23:34 +00:00
}
2018-07-16 11:47:00 +00:00
if len(rr.Protocol) > 0 {
conds.Add(NewProtocolMatcher(rr.Protocol))
}
2016-10-12 14:11:13 +00:00
if conds.Len() == 0 {
2017-12-27 21:25:12 +00:00
return nil, newError("this rule has no effective fields").AtWarning()
2016-10-12 14:11:13 +00:00
}
return conds, nil
2015-11-14 13:24:56 +00:00
}