2022-01-22 22:10:45 +08:00
|
|
|
package common
|
2019-05-09 21:00:29 +08:00
|
|
|
|
|
|
|
import (
|
2021-11-17 16:03:47 +08:00
|
|
|
"fmt"
|
2019-05-09 21:00:29 +08:00
|
|
|
|
2022-04-21 22:06:08 +08:00
|
|
|
"github.com/Dreamacro/clash/common/utils"
|
2019-05-09 21:00:29 +08:00
|
|
|
C "github.com/Dreamacro/clash/constant"
|
|
|
|
)
|
|
|
|
|
|
|
|
type Port struct {
|
2022-03-13 01:21:23 +08:00
|
|
|
*Base
|
2023-06-04 11:51:30 +08:00
|
|
|
adapter string
|
|
|
|
port string
|
|
|
|
ruleType C.RuleType
|
|
|
|
portRanges utils.IntRanges[uint16]
|
2019-05-09 21:00:29 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
func (p *Port) RuleType() C.RuleType {
|
2022-11-11 23:36:06 +08:00
|
|
|
return p.ruleType
|
2019-05-09 21:00:29 +08:00
|
|
|
}
|
|
|
|
|
feat: support sub-rule, eg.
rules:
- SUB-RULE,(AND,((NETWORK,TCP),(DOMAIN-KEYWORD,google))),TEST2
- SUB-RULE,(GEOIP,!CN),TEST1
- MATCH,DIRECT
sub-rules:
TEST2:
- MATCH,Proxy
TEST1:
- RULE-SET,Local,DIRECT,no-resolve
- GEOSITE,CN,Domestic
- GEOIP,CN,Domestic
- MATCH,Proxy
2022-09-06 17:30:35 +08:00
|
|
|
func (p *Port) Match(metadata *C.Metadata) (bool, string) {
|
2022-11-11 23:36:06 +08:00
|
|
|
targetPort := metadata.DstPort
|
|
|
|
switch p.ruleType {
|
|
|
|
case C.InPort:
|
|
|
|
targetPort = metadata.InPort
|
|
|
|
case C.SrcPort:
|
|
|
|
targetPort = metadata.SrcPort
|
2019-05-09 21:00:29 +08:00
|
|
|
}
|
2023-08-09 13:51:02 +08:00
|
|
|
return p.portRanges.Check(targetPort), p.adapter
|
2019-05-09 21:00:29 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
func (p *Port) Adapter() string {
|
|
|
|
return p.adapter
|
|
|
|
}
|
|
|
|
|
|
|
|
func (p *Port) Payload() string {
|
|
|
|
return p.port
|
|
|
|
}
|
|
|
|
|
2022-11-11 23:36:06 +08:00
|
|
|
func NewPort(port string, adapter string, ruleType C.RuleType) (*Port, error) {
|
2023-06-04 11:51:30 +08:00
|
|
|
portRanges, err := utils.NewIntRanges[uint16](port)
|
|
|
|
if err != nil {
|
2023-07-02 09:59:18 +08:00
|
|
|
return nil, fmt.Errorf("%w, %w", errPayload, err)
|
2021-11-17 16:03:47 +08:00
|
|
|
}
|
|
|
|
|
2023-06-04 11:51:30 +08:00
|
|
|
if len(portRanges) == 0 {
|
2019-10-28 00:02:23 +08:00
|
|
|
return nil, errPayload
|
2019-05-09 21:00:29 +08:00
|
|
|
}
|
2021-11-17 16:03:47 +08:00
|
|
|
|
2019-05-09 21:00:29 +08:00
|
|
|
return &Port{
|
2023-06-04 11:51:30 +08:00
|
|
|
Base: &Base{},
|
|
|
|
adapter: adapter,
|
|
|
|
port: port,
|
|
|
|
ruleType: ruleType,
|
|
|
|
portRanges: portRanges,
|
2019-10-28 00:02:23 +08:00
|
|
|
}, nil
|
2019-05-09 21:00:29 +08:00
|
|
|
}
|
2022-03-13 01:21:23 +08:00
|
|
|
|
|
|
|
var _ C.Rule = (*Port)(nil)
|