123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127 |
- // Copyright 2023 The frp Authors
- //
- // Licensed under the Apache License, Version 2.0 (the "License");
- // you may not use this file except in compliance with the License.
- // You may obtain a copy of the License at
- //
- // http://www.apache.org/licenses/LICENSE-2.0
- //
- // Unless required by applicable law or agreed to in writing, software
- // distributed under the License is distributed on an "AS IS" BASIS,
- // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- // See the License for the specific language governing permissions and
- // limitations under the License.
- package nathole
- import (
- "fmt"
- "net"
- "slices"
- "strconv"
- )
- const (
- EasyNAT = "EasyNAT"
- HardNAT = "HardNAT"
- BehaviorNoChange = "BehaviorNoChange"
- BehaviorIPChanged = "BehaviorIPChanged"
- BehaviorPortChanged = "BehaviorPortChanged"
- BehaviorBothChanged = "BehaviorBothChanged"
- )
- type NatFeature struct {
- NatType string
- Behavior string
- PortsDifference int
- RegularPortsChange bool
- PublicNetwork bool
- }
- func ClassifyNATFeature(addresses []string, localIPs []string) (*NatFeature, error) {
- if len(addresses) <= 1 {
- return nil, fmt.Errorf("not enough addresses")
- }
- natFeature := &NatFeature{}
- ipChanged := false
- portChanged := false
- var baseIP, basePort string
- var portMax, portMin int
- for _, addr := range addresses {
- ip, port, err := net.SplitHostPort(addr)
- if err != nil {
- return nil, err
- }
- portNum, err := strconv.Atoi(port)
- if err != nil {
- return nil, err
- }
- if slices.Contains(localIPs, ip) {
- natFeature.PublicNetwork = true
- }
- if baseIP == "" {
- baseIP = ip
- basePort = port
- portMax = portNum
- portMin = portNum
- continue
- }
- if portNum > portMax {
- portMax = portNum
- }
- if portNum < portMin {
- portMin = portNum
- }
- if baseIP != ip {
- ipChanged = true
- }
- if basePort != port {
- portChanged = true
- }
- }
- switch {
- case ipChanged && portChanged:
- natFeature.NatType = HardNAT
- natFeature.Behavior = BehaviorBothChanged
- case ipChanged:
- natFeature.NatType = HardNAT
- natFeature.Behavior = BehaviorIPChanged
- case portChanged:
- natFeature.NatType = HardNAT
- natFeature.Behavior = BehaviorPortChanged
- default:
- natFeature.NatType = EasyNAT
- natFeature.Behavior = BehaviorNoChange
- }
- if natFeature.Behavior == BehaviorPortChanged {
- natFeature.PortsDifference = portMax - portMin
- if natFeature.PortsDifference <= 5 && natFeature.PortsDifference >= 1 {
- natFeature.RegularPortsChange = true
- }
- }
- return natFeature, nil
- }
- func ClassifyFeatureCount(features []*NatFeature) (int, int, int) {
- easyCount := 0
- hardCount := 0
- // for HardNAT
- portsChangedRegularCount := 0
- for _, feature := range features {
- if feature.NatType == EasyNAT {
- easyCount++
- continue
- }
- hardCount++
- if feature.RegularPortsChange {
- portsChangedRegularCount++
- }
- }
- return easyCount, hardCount, portsChangedRegularCount
- }
|