mirror of
https://gitclone.com/github.com/MetaCubeX/Clash.Meta
synced 2025-02-24 21:22:14 +08:00
349 lines
7.4 KiB
Go
349 lines
7.4 KiB
Go
package provider
|
|
|
|
import (
|
|
"bytes"
|
|
"encoding/json"
|
|
"errors"
|
|
"io"
|
|
"runtime"
|
|
"strings"
|
|
"time"
|
|
|
|
"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"
|
|
"github.com/metacubex/mihomo/rules/common"
|
|
|
|
"gopkg.in/yaml.v3"
|
|
)
|
|
|
|
var tunnel P.Tunnel
|
|
|
|
func SetTunnel(t P.Tunnel) {
|
|
tunnel = t
|
|
}
|
|
|
|
type RulePayload struct {
|
|
/**
|
|
key: Domain or IP Cidr
|
|
value: Rule type or is empty
|
|
*/
|
|
Payload []string `yaml:"payload"`
|
|
Rules []string `yaml:"rules"`
|
|
}
|
|
|
|
type providerForApi struct {
|
|
Behavior string `json:"behavior"`
|
|
Format string `json:"format"`
|
|
Name string `json:"name"`
|
|
RuleCount int `json:"ruleCount"`
|
|
Type string `json:"type"`
|
|
VehicleType string `json:"vehicleType"`
|
|
UpdatedAt time.Time `json:"updatedAt"`
|
|
Payload []string `json:"payload,omitempty"`
|
|
}
|
|
|
|
type ruleStrategy interface {
|
|
Behavior() P.RuleBehavior
|
|
Match(metadata *C.Metadata) bool
|
|
Count() int
|
|
ShouldResolveIP() bool
|
|
ShouldFindProcess() bool
|
|
Reset()
|
|
Insert(rule string)
|
|
FinishInsert()
|
|
}
|
|
|
|
type mrsRuleStrategy interface {
|
|
ruleStrategy
|
|
FromMrs(r io.Reader, count int) error
|
|
WriteMrs(w io.Writer) error
|
|
DumpMrs(f func(key string) bool)
|
|
}
|
|
|
|
type baseProvider struct {
|
|
behavior P.RuleBehavior
|
|
strategy ruleStrategy
|
|
}
|
|
|
|
func (bp *baseProvider) Type() P.ProviderType {
|
|
return P.Rule
|
|
}
|
|
|
|
func (bp *baseProvider) Behavior() P.RuleBehavior {
|
|
return bp.behavior
|
|
}
|
|
|
|
func (bp *baseProvider) Count() int {
|
|
return bp.strategy.Count()
|
|
}
|
|
|
|
func (bp *baseProvider) Match(metadata *C.Metadata) bool {
|
|
return bp.strategy != nil && bp.strategy.Match(metadata)
|
|
}
|
|
|
|
func (bp *baseProvider) ShouldResolveIP() bool {
|
|
return bp.strategy.ShouldResolveIP()
|
|
}
|
|
|
|
func (bp *baseProvider) ShouldFindProcess() bool {
|
|
return bp.strategy.ShouldFindProcess()
|
|
}
|
|
|
|
func (bp *baseProvider) Strategy() any {
|
|
return bp.strategy
|
|
}
|
|
|
|
type ruleSetProvider struct {
|
|
baseProvider
|
|
*resource.Fetcher[ruleStrategy]
|
|
format P.RuleFormat
|
|
}
|
|
|
|
type RuleSetProvider struct {
|
|
*ruleSetProvider
|
|
}
|
|
|
|
func (rp *ruleSetProvider) Initial() error {
|
|
_, err := rp.Fetcher.Initial()
|
|
return err
|
|
}
|
|
|
|
func (rp *ruleSetProvider) Update() error {
|
|
_, _, err := rp.Fetcher.Update()
|
|
return err
|
|
}
|
|
|
|
func (rp *ruleSetProvider) MarshalJSON() ([]byte, error) {
|
|
return json.Marshal(
|
|
providerForApi{
|
|
Behavior: rp.behavior.String(),
|
|
Format: rp.format.String(),
|
|
Name: rp.Fetcher.Name(),
|
|
RuleCount: rp.strategy.Count(),
|
|
Type: rp.Type().String(),
|
|
UpdatedAt: rp.UpdatedAt(),
|
|
VehicleType: rp.VehicleType().String(),
|
|
})
|
|
}
|
|
|
|
func (rp *RuleSetProvider) Close() error {
|
|
runtime.SetFinalizer(rp, nil)
|
|
return rp.ruleSetProvider.Close()
|
|
}
|
|
|
|
func NewRuleSetProvider(name string, behavior P.RuleBehavior, format P.RuleFormat, interval time.Duration, vehicle P.Vehicle, parse common.ParseRuleFunc) P.RuleProvider {
|
|
rp := &ruleSetProvider{
|
|
baseProvider: baseProvider{
|
|
behavior: behavior,
|
|
},
|
|
format: format,
|
|
}
|
|
|
|
onUpdate := func(strategy ruleStrategy) {
|
|
rp.strategy = strategy
|
|
tunnel.RuleUpdateCallback().Emit(rp)
|
|
}
|
|
|
|
rp.strategy = newStrategy(behavior, parse)
|
|
rp.Fetcher = resource.NewFetcher(name, interval, vehicle, func(bytes []byte) (ruleStrategy, error) {
|
|
return rulesParse(bytes, newStrategy(behavior, parse), format)
|
|
}, onUpdate)
|
|
|
|
wrapper := &RuleSetProvider{
|
|
rp,
|
|
}
|
|
|
|
runtime.SetFinalizer(wrapper, (*RuleSetProvider).Close)
|
|
return wrapper
|
|
}
|
|
|
|
func newStrategy(behavior P.RuleBehavior, parse common.ParseRuleFunc) ruleStrategy {
|
|
switch behavior {
|
|
case P.Domain:
|
|
strategy := NewDomainStrategy()
|
|
return strategy
|
|
case P.IPCIDR:
|
|
strategy := NewIPCidrStrategy()
|
|
return strategy
|
|
case P.Classical:
|
|
strategy := NewClassicalStrategy(parse)
|
|
return strategy
|
|
default:
|
|
return nil
|
|
}
|
|
}
|
|
|
|
var (
|
|
ErrNoPayload = errors.New("file must have a `payload` field")
|
|
ErrInvalidFormat = errors.New("invalid format")
|
|
)
|
|
|
|
func rulesParse(buf []byte, strategy ruleStrategy, format P.RuleFormat) (ruleStrategy, error) {
|
|
strategy.Reset()
|
|
if format == P.MrsRule {
|
|
return rulesMrsParse(buf, strategy)
|
|
}
|
|
|
|
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 && format == P.YamlRule { // no head or only one line body
|
|
return nil, ErrNoPayload
|
|
}
|
|
}
|
|
var str string
|
|
switch format {
|
|
case P.TextRule:
|
|
str = string(line)
|
|
str = strings.TrimSpace(str)
|
|
if len(str) == 0 {
|
|
continue
|
|
}
|
|
if str[0] == '#' { // comment
|
|
continue
|
|
}
|
|
if strings.HasPrefix(str, "//") { // comment in Premium core
|
|
continue
|
|
}
|
|
case P.YamlRule:
|
|
trimLine := bytes.TrimSpace(line)
|
|
if len(trimLine) == 0 {
|
|
continue
|
|
}
|
|
if trimLine[0] == '#' { // comment
|
|
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
|
|
}
|
|
|
|
// parse payload body
|
|
err := yaml.Unmarshal(firstLineBuffer.Bytes(), schema)
|
|
firstLineBuffer.Truncate(firstLineLength)
|
|
if err != nil {
|
|
continue
|
|
}
|
|
|
|
if len(schema.Rules) > 0 {
|
|
str = schema.Rules[0]
|
|
}
|
|
if len(schema.Payload) > 0 {
|
|
str = schema.Payload[0]
|
|
}
|
|
default:
|
|
return nil, ErrInvalidFormat
|
|
}
|
|
|
|
if str == "" {
|
|
continue
|
|
}
|
|
|
|
strategy.Insert(str)
|
|
}
|
|
|
|
strategy.FinishInsert()
|
|
|
|
return strategy, nil
|
|
}
|
|
|
|
func rulesParseInline(rs []string, strategy ruleStrategy) ruleStrategy {
|
|
strategy.Reset()
|
|
for _, r := range rs {
|
|
if r != "" {
|
|
strategy.Insert(r)
|
|
}
|
|
}
|
|
strategy.FinishInsert()
|
|
return strategy
|
|
}
|
|
|
|
type InlineProvider struct {
|
|
*inlineProvider
|
|
}
|
|
|
|
type inlineProvider struct {
|
|
baseProvider
|
|
name string
|
|
updateAt time.Time
|
|
payload []string
|
|
}
|
|
|
|
func (i *inlineProvider) Name() string {
|
|
return i.name
|
|
}
|
|
|
|
func (i *inlineProvider) Initial() error {
|
|
return nil
|
|
}
|
|
|
|
func (i *inlineProvider) Update() error {
|
|
// make api update happy
|
|
i.updateAt = time.Now()
|
|
return nil
|
|
}
|
|
|
|
func (i *inlineProvider) VehicleType() P.VehicleType {
|
|
return P.Inline
|
|
}
|
|
|
|
func (i *inlineProvider) MarshalJSON() ([]byte, error) {
|
|
return json.Marshal(
|
|
providerForApi{
|
|
Behavior: i.behavior.String(),
|
|
Name: i.Name(),
|
|
RuleCount: i.strategy.Count(),
|
|
Type: i.Type().String(),
|
|
VehicleType: i.VehicleType().String(),
|
|
UpdatedAt: i.updateAt,
|
|
Payload: i.payload,
|
|
})
|
|
}
|
|
|
|
func NewInlineProvider(name string, behavior P.RuleBehavior, payload []string, parse common.ParseRuleFunc) P.RuleProvider {
|
|
ip := &inlineProvider{
|
|
baseProvider: baseProvider{
|
|
behavior: behavior,
|
|
strategy: newStrategy(behavior, parse),
|
|
},
|
|
payload: payload,
|
|
name: name,
|
|
updateAt: time.Now(),
|
|
}
|
|
ip.strategy = rulesParseInline(payload, ip.strategy)
|
|
|
|
wrapper := &InlineProvider{
|
|
ip,
|
|
}
|
|
|
|
//runtime.SetFinalizer(wrapper, (*InlineProvider).Close)
|
|
return wrapper
|
|
}
|