mirror of
https://github.com/zeek/zeek.git
synced 2025-10-05 16:18:19 +00:00
Merge branch 'topic/christian/gh-2239-stdin-ctrl-c'
* topic/christian/gh-2239-stdin-ctrl-c: Stop signal-masking upon running unit tests Pause signal-masking during script parsing Add btests to verify Zeek's handling of SIGTERM and reading stdin Add procps/procps-ng to several CI Docker images
This commit is contained in:
commit
48486b4156
16 changed files with 159 additions and 3 deletions
10
CHANGES
10
CHANGES
|
@ -1,3 +1,13 @@
|
||||||
|
5.1.0-dev.245 | 2022-07-13 11:57:18 -0700
|
||||||
|
|
||||||
|
* Stop signal-masking upon running unit tests (Christian Kreibich, Corelight)
|
||||||
|
|
||||||
|
* Pause signal-masking during script parsing (Christian Kreibich, Corelight)
|
||||||
|
|
||||||
|
* Add btests to verify Zeek's handling of SIGTERM and reading stdin (Christian Kreibich, Corelight)
|
||||||
|
|
||||||
|
* Add procps/procps-ng to several CI Docker images (Christian Kreibich, Corelight)
|
||||||
|
|
||||||
5.1.0-dev.240 | 2022-07-13 11:23:38 -0700
|
5.1.0-dev.240 | 2022-07-13 11:23:38 -0700
|
||||||
|
|
||||||
* Use clang-format for all files in `testing/btest/plugins`. (Benjamin Bannier, Corelight)
|
* Use clang-format for all files in `testing/btest/plugins`. (Benjamin Bannier, Corelight)
|
||||||
|
|
2
VERSION
2
VERSION
|
@ -1 +1 @@
|
||||||
5.1.0-dev.240
|
5.1.0-dev.245
|
||||||
|
|
|
@ -20,6 +20,7 @@ RUN apk add --no-cache \
|
||||||
make \
|
make \
|
||||||
openssh-client \
|
openssh-client \
|
||||||
openssl-dev \
|
openssl-dev \
|
||||||
|
procps \
|
||||||
py3-pip \
|
py3-pip \
|
||||||
python3 \
|
python3 \
|
||||||
python3-dev \
|
python3-dev \
|
||||||
|
|
|
@ -20,6 +20,7 @@ RUN dnf -y install \
|
||||||
make \
|
make \
|
||||||
openssl \
|
openssl \
|
||||||
openssl-devel \
|
openssl-devel \
|
||||||
|
procps-ng \
|
||||||
python3 \
|
python3 \
|
||||||
python3-devel \
|
python3-devel \
|
||||||
python3-pip\
|
python3-pip\
|
||||||
|
|
|
@ -31,6 +31,7 @@ RUN dnf -y --nobest install \
|
||||||
make \
|
make \
|
||||||
openssl \
|
openssl \
|
||||||
openssl-devel \
|
openssl-devel \
|
||||||
|
procps-ng \
|
||||||
python3 \
|
python3 \
|
||||||
python3-devel \
|
python3-devel \
|
||||||
python3-pip\
|
python3-pip\
|
||||||
|
|
|
@ -23,6 +23,7 @@ RUN apt-get update && apt-get -y install \
|
||||||
libpcap-dev \
|
libpcap-dev \
|
||||||
libssl-dev \
|
libssl-dev \
|
||||||
make \
|
make \
|
||||||
|
procps \
|
||||||
python3 \
|
python3 \
|
||||||
python3-dev \
|
python3-dev \
|
||||||
python3-pip\
|
python3-pip\
|
||||||
|
|
|
@ -18,6 +18,7 @@ RUN dnf -y install \
|
||||||
make \
|
make \
|
||||||
openssl \
|
openssl \
|
||||||
openssl-devel \
|
openssl-devel \
|
||||||
|
procps-ng \
|
||||||
python3 \
|
python3 \
|
||||||
python3-devel \
|
python3-devel \
|
||||||
python3-pip\
|
python3-pip\
|
||||||
|
|
|
@ -18,6 +18,7 @@ RUN dnf -y install \
|
||||||
make \
|
make \
|
||||||
openssl \
|
openssl \
|
||||||
openssl-devel \
|
openssl-devel \
|
||||||
|
procps-ng \
|
||||||
python3 \
|
python3 \
|
||||||
python3-devel \
|
python3-devel \
|
||||||
python3-pip\
|
python3-pip\
|
||||||
|
|
|
@ -606,8 +606,9 @@ SetupResult setup(int argc, char** argv, Options* zopts)
|
||||||
|
|
||||||
// Mask signals relevant for our signal handlers here. We unmask them
|
// Mask signals relevant for our signal handlers here. We unmask them
|
||||||
// again further down, when all components that launch threads have done
|
// again further down, when all components that launch threads have done
|
||||||
// so. The launched threads inherit the active signal mask and thus
|
// so, and intermittently during parsing. The launched threads inherit
|
||||||
// prevent our signal handlers from running in unintended threads.
|
// the active signal mask and thus prevent our signal handlers from
|
||||||
|
// running in unintended threads.
|
||||||
set_signal_mask(true);
|
set_signal_mask(true);
|
||||||
|
|
||||||
if ( options.supervisor_mode )
|
if ( options.supervisor_mode )
|
||||||
|
@ -717,6 +718,7 @@ SetupResult setup(int argc, char** argv, Options* zopts)
|
||||||
// Delay the unit test until here so that plugins have been loaded.
|
// Delay the unit test until here so that plugins have been loaded.
|
||||||
if ( options.run_unit_tests )
|
if ( options.run_unit_tests )
|
||||||
{
|
{
|
||||||
|
set_signal_mask(false); // Allow ctrl-c to abort the tests early
|
||||||
doctest::Context context;
|
doctest::Context context;
|
||||||
auto dargs = to_cargs(options.doctest_args);
|
auto dargs = to_cargs(options.doctest_args);
|
||||||
context.applyCommandLine(dargs.size(), dargs.data());
|
context.applyCommandLine(dargs.size(), dargs.data());
|
||||||
|
@ -778,9 +780,15 @@ SetupResult setup(int argc, char** argv, Options* zopts)
|
||||||
if ( options.event_trace_file )
|
if ( options.event_trace_file )
|
||||||
etm = make_unique<EventTraceMgr>(*options.event_trace_file);
|
etm = make_unique<EventTraceMgr>(*options.event_trace_file);
|
||||||
|
|
||||||
|
// Parsing involves reading input files, including any input
|
||||||
|
// interactively provided by the user at the console. Temporarily
|
||||||
|
// undo the signal mask to allow ctrl-c. Ideally we'd do this only
|
||||||
|
// when we actually end up reading interactively from stdin.
|
||||||
|
set_signal_mask(false);
|
||||||
run_state::is_parsing = true;
|
run_state::is_parsing = true;
|
||||||
yyparse();
|
yyparse();
|
||||||
run_state::is_parsing = false;
|
run_state::is_parsing = false;
|
||||||
|
set_signal_mask(true);
|
||||||
|
|
||||||
RecordVal::DoneParsing();
|
RecordVal::DoneParsing();
|
||||||
TableVal::DoneParsing();
|
TableVal::DoneParsing();
|
||||||
|
|
2
testing/btest/Baseline/core.load-stdin/output.explicit
Normal file
2
testing/btest/Baseline/core.load-stdin/output.explicit
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.
|
||||||
|
stdin
|
2
testing/btest/Baseline/core.load-stdin/output.implicit
Normal file
2
testing/btest/Baseline/core.load-stdin/output.implicit
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.
|
||||||
|
stdin
|
3
testing/btest/Baseline/core.load-stdin/output.mixed
Normal file
3
testing/btest/Baseline/core.load-stdin/output.mixed
Normal file
|
@ -0,0 +1,3 @@
|
||||||
|
### BTest baseline data generated by btest-diff. Do not edit. Use "btest -U/-u" to update. Requires BTest >= 0.63.
|
||||||
|
test
|
||||||
|
stdin
|
2
testing/btest/Baseline/core.load-stdin/output.nostdin
Normal file
2
testing/btest/Baseline/core.load-stdin/output.nostdin
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.
|
||||||
|
test
|
11
testing/btest/core/load-stdin.zeek
Normal file
11
testing/btest/core/load-stdin.zeek
Normal file
|
@ -0,0 +1,11 @@
|
||||||
|
# This verifies Zeek's ability to load scripts from stdin.
|
||||||
|
# @TEST-EXEC: echo 'print "stdin";' | zeek -b >output.implicit
|
||||||
|
# @TEST-EXEC: echo 'print "stdin";' | zeek -b - >output.explicit
|
||||||
|
# @TEST-EXEC: echo 'print "stdin";' | zeek -b %INPUT >output.nostdin
|
||||||
|
# @TEST-EXEC: echo 'print "stdin";' | zeek -b %INPUT - >output.mixed
|
||||||
|
# @TEST-EXEC: btest-diff output.implicit
|
||||||
|
# @TEST-EXEC: btest-diff output.explicit
|
||||||
|
# @TEST-EXEC: btest-diff output.nostdin
|
||||||
|
# @TEST-EXEC: btest-diff output.mixed
|
||||||
|
|
||||||
|
print "test";
|
49
testing/btest/core/sigterm-regular.sh
Normal file
49
testing/btest/core/sigterm-regular.sh
Normal file
|
@ -0,0 +1,49 @@
|
||||||
|
# This test verifies that Zeek terminates upon SIGTERM during regular script
|
||||||
|
# processing.
|
||||||
|
#
|
||||||
|
# See the sigterm-stdin.sh test for additional explanation of what's happening.
|
||||||
|
#
|
||||||
|
# Use a separate output file since btest-bg-wait replaces .stdout/.stderr:
|
||||||
|
# @TEST-EXEC: bash %INPUT >output 2>&1
|
||||||
|
|
||||||
|
# Helper to return the PID of the Zeek process launched in the background.
|
||||||
|
zeek_pid() {
|
||||||
|
# The btest-bg-run .pid file contains the parent of the Zeek process
|
||||||
|
local ppid=$(cat zeek/.pid)
|
||||||
|
ps -xo pid,ppid,comm | awk "\$2 == \"$ppid\" && \$3 == \"zeek\" { print \$1 }"
|
||||||
|
}
|
||||||
|
|
||||||
|
cleanup() {
|
||||||
|
btest-bg-wait -k 5
|
||||||
|
}
|
||||||
|
|
||||||
|
trap cleanup EXIT
|
||||||
|
|
||||||
|
btest-bg-run zeek "zeek exit_only_after_terminate=T"
|
||||||
|
|
||||||
|
# Wait until we see Zeek running.
|
||||||
|
for i in $(seq 10); do
|
||||||
|
pid=$(zeek_pid)
|
||||||
|
[ -n "$pid" ] && break
|
||||||
|
sleep 1
|
||||||
|
done
|
||||||
|
|
||||||
|
if [ -z "$pid" ]; then
|
||||||
|
echo "Couldn't determine Zeek PID"
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
|
||||||
|
for i in $(seq 10); do
|
||||||
|
kill $pid
|
||||||
|
[ -z "$(zeek_pid)" ] && break
|
||||||
|
sleep 1
|
||||||
|
done
|
||||||
|
|
||||||
|
pid=$(zeek_pid)
|
||||||
|
|
||||||
|
if [ -n "$pid" ]; then
|
||||||
|
echo "Zeek PID $pid did not shut down"
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
|
||||||
|
exit 0
|
63
testing/btest/core/sigterm-stdin.sh
Normal file
63
testing/btest/core/sigterm-stdin.sh
Normal file
|
@ -0,0 +1,63 @@
|
||||||
|
# This test verifies that Zeek, while reading stdin to parse scripts, terminates
|
||||||
|
# upon SIGTERM.
|
||||||
|
#
|
||||||
|
# Running Zeek in a way that portably delivers SIGINT (as ctrl-c would do) is
|
||||||
|
# tricky. With job control done locally in this script, even when run by an
|
||||||
|
# interactive bash, SIGINT is blocked. When running via btest-bg-run, the
|
||||||
|
# backgrounded processes have their SIGINT and SIGQUIT blocked, per POSIX:
|
||||||
|
# https://pubs.opengroup.org/onlinepubs/9699919799/utilities/V3_chap02.html
|
||||||
|
#
|
||||||
|
# Use a separate output file since btest-bg-wait replaces .stdout/.stderr:
|
||||||
|
# @TEST-EXEC: bash %INPUT >output 2>&1
|
||||||
|
|
||||||
|
# Helper to return the PID of the Zeek process launched in the background.
|
||||||
|
zeek_pid() {
|
||||||
|
# The btest-bg-run .pid file contains the parent of the Zeek process
|
||||||
|
local ppid=$(cat zeek/.pid)
|
||||||
|
ps -xo pid,ppid,comm | awk "\$2 == \"$ppid\" && \$3 == \"zeek\" { print \$1 }"
|
||||||
|
}
|
||||||
|
|
||||||
|
cleanup() {
|
||||||
|
btest-bg-wait -k 5
|
||||||
|
}
|
||||||
|
|
||||||
|
trap cleanup EXIT
|
||||||
|
|
||||||
|
# Launch Zeek so it stalls, reading from stdin.
|
||||||
|
mkfifo input
|
||||||
|
btest-bg-run zeek "cat ../input | zeek"
|
||||||
|
|
||||||
|
# Wait until we see Zeek running.
|
||||||
|
for i in $(seq 10); do
|
||||||
|
pid=$(zeek_pid)
|
||||||
|
[ -n "$pid" ] && break
|
||||||
|
sleep 1
|
||||||
|
done
|
||||||
|
|
||||||
|
if [ -z "$pid" ]; then
|
||||||
|
echo "Couldn't determine Zeek PID"
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
|
||||||
|
# Now try several times to terminate the process via SIGTERM. We try repeatedly
|
||||||
|
# because we might hit Zeek in a brief window in time where the signal is
|
||||||
|
# blocked -- it gets unblocked during the parsing stage, since this enables
|
||||||
|
# ctrl-c to work during interactive input.
|
||||||
|
#
|
||||||
|
# Terminating Zeek does not terminate the "cat", since the latter would only
|
||||||
|
# notice upon a data write that the pipe is gone. We leave it to btest-bg-wait
|
||||||
|
# to clean up at exit.
|
||||||
|
for i in $(seq 10); do
|
||||||
|
kill $pid
|
||||||
|
[ -z "$(zeek_pid)" ] && break
|
||||||
|
sleep 1
|
||||||
|
done
|
||||||
|
|
||||||
|
pid=$(zeek_pid)
|
||||||
|
|
||||||
|
if [ -n "$pid" ]; then
|
||||||
|
echo "Zeek PID $pid did not shut down"
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
|
||||||
|
exit 0
|
Loading…
Add table
Add a link
Reference in a new issue