42402f11b7
* Includes fixes since v3.1.1 * Enhance support for newer (5.0+) kernels - Update spec: * Move rules-related files into new subpackage `audit-rules': * Files moved: - /sbin/auditctl, /sbin/augenrules, /etc/audit/{audit.rules,rules.d/audit.rules,audit-stop.rules} - manpages for auditctl, augenrules, and audit.rules - /etc/audit is now owned by `audit-rules' as well * Add new file /usr/lib/systemd/system/audit-rules.service * Remove in-house create-augenrules-service.patch that generated augenrules.service systemd unit service * Remove ownership of /usr/share/audit * Create /usr/share/audit-rules directory on %install * Remove audit-userspace-517-compat.patch (fixed upstream) * Remove libev-werror.patch (fixed upstream) * Remove audit-allow-manual-stop.patch (fixed upstream) * Add fix-auparse-test.patch (downstream): Upstream tests uses a static value (42) for 'gdm' uid/gid (based on Fedora values, apparently). Replace these occurrences with 'unknown(123456)' * Replace '--with-python' with '--with-python3' on %configure * Remove autrace and auvirt references (upstream) * Replace README with README.md - Drop `--enable-systemd' from %configure as SysV-style scripts aren't supported in upstream since 113ae191758c ("Drop support for SysVinit") - Update to 4.0 * Includes fixes since v3.1.1 * Enhance support for newer (5.0+) kernels - Update spec: * Add fix-auparse-test.patch (downstream): Upstream tests uses a static value (42) for 'gdm' uid/gid (based on Fedora values, apparently). Replace these occurrences with 'unknown(123456)' * Replace '--with-python' with '--with-python3' on %configure * Add new headers 'audit_logging.h' and 'audit-records.h' for audit-devel TODO: fix build for SLE/Leap OBS-URL: https://build.opensuse.org/package/show/security/audit?expand=0&rev=153
98 lines
3.7 KiB
Diff
98 lines
3.7 KiB
Diff
Index: audit-3.1.1/init.d/augenrules.service
|
|
===================================================================
|
|
--- /dev/null
|
|
+++ audit-3.1.1/init.d/augenrules.service
|
|
@@ -0,0 +1,29 @@
|
|
+[Unit]
|
|
+Description=auditd rules generation
|
|
+After=auditd.service
|
|
+Documentation=man:augenrules(8)
|
|
+
|
|
+[Service]
|
|
+Type=oneshot
|
|
+## NOTE: augenrules expect any rules to be added to /etc/audit/rules.d/
|
|
+ExecStart=/sbin/augenrules --load
|
|
+# We need RemainAfterExit=true so augenrules is called again
|
|
+# in case auditd.service is restarted.
|
|
+RemainAfterExit=true
|
|
+
|
|
+### Security Settings ###
|
|
+MemoryDenyWriteExecute=true
|
|
+LockPersonality=true
|
|
+ProtectControlGroups=true
|
|
+ProtectKernelModules=true
|
|
+ProtectHome=true
|
|
+RestrictRealtime=true
|
|
+# for details please see
|
|
+# https://en.opensuse.org/openSUSE:Security_Features#Systemd_hardening_effort
|
|
+ProtectSystem=full
|
|
+PrivateDevices=true
|
|
+ProtectHostname=true
|
|
+ProtectClock=true
|
|
+ProtectKernelTunables=true
|
|
+ProtectKernelLogs=true
|
|
+ReadWritePaths=/etc/audit
|
|
Index: audit-3.1.1/init.d/auditd.service
|
|
===================================================================
|
|
--- audit-3.1.1.orig/init.d/auditd.service
|
|
+++ audit-3.1.1/init.d/auditd.service
|
|
@@ -15,15 +15,16 @@ ConditionKernelCommandLine=!audit=0
|
|
ConditionKernelCommandLine=!audit=off
|
|
|
|
Documentation=man:auditd(8) https://github.com/linux-audit/audit-documentation
|
|
+Requires=augenrules.service
|
|
+# This unit clears rules on stop, so make sure that augenrules runs again
|
|
+PropagatesStopTo=augenrules.service
|
|
|
|
[Service]
|
|
Type=forking
|
|
PIDFile=/run/auditd.pid
|
|
ExecStart=/sbin/auditd
|
|
-## To not use augenrules, copy this file to /etc/systemd/system/auditd.service
|
|
-## and comment/delete the next line and uncomment the auditctl line.
|
|
-## NOTE: augenrules expect any rules to be added to /etc/audit/rules.d/
|
|
-ExecStartPost=-/sbin/augenrules --load
|
|
+## To not use augenrules: copy this file to /etc/systemd/system/auditd.service,
|
|
+## uncomment the next line, and comment the Requires=augenrules.service above.
|
|
#ExecStartPost=-/sbin/auditctl -R /etc/audit/audit.rules
|
|
# By default we clear the rules on exit. To disable this, comment
|
|
# the next line after copying the file to /etc/systemd/system/auditd.service
|
|
@@ -47,7 +48,6 @@ ProtectClock=true
|
|
ProtectKernelTunables=true
|
|
ProtectKernelLogs=true
|
|
# end of automatic additions
|
|
-ReadWritePaths=/etc/audit
|
|
|
|
[Install]
|
|
WantedBy=multi-user.target
|
|
Index: audit-3.1.1/init.d/Makefile.am
|
|
===================================================================
|
|
--- audit-3.1.1.orig/init.d/Makefile.am
|
|
+++ audit-3.1.1/init.d/Makefile.am
|
|
@@ -26,7 +26,8 @@ EXTRA_DIST = auditd.init auditd.service
|
|
auditd.cron libaudit.conf auditd.condrestart \
|
|
auditd.reload auditd.restart auditd.resume \
|
|
auditd.rotate auditd.state auditd.stop \
|
|
- audit-stop.rules augenrules audit-functions
|
|
+ audit-stop.rules augenrules audit-functions \
|
|
+ augenrules.service
|
|
libconfig = libaudit.conf
|
|
if ENABLE_SYSTEMD
|
|
initdir = /usr/lib/systemd/system
|
|
@@ -54,6 +55,7 @@ if ENABLE_SYSTEMD
|
|
mkdir -p ${DESTDIR}${legacydir}
|
|
mkdir -p ${DESTDIR}${libexecdir}
|
|
$(INSTALL_SCRIPT) -D -m 644 ${srcdir}/auditd.service ${DESTDIR}${initdir}
|
|
+ $(INSTALL_SCRIPT) -D -m 644 ${srcdir}/augenrules.service ${DESTDIR}${initdir}
|
|
$(INSTALL_SCRIPT) -D -m 750 ${srcdir}/auditd.rotate ${DESTDIR}${legacydir}/rotate
|
|
$(INSTALL_SCRIPT) -D -m 750 ${srcdir}/auditd.resume ${DESTDIR}${legacydir}/resume
|
|
$(INSTALL_SCRIPT) -D -m 750 ${srcdir}/auditd.reload ${DESTDIR}${legacydir}/reload
|
|
@@ -72,6 +74,7 @@ uninstall-hook:
|
|
rm ${DESTDIR}${sysconfdir}/${libconfig}
|
|
if ENABLE_SYSTEMD
|
|
rm ${DESTDIR}${initdir}/auditd.service
|
|
+ rm ${DESTDIR}${initdir}/augenrules.service
|
|
rm ${DESTDIR}${legacydir}/rotate
|
|
rm ${DESTDIR}${legacydir}/resume
|
|
rm ${DESTDIR}${legacydir}/reload
|