680938b4aa
Merged more fixes for resource leaks on error paths from Serge Hallyn (IBM). Bugs found by Coverity.
295 lines
10 KiB
RPMSpec
295 lines
10 KiB
RPMSpec
Summary: SELinux binary policy manipulation library
|
|
Name: libsepol
|
|
Version: 1.7.20
|
|
Release: 1
|
|
License: GPL
|
|
Group: System Environment/Libraries
|
|
Source: http://www.nsa.gov/selinux/archives/libsepol-%{version}.tgz
|
|
|
|
Prefix: %{_prefix}
|
|
BuildRoot: %{_tmppath}/%{name}-buildroot
|
|
Provides: libsepol.so
|
|
|
|
%description
|
|
Security-enhanced Linux is a patch of the Linux® kernel and a number
|
|
of utilities with enhanced security functionality designed to add
|
|
mandatory access controls to Linux. The Security-enhanced Linux
|
|
kernel contains new architectural components originally developed to
|
|
improve the security of the Flask operating system. These
|
|
architectural components provide general support for the enforcement
|
|
of many kinds of mandatory access control policies, including those
|
|
based on the concepts of Type Enforcement®, Role-based Access
|
|
Control, and Multi-level Security.
|
|
|
|
libsepol provides an API for the manipulation of SELinux binary policies.
|
|
It is used by checkpolicy (the policy compiler) and similar tools, as well
|
|
as by programs like load_policy that need to perform specific transformations
|
|
on binary policies such as customizing policy boolean settings.
|
|
|
|
%package devel
|
|
Summary: Header files and libraries used to build policy manipulation tools
|
|
Group: Development/Libraries
|
|
Requires: libsepol = %{version}
|
|
|
|
%description devel
|
|
The sepol-devel package contains the static libraries and header files
|
|
needed for developing applications that manipulate binary policies.
|
|
|
|
%prep
|
|
%setup -q
|
|
|
|
%build
|
|
make CFLAGS="%{optflags}"
|
|
|
|
%install
|
|
rm -rf ${RPM_BUILD_ROOT}
|
|
mkdir -p ${RPM_BUILD_ROOT}/%{_lib}
|
|
mkdir -p ${RPM_BUILD_ROOT}/%{_libdir}
|
|
mkdir -p ${RPM_BUILD_ROOT}%{_includedir}
|
|
mkdir -p ${RPM_BUILD_ROOT}%{_bindir}
|
|
mkdir -p ${RPM_BUILD_ROOT}%{_mandir}/man3
|
|
mkdir -p ${RPM_BUILD_ROOT}%{_mandir}/man8
|
|
make DESTDIR="${RPM_BUILD_ROOT}" LIBDIR="${RPM_BUILD_ROOT}%{_libdir}" SHLIBDIR="${RPM_BUILD_ROOT}/%{_lib}" install
|
|
rm -f ${RPM_BUILD_ROOT}%{_bindir}/genpolbools
|
|
rm -f ${RPM_BUILD_ROOT}%{_bindir}/genpolusers
|
|
rm -f ${RPM_BUILD_ROOT}%{_bindir}/chkcon
|
|
rm -rf ${RPM_BUILD_ROOT}%{_mandir}/man8
|
|
%clean
|
|
rm -rf ${RPM_BUILD_ROOT}
|
|
|
|
%post -p /sbin/ldconfig
|
|
|
|
%postun -p /sbin/ldconfig
|
|
|
|
%files devel
|
|
%defattr(-,root,root)
|
|
%{_libdir}/libsepol.a
|
|
%{_libdir}/libsepol.so
|
|
%{_includedir}/sepol/*.h
|
|
%{_mandir}/man3/*.3.gz
|
|
|
|
%files
|
|
%defattr(-,root,root)
|
|
/%{_lib}/libsepol.so.1
|
|
|
|
%changelog
|
|
* Tue Aug 23 2005 Dan Walsh <dwalsh@redhat.com> 1.7.20-1
|
|
- Upgrade to latest from NSA
|
|
* Merged more fixes for resource leaks on error paths
|
|
from Serge Hallyn (IBM). Bugs found by Coverity.
|
|
|
|
* Fri Aug 19 2005 Dan Walsh <dwalsh@redhat.com> 1.7.19-1
|
|
- Upgrade to latest from NSA
|
|
* Changed to treat all type conflicts as fatal errors.
|
|
* Merged several error handling fixes from
|
|
Serge Hallyn (IBM). Bugs found by Coverity.
|
|
|
|
* Mon Aug 15 2005 Dan Walsh <dwalsh@redhat.com> 1.7.17-1
|
|
- Upgrade to latest from NSA
|
|
* Fixed several memory leaks found by valgrind.
|
|
|
|
* Sun Aug 14 2005 Dan Walsh <dwalsh@redhat.com> 1.7.15-1
|
|
- Upgrade to latest from NSA
|
|
* Fixed empty list test in cond_write_av_list. Bug found by
|
|
Coverity, reported by Serge Hallyn (IBM).
|
|
* Merged patch to policydb_write to check errors
|
|
when writing the type->attribute reverse map from
|
|
Serge Hallyn (IBM). Bug found by Coverity.
|
|
* Fixed policydb_destroy to properly handle NULL type_attr_map
|
|
or attr_type_map.
|
|
|
|
* Sat Aug 13 2005 Dan Walsh <dwalsh@redhat.com> 1.7.14-1
|
|
- Upgrade to latest from NSA
|
|
* Fixed empty list test in cond_write_av_list. Bug found by
|
|
Coverity, reported by Serge Hallyn (IBM).
|
|
* Merged patch to policydb_write to check errors
|
|
when writing the type->attribute reverse map from
|
|
Serge Hallyn (IBM). Bug found by Coverity.
|
|
* Fixed policydb_destroy to properly handle NULL type_attr_map
|
|
or attr_type_map.
|
|
|
|
|
|
* Thu Aug 11 2005 Dan Walsh <dwalsh@redhat.com> 1.7.13-1
|
|
- Upgrade to latest from NSA
|
|
* Improved memory use by SELinux by both reducing the avtab
|
|
node size and reducing the number of avtab nodes (by not
|
|
expanding attributes in TE rules when possible). Added
|
|
expand_avtab and expand_cond_av_list functions for use by
|
|
assertion checker, hierarchy checker, compatibility code,
|
|
and dispol. Added new inline ebitmap operators and converted
|
|
existing users of ebitmaps to the new operators for greater
|
|
efficiency.
|
|
Note: The binary policy format version has been incremented to
|
|
version 20 as a result of these changes.
|
|
|
|
* Thu Aug 11 2005 Dan Walsh <dwalsh@redhat.com> 1.7.12-1
|
|
- Upgrade to latest from NSA
|
|
* Fixed bug in constraint_node_clone handling of name sets.
|
|
|
|
* Wed Aug 10 2005 Dan Walsh <dwalsh@redhat.com> 1.7.11-1
|
|
- Upgrade to latest from NSA
|
|
* Fix range_trans_clone to map the type values properly.
|
|
|
|
* Fri Aug 5 2005 Dan Walsh <dwalsh@redhat.com> 1.7.10-1
|
|
- Upgrade to latest from NSA
|
|
* Merged patch to move module read/write code from libsemanage
|
|
to libsepol from Jason Tang (Tresys).
|
|
|
|
* Tue Aug 2 2005 Dan Walsh <dwalsh@redhat.com> 1.7.9-1
|
|
- Upgrade to latest from NSA
|
|
* Enabled further compiler warning flags and fixed them.
|
|
* Merged user, context, port records patch from Ivan Gyurdiev.
|
|
* Merged key extract function patch from Ivan Gyurdiev.
|
|
* Merged mls_context_to_sid bugfix from Ivan Gyurdiev.
|
|
|
|
* Wed Jul 27 2005 Dan Walsh <dwalsh@redhat.com> 1.7.6-2
|
|
- Fix MLS Free
|
|
|
|
* Mon Jul 25 2005 Dan Walsh <dwalsh@redhat.com> 1.7.6-1
|
|
- Upgrade to latest from NSA
|
|
* Merged context reorganization, memory leak fixes,
|
|
port and interface loading, replacements for genusers and
|
|
genbools, debug traceback, and bugfix patches from Ivan Gyurdiev.
|
|
* Merged uninitialized variable bugfix from Dan Walsh.
|
|
|
|
* Mon Jul 25 2005 Dan Walsh <dwalsh@redhat.com> 1.7.5-2
|
|
- Fix unitialized variable problem
|
|
|
|
* Mon Jul 18 2005 Dan Walsh <dwalsh@redhat.com> 1.7.5-1
|
|
- Upgrade to latest from NSA
|
|
* Merged debug support, policydb conversion functions from Ivan Gyurdiev (Red Hat).
|
|
* Removed genpolbools and genpolusers utilities.
|
|
* Merged hierarchy check fix from Joshua Brindle (Tresys).
|
|
|
|
|
|
|
|
* Thu Jul 14 2005 Dan Walsh <dwalsh@redhat.com> 1.7.3-1
|
|
- Upgrade to latest from NSA
|
|
* Merged header file cleanup and memory leak fix from Ivan Gyurdiev (Red Hat).
|
|
* Merged genbools debugging message cleanup from Red Hat.
|
|
|
|
* Thu Jul 7 2005 Dan Walsh <dwalsh@redhat.com> 1.7-2
|
|
- Remove genpolbools and genpoluser
|
|
|
|
* Thu Jul 7 2005 Dan Walsh <dwalsh@redhat.com> 1.7-1
|
|
- Upgrade to latest from NSA
|
|
* Merged loadable module support from Tresys Technology.
|
|
|
|
* Wed Jun 29 2005 Dan Walsh <dwalsh@redhat.com> 1.6-1
|
|
- Upgrade to latest from NSA
|
|
* Updated version for release.
|
|
|
|
* Tue May 17 2005 Dan Walsh <dwalsh@redhat.com> 1.5.10-1
|
|
- Fix reset booleans warning message
|
|
- Upgrade to latest from NSA
|
|
* License changed to LGPL v2.1, see COPYING.
|
|
|
|
* Tue May 17 2005 Dan Walsh <dwalsh@redhat.com> 1.5.9-2
|
|
- Upgrade to latest from NSA
|
|
* Added sepol_genbools_policydb and sepol_genusers_policydb for
|
|
audit2why.
|
|
|
|
* Mon May 16 2005 Dan Walsh <dwalsh@redhat.com> 1.5.8-2
|
|
- export sepol_context_to_sid
|
|
|
|
* Mon May 16 2005 Dan Walsh <dwalsh@redhat.com> 1.5.8-1
|
|
- Upgrade to latest from NSA
|
|
* Added sepol_ prefix to Flask types to avoid
|
|
namespace collision with libselinux.
|
|
|
|
* Fri May 13 2005 Dan Walsh <dwalsh@redhat.com> 1.5.7-1
|
|
- Upgrade to latest from NSA
|
|
* Added sepol_compute_av_reason() for audit2why.
|
|
|
|
* Tue Apr 26 2005 Dan Walsh <dwalsh@redhat.com> 1.5.6-1
|
|
- Upgrade to latest from NSA
|
|
* Fixed bug in role hierarchy checker.
|
|
|
|
* Mon Apr 25 2005 Dan Walsh <dwalsh@redhat.com> 1.5.5-2
|
|
- Fixes found via intel compiler
|
|
|
|
* Thu Apr 14 2005 Dan Walsh <dwalsh@redhat.com> 1.5.5-1
|
|
- Update from NSA
|
|
|
|
* Tue Mar 29 2005 Dan Walsh <dwalsh@redhat.com> 1.5.3-1
|
|
- Update from NSA
|
|
|
|
* Thu Mar 24 2005 Dan Walsh <dwalsh@redhat.com> 1.5.2-2
|
|
- Handle booleans.local
|
|
|
|
* Thu Mar 17 2005 Dan Walsh <dwalsh@redhat.com> 1.5.2-1
|
|
- Update to latest from NSA
|
|
* Added man page for sepol_check_context.
|
|
* Added man page for sepol_genusers function.
|
|
* Merged man pages for genpolusers and chkcon from Manoj Srivastava.
|
|
|
|
* Thu Mar 10 2005 Dan Walsh <dwalsh@redhat.com> 1.4-1
|
|
- Update to latest from NSA
|
|
|
|
* Tue Mar 8 2005 Dan Walsh <dwalsh@redhat.com> 1.3.8-1
|
|
- Update to latest from NSA
|
|
* Cleaned up error handling in sepol_genusers and sepol_genbools.
|
|
|
|
* Tue Mar 1 2005 Dan Walsh <dwalsh@redhat.com> 1.3.7-1
|
|
- Update to latest from NSA
|
|
* Merged sepol_debug and fclose patch from Dan Walsh.
|
|
|
|
* Fri Feb 18 2005 Dan Walsh <dwalsh@redhat.com> 1.3.6-3
|
|
- Make sure local_files file pointer is closed
|
|
- Stop outputing error messages
|
|
|
|
* Thu Feb 17 2005 Dan Walsh <dwalsh@redhat.com> 1.3.6-1
|
|
- Update to latest from NSA
|
|
* Changed sepol_genusers to also use getline and correctly handle
|
|
EOL.
|
|
* Thu Feb 17 2005 Dan Walsh <dwalsh@redhat.com> 1.3.5-1
|
|
- Update to latest from NSA
|
|
* Merged endianness and compute_av patches from Darrel Goeddel (TCS).
|
|
* Merged range_transition support from Darrel Goeddel (TCS).
|
|
* Added sepol_genusers function.
|
|
|
|
* Thu Feb 10 2005 Dan Walsh <dwalsh@redhat.com> 1.3.2-1
|
|
- Update to latest from NSA
|
|
* Changed relabel Makefile target to use restorecon.
|
|
|
|
* Mon Feb 7 2005 Dan Walsh <dwalsh@redhat.com> 1.3.1-1
|
|
- Update to latest from NSA
|
|
* Merged enhanced MLS support from Darrel Goeddel (TCS).
|
|
|
|
* Thu Jan 20 2005 Dan Walsh <dwalsh@redhat.com> 1.2.1.1-1
|
|
- Update to latest from NSA
|
|
* Merged build fix patch from Manoj Srivastava.
|
|
|
|
* Thu Nov 4 2004 Dan Walsh <dwalsh@redhat.com> 1.2.1-1
|
|
- Update to latest from NSA
|
|
|
|
* Mon Aug 30 2004 Dan Walsh <dwalsh@redhat.com> 1.1.1-2
|
|
- Add optargs for build
|
|
|
|
* Sun Aug 22 2004 Dan Walsh <dwalsh@redhat.com> 1.1.1-1
|
|
- New version from NSA
|
|
|
|
* Fri Aug 20 2004 Colin Walters <walters@redhat.com> 1.0-2
|
|
- Apply Stephen's chkcon patch
|
|
|
|
* Thu Aug 19 2004 Colin Walters <walters@redhat.com> 1.0-1
|
|
- New upstream version
|
|
|
|
* Mon Aug 16 2004 Dan Walsh <dwalsh@redhat.com> 0.4.2-1
|
|
- Newversion from upstream implementing stringcase compare
|
|
|
|
* Fri Aug 13 2004 Bill Nottingham <notting@redhat.com> 0.4.1-2
|
|
- ldconfig tweaks
|
|
|
|
* Thu Aug 12 2004 Dan Walsh <dwalsh@redhat.com> 0.4.1-1
|
|
- Ignore case of true/false
|
|
|
|
* Wed Aug 11 2004 Dan Walsh <dwalsh@redhat.com> 0.4.1-1
|
|
- New version from NSA
|
|
|
|
* Tue Aug 10 2004 Dan Walsh <dwalsh@redhat.com> 0.3.1-1
|
|
- Initial version
|
|
- Created by Stephen Smalley <sds@epoch.ncsc.mil>
|
|
|
|
|