forked from zentures/sequence
-
Notifications
You must be signed in to change notification settings - Fork 3
/
analyzer.go
1271 lines (1063 loc) · 39 KB
/
analyzer.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
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
// 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 (
"crypto/sha1"
"encoding/hex"
"fmt"
"gitlab.in2p3.fr/cc-in2p3-system/sequence/models"
"strconv"
"strings"
"sync"
"time"
"unicode"
"github.com/willf/bitset"
"github.com/zhenjl/porter2"
"github.com/zhenjl/xparse/etld"
)
// Analyzer builds an analysis tree that represents all the Sequences from messages.
// It can be used to determine all of the unique patterns for a large body of messages.
//
// It's based on a single basic concept, that for multiple log messages, if tokens in
// the same position shares one same parent and one same child, then the tokens in
// that position is likely variable string, which means it's something we can extract.
// For example, take a look at the following two messages:
//
// Jan 12 06:49:42 irc sshd[7034]: Accepted password for root from 218.161.81.238 port 4228 ssh2
// Jan 12 14:44:48 jlz sshd[11084]: Accepted publickey for jlz from 76.21.0.16 port 36609 ssh2
//
// The first token of each message is a timestamp, and the 3rd token of each message
// is the literal "sshd". For the literals "irc" and "jlz", they both share a common
// parent, which is a timestamp. They also both share a common child, which is "sshd".
// This means token in between these, the 2nd token in each message, likely represents
// a variable token in this message type. In this case, "irc" and "jlz" happens to
// represent the syslog host.
//
// Looking further down the message, the literals "password" and "publickey" also
// share a common parent, "Accepted", and a common child, "for". So that means the
// token in this position is also a variable token (of type TokenString).
//
// You can find several tokens that share common parent and child in these two
// messages, which means each of these tokens can be extracted. And finally, we can
// determine that the single pattern that will match both is:
//
// %time% %string% sshd [ %integer% ] : Accepted %string% for %string% from %ipv4% port %integer% ssh2
//
// If later we add another message to this mix:
//
// Jan 12 06:49:42 irc sshd[7034]: Failed password for root from 218.161.81.238 port 4228 ssh2
//
// The Analyzer will determine that the literals "Accepted" in the 1st message, and
// "Failed" in the 3rd message share a common parent ":" and a common child "password",
// so it will determine that the token in this position is also a variable token.
// After all three messages are analyzed, the final pattern that will match all three
// messages is:
//
// %time% %string% sshd [ %integer% ] : %string% %string% for %string% from %ipv4% port %integer% ssh2
type Analyzer struct {
root *analyzerNode
leaf *analyzerNode
levels [][]*analyzerNode
litmaps []map[string]int
nodeCount []int
mu sync.RWMutex
}
//pattern to be used as the starting block for
//all conversions
type AnalyzerResult struct {
Service models.Service
PatternId string
Pattern string
TagPositions string
ExampleCount int
Examples []LogRecord
DateCreated time.Time
DateLastMatched time.Time
ComplexityScore float64
}
type analyzerNode struct {
Token
index int
level int
isKey bool
isSpaceBefore bool
isValue bool
leaf bool
parents *bitset.BitSet
children *bitset.BitSet
}
type stackAnalyzerNode struct {
node *analyzerNode
level int
score int
}
//Splits a slice of integers into a separated string, the separator is passed to the function.
func SplitToString(a []int, sep string) string {
if len(a) == 0 {
return ""
}
b := make([]string, len(a))
for i, v := range a {
b[i] = strconv.Itoa(v)
}
return strings.Join(b, sep)
}
//Splits a string of separated numbers to a slice of integers, the separator is passed to the function.
func SplitToInt(s string, sep string) []int {
var p []int
if len(s) == 0 {
return p
}
a := strings.Split(s, sep)
b := make([]int, len(a))
for i, v := range a {
b[i], _ = strconv.Atoi(v)
}
return b
}
//Tests the passed log record to see if it should be added to the examples collection for the Analyzer Result.
func AddExampleToAnalyzerResult(this *AnalyzerResult, lr LogRecord) {
if len(this.Examples) >= 3 {
//nothing to here
return
}
var found = false
//check it is unique and add, else don't
for _, ex := range this.Examples {
if lr.Message == ex.Message {
found = true
break
}
}
if !found {
this.Examples = append(this.Examples, lr)
}
}
//This ensures that the same pattern will always have the same id, returns a sha1 hash of the pattern + service name.
func GenerateIDFromString(pattern string, service string) string {
h := sha1.New()
h.Write([]byte(pattern + service))
sha := h.Sum(nil) // "sha" is uint8 type, encoded in base16
shaStr := hex.EncodeToString(sha) // String representation
return shaStr
}
//This calculates the complexity of the pattern, looking at the ratio if non-string tokens to string tokens.
//This value helps the reviewer of the pattern filter out the patterns that may be over tokenized.
func CalculatePatternComplexity(seq Sequence, lgt int) float64 {
var (
strct float64
intct float64
litct float64
othct float64
)
//length of the sequence
lt := float64(len(seq))
for _, tok := range seq {
if tok.Type == TokenString {
strct += 1
} else if tok.Type == TokenLiteral {
if len(tok.Value) > 1 {
litct += 1
} else if tok.Value != "=" {
lt -= 1
}
} else if tok.Type == TokenInteger {
intct += 1
} else {
othct += 1
}
}
//Complexity score
//all literal tokens
if lt == litct {
return 0.0
} else if strct > 0 {
return float64(strct / lt)
}
return 0.05
}
//The save threshold prevents messages with a low number of examples from saving to the database
// as they are likely to be poorly formed.
func getSaveThreshold() int {
//Get save threshold from the config
tr, err := strconv.Atoi(config.saveThreshold)
if err != nil {
logger.HandleError("Save Threshold value cannot be parsed to an integer. Setting it to 0")
tr = 0
}
return tr
}
func (this *stackAnalyzerNode) String() string {
return fmt.Sprintf("level=%d, score=%d, token=%v, leaf=%t", this.level, this.score, this.node.Token, this.node.leaf)
}
func NewAnalyzer() *Analyzer {
tree := &Analyzer{
root: newAnalyzerNode(),
leaf: newAnalyzerNode(),
}
tree.root.level = -1
return tree
}
func newAnalyzerNode() *analyzerNode {
return &analyzerNode{
parents: bitset.New(1),
children: bitset.New(1),
}
}
func (this *analyzerNode) String() string {
return fmt.Sprintf("%d/%d: %s %t %t %t\n--%s\n--%s\n", this.level, this.index, this.Token.String(),
this.isKey, this.isValue, this.leaf, this.parents.DumpAsBits(), this.children.DumpAsBits())
}
// Analyze analyzes the message sequence supplied, and returns the unique pattern
// that will match this message.
func (this *Analyzer) Analyze(seq Sequence) (Sequence, error) {
this.mu.RLock()
defer this.mu.RUnlock()
path, err := this.analyzeMessage(seq)
if err != nil {
return nil, err
}
var seq2 Sequence
for i, n := range path {
n.Token.Value, n.Token.isKey, n.Token.isValue = seq[i].Value, seq[i].isKey, seq[i].isValue
seq2 = append(seq2, n.Token)
}
//glog.Debugf("%s", seq2.PrintTokens())
return analyzeSequence(seq2), nil
}
// Add adds a single message sequence to the analysis tree. It will not determine
// if the tokens share a common parent or child at this point. After all the
// sequences are added, then Finalize() should be called.
func (this *Analyzer) Add(seq Sequence) error {
this.mu.Lock()
defer this.mu.Unlock()
//this appears to be the source of lots of errors during analysis
//therefore removing from here, it is done later in the analysis also
//seq = markSequenceKV(seq)
// Add enough levels to support the depth of the token list
if l := len(seq) - len(this.levels) + 1; l > 0 {
newlevels := make([][]*analyzerNode, l)
// the maps are used to hash literals to see if they exist
newmaps := make([]map[string]int, l)
for i := 0; i < l; i++ {
newlevels[i] = make([]*analyzerNode, allTypesCount)
newlevels[i][0] = this.leaf
newmaps[i] = make(map[string]int)
}
this.levels = append(this.levels, newlevels...)
this.litmaps = append(this.litmaps, newmaps...)
}
parent := this.root
for i, token := range seq {
vl := len(token.Value)
//more, rest := false, false
if vl >= 2 && token.Value[0] == '%' && token.Value[vl-1] == '%' {
if f := name2TagType(token.Value); f != TagUnknown {
token.Tag = f
token.Type = f.TokenType()
} else if t := name2TokenType(token.Value); t != TokenUnknown {
token.Type = t
token.Tag = TagUnknown
}
}
var foundNode *analyzerNode
switch {
case token.Tag != TagUnknown:
// if Tag is not TagUnknown, it means the Tag is one of the recognized
// tag type. In this case, we just add it to the list of tag types.
if foundNode = this.levels[i][int(token.Tag)]; foundNode == nil {
foundNode = newAnalyzerNode()
foundNode.Token = token
foundNode.level = i
foundNode.index = int(token.Tag)
this.levels[i][foundNode.index] = foundNode
}
case token.Type != TokenUnknown && token.Type != TokenLiteral:
// If this is a known token type but it's not a literal or alpha only, it means this
// token could contain different values. In this case, we add it to the
// list of token types.
if foundNode = this.levels[i][TagTypesCount+int(token.Type)]; foundNode == nil {
foundNode = newAnalyzerNode()
foundNode.Token = token
foundNode.level = i
foundNode.index = TagTypesCount + int(token.Type)
this.levels[i][foundNode.index] = foundNode
}
case token.Tag == TagUnknown && token.Type == TokenLiteral:
// if the tag type is unknown, and the token type is literal or plain text, that
// means this is some type of string we parsed from the message.
//if we are marking spaces then " literal" and "literal" need to be stored as different tokens
space := ""
if token.IsSpaceBefore {
space = " "
}
// If we have gotten here, it means we found a string that we cannot
// determine if it's a fixed literal, or a changing variable. So we have
// to keep this in the literal map to track it.
// If we have seen this literal before, then there's already a node
if j, ok := this.litmaps[i][space+token.Value]; ok {
foundNode = this.levels[i][j]
} else {
// Otherwise we create a new node for this first time literal,
// add it to the end of the nodes for this level, and keep track
// of the index in the slice/list in the literal map so we can
// quick it find its location later.
foundNode = newAnalyzerNode()
this.levels[i] = append(this.levels[i], foundNode)
foundNode.Token = token
foundNode.level = i
foundNode.index = len(this.levels[i]) - 1
foundNode.Tag = TagUnknown
//when adding to this map we must add the space before if it is marked true,
// or we get incorrect patterns
this.litmaps[i][space+foundNode.Value] = foundNode.index
foundNode.isKey = token.isKey
foundNode.isSpaceBefore = token.IsSpaceBefore
}
}
// We use a bitset to track parent and child relationships. In this case,
// we set the parent bit for the index of the current node, and set the
// child bit for the index of the parent node.
if parent != nil {
foundNode.parents.Set(uint(parent.index))
parent.children.Set(uint(foundNode.index))
}
parent = foundNode
}
// If we are finished with all the tokens, then the current parent node is the
// last node we created, which means it's a leaf node.
parent.leaf = true
// We set the 0th bit of the children bitset ...
parent.children.Set(0)
return nil
}
// Finalize will go through the analysis tree and determine which tokens share common
// parent and child, merge all the nodes that share at least 1 parent and 1 child,
// and finally compact the tree and remove all dead nodes.
func (this *Analyzer) Finalize() error {
this.mu.Lock()
defer this.mu.Unlock()
//fmt.Printf("in finalize\n")
if err := this.merge(); err != nil {
return err
}
return this.compact()
}
// merge merges trie[i][k] into trie[i][j] and updates all parents and children
// appropriately
func (this *Analyzer) merge() error {
// For every level of this tree ...
for i, level := range this.levels {
// And for every literal child of this level ...
// remember literal children starts after all the types, thus j := allTypesCount
for j := allTypesCount; j < len(level); j++ {
cur := level[j]
// - If the node is nil, then most likely it's been merged, so let's move on.
// - If the node is a key (isKey == true), then it's a literal that shouldn't
// be merged, so let's move on.
// - If the node is a single character literal, and it's not a character in
// a-zA-Z, then it shouldn't be merged, so let's move on.
if cur == nil || cur.isKey ||
(cur.Type == TokenLiteral && len(cur.Value) == 1 &&
!((cur.Value[0] >= 'a' && cur.Value[0] <= 'z') || (cur.Value[0] >= 'A' && cur.Value[0] <= 'Z'))) {
continue
}
// Finds the nodes that share at least 1 parent and 1 child with trie[i][j]
// These will be the nodes that get merged into j
mergeSet, err := this.getMergeSet(i, j, cur)
if err != nil {
return err
}
// if the number of nodes share at least 1 parent and 1 child is only 1, then
// it means it's only the current node left. In other words, no other nodes share
// at least 1 parent and 1 child with the current node. If so, move on.
if mergeSet.Count() > 1 {
// Otherwise, we want to merge the nodes that are in the mergeSet
// parents is the new parent bitset after the merging of all relevant nodes
parents := cur.parents
// children is the new children bitset after merging all relevant nodes
children := cur.children
leaf := cur.leaf
// For every node aside from the current node, let's merge their info
// into the current node (cur)
//
// Check to see if the kth bit is set, if so, then we merge the kth node
// into current node
for k, e := mergeSet.NextSet(uint(j) + 1); e; k, e = mergeSet.NextSet(uint(k) + 1) {
// The parents of the final merged node is the combination of all
// parents from all the merge nodes
parents.InPlaceUnion(level[k].parents)
// The children of the final merged node is the combination of all
// children from all the merge nodes
children.InPlaceUnion(level[k].children)
if leaf || level[k].leaf {
leaf = true
}
// Once we merge the parent and children bitset, we need to make sure
// all the parents of the merged node no longer points to the merged
// node, so we go through each parent and clear the kth child bit
//
// Make sure we are not at the top level since there's no more levels
// above it
if i > 0 {
plen := int(level[k].parents.Len())
for l := 0; l < plen; l++ {
// For each of the set parent bit of the kth node, we clear
// the kth child bit in the parent's children bitset
//
// Also, we set the parent's jth child bit since the parent
// needs to point to the new merged node
if level[k].parents.Test(uint(l)) {
this.levels[i-1][l].children.Clear(uint(k))
this.levels[i-1][l].children.Set(uint(j))
}
}
}
// Same for all the children of the merged node. For each of the
// children, we clear the kth parent bit
//
// Make sure we are not at the bottom level since there's no more
// levels below
if i < len(this.levels)-1 {
for l := 0; l < int(level[k].children.Len()); l++ {
// For each of the set child bit of the kth node, we clear
// the kth parent bit in the child's parents bitset
//
// Also, we set the child's jth parent bit since the parent
// needs to point to the new merged node
if level[k].children.Test(uint(l)) {
this.levels[i+1][l].parents.Clear(uint(k))
this.levels[i+1][l].parents.Set(uint(j))
}
}
}
level[k] = nil
}
cur.parents = parents
cur.children = children
cur.leaf = leaf
cur.Type = TokenString
}
}
}
return nil
}
// getMergeSet finds the nodes that share at least 1 parent and 1 child with trie[i][j]
// These will be the nodes that get merged into j
func (this *Analyzer) getMergeSet(i, j int, cur *analyzerNode) (*bitset.BitSet, error) {
level := this.levels[i]
// shareParents is a bitset marks all the nodes that share at least 1 parent
// with the current node being checked
shareParents := bitset.New(uint(len(level)))
// shareChildren is a bitset marks all the nodes that share at least 1 child
// with the current node being checked
shareChildren := bitset.New(uint(len(level)))
// Set the current node's bit in both shareParents and shareChildren
shareParents.Set(uint(j))
shareChildren.Set(uint(j))
// For each node after the current constant/word node, check to see if there's
// any that share at least 1 parent or 1 child
for k, tmp := range level[j+1:] {
// - If node if nil, then most likely have been merged, let's move on
// - We only merge nodes that are literals or strings, anything else
// is already a variable so move on
// - If node is a single character literal, then not merging, move on
if tmp == nil ||
(tmp.Type != TokenLiteral && tmp.Type != TokenString) ||
(tmp.Type == TokenLiteral && len(tmp.Value) == 1) {
continue
}
// Take the intersection of current node's parent bitset and the next
// constant/word node's parent bitset, if the cardinality of the result
// bitset is greater than 0, then it means they share at least 1 parent.
// If so, then set the bit that represent that node in shareParent.
if c := cur.parents.IntersectionCardinality(tmp.parents); c > 0 {
shareParents.Set(uint(k + j + 1))
}
// Take the intersection of current node's children bitset and the next
// constant/word node's children bitset, if the cardinality of the result
// bitset is greater than 0, then it means they share at least 1 child.
// If so, then set the bit that represent that node in shareChildren.
if c := cur.children.IntersectionCardinality(tmp.children); c > 0 {
shareChildren.Set(uint(k + j + 1))
}
}
// The goal is to identify all nodes that share at least 1 parent and 1 child
// with the current node. Now that we have all the nodes that share at least
// 1 parent in shareParents, and all the nodes that share at least 1 child
// in shareChildren, we can then take the intersection of shareParent and
// shareChildren to get all the nodes that share both
mergeSet := shareParents.Intersection(shareChildren)
return mergeSet, nil
}
func (this *Analyzer) compact() error {
// Build a complete new trie
newLevels := make([][]*analyzerNode, len(this.levels))
// Each level has a hash map of literals that points to the literal's
// index position in the level slice
newmaps := make([]map[string]int, len(this.litmaps))
for i := 0; i < len(newmaps); i++ {
newmaps[i] = make(map[string]int)
}
this.nodeCount = make([]int, len(this.levels))
// Copy all the fixed children (leaf, TokenNames, TagTokenMap) into the slice
// Copy any non-nil children into the slice
// Fix the index for all the children
// Add any literals to the hash
for i, level := range this.levels {
for j, cur := range level {
if j < allTypesCount || cur != nil {
newLevels[i] = append(newLevels[i], cur)
if cur != nil {
this.nodeCount[i]++
cur.index = len(newLevels[i]) - 1
if cur.Type == TokenLiteral {
newmaps[i][cur.Value] = cur.index
}
}
}
}
}
// Reset all the parents and children relationship for each node
for i, level := range newLevels {
for _, cur := range level {
if cur == nil {
continue
}
newParents := bitset.New(1)
if i > 0 {
for k, e := cur.parents.NextSet(0); e; k, e = cur.parents.NextSet(k + 1) {
// recall that index is already set to the index of the newLevels
newParents.Set(uint(this.levels[i-1][k].index))
}
} else {
newParents.Set(0)
}
newChildren := bitset.New(1)
if i < len(newLevels)-1 {
for k, e := cur.children.NextSet(0); e; k, e = cur.children.NextSet(k + 1) {
newChildren.Set(uint(this.levels[i+1][k].index))
}
}
cur.parents = newParents
cur.children = newChildren
if cur.Type != TokenLiteral {
cur.Value = ""
}
}
}
this.levels = newLevels
this.litmaps = newmaps
return nil
}
func (this *Analyzer) analyzeMessage(seq Sequence) ([]*analyzerNode, error) {
var (
cur stackAnalyzerNode
// Keep track of the path we have walked
// +1 because the first level is the root node, so the actual path is going
// to be level 1 .. n. When we return the actual path we will get rid of the
// first element in the slice.
path []*analyzerNode = make([]*analyzerNode, len(seq)+1)
// Keeps track of ALL paths of the matched patterns
paths [][]*analyzerNode
bestScore int
bestPath int
)
// toVisit is a stack, nodes that need to be visited are appended to the end,
// and we take nodes from the end to visit
toVisit := append(make([]stackAnalyzerNode, 0, 100), stackAnalyzerNode{this.root, 0, 0})
// Depth-first analysis of the message using the current tree
for len(toVisit) > 0 {
// Take the last node from the stack to visit
cur = toVisit[len(toVisit)-1]
//glog.Debugf("cur=%s, len(path)=%d", cur.String(), len(path))
// Delete the last node from the stack
toVisit = toVisit[:len(toVisit)-1]
if cur.level <= len(path) {
// If we are here, then the current level is less than the number of tokens,
// then we can assume this is still a possible path. So let's track it.
path[cur.level] = cur.node
}
// If the current level we are visiting is greater or equal to the number of
// tokens in the message, that means we have exhausted the message length. If
// the current node is also a leaf node, it means we have matched a pattern,
// so let's calculate the scores and max depth of this path, save the depth,
// score and path, and then move on to the next possible path.
if cur.level >= len(seq) {
// If this is a leaf node, that means we are at the end of the tree, and
// since this is also the last token, it means we have a match. If it's
// not a leaf node, it means we do not have a match.
if cur.node.leaf {
tmppath := append(make([]*analyzerNode, 0, len(path)-1), path[1:]...)
paths = append(paths, tmppath)
if cur.score > bestScore {
bestScore = cur.score
bestPath = len(paths) - 1
}
}
continue
}
token := seq[cur.level]
// For each of the child for the current node, we test to see if they should
// be added to the stack for visiting.
for i, e := cur.node.children.NextSet(0); e && i < uint(len(this.levels[cur.node.level+1])); i, e = cur.node.children.NextSet(i + 1) {
node := this.levels[cur.node.level+1][i]
if node != nil {
// Anything other than these 3 conditions are considered no match.
switch {
case node.Type == token.Type && token.Type != TokenLiteral && token.Type != TokenString:
// If the child node and the msg token have the same type, and
// type is not a literal or a string, that means we have a match
// for this level, so let's add it to the stack to visit.
//
// This is also considered a full match since the types matched
toVisit = append(toVisit, stackAnalyzerNode{node, cur.level + 1, cur.score + fullMatchWeight})
case node.Type == TokenString && token.Type == TokenLiteral &&
(len(token.Value) != 1 || (len(token.Value) == 1 && unicode.IsLetter(rune(token.Value[0]))) || token.Value == "/"):
// If the node is a string and token is a non-one-character literal,
// then it's considered a partial match, since a literal is
// technically a string.
toVisit = append(toVisit, stackAnalyzerNode{node, cur.level + 1, cur.score + partialMatchWeight})
case node.Type == TokenLiteral && token.Type == TokenLiteral && node.Value == token.Value:
// If the parse node and token are both literal type, then the
// value must also match. If matched, then let's add to the stack
// for visiting.
//
// Because the literal value matched, this is also considered to
// be a full match.
toVisit = append(toVisit, stackAnalyzerNode{node, cur.level + 1, cur.score + fullMatchWeight})
case token.Type == TokenString && token.isValue || node.Type == TokenString && node.Token.isValue:
toVisit = append(toVisit, stackAnalyzerNode{node, cur.level + 1, cur.score + fullMatchWeight})
}
}
}
}
if len(paths) > bestPath {
//return paths[bestPath], maxs[bestPath], nil
return paths[bestPath], nil
}
return nil, ErrNoMatch
}
func (this *Analyzer) dump() int {
total := 0
for i, l := range this.levels {
fmt.Printf("level %d (%d children):\n", i, len(l))
total += len(l)
for j, n := range l {
if n != nil {
fmt.Printf("node %d.%d: %s %s - %s\n", i, j, n.Type, n.Tag, n)
}
}
}
return total
}
func (this *Analyzer) dumpTree() {
for i, l := range this.levels {
space := ""
for k := 0; k < i; k++ {
space += " "
}
for j, n := range l {
if n != nil && j != 0 {
fmt.Printf("%s %d/%d: %s\n", space, i, j, n.Token)
}
}
}
}
func markSequenceKV(seq Sequence) Sequence {
// Step 1: mark all key=value pairs
l := len(seq)
for i := l - 1; i >= 0; i-- {
if seq[i].Value == "=" {
ki := i - 1 // key index
vi := i + 1 // value index
//sometimes there are double demlimiters or double equals signs
for vi < l && seq[vi].Type == TokenLiteral &&
(seq[vi].Value == "\"" || seq[vi].Value == "'" || seq[vi].Value == "<" || seq[vi].Value == "[" || seq[vi].Value == "{" || seq[vi].Value == "=") {
vi = vi + 1
}
// if the value index is smaller than the last node index, that means
// there's a node after the "=". If the node at value index is NOT
// already a key, then it's likely a value. Let's mark it.
if vi < l && !seq[vi].isKey &&
!(seq[vi].Value == "\"" || seq[vi].Value == "'" || seq[vi].Value == ">" || seq[vi].Value == "*" || seq[vi].Value == "," || seq[vi].Value == "}") {
seq[vi].isValue = true
if seq[vi].Type == TokenLiteral {
seq[vi].Type = TokenString
}
}
// if the key index is greater or equal to 0, which means there's
// a token before the "=", if it's a literal or id, then it's very likely
// a key, so let's mark that
if ki >= 0 && (seq[ki].Type == TokenLiteral || seq[ki].Type == TokenString) {
if seq[ki].Type == TokenString {
seq[ki].Type = TokenLiteral
}
seq[ki].isKey = true
}
}
}
return seq
}
func analyzeSequence(seq Sequence) Sequence {
l := len(seq)
var fexists = make([]bool, TagTypesCount)
defer func() {
// Step 7: try to see if we can find any srcport and dstport tags
for i, tok := range seq {
if tok.Type == token__host__ || tok.Type == token__email__ {
seq[i].Type = TokenString
}
if i < l-2 && tok.Type == TokenIPv4 && (seq[i+1].Value == "/" || seq[i+1].Value == ":") &&
seq[i+2].Type == TokenInteger {
switch tok.Tag {
case TagSrcIP:
seq[i+2].Tag = TagSrcPort
seq[i+2].Type = seq[i+2].Tag.TokenType()
fexists[seq[i+2].Tag] = true
case TagDstIP:
seq[i+2].Tag = TagDstPort
seq[i+2].Type = seq[i+2].Tag.TokenType()
fexists[seq[i+2].Tag] = true
case TagSrcIPNAT:
seq[i+2].Tag = TagSrcPortNAT
seq[i+2].Type = seq[i+2].Tag.TokenType()
fexists[seq[i+2].Tag] = true
case TagDstIPNAT:
seq[i+2].Tag = TagDstPortNAT
seq[i+2].Type = seq[i+2].Tag.TokenType()
fexists[seq[i+2].Tag] = true
}
}
//last of all set any marked literals containing percent values to strings
if seq[i].Special == "%" && seq[i].Type == TokenLiteral {
seq[i].Type = TokenString
}
}
//glog.Debugf("7. %s", seq)
}()
// Step 1: mark all key=value pairs, as well as any prekey words as key
seq = markSequenceKV(seq)
for i, tok := range seq {
if _, ok := keymaps.prekeys[tok.Value]; ok {
seq[i].isKey = true
}
}
// Step 2: try to recognize emails and host names
for i, tok := range seq {
if tok.Type == TokenLiteral && tok.Tag == TagUnknown {
//seq[i].Value = strings.ToLower(tok.Value)
// Matching a effective top level domain
if etld.Match(tok.Value) > 0 {
// Matching an email address
if strings.Index(tok.Value, "@") > 0 {
seq[i].Type = token__email__
} else if strings.Index(tok.Value, ".") > 0 {
seq[i].Type = token__host__
}
}
}
}
//glog.Debugf("2. %s", seq.PrintTokens())
//TODO: Review this - do we want to keep it?
// Step 3: try to recognize syslog headers (RFC5424 and RFC3164)
// RFC5424
// - "1 2003-10-11T22:14:15.003Z mymachine.example.com evntslog - ID47 ..."
// - "1 2003-08-24T05:14:15.000003-07:00 192.0.2.1 myproc 8710 - ..."
// - "1 2003-10-11T22:14:15.003Z mymachine.example.com su - ID47 ..."
// RFC3164
// - "Oct 11 22:14:15 mymachine su: ..."
// - "Aug 24 05:34:00 CST 1987 mymachine myproc[10]: ..."
if len(seq) >= 6 && seq[0].Type == TokenInteger && seq[1].Type == TokenTime &&
(seq[2].Type == TokenIPv4 || seq[2].Type == TokenIPv6 || seq[2].Type == token__host__ || seq[2].Type == TokenLiteral || seq[2].Type == TokenString) &&
seq[3].Type == TokenLiteral &&
(seq[4].Type == TokenInteger || (seq[4].Type == TokenLiteral && seq[4].Value == "-")) &&
(seq[5].Type == TokenLiteral) {
// RFC5424 header format
// message time
if seq[1].Tag != TagRegExTime {
seq[1].Tag = TagMsgTime
}
seq[1].Type = seq[1].Tag.TokenType()
fexists[seq[1].Tag] = true
// app ip or hostname
switch seq[2].Type {
case TokenIPv4:
seq[2].Tag = TagAppIP
case token__host__, TokenLiteral, TokenString:
seq[2].Tag = TagAppHost
}
seq[2].Type = seq[2].Tag.TokenType()
fexists[seq[2].Tag] = true
// appname
seq[3].Tag = TagAppName
seq[3].Type = seq[3].Tag.TokenType()
fexists[seq[3].Tag] = true
// session id (or proc id)
seq[4].Tag = TagSessionID
seq[4].Type = seq[4].Tag.TokenType()
fexists[seq[4].Tag] = true
// message id
seq[5].Tag = TagMsgId
seq[5].Type = seq[5].Tag.TokenType()
fexists[seq[5].Tag] = true
} else if len(seq) >= 4 && seq[0].Type == TokenTime &&
(seq[1].Type == TokenIPv4 || seq[1].Type == TokenIPv6 || seq[1].Type == token__host__ || seq[1].Type == TokenLiteral || seq[1].Type == TokenString) &&
(seq[2].Type == TokenLiteral || seq[2].Type == TokenString) &&
(seq[3].Type == TokenLiteral && seq[3].Value == ":") {
// RFC3164 format 1 - "Oct 11 22:14:15 mymachine su: ..."
// message time
if seq[0].Tag != TagRegExTime {
seq[0].Tag = TagMsgTime
}
seq[0].Type = seq[0].Tag.TokenType()
fexists[seq[0].Tag] = true
// app ip or hostname
switch seq[1].Type {
case TokenIPv4:
seq[1].Tag = TagAppIP
case token__host__, TokenLiteral, TokenString:
seq[1].Tag = TagAppHost
}
seq[1].Type = seq[1].Tag.TokenType()
fexists[seq[1].Tag] = true
// appname