forked from elastic/beats
-
Notifications
You must be signed in to change notification settings - Fork 0
/
packetbeat.go
254 lines (211 loc) · 6.43 KB
/
packetbeat.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
package main
import (
"flag"
"fmt"
"os"
"runtime"
"time"
"github.com/elastic/libbeat/beat"
"github.com/elastic/libbeat/cfgfile"
"github.com/elastic/libbeat/common/droppriv"
"github.com/elastic/libbeat/filters"
"github.com/elastic/libbeat/filters/nop"
"github.com/elastic/libbeat/logp"
"github.com/elastic/libbeat/service"
"github.com/elastic/packetbeat/config"
"github.com/elastic/packetbeat/procs"
"github.com/elastic/packetbeat/protos"
"github.com/elastic/packetbeat/protos/dns"
"github.com/elastic/packetbeat/protos/http"
"github.com/elastic/packetbeat/protos/memcache"
"github.com/elastic/packetbeat/protos/mongodb"
"github.com/elastic/packetbeat/protos/mysql"
"github.com/elastic/packetbeat/protos/pgsql"
"github.com/elastic/packetbeat/protos/redis"
"github.com/elastic/packetbeat/protos/tcp"
"github.com/elastic/packetbeat/protos/thrift"
"github.com/elastic/packetbeat/protos/udp"
"github.com/elastic/packetbeat/sniffer"
)
// You can overwrite these, e.g.: go build -ldflags "-X main.Version 1.0.0-beta3"
var Version = "1.0.0-beta4"
var Name = "packetbeat"
var EnabledProtocolPlugins map[protos.Protocol]protos.ProtocolPlugin = map[protos.Protocol]protos.ProtocolPlugin{
protos.HttpProtocol: new(http.Http),
protos.MemcacheProtocol: new(memcache.Memcache),
protos.MysqlProtocol: new(mysql.Mysql),
protos.PgsqlProtocol: new(pgsql.Pgsql),
protos.RedisProtocol: new(redis.Redis),
protos.ThriftProtocol: new(thrift.Thrift),
protos.MongodbProtocol: new(mongodb.Mongodb),
protos.DnsProtocol: new(dns.Dns),
}
var EnabledFilterPlugins map[filters.Filter]filters.FilterPlugin = map[filters.Filter]filters.FilterPlugin{
filters.NopFilter: new(nop.Nop),
}
// Beater object. Contains all objects needed to run the beat
type Packetbeat struct {
PbConfig config.Config
CmdLineArgs CmdLineArgs
Sniff *sniffer.SnifferSetup
over chan bool
}
type CmdLineArgs struct {
File *string
Loop *int
OneAtAtime *bool
TopSpeed *bool
Dumpfile *string
PrintDevices *bool
WaitShutdown *int
}
var cmdLineArgs CmdLineArgs
func init() {
cmdLineArgs = CmdLineArgs{
File: flag.String("I", "", "file"),
Loop: flag.Int("l", 1, "Loop file. 0 - loop forever"),
OneAtAtime: flag.Bool("O", false, "Read packets one at a time (press Enter)"),
TopSpeed: flag.Bool("t", false, "Read packets as fast as possible, without sleeping"),
Dumpfile: flag.String("dump", "", "Write all captured packets to this libpcap file"),
PrintDevices: flag.Bool("devices", false, "Print the list of devices and exit"),
WaitShutdown: flag.Int("waitstop", 0, "Additional seconds to wait befor shutting down"),
}
}
func fetchAdditionalCmdLineArgs() CmdLineArgs {
return cmdLineArgs
}
// Handle custom command line flags
func (pb *Packetbeat) CliFlags(b *beat.Beat) {
// -devices CLI flag
if *pb.CmdLineArgs.PrintDevices {
devs, err := sniffer.ListDeviceNames(true)
if err != nil {
fmt.Printf("Error getting devices list: %v\n", err)
os.Exit(1)
}
if len(devs) == 0 {
fmt.Printf("No devices found.")
if runtime.GOOS != "windows" {
fmt.Printf(" You might need sudo?\n")
} else {
fmt.Printf("\n")
}
}
for i, dev := range devs {
fmt.Printf("%d: %s\n", i, dev)
}
os.Exit(0)
}
}
// Loads the beat specific config and overwrites params based on cmd line
func (pb *Packetbeat) Config(b *beat.Beat) error {
// Read beat implementation config as needed for setup
err := cfgfile.Read(&pb.PbConfig, "")
// CLI flags over-riding config
if *pb.CmdLineArgs.TopSpeed {
pb.PbConfig.Interfaces.TopSpeed = true
}
if len(*pb.CmdLineArgs.File) > 0 {
pb.PbConfig.Interfaces.File = *pb.CmdLineArgs.File
}
pb.PbConfig.Interfaces.Loop = *pb.CmdLineArgs.Loop
pb.PbConfig.Interfaces.OneAtATime = *pb.CmdLineArgs.OneAtAtime
if len(*pb.CmdLineArgs.Dumpfile) > 0 {
pb.PbConfig.Interfaces.Dumpfile = *pb.CmdLineArgs.Dumpfile
}
// assign global singleton as it is used in protocols
// TODO: Refactor
config.ConfigSingleton = pb.PbConfig
return err
}
// Setup packetbeat
func (pb *Packetbeat) Setup(b *beat.Beat) error {
if err := procs.ProcWatcher.Init(pb.PbConfig.Procs); err != nil {
logp.Critical(err.Error())
os.Exit(1)
}
pb.Sniff = new(sniffer.SnifferSetup)
logp.Debug("main", "Initializing protocol plugins")
for proto, plugin := range EnabledProtocolPlugins {
err := plugin.Init(false, b.Events)
if err != nil {
logp.Critical("Initializing plugin %s failed: %v", proto, err)
os.Exit(1)
}
protos.Protos.Register(proto, plugin)
}
var err error
tcpProc, err := tcp.NewTcp(&protos.Protos)
if err != nil {
logp.Critical(err.Error())
os.Exit(1)
}
udpProc, err := udp.NewUdp(&protos.Protos)
if err != nil {
logp.Critical(err.Error())
os.Exit(1)
}
pb.over = make(chan bool)
/*
logp.Debug("main", "Initializing filters")
_, err = filters.FiltersRun(
config.ConfigSingleton.Filter,
EnabledFilterPlugins,
b.Events,
b.Stop)
if err != nil {
logp.Critical("%v", err)
os.Exit(1)
}
*/
logp.Debug("main", "Initializing sniffer")
err = pb.Sniff.Init(false, tcpProc, udpProc)
if err != nil {
logp.Critical("Initializing sniffer failed: %v", err)
os.Exit(1)
}
// This needs to be after the sniffer Init but before the sniffer Run.
if err = droppriv.DropPrivileges(config.ConfigSingleton.RunOptions); err != nil {
logp.Critical(err.Error())
os.Exit(1)
}
return err
}
func (pb *Packetbeat) Run(b *beat.Beat) error {
// run the sniffer in background
go func() {
err := pb.Sniff.Run()
if err != nil {
logp.Critical("Sniffer main loop failed: %v", err)
os.Exit(1)
}
pb.over <- true
}()
// Startup successful, disable stderr logging if requested by
// cmdline flag
logp.SetStderr()
logp.Debug("main", "Waiting for the sniffer to finish")
// Wait for the goroutines to finish
for _ = range pb.over {
if !pb.Sniff.IsAlive() {
break
}
}
waitShutdown := pb.CmdLineArgs.WaitShutdown
if waitShutdown != nil && *waitShutdown > 0 {
time.Sleep(time.Duration(*waitShutdown) * time.Second)
}
return nil
}
func (pb *Packetbeat) Cleanup(b *beat.Beat) error {
if service.WithMemProfile() {
logp.Debug("main", "Waiting for streams and transactions to expire...")
time.Sleep(time.Duration(float64(protos.DefaultTransactionExpiration) * 1.2))
logp.Debug("main", "Streams and transactions should all be expired now.")
}
return nil
}
// Called by the Beat stop function
func (pb *Packetbeat) Stop() {
pb.Sniff.Stop()
}