clash/rule/common/base.go

89 lines
1.4 KiB
Go
Raw Normal View History

package common
import (
"errors"
2022-04-19 17:52:51 +00:00
"net/netip"
"strings"
2021-11-17 08:03:47 +00:00
C "github.com/Dreamacro/clash/constant"
)
var (
errPayload = errors.New("payload error")
noResolve = "no-resolve"
)
2022-03-12 17:21:23 +00:00
type Base struct {
ruleExtra *C.RuleExtra
}
func (b *Base) RuleExtra() *C.RuleExtra {
return b.ruleExtra
}
func (b *Base) SetRuleExtra(re *C.RuleExtra) {
b.ruleExtra = re
}
func (b *Base) ShouldFindProcess() bool {
return false
}
2022-03-17 15:24:07 +00:00
func (b *Base) ShouldResolveIP() bool {
return false
}
func HasNoResolve(params []string) bool {
for _, p := range params {
if p == noResolve {
return true
}
}
return false
}
2021-11-17 08:03:47 +00:00
func FindNetwork(params []string) C.NetWork {
2021-11-17 08:03:47 +00:00
for _, p := range params {
2022-02-23 06:01:53 +00:00
if strings.EqualFold(p, "tcp") {
2021-11-17 08:03:47 +00:00
return C.TCP
2022-02-23 06:01:53 +00:00
} else if strings.EqualFold(p, "udp") {
2021-11-17 08:03:47 +00:00
return C.UDP
}
}
return C.ALLNet
}
2022-04-19 17:52:51 +00:00
func FindSourceIPs(params []string) []*netip.Prefix {
var ips []*netip.Prefix
2021-11-17 08:03:47 +00:00
for _, p := range params {
if p == noResolve || len(p) < 7 {
continue
}
2022-04-19 17:52:51 +00:00
ipnet, err := netip.ParsePrefix(p)
2021-11-17 08:03:47 +00:00
if err != nil {
continue
}
2022-04-19 17:52:51 +00:00
ips = append(ips, &ipnet)
2021-11-17 08:03:47 +00:00
}
if len(ips) > 0 {
return ips
}
return nil
}
func FindProcessName(params []string) []string {
var processNames []string
for _, p := range params {
if strings.HasPrefix(p, "P:") {
processNames = append(processNames, strings.TrimPrefix(p, "P:"))
}
}
if len(processNames) > 0 {
return processNames
}
return nil
}