Skip to content

Commit ef29e45

Browse files
authored
chore: complete classical rule parse error log (#1839)
1 parent d1d846f commit ef29e45

File tree

3 files changed

+9
-6
lines changed

3 files changed

+9
-6
lines changed

docs/config.yaml

+2-1
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ external-controller-tls: 0.0.0.0:9443 # RESTful API HTTPS 监听地址,需要
6161
# RESTful API CORS标头配置
6262
external-controller-cors:
6363
allow-origins:
64-
- *
64+
- "*"
6565
allow-private-network: true
6666

6767
# RESTful API Unix socket 监听地址( windows版本大于17063也可以使用,即大于等于1803/RS4版本即可使用 )
@@ -78,6 +78,7 @@ external-controller-pipe: \\.\pipe\mihomo
7878
# 配置 WEB UI 目录,使用 http://{{external-controller}}/ui 访问
7979
external-ui: /path/to/ui/folder/
8080
external-ui-name: xd
81+
# 目前支持下载zip,tgz格式的压缩包
8182
external-ui-url: "https://github.com/MetaCubeX/metacubexd/archive/refs/heads/gh-pages.zip"
8283

8384
# 在RESTful API端口上开启DOH服务器

rules/parser.go

+3-1
Original file line numberDiff line numberDiff line change
@@ -81,8 +81,10 @@ func ParseRule(tp, payload, target string, params []string, subRules map[string]
8181
case "MATCH":
8282
parsed = RC.NewMatch(target)
8383
parseErr = nil
84+
case "":
85+
parseErr = fmt.Errorf("missing subsequent parameters: %s", payload)
8486
default:
85-
parseErr = fmt.Errorf("unsupported rule type %s", tp)
87+
parseErr = fmt.Errorf("unsupported rule type: %s", tp)
8688
}
8789

8890
if parseErr != nil {

rules/provider/classical_strategy.go

+4-4
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ func (c *classicalStrategy) Insert(rule string) {
5959

6060
r, err := c.parse(ruleType, rule, "", params)
6161
if err != nil {
62-
log.Warnln("parse rule error:[%s]", err.Error())
62+
log.Warnln("parse classical rule error: %s", err.Error())
6363
} else {
6464
if r.ShouldResolveIP() {
6565
c.shouldResolveIP = true
@@ -83,7 +83,7 @@ func ruleParse(ruleRaw string) (string, string, []string) {
8383
return item[0], item[1], nil
8484
} else if len(item) > 2 {
8585
if item[0] == "NOT" || item[0] == "OR" || item[0] == "AND" || item[0] == "SUB-RULE" || item[0] == "DOMAIN-REGEX" || item[0] == "PROCESS-NAME-REGEX" || item[0] == "PROCESS-PATH-REGEX" {
86-
return item[0], strings.Join(item[1:len(item)], ","), nil
86+
return item[0], strings.Join(item[1:], ","), nil
8787
} else {
8888
return item[0], item[1], item[2:]
8989
}
@@ -95,8 +95,8 @@ func ruleParse(ruleRaw string) (string, string, []string) {
9595
func NewClassicalStrategy(parse func(tp, payload, target string, params []string, subRules map[string][]C.Rule) (parsed C.Rule, parseErr error)) *classicalStrategy {
9696
return &classicalStrategy{rules: []C.Rule{}, parse: func(tp, payload, target string, params []string) (parsed C.Rule, parseErr error) {
9797
switch tp {
98-
case "MATCH":
99-
return nil, fmt.Errorf("unsupported rule type on rule-set")
98+
case "MATCH", "RULE-SET", "SUB-RULE":
99+
return nil, fmt.Errorf("unsupported rule type on classical rule-set: %s", tp)
100100
default:
101101
return parse(tp, payload, target, params, nil)
102102
}

0 commit comments

Comments
 (0)