2023-12-01 05:24:39 +00:00
|
|
|
package route
|
|
|
|
|
|
|
|
import (
|
|
|
|
"net/netip"
|
|
|
|
|
|
|
|
"github.com/sagernet/sing-box/adapter"
|
|
|
|
N "github.com/sagernet/sing/common/network"
|
|
|
|
)
|
|
|
|
|
|
|
|
var _ RuleItem = (*IPIsPrivateItem)(nil)
|
|
|
|
|
|
|
|
type IPIsPrivateItem struct {
|
|
|
|
isSource bool
|
|
|
|
}
|
|
|
|
|
|
|
|
func NewIPIsPrivateItem(isSource bool) *IPIsPrivateItem {
|
|
|
|
return &IPIsPrivateItem{isSource}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (r *IPIsPrivateItem) Match(metadata *adapter.InboundContext) bool {
|
|
|
|
var destination netip.Addr
|
|
|
|
if r.isSource {
|
|
|
|
destination = metadata.Source.Addr
|
|
|
|
} else {
|
|
|
|
destination = metadata.Destination.Addr
|
|
|
|
}
|
2024-03-24 11:06:02 +00:00
|
|
|
if destination.IsValid() {
|
|
|
|
return !N.IsPublicAddr(destination)
|
2023-12-01 05:24:39 +00:00
|
|
|
}
|
2024-03-24 11:06:02 +00:00
|
|
|
if !r.isSource {
|
|
|
|
for _, destinationAddress := range metadata.DestinationAddresses {
|
|
|
|
if !N.IsPublicAddr(destinationAddress) {
|
|
|
|
return true
|
|
|
|
}
|
2023-12-01 05:24:39 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
|
|
|
func (r *IPIsPrivateItem) String() string {
|
|
|
|
if r.isSource {
|
|
|
|
return "source_ip_is_private=true"
|
|
|
|
} else {
|
|
|
|
return "ip_is_private=true"
|
|
|
|
}
|
|
|
|
}
|