1 Star 0 Fork 0

zhangjungang/beats

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
file.go 1.75 KB
一键复制 编辑 原始数据 按行查看 历史
Steffen Siering 提交于 2017-08-24 12:24 . Delay device opening (#4939)
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
}
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/zhangjungang/beats.git
git@gitee.com:zhangjungang/beats.git
zhangjungang
beats
beats
v6.2.0

搜索帮助