-
Notifications
You must be signed in to change notification settings - Fork 72
/
scanner.go
497 lines (430 loc) · 14.3 KB
/
scanner.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
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
// Copyright (c) 2014 Dataence, LLC. All rights reserved.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
package sequence
import (
"fmt"
"io"
"strconv"
)
// Scanner is a sequential lexical analyzer that breaks a log message into a
// sequence of tokens. It is sequential because it goes through log message
// sequentially tokentizing each part of the message, without the use of regular
// expressions. The scanner currently recognizes time stamps, IPv4 addresses, URLs,
// MAC addresses, integers and floating point numbers.
//
// For example, the following message
//
// Jan 12 06:49:42 irc sshd[7034]: Failed password for root from 218.161.81.238 port 4228 ssh2
//
// Returns the following Sequence:
//
// Sequence{
// Token{TokenTime, TagUnknown, "Jan 12 06:49:42"},
// Token{TokenLiteral, TagUnknown, "irc"},
// Token{TokenLiteral, TagUnknown, "sshd"},
// Token{TokenLiteral, TagUnknown, "["},
// Token{TokenInteger, TagUnknown, "7034"},
// Token{TokenLiteral, TagUnknown, "]"},
// Token{TokenLiteral, TagUnknown, ":"},
// Token{TokenLiteral, TagUnknown, "Failed"},
// Token{TokenLiteral, TagUnknown, "password"},
// Token{TokenLiteral, TagUnknown, "for"},
// Token{TokenLiteral, TagUnknown, "root"},
// Token{TokenLiteral, TagUnknown, "from"},
// Token{TokenIPv4, TagUnknown, "218.161.81.238"},
// Token{TokenLiteral, TagUnknown, "port"},
// Token{TokenInteger, TagUnknown, "4228"},
// Token{TokenLiteral, TagUnknown, "ssh2"},
// },
//
// The following message
//
// id=firewall time="2005-03-18 14:01:43" fw=TOPSEC priv=4 recorder=kernel type=conn policy=504 proto=TCP rule=deny src=210.82.121.91 sport=4958 dst=61.229.37.85 dport=23124 smac=00:0b:5f:b2:1d:80 dmac=00:04:c1:8b:d8:82
//
// Will return
// Sequence{
// Token{TokenLiteral, TagUnknown, "id"},
// Token{TokenLiteral, TagUnknown, "="},
// Token{TokenLiteral, TagUnknown, "firewall"},
// Token{TokenLiteral, TagUnknown, "time"},
// Token{TokenLiteral, TagUnknown, "="},
// Token{TokenLiteral, TagUnknown, "\""},
// Token{TokenTime, TagUnknown, "2005-03-18 14:01:43"},
// Token{TokenLiteral, TagUnknown, "\""},
// Token{TokenLiteral, TagUnknown, "fw"},
// Token{TokenLiteral, TagUnknown, "="},
// Token{TokenLiteral, TagUnknown, "TOPSEC"},
// Token{TokenLiteral, TagUnknown, "priv"},
// Token{TokenLiteral, TagUnknown, "="},
// Token{TokenInteger, TagUnknown, "4"},
// Token{TokenLiteral, TagUnknown, "recorder"},
// Token{TokenLiteral, TagUnknown, "="},
// Token{TokenLiteral, TagUnknown, "kernel"},
// Token{TokenLiteral, TagUnknown, "type"},
// Token{TokenLiteral, TagUnknown, "="},
// Token{TokenLiteral, TagUnknown, "conn"},
// Token{TokenLiteral, TagUnknown, "policy"},
// Token{TokenLiteral, TagUnknown, "="},
// Token{TokenInteger, TagUnknown, "504"},
// Token{TokenLiteral, TagUnknown, "proto"},
// Token{TokenLiteral, TagUnknown, "="},
// Token{TokenLiteral, TagUnknown, "TCP"},
// Token{TokenLiteral, TagUnknown, "rule"},
// Token{TokenLiteral, TagUnknown, "="},
// Token{TokenLiteral, TagUnknown, "deny"},
// Token{TokenLiteral, TagUnknown, "src"},
// Token{TokenLiteral, TagUnknown, "="},
// Token{TokenIPv4, TagUnknown, "210.82.121.91"},
// Token{TokenLiteral, TagUnknown, "sport"},
// Token{TokenLiteral, TagUnknown, "="},
// Token{TokenInteger, TagUnknown, "4958"},
// Token{TokenLiteral, TagUnknown, "dst"},
// Token{TokenLiteral, TagUnknown, "="},
// Token{TokenIPv4, TagUnknown, "61.229.37.85"},
// Token{TokenLiteral, TagUnknown, "dport"},
// Token{TokenLiteral, TagUnknown, "="},
// Token{TokenInteger, TagUnknown, "23124"},
// Token{TokenLiteral, TagUnknown, "smac"},
// Token{TokenLiteral, TagUnknown, "="},
// Token{TokenMac, TagUnknown, "00:0b:5f:b2:1d:80"},
// Token{TokenLiteral, TagUnknown, "dmac"},
// Token{TokenLiteral, TagUnknown, "="},
// Token{TokenMac, TagUnknown, "00:04:c1:8b:d8:82"},
// }
type Scanner struct {
seq Sequence
msg *Message
}
func NewScanner() *Scanner {
return &Scanner{
seq: make(Sequence, 0, 20),
msg: &Message{},
}
}
// Scan returns a Sequence, or a list of tokens, for the data string supplied.
// Scan is not concurrent-safe, and the returned Sequence is only valid until
// the next time any Scan*() method is called. The best practice would be to
// create one Scanner for each goroutine.
func (this *Scanner) Scan(s string) (Sequence, error) {
this.msg.Data = s
this.msg.reset()
this.seq = this.seq[:0]
var (
err error
tok Token
)
for tok, err = this.msg.Tokenize(); err == nil; tok, err = this.msg.Tokenize() {
this.insertToken(tok)
// special case for %r, or request, token in apache logs, which is comprised
// of method, url, and protocol like "GET http://blah HTTP/1.0"
if len(tok.Value) == 1 && tok.Value == "\"" && this.msg.state.inquote && this.msg.state.start != len(s) && s[this.msg.state.start] != ' ' {
l := matchRequestMethods(s[this.msg.state.start:])
if l > 0 {
this.insertToken(Token{
Tag: TagUnknown,
Type: TokenLiteral,
Value: s[this.msg.state.start : this.msg.state.start+l],
})
this.msg.state.inquote = false
this.msg.state.nxquote = false
this.msg.state.start += l
}
}
}
if err != nil && err != io.EOF {
return nil, err
}
return this.seq, nil
}
const (
jsonStart = iota
jsonObjectStart
jsonObjectKey
jsonObjectColon
jsonObjectValue
jsonObjectEnd
jsonArrayStart
jsonArrayValue
jsonArraySeparator
jsonArrayEnd
)
// ScanJson returns a Sequence, or a list of tokens, for the json string supplied.
// Scan is not concurrent-safe, and the returned Sequence is only valid until the
// next time any Scan*() method is called. The best practice would be to create
// one Scanner for each goroutine.
//
// ScanJson flattens a json string into key=value pairs, and it performs the
// following transformation:
// - all {, }, [, ], ", characters are removed
// - colon between key and value are changed to "="
// - nested objects have their keys concatenated with ".", so a json string like
// "userIdentity": {"type": "IAMUser"}
// will be returned as
// userIdentity.type=IAMUser
// - arrays are flattened by appending an index number to the end of the key,
// starting with 0, so a json string like
// {"value":[{"open":"2014-08-16T13:00:00.000+0000"}]}
// will be returned as
// value.0.open = 2014-08-16T13:00:00.000+0000
// - skips any key that has an empty value, so json strings like
// "reference":"" or "filterSet": {}
// will not show up in the Sequence
func (this *Scanner) ScanJson(s string) (Sequence, error) {
this.msg.Data = s
this.msg.reset()
this.seq = this.seq[:0]
var (
err error
tok Token
keys = make([]string, 0, 20) // collection keys
arrs = make([]int64, 0, 20) // array index
state = jsonStart // state
kquote, vquote bool // quoted key, quoted value
)
for tok, err = this.msg.Tokenize(); err == nil; tok, err = this.msg.Tokenize() {
// glog.Debugf("1. tok=%s, state=%d, kquote=%t, vquote=%t, depth=%d", tok, state, kquote, vquote, len(keys))
// glog.Debugln(keys)
// glog.Debugln(arrs)
switch state {
case jsonStart:
switch tok.Value {
case "{":
state = jsonObjectStart
keys = append(keys, "")
default:
return nil, fmt.Errorf("Invalid message. Expecting \"{\", got %q.", tok.Value)
}
case jsonObjectStart:
switch tok.Value {
case "{":
// Only reason this could happen is if we encountered an array of
// objects like [{"a":1}, {"b":2}]
arrs[len(arrs)-1]++
keys[len(keys)-1] = keys[len(keys)-2] + "." + strconv.FormatInt(arrs[len(arrs)-1], 10)
keys = append(keys, "")
case "\"":
// start quote, ignore, move on
//state = jsonObjectStart
if kquote = !kquote; !kquote {
return nil, fmt.Errorf("Invalid message. Expecting start quote for key, got end quote.")
}
case "}":
// got something like {}, ignore this key
if len(keys)-1 < 0 {
return nil, fmt.Errorf("Invalid message. Too many } characters.")
}
keys = keys[:len(keys)-1]
state = jsonObjectEnd
default:
if tok.Type == TokenLiteral {
//glog.Debugf("depth=%d, keys=%v", len(keys), keys)
switch len(keys) {
case 0:
return nil, fmt.Errorf("Invalid message. Expecting inside object, not so.")
case 1:
keys[0] = tok.Value
default:
keys[len(keys)-1] = keys[len(keys)-2] + "." + tok.Value
}
tok.Value = keys[len(keys)-1]
tok.isKey = true
this.insertToken(tok)
state = jsonObjectKey
} else {
return nil, fmt.Errorf("Invalid message. Expecting string key, got %q.", tok.Value)
}
}
case jsonObjectKey:
switch tok.Value {
case "\"":
// end quote, ignore, move on
//state = jsonObjectKey
if kquote = !kquote; kquote {
return nil, fmt.Errorf("Invalid message. Expecting end quote for key, got start quote.")
}
case ":":
if kquote {
return nil, fmt.Errorf("Invalid message. Expecting end quote for key, got %q.", tok.Value)
}
tok.Value = "="
this.insertToken(tok)
state = jsonObjectColon
default:
return nil, fmt.Errorf("Invalid message. Expecting colon or quote, got %q.", tok.Value)
}
case jsonObjectColon:
switch tok.Value {
case "\"":
if vquote {
// if vquote is already true, that means we encountered something like ""
vquote = false
// let's remove the key and "="
if len(this.seq) >= 2 {
this.seq = this.seq[:len(this.seq)-2]
}
state = jsonObjectValue
} else {
// start quote, ignore, move on
vquote = true
}
case "[":
// Start of an array
state = jsonArrayStart
arrs = append(arrs, 0)
keys = append(keys, keys[len(keys)-1]+"."+strconv.FormatInt(arrs[len(arrs)-1], 10))
// let's remove the key and "="
if len(this.seq) >= 2 {
this.seq = this.seq[:len(this.seq)-2]
}
case "{":
state = jsonObjectStart
keys = append(keys, "")
if len(this.seq) >= 2 {
this.seq = this.seq[:len(this.seq)-2]
}
default:
state = jsonObjectValue
tok.isValue = true
this.insertToken(tok)
}
case jsonObjectValue:
switch tok.Value {
case "\"":
// end quote, ignore, move on
//state = jsonObjectKey
if vquote = !vquote; vquote {
return nil, fmt.Errorf("Invalid message. Expecting end quote for value, got start quote.")
}
case "}":
// End of an object
if len(keys)-1 < 0 {
return nil, fmt.Errorf("Invalid message. Too many } characters.")
}
keys = keys[:len(keys)-1]
state = jsonObjectEnd
case ",":
state = jsonObjectStart
default:
return nil, fmt.Errorf("Invalid message. Expecting '}', ',' or '\"', got %q.", tok.Value)
}
case jsonObjectEnd, jsonArrayEnd:
switch tok.Value {
case "}":
// End of an object
if len(keys)-1 < 0 {
return nil, fmt.Errorf("Invalid message. Too many } characters.")
}
keys = keys[:len(keys)-1]
state = jsonObjectEnd
case "]":
// End of an object
if len(arrs)-1 < 0 || len(keys)-1 < 0 {
return nil, fmt.Errorf("Invalid message. Mismatched ']' or '}' characters.")
}
keys = keys[:len(keys)-1]
arrs = arrs[:len(arrs)-1]
state = jsonArrayEnd
case ",":
state = jsonObjectStart
// state = jsonArraySeparator
// arrs[len(arrs)-1]++
// keys[len(keys)-2] = keys[len(keys)-3] + "." + strconv.FormatInt(arrs[len(arrs)-1], 10)
default:
return nil, fmt.Errorf("Invalid message. Expecting '}' or ',', got %q.", tok.Value)
}
case jsonArraySeparator:
switch tok.Value {
case "{":
state = jsonObjectStart
keys = append(keys, "")
default:
return nil, fmt.Errorf("Invalid message. Expecting '{', got %q.", tok.Value)
}
case jsonArrayStart:
switch tok.Value {
case "\"":
// start quote, ignore, move on
//state = jsonArrayStart
if kquote = !kquote; !kquote {
return nil, fmt.Errorf("Invalid message. Expecting start quote for value, got end quote.")
}
case "{":
state = jsonObjectStart
keys = append(keys, "")
default:
if tok.Type == TokenLiteral {
//glog.Debugf("depth=%d, keys=%v", depth, keys)
this.insertToken(Token{
Tag: TagUnknown,
Type: TokenLiteral,
Value: keys[len(keys)-1],
isKey: true,
isValue: false,
})
this.insertToken(Token{
Tag: TagUnknown,
Type: TokenLiteral,
Value: "=",
isKey: false,
isValue: false,
})
tok.Value = keys[len(keys)-1]
tok.isValue = true
this.insertToken(tok)
state = jsonArrayValue
} else {
return nil, fmt.Errorf("Invalid message. Expecting string key, got %q.", tok.Value)
}
}
case jsonArrayValue:
switch tok.Value {
case "\"":
// end quote, ignore, move on
//state = jsonObjectKey
if vquote = !vquote; vquote {
return nil, fmt.Errorf("Invalid message. Expecting end quote for value, got start quote.")
}
case "]":
// End of an object
if len(arrs)-1 < 0 || len(keys)-1 < 0 {
return nil, fmt.Errorf("Invalid message. Mismatched ']' or '}' characters.")
}
keys = keys[:len(keys)-1]
arrs = arrs[:len(arrs)-1]
state = jsonArrayEnd
case ",":
state = jsonArrayStart
arrs[len(arrs)-1]++
keys[len(keys)-1] = keys[len(keys)-2] + "." + strconv.FormatInt(arrs[len(arrs)-1], 10)
default:
return nil, fmt.Errorf("Invalid message. Expecting ']', ',' or '\"', got %q.", tok.Value)
}
}
//glog.Debugf("2. tok=%s, state=%d, kquote=%t, vquote=%t, depth=%d", tok, state, kquote, vquote, len(keys))
}
if err != nil && err != io.EOF {
return nil, err
}
return this.seq, nil
}
func (this *Scanner) insertToken(tok Token) {
// For some reason this is consistently slightly faster than just append
if len(this.seq) >= cap(this.seq) {
this.seq = append(this.seq, tok)
} else {
i := len(this.seq)
this.seq = this.seq[:i+1]
this.seq[i] = tok
}
}