mirror of
https://github.com/zeek/zeek.git
synced 2025-10-02 06:38:20 +00:00
iosource/pcap: Support configurable buffer size
On Linux with a default ext4 or tmpfs filesystem, the default buffer size for reading a pcap is chosen as 4k (strace/gdb validated). When reading large pcaps containing raw data transfers, the syscall overhead for read becomes visible in profiles. Support configurability of the buffer size and default to 128kb. When processing a ~830M PCAP (16 UDP connections, each transferring ~50MB) in bare mode, this change improves runtime from 1.39 sec to 1.29 sec. Increasing the buffer further didn't provide a noticeable boost.
This commit is contained in:
parent
c161b1c4b1
commit
7fac5837c3
9 changed files with 63 additions and 2 deletions
3
NEWS
3
NEWS
|
@ -102,6 +102,9 @@ Changed Functionality
|
||||||
- Parameter lists for functions, events and hooks now use commas instead of
|
- Parameter lists for functions, events and hooks now use commas instead of
|
||||||
semicolons in error messages or when printing such functions.
|
semicolons in error messages or when printing such functions.
|
||||||
|
|
||||||
|
- The IO buffer size used for PCAP file reading is now always 128kb. This
|
||||||
|
new default can be changed via ``Pcap::bufsize_offline_bytes``.
|
||||||
|
|
||||||
Removed Functionality
|
Removed Functionality
|
||||||
---------------------
|
---------------------
|
||||||
|
|
||||||
|
|
|
@ -5286,6 +5286,11 @@ export {
|
||||||
## interfaces.
|
## interfaces.
|
||||||
const bufsize = 128 &redef;
|
const bufsize = 128 &redef;
|
||||||
|
|
||||||
|
## Number of bytes to use for buffering file read operations when reading
|
||||||
|
## from a PCAP file. Setting this to 0 uses operating system defaults
|
||||||
|
## as chosen by fopen().
|
||||||
|
const bufsize_offline_bytes = 128 * 1024 &redef;
|
||||||
|
|
||||||
## Default timeout for packet sources without file descriptors.
|
## Default timeout for packet sources without file descriptors.
|
||||||
##
|
##
|
||||||
## For libpcap based packet sources that do not provide a usable
|
## For libpcap based packet sources that do not provide a usable
|
||||||
|
|
|
@ -10,6 +10,8 @@
|
||||||
#include <pcap-int.h>
|
#include <pcap-int.h>
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
#include <stdio.h>
|
||||||
|
|
||||||
#include "zeek/Event.h"
|
#include "zeek/Event.h"
|
||||||
#include "zeek/iosource/BPF_Program.h"
|
#include "zeek/iosource/BPF_Program.h"
|
||||||
#include "zeek/iosource/Packet.h"
|
#include "zeek/iosource/Packet.h"
|
||||||
|
@ -176,10 +178,42 @@ void PcapSource::OpenOffline()
|
||||||
{
|
{
|
||||||
char errbuf[PCAP_ERRBUF_SIZE];
|
char errbuf[PCAP_ERRBUF_SIZE];
|
||||||
|
|
||||||
pd = pcap_open_offline(props.path.c_str(), errbuf);
|
FILE* f = nullptr;
|
||||||
|
if ( props.path == "-" )
|
||||||
|
{
|
||||||
|
f = stdin;
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
if ( f = fopen(props.path.c_str(), "rb"); ! f )
|
||||||
|
{
|
||||||
|
Error(util::fmt("unable to open %s: %s", props.path.c_str(), strerror(errno)));
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
// Setup file IO buffering with a bufsize_offline_bytes sized
|
||||||
|
// buffer if set, otherwise use what fopen() took as the default.
|
||||||
|
if ( BifConst::Pcap::bufsize_offline_bytes != 0 )
|
||||||
|
{
|
||||||
|
iobuf.resize(BifConst::Pcap::bufsize_offline_bytes);
|
||||||
|
if ( util::detail::setvbuf(f, iobuf.data(), _IOFBF, iobuf.size()) != 0 )
|
||||||
|
{
|
||||||
|
Error(util::fmt("unable to setvbuf %s: %s", props.path.c_str(), strerror(errno)));
|
||||||
|
fclose(f);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// pcap_fopen_offline() takes ownership of f on success and
|
||||||
|
// pcap_close() elsewhere should close it, too.
|
||||||
|
pd = pcap_fopen_offline(f, errbuf);
|
||||||
|
|
||||||
if ( ! pd )
|
if ( ! pd )
|
||||||
{
|
{
|
||||||
|
if ( f != stdin )
|
||||||
|
fclose(f);
|
||||||
|
|
||||||
Error(errbuf);
|
Error(errbuf);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
|
@ -4,6 +4,7 @@
|
||||||
|
|
||||||
#include <sys/types.h> // for u_char
|
#include <sys/types.h> // for u_char
|
||||||
#include <unistd.h>
|
#include <unistd.h>
|
||||||
|
#include <vector>
|
||||||
|
|
||||||
extern "C"
|
extern "C"
|
||||||
{
|
{
|
||||||
|
@ -44,6 +45,9 @@ private:
|
||||||
|
|
||||||
pcap_t* pd;
|
pcap_t* pd;
|
||||||
struct pcap_stat prev_pstat = {0};
|
struct pcap_stat prev_pstat = {0};
|
||||||
|
|
||||||
|
// Buffer provided to setvbuf() when reading from a PCAP file.
|
||||||
|
std::vector<char> iobuf;
|
||||||
};
|
};
|
||||||
|
|
||||||
} // namespace zeek::iosource::pcap
|
} // namespace zeek::iosource::pcap
|
||||||
|
|
|
@ -3,6 +3,7 @@ module Pcap;
|
||||||
|
|
||||||
const snaplen: count;
|
const snaplen: count;
|
||||||
const bufsize: count;
|
const bufsize: count;
|
||||||
|
const bufsize_offline_bytes: count;
|
||||||
const non_fd_timeout: interval;
|
const non_fd_timeout: interval;
|
||||||
|
|
||||||
%%{
|
%%{
|
||||||
|
|
|
@ -1,3 +1,3 @@
|
||||||
### BTest baseline data generated by btest-diff. Do not edit. Use "btest -U/-u" to update. Requires BTest >= 0.63.
|
### BTest baseline data generated by btest-diff. Do not edit. Use "btest -U/-u" to update. Requires BTest >= 0.63.
|
||||||
fatal error: problem with interface NO_SUCH_INTERFACE
|
fatal error: problem with interface NO_SUCH_INTERFACE
|
||||||
fatal error: problem with trace file NO_SUCH_TRACE (NO_SUCH_TRACE: No such file or directory)
|
fatal error: problem with trace file NO_SUCH_TRACE (unable to open NO_SUCH_TRACE: No such file or directory)
|
||||||
|
|
2
testing/btest/Baseline/core.pcap.wrong-format/output
Normal file
2
testing/btest/Baseline/core.pcap.wrong-format/output
Normal file
|
@ -0,0 +1,2 @@
|
||||||
|
### BTest baseline data generated by btest-diff. Do not edit. Use "btest -U/-u" to update. Requires BTest >= 0.63.
|
||||||
|
fatal error: problem with trace file not-a.pcap (unknown file format)
|
2
testing/btest/Baseline/core.pcap.wrong-format/output2
Normal file
2
testing/btest/Baseline/core.pcap.wrong-format/output2
Normal file
|
@ -0,0 +1,2 @@
|
||||||
|
### BTest baseline data generated by btest-diff. Do not edit. Use "btest -U/-u" to update. Requires BTest >= 0.63.
|
||||||
|
fatal error: problem with trace file - (unknown file format)
|
10
testing/btest/core/pcap/wrong-format.zeek
Normal file
10
testing/btest/core/pcap/wrong-format.zeek
Normal file
|
@ -0,0 +1,10 @@
|
||||||
|
# @TEST-REQUIRES: test "${ZEEK_USE_CPP}" != "1"
|
||||||
|
# @TEST-EXEC-FAIL: zeek -b -r not-a.pcap >output 2>&1
|
||||||
|
# @TEST-EXEC: btest-diff output
|
||||||
|
# @TEST-EXEC-FAIL: cat not-a.pcap | zeek -b -r - >output2 2>&1
|
||||||
|
# @TEST-EXEC: btest-diff output2
|
||||||
|
|
||||||
|
@TEST-START-FILE ./not-a.pcap
|
||||||
|
%PDF-1.5
|
||||||
|
This isn't an actual pdf file, and neither a PCAP.
|
||||||
|
@TEST-END-FILE
|
Loading…
Add table
Add a link
Reference in a new issue