forked from elastic/beats
-
Notifications
You must be signed in to change notification settings - Fork 0
/
file.go
100 lines (80 loc) · 1.75 KB
/
file.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
package sniffer
import (
"fmt"
"io"
"time"
"github.com/tsg/gopacket"
"github.com/tsg/gopacket/layers"
"github.com/tsg/gopacket/pcap"
"github.com/elastic/beats/libbeat/logp"
)
type fileHandler struct {
pcapHandle *pcap.Handle
file string
loopCount, maxLoopCount int
topSpeed bool
lastTS time.Time
}
func newFileHandler(file string, topSpeed bool, maxLoopCount int) (*fileHandler, error) {
h := &fileHandler{
file: file,
topSpeed: topSpeed,
maxLoopCount: maxLoopCount,
}
if err := h.open(); err != nil {
return nil, err
}
return h, nil
}
func (h *fileHandler) open() error {
tmp, err := pcap.OpenOffline(h.file)
if err != nil {
return err
}
h.pcapHandle = tmp
return nil
}
func (h *fileHandler) ReadPacketData() ([]byte, gopacket.CaptureInfo, error) {
data, ci, err := h.pcapHandle.ReadPacketData()
if err != nil {
if err != io.EOF {
return data, ci, err
}
h.pcapHandle.Close()
h.pcapHandle = nil
h.loopCount++
if h.loopCount >= h.maxLoopCount {
return data, ci, err
}
logp.Debug("sniffer", "Reopening the file")
if err = h.open(); err != nil {
return nil, ci, fmt.Errorf("Error reopening file: %s", err)
}
data, ci, err = h.pcapHandle.ReadPacketData()
h.lastTS = ci.Timestamp
return data, ci, err
}
if h.topSpeed {
return data, ci, nil
}
if !h.lastTS.IsZero() {
sleep := ci.Timestamp.Sub(h.lastTS)
if sleep > 0 {
time.Sleep(sleep)
} else {
logp.Warn("Time in pcap went backwards: %d", sleep)
}
}
h.lastTS = ci.Timestamp
ci.Timestamp = time.Now()
return data, ci, nil
}
func (h *fileHandler) LinkType() layers.LinkType {
return h.pcapHandle.LinkType()
}
func (h *fileHandler) Close() {
if h.pcapHandle != nil {
h.pcapHandle.Close()
h.pcapHandle = nil
}
}