mirror of
https://github.com/netbirdio/netbird.git
synced 2024-11-25 01:23:22 +01:00
94 lines
1.8 KiB
Go
94 lines
1.8 KiB
Go
package iptables
|
|
|
|
import "encoding/json"
|
|
|
|
type ipList struct {
|
|
ips map[string]struct{}
|
|
}
|
|
|
|
func newIpList(ip string) *ipList {
|
|
ips := make(map[string]struct{})
|
|
ips[ip] = struct{}{}
|
|
|
|
return &ipList{
|
|
ips: ips,
|
|
}
|
|
}
|
|
|
|
func (s *ipList) addIP(ip string) {
|
|
s.ips[ip] = struct{}{}
|
|
}
|
|
|
|
// MarshalJSON implements json.Marshaler
|
|
func (s *ipList) MarshalJSON() ([]byte, error) {
|
|
return json.Marshal(struct {
|
|
IPs map[string]struct{} `json:"ips"`
|
|
}{
|
|
IPs: s.ips,
|
|
})
|
|
}
|
|
|
|
// UnmarshalJSON implements json.Unmarshaler
|
|
func (s *ipList) UnmarshalJSON(data []byte) error {
|
|
temp := struct {
|
|
IPs map[string]struct{} `json:"ips"`
|
|
}{}
|
|
if err := json.Unmarshal(data, &temp); err != nil {
|
|
return err
|
|
}
|
|
s.ips = temp.IPs
|
|
return nil
|
|
}
|
|
|
|
type ipsetStore struct {
|
|
ipsets map[string]*ipList
|
|
}
|
|
|
|
func newIpsetStore() *ipsetStore {
|
|
return &ipsetStore{
|
|
ipsets: make(map[string]*ipList),
|
|
}
|
|
}
|
|
|
|
func (s *ipsetStore) ipset(ipsetName string) (*ipList, bool) {
|
|
r, ok := s.ipsets[ipsetName]
|
|
return r, ok
|
|
}
|
|
|
|
func (s *ipsetStore) addIpList(ipsetName string, list *ipList) {
|
|
s.ipsets[ipsetName] = list
|
|
}
|
|
|
|
func (s *ipsetStore) deleteIpset(ipsetName string) {
|
|
delete(s.ipsets, ipsetName)
|
|
}
|
|
|
|
func (s *ipsetStore) ipsetNames() []string {
|
|
names := make([]string, 0, len(s.ipsets))
|
|
for name := range s.ipsets {
|
|
names = append(names, name)
|
|
}
|
|
return names
|
|
}
|
|
|
|
// MarshalJSON implements json.Marshaler
|
|
func (s *ipsetStore) MarshalJSON() ([]byte, error) {
|
|
return json.Marshal(struct {
|
|
IPSets map[string]*ipList `json:"ipsets"`
|
|
}{
|
|
IPSets: s.ipsets,
|
|
})
|
|
}
|
|
|
|
// UnmarshalJSON implements json.Unmarshaler
|
|
func (s *ipsetStore) UnmarshalJSON(data []byte) error {
|
|
temp := struct {
|
|
IPSets map[string]*ipList `json:"ipsets"`
|
|
}{}
|
|
if err := json.Unmarshal(data, &temp); err != nil {
|
|
return err
|
|
}
|
|
s.ipsets = temp.IPSets
|
|
return nil
|
|
}
|