Clash.Meta/rules/provider/provider.go

250 lines
5.5 KiB
Go
Raw Normal View History

package provider
2021-12-02 22:56:17 +08:00
import (
"bytes"
2021-12-02 22:56:17 +08:00
"encoding/json"
"errors"
2022-05-26 17:47:05 +08:00
"gopkg.in/yaml.v3"
2021-12-02 22:56:17 +08:00
"runtime"
2023-04-14 13:51:26 +08:00
"strings"
2021-12-02 22:56:17 +08:00
"time"
2023-11-03 21:01:45 +08:00
"github.com/metacubex/mihomo/common/pool"
"github.com/metacubex/mihomo/component/resource"
C "github.com/metacubex/mihomo/constant"
P "github.com/metacubex/mihomo/constant/provider"
2021-12-02 22:56:17 +08:00
)
var (
2021-12-07 20:49:39 +08:00
ruleProviders = map[string]P.RuleProvider{}
2021-12-02 22:56:17 +08:00
)
type ruleSetProvider struct {
*resource.Fetcher[any]
2023-04-14 13:51:26 +08:00
behavior P.RuleBehavior
format P.RuleFormat
2022-03-26 18:34:15 +08:00
strategy ruleStrategy
2021-12-02 22:56:17 +08:00
}
type RuleSetProvider struct {
*ruleSetProvider
}
type RulePayload struct {
/**
key: Domain or IP Cidr
value: Rule type or is empty
*/
Payload []string `yaml:"payload"`
Rules []string `yaml:"rules"`
2021-12-02 22:56:17 +08:00
}
2022-03-26 18:34:15 +08:00
type ruleStrategy interface {
Match(metadata *C.Metadata) bool
Count() int
ShouldResolveIP() bool
ShouldFindProcess() bool
Reset()
Insert(rule string)
FinishInsert()
2022-03-26 18:34:15 +08:00
}
2021-12-07 20:49:39 +08:00
func RuleProviders() map[string]P.RuleProvider {
2021-12-02 22:56:17 +08:00
return ruleProviders
}
2021-12-07 20:49:39 +08:00
func SetRuleProvider(ruleProvider P.RuleProvider) {
2021-12-02 22:56:17 +08:00
if ruleProvider != nil {
2021-12-07 20:49:39 +08:00
ruleProviders[(ruleProvider).Name()] = ruleProvider
2021-12-02 22:56:17 +08:00
}
}
func (rp *ruleSetProvider) Type() P.ProviderType {
return P.Rule
}
func (rp *ruleSetProvider) Initial() error {
elm, err := rp.Fetcher.Initial()
2021-12-02 22:56:17 +08:00
if err != nil {
return err
}
rp.OnUpdate(elm)
return nil
2021-12-02 22:56:17 +08:00
}
func (rp *ruleSetProvider) Update() error {
elm, same, err := rp.Fetcher.Update()
2021-12-02 22:56:17 +08:00
if err == nil && !same {
rp.OnUpdate(elm)
return nil
2021-12-02 22:56:17 +08:00
}
return err
}
2023-04-14 13:51:26 +08:00
func (rp *ruleSetProvider) Behavior() P.RuleBehavior {
2021-12-02 22:56:17 +08:00
return rp.behavior
}
func (rp *ruleSetProvider) Match(metadata *C.Metadata) bool {
2022-03-26 18:34:15 +08:00
return rp.strategy != nil && rp.strategy.Match(metadata)
2021-12-02 22:56:17 +08:00
}
func (rp *ruleSetProvider) ShouldResolveIP() bool {
2022-03-26 18:34:15 +08:00
return rp.strategy.ShouldResolveIP()
2021-12-02 22:56:17 +08:00
}
func (rp *ruleSetProvider) ShouldFindProcess() bool {
return rp.strategy.ShouldFindProcess()
}
2021-12-02 22:56:17 +08:00
func (rp *ruleSetProvider) AsRule(adaptor string) C.Rule {
panic("implement me")
}
func (rp *ruleSetProvider) MarshalJSON() ([]byte, error) {
return json.Marshal(
map[string]interface{}{
"behavior": rp.behavior.String(),
2023-04-14 13:51:26 +08:00
"format": rp.format.String(),
2021-12-02 22:56:17 +08:00
"name": rp.Name(),
2022-03-26 18:34:15 +08:00
"ruleCount": rp.strategy.Count(),
2021-12-02 22:56:17 +08:00
"type": rp.Type().String(),
"updatedAt": rp.UpdatedAt,
2021-12-02 22:56:17 +08:00
"vehicleType": rp.VehicleType().String(),
})
}
2023-04-14 13:51:26 +08:00
func NewRuleSetProvider(name string, behavior P.RuleBehavior, format P.RuleFormat, interval time.Duration, vehicle P.Vehicle,
2022-12-04 13:37:14 +08:00
parse func(tp, payload, target string, params []string, subRules map[string][]C.Rule) (parsed C.Rule, parseErr error)) P.RuleProvider {
2021-12-02 22:56:17 +08:00
rp := &ruleSetProvider{
behavior: behavior,
2023-04-14 13:51:26 +08:00
format: format,
2021-12-02 22:56:17 +08:00
}
onUpdate := func(elm interface{}) {
strategy := elm.(ruleStrategy)
rp.strategy = strategy
2021-12-02 22:56:17 +08:00
}
rp.strategy = newStrategy(behavior, parse)
2023-04-14 13:51:26 +08:00
rp.Fetcher = resource.NewFetcher(name, interval, vehicle, func(bytes []byte) (any, error) { return rulesParse(bytes, newStrategy(behavior, parse), format) }, onUpdate)
2022-03-26 18:34:15 +08:00
2021-12-02 22:56:17 +08:00
wrapper := &RuleSetProvider{
rp,
}
final := func(provider *RuleSetProvider) { _ = rp.Fetcher.Destroy() }
2022-05-08 00:04:16 +08:00
runtime.SetFinalizer(wrapper, final)
2021-12-02 22:56:17 +08:00
return wrapper
}
2023-04-14 13:51:26 +08:00
func newStrategy(behavior P.RuleBehavior, parse func(tp, payload, target string, params []string, subRules map[string][]C.Rule) (parsed C.Rule, parseErr error)) ruleStrategy {
2021-12-02 22:56:17 +08:00
switch behavior {
case P.Domain:
2022-03-26 18:34:15 +08:00
strategy := NewDomainStrategy()
return strategy
2021-12-02 22:56:17 +08:00
case P.IPCIDR:
2022-03-26 18:34:15 +08:00
strategy := NewIPCidrStrategy()
return strategy
2021-12-02 22:56:17 +08:00
case P.Classical:
strategy := NewClassicalStrategy(parse)
2022-03-26 18:34:15 +08:00
return strategy
2021-12-02 22:56:17 +08:00
default:
2022-03-26 18:34:15 +08:00
return nil
2021-12-02 22:56:17 +08:00
}
}
var ErrNoPayload = errors.New("file must have a `payload` field")
2023-04-14 13:51:26 +08:00
func rulesParse(buf []byte, strategy ruleStrategy, format P.RuleFormat) (any, error) {
strategy.Reset()
schema := &RulePayload{}
firstLineBuffer := pool.GetBuffer()
defer pool.PutBuffer(firstLineBuffer)
firstLineLength := 0
s := 0 // search start index
for s < len(buf) {
// search buffer for a new line.
line := buf[s:]
if i := bytes.IndexByte(line, '\n'); i >= 0 {
i += s
line = buf[s : i+1]
s = i + 1
} else {
s = len(buf) // stop loop in next step
if firstLineLength == 0 { // no head or only one line body
return nil, ErrNoPayload
}
}
2023-04-14 13:51:26 +08:00
var str string
switch format {
case P.TextRule:
firstLineLength = -1 // don't return ErrNoPayload when read last line
str = string(line)
str = strings.TrimSpace(str)
2023-04-14 19:06:25 +08:00
if len(str) == 0 {
continue
}
2023-04-14 13:51:26 +08:00
if str[0] == '#' { // comment
continue
}
if strings.HasPrefix(str, "//") { // comment in Premium core
continue
}
case P.YamlRule:
2023-04-14 19:06:25 +08:00
trimLine := bytes.TrimSpace(line)
if len(trimLine) == 0 {
continue
}
if trimLine[0] == '#' { // comment
2023-04-14 13:51:26 +08:00
continue
}
firstLineBuffer.Write(line)
if firstLineLength == 0 { // find payload head
firstLineLength = firstLineBuffer.Len()
firstLineBuffer.WriteString(" - ''") // a test line
err := yaml.Unmarshal(firstLineBuffer.Bytes(), schema)
firstLineBuffer.Truncate(firstLineLength)
if err == nil && (len(schema.Rules) > 0 || len(schema.Payload) > 0) { // found
continue
}
// not found or err!=nil
firstLineBuffer.Truncate(0)
firstLineLength = 0
continue
}
2023-04-14 13:51:26 +08:00
// parse payload body
err := yaml.Unmarshal(firstLineBuffer.Bytes(), schema)
firstLineBuffer.Truncate(firstLineLength)
2023-04-14 13:51:26 +08:00
if err != nil {
continue
}
2023-04-14 13:51:26 +08:00
if len(schema.Rules) > 0 {
str = schema.Rules[0]
}
if len(schema.Payload) > 0 {
str = schema.Payload[0]
}
}
if str == "" {
continue
}
strategy.Insert(str)
2021-12-02 22:56:17 +08:00
}
strategy.FinishInsert()
return strategy, nil
2021-12-02 22:56:17 +08:00
}