clash/rule/common/process.go

86 lines
1.8 KiB
Go
Raw Normal View History

package common
import (
"fmt"
"strconv"
"strings"
"github.com/Dreamacro/clash/common/cache"
"github.com/Dreamacro/clash/component/process"
C "github.com/Dreamacro/clash/constant"
"github.com/Dreamacro/clash/log"
)
var processCache = cache.NewLRUCache(cache.WithAge(2), cache.WithSize(64))
type Process struct {
2021-11-17 08:03:47 +00:00
adapter string
process string
2022-03-15 16:43:08 +00:00
nameOnly bool
2021-11-17 08:03:47 +00:00
ruleExtra *C.RuleExtra
}
2022-03-15 16:43:08 +00:00
func (ps *Process) ShouldFindProcess() bool {
return false
}
func (ps *Process) RuleType() C.RuleType {
return C.Process
}
func (ps *Process) Match(metadata *C.Metadata) bool {
2021-11-17 08:03:47 +00:00
if metadata.Process != "" {
return strings.EqualFold(metadata.Process, ps.process)
}
2021-12-04 11:59:41 +00:00
key := fmt.Sprintf("%s:%s:%s", metadata.NetWork.String(), metadata.SrcIP.String(), metadata.SrcPort)
if strings.TrimSpace(metadata.Process) == "" {
cached, hit := processCache.Get(key)
if !hit {
srcPort, err := strconv.Atoi(metadata.SrcPort)
if err != nil {
processCache.Set(key, "")
return false
}
name, err := process.FindProcessName(metadata.NetWork.String(), metadata.SrcIP, srcPort)
if err != nil {
log.Debugln("[Rule] find process name %s error: %s", C.Process.String(), err.Error())
}
processCache.Set(key, name)
cached = name
}
metadata.Process = cached.(string)
}
2021-11-17 08:03:47 +00:00
return strings.EqualFold(metadata.Process, ps.process)
}
2021-03-23 17:00:21 +00:00
func (ps *Process) Adapter() string {
return ps.adapter
}
2021-03-23 17:00:21 +00:00
func (ps *Process) Payload() string {
return ps.process
}
2021-03-23 17:00:21 +00:00
func (ps *Process) ShouldResolveIP() bool {
return false
}
2021-11-17 08:03:47 +00:00
func (ps *Process) RuleExtra() *C.RuleExtra {
return ps.ruleExtra
}
2022-03-15 16:43:08 +00:00
func NewProcess(process string, adapter string, nameOnly bool, ruleExtra *C.RuleExtra) (*Process, error) {
return &Process{
2021-11-17 08:03:47 +00:00
adapter: adapter,
process: process,
2022-03-15 16:43:08 +00:00
nameOnly: nameOnly,
2021-11-17 08:03:47 +00:00
ruleExtra: ruleExtra,
}, nil
}