/
githubmirror
/
rsyslog
Обзор
Документация
Войти
/
githubmirror
/
rsyslog
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
tests/yaml-include-recursion.sh
44 строки
1 KB
Rainer Gerhards
tests: bind IPv4-only imtcp listeners to loopback
05 июл 2026, 15:39
05 июл 2026, 15:39
3c858bc
Код
Авторство
О чём код?
#!/bin/bash # Regression test: YAML include recursion must be detected and ignored. # Setup: root YAML includes itself and also defines a ruleset that writes to # RSYSLOG_OUT_LOG. Oracle: rsyslog starts and processes messages (no crash / # stack exhaustion), proving the self-include was ignored rather than recursed. . ${srcdir:=.}/diag.sh init require_plugin imtcp export NUMMESSAGES=20 export QUEUE_EMPTY_CHECK_FUNC=wait_file_lines generate_conf add_conf ' include(file="'${RSYSLOG_DYNNAME}'.yaml") ' cat > "${RSYSLOG_DYNNAME}.yaml" << YAMLEOF include: - path: "${RSYSLOG_DYNNAME}.yaml" modules: - load: "../plugins/imtcp/.libs/imtcp" templates: - name: outfmt type: string string: "%msg:F,58:2%\\n" rulesets: - name: main script: | :msg, contains, "msgnum:" action(type="omfile" template="outfmt" file="${RSYSLOG_OUT_LOG}") YAMLEOF add_conf ' input(type="imtcp" address="127.0.0.1" port="0" listenPortFileName="'${RSYSLOG_DYNNAME}'.tcpflood_port" ruleset="main") ' startup tcpflood -m $NUMMESSAGES shutdown_when_empty wait_shutdown seq_check exit_test