forked from elastic/beats
-
Notifications
You must be signed in to change notification settings - Fork 0
/
publish.go
224 lines (188 loc) · 4.69 KB
/
publish.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
package publish
import (
"errors"
"github.com/elastic/beats/libbeat/beat"
"github.com/elastic/beats/libbeat/common"
"github.com/elastic/beats/libbeat/logp"
"github.com/elastic/beats/libbeat/processors"
)
type TransactionPublisher struct {
done chan struct{}
pipeline beat.Pipeline
canDrop bool
processor transProcessor
}
type transProcessor struct {
ignoreOutgoing bool
localIPs []string
name string
}
var debugf = logp.MakeDebug("publish")
func NewTransactionPublisher(
name string,
pipeline beat.Pipeline,
ignoreOutgoing bool,
canDrop bool,
) (*TransactionPublisher, error) {
localIPs, err := common.LocalIPAddrsAsStrings(false)
if err != nil {
return nil, err
}
p := &TransactionPublisher{
done: make(chan struct{}),
pipeline: pipeline,
canDrop: canDrop,
processor: transProcessor{
localIPs: localIPs,
name: name,
ignoreOutgoing: ignoreOutgoing,
},
}
return p, nil
}
func (p *TransactionPublisher) Stop() {
close(p.done)
}
func (p *TransactionPublisher) CreateReporter(
config *common.Config,
) (func(beat.Event), error) {
// load and register the module it's fields, tags and processors settings
meta := struct {
Event common.EventMetadata `config:",inline"`
Processors processors.PluginConfig `config:"processors"`
}{}
if err := config.Unpack(&meta); err != nil {
return nil, err
}
processors, err := processors.New(meta.Processors)
if err != nil {
return nil, err
}
clientConfig := beat.ClientConfig{
EventMetadata: meta.Event,
Processor: processors,
}
if p.canDrop {
clientConfig.PublishMode = beat.DropIfFull
}
client, err := p.pipeline.ConnectWith(clientConfig)
if err != nil {
return nil, err
}
// start worker, so post-processing and processor-pipeline
// can work concurrently to sniffer acquiring new events
ch := make(chan beat.Event, 3)
go p.worker(ch, client)
return func(event beat.Event) {
select {
case ch <- event:
case <-p.done:
ch = nil // stop serving more send requests
}
}, nil
}
func (p *TransactionPublisher) worker(ch chan beat.Event, client beat.Client) {
for {
select {
case <-p.done:
return
case event := <-ch:
pub, _ := p.processor.Run(&event)
if pub != nil {
client.Publish(*pub)
}
}
}
}
func (p *transProcessor) Run(event *beat.Event) (*beat.Event, error) {
if err := validateEvent(event); err != nil {
logp.Warn("Dropping invalid event: %v", err)
return nil, nil
}
if !p.normalizeTransAddr(event.Fields) {
return nil, nil
}
return event, nil
}
// filterEvent validates an event for common required fields with types.
// If event is to be filtered out the reason is returned as error.
func validateEvent(event *beat.Event) error {
fields := event.Fields
if event.Timestamp.IsZero() {
return errors.New("missing '@timestamp'")
}
_, ok := fields["@timestamp"]
if ok {
return errors.New("duplicate '@timestamp' field from event")
}
t, ok := fields["type"]
if !ok {
return errors.New("missing 'type' field from event")
}
_, ok = t.(string)
if !ok {
return errors.New("invalid 'type' field from event")
}
return nil
}
func (p *transProcessor) normalizeTransAddr(event common.MapStr) bool {
debugf("normalize address for: %v", event)
var srcServer, dstServer string
src, ok := event["src"].(*common.Endpoint)
debugf("has src: %v", ok)
if ok {
// check if it's outgoing transaction (as client)
isOutgoing := p.IsPublisherIP(src.IP)
if isOutgoing {
if p.ignoreOutgoing {
// duplicated transaction -> ignore it
debugf("Ignore duplicated transaction on: %s -> %s", srcServer, dstServer)
return false
}
//outgoing transaction
event["direction"] = "out"
}
srcServer = p.GetServerName(src.IP)
event["client_ip"] = src.IP
event["client_port"] = src.Port
event["client_proc"] = src.Proc
event["client_server"] = srcServer
delete(event, "src")
}
dst, ok := event["dst"].(*common.Endpoint)
debugf("has dst: %v", ok)
if ok {
dstServer = p.GetServerName(dst.IP)
event["ip"] = dst.IP
event["port"] = dst.Port
event["proc"] = dst.Proc
event["server"] = dstServer
delete(event, "dst")
//check if it's incoming transaction (as server)
if p.IsPublisherIP(dst.IP) {
// incoming transaction
event["direction"] = "in"
}
}
return true
}
func (p *transProcessor) IsPublisherIP(ip string) bool {
for _, myip := range p.localIPs {
if myip == ip {
return true
}
}
return false
}
func (p *transProcessor) GetServerName(ip string) string {
// in case the IP is localhost, return current shipper name
islocal, err := common.IsLoopback(ip)
if err != nil {
logp.Err("Parsing IP %s fails with: %s", ip, err)
return ""
}
if islocal {
return p.name
}
return ""
}