-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.go
427 lines (369 loc) · 9.94 KB
/
config.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
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
// Package gobgpdump is all the code necessary to set up a message dump
// It parses command line options, reads configuration from files,
// and returns all the parameters to the main logic of the program.
// Has passed fairly rigorous testing.
// Passes normal options, config files with multiple
// collectors over multiple months
//TODO: Add into the configuration option a list of allowed file
// extnsions, default being all, -conf option only
package gobgpdump
import (
"bufio"
"encoding/json"
"flag"
"fmt"
"io"
golog "log"
"os"
"strings"
"sync"
"time"
"github.com/CSUNetSec/protoparse/filter"
)
var (
DEBUG bool
)
// This is a struct to store all options in.
// This is just convenient so it can be read
// as a json object
type ConfigFile struct {
Collist []string //List of collectors
Start string // Start month These first three are only used in configuration option, which is why they don't have flags
End string //end month
Lo string //Log output
So string //Stat output
Do string //dump output
Wc int //worker count
Fmtr string //output format
Conf bool //get config from a file
Srcas string `json:"Srcas,omitempty"`
Destas string `json:"Destas,omitempty"`
Anyas string `json:"Anyas,omitempty"`
PrefList string `json:"Prefixes,omitempty"`
PrefLoc string `json:PrefLoc,omitempty`
Debug bool // sets the global debug flag for the package
}
// This struct is the complete parameter set for a file
// dump.
type DumpConfig struct {
workers int
source stringsource
fmtr Formatter
filters []filter.Filter
dump *MultiWriteFile
log *MultiWriteFile
stat *MultiWriteFile
}
func (dc *DumpConfig) GetWorkers() int {
return dc.workers
}
func (dc *DumpConfig) SummarizeAndClose(start time.Time) {
dc.fmtr.summarize()
//fahri
//dc.stat.WriteString(fmt.Sprintf("Total time taken: %s\n", time.Since(start)))
dc.CloseAll()
}
func (dc *DumpConfig) CloseAll() {
dc.dump.Close()
dc.log.Close()
dc.stat.Close()
}
func GetDumpConfig(configFile ConfigFile) (*DumpConfig, error) {
args := flag.Args()
var dc DumpConfig
if configFile.Debug == true {
DEBUG = true
} else {
DEBUG = false
}
if configFile.Conf {
if len(args) != 2 {
return nil, fmt.Errorf("Incorrect number of arguments for -conf option.\nShould be: -conf <collector formats> <config file>")
}
newConfig, ss, err := parseConfig(args[0], args[1])
if err != nil {
return nil, fmt.Errorf("Error parsing configuration: %s", err)
}
configFile = newConfig
dc.source = ss
} else {
dc.source = NewStringArray(args)
}
dc.workers = configFile.Wc
// This error is ignored. If there is an error, output to that file just gets trashed
var dump io.WriteCloser
if configFile.Do == "stdout" {
dump = os.Stdout
} else if configFile.Do == "" {
dump = DiscardCloser{}
} else {
dump, _ = os.Create(configFile.Do)
}
dc.dump = NewMultiWriteFile(dump)
var stat io.WriteCloser
if configFile.So == "stdout" {
stat = os.Stdout
} else if configFile.So == "" {
stat = DiscardCloser{}
} else {
stat, _ = os.Create(configFile.So)
}
dc.stat = NewMultiWriteFile(stat)
var log io.WriteCloser
if configFile.Lo == "stdout" {
log = os.Stdout
} else if configFile.Lo == "" {
log = DiscardCloser{}
} else {
log, _ = os.Create(configFile.Lo)
}
dc.log = NewMultiWriteFile(log)
golog.SetOutput(dc.log)
// This will need access to redirected output files
dc.fmtr = getFormatter(configFile, dump)
filts, err := getFilters(configFile)
dc.filters = filts
if err != nil {
return nil, err
}
return &dc, nil
}
func getFilters(configFile ConfigFile) ([]filter.Filter, error) {
var filters []filter.Filter
if configFile.Srcas != "" {
srcFilt, err := filter.NewASFilter(configFile.Srcas, filter.AS_SOURCE)
if err != nil {
return nil, err
}
filters = append(filters, srcFilt)
}
if configFile.Destas != "" {
destFilt, err := filter.NewASFilter(configFile.Destas, filter.AS_DESTINATION)
if err != nil {
return nil, err
}
filters = append(filters, destFilt)
}
if configFile.Anyas != "" {
anyFilt, err := filter.NewASFilter(configFile.Anyas, filter.AS_ANYWHERE)
if err != nil {
return nil, err
}
filters = append(filters, anyFilt)
}
loc := 0
switch configFile.PrefLoc {
case "advertized":
loc = filter.AdvPrefix
case "withdrawn":
loc = filter.WdrPrefix
default:
loc = filter.AnyPrefix
}
if configFile.PrefList != "" {
prefFilt, err := filter.NewPrefixFilterFromString(configFile.PrefList, ",", loc)
if err != nil {
return nil, err
}
filters = append(filters, prefFilt)
}
return filters, nil
}
// Consider putting this in format.go
func getFormatter(configFile ConfigFile, dumpOut io.Writer) (fmtr Formatter) {
switch configFile.Fmtr {
case "json":
fmtr = NewJSONFormatter()
case "pup":
fmtr = NewUniquePrefixList(dumpOut)
case "pts":
fmtr = NewUniquePrefixSeries(dumpOut)
case "day":
fmtr = NewDayFormatter(dumpOut)
case "text":
fmtr = NewTextFormatter()
case "prefixlock":
fmtr = NewPrefixLockFormatter()
case "ml":
fmtr = NewMlFormatter()
case "id":
fmtr = NewIdentityFormatter()
case "asmap":
fmtr = NewASMapFormatter(dumpOut)
default:
fmtr = NewTextFormatter()
}
return
}
// This is a wrapper so the source of the file names
// can come from an array, or from a directory listing
// in the case that the -conf option is used
// Stringsources are accessed from multiple goroutines, so
// they MUST be thread-safe
type stringsource interface {
Next() (string, error)
}
// This is the normal error returned by a stringsource, indicating
// there were no failures, there are just no more strings to recieve
var EOP error = fmt.Errorf("End of paths")
// Simple wrapper for a string array, so it can be accessed
// concurrently, and in the same way as a DirectorySource
type StringArray struct {
pos int
base []string
mux *sync.Mutex
}
func NewStringArray(buf []string) *StringArray {
return &StringArray{0, buf, &sync.Mutex{}}
}
func (sa *StringArray) Next() (string, error) {
sa.mux.Lock()
defer sa.mux.Unlock()
if sa.pos >= len(sa.base) {
return "", EOP
}
ret := sa.base[sa.pos]
sa.pos++
return ret, nil
}
type DirectorySource struct {
dirList []string
curDir int
fileList []os.FileInfo
curFile int
mux *sync.Mutex
}
func NewDirectorySource(dirs []string) *DirectorySource {
return &DirectorySource{dirs, 0, nil, 0, &sync.Mutex{}}
}
func (ds *DirectorySource) Next() (string, error) {
ds.mux.Lock()
defer ds.mux.Unlock()
// This should end all threads accessing it in the same way
// but warrants testing
if ds.fileList == nil {
err := ds.loadNextDir()
if err != nil {
return "", err
}
}
fName := ds.fileList[ds.curFile].Name()
pathPrefix := ds.dirList[ds.curDir]
ds.curFile++
if ds.curFile >= len(ds.fileList) {
ds.fileList = nil
ds.curDir++
}
return pathPrefix + fName, nil
}
func (ds *DirectorySource) loadNextDir() error {
if ds.curDir >= len(ds.dirList) {
return EOP
}
dirFd, err := os.Open(ds.dirList[ds.curDir])
if err != nil {
return err
}
defer dirFd.Close()
ds.fileList, err = dirFd.Readdir(0)
if err != nil {
return err
}
ds.curFile = 0
return nil
}
//This parses the configuration file
func parseConfig(colfmt, config string) (ConfigFile, stringsource, error) {
var cf ConfigFile
// Parse the collector format file
formats, err := readCollectorFormat(colfmt)
if err != nil {
return cf, nil, err
}
// Read the config as a json object from the file
fd, err := os.Open(config)
if err != nil {
return cf, nil, err
}
defer fd.Close()
dec := json.NewDecoder(fd)
dec.Decode(&cf)
// Create a list of directories
start, err := time.Parse("2006.01", cf.Start)
if err != nil {
return cf, nil, fmt.Errorf("Error parsing start date: %s", cf.Start)
}
end, err := time.Parse("2006.01", cf.End)
if err != nil {
return cf, nil, fmt.Errorf("Error parsing end date: %s", cf.End)
}
paths := []string{}
// Start at start, increment by 1 months, until it's past 1 day
// past end, so end is included
for mon := start; mon.Before(end.AddDate(0, 0, 1)); mon = mon.AddDate(0, 1, 0) {
for _, col := range cf.Collist {
curPath, exists := formats[col]
// If the collector does not have a special rule,
// use the default rule
if !exists {
curPath = formats["_default"]
curPath = strings.Replace(curPath, "{x}", col, -1)
}
// Remove all placeholders from the path
curPath = strings.Replace(curPath, "{yyyy.mm}", mon.Format("2006.01"), -1)
paths = append(paths, curPath)
}
}
return cf, NewDirectorySource(paths), nil
}
func readCollectorFormat(fname string) (map[string]string, error) {
fd, err := os.Open(fname)
if err != nil {
return nil, err
}
defer fd.Close()
reader := bufio.NewReader(fd)
formats := make(map[string]string)
_, base, err := readPairWithRule(reader, "{base}")
if err != nil {
return nil, err
}
_, def, err := readPairWithRule(reader, "{default}")
if err != nil {
return nil, err
}
formats["_default"] = base + def
for err == nil {
name, path, err := readPairWithRule(reader, "")
if err == io.EOF {
break
}
formats[name] = base + path
}
// Error must be non-nil at this point, but it may still
// be normal, so check if it's not
if err != nil && err != io.EOF {
return nil, err
}
return formats, nil
}
//This is a weird function, but it makes the code less messy
// Reads two strings, separated by a space, ending with a newline, and
// checks if the first string matches <expect>
// Fails on any other condition
func readPairWithRule(reader *bufio.Reader, expect string) (string, string, error) {
str, err := reader.ReadString('\n')
if err != nil {
return "", "", err
}
parts := strings.Split(str, " ")
if len(parts) != 2 {
return "", "", fmt.Errorf("Badly formatted string: %s\n", str)
}
first := strings.Trim(parts[0], "\n")
second := strings.Trim(parts[1], "\n")
if expect != "" && first != expect {
return "", "", fmt.Errorf("First string does not match rule\n")
}
return first, second, nil
}