2018-06-10 14:50:03 +00:00
|
|
|
package rules
|
|
|
|
|
|
|
|
import (
|
|
|
|
"net"
|
|
|
|
|
|
|
|
C "github.com/Dreamacro/clash/constant"
|
|
|
|
)
|
|
|
|
|
2019-10-27 16:02:23 +00:00
|
|
|
type IPCIDROption func(*IPCIDR)
|
|
|
|
|
|
|
|
func WithIPCIDRSourceIP(b bool) IPCIDROption {
|
|
|
|
return func(i *IPCIDR) {
|
|
|
|
i.isSourceIP = b
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func WithIPCIDRNoResolve(noResolve bool) IPCIDROption {
|
|
|
|
return func(i *IPCIDR) {
|
2019-11-04 02:42:39 +00:00
|
|
|
i.noResolveIP = noResolve
|
2019-10-27 16:02:23 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-06-10 14:50:03 +00:00
|
|
|
type IPCIDR struct {
|
2019-10-27 16:02:23 +00:00
|
|
|
ipnet *net.IPNet
|
|
|
|
adapter string
|
|
|
|
isSourceIP bool
|
|
|
|
noResolveIP bool
|
2018-06-10 14:50:03 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func (i *IPCIDR) RuleType() C.RuleType {
|
2019-02-02 13:03:13 +00:00
|
|
|
if i.isSourceIP {
|
2019-05-09 13:00:29 +00:00
|
|
|
return C.SrcIPCIDR
|
2019-02-02 13:03:13 +00:00
|
|
|
}
|
2018-06-10 14:50:03 +00:00
|
|
|
return C.IPCIDR
|
|
|
|
}
|
|
|
|
|
2019-10-27 16:02:23 +00:00
|
|
|
func (i *IPCIDR) Match(metadata *C.Metadata) bool {
|
2019-05-09 13:00:29 +00:00
|
|
|
ip := metadata.DstIP
|
2019-02-02 13:03:13 +00:00
|
|
|
if i.isSourceIP {
|
2019-05-09 13:00:29 +00:00
|
|
|
ip = metadata.SrcIP
|
2018-06-10 14:50:03 +00:00
|
|
|
}
|
2019-10-27 13:44:07 +00:00
|
|
|
return ip != nil && i.ipnet.Contains(ip)
|
2018-06-10 14:50:03 +00:00
|
|
|
}
|
|
|
|
|
2018-06-20 14:41:02 +00:00
|
|
|
func (i *IPCIDR) Adapter() string {
|
|
|
|
return i.adapter
|
|
|
|
}
|
|
|
|
|
|
|
|
func (i *IPCIDR) Payload() string {
|
|
|
|
return i.ipnet.String()
|
2018-06-10 14:50:03 +00:00
|
|
|
}
|
|
|
|
|
2020-07-27 03:57:55 +00:00
|
|
|
func (i *IPCIDR) ShouldResolveIP() bool {
|
|
|
|
return !i.noResolveIP
|
2019-10-27 16:02:23 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func NewIPCIDR(s string, adapter string, opts ...IPCIDROption) (*IPCIDR, error) {
|
2018-06-10 14:50:03 +00:00
|
|
|
_, ipnet, err := net.ParseCIDR(s)
|
|
|
|
if err != nil {
|
2019-10-27 16:02:23 +00:00
|
|
|
return nil, errPayload
|
|
|
|
}
|
|
|
|
|
|
|
|
ipcidr := &IPCIDR{
|
|
|
|
ipnet: ipnet,
|
|
|
|
adapter: adapter,
|
2018-06-10 14:50:03 +00:00
|
|
|
}
|
2019-10-27 16:02:23 +00:00
|
|
|
|
|
|
|
for _, o := range opts {
|
|
|
|
o(ipcidr)
|
2018-06-10 14:50:03 +00:00
|
|
|
}
|
2019-10-27 16:02:23 +00:00
|
|
|
|
|
|
|
return ipcidr, nil
|
2018-06-10 14:50:03 +00:00
|
|
|
}
|