1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-09-18 01:46:06 -04:00
v2fly/app/router/condition.go

289 lines
5.1 KiB
Go
Raw Normal View History

2016-10-12 10:11:13 -04:00
package router
2016-01-17 10:20:49 -05:00
import (
"context"
2016-01-17 10:20:49 -05:00
"net"
"regexp"
2016-05-24 15:55:46 -04:00
"strings"
2016-01-17 10:20:49 -05:00
2016-08-20 14:55:45 -04:00
v2net "v2ray.com/core/common/net"
"v2ray.com/core/common/protocol"
2016-10-18 17:01:39 -04:00
"v2ray.com/core/proxy"
2016-01-17 10:20:49 -05:00
)
type Condition interface {
Apply(ctx context.Context) bool
2016-01-17 10:20:49 -05:00
}
type ConditionChan []Condition
func NewConditionChan() *ConditionChan {
var condChan ConditionChan = make([]Condition, 0, 8)
return &condChan
}
2016-11-27 15:39:09 -05:00
func (v *ConditionChan) Add(cond Condition) *ConditionChan {
*v = append(*v, cond)
return v
2016-01-17 10:20:49 -05:00
}
func (v *ConditionChan) Apply(ctx context.Context) bool {
2016-11-27 15:39:09 -05:00
for _, cond := range *v {
if !cond.Apply(ctx) {
2016-01-17 10:20:49 -05:00
return false
}
}
return true
}
2016-11-27 15:39:09 -05:00
func (v *ConditionChan) Len() int {
return len(*v)
2016-01-17 10:20:49 -05:00
}
2016-01-24 08:40:46 -05:00
type AnyCondition []Condition
func NewAnyCondition() *AnyCondition {
var anyCond AnyCondition = make([]Condition, 0, 8)
return &anyCond
}
2016-11-27 15:39:09 -05:00
func (v *AnyCondition) Add(cond Condition) *AnyCondition {
*v = append(*v, cond)
return v
2016-01-24 08:40:46 -05:00
}
func (v *AnyCondition) Apply(ctx context.Context) bool {
2016-11-27 15:39:09 -05:00
for _, cond := range *v {
if cond.Apply(ctx) {
2016-01-24 08:40:46 -05:00
return true
}
}
return false
}
2016-11-27 15:39:09 -05:00
func (v *AnyCondition) Len() int {
return len(*v)
2016-01-24 08:40:46 -05:00
}
2016-01-17 10:20:49 -05:00
type PlainDomainMatcher struct {
2016-05-24 15:55:46 -04:00
pattern string
2016-01-17 10:20:49 -05:00
}
func NewPlainDomainMatcher(pattern string) *PlainDomainMatcher {
return &PlainDomainMatcher{
2016-05-24 15:55:46 -04:00
pattern: pattern,
2016-01-17 10:20:49 -05:00
}
}
func (v *PlainDomainMatcher) Apply(ctx context.Context) bool {
2017-02-09 16:49:38 -05:00
dest, ok := proxy.TargetFromContext(ctx)
if !ok {
return false
}
2016-09-20 05:53:05 -04:00
if !dest.Address.Family().IsDomain() {
2016-01-17 10:20:49 -05:00
return false
}
2016-09-20 05:53:05 -04:00
domain := dest.Address.Domain()
2016-11-27 15:39:09 -05:00
return strings.Contains(domain, v.pattern)
2016-01-17 10:20:49 -05:00
}
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 {
2017-02-09 16:49:38 -05:00
dest, ok := proxy.TargetFromContext(ctx)
if !ok {
return false
}
2016-09-20 05:53:05 -04:00
if !dest.Address.Family().IsDomain() {
2016-01-17 10:20:49 -05:00
return false
}
2016-09-20 05:53:05 -04:00
domain := dest.Address.Domain()
2016-11-27 15:39:09 -05:00
return v.pattern.MatchString(strings.ToLower(domain))
2016-01-17 10:20:49 -05:00
}
type CIDRMatcher struct {
2016-10-18 17:01:39 -04:00
cidr *net.IPNet
onSource bool
2016-01-17 10:20:49 -05:00
}
2016-10-18 17:01:39 -04:00
func NewCIDRMatcher(ip []byte, mask uint32, onSource bool) (*CIDRMatcher, error) {
2016-10-11 17:02:44 -04:00
cidr := &net.IPNet{
IP: net.IP(ip),
Mask: net.CIDRMask(int(mask), len(ip)),
2016-01-17 10:20:49 -05:00
}
return &CIDRMatcher{
2016-10-18 17:01:39 -04:00
cidr: cidr,
onSource: onSource,
2016-01-17 10:20:49 -05:00
}, nil
}
func (v *CIDRMatcher) Apply(ctx context.Context) bool {
2017-01-28 03:04:29 -05:00
ips := make([]net.IP, 0, 4)
2017-01-27 15:19:46 -05:00
if resolveIPs, ok := proxy.ResolvedIPsFromContext(ctx); ok {
for _, rip := range resolveIPs {
2017-01-28 03:04:29 -05:00
if !rip.Family().IsIPv6() {
continue
}
2017-01-27 15:19:46 -05:00
ips = append(ips, rip.IP())
}
}
var dest v2net.Destination
2017-02-09 16:49:38 -05:00
var ok bool
2016-11-27 15:39:09 -05:00
if v.onSource {
2017-02-09 16:49:38 -05:00
dest, ok = proxy.SourceFromContext(ctx)
} else {
2017-02-09 16:49:38 -05:00
dest, ok = proxy.TargetFromContext(ctx)
2016-10-18 17:01:39 -04:00
}
2017-02-09 16:49:38 -05:00
if ok && dest.Address.Family().IsIPv6() {
2017-01-27 15:19:46 -05:00
ips = append(ips, dest.Address.IP())
}
for _, ip := range ips {
if v.cidr.Contains(ip) {
return true
}
}
return false
2016-01-17 10:20:49 -05:00
}
type IPv4Matcher struct {
2016-10-18 17:01:39 -04:00
ipv4net *v2net.IPNet
onSource bool
2016-01-17 10:20:49 -05:00
}
2016-10-18 17:01:39 -04:00
func NewIPv4Matcher(ipnet *v2net.IPNet, onSource bool) *IPv4Matcher {
2016-01-17 10:20:49 -05:00
return &IPv4Matcher{
2016-10-18 17:01:39 -04:00
ipv4net: ipnet,
onSource: onSource,
2016-01-17 10:20:49 -05:00
}
}
func (v *IPv4Matcher) Apply(ctx context.Context) bool {
2017-01-28 03:04:29 -05:00
ips := make([]net.IP, 0, 4)
2017-01-27 15:19:46 -05:00
if resolveIPs, ok := proxy.ResolvedIPsFromContext(ctx); ok {
for _, rip := range resolveIPs {
2017-01-28 03:04:29 -05:00
if !rip.Family().IsIPv4() {
continue
}
2017-01-27 15:19:46 -05:00
ips = append(ips, rip.IP())
}
}
var dest v2net.Destination
2017-02-09 16:49:38 -05:00
var ok bool
2016-11-27 15:39:09 -05:00
if v.onSource {
2017-02-09 16:49:38 -05:00
dest, ok = proxy.SourceFromContext(ctx)
} else {
2017-02-09 16:49:38 -05:00
dest, ok = proxy.TargetFromContext(ctx)
2016-10-18 17:01:39 -04:00
}
2017-01-27 14:38:01 -05:00
2017-02-09 16:49:38 -05:00
if ok && dest.Address.Family().IsIPv4() {
2017-01-27 15:19:46 -05:00
ips = append(ips, dest.Address.IP())
}
for _, ip := range ips {
if v.ipv4net.Contains(ip) {
return true
}
}
return false
2016-01-17 10:20:49 -05:00
}
type PortMatcher struct {
port v2net.PortRange
}
func NewPortMatcher(portRange v2net.PortRange) *PortMatcher {
return &PortMatcher{
port: portRange,
}
}
func (v *PortMatcher) Apply(ctx context.Context) bool {
2017-02-09 16:49:38 -05:00
dest, ok := proxy.TargetFromContext(ctx)
if !ok {
return false
}
return v.port.Contains(dest.Port)
2016-01-17 10:20:49 -05:00
}
type NetworkMatcher struct {
network *v2net.NetworkList
}
func NewNetworkMatcher(network *v2net.NetworkList) *NetworkMatcher {
return &NetworkMatcher{
network: network,
}
}
func (v *NetworkMatcher) Apply(ctx context.Context) bool {
2017-02-09 16:49:38 -05:00
dest, ok := proxy.TargetFromContext(ctx)
if !ok {
return false
}
return v.network.HasNetwork(dest.Network)
2016-10-18 17:01:39 -04:00
}
type UserMatcher struct {
user []string
}
func NewUserMatcher(users []string) *UserMatcher {
return &UserMatcher{
user: users,
}
}
func (v *UserMatcher) Apply(ctx context.Context) bool {
user := protocol.UserFromContext(ctx)
if user == nil {
2016-10-18 17:01:39 -04:00
return false
}
2016-11-27 15:39:09 -05:00
for _, u := range v.user {
if u == user.Email {
2016-10-18 17:01:39 -04:00
return true
}
}
return false
2016-01-17 10:20:49 -05:00
}
2016-11-13 15:23:34 -05:00
type InboundTagMatcher struct {
tags []string
}
func NewInboundTagMatcher(tags []string) *InboundTagMatcher {
return &InboundTagMatcher{
tags: tags,
}
}
func (v *InboundTagMatcher) Apply(ctx context.Context) bool {
2017-02-09 16:49:38 -05:00
tag, ok := proxy.InboundTagFromContext(ctx)
if !ok {
2016-11-13 15:23:34 -05:00
return false
}
2016-11-27 15:39:09 -05:00
for _, t := range v.tags {
if t == tag {
2016-11-13 15:23:34 -05:00
return true
}
}
return false
}