-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathdump.go
236 lines (198 loc) · 6.03 KB
/
dump.go
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
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
package main
import (
"net"
"strings"
"sync"
"time"
"github.com/yl2chen/cidranger"
"github.com/usher2/u2ckdump/internal/logger"
)
type (
Nothing struct{}
Int32Map map[int32]Nothing
PackedContentMap map[int32]*PackedContent
)
type ParseStatistics struct {
Count int
AddCount int
UpdateCount int
RemoveCount int
MaxItemReferences int
MaxItemReferencesString string
MaxURLIDReferences int
MaxDomainIDReferences int
MaxIPv4IDReferences int
MaxIPv6IDReferences int
MaxSubnetIPv4IDReferences int
MaxSubnetIPv6IDReferences int
LargestSizeOfContent int
LargestSizeOfContentCintentID int32
Updated time.Time
}
func (s *ParseStatistics) Update() {
s.Updated = time.Now()
}
type Dump struct {
sync.RWMutex
utime int64
IPv4Index Uint32SearchIndex
IPv6Index StringSearchIndex
subnetIPv4Index StringSearchIndex
subnetIPv6Index StringSearchIndex
URLIndex StringSearchIndex
domainIndex StringSearchIndex
decisionIndex Uint64SearchIndex
ContentIndex PackedContentMap
netTree cidranger.Ranger
publicSuffixIndex StringSearchIndex
entryTypeIndex StringSearchIndex
orgIndex StringSearchIndex
packedOrgIndex map[uint64]string
withoutDecisionNo IntArrayStorage
}
func NewDump() *Dump {
return &Dump{
utime: 0,
IPv4Index: make(Uint32SearchIndex),
IPv6Index: make(StringSearchIndex),
subnetIPv4Index: make(StringSearchIndex),
subnetIPv6Index: make(StringSearchIndex),
URLIndex: make(StringSearchIndex),
domainIndex: make(StringSearchIndex),
decisionIndex: make(Uint64SearchIndex),
ContentIndex: make(PackedContentMap),
netTree: cidranger.NewPCTrieRanger(),
publicSuffixIndex: make(StringSearchIndex),
entryTypeIndex: make(StringSearchIndex),
orgIndex: make(StringSearchIndex),
packedOrgIndex: make(map[uint64]string),
withoutDecisionNo: make(IntArrayStorage, 0),
}
}
func (d *Dump) InsertToIPv4Index(ip4 uint32, id int32) {
d.IPv4Index.Insert(ip4, id)
}
func (d *Dump) RemoveFromIPv4Index(ip4 uint32, id int32) {
d.IPv4Index.Remove(ip4, id)
}
func (d *Dump) InsertToIPv6Index(ip6 string, id int32) {
d.IPv6Index.Insert(ip6, id)
}
func (d *Dump) RemoveFromIPv6Index(ip6 string, id int32) {
d.IPv6Index.Remove(ip6, id)
}
func (d *Dump) InsertToSubnetIPv4Index(subnet4 string, id int32) {
if d.subnetIPv4Index.Insert(subnet4, id) {
_, network, err := net.ParseCIDR(subnet4)
if err != nil {
logger.Debug.Printf("Can't parse CIDR: %s: %s\n", subnet4, err.Error())
}
err = d.netTree.Insert(cidranger.NewBasicRangerEntry(*network))
if err != nil {
logger.Debug.Printf("Can't insert CIDR: %s: %s\n", subnet4, err.Error())
}
}
}
func (d *Dump) RemoveFromSubnetIPv4Index(subnet4 string, id int32) {
if d.subnetIPv4Index.Remove(subnet4, id) {
_, network, err := net.ParseCIDR(subnet4)
if err != nil {
logger.Debug.Printf("Can't parse CIDR: %s: %s\n", subnet4, err.Error())
}
_, err = d.netTree.Remove(*network)
if err != nil {
logger.Debug.Printf("Can't remove CIDR: %s: %s\n", subnet4, err.Error())
}
}
}
func (d *Dump) InsertToSubnetIPv6Index(subnet6 string, id int32) {
if d.subnetIPv6Index.Insert(subnet6, id) {
_, network, err := net.ParseCIDR(subnet6)
if err != nil {
logger.Debug.Printf("Can't parse CIDR: %s: %s\n", subnet6, err.Error())
}
err = d.netTree.Insert(cidranger.NewBasicRangerEntry(*network))
if err != nil {
logger.Debug.Printf("Can't insert CIDR: %s: %s\n", subnet6, err.Error())
}
}
}
func (d *Dump) RemoveFromSubnetIPv6Index(subnet6 string, id int32) {
if d.subnetIPv6Index.Remove(subnet6, id) {
_, network, err := net.ParseCIDR(subnet6)
if err != nil {
logger.Debug.Printf("Can't parse CIDR: %s: %s\n", subnet6, err.Error())
}
_, err = d.netTree.Remove(*network)
if err != nil {
logger.Debug.Printf("Can't remove CIDR: %s: %s\n", subnet6, err.Error())
}
}
}
func (d *Dump) InsertToURLIndex(url string, id int32) {
d.URLIndex.Insert(url, id)
}
func (d *Dump) RemoveFromURLIndex(url string, id int32) {
d.URLIndex.Remove(url, id)
}
func (d *Dump) InsertToDomainIndex(domain string, id int32) {
d.domainIndex.Insert(domain, id)
parent, suffix := parentDomains(domain)
if parent != "" {
d.publicSuffixIndex.Insert(parent, id)
}
if suffix != "" {
d.publicSuffixIndex.Insert(suffix, id)
}
}
func (d *Dump) RemoveFromDomainIndex(domain string, id int32) {
d.domainIndex.Remove(domain, id)
parent, suffix := parentDomains(domain)
if parent != "" {
d.publicSuffixIndex.Remove(parent, id)
}
if suffix != "" {
d.publicSuffixIndex.Remove(suffix, id)
}
}
func (d *Dump) InsertToDecisionIndex(decision uint64, id int32) {
d.decisionIndex.Insert(decision, id)
}
func (d *Dump) RemoveFromDecisionIndex(decision uint64, id int32) {
d.decisionIndex.Remove(decision, id)
}
func (d *Dump) InsertToDecisionOrgIndex(org string, id int32) {
d.orgIndex.Insert(org, id)
}
func (d *Dump) RemoveFromDecisionOrgIndex(org string, id int32) {
d.orgIndex.Remove(org, id)
}
func (d *Dump) InsertToDecisionWithoutNoIndex(number string, id int32) {
if strings.ReplaceAll(strings.ToLower(number), ".", "") != "б/н" {
return
}
d.withoutDecisionNo = d.withoutDecisionNo.Add(id)
}
func (d *Dump) RemoveFromDecisionWithoutNoIndex(id int32) {
d.withoutDecisionNo = d.withoutDecisionNo.Del(id)
}
func (d *Dump) InsertToEntryTypeIndex(entryType string, id int32) {
d.entryTypeIndex.Insert(entryType, id)
}
func (d *Dump) RemoveFromEntryTypeIndex(entryType string, id int32) {
d.entryTypeIndex.Remove(entryType, id)
}
var CurrentDump = NewDump()
type Reg struct {
UpdateTime int64
UpdateTimeUrgently string
FormatVersion string
}
func UpdateDumpTime(UpdateTime int64) {
CurrentDump.Lock()
for _, v := range CurrentDump.ContentIndex {
v.RegistryUpdateTime = UpdateTime
}
CurrentDump.utime = UpdateTime
CurrentDump.Unlock()
}