forked from pool/audit
Marcus Meissner
85d7f2569e
- Buildrequires cap-ng library - --with-libcap-ng=yes has no effect if libcap-ng is not buildrequired and the lack of those requires causes a broken configure script after autoreconf add pkgconfig(libcap-ng) to both audit and audit-secondary, cap-ng is actually only use in the latter. - Version 2.2.3 - Code cleanups - In spec file, don't own lib64/audit - Update man pages - Aureport no longer reads auditd.conf when stdin is used - Don't let systemd kill auditd if auditctl errors out - Update syscall table for 3.7 and 3.8 kernels - Add interpretation for setns and unshare syscalls - Code cleanup (Tyler Hicks) - Documentation cleanups (Laurent Bigonville) - Add dirfd interpretation to the *at functions - Add termination signal to clone flags interpretation - Update stig.rules - In auditctl, when listing rules don't print numeric value of dir fields - Add support for rng resource type in auvirt - Fix aulast bad login output (#922508) - In ausearch, allow negative numbers for session and auid searches - In audisp-remote, if disk_full_action is stop then stop sending (#908977) OBS-URL: https://build.opensuse.org/request/show/161029 OBS-URL: https://build.opensuse.org/package/show/security/audit?expand=0&rev=47
235 lines
7.8 KiB
RPMSpec
235 lines
7.8 KiB
RPMSpec
#
|
|
# spec file for package audit
|
|
#
|
|
# Copyright (c) 2013 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
|
#
|
|
# All modifications and additions to the file contributed by third parties
|
|
# remain the property of their copyright owners, unless otherwise agreed
|
|
# upon. The license for this file, and modifications and additions to the
|
|
# file, is the same license as for the pristine package itself (unless the
|
|
# license for the pristine package is not an Open Source License, in which
|
|
# case the license is the MIT License). An "Open Source License" is a
|
|
# license that conforms to the Open Source Definition (Version 1.9)
|
|
# published by the Open Source Initiative.
|
|
|
|
# Please submit bugfixes or comments via http://bugs.opensuse.org/
|
|
#
|
|
|
|
|
|
Name: audit
|
|
Summary: User Space Tools for 2.6 Kernel Auditing
|
|
License: GPL-2.0+
|
|
Group: System/Monitoring
|
|
Version: 2.2.3
|
|
Release: 0
|
|
Url: http://people.redhat.com/sgrubb/audit/
|
|
Source0: http://people.redhat.com/sgrubb/audit/%{name}-%{version}.tar.gz
|
|
Source2: auditd.sysconfig
|
|
Source3: baselibs.conf
|
|
Source4: README-BEFORE-ADDING-PATCHES
|
|
Patch2: audit-no_plugins.patch
|
|
Patch3: audit-no-gss.patch
|
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
|
BuildRequires: autoconf >= 2.12
|
|
BuildRequires: gcc-c++
|
|
BuildRequires: kernel-headers >= 2.6.30
|
|
BuildRequires: libtool
|
|
BuildRequires: tcpd-devel
|
|
BuildRequires: pkgconfig(libcap-ng)
|
|
BuildRequires: pkgconfig(systemd)
|
|
Requires: %{name}-libs = %{version}
|
|
PreReq: %insserv_prereq %fillup_prereq
|
|
|
|
%description
|
|
The audit package contains the user space utilities for storing and
|
|
processing the audit records generated by the audit subsystem in the
|
|
Linux 2.6 kernel.
|
|
|
|
%package -n libaudit1
|
|
Summary: Dynamic library for libaudit
|
|
License: LGPL-2.1+
|
|
Group: System/Monitoring
|
|
Obsoletes: %{name}-libs < 2.0.4
|
|
Provides: %{name}-libs = %{version}
|
|
|
|
%description -n libaudit1
|
|
The libaudit package contains the dynamic libraries needed for
|
|
applications to use the audit framework.
|
|
|
|
%package -n libauparse0
|
|
Summary: Dynamic library for libauparse
|
|
License: LGPL-2.1+
|
|
Group: System/Monitoring
|
|
|
|
%description -n libauparse0
|
|
The libauparse package contains the dynamic libraries needed to
|
|
parse audit records.
|
|
|
|
%package devel
|
|
Summary: Header files and static library for libaudit
|
|
License: LGPL-2.1+
|
|
Group: Development/Libraries/C and C++
|
|
Requires: libaudit1 = %{version}
|
|
Requires: libauparse0 = %{version}
|
|
|
|
%description devel
|
|
The audit-devel package contains the static libraries and header files
|
|
needed for developing applications that need to use the audit framework
|
|
libraries.
|
|
|
|
%prep
|
|
%setup -q
|
|
%patch2 -p1
|
|
%patch3 -p1
|
|
|
|
%build
|
|
autoreconf -fi
|
|
export CFLAGS="%{optflags} -fno-strict-aliasing"
|
|
export CXXFLAGS="$CFLAGS"
|
|
export LDFLAGS="-Wl,-z,relro,-z,now"
|
|
# no krb support (omit --enable-gssapi-krb5=yes), see audit-no-gss.patch
|
|
%configure --enable-systemd --libexecdir=%{_prefix}/lib/%{name} \
|
|
--with-apparmor --with-libwrap --with-libcap-ng=yes \
|
|
--disable-static --with-pic --without-python
|
|
%{__make} %{?_smp_mflags}
|
|
|
|
%install
|
|
mkdir -p $RPM_BUILD_ROOT/{sbin,etc/{sysconfig,audispd/plugins.d,init.d}}
|
|
mkdir -p $RPM_BUILD_ROOT/usr/sbin
|
|
mkdir -p $RPM_BUILD_ROOT/%{_mandir}/{man5,man8}
|
|
mkdir -p $RPM_BUILD_ROOT/%{_lib}/security
|
|
make DESTDIR=$RPM_BUILD_ROOT install
|
|
mkdir -p $RPM_BUILD_ROOT/%{_includedir}
|
|
mkdir -p $RPM_BUILD_ROOT/%{_libdir}
|
|
# We manually install this since Makefile doesn't
|
|
install -m 0644 lib/libaudit.h $RPM_BUILD_ROOT/%{_includedir}
|
|
|
|
for libname in libaudit libauparse;do
|
|
%{__rm} -v %{buildroot}/%{_libdir}/$libname.la
|
|
done
|
|
|
|
# USR-MERGE
|
|
for prog in auditctl auditd ausearch autrace audispd aureport; do
|
|
ln -s %{_prefix}/sbin/$prog %{buildroot}/sbin/$prog
|
|
done
|
|
|
|
mkdir -p $RPM_BUILD_ROOT/var/adm/fillup-templates
|
|
cp %{SOURCE2} $RPM_BUILD_ROOT/var/adm/fillup-templates/sysconfig.auditd
|
|
# delete redhat script, use ours
|
|
rm -rf $RPM_BUILD_ROOT/etc/sysconfig/auditd
|
|
rm -rf $RPM_BUILD_ROOT/etc/init.d/auditd
|
|
rm -rf $RPM_BUILD_ROOT/etc/rc.d/init.d
|
|
mkdir -p $RPM_BUILD_ROOT/var/log/audit/
|
|
touch $RPM_BUILD_ROOT/var/log/audit/audit.log
|
|
mkdir -p $RPM_BUILD_ROOT/var/spool/audit/
|
|
# For ghost below, so that old location files will still be there when
|
|
# post copy runs
|
|
touch $RPM_BUILD_ROOT/etc/{auditd.conf,audit.rules}
|
|
# On platforms with 32 & 64 bit libs, we need to coordinate the timestamp
|
|
touch -r ./audit.spec $RPM_BUILD_ROOT/etc/libaudit.conf
|
|
|
|
%check
|
|
make check
|
|
|
|
%post -n libaudit1 -p /sbin/ldconfig
|
|
|
|
%post -n libauparse0 -p /sbin/ldconfig
|
|
|
|
%postun -n libaudit1 -p /sbin/ldconfig
|
|
|
|
%postun -n libauparse0 -p /sbin/ldconfig
|
|
|
|
%post
|
|
%{fillup_only -n auditd}
|
|
# Save existing audit files if any (from old location)
|
|
if [ -f /etc/auditd.conf ]; then
|
|
mv /etc/audit/auditd.conf /etc/audit/auditd.conf.new
|
|
mv /etc/auditd.conf /etc/audit/auditd.conf
|
|
fi
|
|
if [ -f /etc/audit.rules ]; then
|
|
mv /etc/audit/audit.rules /etc/audit/audit.rules.new
|
|
mv /etc/audit.rules /etc/audit/audit.rules
|
|
fi
|
|
%service_add_post auditd.service
|
|
|
|
%pre
|
|
%service_add_pre auditd.service
|
|
|
|
%preun
|
|
%service_del_preun auditd.service
|
|
|
|
%postun
|
|
%service_del_postun auditd.service
|
|
|
|
%files -n libaudit1
|
|
%defattr(-,root,root)
|
|
%{_libdir}/libaudit.so.*
|
|
%config(noreplace) %attr(640,root,root) /etc/libaudit.conf
|
|
%{_mandir}/man5/libaudit.conf.5*
|
|
|
|
%files -n libauparse0
|
|
%defattr(-,root,root)
|
|
%{_libdir}/libauparse.so.*
|
|
|
|
%files devel
|
|
%defattr(-,root,root)
|
|
%doc contrib/skeleton.c contrib/plugin
|
|
%{_libdir}/libaudit.so
|
|
%{_libdir}/libauparse.so
|
|
%{_includedir}/libaudit.h
|
|
%{_includedir}/auparse.h
|
|
%{_includedir}/auparse-defs.h
|
|
%{_mandir}/man3/*
|
|
|
|
%files
|
|
%defattr(-,root,root,-)
|
|
%doc README COPYING ChangeLog contrib/capp.rules contrib/nispom.rules contrib/lspp.rules contrib/stig.rules init.d/auditd.cron
|
|
%attr(644,root,root) %{_mandir}/man8/audispd.8.gz
|
|
%attr(644,root,root) %{_mandir}/man8/auditctl.8.gz
|
|
%attr(644,root,root) %{_mandir}/man8/auditd.8.gz
|
|
%attr(644,root,root) %{_mandir}/man8/aureport.8.gz
|
|
%attr(644,root,root) %{_mandir}/man8/ausearch.8.gz
|
|
%attr(644,root,root) %{_mandir}/man8/autrace.8.gz
|
|
%attr(644,root,root) %{_mandir}/man8/aulast.8.gz
|
|
%attr(644,root,root) %{_mandir}/man8/aulastlog.8.gz
|
|
%attr(644,root,root) %{_mandir}/man8/ausyscall.8.gz
|
|
%attr(644,root,root) %{_mandir}/man7/audit.rules.7.gz
|
|
%attr(644,root,root) %{_mandir}/man5/auditd.conf.5.gz
|
|
%attr(644,root,root) %{_mandir}/man5/audispd.conf.5.gz
|
|
%attr(644,root,root) %{_mandir}/man5/ausearch-expression.5.gz
|
|
%attr(644,root,root) %{_mandir}/man8/auvirt.8.gz
|
|
%attr(750,root,root) /sbin/auditctl
|
|
%attr(750,root,root) /usr/sbin/auditctl
|
|
%attr(750,root,root) /sbin/auditd
|
|
%attr(750,root,root) /usr/sbin/auditd
|
|
%attr(755,root,root) /sbin/ausearch
|
|
%attr(755,root,root) /usr/sbin/ausearch
|
|
%attr(750,root,root) /sbin/autrace
|
|
%attr(750,root,root) /usr/sbin/autrace
|
|
%attr(750,root,root) /sbin/audispd
|
|
%attr(750,root,root) /usr/sbin/audispd
|
|
%attr(755,root,root) /usr/bin/aulast
|
|
%attr(755,root,root) /usr/bin/aulastlog
|
|
%attr(755,root,root) /usr/bin/ausyscall
|
|
%attr(755,root,root) /sbin/aureport
|
|
%attr(755,root,root) /usr/sbin/aureport
|
|
%attr(755,root,root) /usr/bin/auvirt
|
|
%dir %attr(750,root,root) /etc/audit
|
|
%attr(750,root,root) %dir /etc/audisp
|
|
%attr(750,root,root) %dir /etc/audisp/plugins.d
|
|
%config(noreplace) %attr(640,root,root) /etc/audisp/plugins.d/af_unix.conf
|
|
%config(noreplace) %attr(640,root,root) /etc/audisp/plugins.d/syslog.conf
|
|
%ghost /etc/auditd.conf
|
|
%ghost /etc/audit.rules
|
|
%config(noreplace) %attr(640,root,root) /etc/audit/auditd.conf
|
|
%config(noreplace) %attr(640,root,root) /etc/audit/audit.rules
|
|
%config(noreplace) %attr(640,root,root) /etc/audisp/audispd.conf
|
|
/var/adm/fillup-templates/sysconfig.auditd
|
|
%dir %attr(700,root,root) /var/log/audit
|
|
%ghost %config(noreplace) /var/log/audit/audit.log
|
|
%dir %attr(700,root,root) /var/spool/audit
|
|
%attr(755,root,root) /usr/bin/ausyscall
|
|
%{_unitdir}/auditd.service
|
|
|
|
%changelog
|