| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442 |
- package router
- import (
- "context"
- "os"
- "path/filepath"
- "regexp"
- "slices"
- "strings"
- "github.com/xtls/xray-core/common/errors"
- "github.com/xtls/xray-core/common/net"
- "github.com/xtls/xray-core/common/strmatcher"
- "github.com/xtls/xray-core/features/routing"
- )
- type Condition interface {
- Apply(ctx routing.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
- }
- // Apply applies all conditions registered in this chan.
- func (v *ConditionChan) Apply(ctx routing.Context) bool {
- for _, cond := range *v {
- if !cond.Apply(ctx) {
- return false
- }
- }
- return true
- }
- func (v *ConditionChan) Len() int {
- return len(*v)
- }
- var matcherTypeMap = map[Domain_Type]strmatcher.Type{
- Domain_Plain: strmatcher.Substr,
- Domain_Regex: strmatcher.Regex,
- Domain_Domain: strmatcher.Domain,
- Domain_Full: strmatcher.Full,
- }
- type DomainMatcher struct {
- matchers strmatcher.IndexMatcher
- }
- func NewMphMatcherGroup(domains []*Domain) (*DomainMatcher, error) {
- g := strmatcher.NewMphMatcherGroup()
- for _, d := range domains {
- matcherType, f := matcherTypeMap[d.Type]
- if !f {
- errors.LogError(context.Background(), "ignore unsupported domain type ", d.Type, " of rule ", d.Value)
- continue
- }
- _, err := g.AddPattern(d.Value, matcherType)
- if err != nil {
- errors.LogErrorInner(context.Background(), err, "ignore domain rule ", d.Type, " ", d.Value)
- continue
- }
- }
- g.Build()
- return &DomainMatcher{
- matchers: g,
- }, nil
- }
- func (m *DomainMatcher) ApplyDomain(domain string) bool {
- return len(m.matchers.Match(strings.ToLower(domain))) > 0
- }
- // Apply implements Condition.
- func (m *DomainMatcher) Apply(ctx routing.Context) bool {
- domain := ctx.GetTargetDomain()
- if len(domain) == 0 {
- return false
- }
- return m.ApplyDomain(domain)
- }
- type MatcherAsType byte
- const (
- MatcherAsType_Local MatcherAsType = iota
- MatcherAsType_Source
- MatcherAsType_Target
- MatcherAsType_VlessRoute // for port
- )
- type IPMatcher struct {
- matcher GeoIPMatcher
- asType MatcherAsType
- }
- func NewIPMatcher(geoips []*GeoIP, asType MatcherAsType) (*IPMatcher, error) {
- matcher, err := BuildOptimizedGeoIPMatcher(geoips...)
- if err != nil {
- return nil, err
- }
- return &IPMatcher{matcher: matcher, asType: asType}, nil
- }
- // Apply implements Condition.
- func (m *IPMatcher) Apply(ctx routing.Context) bool {
- var ips []net.IP
- switch m.asType {
- case MatcherAsType_Local:
- ips = ctx.GetLocalIPs()
- case MatcherAsType_Source:
- ips = ctx.GetSourceIPs()
- case MatcherAsType_Target:
- ips = ctx.GetTargetIPs()
- default:
- panic("unk asType")
- }
- return m.matcher.AnyMatch(ips)
- }
- type PortMatcher struct {
- port net.MemoryPortList
- asType MatcherAsType
- }
- // NewPortMatcher create a new port matcher that can match source or local or destination port
- func NewPortMatcher(list *net.PortList, asType MatcherAsType) *PortMatcher {
- return &PortMatcher{
- port: net.PortListFromProto(list),
- asType: asType,
- }
- }
- // Apply implements Condition.
- func (v *PortMatcher) Apply(ctx routing.Context) bool {
- switch v.asType {
- case MatcherAsType_Local:
- return v.port.Contains(ctx.GetLocalPort())
- case MatcherAsType_Source:
- return v.port.Contains(ctx.GetSourcePort())
- case MatcherAsType_Target:
- return v.port.Contains(ctx.GetTargetPort())
- case MatcherAsType_VlessRoute:
- return v.port.Contains(ctx.GetVlessRoute())
- default:
- panic("unk asType")
- }
- }
- type NetworkMatcher struct {
- list [8]bool
- }
- func NewNetworkMatcher(network []net.Network) NetworkMatcher {
- var matcher NetworkMatcher
- for _, n := range network {
- matcher.list[int(n)] = true
- }
- return matcher
- }
- // Apply implements Condition.
- func (v NetworkMatcher) Apply(ctx routing.Context) bool {
- return v.list[int(ctx.GetNetwork())]
- }
- type UserMatcher struct {
- user []string
- pattern []*regexp.Regexp
- }
- func NewUserMatcher(users []string) *UserMatcher {
- usersCopy := make([]string, 0, len(users))
- patternsCopy := make([]*regexp.Regexp, 0, len(users))
- for _, user := range users {
- if len(user) > 0 {
- if len(user) > 7 && strings.HasPrefix(user, "regexp:") {
- if re, err := regexp.Compile(user[7:]); err == nil {
- patternsCopy = append(patternsCopy, re)
- }
- // Items of users slice with an invalid regexp syntax are ignored.
- continue
- }
- usersCopy = append(usersCopy, user)
- }
- }
- return &UserMatcher{
- user: usersCopy,
- pattern: patternsCopy,
- }
- }
- // Apply implements Condition.
- func (v *UserMatcher) Apply(ctx routing.Context) bool {
- user := ctx.GetUser()
- if len(user) == 0 {
- return false
- }
- for _, u := range v.user {
- if u == user {
- return true
- }
- }
- for _, re := range v.pattern {
- if re.MatchString(user) {
- 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,
- }
- }
- // Apply implements Condition.
- func (v *InboundTagMatcher) Apply(ctx routing.Context) bool {
- tag := ctx.GetInboundTag()
- if len(tag) == 0 {
- return false
- }
- for _, t := range v.tags {
- if t == tag {
- return true
- }
- }
- return false
- }
- type ProtocolMatcher struct {
- protocols []string
- }
- func NewProtocolMatcher(protocols []string) *ProtocolMatcher {
- pCopy := make([]string, 0, len(protocols))
- for _, p := range protocols {
- if len(p) > 0 {
- pCopy = append(pCopy, p)
- }
- }
- return &ProtocolMatcher{
- protocols: pCopy,
- }
- }
- // Apply implements Condition.
- func (m *ProtocolMatcher) Apply(ctx routing.Context) bool {
- protocol := ctx.GetProtocol()
- if len(protocol) == 0 {
- return false
- }
- for _, p := range m.protocols {
- if strings.HasPrefix(protocol, p) {
- return true
- }
- }
- return false
- }
- type AttributeMatcher struct {
- configuredKeys map[string]*regexp.Regexp
- }
- // Match implements attributes matching.
- func (m *AttributeMatcher) Match(attrs map[string]string) bool {
- // header keys are case insensitive most likely. So we do a convert
- httpHeaders := make(map[string]string)
- for key, value := range attrs {
- httpHeaders[strings.ToLower(key)] = value
- }
- for key, regex := range m.configuredKeys {
- if a, ok := httpHeaders[key]; !ok || !regex.MatchString(a) {
- return false
- }
- }
- return true
- }
- // Apply implements Condition.
- func (m *AttributeMatcher) Apply(ctx routing.Context) bool {
- attributes := ctx.GetAttributes()
- if attributes == nil {
- return false
- }
- return m.Match(attributes)
- }
- // Geo attribute
- type GeoAttributeMatcher interface {
- Match(*Domain) bool
- }
- type GeoBooleanMatcher string
- func (m GeoBooleanMatcher) Match(domain *Domain) bool {
- for _, attr := range domain.Attribute {
- if attr.Key == string(m) {
- return true
- }
- }
- return false
- }
- type GeoAttributeList struct {
- Matcher []GeoAttributeMatcher
- }
- func (al *GeoAttributeList) Match(domain *Domain) bool {
- for _, matcher := range al.Matcher {
- if !matcher.Match(domain) {
- return false
- }
- }
- return true
- }
- func (al *GeoAttributeList) IsEmpty() bool {
- return len(al.Matcher) == 0
- }
- func ParseAttrs(attrs []string) *GeoAttributeList {
- al := new(GeoAttributeList)
- for _, attr := range attrs {
- lc := strings.ToLower(attr)
- al.Matcher = append(al.Matcher, GeoBooleanMatcher(lc))
- }
- return al
- }
- type ProcessNameMatcher struct {
- ProcessNames []string
- AbsPaths []string
- Folders []string
- MatchXraySelf bool
- }
- func NewProcessNameMatcher(names []string) *ProcessNameMatcher {
- processNames := []string{}
- folders := []string{}
- absPaths := []string{}
- matchXraySelf := false
- for _, name := range names {
- if name == "self/" {
- matchXraySelf = true
- continue
- }
- // replace xray/ with self executable path
- if name == "xray/" {
- xrayPath, err := os.Executable()
- if err != nil {
- errors.LogError(context.Background(), "Failed to get xray executable path: ", err)
- continue
- }
- name = xrayPath
- }
- name := filepath.ToSlash(name)
- // /usr/bin/
- if strings.HasSuffix(name, "/") {
- folders = append(folders, name)
- continue
- }
- // /usr/bin/curl
- if strings.Contains(name, "/") {
- absPaths = append(absPaths, name)
- continue
- }
- // curl.exe or curl
- processNames = append(processNames, strings.TrimSuffix(name, ".exe"))
- }
- return &ProcessNameMatcher{
- ProcessNames: processNames,
- AbsPaths: absPaths,
- Folders: folders,
- MatchXraySelf: matchXraySelf,
- }
- }
- func (m *ProcessNameMatcher) Apply(ctx routing.Context) bool {
- srcPort := ctx.GetSourcePort().String()
- srcIP := ctx.GetSourceIPs()[0].String()
- var network string
- switch ctx.GetNetwork() {
- case net.Network_TCP:
- network = "tcp"
- case net.Network_UDP:
- network = "udp"
- default:
- return false
- }
- src, err := net.ParseDestination(strings.Join([]string{network, srcIP, srcPort}, ":"))
- if err != nil {
- return false
- }
- pid, name, absPath, err := net.FindProcess(src)
- if err != nil {
- if err != net.ErrNotLocal {
- errors.LogError(context.Background(), "Unables to find local process name: ", err)
- }
- return false
- }
- if m.MatchXraySelf {
- if pid == os.Getpid() {
- return true
- }
- }
- if slices.Contains(m.ProcessNames, name) {
- return true
- }
- if slices.Contains(m.AbsPaths, absPath) {
- return true
- }
- for _, f := range m.Folders {
- if strings.HasPrefix(absPath, f) {
- return true
- }
- }
- return false
- }
|