1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
|
package maxmind
import (
"encoding/json"
"fmt"
"os"
"strings"
"github.com/Loyalsoldier/geoip/lib"
"github.com/oschwald/geoip2-golang/v2"
"github.com/oschwald/maxminddb-golang/v2"
)
const (
TypeGeoLite2CountryMMDBIn = "maxmindMMDB"
DescGeoLite2CountryMMDBIn = "Convert MaxMind mmdb database to other formats"
)
func init() {
lib.RegisterInputConfigCreator(TypeGeoLite2CountryMMDBIn, func(action lib.Action, data json.RawMessage) (lib.InputConverter, error) {
return NewGeoLite2CountryMMDBInFromBytes(TypeGeoLite2CountryMMDBIn, DescGeoLite2CountryMMDBIn, action, data)
})
lib.RegisterInputConverter(TypeGeoLite2CountryMMDBIn, &GeoLite2CountryMMDBIn{
Description: DescGeoLite2CountryMMDBIn,
})
}
func NewGeoLite2CountryMMDBIn(iType string, iDesc string, action lib.Action, opts ...lib.InputOption) lib.InputConverter {
g := &GeoLite2CountryMMDBIn{
Type: iType,
Action: action,
Description: iDesc,
}
for _, opt := range opts {
if opt != nil {
opt(g)
}
}
return g
}
type GeoLite2CountryMMDBIn struct {
Type string
Action lib.Action
Description string
URI string
Want map[string]bool
OnlyIPType lib.IPType
}
func (g *GeoLite2CountryMMDBIn) GetType() string {
return g.Type
}
func (g *GeoLite2CountryMMDBIn) GetAction() lib.Action {
return g.Action
}
func (g *GeoLite2CountryMMDBIn) GetDescription() string {
return g.Description
}
func (g *GeoLite2CountryMMDBIn) Input(container lib.Container) (lib.Container, error) {
var content []byte
var err error
switch {
case strings.HasPrefix(strings.ToLower(g.URI), "http://"), strings.HasPrefix(strings.ToLower(g.URI), "https://"):
content, err = lib.GetRemoteURLContent(g.URI)
default:
content, err = os.ReadFile(g.URI)
}
if err != nil {
return nil, err
}
entries := make(map[string]*lib.Entry, 300)
err = g.generateEntries(content, entries)
if err != nil {
return nil, err
}
if len(entries) == 0 {
return nil, fmt.Errorf("❌ [type %s | action %s] no entry is generated", g.Type, g.Action)
}
ignoreIPType := lib.GetIgnoreIPType(g.OnlyIPType)
for _, entry := range entries {
switch g.Action {
case lib.ActionAdd:
if err := container.Add(entry, ignoreIPType); err != nil {
return nil, err
}
case lib.ActionRemove:
if err := container.Remove(entry, lib.CaseRemovePrefix, ignoreIPType); err != nil {
return nil, err
}
default:
return nil, lib.ErrUnknownAction
}
}
return container, nil
}
func (g *GeoLite2CountryMMDBIn) generateEntries(content []byte, entries map[string]*lib.Entry) error {
db, err := maxminddb.OpenBytes(content)
if err != nil {
return err
}
defer db.Close()
for network := range db.Networks() {
var name string
var err error
switch g.Type {
case TypeGeoLite2CountryMMDBIn, TypeDBIPCountryMMDBIn:
var record geoip2.Country
err = network.Decode(&record)
if err != nil {
return err
}
switch {
case strings.TrimSpace(record.Country.ISOCode) != "":
name = strings.ToUpper(strings.TrimSpace(record.Country.ISOCode))
case strings.TrimSpace(record.RegisteredCountry.ISOCode) != "":
name = strings.ToUpper(strings.TrimSpace(record.RegisteredCountry.ISOCode))
case strings.TrimSpace(record.RepresentedCountry.ISOCode) != "":
name = strings.ToUpper(strings.TrimSpace(record.RepresentedCountry.ISOCode))
}
case TypeIPInfoCountryMMDBIn:
var record ipInfoLite
err = network.Decode(&record)
if err != nil {
return err
}
name = strings.ToUpper(strings.TrimSpace(record.CountryCode))
default:
return lib.ErrNotSupportedFormat
}
if name == "" || !network.Found() {
continue
}
if len(g.Want) > 0 && !g.Want[name] {
continue
}
entry, found := entries[name]
if !found {
entry = lib.NewEntry(name)
}
if err := entry.AddPrefix(network.Prefix()); err != nil {
return err
}
entries[name] = entry
}
return nil
}
|