d658e96811
Hid sepol_module_package type definition, and added get interfaces. Merged new callback-based error reporting system from Ivan Gyurdiev. Merged support for require blocks inside conditionals from Joshua Brindle (Tresys).
394 lines
14 KiB
RPMSpec
394 lines
14 KiB
RPMSpec
Summary: SELinux binary policy manipulation library
|
|
Name: libsepol
|
|
Version: 1.9.17.1
|
|
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 feature 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
|
|
%dir %{_includedir}/sepol
|
|
%dir %{_includedir}/sepol/policydb
|
|
%{_includedir}/sepol/policydb/*.h
|
|
|
|
%changelog
|
|
* Mon Oct 10 2005 Dan Walsh <dwalsh@redhat.com> 1.9.17-1
|
|
- Upgrade to latest from NSA
|
|
* Hid sepol_module_package type definition, and added get interfaces.
|
|
* Merged new callback-based error reporting system from Ivan
|
|
Gyurdiev.
|
|
* Merged support for require blocks inside conditionals from
|
|
Joshua Brindle (Tresys).
|
|
|
|
* Mon Oct 10 2005 Dan Walsh <dwalsh@redhat.com> 1.9.14.1-1
|
|
- Upgrade to latest from NSA
|
|
* Fixed use of policydb_from_image/to_image to ensure proper
|
|
init of policydb.
|
|
* Isolated policydb internal headers under <sepol/policydb/*.h>.
|
|
These headers should only be used by users of the static libsepol.
|
|
Created new <sepol/policydb.h> with new public types and interfaces
|
|
for shared libsepol.
|
|
Created new <sepol/module.h> with public types and interfaces moved
|
|
or wrapped from old module.h, link.h, and expand.h, adjusted for
|
|
new public types for policydb and policy_file.
|
|
Added public interfaces to libsepol.map.
|
|
Some implementation changes visible to users of the static libsepol:
|
|
1) policydb_read no longer calls policydb_init.
|
|
Caller must do so first.
|
|
2) policydb_init no longer takes policy_type argument.
|
|
Caller must set policy_type separately.
|
|
3) expand_module automatically enables the global branch.
|
|
Caller no longer needs to do so.
|
|
4) policydb_write uses the policy_type and policyvers from the
|
|
policydb itself, and sepol_set_policyvers() has been removed.
|
|
|
|
* Fri Oct 7 2005 Dan Walsh <dwalsh@redhat.com> 1.9.12-1
|
|
- Upgrade to latest from NSA
|
|
* Merged function renaming and static cleanup from Ivan Gyurdiev.
|
|
|
|
* Thu Oct 6 2005 Dan Walsh <dwalsh@redhat.com> 1.9.11-1
|
|
- Upgrade to latest from NSA
|
|
* Merged bug fix for check_assertions handling of no assertions
|
|
from Joshua Brindle (Tresys).
|
|
|
|
* Tue Oct 4 2005 Dan Walsh <dwalsh@redhat.com> 1.9.10-1
|
|
- Upgrade to latest from NSA
|
|
* Merged iterate patch from Ivan Gyurdiev.
|
|
* Merged MLS in modules patch from Joshua Brindle (Tresys).
|
|
|
|
* Mon Oct 3 2005 Dan Walsh <dwalsh@redhat.com> 1.9.8-1
|
|
- Upgrade to latest from NSA
|
|
* Merged pointer typedef elimination patch from Ivan Gyurdiev.
|
|
* Merged user list function, new mls functions, and bugfix patch
|
|
from Ivan Gyurdiev.
|
|
|
|
* Wed Sep 28 2005 Dan Walsh <dwalsh@redhat.com> 1.9.7-1
|
|
- Upgrade to latest from NSA
|
|
* Merged sepol_get_num_roles fix from Karl MacMillan (Tresys).
|
|
|
|
* Fri Sep 23 2005 Dan Walsh <dwalsh@redhat.com> 1.9.6-1
|
|
- Upgrade to latest from NSA
|
|
* Merged bug fix patches from Joshua Brindle (Tresys).
|
|
|
|
* Wed Sep 21 2005 Dan Walsh <dwalsh@redhat.com> 1.9.5-1
|
|
- Upgrade to latest from NSA
|
|
* Merged boolean record and memory leak fix patches from Ivan
|
|
Gyurdiev.
|
|
|
|
* Tue Sep 20 2005 Dan Walsh <dwalsh@redhat.com> 1.9.4-1
|
|
- Upgrade to latest from NSA
|
|
* Merged interface record patch from Ivan Gyurdiev.
|
|
|
|
* Thu Sep 15 2005 Dan Walsh <dwalsh@redhat.com> 1.9.3-1
|
|
- Upgrade to latest from NSA
|
|
* Merged fix for sepol_enable/disable_debug from Ivan
|
|
Gyurdiev.
|
|
|
|
* Mon Sep 14 2005 Dan Walsh <dwalsh@redhat.com> 1.9.1-2
|
|
- Upgrade to latest from NSA
|
|
* Merged stddef.h patch and debug conversion patch from
|
|
Ivan Gyurdiev.
|
|
|
|
* Mon Sep 12 2005 Dan Walsh <dwalsh@redhat.com> 1.9.1-1
|
|
- Upgrade to latest from NSA
|
|
* Fixed expand_avtab and expand_cond_av_list to keep separate
|
|
entries with identical keys but different enabled flags.
|
|
* Updated version for release.
|
|
|
|
* Thu Sep 1 2005 Dan Walsh <dwalsh@redhat.com> 1.7.24-1
|
|
- Upgrade to latest from NSA
|
|
* Fixed symtab_insert return value for duplicate declarations.
|
|
* Merged fix for memory error in policy_module_destroy from
|
|
Jason Tang (Tresys).
|
|
|
|
* Mon Aug 29 2005 Dan Walsh <dwalsh@redhat.com> 1.7.22-1
|
|
- Upgrade to latest from NSA
|
|
* Merged fix for memory leak in sepol_context_to_sid from
|
|
Jason Tang (Tresys).
|
|
* Merged fixes for resource leaks on error paths and
|
|
change to scope_destroy from Joshua Brindle (Tresys).
|
|
|
|
* 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>
|
|
|
|
|