Blame SPECS/libsepol.spec

7ec1aa
Summary: SELinux binary policy manipulation library
7ec1aa
Name: libsepol
7ec1aa
Version: 2.9
1ae9de
Release: 3%{?dist}
7ec1aa
License: LGPLv2+
7ec1aa
Source0: https://github.com/SELinuxProject/selinux/releases/download/20190315/libsepol-2.9.tar.gz
1ae9de
Patch0001: 0001-libsepol-cil-Fix-out-of-bound-read-of-file-context-p.patch
1ae9de
Patch0002: 0002-libsepol-cil-Destroy-classperms-list-when-resetting-.patch
1ae9de
Patch0003: 0003-libsepol-cil-Destroy-classperm-list-when-resetting-m.patch
1ae9de
Patch0004: 0004-libsepol-cil-cil_reset_classperms_set-should-not-res.patch
1ae9de
Patch0005: 0005-libsepol-cil-Set-class-field-to-NULL-when-resetting-.patch
1ae9de
Patch0006: 0006-libsepol-cil-More-strict-verification-of-constraint-.patch
1ae9de
Patch0007: 0007-libsepol-cil-Exit-with-an-error-if-declaration-name-.patch
1ae9de
Patch0008: 0008-libsepol-cil-Allow-permission-expressions-when-using.patch
1ae9de
Patch0009: 0009-libsepol-cil-Reorder-checks-for-invalid-rules-when-b.patch
1ae9de
Patch0010: 0010-libsepol-cil-Cleanup-build-AST-helper-functions.patch
1ae9de
Patch0011: 0011-libsepol-cil-Create-new-first-child-helper-function-.patch
1ae9de
Patch0012: 0012-libsepol-cil-Remove-unused-field-from-struct-cil_arg.patch
1ae9de
Patch0013: 0013-libsepol-cil-Destroy-disabled-optional-blocks-after-.patch
1ae9de
Patch0014: 0014-libsepol-cil-Check-if-name-is-a-macro-parameter-firs.patch
1ae9de
Patch0015: 0015-libsepol-cil-fix-NULL-pointer-dereference-in-__cil_i.patch
1ae9de
Patch0016: 0016-libsepol-cil-Report-disabling-an-optional-block-only.patch
1ae9de
Patch0017: 0017-libsepol-cil-Use-AST-to-track-blocks-and-optionals-w.patch
1ae9de
Patch0018: 0018-libsepol-cil-Reorder-checks-for-invalid-rules-when-r.patch
1ae9de
Patch0019: 0019-libsepol-cil-Sync-checks-for-invalid-rules-in-boolea.patch
1ae9de
Patch0020: 0020-libsepol-cil-Check-for-statements-not-allowed-in-opt.patch
7ec1aa
URL: https://github.com/SELinuxProject/selinux/wiki
7ec1aa
BuildRequires: gcc
7ec1aa
BuildRequires: flex
7ec1aa
7ec1aa
%description
7ec1aa
Security-enhanced Linux is a feature of the Linux® kernel and a number
7ec1aa
of utilities with enhanced security functionality designed to add
7ec1aa
mandatory access controls to Linux.  The Security-enhanced Linux
7ec1aa
kernel contains new architectural components originally developed to
7ec1aa
improve the security of the Flask operating system. These
7ec1aa
architectural components provide general support for the enforcement
7ec1aa
of many kinds of mandatory access control policies, including those
7ec1aa
based on the concepts of Type Enforcement®, Role-based Access
7ec1aa
Control, and Multi-level Security.
7ec1aa
7ec1aa
libsepol provides an API for the manipulation of SELinux binary policies.
7ec1aa
It is used by checkpolicy (the policy compiler) and similar tools, as well
7ec1aa
as by programs like load_policy that need to perform specific transformations
7ec1aa
on binary policies such as customizing policy boolean settings.
7ec1aa
7ec1aa
%package devel
7ec1aa
Summary: Header files and libraries used to build policy manipulation tools
7ec1aa
Requires: %{name}%{?_isa} = %{version}-%{release}
7ec1aa
7ec1aa
%description devel
7ec1aa
The libsepol-devel package contains the libraries and header files
7ec1aa
needed for developing applications that manipulate binary policies. 
7ec1aa
7ec1aa
%package static
7ec1aa
Summary: static libraries used to build policy manipulation tools
7ec1aa
Requires: %{name}-devel%{?_isa} = %{version}-%{release}
7ec1aa
7ec1aa
%description static
7ec1aa
The libsepol-static package contains the static libraries and header files
7ec1aa
needed for developing applications that manipulate binary policies. 
7ec1aa
7ec1aa
%prep
1ae9de
%autosetup -p 2 -n libsepol-%{version}
7ec1aa
7ec1aa
# sparc64 is an -fPIC arch, so we need to fix it here
7ec1aa
%ifarch sparc64
7ec1aa
sed -i 's/fpic/fPIC/g' src/Makefile
7ec1aa
%endif
7ec1aa
7ec1aa
%build
7ec1aa
make clean
7ec1aa
make %{?_smp_mflags} CFLAGS="%{optflags}" LDFLAGS="%{?__global_ldflags}"
7ec1aa
7ec1aa
%install
7ec1aa
mkdir -p ${RPM_BUILD_ROOT}/%{_lib} 
7ec1aa
mkdir -p ${RPM_BUILD_ROOT}/%{_libdir} 
7ec1aa
mkdir -p ${RPM_BUILD_ROOT}%{_includedir} 
7ec1aa
mkdir -p ${RPM_BUILD_ROOT}%{_bindir} 
7ec1aa
mkdir -p ${RPM_BUILD_ROOT}%{_mandir}/man3
7ec1aa
mkdir -p ${RPM_BUILD_ROOT}%{_mandir}/man8
7ec1aa
make DESTDIR="${RPM_BUILD_ROOT}" LIBDIR="%{_libdir}" SHLIBDIR="%{_libdir}" install
7ec1aa
rm -f ${RPM_BUILD_ROOT}%{_bindir}/genpolbools
7ec1aa
rm -f ${RPM_BUILD_ROOT}%{_bindir}/genpolusers
7ec1aa
rm -f ${RPM_BUILD_ROOT}%{_bindir}/chkcon
7ec1aa
rm -rf ${RPM_BUILD_ROOT}%{_mandir}/man8
7ec1aa
rm -rf ${RPM_BUILD_ROOT}%{_mandir}/ru/man8
7ec1aa
7ec1aa
%post
7ec1aa
/sbin/ldconfig
7ec1aa
exit 0
7ec1aa
7ec1aa
%postun -p /sbin/ldconfig
7ec1aa
7ec1aa
%files static
7ec1aa
%{_libdir}/libsepol.a
7ec1aa
7ec1aa
%files devel
7ec1aa
%{_libdir}/libsepol.so
7ec1aa
%{_libdir}/pkgconfig/libsepol.pc
7ec1aa
%{_includedir}/sepol/*.h
7ec1aa
%{_mandir}/man3/*.3.gz
7ec1aa
%dir %{_includedir}/sepol
7ec1aa
%dir %{_includedir}/sepol/policydb
7ec1aa
%{_includedir}/sepol/policydb/*.h
7ec1aa
%dir %{_includedir}/sepol/cil
7ec1aa
%{_includedir}/sepol/cil/*.h
7ec1aa
7ec1aa
%files
7ec1aa
%{!?_licensedir:%global license %%doc}
7ec1aa
%license COPYING
7ec1aa
%{_libdir}/libsepol.so.1
7ec1aa
7ec1aa
%changelog
1ae9de
* Wed Aug 18 2021 Vit Mojzis <vmojzis@redhat.com> - 2.9-3
1ae9de
- cil: Fix out-of-bound read of file context pattern ending with "\"
1ae9de
- cil: Destroy classperms list when resetting classpermission (#1983517)
1ae9de
- cil: Destroy classperm list when resetting map perms (#1983521)
1ae9de
- cil: cil_reset_classperms_set() should not reset classpermission (#1983525)
1ae9de
- cil: Set class field to NULL when resetting struct cil_classperms
1ae9de
- cil: More strict verification of constraint leaf expressions
1ae9de
- cil: Exit with an error if declaration name is a reserved word
1ae9de
- cil: Allow permission expressions when using map classes
1ae9de
- cil: Reorder checks for invalid rules when building AST
1ae9de
- cil: Cleanup build AST helper functions
1ae9de
- cil: Create new first child helper function for building AST
1ae9de
- cil: Remove unused field from struct cil_args_resolve
1ae9de
- cil: Destroy disabled optional blocks after pass is complete
1ae9de
- cil: Check if name is a macro parameter first
1ae9de
- cil: fix NULL pointer dereference in __cil_insert_name
1ae9de
- cil: Report disabling an optional block only at high verbose levels
1ae9de
- cil: Use AST to track blocks and optionals when resolving
1ae9de
- cil: Reorder checks for invalid rules when resolving AST
1ae9de
- cil: Sync checks for invalid rules in booleanifs
1ae9de
- cil: Check for statements not allowed in optional blocks (#1983530)
1ae9de
7ec1aa
* Wed Jan 06 2021 Vit Mojzis <vmojzis@redhat.com> - 2.9-2
7ec1aa
- Drop unnecessary telinit (#1838257)
7ec1aa
7ec1aa
* Mon Mar 18 2019 Petr Lautrbach <plautrba@redhat.com> - 2.9-1
7ec1aa
- SELinux userspace 2.9 release
7ec1aa
7ec1aa
* Mon Nov  5 2018 Petr Lautrbach <plautrba@redhat.com> - 2.8-2
7ec1aa
- Fix RESOURCE_LEAK coverity scan defects
7ec1aa
7ec1aa
* Fri May 25 2018 Petr Lautrbach <plautrba@workstation> - 2.8-1
7ec1aa
- SELinux userspace 2.8 release
7ec1aa
7ec1aa
* Mon May 14 2018 Petr Lautrbach <plautrba@redhat.com> - 2.8-0.rc3.1
7ec1aa
- SELinux userspace 2.8-rc1 release candidate
7ec1aa
7ec1aa
* Mon Apr 23 2018 Petr Lautrbach <plautrba@redhat.com> - 2.0-0.rc1.1
7ec1aa
- SELinux userspace 2.8-rc1 release candidate
7ec1aa
7ec1aa
* Wed Mar 21 2018 Petr Lautrbach <plautrba@redhat.com> - 2.7-6
7ec1aa
- Prevent freeing unitialized value in ibendport handling
7ec1aa
- Add support for the SCTP portcon keyword
7ec1aa
- Export sepol_polcap_getnum/name functions
7ec1aa
7ec1aa
* Tue Mar 13 2018 Petr Lautrbach <plautrba@redhat.com> - 2.7-5
7ec1aa
- cil: Create new keep field for type attribute sets
7ec1aa
- build: follow standard semantics for DESTDIR and PREFIX
7ec1aa
- cil: show an error when cil_expr_to_string() fails
7ec1aa
7ec1aa
* Wed Feb 07 2018 Fedora Release Engineering <releng@fedoraproject.org> - 2.7-4
7ec1aa
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
7ec1aa
7ec1aa
* Wed Nov 22 2017 Petr Lautrbach <plautrba@redhat.com> - 2.7-3
7ec1aa
- free ibendport device names
7ec1aa
7ec1aa
* Fri Oct 20 2017 Petr Lautrbach <plautrba@redhat.com> - 2.7-2
7ec1aa
- reset pointer after free in cil_strpool_destroy()
7ec1aa
- cil: Add ability to redeclare types[attributes]
7ec1aa
- cil: Keep attributes used by generated attributes in neverallow rules
7ec1aa
- use IN6ADDR_ANY_INIT to initialize IPv6 addresses
7ec1aa
- fix memory leak in sepol_bool_query()
7ec1aa
- cil: drop wrong unused attribute
7ec1aa
- cil: fix -Wwrite-strings warning
7ec1aa
- cil: __cil_post_db_neverallow_attr_helper() does not use extra_args
7ec1aa
7ec1aa
* Mon Aug 07 2017 Petr Lautrbach <plautrba@redhat.com> - 2.7-1
7ec1aa
- Update to upstream release 2017-08-04
7ec1aa
7ec1aa
* Thu Aug 03 2017 Fedora Release Engineering <releng@fedoraproject.org> - 2.6-5
7ec1aa
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild
7ec1aa
7ec1aa
* Sun Jul 30 2017 Florian Weimer <fweimer@redhat.com> - 2.6-4
7ec1aa
- Rebuild with binutils fix for ppc64le (#1475636)
7ec1aa
7ec1aa
* Fri Jul 28 2017 Petr Lautrbach <plautrba@redhat.com> - 2.6-3
7ec1aa
- Fix neverallow bug when checking conditional policy
7ec1aa
- Destroy the expanded level when mls_semantic_level_expand() fails
7ec1aa
- Do not seg fault on sepol_*_key_free(NULL)
7ec1aa
7ec1aa
* Wed Jul 26 2017 Fedora Release Engineering <releng@fedoraproject.org> - 2.6-2
7ec1aa
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
7ec1aa
7ec1aa
* Sun Feb 12 2017 Petr Lautrbach <plautrba@redhat.com> - 2.6-1
7ec1aa
- Update to upstream release 2016-10-14
7ec1aa
7ec1aa
* Fri Feb 10 2017 Fedora Release Engineering <releng@fedoraproject.org> - 2.5-11
7ec1aa
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
7ec1aa
7ec1aa
* Mon Oct 03 2016 Petr Lautrbach <plautrba@redhat.com> 2.5-10
7ec1aa
- Check for too many permissions in classes and commons in CIL
7ec1aa
- Fix xperm mapping between avrule and avtab
7ec1aa
- tests: Fix mispelling of optimization option
7ec1aa
- Fix unused/uninitialized variables on mac build
7ec1aa
- Produce more meaningful error messages for conflicting type rules in CIL
7ec1aa
- make "make test" fail when a CUnit test fails
7ec1aa
- tests: fix g_b_role_2 test
7ec1aa
- Change which attributes CIL keeps in the binary policy
7ec1aa
- Port str_read() from kernel and remove multiple occurances of similar code
7ec1aa
- Use calloc instead of malloc for all the *_to_val_structs
7ec1aa
- Fix bugs found by AFL
7ec1aa
- Fix memory leak in expand.c
7ec1aa
- Fix invalid read when policy file is corrupt
7ec1aa
- Fix possible use of uninitialized variables
7ec1aa
7ec1aa
* Mon Aug 01 2016 Petr Lautrbach <plautrba@redhat.com> 2.5-9
7ec1aa
- Warn instead of fail if permission is not resolved
7ec1aa
- Ignore object_r when adding userrole mappings to policydb
7ec1aa
7ec1aa
* Thu Jul 14 2016 Petr Lautrbach <plautrba@redhat.com> - 2.5-8
7ec1aa
- Add missing return to sepol_node_query()
7ec1aa
- Add missing <stdarg.h> include
7ec1aa
7ec1aa
* Thu Jun 23 2016 Petr Lautrbach <plautrba@redhat.com> - 2.5-7
7ec1aa
- Correctly detect unknown classes in sepol_string_to_security_class
7ec1aa
- Sort object files for deterministic linking order
7ec1aa
- Fix neverallowxperm checking on attributes
7ec1aa
- Remove libsepol.map when cleaning
7ec1aa
- Add high-level language line marking support to CIL
7ec1aa
7ec1aa
* Fri May 06 2016 Petr Lautrbach <plautrba@redhat.com> - 2.5-6
7ec1aa
- Change logic of bounds checking to match change in kernel
7ec1aa
- Fix multiple spelling errors
7ec1aa
7ec1aa
* Mon May 02 2016 Petr Lautrbach <plautrba@redhat.com> - 2.5-5
7ec1aa
- Only apply bounds checking to source types in rules
7ec1aa
- Fix CIL and not add an attribute as a type in the attr_type_map
7ec1aa
7ec1aa
* Fri Apr 29 2016 Petr Lautrbach <plautrba@redhat.com> - 2.5-4
7ec1aa
- Build policy on systems not supporting DCCP protocol
7ec1aa
- Fix extended permissions neverallow checking
7ec1aa
- Fix CIL neverallow and bounds checking
7ec1aa
- Android.mk: Add -D_GNU_SOURCE to common_cflags
7ec1aa
7ec1aa
* Fri Apr 08 2016 Petr Lautrbach <plautrba@redhat.com> - 2.5-3
7ec1aa
- Fix bug in CIL when resetting classes
7ec1aa
- Add support for portcon dccp protocol
7ec1aa
7ec1aa
* Sun Feb 28 2016 Petr Lautrbach <plautrba@redhat.com> 2.5-2
7ec1aa
- Use fully versioned arch-specific requires
7ec1aa
7ec1aa
* Tue Feb 23 2016 Petr Lautrbach <plautrba@redhat.com> 2.5-1
7ec1aa
- Update to upstream release 2016-02-23
7ec1aa
7ec1aa
* Sun Feb 21 2016 Petr Lautrbach <plautrba@redhat.com> 2.5-0.1.rc1
7ec1aa
- Update to upstream rc1 release 2016-01-07
7ec1aa
7ec1aa
* Thu Feb 04 2016 Fedora Release Engineering <releng@fedoraproject.org> - 2.4-4
7ec1aa
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
7ec1aa
7ec1aa
* Tue Aug 25 2015 Michal Srb <msrb@redhat.com> - 2.4-3
7ec1aa
- Improve compatibility with Python 3 SWIG bindings
7ec1aa
- Resolves: rhbz#1247714
7ec1aa
7ec1aa
* Fri Aug 14 2015 Adam Jackson <ajax@redhat.com> 2.4-2
7ec1aa
- Pass ldflags to make so hardening works
7ec1aa
7ec1aa
* Mon Apr 13 2015 Petr Lautrbach <plautrba@redhat.com> 2.4-0.1
7ec1aa
- Update to upstream release 2.4
7ec1aa
7ec1aa
* Sun Aug 17 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.3-4
7ec1aa
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
7ec1aa
7ec1aa
* Fri Jul 18 2014 Tom Callaway <spot@fedoraproject.org> - 2.3-3
7ec1aa
- fix license handling
7ec1aa
7ec1aa
* Sat Jun 07 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.3-2
7ec1aa
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
7ec1aa
7ec1aa
* Tue May 6 2014 Dan Walsh <dwalsh@redhat.com> - 2.3-1
7ec1aa
- Update to upstream 
7ec1aa
	* Improve error message for name-based transition conflicts.
7ec1aa
	* Revert libsepol: filename_trans: use some better sorting to compare and merge.
7ec1aa
	* Report source file and line information for neverallow failures.
7ec1aa
	* Fix valgrind errors in constraint_expr_eval_reason from Richard Haines.
7ec1aa
	* Add sepol_validate_transition_reason_buffer function from Richard Haines.
7ec1aa
7ec1aa
* Thu Oct 31 2013 Dan Walsh <dwalsh@redhat.com> - 2.2-1
7ec1aa
- Update to upstream 
7ec1aa
- Richard Haines patch V1 Allow constraint denials to be determined.
7ec1aa
- Add separate role declarations as required by modern checkpolicy.
7ec1aa
7ec1aa
* Sat Aug 03 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.1.9-2
7ec1aa
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
7ec1aa
7ec1aa
* Thu Feb 7 2013 Dan Walsh <dwalsh@redhat.com> - 2.1.9-1
7ec1aa
- Update to upstream 
7ec1aa
- filename_trans: use some better sorting to compare and merge
7ec1aa
- coverity fixes
7ec1aa
- implement default type policy syntax
7ec1aa
- Fix memory leak issues found by Klocwork
7ec1aa
- Add CONTRAINT_NAMES to the kernel 
7ec1aa
7ec1aa
* Sun Jan 27 2013 Dan Walsh <dwalsh@redhat.com> - 2.1.8-8
7ec1aa
- Update to latest patches from eparis/Upstream
7ec1aa
7ec1aa
* Fri Jan 25 2013 Dan Walsh <dwalsh@redhat.com> - 2.1.8-7
7ec1aa
- Update to latest patches from eparis/Upstream
7ec1aa
7ec1aa
* Tue Jan 8 2013 Dan Walsh <dwalsh@redhat.com> - 2.1.8-6
7ec1aa
- Fix libsepol.stack messages in audit2allow/audit2why
7ec1aa
7ec1aa
* Fri Jan 4 2013 Dan Walsh <dwalsh@redhat.com> - 2.1.8-5
7ec1aa
- Update to latest patches from eparis/Upstream
7ec1aa
7ec1aa
* Tue Nov 27 2012 Dan Walsh <dwalsh@redhat.com> - 2.1.8-4
7ec1aa
- Update Richard Haines patch to show constraint information
7ec1aa
7ec1aa
* Mon Nov 19 2012 Dan Walsh <dwalsh@redhat.com> - 2.1.8-3
7ec1aa
- Add sepol_compute_av_reason_buffer patch from Richard Haines
7ec1aa
7ec1aa
* Wed Sep 19 2012 Dan Walsh <dwalsh@redhat.com> - 2.1.8-2
7ec1aa
- Revert patch that was attempting to expand filetrans attributes, but is breaking filetrans rules
7ec1aa
7ec1aa
* Thu Sep 13 2012 Dan Walsh <dwalsh@redhat.com> - 2.1.8-1
7ec1aa
- Update to upstream 
7ec1aa
	* fix neverallow checking on attributes
7ec1aa
	* Move context_copy() after switch block in ocontext_copy_*().
7ec1aa
	* check for missing initial SID labeling statement.
7ec1aa
	* Add always_check_network policy capability
7ec1aa
	* role_fix_callback skips out-of-scope roles during expansion.
7ec1aa
7ec1aa
* Mon Jul 30 2012 Dan Walsh <dwalsh@redhat.com> - 2.1.7-4
7ec1aa
- Try new patches
7ec1aa
7ec1aa
* Tue Jul 24 2012 Dan Walsh <dwalsh@redhat.com> - 2.1.7-3
7ec1aa
- Revert patches
7ec1aa
7ec1aa
* Thu Jul 19 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.1.7-2
7ec1aa
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
7ec1aa
7ec1aa
* Wed Jul 4 2012 Dan Walsh <dwalsh@redhat.com> - 2.1.7-1
7ec1aa
- Update to upstream 
7ec1aa
	* reserve policycapability for redhat testing of ptrace child
7ec1aa
	* cosmetic changes to make the source easier to read
7ec1aa
	* prepend instead of append to filename_trans list
7ec1aa
	* Android/MacOS X build support
7ec1aa
	* allocate enough space to hold filename in trans rules
7ec1aa
7ec1aa
* Mon Apr 23 2012 Dan Walsh <dwalsh@redhat.com> - 2.1.5-3
7ec1aa
- Fix off by one error that is causing file_name transition rules to be expanded- incorrectly on i686 machines
7ec1aa
7ec1aa
* Tue Apr 17 2012 Dan Walsh <dwalsh@redhat.com> - 2.1.5-2
7ec1aa
- Add support for ptrace_child
7ec1aa
7ec1aa
* Thu Mar 29 2012 Dan Walsh <dwalsh@redhat.com> - 2.1.5-1
7ec1aa
- Update to upstream 
7ec1aa
  * checkpolicy: implement new default labeling behaviors
7ec1aa
7ec1aa
* Fri Jan 13 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.1.4-6
7ec1aa
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
7ec1aa
7ec1aa
* Wed Dec 21 2011 Dan Walsh <dwalsh@redhat.com> - 2.1.4-5
7ec1aa
- Update to match eparis pool
7ec1aa
7ec1aa
* Thu Dec 15 2011 Dan Walsh <dwalsh@redhat.com> - 2.1.4-4
7ec1aa
- Additional fix for default transitioning labeling for semodule
7ec1aa
7ec1aa
* Thu Dec 15 2011 Dan Walsh <dwalsh@redhat.com> - 2.1.4-3
7ec1aa
- Add Eparis patch for handling of default transition labeling
7ec1aa
7ec1aa
* Mon Dec 5 2011 Dan Walsh <dwalsh@redhat.com> - 2.1.4-2
7ec1aa
- Allow policy to specify the source of target for generating the default user,role 
7ec1aa
- or mls label for a new target.
7ec1aa
7ec1aa
* Fri Nov 4 2011 Dan Walsh <dwalsh@redhat.com> - 2.1.4-1
7ec1aa
- Update to upstream 
7ec1aa
	* regenerate .pc on VERSION change
7ec1aa
	* Move ebitmap_* functions from mcstrans to libsepol
7ec1aa
	* expand: do filename_trans type comparison on mapped representation
7ec1aa
7ec1aa
* Mon Oct 31 2011 Dan Walsh <dwalsh@redhat.com> - 2.1.3-2
7ec1aa
-The filename_trans code had a bug where duplicate detection was being
7ec1aa
done between the unmapped type value of a new rule and the type value of
7ec1aa
rules already in policy.  This meant that duplicates were not being
7ec1aa
silently dropped and were instead outputting a message that there was a
7ec1aa
problem.  It made things hard because the message WAS using the mapped
7ec1aa
type to convert to the string representation, so it didn't look like a
7ec1aa
dup!
7ec1aa
7ec1aa
* Mon Sep 19 2011 Dan Walsh <dwalsh@redhat.com> - 2.1.3-1
7ec1aa
-Update to upstream
7ec1aa
	* Skip writing role attributes for policy.X and
7ec1aa
	* Indicate when boolean is indeed a tunable.
7ec1aa
	* Separate tunable from boolean during compile.
7ec1aa
	* Write and read TUNABLE flags in related
7ec1aa
	* Copy and check the cond_bool_datum_t.flags during link.
7ec1aa
	* Permanently discard disabled branches of tunables in
7ec1aa
	* Skip tunable identifier and cond_node_t in expansion.
7ec1aa
	* Create a new preserve_tunables flag
7ec1aa
	* Preserve tunables when required by semodule program.
7ec1aa
	* setools expects expand_module_avrules to be an exported
7ec1aa
	* tree: default make target to all not
7ec1aa
7ec1aa
* Thu Sep 15 2011 Dan Walsh <dwalsh@redhat.com> - 2.1.2-3
7ec1aa
- Add patch to handle preserving tunables
7ec1aa
7ec1aa
* Thu Sep 1 2011 Dan Walsh <dwalsh@redhat.com> - 2.1.2-2
7ec1aa
- export expand_module_avrules 
7ec1aa
7ec1aa
* Thu Aug 18 2011 Dan Walsh <dwalsh@redhat.com> - 2.1.2-0
7ec1aa
- Update to upstream 
7ec1aa
	* Only call role_fix_callback for base.p_roles during expansion.
7ec1aa
	* use mapped role number instead of module role number
7ec1aa
7ec1aa
* Mon Aug 1 2011 Dan Walsh <dwalsh@redhat.com> 2.1.1-1
7ec1aa
- Update to upstream 
7ec1aa
	* Minor fix to reading policy with filename transition rules
7ec1aa
7ec1aa
* Wed Jul 27 2011 Dan Walsh <dwalsh@redhat.com> 2.1.0-1
7ec1aa
- Update to upstream 
7ec1aa
	* Release, minor version bump
7ec1aa
7ec1aa
* Tue May 3 2011 Dan Walsh <dwalsh@redhat.com> 2.0.45-1
7ec1aa
- Update to upstream 
7ec1aa
  * Warn if filename_trans rules are dropped by Steve Lawrence.
7ec1aa
7ec1aa
* Thu Apr 21 2011 Dan Walsh <dwalsh@redhat.com> 2.0.44-2
7ec1aa
- Fixes for new role_transition class field by Eric Paris.
7ec1aa
7ec1aa
* Thu Apr 14 2011 Dan Walsh <dwalsh@redhat.com> 2.0.44-1
7ec1aa
-Update to upstream
7ec1aa
	* Fixes for new role_transition class field by Eric Paris.
7ec1aa
	* Add libsepol support for filename_trans rules by Eric Paris.
7ec1aa
7ec1aa
* Tue Apr 12 2011 Dan Walsh <dwalsh@redhat.com> 2.0.43-3
7ec1aa
- re-add Erics patch for filename transitions
7ec1aa
	
7ec1aa
* Tue Apr 12 2011 Dan Walsh <dwalsh@redhat.com> 2.0.43-1
7ec1aa
-Update to upstream
7ec1aa
	* Add new class field in role_transition by Harry Ciao.
7ec1aa
7ec1aa
* Tue Mar 29 2011 Dan Walsh <dwalsh@redhat.com> 2.0.42-3
7ec1aa
- Apply Eparis Patch
7ec1aa
  This patch add libsepol support for filename_trans rules.  These rules
7ec1aa
allow on to make labeling decisions for new objects based partially on
7ec1aa
the last path component.  They are stored in a list.  If we find that
7ec1aa
the number of rules grows to an significant size I will likely choose to
7ec1aa
store these in a hash, both in libsepol and in the kernel.  But as long
7ec1aa
as the number of such rules stays small, this should be good.
7ec1aa
7ec1aa
* Tue Feb 08 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.0.42-2
7ec1aa
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
7ec1aa
7ec1aa
* Tue Dec 21 2010 Dan Walsh <dwalsh@redhat.com> 2.0.42-1
7ec1aa
- Upgrade to latest from NSA
7ec1aa
  * Fix compliation under GCC 4.6 by Justin Mattock
7ec1aa
7ec1aa
* Thu Feb 18 2010 Dan Walsh <dwalsh@redhat.com> 2.0.41-3
7ec1aa
- Fix libsepol.pc file
7ec1aa
7ec1aa
* Thu Jan 28 2010 Dan Walsh <dwalsh@redhat.com> 2.0.41-2
7ec1aa
- Resolve specfile problems
7ec1aa
Resolves: #555835
7ec1aa
7ec1aa
* Wed Nov 18 2009 Dan Walsh <dwalsh@redhat.com> 2.0.41-1
7ec1aa
- Upgrade to latest from NSA
7ec1aa
  * Fixed typo in error message from Manoj Srivastava.
7ec1aa
7ec1aa
* Mon Nov 2 2009 Dan Walsh <dwalsh@redhat.com> 2.0.40-1
7ec1aa
- Upgrade to latest from NSA
7ec1aa
  * Add pkgconfig file from Eamon Walsh.
7ec1aa
7ec1aa
* Wed Oct 14 2009 Dan Walsh <dwalsh@redhat.com> 2.0.39-1
7ec1aa
- Upgrade to latest from NSA
7ec1aa
  * Add support for building Xen policies from Paul Nuzzi.
7ec1aa
7ec1aa
* Tue Sep 8 2009 Dan Walsh <dwalsh@redhat.com> 2.0.38-1
7ec1aa
- Upgrade to latest from NSA
7ec1aa
  * Check last offset in the module package against the file size.
7ec1aa
  Reported by Manoj Srivastava for bug filed by Max Kellermann.
7ec1aa
7ec1aa
* Sat Jul 25 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.0.37-2
7ec1aa
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
7ec1aa
7ec1aa
* Tue Jul 7 2009 Dan Walsh <dwalsh@redhat.com> 2.0.37-1
7ec1aa
- Upgrade to latest from NSA
7ec1aa
  * Add method to check disable dontaudit flag from Christopher Pardy.
7ec1aa
7ec1aa
* Wed Mar 25 2009 Dan Walsh <dwalsh@redhat.com> 2.0.36-1
7ec1aa
- Upgrade to latest from NSA
7ec1aa
  * Fix boolean state smashing from Joshua Brindle.
7ec1aa
7ec1aa
* Thu Mar 5 2009 Dan Walsh <dwalsh@redhat.com> 2.0.35-3
7ec1aa
- Fix license specification to be LGPL instead of GPL
7ec1aa
7ec1aa
* Wed Feb 25 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.0.35-2
7ec1aa
7ec1aa
* Wed Feb 18 2009 Dan Walsh <dwalsh@redhat.com> 2.0.35-1
7ec1aa
- Upgrade to latest from NSA
7ec1aa
        * Fix alias field in module format, caused by boundary format change
7ec1aa
          from Caleb Case.
7ec1aa
7ec1aa
* Tue Oct 14 2008 Dan Walsh <dwalsh@redhat.com> 2.0.34-1
7ec1aa
- Upgrade to latest from NSA
7ec1aa
  * Add bounds support from KaiGai Kohei.
7ec1aa
  * Fix invalid aliases bug from Joshua Brindle.
7ec1aa
7ec1aa
* Tue Sep 30 2008 Dan Walsh <dwalsh@redhat.com> 2.0.33-1
7ec1aa
- Upgrade to latest from NSA
7ec1aa
  * Revert patch that removed expand_rule.
7ec1aa
7ec1aa
* Mon Jul 7 2008 Dan Walsh <dwalsh@redhat.com> 2.0.32-1
7ec1aa
- Upgrade to latest from NSA
7ec1aa
  * Allow require then declare in the source policy from Joshua Brindle.
7ec1aa
7ec1aa
* Sun Jun 22 2008 Dan Walsh <dwalsh@redhat.com> 2.0.31-1
7ec1aa
- Upgrade to latest from NSA
7ec1aa
  * Fix mls_semantic_level_expand() to handle a user require w/o MLS information from Stephen Smalley.
7ec1aa
7ec1aa
* Wed Jun 11 2008 Dan Walsh <dwalsh@redhat.com> 2.0.30-1
7ec1aa
- Upgrade to latest from NSA
7ec1aa
  * Fix endianness bug in the handling of network node addresses from Stephen Smalley.
7ec1aa
    Only affects big endian platforms.
7ec1aa
    Bug reported by John Weeks of Sun upon policy mismatch between x86 and sparc.
7ec1aa
7ec1aa
* Wed May 28 2008 Dan Walsh <dwalsh@redhat.com> 2.0.29-1
7ec1aa
- Upgrade to latest from NSA
7ec1aa
  * Merge user and role mapping support from Joshua Brindle.
7ec1aa
7ec1aa
* Mon May 19 2008 Dan Walsh <dwalsh@redhat.com> 2.0.28-1
7ec1aa
- Upgrade to latest from NSA
7ec1aa
  * Fix mls_level_convert() to gracefully handle an empty user declaration/require from Stephen Smalley.
7ec1aa
  * Belatedly merge test for policy downgrade from Todd Miller.
7ec1aa
7ec1aa
* Thu Mar 27 2008 Dan Walsh <dwalsh@redhat.com> 2.0.26-1
7ec1aa
- Upgrade to latest from NSA
7ec1aa
  * Add permissive domain support from Eric Paris.
7ec1aa
7ec1aa
* Thu Mar 13 2008 Dan Walsh <dwalsh@redhat.com> 2.0.25-1
7ec1aa
- Upgrade to latest from NSA
7ec1aa
  * Drop unused ->buffer field from struct policy_file.
7ec1aa
  * Add policy_file_init() initalizer for struct policy_file and use it, from Todd C. Miller.
7ec1aa
7ec1aa
7ec1aa
* Thu Feb 28 2008 Dan Walsh <dwalsh@redhat.com> 2.0.23-1
7ec1aa
- Upgrade to latest from NSA
7ec1aa
  * Accept "Flask" as an alternate identifier string in kernel policies from Stephen Smalley.
7ec1aa
  * Add support for open_perms policy capability from Eric Paris.
7ec1aa
7ec1aa
* Wed Feb 20 2008 Dan Walsh <dwalsh@redhat.com> 2.0.21-1
7ec1aa
- Upgrade to latest from NSA
7ec1aa
  * Fix invalid memory allocation in policydb_index_others() from Jason Tang.
7ec1aa
7ec1aa
* Mon Feb 4 2008 Dan Walsh <dwalsh@redhat.com> 2.0.20-1
7ec1aa
- Upgrade to latest from NSA
7ec1aa
  * Port of Yuichi Nakamura's tune avtab to reduce memory usage patch from the kernel avtab to libsepol from Stephen Smalley.
7ec1aa
7ec1aa
* Sat Feb 2 2008 Dan Walsh <dwalsh@redhat.com> 2.0.19-1
7ec1aa
- Upgrade to latest from NSA
7ec1aa
  * Add support for consuming avrule_blocks during expansion to reduce
7ec1aa
    peak memory usage.
7ec1aa
7ec1aa
* Mon Jan 21 2008 Dan Walsh <dwalsh@redhat.com> 2.0.18-2
7ec1aa
- Fixed for spec review
7ec1aa
7ec1aa
* Fri Jan 11 2008 Dan Walsh <dwalsh@redhat.com> 2.0.18-1
7ec1aa
- Upgrade to latest from NSA
7ec1aa
  * Added support for policy capabilities from Todd Miller.
7ec1aa
  * Prevent generation of policy.18 with MLS enabled from Todd Miller.
7ec1aa
7ec1aa
* Mon Dec 10 2007 Dan Walsh <dwalsh@redhat.com> 2.0.16-1
7ec1aa
- Upgrade to latest from NSA
7ec1aa
  * print module magic number in hex on mismatch, from Todd Miller.
7ec1aa
7ec1aa
* Fri Nov 30 2007 Dan Walsh <dwalsh@redhat.com> 2.0.15-1
7ec1aa
- Upgrade to latest from NSA
7ec1aa
  * clarify and reduce neverallow error reporting from Stephen Smalley.
7ec1aa
7ec1aa
* Tue Nov 6 2007 Dan Walsh <dwalsh@redhat.com> 2.0.14-1
7ec1aa
- Upgrade to latest from NSA
7ec1aa
  * Reject self aliasing at link time from Stephen Smalley.
7ec1aa
  * Allow handle_unknown in base to be overridden by semanage.conf from Stephen Smalley.
7ec1aa
  * Fixed bug in require checking from Stephen Smalley.
7ec1aa
  * Added user hierarchy checking from Todd Miller.  
7ec1aa
7ec1aa
* Wed Sep 26 2007 Dan Walsh <dwalsh@redhat.com> 2.0.11-1
7ec1aa
  * Pass CFLAGS to CC even on link command, per Dennis Gilmore.
7ec1aa
7ec1aa
* Tue Sep 18 2007 Dan Walsh <dwalsh@redhat.com> 2.0.10-1
7ec1aa
- Upgrade to latest from NSA
7ec1aa
  * Merged support for the handle_unknown policydb flag from Eric Paris.
7ec1aa
7ec1aa
* Fri Aug 31 2007 Dan Walsh <dwalsh@redhat.com> 2.0.9-1
7ec1aa
- Upgrade to latest from NSA
7ec1aa
  * Moved next_entry and put_entry out-of-line to reduce code size from Ulrich Drepper.
7ec1aa
  * Fixed module_package_read_offsets bug introduced by the prior patch.
7ec1aa
7ec1aa
* Thu Aug 23 2007 Dan Walsh <dwalsh@redhat.com> 2.0.7-1
7ec1aa
- Upgrade to latest from NSA
7ec1aa
  * Eliminate unaligned accesses from policy reading code from Stephen Smalley.
7ec1aa
7ec1aa
* Mon Aug 20 2007 Dan Walsh <dwalsh@redhat.com> 2.0.6-1
7ec1aa
- Upgrade to latest from NSA
7ec1aa
  * Allow dontaudits to be turned off during policy expansion
7ec1aa
7ec1aa
7ec1aa
* Fri Aug 10 2007 Dan Walsh <dwalsh@redhat.com> 2.0.5-1
7ec1aa
- Upgrade to latest from NSA
7ec1aa
     * Fix sepol_context_clone to handle a NULL context correctly.
7ec1aa
          This happens for e.g. semanage_fcontext_set_con(sh, fcontext, NULL)
7ec1aa
    to set the file context entry to "<<none>>".
7ec1aa
- Apply patch from Joshua Brindle to disable dontaudit rules
7ec1aa
7ec1aa
7ec1aa
* Thu Jun 21 2007 Dan Walsh <dwalsh@redhat.com> 2.0.4-1
7ec1aa
- Upgrade to latest from NSA
7ec1aa
  * Merged error handling patch from Eamon Walsh.
7ec1aa
7ec1aa
* Tue Apr 17 2007 Dan Walsh <dwalsh@redhat.com> 2.0.3-1
7ec1aa
- Upgrade to latest from NSA
7ec1aa
  * Merged add boolmap argument to expand_module_avrules() from Chris PeBenito.
7ec1aa
7ec1aa
* Fri Mar 30 2007 Dan Walsh <dwalsh@redhat.com> 2.0.2-1
7ec1aa
- Upgrade to latest from NSA
7ec1aa
  * Merged fix from Karl to remap booleans at expand time to 
7ec1aa
    avoid holes in the symbol table.
7ec1aa
7ec1aa
* Wed Feb 7 2007 Dan Walsh <dwalsh@redhat.com> 2.0.1-1
7ec1aa
- Upgrade to latest from NSA
7ec1aa
  * Merged libsepol segfault fix from Stephen Smalley for when
7ec1aa
    sensitivities are required but not present in the base.
7ec1aa
  * Merged patch to add errcodes.h to libsepol by Karl MacMillan.
7ec1aa
  
7ec1aa
* Fri Jan 19 2007 Dan Walsh <dwalsh@redhat.com> 1.16.0-1
7ec1aa
- Upgrade to latest from NSA
7ec1aa
  * Updated version for stable branch.
7ec1aa
7ec1aa
* Tue Dec 12 2006 Adam Jackson <ajax@redhat.com> 1.15.3-1
7ec1aa
- Add dist tag and rebuild, fixes 6 to 7 upgrades.
7ec1aa
7ec1aa
* Tue Nov 28 2006 Dan Walsh <dwalsh@redhat.com> 1.15.3-1
7ec1aa
- Upgrade to latest from NSA
7ec1aa
  * Merged patch to compile wit -fPIC instead of -fpic from
7ec1aa
    Manoj Srivastava to prevent hitting the global offest table
7ec1aa
    limit. Patch changed to include libselinux and libsemanage in
7ec1aa
    addition to libselinux.
7ec1aa
7ec1aa
* Wed Nov 1 2006 Dan Walsh <dwalsh@redhat.com> 1.15.2-1
7ec1aa
- Upgrade to latest from NSA
7ec1aa
  * Merged fix from Karl MacMillan for a segfault when linking
7ec1aa
    non-MLS modules with users in them.
7ec1aa
7ec1aa
* Tue Oct 24 2006 Dan Walsh <dwalsh@redhat.com> 1.15.1-1
7ec1aa
- Upgrade to latest from NSA
7ec1aa
  * Merged fix for version comparison that was preventing range
7ec1aa
    transition rules from being written for a version 5 base policy
7ec1aa
    from Darrel Goeddel.
7ec1aa
7ec1aa
* Tue Oct 17 2006 Dan Walsh <dwalsh@redhat.com> 1.14-1
7ec1aa
- NSA Released version - Same as previous but changed release number
7ec1aa
7ec1aa
* Tue Oct 17 2006 Dan Walsh <dwalsh@redhat.com> 1.12.28-1
7ec1aa
- Upgrade to latest from NSA
7ec1aa
  * Build libsepol's static object files with -fpic
7ec1aa
7ec1aa
* Thu Sep 28 2006 Dan Walsh <dwalsh@redhat.com> 1.12.27-1
7ec1aa
- Upgrade to latest from NSA
7ec1aa
  * Merged mls user and range_transition support in modules
7ec1aa
    from Darrel Goeddel
7ec1aa
7ec1aa
* Wed Sep 6 2006 Dan Walsh <dwalsh@redhat.com> 1.12.26-1
7ec1aa
- Upgrade to latest from NSA
7ec1aa
  * Merged range transition enhancements and user format changes
7ec1aa
    Darrel Goeddel
7ec1aa
7ec1aa
* Fri Aug 25 2006 Dan Walsh <dwalsh@redhat.com> 1.12.25-3
7ec1aa
- Fix location of include directory to devel package
7ec1aa
7ec1aa
* Fri Aug 25 2006 Dan Walsh <dwalsh@redhat.com> 1.12.25-2
7ec1aa
- Remove invalid Requires 
7ec1aa
7ec1aa
* Thu Aug 24 2006 Dan Walsh <dwalsh@redhat.com> 1.12.25-1
7ec1aa
- Upgrade to latest from NSA
7ec1aa
  * Merged conditionally expand neverallows patch from Jeremy Mowery.
7ec1aa
  * Merged refactor expander patch from Jeremy Mowery.
7ec1aa
7ec1aa
* Thu Aug 3 2006 Dan Walsh <dwalsh@redhat.com> 1.12.24-1
7ec1aa
- Upgrade to latest from NSA
7ec1aa
  * Merged libsepol unit tests from Joshua Brindle.
7ec1aa
  * Merged symtab datum patch from Karl MacMillan.
7ec1aa
  * Merged netfilter contexts support from Chris PeBenito.
7ec1aa
7ec1aa
* Tue Aug 1 2006 Dan Walsh <dwalsh@redhat.com> 1.12.21-1
7ec1aa
- Upgrade to latest from NSA
7ec1aa
  * Merged helpful hierarchy check errors patch from Joshua Brindle.
7ec1aa
  * Merged semodule_deps patch from Karl MacMillan.
7ec1aa
    This adds source module names to the avrule decls.
7ec1aa
7ec1aa
* Wed Jul 12 2006 Jesse Keating <jkeating@redhat.com> - 1.12.19-1.1
7ec1aa
- rebuild
7ec1aa
7ec1aa
* Tue Jul 4 2006 Dan Walsh <dwalsh@redhat.com> 1.12.19-1
7ec1aa
- Upgrade to latest from NSA
7ec1aa
  * Lindent.
7ec1aa
  * Merged optionals in base take 2 patch set from Joshua Brindle.
7ec1aa
7ec1aa
* Tue Jun 13 2006 Bill Nottingham <notting@redhat.com> 1.12.17-2
7ec1aa
- bump so it's newer than the FC5 version
7ec1aa
7ec1aa
* Mon Jun 5 2006 Dan Walsh <dwalsh@redhat.com> 1.12.17-1
7ec1aa
- Upgrade to latest from NSA
7ec1aa
  * Revert 1.12.16.
7ec1aa
  * Merged cleaner fix for bool_ids overflow from Karl MacMillan,
7ec1aa
    replacing the prior patch.
7ec1aa
  * Merged fixes for several memory leaks in the error paths during
7ec1aa
    policy read from Serge Hallyn.
7ec1aa
7ec1aa
* Tue May 30 2006 Dan Walsh <dwalsh@redhat.com> 1.12.14-1
7ec1aa
- Upgrade to latest from NSA
7ec1aa
  * Fixed bool_ids overflow bug in cond_node_find and cond_copy_list,
7ec1aa
    based on bug report and suggested fix by Cedric Roux.
7ec1aa
  * Merged sens_copy_callback, check_role_hierarchy_callback,
7ec1aa
    and node_from_record fixes from Serge Hallyn.
7ec1aa
7ec1aa
* Tue May 23 2006 Dan Walsh <dwalsh@redhat.com> 1.12.12-1
7ec1aa
- Upgrade to latest from NSA
7ec1aa
  * Added sepol_policydb_compat_net() interface for testing whether
7ec1aa
    a policy requires the compatibility support for network checks
7ec1aa
    to be enabled in the kernel.
7ec1aa
7ec1aa
* Thu May 18 2006 Dan Walsh <dwalsh@redhat.com> 1.12.11-1
7ec1aa
- Upgrade to latest from NSA
7ec1aa
  * Merged patch to initialize sym_val_to_name arrays from Kevin Carr.
7ec1aa
    Reworked to use calloc in the first place, and converted some other
7ec1aa
    malloc/memset pairs to calloc calls.
7ec1aa
7ec1aa
* Mon May 15 2006 Dan Walsh <dwalsh@redhat.com> 1.12.10-1
7ec1aa
- Upgrade to latest from NSA
7ec1aa
  * Merged patch to revert role/user decl upgrade from Karl MacMillan.
7ec1aa
7ec1aa
* Thu May 11 2006 Steve Grubb <sgrubb@redhat.com> 1.12.9
7ec1aa
- Couple minor spec file clean ups
7ec1aa
7ec1aa
* Mon May 8 2006 Dan Walsh <dwalsh@redhat.com> 1.12.9-1
7ec1aa
- Upgrade to latest from NSA
7ec1aa
  * Dropped tests from all Makefile target.
7ec1aa
  * Merged fix warnings patch from Karl MacMillan.
7ec1aa
  * Merged libsepol test framework patch from Karl MacMillan.
7ec1aa
7ec1aa
* Mon May 1 2006 Dan Walsh <dwalsh@redhat.com> 1.12.6-1
7ec1aa
- Upgrade to latest from NSA
7ec1aa
  * Fixed cond_normalize to traverse the entire cond list at link time.
7ec1aa
7ec1aa
* Wed Apr 5 2006 Dan Walsh <dwalsh@redhat.com> 1.12.5-1
7ec1aa
- Upgrade to latest from NSA
7ec1aa
  * Merged fix for leak of optional package sections from Ivan Gyurdiev.
7ec1aa
7ec1aa
* Wed Mar 29 2006 Dan Walsh <dwalsh@redhat.com> 1.12.4-1
7ec1aa
- Upgrade to latest from NSA
7ec1aa
  * Generalize test for bitmap overflow in ebitmap_set_bit.
7ec1aa
7ec1aa
* Mon Mar 27 2006 Dan Walsh <dwalsh@redhat.com> 1.12.3-1
7ec1aa
- Upgrade to latest from NSA
7ec1aa
  * Fixed attr_convert_callback and expand_convert_type_set
7ec1aa
    typemap bug.
7ec1aa
7ec1aa
* Fri Mar 24 2006 Dan Walsh <dwalsh@redhat.com> 1.12.2-1
7ec1aa
- Upgrade to latest from NSA
7ec1aa
  * Fixed avrule_block_write num_decls endian bug.
7ec1aa
7ec1aa
* Fri Mar 17 2006 Dan Walsh <dwalsh@redhat.com> 1.12.1-1
7ec1aa
- Upgrade to latest from NSA
7ec1aa
  * Fixed sepol_module_package_write buffer overflow bug.
7ec1aa
7ec1aa
* Fri Mar 10 2006 Dan Walsh <dwalsh@redhat.com> 1.12-2
7ec1aa
- Upgrade to latest from NSA
7ec1aa
  * Updated version for release.
7ec1aa
  * Merged cond_evaluate_expr fix from Serge Hallyn (IBM).
7ec1aa
  * Fixed bug in copy_avrule_list reported by Ivan Gyurdiev.
7ec1aa
  * Merged sepol_policydb_mls_enabled interface and error handling
7ec1aa
    changes from Ivan Gyurdiev.
7ec1aa
7ec1aa
* Mon Feb 20 2006 Dan Walsh <dwalsh@redhat.com> 1.11.18-2
7ec1aa
- Rebuild for fc5-head
7ec1aa
7ec1aa
* Fri Feb 17 2006 Dan Walsh <dwalsh@redhat.com> 1.11.18-1
7ec1aa
- Upgrade to latest from NSA
7ec1aa
  * Merged node_expand_addr bugfix and node_compare* change from
7ec1aa
    Ivan Gyurdiev.
7ec1aa
7ec1aa
* Thu Feb 16 2006 Dan Walsh <dwalsh@redhat.com> 1.11.17-1
7ec1aa
- Upgrade to latest from NSA
7ec1aa
  * Merged nodes, ports: always prepend patch from Ivan Gyurdiev.
7ec1aa
  * Merged bug fix patch from Ivan Gyurdiev.
7ec1aa
  * Added a defined flag to level_datum_t for use by checkpolicy.
7ec1aa
  * Merged nodecon support patch from Ivan Gyurdiev.
7ec1aa
  * Merged cleanups patch from Ivan Gyurdiev.  
7ec1aa
7ec1aa
* Mon Feb 13 2006 Dan Walsh <dwalsh@redhat.com> 1.11.14-2
7ec1aa
- Fix post install not to fire if /dev/initctr does not exist
7ec1aa
7ec1aa
* Mon Feb 13 2006 Dan Walsh <dwalsh@redhat.com> 1.11.14-1
7ec1aa
- Upgrade to latest from NSA
7ec1aa
  * Merged optionals in base patch from Joshua Brindle.
7ec1aa
7ec1aa
* Fri Feb 10 2006 Jesse Keating <jkeating@redhat.com> - 1.11.13-1.1
7ec1aa
- bump again for double-long bug on ppc(64)
7ec1aa
7ec1aa
* Tue Feb 7 2006 Dan Walsh <dwalsh@redhat.com> 1.11.13-1
7ec1aa
- Upgrade to latest from NSA
7ec1aa
  * Merged seuser/user_extra support patch from Joshua Brindle.
7ec1aa
  * Merged fix patch from Ivan Gyurdiev.
7ec1aa
7ec1aa
* Tue Feb 07 2006 Jesse Keating <jkeating@redhat.com> - 1.11.12-1.1
7ec1aa
- rebuilt for new gcc4.1 snapshot and glibc changes
7ec1aa
7ec1aa
* Thu Feb 2 2006 Dan Walsh <dwalsh@redhat.com> 1.11.12-1
7ec1aa
- Upgrade to latest from NSA
7ec1aa
  * Merged assertion copying bugfix from Joshua Brindle.
7ec1aa
  * Merged sepol_av_to_string patch from Joshua Brindle.
7ec1aa
  * Merged clone record on set_con patch from Ivan Gyurdiev.  
7ec1aa
7ec1aa
* Mon Jan 30 2006 Dan Walsh <dwalsh@redhat.com> 1.11.10-1
7ec1aa
- Upgrade to latest from NSA
7ec1aa
  * Merged cond_expr mapping and package section count bug fixes
7ec1aa
    from Joshua Brindle.
7ec1aa
  * Merged improve port/fcontext API patch from Ivan Gyurdiev.  
7ec1aa
  * Merged fixes for overflow bugs on 64-bit from Ivan Gyurdiev.
7ec1aa
7ec1aa
* Fri Jan 13 2006 Dan Walsh <dwalsh@redhat.com> 1.11.9-1
7ec1aa
- Upgrade to latest from NSA
7ec1aa
  * Merged size_t -> unsigned int patch from Ivan Gyurdiev.
7ec1aa
7ec1aa
* Tue Jan 10 2006 Dan Walsh <dwalsh@redhat.com> 1.11.8-1
7ec1aa
- Upgrade to latest from NSA
7ec1aa
  * Merged 2nd const in APIs patch from Ivan Gyurdiev.
7ec1aa
7ec1aa
* Fri Jan 6 2006 Dan Walsh <dwalsh@redhat.com> 1.11.7-1
7ec1aa
- Upgrade to latest from NSA
7ec1aa
  * Merged const in APIs patch from Ivan Gyurdiev.
7ec1aa
  * Merged compare2 function patch from Ivan Gyurdiev.
7ec1aa
  * Fixed hierarchy checker to only check allow rules.
7ec1aa
7ec1aa
* Thu Jan 5 2006 Dan Walsh <dwalsh@redhat.com> 1.11.5-1
7ec1aa
- Upgrade to latest from NSA
7ec1aa
  * Merged further fixes from Russell Coker, specifically:
7ec1aa
    - av_to_string overflow checking
7ec1aa
    - sepol_context_to_string error handling
7ec1aa
    - hierarchy checking memory leak fixes and optimizations
7ec1aa
    - avrule_block_read variable initialization
7ec1aa
  * Marked deprecated code in genbools and genusers.
7ec1aa
7ec1aa
* Thu Jan 5 2006 Dan Walsh <dwalsh@redhat.com> 1.11.4-1
7ec1aa
- Upgrade to latest from NSA
7ec1aa
  * Merged bugfix for sepol_port_modify from Russell Coker.
7ec1aa
  * Fixed bug in sepol_iface_modify error path noted by Ivan Gyurdiev.
7ec1aa
  * Merged port ordering patch from Ivan Gyurdiev.
7ec1aa
7ec1aa
* Wed Jan 4 2006 Dan Walsh <dwalsh@redhat.com> 1.11.2-2
7ec1aa
- Upgrade to latest from NSA
7ec1aa
  * Merged patch series from Ivan Gyurdiev.
7ec1aa
    This includes patches to:
7ec1aa
    - support ordering of records in compare function
7ec1aa
    - enable port interfaces
7ec1aa
    - add interfaces for context validity and range checks
7ec1aa
    - add include guards
7ec1aa
7ec1aa
* Tue Dec 27 2005 Dan Walsh <dwalsh@redhat.com> 1.11.1-2
7ec1aa
- Add Ivans patch to make ports work
7ec1aa
7ec1aa
* Fri Dec 16 2005 Dan Walsh <dwalsh@redhat.com> 1.11.1-1
7ec1aa
- Upgrade to latest from NSA
7ec1aa
  * Fixed mls_range_cpy bug.
7ec1aa
7ec1aa
* Fri Dec 09 2005 Jesse Keating <jkeating@redhat.com>
7ec1aa
- rebuilt
7ec1aa
7ec1aa
* Wed Dec 7 2005 Dan Walsh <dwalsh@redhat.com> 1.10-1
7ec1aa
- Upgrade to latest from NSA
7ec1aa
7ec1aa
* Mon Dec 5 2005 Dan Walsh <dwalsh@redhat.com> 1.9.42-1
7ec1aa
- Upgrade to latest from NSA
7ec1aa
  * Dropped handle from user_del_role interface.  
7ec1aa
7ec1aa
* Mon Nov 28 2005 Dan Walsh <dwalsh@redhat.com> 1.9.41-1
7ec1aa
- Upgrade to latest from NSA
7ec1aa
  * Merged remove defrole from sepol patch from Ivan Gyurdiev.
7ec1aa
7ec1aa
* Wed Nov 16 2005 Dan Walsh <dwalsh@redhat.com> 1.9.40-1
7ec1aa
- Upgrade to latest from NSA
7ec1aa
  * Merged module function and map file cleanup from Ivan Gyurdiev.
7ec1aa
  * Merged MLS and genusers cleanups from Ivan Gyurdiev.
7ec1aa
7ec1aa
* Wed Nov 9 2005 Dan Walsh <dwalsh@redhat.com> 1.9.39-1
7ec1aa
- Upgrade to latest from NSA
7ec1aa
  Prepare for removal of booleans* and *.users files.
7ec1aa
  * Cleaned up sepol_genbools to not regenerate the image if
7ec1aa
    there were no changes in the boolean values, including the
7ec1aa
    degenerate case where there are no booleans or booleans.local
7ec1aa
    files.
7ec1aa
  * Cleaned up sepol_genusers to not warn on missing local.users.
7ec1aa
  
7ec1aa
* Tue Nov 8 2005 Dan Walsh <dwalsh@redhat.com> 1.9.38-1
7ec1aa
- Upgrade to latest from NSA
7ec1aa
  * Removed sepol_port_* from libsepol.map, as the port interfaces
7ec1aa
    are not yet stable.
7ec1aa
7ec1aa
* Mon Nov 7 2005 Dan Walsh <dwalsh@redhat.com> 1.9.37-1
7ec1aa
- Upgrade to latest from NSA
7ec1aa
  * Merged context destroy cleanup patch from Ivan Gyurdiev.
7ec1aa
7ec1aa
* Thu Nov 3 2005 Dan Walsh <dwalsh@redhat.com> 1.9.36-1
7ec1aa
- Upgrade to latest from NSA
7ec1aa
  * Merged context_to_string interface change patch from Ivan Gyurdiev.
7ec1aa
7ec1aa
* Thu Nov 3 2005 Dan Walsh <dwalsh@redhat.com> 1.9.35-1
7ec1aa
- Upgrade to latest from NSA
7ec1aa
  * Added src/dso.h and src/*_internal.h.
7ec1aa
    Added hidden_def for exported symbols used within libsepol.
7ec1aa
    Added hidden for symbols that should not be exported by
7ec1aa
    the wildcards in libsepol.map.
7ec1aa
7ec1aa
* Mon Oct 31 2005 Dan Walsh <dwalsh@redhat.com> 1.9.34-1
7ec1aa
- Upgrade to latest from NSA
7ec1aa
  * Merged record interface, record bugfix, and set_roles patches 
7ec1aa
    from Ivan Gyurdiev.
7ec1aa
7ec1aa
* Fri Oct 28 2005 Dan Walsh <dwalsh@redhat.com> 1.9.33-1
7ec1aa
- Upgrade to latest from NSA
7ec1aa
  * Merged count specification change from Ivan Gyurdiev.  
7ec1aa
7ec1aa
* Wed Oct 26 2005 Dan Walsh <dwalsh@redhat.com> 1.9.32-1
7ec1aa
- Upgrade to latest from NSA
7ec1aa
  * Added further checking and error reporting to 
7ec1aa
    sepol_module_package_read and _info.
7ec1aa
  * Merged sepol handle passing, DEBUG conversion, and memory leak
7ec1aa
    fix patches from Ivan Gyurdiev.
7ec1aa
7ec1aa
* Tue Oct 25 2005 Dan Walsh <dwalsh@redhat.com> 1.9.30-1
7ec1aa
- Upgrade to latest from NSA
7ec1aa
  * Removed processing of system.users from sepol_genusers and
7ec1aa
    dropped delusers logic.
7ec1aa
  * Removed policydb_destroy from error path of policydb_read,
7ec1aa
    since create/init/destroy/free of policydb is handled by the
7ec1aa
    caller now.
7ec1aa
  * Fixed sepol_module_package_read to handle a failed policydb_read
7ec1aa
    properly.
7ec1aa
  * Merged query/exists and count patches from Ivan Gyurdiev.
7ec1aa
  * Merged fix for pruned types in expand code from Joshua Brindle.
7ec1aa
  * Merged new module package format code from Joshua Brindle.
7ec1aa
7ec1aa
7ec1aa
* Mon Oct 24 2005 Dan Walsh <dwalsh@redhat.com> 1.9.26-1
7ec1aa
- Upgrade to latest from NSA
7ec1aa
  * Merged context interface cleanup, record conversion code, 
7ec1aa
    key passing, and bug fix patches from Ivan Gyurdiev.               
7ec1aa
7ec1aa
* Fri Oct 21 2005 Dan Walsh <dwalsh@redhat.com> 1.9.25-1
7ec1aa
- Upgrade to latest from NSA
7ec1aa
  * Merged users cleanup patch from Ivan Gyurdiev.
7ec1aa
  * Merged user record memory leak fix from Ivan Gyurdiev.
7ec1aa
  * Merged reorganize users patch from Ivan Gyurdiev.
7ec1aa
7ec1aa
- Need to check for /sbin/telinit
7ec1aa
7ec1aa
* Tue Oct 18 2005 Dan Walsh <dwalsh@redhat.com> 1.9.23-1
7ec1aa
- Upgrade to latest from NSA
7ec1aa
  * Added check flag to expand_module() to control assertion
7ec1aa
    and hierarchy checking on expansion.
7ec1aa
  * Reworked check_assertions() and hierarchy_check_constraints()
7ec1aa
    to take handles and use callback-based error reporting.
7ec1aa
  * Changed expand_module() to call check_assertions() and 
7ec1aa
    hierarchy_check_constraints() prior to returning the expanded
7ec1aa
    policy.
7ec1aa
7ec1aa
* Tue Oct 18 2005 Dan Walsh <dwalsh@redhat.com> 1.9.21-1
7ec1aa
- Upgrade to latest from NSA
7ec1aa
  * Changed sepol_module_package_set_file_contexts to copy the
7ec1aa
    file contexts data since it is internally managed.
7ec1aa
  * Added sepol_policy_file_set_handle interface to associate
7ec1aa
    a handle with a policy file.
7ec1aa
  * Added handle argument to policydb_from_image/to_image.
7ec1aa
  * Added sepol_module_package_set_file_contexts interface.
7ec1aa
  * Dropped sepol_module_package_create_file interface.
7ec1aa
  * Reworked policydb_read/write, policydb_from_image/to_image, 
7ec1aa
    and sepol_module_package_read/write to use callback-based error
7ec1aa
    reporting system rather than DEBUG.  
7ec1aa
7ec1aa
* Tue Oct 18 2005 Dan Walsh <dwalsh@redhat.com> 1.9.19-1
7ec1aa
- Upgrade to latest from NSA
7ec1aa
  * Reworked link_packages, link_modules, and expand_module to use
7ec1aa
  callback-based error reporting system rather than error buffering.
7ec1aa
7ec1aa
* Sat Oct 15 2005 Dan Walsh <dwalsh@redhat.com> 1.9.18-1
7ec1aa
- Upgrade to latest from NSA
7ec1aa
  * Merged conditional expression mapping fix in the module linking
7ec1aa
  code from Joshua Brindle.
7ec1aa
7ec1aa
* Fri Oct 14 2005 Dan Walsh <dwalsh@redhat.com> 1.9.17-2
7ec1aa
- Tell init to reexec itself in post script
7ec1aa
7ec1aa
* Mon Oct 10 2005 Dan Walsh <dwalsh@redhat.com> 1.9.17-1
7ec1aa
- Upgrade to latest from NSA
7ec1aa
  * Hid sepol_module_package type definition, and added get interfaces.
7ec1aa
  * Merged new callback-based error reporting system from Ivan
7ec1aa
  Gyurdiev.
7ec1aa
  * Merged support for require blocks inside conditionals from
7ec1aa
  Joshua Brindle (Tresys).
7ec1aa
7ec1aa
* Mon Oct 10 2005 Dan Walsh <dwalsh@redhat.com> 1.9.14.1-1
7ec1aa
- Upgrade to latest from NSA
7ec1aa
  * Fixed use of policydb_from_image/to_image to ensure proper
7ec1aa
  init of policydb.
7ec1aa
  * Isolated policydb internal headers under <sepol/policydb/*.h>.
7ec1aa
  These headers should only be used by users of the static libsepol.
7ec1aa
  Created new <sepol/policydb.h> with new public types and interfaces
7ec1aa
  for shared libsepol.
7ec1aa
  Created new <sepol/module.h> with public types and interfaces moved
7ec1aa
  or wrapped from old module.h, link.h, and expand.h, adjusted for
7ec1aa
  new public types for policydb and policy_file.
7ec1aa
  Added public interfaces to libsepol.map.
7ec1aa
  Some implementation changes visible to users of the static libsepol:
7ec1aa
  1) policydb_read no longer calls policydb_init.
7ec1aa
  Caller must do so first.
7ec1aa
  2) policydb_init no longer takes policy_type argument.
7ec1aa
  Caller must set policy_type separately.
7ec1aa
  3) expand_module automatically enables the global branch.  
7ec1aa
  Caller no longer needs to do so.
7ec1aa
  4) policydb_write uses the policy_type and policyvers from the 
7ec1aa
  policydb itself, and sepol_set_policyvers() has been removed.
7ec1aa
7ec1aa
* Fri Oct 7 2005 Dan Walsh <dwalsh@redhat.com> 1.9.12-1
7ec1aa
- Upgrade to latest from NSA
7ec1aa
  * Merged function renaming and static cleanup from Ivan Gyurdiev.
7ec1aa
7ec1aa
* Thu Oct 6 2005 Dan Walsh <dwalsh@redhat.com> 1.9.11-1
7ec1aa
- Upgrade to latest from NSA
7ec1aa
  * Merged bug fix for check_assertions handling of no assertions
7ec1aa
  from Joshua Brindle (Tresys).
7ec1aa
  
7ec1aa
* Tue Oct 4 2005 Dan Walsh <dwalsh@redhat.com> 1.9.10-1
7ec1aa
- Upgrade to latest from NSA
7ec1aa
  * Merged iterate patch from Ivan Gyurdiev.
7ec1aa
  * Merged MLS in modules patch from Joshua Brindle (Tresys).
7ec1aa
7ec1aa
* Mon Oct 3 2005 Dan Walsh <dwalsh@redhat.com> 1.9.8-1
7ec1aa
- Upgrade to latest from NSA
7ec1aa
  * Merged pointer typedef elimination patch from Ivan Gyurdiev.
7ec1aa
  * Merged user list function, new mls functions, and bugfix patch
7ec1aa
    from Ivan Gyurdiev.
7ec1aa
7ec1aa
* Wed Sep 28 2005 Dan Walsh <dwalsh@redhat.com> 1.9.7-1
7ec1aa
- Upgrade to latest from NSA
7ec1aa
  * Merged sepol_get_num_roles fix from Karl MacMillan (Tresys).
7ec1aa
7ec1aa
* Fri Sep 23 2005 Dan Walsh <dwalsh@redhat.com> 1.9.6-1
7ec1aa
- Upgrade to latest from NSA
7ec1aa
  * Merged bug fix patches from Joshua Brindle (Tresys).
7ec1aa
7ec1aa
* Wed Sep 21 2005 Dan Walsh <dwalsh@redhat.com> 1.9.5-1
7ec1aa
- Upgrade to latest from NSA
7ec1aa
  * Merged boolean record and memory leak fix patches from Ivan
7ec1aa
  Gyurdiev.
7ec1aa
7ec1aa
* Tue Sep 20 2005 Dan Walsh <dwalsh@redhat.com> 1.9.4-1
7ec1aa
- Upgrade to latest from NSA
7ec1aa
  * Merged interface record patch from Ivan Gyurdiev.
7ec1aa
7ec1aa
* Thu Sep 15 2005 Dan Walsh <dwalsh@redhat.com> 1.9.3-1
7ec1aa
- Upgrade to latest from NSA
7ec1aa
  * Merged fix for sepol_enable/disable_debug from Ivan
7ec1aa
  Gyurdiev.
7ec1aa
7ec1aa
* Wed Sep 14 2005 Dan Walsh <dwalsh@redhat.com> 1.9.1-2
7ec1aa
- Upgrade to latest from NSA
7ec1aa
  * Merged stddef.h patch and debug conversion patch from 
7ec1aa
  Ivan Gyurdiev.
7ec1aa
7ec1aa
* Mon Sep 12 2005 Dan Walsh <dwalsh@redhat.com> 1.9.1-1
7ec1aa
- Upgrade to latest from NSA
7ec1aa
  * Fixed expand_avtab and expand_cond_av_list to keep separate
7ec1aa
  entries with identical keys but different enabled flags.
7ec1aa
  * Updated version for release.
7ec1aa
7ec1aa
* Thu Sep 1 2005 Dan Walsh <dwalsh@redhat.com> 1.7.24-1
7ec1aa
- Upgrade to latest from NSA
7ec1aa
  * Fixed symtab_insert return value for duplicate declarations.
7ec1aa
  * Merged fix for memory error in policy_module_destroy from
7ec1aa
  Jason Tang (Tresys).
7ec1aa
7ec1aa
* Mon Aug 29 2005 Dan Walsh <dwalsh@redhat.com> 1.7.22-1
7ec1aa
- Upgrade to latest from NSA
7ec1aa
  * Merged fix for memory leak in sepol_context_to_sid from
7ec1aa
  Jason Tang (Tresys).
7ec1aa
  * Merged fixes for resource leaks on error paths and
7ec1aa
    change to scope_destroy from Joshua Brindle (Tresys).
7ec1aa
7ec1aa
* Tue Aug 23 2005 Dan Walsh <dwalsh@redhat.com> 1.7.20-1
7ec1aa
- Upgrade to latest from NSA
7ec1aa
  * Merged more fixes for resource leaks on error paths 
7ec1aa
    from Serge Hallyn (IBM).  Bugs found by Coverity. 
7ec1aa
7ec1aa
* Fri Aug 19 2005 Dan Walsh <dwalsh@redhat.com> 1.7.19-1
7ec1aa
- Upgrade to latest from NSA
7ec1aa
  * Changed to treat all type conflicts as fatal errors.
7ec1aa
  * Merged several error handling fixes from 
7ec1aa
    Serge Hallyn (IBM).  Bugs found by Coverity.  
7ec1aa
7ec1aa
* Mon Aug 15 2005 Dan Walsh <dwalsh@redhat.com> 1.7.17-1
7ec1aa
- Upgrade to latest from NSA
7ec1aa
  * Fixed several memory leaks found by valgrind.
7ec1aa
7ec1aa
* Sun Aug 14 2005 Dan Walsh <dwalsh@redhat.com> 1.7.15-1
7ec1aa
- Upgrade to latest from NSA
7ec1aa
  * Fixed empty list test in cond_write_av_list.  Bug found by
7ec1aa
    Coverity, reported by Serge Hallyn (IBM).
7ec1aa
  * Merged patch to policydb_write to check errors 
7ec1aa
    when writing the type->attribute reverse map from
7ec1aa
    Serge Hallyn (IBM).  Bug found by Coverity.
7ec1aa
  * Fixed policydb_destroy to properly handle NULL type_attr_map
7ec1aa
    or attr_type_map.
7ec1aa
7ec1aa
* Sat Aug 13 2005 Dan Walsh <dwalsh@redhat.com> 1.7.14-1
7ec1aa
- Upgrade to latest from NSA
7ec1aa
  * Fixed empty list test in cond_write_av_list.  Bug found by
7ec1aa
    Coverity, reported by Serge Hallyn (IBM).
7ec1aa
  * Merged patch to policydb_write to check errors 
7ec1aa
    when writing the type->attribute reverse map from
7ec1aa
    Serge Hallyn (IBM).  Bug found by Coverity.
7ec1aa
  * Fixed policydb_destroy to properly handle NULL type_attr_map
7ec1aa
    or attr_type_map.
7ec1aa
7ec1aa
7ec1aa
* Thu Aug 11 2005 Dan Walsh <dwalsh@redhat.com> 1.7.13-1
7ec1aa
- Upgrade to latest from NSA
7ec1aa
  * Improved memory use by SELinux by both reducing the avtab 
7ec1aa
    node size and reducing the number of avtab nodes (by not
7ec1aa
    expanding attributes in TE rules when possible).  Added
7ec1aa
    expand_avtab and expand_cond_av_list functions for use by
7ec1aa
    assertion checker, hierarchy checker, compatibility code,
7ec1aa
    and dispol.  Added new inline ebitmap operators and converted
7ec1aa
    existing users of ebitmaps to the new operators for greater 
7ec1aa
    efficiency.
7ec1aa
    Note:  The binary policy format version has been incremented to 
7ec1aa
    version 20 as a result of these changes.
7ec1aa
7ec1aa
* Thu Aug 11 2005 Dan Walsh <dwalsh@redhat.com> 1.7.12-1
7ec1aa
- Upgrade to latest from NSA
7ec1aa
  * Fixed bug in constraint_node_clone handling of name sets.
7ec1aa
7ec1aa
* Wed Aug 10 2005 Dan Walsh <dwalsh@redhat.com> 1.7.11-1
7ec1aa
- Upgrade to latest from NSA
7ec1aa
  * Fix range_trans_clone to map the type values properly.
7ec1aa
7ec1aa
* Fri Aug 5 2005 Dan Walsh <dwalsh@redhat.com> 1.7.10-1
7ec1aa
- Upgrade to latest from NSA
7ec1aa
  * Merged patch to move module read/write code from libsemanage
7ec1aa
    to libsepol from Jason Tang (Tresys).
7ec1aa
7ec1aa
* Tue Aug 2 2005 Dan Walsh <dwalsh@redhat.com> 1.7.9-1
7ec1aa
- Upgrade to latest from NSA
7ec1aa
  * Enabled further compiler warning flags and fixed them.
7ec1aa
  * Merged user, context, port records patch from Ivan Gyurdiev.
7ec1aa
  * Merged key extract function patch from Ivan Gyurdiev.
7ec1aa
  * Merged mls_context_to_sid bugfix from Ivan Gyurdiev.
7ec1aa
7ec1aa
* Wed Jul 27 2005 Dan Walsh <dwalsh@redhat.com> 1.7.6-2
7ec1aa
- Fix MLS Free 
7ec1aa
7ec1aa
* Mon Jul 25 2005 Dan Walsh <dwalsh@redhat.com> 1.7.6-1
7ec1aa
- Upgrade to latest from NSA
7ec1aa
  * Merged context reorganization, memory leak fixes, 
7ec1aa
    port and interface loading, replacements for genusers and
7ec1aa
    genbools, debug traceback, and bugfix patches from Ivan Gyurdiev.
7ec1aa
  * Merged uninitialized variable bugfix from Dan Walsh.
7ec1aa
7ec1aa
* Mon Jul 25 2005 Dan Walsh <dwalsh@redhat.com> 1.7.5-2
7ec1aa
- Fix unitialized variable problem
7ec1aa
7ec1aa
* Mon Jul 18 2005 Dan Walsh <dwalsh@redhat.com> 1.7.5-1
7ec1aa
- Upgrade to latest from NSA
7ec1aa
  * Merged debug support, policydb conversion functions from Ivan Gyurdiev (Red Hat).
7ec1aa
  * Removed genpolbools and genpolusers utilities.
7ec1aa
  * Merged hierarchy check fix from Joshua Brindle (Tresys).
7ec1aa
7ec1aa
7ec1aa
7ec1aa
* Thu Jul 14 2005 Dan Walsh <dwalsh@redhat.com> 1.7.3-1
7ec1aa
- Upgrade to latest from NSA
7ec1aa
  * Merged header file cleanup and memory leak fix from Ivan Gyurdiev (Red Hat).
7ec1aa
  * Merged genbools debugging message cleanup from Red Hat.
7ec1aa
7ec1aa
* Thu Jul 7 2005 Dan Walsh <dwalsh@redhat.com> 1.7-2
7ec1aa
- Remove genpolbools and genpoluser 
7ec1aa
7ec1aa
* Thu Jul 7 2005 Dan Walsh <dwalsh@redhat.com> 1.7-1
7ec1aa
- Upgrade to latest from NSA
7ec1aa
  * Merged loadable module support from Tresys Technology.
7ec1aa
7ec1aa
* Wed Jun 29 2005 Dan Walsh <dwalsh@redhat.com> 1.6-1
7ec1aa
- Upgrade to latest from NSA
7ec1aa
  * Updated version for release.
7ec1aa
7ec1aa
* Tue May 17 2005 Dan Walsh <dwalsh@redhat.com> 1.5.10-1
7ec1aa
- Fix reset booleans warning message
7ec1aa
- Upgrade to latest from NSA
7ec1aa
  * License changed to LGPL v2.1, see COPYING.
7ec1aa
7ec1aa
* Tue May 17 2005 Dan Walsh <dwalsh@redhat.com> 1.5.9-2
7ec1aa
- Upgrade to latest from NSA
7ec1aa
  * Added sepol_genbools_policydb and sepol_genusers_policydb for
7ec1aa
    audit2why.
7ec1aa
7ec1aa
* Mon May 16 2005 Dan Walsh <dwalsh@redhat.com> 1.5.8-2
7ec1aa
- export sepol_context_to_sid
7ec1aa
7ec1aa
* Mon May 16 2005 Dan Walsh <dwalsh@redhat.com> 1.5.8-1
7ec1aa
- Upgrade to latest from NSA
7ec1aa
  * Added sepol_ prefix to Flask types to avoid 
7ec1aa
    namespace collision with libselinux.
7ec1aa
7ec1aa
* Fri May 13 2005 Dan Walsh <dwalsh@redhat.com> 1.5.7-1
7ec1aa
- Upgrade to latest from NSA
7ec1aa
  * Added sepol_compute_av_reason() for audit2why.
7ec1aa
7ec1aa
* Tue Apr 26 2005 Dan Walsh <dwalsh@redhat.com> 1.5.6-1
7ec1aa
- Upgrade to latest from NSA
7ec1aa
  * Fixed bug in role hierarchy checker.
7ec1aa
7ec1aa
* Mon Apr 25 2005 Dan Walsh <dwalsh@redhat.com> 1.5.5-2
7ec1aa
- Fixes found via intel compiler
7ec1aa
7ec1aa
* Thu Apr 14 2005 Dan Walsh <dwalsh@redhat.com> 1.5.5-1
7ec1aa
- Update from NSA
7ec1aa
7ec1aa
* Tue Mar 29 2005 Dan Walsh <dwalsh@redhat.com> 1.5.3-1
7ec1aa
- Update from NSA
7ec1aa
7ec1aa
* Thu Mar 24 2005 Dan Walsh <dwalsh@redhat.com> 1.5.2-2
7ec1aa
- Handle booleans.local
7ec1aa
7ec1aa
* Thu Mar 17 2005 Dan Walsh <dwalsh@redhat.com> 1.5.2-1
7ec1aa
- Update to latest from NSA
7ec1aa
  * Added man page for sepol_check_context.
7ec1aa
  * Added man page for sepol_genusers function.
7ec1aa
  * Merged man pages for genpolusers and chkcon from Manoj Srivastava.
7ec1aa
7ec1aa
* Thu Mar 10 2005 Dan Walsh <dwalsh@redhat.com> 1.4-1
7ec1aa
- Update to latest from NSA
7ec1aa
7ec1aa
* Tue Mar 8 2005 Dan Walsh <dwalsh@redhat.com> 1.3.8-1
7ec1aa
- Update to latest from NSA
7ec1aa
        * Cleaned up error handling in sepol_genusers and sepol_genbools.
7ec1aa
7ec1aa
* Tue Mar 1 2005 Dan Walsh <dwalsh@redhat.com> 1.3.7-1
7ec1aa
- Update to latest from NSA
7ec1aa
  * Merged sepol_debug and fclose patch from Dan Walsh.
7ec1aa
7ec1aa
* Fri Feb 18 2005 Dan Walsh <dwalsh@redhat.com> 1.3.6-3
7ec1aa
- Make sure local_files file pointer is closed
7ec1aa
- Stop outputing error messages
7ec1aa
7ec1aa
* Thu Feb 17 2005 Dan Walsh <dwalsh@redhat.com> 1.3.6-1
7ec1aa
- Update to latest from NSA
7ec1aa
  * Changed sepol_genusers to also use getline and correctly handle
7ec1aa
    EOL.
7ec1aa
* Thu Feb 17 2005 Dan Walsh <dwalsh@redhat.com> 1.3.5-1
7ec1aa
- Update to latest from NSA
7ec1aa
  * Merged endianness and compute_av patches from Darrel Goeddel (TCS).
7ec1aa
  * Merged range_transition support from Darrel Goeddel (TCS).
7ec1aa
  * Added sepol_genusers function.
7ec1aa
7ec1aa
* Thu Feb 10 2005 Dan Walsh <dwalsh@redhat.com> 1.3.2-1
7ec1aa
- Update to latest from NSA
7ec1aa
  * Changed relabel Makefile target to use restorecon.
7ec1aa
7ec1aa
* Mon Feb 7 2005 Dan Walsh <dwalsh@redhat.com> 1.3.1-1
7ec1aa
- Update to latest from NSA
7ec1aa
  * Merged enhanced MLS support from Darrel Goeddel (TCS).
7ec1aa
7ec1aa
* Thu Jan 20 2005 Dan Walsh <dwalsh@redhat.com> 1.2.1.1-1
7ec1aa
- Update to latest from NSA
7ec1aa
  * Merged build fix patch from Manoj Srivastava.
7ec1aa
7ec1aa
* Thu Nov 4 2004 Dan Walsh <dwalsh@redhat.com> 1.2.1-1
7ec1aa
- Update to latest from NSA
7ec1aa
7ec1aa
* Mon Aug 30 2004 Dan Walsh <dwalsh@redhat.com> 1.1.1-2
7ec1aa
- Add optargs for build
7ec1aa
7ec1aa
* Sun Aug 22 2004 Dan Walsh <dwalsh@redhat.com> 1.1.1-1
7ec1aa
- New version from NSA
7ec1aa
7ec1aa
* Fri Aug 20 2004 Colin Walters <walters@redhat.com> 1.0-2
7ec1aa
- Apply Stephen's chkcon patch
7ec1aa
7ec1aa
* Thu Aug 19 2004 Colin Walters <walters@redhat.com> 1.0-1
7ec1aa
- New upstream version
7ec1aa
7ec1aa
* Mon Aug 16 2004 Dan Walsh <dwalsh@redhat.com> 0.4.2-1
7ec1aa
- Newversion from upstream implementing stringcase compare
7ec1aa
7ec1aa
* Fri Aug 13 2004 Bill Nottingham <notting@redhat.com> 0.4.1-2
7ec1aa
- ldconfig tweaks
7ec1aa
7ec1aa
* Thu Aug 12 2004 Dan Walsh <dwalsh@redhat.com> 0.4.1-1
7ec1aa
- Ignore case of true/false
7ec1aa
7ec1aa
* Wed Aug 11 2004 Dan Walsh <dwalsh@redhat.com> 0.4.1-1
7ec1aa
- New version from NSA
7ec1aa
7ec1aa
* Tue Aug 10 2004 Dan Walsh <dwalsh@redhat.com> 0.3.1-1
7ec1aa
- Initial version
7ec1aa
- Created by Stephen Smalley <sds@epoch.ncsc.mil> 
7ec1aa
7ec1aa