Skip to content

Commit

Permalink
fix address extraction from anonymous set (#23)
Browse files Browse the repository at this point in the history
* fix address extraction from anonymous set

* add tests for `mineAddress` functionality

---------

Co-authored-by: Ivan Andreyko <[email protected]>
  • Loading branch information
myromeu and Ivan Andreyko committed May 30, 2024
1 parent 8aa829a commit a52b12b
Show file tree
Hide file tree
Showing 3 changed files with 64 additions and 3 deletions.
1 change: 1 addition & 0 deletions go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ require (
require (
github.com/beorn7/perks v1.0.1 // indirect
github.com/cespare/xxhash/v2 v2.2.0 // indirect
github.com/google/go-cmp v0.6.0 // indirect
github.com/kr/text v0.2.0 // indirect
github.com/prometheus/client_model v0.6.0 // indirect
github.com/prometheus/common v0.51.0 // indirect
Expand Down
14 changes: 11 additions & 3 deletions nftables.go
Original file line number Diff line number Diff line change
Expand Up @@ -171,9 +171,17 @@ func (nft nftables) mineAddress(right gjson.Result) []string {
if set.Exists() {
var addresses []string
// fmt.Printf("[prefix] %s\n", set.Get("#.prefix"))
for _, prefix := range set.Get("#.prefix").Array() {
// fmt.Printf("[prefix] %s\n", prefix)
addresses = append(addresses, nft.subnetToString(prefix))
for _, el := range set.Array() {
switch el.Type {

Check failure on line 175 in nftables.go

View workflow job for this annotation

GitHub Actions / Build

missing cases in switch of type gjson.Type: gjson.Number (exhaustive)
case gjson.String:
addresses = append(addresses, el.String())
case gjson.JSON:
if el.Get("prefix").Exists() {
addresses = append(addresses, nft.subnetToString(el.Get("prefix")))
}
case gjson.False, gjson.Null, gjson.True:
// noop
}
}
return addresses
}
Expand Down
52 changes: 52 additions & 0 deletions nftables_test.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,52 @@
package main

import (
"sort"
"testing"

"github.com/google/go-cmp/cmp"
"github.com/tidwall/gjson"
)

func TestMineAddress(t *testing.T) {
nft := nftables{}

cases := []struct {
json string
want []string
}{
{ // plain string
json: `"8.8.8.8"`,
want: []string{"8.8.8.8"},
},

{ // anonymous ip addr only set
json: `{"set": ["8.8.8.8","10.96.0.10","21.21.0.242"]}}`,
want: []string{"10.96.0.10", "21.21.0.242", "8.8.8.8"},
},

{ // anonymous set with subnets only
json: `{"set": [{"prefix": {"addr": "10.10.0.0","len": 16}}, {"prefix": {"addr": "10.20.0.0","len": 16}}]}`,
want: []string{"10.10.0.0/16", "10.20.0.0/16"},
},

{ // anonymous mixed (ip addr and subnets) set
json: `{"set": ["8.8.8.8","10.96.0.10","21.21.0.242",{"prefix": {"addr": "127.0.0.0","len": 8}}]}`,
want: []string{"10.96.0.10", "127.0.0.0/8", "21.21.0.242", "8.8.8.8"},
},

{ // single subnet
json: `{"prefix": {"addr": "127.0.0.0","len": 8}}`,
want: []string{"127.0.0.0/8"},
},
}
for i, c := range cases {
json := gjson.Parse(c.json)
got := nft.mineAddress(json)

sort.Strings(got)
if !cmp.Equal(got, c.want) {
t.Errorf("mineAddress case#%d failed:\n%v\n", i, cmp.Diff(c.want, got))
}
}
}

0 comments on commit a52b12b

Please sign in to comment.