mirror of
https://github.com/apernet/hysteria.git
synced 2025-04-03 04:27:39 +03:00
Merge pull request #1242 from apernet/fix-portunion-65535
fix: infinite loop in PortUnion.Ports() when port range contains 65535
This commit is contained in:
commit
a2c7b8fd19
2 changed files with 61 additions and 3 deletions
|
@ -74,7 +74,7 @@ func (u PortUnion) Normalize() PortUnion {
|
||||||
normalized := PortUnion{u[0]}
|
normalized := PortUnion{u[0]}
|
||||||
for _, current := range u[1:] {
|
for _, current := range u[1:] {
|
||||||
last := &normalized[len(normalized)-1]
|
last := &normalized[len(normalized)-1]
|
||||||
if current.Start <= last.End+1 {
|
if uint32(current.Start) <= uint32(last.End)+1 {
|
||||||
if current.End > last.End {
|
if current.End > last.End {
|
||||||
last.End = current.End
|
last.End = current.End
|
||||||
}
|
}
|
||||||
|
@ -89,8 +89,8 @@ func (u PortUnion) Normalize() PortUnion {
|
||||||
func (u PortUnion) Ports() []uint16 {
|
func (u PortUnion) Ports() []uint16 {
|
||||||
var ports []uint16
|
var ports []uint16
|
||||||
for _, r := range u {
|
for _, r := range u {
|
||||||
for i := r.Start; i <= r.End; i++ {
|
for i := uint32(r.Start); i <= uint32(r.End); i++ {
|
||||||
ports = append(ports, i)
|
ports = append(ports, uint16(i))
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
return ports
|
return ports
|
||||||
|
|
|
@ -2,6 +2,7 @@ package utils
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"reflect"
|
"reflect"
|
||||||
|
"slices"
|
||||||
"testing"
|
"testing"
|
||||||
)
|
)
|
||||||
|
|
||||||
|
@ -51,6 +52,16 @@ func TestParsePortUnion(t *testing.T) {
|
||||||
s: "5678,1200-1236,9100-9012,1234-1240",
|
s: "5678,1200-1236,9100-9012,1234-1240",
|
||||||
want: PortUnion{{1200, 1240}, {5678, 5678}, {9012, 9100}},
|
want: PortUnion{{1200, 1240}, {5678, 5678}, {9012, 9100}},
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
name: "multiple ports and ranges with 65535 (reversed, unsorted, overlapping)",
|
||||||
|
s: "5678,1200-1236,65531-65535,65532-65534,9100-9012,1234-1240",
|
||||||
|
want: PortUnion{{1200, 1240}, {5678, 5678}, {9012, 9100}, {65531, 65535}},
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: "multiple ports and ranges with 65535 (reversed, unsorted, overlapping) 2",
|
||||||
|
s: "5678,1200-1236,65532-65535,65531-65534,9100-9012,1234-1240",
|
||||||
|
want: PortUnion{{1200, 1240}, {5678, 5678}, {9012, 9100}, {65531, 65535}},
|
||||||
|
},
|
||||||
{
|
{
|
||||||
name: "invalid 1",
|
name: "invalid 1",
|
||||||
s: "1234-",
|
s: "1234-",
|
||||||
|
@ -90,3 +101,50 @@ func TestParsePortUnion(t *testing.T) {
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func TestPortUnion_Ports(t *testing.T) {
|
||||||
|
tests := []struct {
|
||||||
|
name string
|
||||||
|
pu PortUnion
|
||||||
|
want []uint16
|
||||||
|
}{
|
||||||
|
{
|
||||||
|
name: "single port",
|
||||||
|
pu: PortUnion{{1234, 1234}},
|
||||||
|
want: []uint16{1234},
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: "multiple ports",
|
||||||
|
pu: PortUnion{{1234, 1236}},
|
||||||
|
want: []uint16{1234, 1235, 1236},
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: "multiple ports and ranges",
|
||||||
|
pu: PortUnion{{1234, 1236}, {5678, 5680}, {9000, 9002}},
|
||||||
|
want: []uint16{1234, 1235, 1236, 5678, 5679, 5680, 9000, 9001, 9002},
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: "single port 65535",
|
||||||
|
pu: PortUnion{{65535, 65535}},
|
||||||
|
want: []uint16{65535},
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: "port range with 65535",
|
||||||
|
pu: PortUnion{{65530, 65535}},
|
||||||
|
want: []uint16{65530, 65531, 65532, 65533, 65534, 65535},
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: "multiple ports and ranges with 65535",
|
||||||
|
pu: PortUnion{{65530, 65535}, {1234, 1236}},
|
||||||
|
want: []uint16{65530, 65531, 65532, 65533, 65534, 65535, 1234, 1235, 1236},
|
||||||
|
},
|
||||||
|
}
|
||||||
|
|
||||||
|
for _, tt := range tests {
|
||||||
|
t.Run(tt.name, func(t *testing.T) {
|
||||||
|
if got := tt.pu.Ports(); !slices.Equal(got, tt.want) {
|
||||||
|
t.Errorf("PortUnion.Ports() = %v, want %v", got, tt.want)
|
||||||
|
}
|
||||||
|
})
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue