1
0
mirror of https://github.com/systemd/systemd synced 2025-10-04 19:24:44 +02:00

Compare commits

..

No commits in common. "257e941cc18ad2728f8e01b4dc44c6a2d16b7610" and "706e622e88e37ab1ac9d0b8c3d60b1fa524d62d2" have entirely different histories.

11 changed files with 62 additions and 103 deletions

View File

@ -392,6 +392,9 @@ void manager_process_syslog_message(
if (!client_context_test_priority(context, priority))
return;
if (client_context_check_keep_log(context, msg, strlen(msg)) <= 0)
return;
syslog_ts = msg;
syslog_ts_len = syslog_skip_timestamp(&msg);
if (syslog_ts_len == 0)
@ -400,9 +403,6 @@ void manager_process_syslog_message(
syslog_parse_identifier(&msg, &identifier, &pid);
if (client_context_check_keep_log(context, msg, strlen(msg)) <= 0)
return;
if (m->config.forward_to_syslog)
forward_syslog_raw(m, priority, buf, raw_len, ucred, tv);

View File

@ -3,7 +3,7 @@ Description=Test service for delegated logs filtering
[Service]
Type=oneshot
ExecStart=/usr/lib/systemd/tests/testdata/TEST-04-JOURNAL.units/delegated_cgroup_filtering_payload.sh
ExecStart=/usr/lib/systemd/tests/testdata/units/delegated_cgroup_filtering_payload.sh
Delegate=yes
SyslogLevel=notice
LogLevelMax=info

View File

@ -1,14 +0,0 @@
#!/usr/bin/python3
# SPDX-License-Identifier: LGPL-2.1-or-later
import subprocess
import syslog
if __name__ == '__main__':
syslog.openlog(ident="logs-filtering", logoption=syslog.LOG_PID)
syslog.syslog(syslog.LOG_NOTICE, "Logging from the service, and ~more~ foo bar")
subprocess.check_output(
['journalctl', '--sync'],
stdin=subprocess.DEVNULL,
text=True)

View File

@ -1,8 +0,0 @@
[Unit]
Description=Log filtering unit
[Service]
Type=oneshot
ExecStart=/usr/lib/systemd/tests/testdata/TEST-04-JOURNAL.units/logs-filtering-syslog.py
SyslogLevel=notice
LogLevelMax=info

View File

@ -5,6 +5,7 @@ Description=Silent successful service
[Service]
Type=oneshot
LogLevelMax=notice
ExecStart=/bin/true
# If the service finishes extremely fast, journald cannot find the source of the
# stream. Hence, we need to call 'journalctl --sync' before service finishes.
ExecStart=journalctl --sync

View File

@ -4,7 +4,10 @@ Description=Verbose successful service
[Service]
Type=oneshot
ExecStart=echo success
# If the service finishes extremely fast, journald cannot find the source of the
# stream. Hence, we need to call 'journalctl --sync' before service finishes.
ExecStart=bash -c 'echo success; journalctl --sync'
ExecStart=journalctl --sync
# Suppress debugging logs from PID1 or sd-executor. Otherwise, the client context
# may be outdated when the stream from 'echo' command in the above comes.
LogLevelMax=info

View File

@ -47,79 +47,67 @@ at_exit() {
trap at_exit EXIT
test_service() {
service="${1:?}"
# Accept all log messages
add_logs_filtering_override "logs-filtering.service" "00-reset" ""
[[ -n $(run_service_and_fetch_logs "logs-filtering.service") ]]
# Accept all log messages
add_logs_filtering_override "$service" "00-reset" ""
[[ -n $(run_service_and_fetch_logs "$service") ]]
add_logs_filtering_override "logs-filtering.service" "01-allow-all" ".*"
[[ -n $(run_service_and_fetch_logs "logs-filtering.service") ]]
add_logs_filtering_override "$service" "01-allow-all" ".*"
[[ -n $(run_service_and_fetch_logs "$service") ]]
# Discard all log messages
add_logs_filtering_override "logs-filtering.service" "02-discard-all" "~.*"
[[ -z $(run_service_and_fetch_logs "logs-filtering.service") ]]
# Discard all log messages
add_logs_filtering_override "$service" "02-discard-all" "~.*"
[[ -z $(run_service_and_fetch_logs "$service") ]]
# Accept all test messages
add_logs_filtering_override "logs-filtering.service" "03-reset" ""
[[ -n $(run_service_and_fetch_logs "logs-filtering.service") ]]
# Accept all test messages
add_logs_filtering_override "$service" "03-reset" ""
[[ -n $(run_service_and_fetch_logs "$service") ]]
# Discard all test messages
add_logs_filtering_override "logs-filtering.service" "04-discard-gg" "~.*gg.*"
[[ -z $(run_service_and_fetch_logs "logs-filtering.service") ]]
# Discard all test messages
add_logs_filtering_override "$service" "04-discard-gg" "~.*gg.*"
[[ -z $(run_service_and_fetch_logs "$service") ]]
# Deny filter takes precedence
add_logs_filtering_override "logs-filtering.service" "05-allow-all-but-too-late" ".*"
[[ -z $(run_service_and_fetch_logs "logs-filtering.service") ]]
# Deny filter takes precedence
add_logs_filtering_override "$service" "05-allow-all-but-too-late" ".*"
[[ -z $(run_service_and_fetch_logs "$service") ]]
# Use tilde in a deny pattern
add_logs_filtering_override "logs-filtering.service" "06-reset" ""
add_logs_filtering_override "logs-filtering.service" "07-prevent-tilde" "~~more~"
[[ -z $(run_service_and_fetch_logs "logs-filtering.service") ]]
# Use tilde in a deny pattern
add_logs_filtering_override "$service" "06-reset" ""
add_logs_filtering_override "$service" "07-prevent-tilde" "~~more~"
[[ -z $(run_service_and_fetch_logs "$service") ]]
# Only allow a pattern that won't be matched
add_logs_filtering_override "logs-filtering.service" "08-reset" ""
add_logs_filtering_override "logs-filtering.service" "09-allow-only-non-existing" "non-existing string"
[[ -z $(run_service_and_fetch_logs "logs-filtering.service") ]]
# Only allow a pattern that won't be matched
add_logs_filtering_override "$service" "08-reset" ""
add_logs_filtering_override "$service" "09-allow-only-non-existing" "non-existing string"
[[ -z $(run_service_and_fetch_logs "$service") ]]
# Allow a pattern starting with a tilde
add_logs_filtering_override "logs-filtering.service" "10-allow-with-escape-char" "\\\\x7emore~"
[[ -n $(run_service_and_fetch_logs "logs-filtering.service") ]]
# Allow a pattern starting with a tilde
add_logs_filtering_override "$service" "10-allow-with-escape-char" "\\\\x7emore~"
[[ -n $(run_service_and_fetch_logs "$service") ]]
add_logs_filtering_override "logs-filtering.service" "11-reset" ""
add_logs_filtering_override "logs-filtering.service" "12-allow-with-spaces" "foo bar"
[[ -n $(run_service_and_fetch_logs "logs-filtering.service") ]]
add_logs_filtering_override "$service" "11-reset" ""
add_logs_filtering_override "$service" "12-allow-with-spaces" "foo bar"
[[ -n $(run_service_and_fetch_logs "$service") ]]
add_logs_filtering_override "logs-filtering.service" "13-reset" ""
add_logs_filtering_override "logs-filtering.service" "14-exclude-head" "~^Logging"
[[ -z $(run_service_and_fetch_logs "logs-filtering.service") ]]
add_logs_filtering_override "$service" "13-reset" ""
add_logs_filtering_override "$service" "14-exclude-head" "~^Logging"
[[ -z $(run_service_and_fetch_logs "$service") ]]
add_logs_filtering_override "logs-filtering.service" "15-reset" ""
add_logs_filtering_override "logs-filtering.service" "16-exclude-head-no-match" "~^foo"
[[ -n $(run_service_and_fetch_logs "logs-filtering.service") ]]
add_logs_filtering_override "$service" "15-reset" ""
add_logs_filtering_override "$service" "16-exclude-head-no-match" "~^foo"
[[ -n $(run_service_and_fetch_logs "$service") ]]
add_logs_filtering_override "logs-filtering.service" "17-reset" ""
add_logs_filtering_override "logs-filtering.service" "18-include-head" "^Logging"
[[ -n $(run_service_and_fetch_logs "logs-filtering.service") ]]
add_logs_filtering_override "$service" "17-reset" ""
add_logs_filtering_override "$service" "18-include-head" "^Logging"
[[ -n $(run_service_and_fetch_logs "$service") ]]
add_logs_filtering_override "logs-filtering.service" "19-reset" ""
add_logs_filtering_override "logs-filtering.service" "20-include-head-no-match" "^foo"
[[ -z $(run_service_and_fetch_logs "logs-filtering.service") ]]
add_logs_filtering_override "$service" "19-reset" ""
add_logs_filtering_override "$service" "20-include-head-no-match" "^foo"
[[ -z $(run_service_and_fetch_logs "$service") ]]
}
add_logs_filtering_override "delegated-cgroup-filtering.service" "00-allow-all" ".*"
[[ -n $(run_service_and_fetch_logs "delegated-cgroup-filtering.service") ]]
test_delegate() {
local service="${1:?}"
add_logs_filtering_override "$service" "00-allow-all" ".*"
[[ -n $(run_service_and_fetch_logs "$service") ]]
add_logs_filtering_override "$service" "01-discard-hello" "~hello"
[[ -z $(run_service_and_fetch_logs "$service") ]]
}
test_service logs-filtering.service
test_service logs-filtering-syslog.service
test_delegate delegated-cgroup-filtering.service
add_logs_filtering_override "delegated-cgroup-filtering.service" "01-discard-hello" "~hello"
[[ -z $(run_service_and_fetch_logs "delegated-cgroup-filtering.service") ]]
systemctl log-level "$SAVED_LOG_LEVEL"

View File

@ -109,10 +109,10 @@ systemctl start silent-success
# Test syslog identifiers exclusion
systemctl start verbose-success.service
[[ -n "$(journalctl -b -q -u verbose-success.service -t systemd)" ]]
[[ -n "$(journalctl -b -q -u verbose-success.service -t bash)" ]]
[[ -n "$(journalctl -b -q -u verbose-success.service -t echo)" ]]
[[ -n "$(journalctl -b -q -u verbose-success.service -T systemd)" ]]
[[ -n "$(journalctl -b -q -u verbose-success.service -T bash)" ]]
[[ -z "$(journalctl -b -q -u verbose-success.service -T bash -T '(bash)' -T systemd -T '(systemd)')" ]]
[[ -n "$(journalctl -b -q -u verbose-success.service -T echo)" ]]
[[ -z "$(journalctl -b -q -u verbose-success.service -T echo -T '(echo)' -T sleep -T '(sleep)' -T systemd -T '(systemd)' -T systemd-executor)" ]]
# Exercise the matching machinery
SYSTEMD_LOG_LEVEL=debug journalctl -b -n 1 /dev/null /dev/zero /dev/null /dev/null /dev/null

View File

@ -23,8 +23,7 @@ at_exit() {
trap at_exit EXIT
# Sync and rotate journal to make all coredump entries stored in system.journal.
journalctl --sync
# To make all coredump entries stored in system.journal.
journalctl --rotate
# Check that we're the ones to receive coredumps
@ -110,16 +109,6 @@ EOF
unset CONTAINER
fi
# Sync and rotate journals (again) to make coredumps stored in archived journal. Otherwise, the main active
# journal file may be already mostly filled with the coredumps, and may trigger rotation during the sanity
# checks below. If coredumpctl accesses the main journal currently rotationg, then it warns the following and
# skips reading the main journal, and cannot find the recent coredumps:
# TEST-87-AUX-UTILS-VM.sh[839]: + coredumpctl -n 1
# TEST-87-AUX-UTILS-VM.sh[1172]: Journal file /var/log/journal/a8285330872602d1377cbaaf68869946/system.journal is truncated, ignoring file.
# TEST-87-AUX-UTILS-VM.sh[1172]: No coredumps found.
journalctl --sync
journalctl --rotate
coredumpctl
SYSTEMD_LOG_LEVEL=debug coredumpctl
coredumpctl --help

View File

@ -2,7 +2,7 @@
# SPDX-License-Identifier: LGPL-2.1-or-later
mkdir /sys/fs/cgroup/system.slice/delegated-cgroup-filtering.service/the_child
/usr/lib/systemd/tests/testdata/TEST-04-JOURNAL.units/delegated_cgroup_filtering_payload_child.sh
/bin/sh /usr/lib/systemd/tests/testdata/units/delegated_cgroup_filtering_payload_child.sh
echo "parent_process: hello, world!"
echo "parent_process: hello, people!"

View File

@ -1,4 +1,4 @@
#!/bin/bash
#!/bin/sh
# SPDX-License-Identifier: LGPL-2.1-or-later
echo $$ >/sys/fs/cgroup/system.slice/delegated-cgroup-filtering.service/the_child/cgroup.procs