Blame SPECS/libsemanage.spec

ef9003
%define libsepolver 2.9-1
ef9003
%define libselinuxver 2.9-1
753371
753371
Summary: SELinux binary policy manipulation library 
753371
Name: libsemanage
ef9003
Version: 2.9
146e30
Release: 9%{?dist}
753371
License: LGPLv2+
ef9003
Source0: https://github.com/SELinuxProject/selinux/releases/download/20190315/libsemanage-2.9.tar.gz
ef9003
# i=1; for j in 00*patch; do printf "Patch%04d: %s\n" $i $j; i=$((i+1));done
ef9003
Patch0001: 0001-libsemanage-Fix-RESOURCE_LEAK-and-USE_AFTER_FREE-cov.patch
dde0f0
Patch0002: 0002-libsemanage-Add-support-for-DCCP-and-SCTP-protocols.patch
988944
Patch0003: 0003-libsemanage-fsync-final-files-before-rename.patch
b921e1
Patch0004: 0004-libsemanage-sync-filesystem-with-sandbox.patch
83eaee
Patch0005: 0005-Trivial-style-fixes.patch
83eaee
Patch0006: 0006-libsemanage-Free-contents-of-modkey-in-semanage_dire.patch
83eaee
Patch0007: 0007-libsemanage-Fix-USE_AFTER_FREE-CWE-672-in-semanage_d.patch
83eaee
Patch0008: 0008-libsemanage-add-missing-include-to-boolean_record.c.patch
83eaee
Patch0009: 0009-semodule-libsemanage-move-module-hashing-into-libsem.patch
83eaee
Patch0010: 0010-libsemanage-move-compressed-file-handling-into-a-sep.patch
83eaee
Patch0011: 0011-libsemanage-clean-up-semanage_direct_commit-a-bit.patch
83eaee
Patch0012: 0012-libsemanage-optionally-rebuild-policy-when-modules-a.patch
146e30
Patch0013: 0013-libsemanage-always-write-kernel-policy-when-check_ex.patch
753371
URL: https://github.com/SELinuxProject/selinux/wiki
753371
Source1: semanage.conf
753371
753371
BuildRequires: gcc
753371
BuildRequires: libselinux-devel >= %{libselinuxver} swig
753371
BuildRequires: libsepol-devel >= %{libsepolver} 
753371
BuildRequires: audit-libs-devel
753371
BuildRequires: bison flex bzip2-devel
753371
753371
BuildRequires: python3
753371
BuildRequires: python3-devel
753371
753371
Requires: bzip2-libs audit-libs
753371
Requires: libselinux%{?_isa} >= %{libselinuxver}
753371
753371
%description
753371
Security-enhanced Linux is a feature of the Linux® kernel and a number
753371
of utilities with enhanced security functionality designed to add
753371
mandatory access controls to Linux.  The Security-enhanced Linux
753371
kernel contains new architectural components originally developed to
753371
improve the security of the Flask operating system. These
753371
architectural components provide general support for the enforcement
753371
of many kinds of mandatory access control policies, including those
753371
based on the concepts of Type Enforcement®, Role-based Access
753371
Control, and Multi-level Security.
753371
753371
libsemanage provides an API for the manipulation of SELinux binary policies.
753371
It is used by checkpolicy (the policy compiler) and similar tools, as well
753371
as by programs like load_policy that need to perform specific transformations
753371
on binary policies such as customizing policy boolean settings.
753371
753371
%package static
753371
Summary: Static library used to build policy manipulation tools
753371
Requires: libsemanage-devel%{_isa} = %{version}-%{release}
753371
753371
%description static
753371
The semanage-static package contains the static libraries 
753371
needed for developing applications that manipulate binary policies. 
753371
753371
%package devel
753371
Summary: Header files and libraries used to build policy manipulation tools
753371
Requires: %{name}%{?_isa} = %{version}-%{release}
753371
753371
%description devel
753371
The semanage-devel package contains the libraries and header files
753371
needed for developing applications that manipulate binary policies. 
753371
753371
%package -n python3-libsemanage
753371
Summary: semanage python 3 bindings for libsemanage
753371
Requires: %{name}%{?_isa} = %{version}-%{release}
753371
Requires: libselinux-python3
753371
%{?python_provide:%python_provide python3-libsemanage}
753371
# Remove before F30
753371
Provides: %{name}-python3 = %{version}-%{release}
753371
Provides: %{name}-python3%{?_isa} = %{version}-%{release}
753371
Obsoletes: %{name}-python3 < %{version}-%{release}
753371
753371
%description -n python3-libsemanage
753371
The libsemanage-python3 package contains the python 3 bindings for developing
753371
SELinux management applications.
753371
753371
%prep
ef9003
%autosetup -n libsemanage-%{version} -p 2
753371
753371
753371
%build
ef9003
%set_build_flags
753371
753371
# To support building the Python wrapper against multiple Python runtimes
753371
# Define a function, for how to perform a "build" of the python wrapper against
753371
# a specific runtime:
753371
BuildPythonWrapper() {
753371
  BinaryName=$1
753371
753371
  # Perform the build from the upstream Makefile:
753371
  make \
753371
    PYTHON=$BinaryName \
ef9003
    LIBDIR="%{_libdir}" SHLIBDIR="%{_lib}" \
753371
    pywrap
753371
}
753371
753371
make clean
ef9003
make swigify
ef9003
make LIBDIR="%{_libdir}" SHLIBDIR="%{_lib}" all
753371
753371
BuildPythonWrapper \
753371
  %{__python3}
753371
753371
%install
753371
InstallPythonWrapper() {
753371
  BinaryName=$1
753371
753371
  make \
753371
    PYTHON=$BinaryName \
753371
    DESTDIR="${RPM_BUILD_ROOT}" LIBDIR="%{_libdir}" SHLIBDIR="%{_libdir}" \
753371
    install-pywrap
753371
}
753371
753371
mkdir -p ${RPM_BUILD_ROOT}%{_libdir}
753371
mkdir -p ${RPM_BUILD_ROOT}%{_includedir} 
753371
mkdir -p ${RPM_BUILD_ROOT}%{_sharedstatedir}/selinux
753371
mkdir -p ${RPM_BUILD_ROOT}%{_sharedstatedir}/selinux/tmp
753371
make DESTDIR="${RPM_BUILD_ROOT}" LIBDIR="%{_libdir}" SHLIBDIR="%{_libdir}" install
753371
753371
InstallPythonWrapper \
753371
  %{__python3} \
753371
  $(python3-config --extension-suffix)
753371
  
753371
cp %{SOURCE1} ${RPM_BUILD_ROOT}/etc/selinux/semanage.conf
753371
ln -sf  %{_libdir}/libsemanage.so.1 ${RPM_BUILD_ROOT}/%{_libdir}/libsemanage.so
753371
753371
pathfix.py -i "%{__python3} -E" -p %{buildroot}%{_libexecdir}/selinux/semanage_migrate_store
753371
rm %{buildroot}%{_libexecdir}/selinux/semanage_migrate_store~
753371
753371
%files
753371
%{!?_licensedir:%global license %%doc}
753371
%license COPYING
753371
%dir %{_sysconfdir}/selinux
753371
%config(noreplace) %{_sysconfdir}/selinux/semanage.conf
753371
%{_libdir}/libsemanage.so.1
753371
%{_mandir}/man5/*
ef9003
%{_mandir}/ru/man5/*
753371
%dir %{_libexecdir}/selinux
753371
%dir %{_sharedstatedir}/selinux
753371
%dir %{_sharedstatedir}/selinux/tmp
753371
753371
%ldconfig_scriptlets
753371
753371
%files static
753371
%{_libdir}/libsemanage.a
753371
753371
%files devel
753371
%{_libdir}/libsemanage.so
753371
%{_libdir}/pkgconfig/libsemanage.pc
753371
%dir %{_includedir}/semanage
753371
%{_includedir}/semanage/*.h
753371
%{_mandir}/man3/*
753371
753371
%files -n python3-libsemanage
753371
%{python3_sitearch}/*.so
753371
%{python3_sitearch}/semanage.py*
753371
%{python3_sitearch}/__pycache__/semanage*
753371
%{_libexecdir}/selinux/semanage_migrate_store
753371
753371
%changelog
146e30
* Tue Oct 11 2022 Vit Mojzis <vmojzis@redhat.com> - 2.9-9
146e30
- always write kernel policy when check_ext_changes is specified (#2129139)
146e30
83eaee
* Tue Feb 22 2022 Vit Mojzis <vmojzis@redhat.com> - 2.9-8
83eaee
- Bump release to get around OSCI issues
83eaee
83eaee
* Thu Feb 17 2022 Vit Mojzis <vmojzis@redhat.com> - 2.9-7
83eaee
- Trivial style fixes
83eaee
- Free contents of modkey in semanage_direct_remove
83eaee
- Fix USE_AFTER_FREE (CWE-672) in semanage_direct_write_langext()
83eaee
- add missing include to boolean_record.c
83eaee
- move module hashing into libsemanage
83eaee
- move compressed file handling into a separate object
83eaee
- clean up semanage_direct_commit() a bit
83eaee
- optionally rebuild policy when modules are changed externally
83eaee
- add command-line option to detect module changes (#2049186)
83eaee
b921e1
* Mon Feb  1 2021 Petr Lautrbach <plautrba@redhat.com> - 2.9-6
b921e1
- sync filesystem with sandbox (#1913224)
b921e1
b921e1
* Mon Dec 21 2020 Petr Lautrbach <plautrba@redhat.com> - 2.9-5
b921e1
- Revert "genhomedircon: check usepasswd" (rhbz#1871786)
b921e1
- semanage.conf - improve usepasswd=False explanation (rhbz#1871786)
b921e1
- semanage.conf - expand list of ignoredirs (rhbz#1871786)
b921e1
b921e1
* Sun Nov 22 2020 Vit Mojzis <vmojzis@redhat.com> - 2.9-4
b921e1
- genhomedircon: check usepasswd (rhbz#1871786)
b921e1
988944
* Mon Jun 29 2020 Vit Mojzis <vmojzis@redhat.com> - 2.9-3
988944
- Fsync final files before rename (#1838762)
988944
dde0f0
* Wed Nov 06 2019 Vit Mojzis <vmojzis@redhat.com> - 2.9-2
dde0f0
- Add support for DCCP and SCTP protocols (#1563742)
dde0f0
ef9003
* Mon Mar 18 2019 Petr Lautrbach <plautrba@redhat.com> - 2.9-1
ef9003
- SELinux userspace 2.9 release
ef9003
753371
* Thu Dec  6 2018 Petr Lautrbach <plautrba@redhat.com> - 2.8-5
753371
- genhomedircon - improve handling large groups
753371
753371
* Thu Nov  8 2018 Petr Lautrbach <plautrba@redhat.com> - 2.8-4
753371
- Fix RESOURCE_LEAK and USE_AFTER_FREE coverity scan defects
753371
753371
* Mon Sep 17 2018 Petr Lautrbach <plautrba@redhat.com> - 2.8-3.1
753371
- reset umask before creating directories
753371
- Include user name in ROLE_REMOVE audit events
753371
753371
* Wed Jun  6 2018 Petr Lautrbach <plautrba@workstation> - 2.8-2
753371
- Don't build the Python 2 subpackage (#1567359)
753371
753371
* Fri May 25 2018 Petr Lautrbach <plautrba@redhat.com> - 2.8-1
753371
- SELinux userspace 2.8 release
753371
753371
* Mon May 14 2018 Petr Lautrbach <plautrba@redhat.com> - 2.8-0.rc3.1
753371
- SELinux userspace 2.8-rc3 release candidate
753371
753371
* Fri May  4 2018 Petr Lautrbach <plautrba@redhat.com> - 2.8-0.rc2.1
753371
- SELinux userspace 2.8-rc2 release candidate
753371
753371
* Mon Apr 23 2018 Petr Lautrbach <plautrba@redhat.com> - 2.8-0.rc1.1
753371
- SELinux userspace 2.8-rc1 release candidate
753371
753371
* Wed Mar 21 2018 Petr Lautrbach <plautrba@redhat.com> - 2.7-12
753371
- build: Replace PYSITEDIR with PYTHONLIBDIR
753371
- direct_api.c: Fix iterating over array (#1557468)
753371
753371
* Fri Mar 16 2018 Petr Lautrbach <plautrba@workstation> - 2.7-11
753371
- Revert "remove access() check to make setuid programs work" (#1557468)
753371
753371
* Tue Mar 13 2018 Petr Lautrbach <plautrba@redhat.com> - 2.7-10
753371
- properly check return value of iterate function
753371
- Use umask(0077) for fopen() write operations
753371
- Return commit number if save-previous false
753371
- Allow tmp files to be kept if a compile fails
753371
- build: follow standard semantics for DESTDIR and PREFIX
753371
- Improve warning for installing disabled module
753371
- silence clang static analyzer report
753371
- remove access() check to make setuid programs work
753371
753371
* Fri Feb 09 2018 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 2.7-9
753371
- Escape macros in %%changelog
753371
753371
* Wed Feb 07 2018 Fedora Release Engineering <releng@fedoraproject.org> - 2.7-8
753371
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
753371
753371
* Sat Feb 03 2018 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 2.7-7
753371
- Switch to %%ldconfig_scriptlets
753371
753371
* Tue Jan 09 2018 Iryna Shcherbina <ishcherb@redhat.com> - 2.7-6
753371
- Update Python 2 dependency declarations to new packaging standards
753371
  (See https://fedoraproject.org/wiki/FinalizingFedoraSwitchtoPython3)
753371
753371
* Wed Nov 22 2017 Petr Lautrbach <plautrba@redhat.com> - 2.7-5
753371
- free genhomedircon fallback user
753371
- Rebuild with libsepol-2.7-3 and libselinux-2.7-6
753371
753371
* Fri Oct 20 2017 Petr Lautrbach <plautrba@redhat.com> - 2.7-4
753371
- Add support for listing fcontext.homedirs file (#1409813)
753371
753371
* Sun Aug 20 2017 Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> - 2.7-3
753371
- Add Provides for the old names without %%_isa
753371
753371
* Thu Aug 10 2017 Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> - 2.7-2
753371
- Python 2 binary package renamed to python2-libsemanage
753371
  See https://fedoraproject.org/wiki/FinalizingFedoraSwitchtoPython3
753371
- Python 3 binary package renamed to python3-libsemanage
753371
753371
* Mon Aug 07 2017 Petr Lautrbach <plautrba@redhat.com> - 2.7-1
753371
- Update to upstream release 2017-08-04
753371
- Use 'sefcontext_compile -r' when it's run during SELinux policy build
753371
753371
* Thu Aug 03 2017 Fedora Release Engineering <releng@fedoraproject.org> - 2.6-6
753371
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild
753371
753371
* Wed Jul 26 2017 Fedora Release Engineering <releng@fedoraproject.org> - 2.6-5
753371
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
753371
753371
* Fri Apr 28 2017 Petr Lautrbach <plautrba@redhat.com> - 2.6-4
753371
- Follow upstream and rename _semanage.so to _semanage.cpython-36m-x86_64-linux-gnu.so
753371
753371
* Tue Apr 18 2017 Petr Lautrbach <plautrba@redhat.com> - 2.6-3
753371
- Do not list duplicate port entries after setting a boolean (#1439875)
753371
753371
* Thu Mar 02 2017 Petr Lautrbach <plautrba@redhat.com> - 2.6-2
753371
- Fix FTBFS - fatal error (#1427903)
753371
753371
* Mon Feb 20 2017 Petr Lautrbach <plautrba@redhat.com> - 2.6-1.1
753371
- Update to upstream release 2016-10-14
753371
753371
* Fri Feb 10 2017 Fedora Release Engineering <releng@fedoraproject.org> - 2.5-10
753371
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
753371
753371
* Fri Dec 09 2016 Charalampos Stratakis <cstratak@redhat.com> - 2.5-9
753371
- Rebuild for Python 3.6
753371
753371
* Mon Oct 03 2016 Petr Lautrbach <plautrba@redhat.com> 2.5-8
753371
- Fixes bug preventing the installation of base modules
753371
- make distclean target work
753371
- Do not always print a module name warning
753371
- Use pp module name instead of filename when installing module
753371
- tests: Do not force using gcc
753371
- genhomedircon: remove hardcoded refpolicy strings
753371
- genhomedircon: add support for %%group syntax
753371
- genhomedircon: generate contexts for logins mapped to the default user
753371
- Validate and compile file contexts before installing
753371
- Swap tcp and udp protocol numbers
753371
753371
* Mon Aug 01 2016 Petr Lautrbach <plautrba@redhat.com> 2.5-7
753371
- Rebuilt with libsepol-2.5-9 and libselinux-2.5-11
753371
753371
* Tue Jul 19 2016 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.5-6
753371
- https://fedoraproject.org/wiki/Changes/Automatic_Provides_for_Python_RPM_Packages
753371
753371
* Thu Jun 23 2016 Petr Lautrbach <plautrba@redhat.com> - 2.5-5
753371
- Sort object files for deterministic linking order
753371
- Support overriding Makefile RANLIB
753371
- Respect CC and PKG_CONFIG environment variable
753371
753371
* Fri May 06 2016 Petr Lautrbach <plautrba@redhat.com> - 2.5-4
753371
- Fix multiple spelling errors
753371
- genhomedircon: %%{USERID} and %%{USERNAME} support and code cleanup
753371
753371
* Mon Mar 21 2016 Petr Lautrbach <plautrba@redhat.com> - 2.5-3
753371
- Enable expand-check by default (#1319652)
753371
753371
* Sun Feb 28 2016 Petr Lautrbach <plautrba@redhat.com> 2.5-2
753371
- Use fully versioned arch-specific requires
753371
753371
* Tue Feb 23 2016 Petr Lautrbach <plautrba@redhat.com> 2.5-1
753371
- Update to upstream release 2016-02-23
753371
753371
* Sun Feb 21 2016 Petr Lautrbach <plautrba@redhat.com> 2.5-0.1.rc1
753371
- Update to upstream rc1 release 2016-01-07
753371
753371
* Thu Feb 04 2016 Fedora Release Engineering <releng@fedoraproject.org> - 2.4-6
753371
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
753371
753371
* Wed Nov 04 2015 Robert Kuska <rkuska@redhat.com> - 2.4-5
753371
- Rebuilt for Python3.5 rebuild
753371
753371
* Fri Sep 04 2015 Petr Lautrbach <plautrba@redhat.com> 2.4-4
753371
- Save homedir_template in the policy store for genhomedircon
753371
  https://bugs.gentoo.org/558686
753371
753371
* Fri Aug 14 2015 Adam Jackson <ajax@redhat.com> 2.4-3
753371
- Pass ldflags into the build so hardening works
753371
753371
* Thu Jul 30 2015 Petr Lautrbach <plautrba@redhat.com> 2.4-2
753371
- semanage_migrate_store: use /usr/bin/python3
753371
- move semanage_migrate_store script to libsemanage-python3
753371
753371
* Wed Jun 24 2015 Petr Lautrbach <plautrba@redhat.com> 2.4-0.6
753371
- Allow to use compressed modules without a compression extension
753371
753371
* Wed Jun 17 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.3-7
753371
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
753371
753371
* Tue Jun 16 2015 Petr Lautrbach <plautrba@redhat.com> 2.4-0.5
753371
- add /var/lib/selinux/tmp directory
753371
753371
* Tue May 12 2015 Petr Lautrbach <plautrba@redhat.com> 2.4-0.4
753371
- semanage_migrate_store: add -r <root> option for migrating inside chroots
753371
753371
* Mon Apr 13 2015 Petr Lautrbach <plautrba@redhat.com> 2.4-0.3
753371
- Update to upstream release 2.4
753371
753371
* Sun Aug 17 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.3-6
753371
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
753371
753371
* Wed Jul 30 2014 Miroslav Grepl <mgrepl@fedoraproject.org> - 2.3-5
753371
- Skip policy module re-link when only setting booleans.
753371
    * patch from Stephen Smalley
753371
753371
* Fri Jul 18 2014 Tom Callaway <spot@fedoraproject.org> - 2.3-4
753371
- fix license handling
753371
753371
* Sat Jun 07 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.3-3
753371
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
753371
753371
* Wed May 28 2014 Kalev Lember <kalevlember@gmail.com> - 2.3-2
753371
- Rebuilt for https://fedoraproject.org/wiki/Changes/Python_3.4
753371
753371
* Tue May 6 2014 Dan Walsh <dwalsh@redhat.com> - 2.3-1
753371
- Update to upstream 
753371
	* Fix memory leak in semanage_genhomedircon from Thomas Hurd.
753371
753371
* Sun Mar 30 2014 Dan Walsh <dwalsh@redhat.com> - 2.2-3
753371
- libsemanage: fix memory leak in semanage_genhomedircon
753371
- Patch from THomas Hurd
753371
753371
* Tue Feb 11 2014 Dan Walsh <dwalsh@redhat.com> - 2.2-2
753371
- Move semanage.conf man page from devel package to main package
753371
753371
* Thu Oct 31 2013 Dan Walsh <dwalsh@redhat.com> - 2.2-1
753371
- Update to upstream 
753371
	* Avoid duplicate list entries from Dan Walsh.
753371
	* Add audit support to libsemanage from Dan Walsh.
753371
	* Remove policy.kern and replace with symlink from Dan Walsh.
753371
	* Apply a MAX_UID check for genhomedircon from Laurent Bigonville.
753371
	* Fix man pages from Laurent Bigonville.
753371
753371
* Wed Oct 16 2013 Dan Walsh <dwalsh@redhat.com> - 2.1.10-14
753371
- Cleanup handling of missing mls_range to fix problems with useradd -Z
753371
- Fix auditing of login record changes, roles were not working correctly.
753371
Resolves: #952237
753371
753371
* Fri Oct 4 2013 Dan Walsh <dwalsh@redhat.com> - 2.1.10-13
753371
- Fix errors found by coverity
753371
Resolves: #952237
753371
753371
* Wed Sep 25 2013 Dan Walsh <dwalsh@redhat.com> - 2.1.10-12
753371
- Do not fail on missing SELinux User Record when adding login record
753371
753371
* Mon Sep 23 2013 Dan Walsh <dwalsh@redhat.com> - 2.1.10-11
753371
- Add msg to audit records
753371
753371
* Thu Sep 19 2013 Dan Walsh <dwalsh@redhat.com> - 2.1.10-10
753371
- Do not write error message to screen when looking for previous record for auditing.
753371
- Add mls_range from user record if the MLS range is not specified by the seuser add record.
753371
- Error out if seuser or mls range is not specified when adding user records
753371
753371
* Mon Sep 9 2013 Dan Walsh <dwalsh@redhat.com> - 2.1.10-9
753371
- Create symlink from policy.kern to active kernel.
753371
753371
* Fri Sep 6 2013 Dan Walsh <dwalsh@redhat.com> - 2.1.10-8
753371
- Unlink policy.kern when done to save space.
753371
753371
* Fri Jul 26 2013 Dan Walsh <dwalsh@redhat.com> - 2.1.10-7
753371
- Move handling of role audit records into the library
753371
- Patch stops semanage from removing user record while in use
753371
753371
* Tue Jul 9 2013 Dan Walsh <dwalsh@redhat.com> - 2.1.10-6
753371
- Remove dependance on selinux-policy, /etc/selinux should be owned by libsemanage, and selinux-policy can require it.
753371
753371
* Fri Jun 28 2013 Dan Walsh <dwalsh@redhat.com> - 2.1.10-5
753371
- Allways build python3 version
753371
753371
* Mon Apr 22 2013 Dan Walsh <dwalsh@redhat.com> - 2.1.10-4
753371
- 
753371
753371
* Thu Apr 11 2013 Dan Walsh <dwalsh@redhat.com> - 2.1.10-3
753371
- Fix test suite to build
753371
753371
* Thu Feb 14 2013 Dan Walsh <dwalsh@redhat.com> - 2.1.10-2
753371
- Revert some changes which are causing the wrong policy version file to be created
753371
753371
* Thu Feb 7 2013 Dan Walsh <dwalsh@redhat.com> - 2.1.10-1
753371
- Update to upstream 
753371
	* Add sefcontext_compile to compile regex everytime policy is rebuilt
753371
	* Cleanup/fix enable/disable/remove module.
753371
	* redo genhomedircon minuid
753371
	* fixes from coverity
753371
	* semanage_store: do not leak memory in semanage_exec_prog
753371
	* genhomedircon: remove useless conditional in get_home_dirs
753371
	* genhomedircon: double free in get_home_dirs
753371
	* fcontext_record: do not leak on error in semanage_fcontext_key_create
753371
	* genhomedircon: do not leak on failure in write_gen_home_dir_context
753371
	* semanage_store: do not leak fd 
753371
	* genhomedircon: do not leak shells list
753371
	* semanage_store: do not leak on strdup failure 
753371
	* semanage_store: rewrite for readability
753371
753371
* Wed Jan 16 2013 Dan Walsh <dwalsh@redhat.com> 2.1.9-4
753371
- Add selinux-policy as a requires to get /etc/selinux owned
753371
753371
* Sat Jan 5 2013 Dan Walsh <dwalsh@redhat.com> 2.1.9-3
753371
- Update to latest patches from eparis/Upstream
753371
-    libsemanage: fixes from coverity
753371
-    libsemange: redo genhomedircon minuid
753371
753371
* Wed Nov 21 2012 Dan Walsh <dwalsh@redhat.com> - 2.1.9-2
753371
- Fix handling of missing semanage permissive -d foo, not failing correctly
753371
- Previous to this fix the first module beginning with foo would get deleted.
753371
753371
* Thu Sep 13 2012 Dan Walsh <dwalsh@redhat.com> - 2.1.9-1
753371
- Update to upstream 
753371
	* libsemanage: do not set soname needlessly
753371
	* libsemanage: remove PYTHONLIBDIR and ruby equivalent
753371
	* do boolean name substitution
753371
	* Fix segfault for building standard policies.
753371
753371
* Fri Aug 03 2012 David Malcolm <dmalcolm@redhat.com> - 2.1.8-6
753371
- rebuild for https://fedoraproject.org/wiki/Features/Python_3.3
753371
753371
* Wed Aug  1 2012 David Malcolm <dmalcolm@redhat.com> - 2.1.8-5
753371
- remove rhel logic from with_python3 conditional
753371
753371
* Thu Jul 19 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.1.8-4
753371
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
753371
753371
* Fri Jul 13 2012 Dan Walsh <dwalsh@redhat.com> - 2.1.8-3
753371
- Attempt to allocate memory for selinux_binary_policy_path and free memory 
753371
- allocated by asprintf.
753371
753371
* Thu Jul 12 2012 Dan Walsh <dwalsh@redhat.com> - 2.1.8-2
753371
- Fix asprintf within an asprintf call
753371
753371
* Wed Jul 4 2012 Dan Walsh <dwalsh@redhat.com> - 2.1.8-1
753371
- Update to upstream 
753371
	* remove build warning when build swig c files
753371
	* additional makefile support for rubywrap
753371
	* ignore 80 column limit for readability
753371
	* semanage_store: fix snprintf length argument by using asprintf
753371
	* Use default semanage.conf as a fallback
753371
	* use after free in python bindings
753371
753371
* Tue May 29 2012 Dan Walsh <dwalsh@redhat.com> - 2.1.7-2
753371
- Apply patch from Sven Vermeulen to fix problem with python3 bindings.
753371
753371
* Thu Mar 29 2012 Dan Walsh <dwalsh@redhat.com> - 2.1.7-1
753371
- Update to upstream 
753371
	* Alternate path for semanage.conf
753371
	* do not link against libpython, this is considered bad in Debian
753371
	* Allow to build for several ruby version
753371
	* fallback-user-level
753371
753371
* Wed Feb 15 2012 Dan Walsh <dwalsh@redhat.com> - 2.1.6-3
753371
- Check in correct patch.
753371
753371
* Fri Jan 13 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.1.6-2
753371
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
753371
753371
* Fri Jan 6 2012 Dan Walsh <dwalsh@redhat.com> - 2.1.6-2
753371
- Add patch form Xin Ouyang to make library use private semanage.conf 
753371
753371
* Wed Dec 21 2011 Dan Walsh <dwalsh@redhat.com> - 2.1.6-1
753371
-Update to upstream
753371
	* add ignoredirs config for genhomedircon
753371
	* Fallback_user_level can be NULL if you are not using MLS
753371
753371
* Thu Dec 15 2011 Dan Walsh <dwalsh@redhat.com> - 2.1.5-4
753371
- Rebuild with latest libsepol
753371
753371
* Thu Dec 15 2011 Dan Walsh <dwalsh@redhat.com> - 2.1.5-3
753371
- Rebuild with latest libsepol
753371
753371
* Thu Dec 15 2011 Dan Walsh <dwalsh@redhat.com> - 2.1.5-2
753371
- Add support for ignoredirs param in /etc/selinux/semanage.conf
753371
753371
* Fri Nov 4 2011 Dan Walsh <dwalsh@redhat.com> - 2.1.5-1
753371
- Upgrade to upstream
753371
	* regenerate .pc on VERSION change
753371
	* maintain mode even if umask is tighter
753371
	* semanage.conf man page
753371
	* create man5dir if not exist
753371
753371
* Wed Oct 19 2011 Dan Walsh <dwalsh@redhat.com> - 2.1.4-2
753371
-    Fix handling of umask, so files get created with the correct label.
753371
753371
* Mon Sep 19 2011 Dan Walsh <dwalsh@redhat.com> - 2.1.4-2
753371
-    Add Guido Trentalancia semanage.conf man page
753371
753371
* Mon Sep 19 2011 Dan Walsh <dwalsh@redhat.com> - 2.1.4-1
753371
-Update to upstream
753371
	* Create a new preserve_tunables flag
753371
	* tree: default make target to all not
753371
	* fix semanage_store_access_check calling arguments
753371
753371
* Wed Sep 14 2011 Dan Walsh <dwalsh@redhat.com> - 2.1.3-2
753371
- Add support for preserving tunables
753371
753371
* Tue Aug 30 2011 Dan Walsh <dwalsh@redhat.com> - 2.1.3-1
753371
-Update to upstream
753371
	* python wrapper makefile changes
753371
753371
* Thu Aug 18 2011 Dan Walsh <dwalsh@redhat.com> - 2.1.2-1
753371
-Update to upstream
753371
2.1.2 2011-08-17
753371
	* print error debug info for buggy fc
753371
	* introduce semanage_set_root and friends
753371
	* throw exceptions in python rather than return
753371
	* python3 support.
753371
	* patch for MCS/MLS in user files
753371
753371
2.1.1 2011-08-01
753371
	* Remove generated files, expand .gitignore
753371
	* Use -Werror and change a few prototypes to support it
753371
753371
* Thu Jul 28 2011 Dan Walsh <dwalsh@redhat.com> - 2.1.0-1
753371
- Update to upstream
753371
	* Release, minor version bump
753371
753371
* Wed Jun 8 2011 Dan Walsh <dwalsh@redhat.com> - 2.0.46-6
753371
- More fixes for disabled modules
753371
753371
* Tue Jun 7 2011 Dan Walsh <dwalsh@redhat.com> - 2.0.46-5
753371
- Change libsemanage mechanism for handling disabled modules. Now it will only create a flag for a module 
753371
indicating the module is disabled.  MODULE.pp.disabled, it will no longer rename the module.  This way we can
753371
ship active modules in rpm.
753371
753371
* Wed Jun 1 2011 Dan Walsh <dwalsh@redhat.com> - 2.0.46-4
753371
- Add semanage_set_selinux_path, to allow semodule to work on alternate selinux pools
753371
753371
* Tue Feb 08 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.0.46-3
753371
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
753371
753371
* Thu Dec 30 2010 David Malcolm <dmalcolm@redhat.com> - 2.0.46-2
753371
- big reworking of the support-multiple-python-builds patch to deal with
753371
PEP 3149: the latest Python 3.2 onwards uses include paths and library names
753371
that don't fit prior naming patterns, and so we must query python3-config for
753371
this information.  To complicate things further, python 2's python-config
753371
doesn't understand all of the options needed ("--extension-suffix").  I've
753371
thus added new Makefile variables as needed, to be supplied by the specfile by
753371
invoking the appropriate config tool (or by hardcoding the old value for
753371
"--extension-suffix" i.e. ".so")
753371
- rework python3 manifest for PEP 3149, and rebuild for newer python3
753371
753371
* Tue Dec 21 2010 Dan Walsh <dwalsh@redhat.com> - 2.0.46-1
753371
- Update to upstream
753371
  * Fix compliation under GCC 4.6 by Justin Mattock
753371
753371
* Wed Aug 25 2010 Thomas Spura <tomspur@fedoraproject.org> - 2.0.45-6
753371
- rebuild with python3.2
753371
  http://lists.fedoraproject.org/pipermail/devel/2010-August/141368.html
753371
753371
* Wed Jul 21 2010 David Malcolm <dmalcolm@redhat.com> - 2.0.45-5
753371
- Rebuilt for https://fedoraproject.org/wiki/Features/Python_2.7/MassRebuild
753371
753371
* Tue Apr 27 2010 David Malcolm <dmalcolm@redhat.com> - 2.0.45-4
753371
- add python3 subpackage
753371
753371
* Wed Apr 7 2010 Dan Walsh <dwalsh@redhat.com> - 2.0.45-3
753371
- Fix -devel package to point at the correct shared library
753371
753371
* Fri Mar 26 2010 Dan Walsh <dwalsh@redhat.com> - 2.0.45-2
753371
- Move shared library to /usr/lib
753371
753371
* Mon Mar 8 2010 Dan Walsh <dwalsh@redhat.com> - 2.0.45-1
753371
- Update to upstream
753371
	* Add enable/disable patch support from Dan Walsh.
753371
	* Add usepasswd flag to semanage.conf to disable genhomedircon using
753371
	  passwd from Dan Walsh.
753371
	* regenerate swig wrappers
753371
753371
* Thu Feb 25 2010 Dan Walsh <dwalsh@redhat.com> - 2.0.44-2
753371
- Allow disable of usepasswd
753371
753371
* Wed Feb 17 2010 Dan Walsh <dwalsh@redhat.com> - 2.0.44-1
753371
- Update to upstream
753371
	* Replace usage of fmemopen() with sepol_policy_file_set_mem() since
753371
	  glibc < 2.9 does not support binary mode ('b') for fmemopen'd
753371
	  streams.
753371
753371
* Thu Jan 28 2010 Dan Walsh <dwalsh@redhat.com> - 2.0.43-4
753371
- Cleanup spec file
753371
753371
* Mon Jan 18 2010 Dan Walsh <dwalsh@redhat.com> - 2.0.43-3
753371
- Splect libsemanage.a into a static subpackage to keep fedora packaging guidelines happy
753371
753371
* Wed Dec 16 2009 Dan Walsh <dwalsh@redhat.com> - 2.0.43-2
753371
- Rebuild all c programs with -fPIC
753371
753371
* Tue Dec 1 2009 Dan Walsh <dwalsh@redhat.com> - 2.0.43-1
753371
- Update to upstream
753371
  * Move libsemanage.so to /usr/lib
753371
  * Add NAME lines to man pages from Manoj Srivastava<srivasta@debian.org>
753371
753371
* Wed Nov 18 2009 Dan Walsh <dwalsh@redhat.com> - 2.0.42-1
753371
- Update to upstream
753371
  * Move load_policy from /usr/sbin to /sbin from Dan Walsh.
753371
753371
* Mon Nov 2 2009 Dan Walsh <dwalsh@redhat.com> - 2.0.41-1
753371
- Update to upstream
753371
  * Add pkgconfig file from Eamon Walsh.
753371
  * Add semanage_set_check_contexts() function to disable calling
753371
  setfiles
753371
753371
* Mon Sep 28 2009 Dan Walsh <dwalsh@redhat.com> - 2.0.39-1
753371
- Update to upstream
753371
  * make swigify
753371
753371
* Sun Sep 20 2009 Dan Walsh <dwalsh@redhat.com> - 2.0.38-2
753371
- Dont relabel /root with genhomedircon
753371
753371
* Thu Sep 17 2009 Dan Walsh <dwalsh@redhat.com> - 2.0.38-1
753371
- Update to upstream
753371
  * Change semodule upgrade behavior to install even if the module
753371
    is not present from Dan Walsh.
753371
  * Make genhomedircon trim excess '/' from homedirs from Dan Walsh.
753371
753371
* Wed Sep 9 2009 Dan Walsh <dwalsh@redhat.com> - 2.0.37-1
753371
- Update to upstream
753371
  * Fix persistent dontaudit support to rebuild policy if the 
753371
        dontaudit state is changed from Chad Sellers.
753371
- Move load_policy to /sbin
753371
753371
* Fri Aug 28 2009 Dan Walsh <dwalsh@redhat.com> - 2.0.36-2
753371
- Add enable/disable modules
753371
753371
* Wed Aug 26 2009 Dan Walsh <dwalsh@redhat.com> - 2.0.36-1
753371
- Update to upstream
753371
  * Changed bzip-blocksize=0 handling to support existing compressed
753371
  modules in the store.
753371
753371
* Wed Aug 26 2009 Dan Walsh <dwalsh@redhat.com> - 2.0.35-2
753371
- Make sure /root is not used in genhomedircon
753371
753371
* Wed Aug 5 2009 Dan Walsh <dwalsh@redhat.com> - 2.0.35-1
753371
- Revert hard linking of files between tmp/active/previous.
753371
- Enable configuration of bzip behavior from Stephen Smalley.
753371
-   bzip-blocksize=0 to disable compression and decompression support.
753371
-   bzip-blocksize=1..9 to set the blocksize for compression.
753371
-   bzip-small=true to reduce memory usage for decompression.
753371
753371
* Sat Jul 25 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.0.33-3
753371
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
753371
753371
* Fri Jul 10 2009 Dan Walsh <dwalsh@redhat.com> - 2.0.33-2
753371
- Put check for /root back into genhomedircon
753371
753371
* Tue Jul 7 2009 Dan Walsh <dwalsh@redhat.com> - 2.0.33-1
753371
- Update to upstream
753371
753371
* Mon Jun 8 2009 Dan Walsh <dwalsh@redhat.com> - 2.0.32-1
753371
- Update to upstream
753371
  * Ruby bindings from David Quigley.
753371
753371
* Thu Apr 9 2009 Dan Walsh <dwalsh@redhat.com> - 2.0.31-5
753371
- Return error on invalid file
753371
753371
* Wed Mar 11 2009 Dan Walsh <dwalsh@redhat.com> - 2.0.31-4
753371
- Fix typo
753371
753371
* Wed Feb 25 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.0.31-3
753371
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
753371
753371
* Thu Jan 15 2009 Dan Walsh <dwalsh@redhat.com> - 2.0.31-2
753371
- Fix link to only link on sandbox
753371
753371
* Mon Jan 12 2009 Dan Walsh <dwalsh@redhat.com> - 2.0.31-1
753371
- Update to upstream
753371
  * Policy module compression (bzip) support from Dan Walsh.
753371
  * Hard link files between tmp/active/previous from Dan Walsh.
753371
753371
* Mon Jan 12 2009 Dan Walsh <dwalsh@redhat.com> - 2.0.30-3
753371
- Fix up patch to get it upstreamed
753371
753371
* Thu Dec 04 2008 Ignacio Vazquez-Abrams <ivazqueznet+rpm@gmail.com> - 2.0.30-2
753371
- Rebuild for Python 2.6
753371
753371
* Thu Dec 4 2008 Dan Walsh <dwalsh@redhat.com> - 2.0.30-1
753371
- Add semanage_mls_enabled() interface from Stephen Smalley.
753371
753371
* Sat Nov 29 2008 Ignacio Vazquez-Abrams <ivazqueznet+rpm@gmail.com> - 2.0.29-2
753371
- Rebuild for Python 2.6
753371
753371
* Mon Sep 15 2008 Dan Walsh <dwalsh@redhat.com> - 2.0.28-1
753371
- Update to upstream
753371
  * Add USER to lines to homedir_template context file from Chris PeBenito.
753371
753371
* Mon Sep 15 2008 Dan Walsh <dwalsh@redhat.com> - 2.0.28-2
753371
- Add compression support
753371
753371
* Mon Sep 15 2008 Dan Walsh <dwalsh@redhat.com> - 2.0.28-1
753371
- Update to upstream
753371
  * allow fcontext and seuser changes without rebuilding the policy from Dan Walsh
753371
753371
* Wed Sep 10 2008 Dan Walsh <dwalsh@redhat.com> - 2.0.27-3
753371
- Additional fixes for Don't rebuild on fcontext or seuser modifications
753371
753371
* Tue Sep 2 2008 Dan Walsh <dwalsh@redhat.com> - 2.0.27-2
753371
- Don't rebuild on fcontext or seuser modifications
753371
753371
* Tue Aug 5 2008 Dan Walsh <dwalsh@redhat.com> - 2.0.27-1
753371
- Update to upstream
753371
  * Modify genhomedircon to skip groupname entries.
753371
  Ultimately we need to expand them to the list of users to support per-role homedir labeling when using the groupname syntax.
753371
753371
* Tue Jul 29 2008 Dan Walsh <dwalsh@redhat.com> - 2.0.26-1
753371
- Update to upstream
753371
  * Fix bug in genhomedircon fcontext matches logic from Dan Walsh.
753371
  Strip any trailing slash before appending /*$.
753371
753371
* Tue Jun 17 2008 Dan Walsh <dwalsh@redhat.com> - 2.0.25-3
753371
- Another fix for genhomedircon
753371
753371
* Wed May 28 2008 Tom "spot" Callaway <tcallawa@redhat.com> - 2.0.25-2
753371
- fix license tag
753371
753371
* Tue Feb 5 2008 Dan Walsh <dwalsh@redhat.com> - 2.0.25-1
753371
- Update to upstream
753371
  * Do not call genhomedircon if the policy was not rebuilt from Stephen Smalley.
753371
    Fixes semanage boolean -D seg fault (bug 441379).
753371
753371
* Tue Feb 5 2008 Dan Walsh <dwalsh@redhat.com> - 2.0.24-1
753371
- Update to upstream
753371
  * make swigify
753371
753371
* Tue Feb 5 2008 Dan Walsh <dwalsh@redhat.com> - 2.0.23-1
753371
- Update to upstream
753371
  * Use vfork rather than fork for libsemanage helpers to reduce memory overhead as suggested by Todd Miller.
753371
753371
* Mon Feb 4 2008 Dan Walsh <dwalsh@redhat.com> - 2.0.22-1
753371
- Update to upstream
753371
  * Free policydb before fork from Joshua Brindle.
753371
  * Drop the base module immediately after expanding to permit memory re-use from Stephen Smalley.
753371
753371
* Sat Feb 2 2008 Dan Walsh <dwalsh@redhat.com> - 2.0.20-1
753371
- Update to upstream
753371
  * Use sepol_set_expand_consume_base to reduce peak memory usage when
753371
  using semodule
753371
753371
* Fri Feb 1 2008 Dan Walsh <dwalsh@redhat.com> - 2.0.19-1
753371
- Update to upstream
753371
  * Fix genhomedircon to not override a file context with a homedir context from Todd Miller.
753371
753371
* Tue Jan 29 2008 Dan Walsh <dwalsh@redhat.com> - 2.0.18-1
753371
- Update to upstream
753371
  * Fix spurious out of memory error reports.
753371
  * Merged second version of fix for genhomedircon handling from Caleb Case.
753371
753371
* Tue Jan 22 2008 Dan Walsh <dwalsh@redhat.com> - 2.0.16-1
753371
- Update to upstream
753371
  * Merged fix for genhomedircon handling of missing HOME_DIR or HOME_ROOT templates from Caleb Case.
753371
753371
* Tue Jan 22 2008 Dan Walsh <dwalsh@redhat.com> - 2.0.15-2
753371
- Stop differentiating on user for homedir labeling
753371
753371
* Thu Dec 6 2007 Dan Walsh <dwalsh@redhat.com> - 2.0.15-1
753371
- Update to upstream
753371
  * Fix genhomedircon handling of shells and missing user context template from Dan Walsh.
753371
  * Copy the store path in semanage_select_store from Dan Walsh.
753371
- Add expand-check=0 to semanage.conf
753371
753371
* Mon Dec 3 2007 Dan Walsh <dwalsh@redhat.com> - 2.0.14-5
753371
- Fix handling of /etc/shells so genhomedircon will work
753371
753371
* Thu Nov 29 2007 Dan Walsh <dwalsh@redhat.com> - 2.0.14-3
753371
- Allow semanage_genhomedircon to work with out a USER int homedir.template
753371
753371
* Sat Nov 10 2007 Dan Walsh <dwalsh@redhat.com> - 2.0.14-2
753371
- Fix semanage_select_store to allocate memory, fixes crash on invalid store
753371
753371
* Tue Nov 6 2007 Dan Walsh <dwalsh@redhat.com> - 2.0.14-1
753371
- Upgrade to latest from NSA
753371
  * Call rmdir() rather than remove() on directory removal so that errno isn't polluted from Stephen Smalley.
753371
  * Allow handle_unknown in base to be overridden by semanage.conf from Stephen Smalley.
753371
753371
* Fri Oct 5 2007 Dan Walsh <dwalsh@redhat.com> - 2.0.12-1
753371
- Upgrade to latest from NSA
753371
  * ustr cleanups from James Antill.
753371
  * Ensure that /root gets labeled even if using the default context from Dan Walsh.
753371
753371
* Fri Sep 28 2007 Dan Walsh <dwalsh@redhat.com> - 2.0.11-1
753371
- Upgrade to latest from NSA
753371
  * Fix ordering of file_contexts.homedirs from Todd Miller and Dan Walsh.
753371
753371
* Fri Sep 28 2007 Dan Walsh <dwalsh@redhat.com> - 2.0.10-2
753371
- Fix sort order on generated homedir context
753371
753371
* Fri Sep 28 2007 Dan Walsh <dwalsh@redhat.com> - 2.0.10-1
753371
- Upgrade to latest from NSA
753371
  * Fix error checking on getpw*_r functions from Todd Miller.
753371
  * Make genhomedircon skip invalid homedir contexts from Todd Miller.
753371
  * Set default user and prefix from seusers from Dan Walsh.
753371
  * Add swigify Makefile target from Dan Walsh.
753371
753371
* Wed Sep 26 2007 Dan Walsh <dwalsh@redhat.com> - 2.0.9-1
753371
- Upgrade to latest from NSA
753371
  * Pass CFLAGS to CC even on link command, per Dennis Gilmore.
753371
  * Clear errno on non-fatal errors to avoid reporting them upon a
753371
    later error that does not set errno.
753371
  * Improve reporting of system errors, e.g. full filesystem or read-only filesystem from Stephen Smalley.
753371
753371
- Fix segfault in genhomedircon when using bad user names
753371
753371
* Wed Sep 26 2007 Dan Walsh <dwalsh@redhat.com> - 2.0.6-2
753371
- Fix genhomedircon code to only generate valid context
753371
- Fixes autorelabel problem
753371
753371
* Thu Sep 13 2007 Dan Walsh <dwalsh@redhat.com> - 2.0.6-1
753371
- Upgrade to latest from NSA
753371
  * Change to use getpw* function calls to the _r versions from Todd Miller.
753371
753371
* Thu Aug 23 2007 Dan Walsh <dwalsh@redhat.com> - 2.0.5-1
753371
- Upgrade to latest from NSA
753371
753371
* Mon Aug 20 2007 Dan Walsh <dwalsh@redhat.com> - 2.0.4-1
753371
- Upgrade to latest from NSA
753371
  * Allow dontaudits to be turned off via semanage interface when
753371
    updating policy
753371
753371
* Sat Aug 11 2007 Dan Walsh <dwalsh@redhat.com> - 2.0.3-5
753371
- Add ability to load a policy without dontaudit rules
753371
-
753371
753371
* Tue Jun 26 2007 Dan Walsh <dwalsh@redhat.com> - 2.0.3-4
753371
- Rebuild to fix segfault on x86 platforms, swigify on each build
753371
753371
* Fri Jun 1 2007 Dan Walsh <dwalsh@redhat.com> - 2.0.3-3
753371
- Rebuild for rawhide
753371
753371
* Thu May 3 2007 Dan Walsh <dwalsh@redhat.com> - 2.0.3-2
753371
- Apply patch to fix dependencies in spec file from Robert Scheck
753371
753371
* Wed Apr 25 2007 Dan Walsh <dwalsh@redhat.com> - 2.0.3-1
753371
- Upgrade to latest from NSA
753371
  * Fix to libsemanage man patches so whatis will work better from Dan Walsh
753371
753371
* Wed Apr 25 2007 Dan Walsh <dwalsh@redhat.com> - 2.0.2-1
753371
- Upgrade to latest from NSA
753371
- Merged optimizations from Stephen Smalley.
753371
-    do not set all booleans upon commit, only those whose values have changed
753371
-    only install the sandbox upon commit if something was rebuilt
753371
753371
* Sat Mar 17 2007 Dan Walsh <dwalsh@redhat.com> - 2.0.1-2
753371
- Add SELinux to Man page Names so man -k will work
753371
753371
* Mon Mar 12 2007 Dan Walsh <dwalsh@redhat.com> - 2.0.1-1
753371
- Merged dbase_file_flush patch from Dan Walsh.
753371
- This removes any mention of specific tools (e.g. semanage)
753371
- from the comment header of the auto-generated files,
753371
- since there are multiple front-end tools.
753371
753371
* Tue Feb 20 2007 Dan Walsh <dwalsh@redhat.com> - 2.0.0-1
753371
- Upgrade to latest from NSA
753371
  * Merged Makefile test target patch from Caleb Case.
753371
  * Merged get_commit_number function rename patch from Caleb Case.
753371
  * Merged strnlen -> strlen patch from Todd Miller.
753371
753371
* Wed Feb 7 2007 Dan Walsh <dwalsh@redhat.com> - 1.10.1-1
753371
- Upgrade to latest from NSA
753371
  * Merged python binding fix from Dan Walsh.
753371
  * Updated version for stable branch.
753371
753371
* Fri Dec 22 2006 Dan Walsh <dwalsh@redhat.com> - 1.9.2-1
753371
- Upgrade to latest from NSA
753371
  * Merged patch to optionally reduce disk usage by removing 
753371
    the backup module store and linked policy from Karl MacMillan
753371
  * Merged patch to correctly propagate return values in libsemanage
753371
753371
* Fri Dec 22 2006 Dan Walsh <dwalsh@redhat.com> - 1.9.1-3
753371
- Apply Karl MacMillan patch to get proper error codes.
753371
753371
* Thu Dec  7 2006 Jeremy Katz <katzj@redhat.com> - 1.9.1-2
753371
- rebuild against python 2.5
753371
753371
* Tue Nov 28 2006 Dan Walsh <dwalsh@redhat.com> - 1.9.1-1
753371
- Upgrade to latest from NSA
753371
  * Merged patch to compile wit -fPIC instead of -fpic from
753371
    Manoj Srivastava to prevent hitting the global offest table
753371
    limit. Patch changed to include libselinux and libsemanage in
753371
    addition to libsepol.
753371
753371
* Tue Oct 17 2006 Dan Walsh <dwalsh@redhat.com> - 1.8-1
753371
- Upgrade to latest from NSA
753371
  * Updated version for release.
753371
753371
* Thu Aug 31 2006 Dan Walsh <dwalsh@redhat.com> - 1.6.17-1
753371
- Upgrade to latest from NSA
753371
  * Merged patch to skip reload if no active store exists and
753371
    the store path doesn't match the active store path from Dan Walsh.
753371
  * Merged patch to not destroy sepol handle on error path of
753371
    connect from James Athey.
753371
  * Merged patch to add genhomedircon path to semanage.conf from
753371
    James Athey. 
753371
753371
* Thu Aug 31 2006 Dan Walsh <dwalsh@redhat.com> - 1.6.16-3
753371
- Fix semanage to not load if is not the correct policy type and it is installing
753371
753371
* Thu Aug 31 2006 Dan Walsh <dwalsh@redhat.com> - 1.6.16-2
753371
- Fix requires lines
753371
753371
* Wed Aug 23 2006 Dan Walsh <dwalsh@redhat.com> - 1.6.16-1
753371
- Upgrade to latest from NSA
753371
  * Make most copy errors fatal, but allow exceptions for
753371
    file_contexts.local, seusers, and netfilter_contexts if
753371
    the source file does not exist in the store.
753371
753371
* Sat Aug 12 2006 Dan Walsh <dwalsh@redhat.com> - 1.6.15-1
753371
- Upgrade to latest from NSA
753371
  * Merged separate local file contexts patch from Chris PeBenito.
753371
  * Merged patch to make most copy errors non-fatal from Dan Walsh.
753371
753371
* Thu Aug 10 2006 Dan Walsh <dwalsh@redhat.com> - 1.6.13-3
753371
- Change other updates to be non-fatal
753371
753371
* Wed Aug 9 2006 Dan Walsh <dwalsh@redhat.com> - 1.6.13-2
753371
- Change netfilter stuff to be non-fatal so update can proceed.
753371
753371
* Thu Aug 3 2006 Dan Walsh <dwalsh@redhat.com> - 1.6.13-1
753371
- Upgrade to latest from NSA
753371
  * Merged netfilter contexts support from Chris PeBenito.
753371
753371
* Mon Jul 17 2006 Dan Walsh <dwalsh@redhat.com> - 1.6.12-2
753371
- Rebuild for new gcc
753371
753371
* Tue Jul 11 2006 Dan Walsh <dwalsh@redhat.com> - 1.6.12-1
753371
- Upgrade to latest from NSA
753371
  * Merged support for read operations on read-only fs from 
753371
    Caleb Case (Tresys Technology).
753371
753371
* Tue Jul 4 2006 Dan Walsh <dwalsh@redhat.com> - 1.6.11-1
753371
- Upgrade to latest from NSA
753371
  * Lindent.
753371
  * Merged setfiles location check patch from Dan Walsh.
753371
753371
* Fri Jun 16 2006 Dan Walsh <dwalsh@redhat.com> - 1.6.9-1
753371
- Upgrade to latest from NSA
753371
  * Merged several fixes from Serge Hallyn:
753371
       dbase_file_cache:  deref of uninit data on error path.
753371
       dbase_policydb_cache:  clear fp to avoid double fclose
753371
       semanage_fc_sort:  destroy temp on error paths
753371
753371
* Fri Jun 16 2006 Dan Walsh <dwalsh@redhat.com> - 1.6.8-2
753371
- Handle setfiles being in /sbin or /usr/sbin
753371
753371
* Mon May 15 2006 Dan Walsh <dwalsh@redhat.com> - 1.6.8-1
753371
- Upgrade to latest from NSA
753371
  * Updated default location for setfiles to /sbin to
753371
    match policycoreutils.  This can also be adjusted via 
753371
    semanage.conf using the syntax:
753371
    [setfiles]
753371
    path = /path/to/setfiles
753371
    args = -q -c $@ $<
753371
    [end]
753371
753371
* Mon May 15 2006 Dan Walsh <dwalsh@redhat.com> - 1.6.7-3
753371
- Spec file cleanup from n0dalus+redhat@gmail.com
753371
753371
* Mon May 15 2006 Dan Walsh <dwalsh@redhat.com> - 1.6.7-2
753371
- Add /usr/include/semanage to spec file
753371
753371
* Mon May 8 2006 Dan Walsh <dwalsh@redhat.com> - 1.6.7-1
753371
- Upgrade to latest from NSA
753371
  * Merged fix warnings patch from Karl MacMillan.
753371
753371
* Fri Apr 14 2006 Dan Walsh <dwalsh@redhat.com> - 1.6.6-1
753371
- Upgrade to latest from NSA
753371
  * Merged updated file context sorting patch from Christopher
753371
    Ashworth, with bug fix for escaped character flag.
753371
  * Merged file context sorting code from Christopher Ashworth 
753371
    (Tresys Technology), based on fc_sort.c code in refpolicy.
753371
  * Merged python binding t_output_helper removal patch from Dan Walsh.
753371
  * Regenerated swig files.
753371
753371
* Wed Mar 29 2006 Dan Walsh <dwalsh@redhat.com> - 1.6.3-1
753371
- Fix to work with new version of swig
753371
- Upgrade to latest from NSA
753371
  * Merged corrected fix for descriptor leak from Dan Walsh.
753371
753371
* Wed Mar 29 2006 Dan Walsh <dwalsh@redhat.com> - 1.6.2-2
753371
- Fix leaky descriptor
753371
753371
* Tue Mar 21 2006 Dan Walsh <dwalsh@redhat.com> - 1.6.2-1
753371
- Upgrade to latest from NSA
753371
  * Merged Makefile PYLIBVER definition patch from Dan Walsh.
753371
  * Merged man page reorganization from Ivan Gyurdiev.
753371
753371
* Fri Mar 17 2006 Dan Walsh <dwalsh@redhat.com> - 1.6-1
753371
- Make work on RHEL4
753371
- Upgrade to latest from NSA
753371
  * Merged abort early on merge errors patch from Ivan Gyurdiev.
753371
  * Cleaned up error handling in semanage_split_fc based on a patch
753371
    by Serge Hallyn (IBM) and suggestions by Ivan Gyurdiev.
753371
  * Merged MLS handling fixes from Ivan Gyurdiev.
753371
753371
* Fri Feb 17 2006 Dan Walsh <dwalsh@redhat.com> - 1.5.28-1
753371
- Upgrade to latest from NSA
753371
  * Merged bug fix for fcontext validate handler from Ivan Gyurdiev.
753371
  * Merged base_merge_components changes from Ivan Gyurdiev.
753371
753371
* Thu Feb 16 2006 Dan Walsh <dwalsh@redhat.com> - 1.5.26-1
753371
- Upgrade to latest from NSA
753371
  * Merged paths array patch from Ivan Gyurdiev.
753371
  * Merged bug fix patch from Ivan Gyurdiev.
753371
  * Merged improve bindings patch from Ivan Gyurdiev.
753371
  * Merged use PyList patch from Ivan Gyurdiev.  
753371
  * Merged memory leak fix patch from Ivan Gyurdiev.
753371
  * Merged nodecon support patch from Ivan Gyurdiev.
753371
  * Merged cleanups patch from Ivan Gyurdiev.
753371
  * Merged split swig patch from Ivan Gyurdiev.
753371
753371
* Mon Feb 13 2006 Dan Walsh <dwalsh@redhat.com> - 1.5.23-1
753371
- Upgrade to latest from NSA
753371
  * Merged optionals in base patch from Joshua Brindle.
753371
  * Merged treat seusers/users_extra as optional sections patch from
753371
    Ivan Gyurdiev.
753371
  * Merged parse_optional fixes from Ivan Gyurdiev.
753371
753371
* Fri Feb 10 2006 Jesse Keating <jkeating@redhat.com> - 1.5.21-2.1
753371
- bump again for double-long bug on ppc(64)
753371
753371
* Fri Feb 10 2006 Dan Walsh <dwalsh@redhat.com> - 1.5.21-2
753371
- Fix handling of seusers and users_map file
753371
753371
* Tue Feb 07 2006 Dan Walsh <dwalsh@redhat.com> - 1.5.21-1
753371
- Upgrade to latest from NSA
753371
  * Merged seuser/user_extra support patch from Joshua Brindle.
753371
  * Merged remote system dbase patch from Ivan Gyurdiev.  
753371
753371
* Tue Feb 07 2006 Jesse Keating <jkeating@redhat.com> - 1.5.20-1.1
753371
- rebuilt for new gcc4.1 snapshot and glibc changes
753371
753371
* Thu Feb 2 2006 Dan Walsh <dwalsh@redhat.com> 1.5.20-1
753371
- Upgrade to latest from NSA
753371
  * Merged clone record on set_con patch from Ivan Gyurdiev.  
753371
753371
* Mon Jan 30 2006 Dan Walsh <dwalsh@redhat.com> 1.5.19-1
753371
- Upgrade to latest from NSA
753371
  * Merged fname parameter patch from Ivan Gyurdiev.
753371
  * Merged more size_t -> unsigned int fixes from Ivan Gyurdiev.
753371
  * Merged seusers.system patch from Ivan Gyurdiev.
753371
  * Merged improve port/fcontext API patch from Ivan Gyurdiev.  
753371
753371
* Fri Jan 27 2006 Dan Walsh <dwalsh@redhat.com> 1.5.18-1
753371
- Upgrade to latest from NSA
753371
  * Merged seuser -> seuser_local rename patch from Ivan Gyurdiev.
753371
  * Merged set_create_store, access_check, and is_connected interfaces
753371
    from Joshua Brindle.
753371
753371
* Fri Jan 13 2006 Dan Walsh <dwalsh@redhat.com> 1.5.16-1
753371
- Upgrade to latest from NSA
753371
  * Regenerate python wrappers.
753371
753371
* Fri Jan 13 2006 Dan Walsh <dwalsh@redhat.com> 1.5.15-1
753371
- Upgrade to latest from NSA
753371
  * Merged pywrap Makefile diff from Dan Walsh.
753371
  * Merged cache management patch from Ivan Gyurdiev.
753371
  * Merged bugfix for dbase_llist_clear from Ivan Gyurdiev.
753371
  * Merged remove apply_local function patch from Ivan Gyurdiev.
753371
  * Merged only do read locking in direct case patch from Ivan Gyurdiev.
753371
  * Merged cache error path memory leak fix from Ivan Gyurdiev.
753371
  * Merged auto-generated file header patch from Ivan Gyurdiev.
753371
  * Merged pywrap test update from Ivan Gyurdiev.
753371
  * Merged hidden defs update from Ivan Gyurdiev.
753371
753371
* Fri Jan 13 2006 Dan Walsh <dwalsh@redhat.com> 1.5.14-2
753371
- Break out python out of regular Makefile
753371
753371
* Fri Jan 13 2006 Dan Walsh <dwalsh@redhat.com> 1.5.14-1
753371
- Upgrade to latest from NSA
753371
  * Merged disallow port overlap patch from Ivan Gyurdiev.
753371
  * Merged join prereq and implementation patches from Ivan Gyurdiev.
753371
  * Merged join user extra data part 2 patch from Ivan Gyurdiev.
753371
  * Merged bugfix patch from Ivan Gyurdiev.
753371
  * Merged remove add_local/set_local patch from Ivan Gyurdiev.
753371
  * Merged user extra data part 1 patch from Ivan Gyurdiev.
753371
  * Merged size_t -> unsigned int patch from Ivan Gyurdiev.
753371
  * Merged calloc check in semanage_store patch from Ivan Gyurdiev,
753371
    bug noticed by Steve Grubb.
753371
  * Merged cleanups after add/set removal patch from Ivan Gyurdiev.
753371
753371
* Sat Jan 7 2006 Dan Walsh <dwalsh@redhat.com> 1.5.9-1
753371
- Upgrade to latest from NSA
753371
  * Merged const in APIs patch from Ivan Gyurdiev.
753371
  * Merged validation of local file contexts patch from Ivan Gyurdiev.
753371
  * Merged compare2 function patch from Ivan Gyurdiev.
753371
  * Merged hidden def/proto update patch from Ivan Gyurdiev.
753371
753371
* Fri Jan 6 2006 Dan Walsh <dwalsh@redhat.com> 1.5.8-1
753371
- Upgrade to latest from NSA
753371
  * Re-applied string and file optimization patch from Russell Coker,
753371
    with bug fix.
753371
  * Reverted string and file optimization patch from Russell Coker.
753371
  * Clarified error messages from parse_module_headers and 
753371
    parse_base_headers for base/module mismatches.
753371
753371
* Fri Jan 6 2006 Dan Walsh <dwalsh@redhat.com> 1.5.6-1
753371
- Upgrade to latest from NSA
753371
  * Clarified error messages from parse_module_headers and 
753371
    parse_base_headers for base/module mismatches.
753371
  * Merged string and file optimization patch from Russell Coker.
753371
  * Merged swig header reordering patch from Ivan Gyurdiev.
753371
  * Merged toggle modify on add patch from Ivan Gyurdiev.
753371
  * Merged ports parser bugfix patch from Ivan Gyurdiev.
753371
  * Merged fcontext swig patch from Ivan Gyurdiev.
753371
  * Merged remove add/modify/delete for active booleans patch from Ivan Gyurdiev.
753371
  * Merged man pages for dbase functions patch from Ivan Gyurdiev.
753371
  * Merged pywrap tests patch from Ivan Gyurdiev.
753371
753371
* Thu Jan 5 2006 Dan Walsh <dwalsh@redhat.com> 1.5.4-2
753371
- Patch to fix add
753371
753371
* Thu Jan 5 2006 Dan Walsh <dwalsh@redhat.com> 1.5.4-1
753371
- Upgrade to latest from NSA
753371
  * Merged patch series from Ivan Gyurdiev.
753371
    This includes patches to:
753371
    - separate file rw code from linked list
753371
    - annotate objects
753371
    - fold together internal headers
753371
    - support ordering of records in compare function
753371
    - add active dbase backend, active booleans
753371
    - return commit numbers for ro database calls
753371
    - use modified flags to skip rebuild whenever possible
753371
    - enable port interfaces
753371
    - update swig interfaces and typemaps
753371
    - add an API for file_contexts.local and file_contexts
753371
    - flip the traversal order in iterate/list
753371
    - reorganize sandbox_expand
753371
    - add seusers MLS validation
753371
    - improve dbase spec/documentation
753371
    - clone record on set/add/modify
753371
753371
* Tue Dec 27 2005 Dan Walsh <dwalsh@redhat.com> 1.5.3-3
753371
- Add Ivans patch to turn on ports
753371
753371
* Wed Dec 14 2005 Dan Walsh <dwalsh@redhat.com> 1.5.3-2
753371
- Remove patch since upstream does the right thing
753371
753371
* Wed Dec 14 2005 Dan Walsh <dwalsh@redhat.com> 1.5.3-1
753371
- Upgrade to latest from NSA
753371
  * Merged further header cleanups from Ivan Gyurdiev.
753371
  * Merged toggle modified flag in policydb_modify, fix memory leak
753371
    in clear_obsolete, polymorphism vs headers fix, and include guards
753371
    for internal headers patches from Ivan Gyurdiev.
753371
753371
* Tue Dec 13 2005 Dan Walsh <dwalsh@redhat.com> 1.5.1-2
753371
- Upgrade to latest from NSA
753371
  * Merged toggle modified flag in policydb_modify, fix memory leak
753371
    in clear_obsolete, polymorphism vs headers fix, and include guards
753371
    for internal headers patches from Ivan Gyurdiev.
753371
753371
* Mon Dec 12 2005 Dan Walsh <dwalsh@redhat.com> 1.5.1-1
753371
- Upgrade to latest from NSA
753371
  * Added file-mode= setting to semanage.conf, default to 0644.
753371
    Changed semanage_copy_file and callers to use this mode when
753371
    installing policy files to runtime locations.
753371
753371
* Fri Dec 09 2005 Jesse Keating <jkeating@redhat.com>
753371
- rebuilt
753371
753371
* Wed Dec 7 2005 Dan Walsh <dwalsh@redhat.com> 1.4-1
753371
- Fix mode of output seusers file
753371
753371
* Tue Dec 6 2005 Dan Walsh <dwalsh@redhat.com> 1.3.64-1
753371
- Upgrade to latest from NSA
753371
  * Changed semanage_handle_create() to set do_reload based on
753371
    is_selinux_enabled().  This prevents improper attempts to
753371
    load policy on a non-SELinux system.
753371
753371
* Mon Dec 5 2005 Dan Walsh <dwalsh@redhat.com> 1.3.63-1
753371
- Upgrade to latest from NSA
753371
  * Dropped handle from user_del_role interface.
753371
  * Removed defrole interfaces.
753371
753371
* Tue Nov 29 2005 Dan Walsh <dwalsh@redhat.com> 1.3.61-1
753371
- Upgrade to latest from NSA
753371
  * Merged Makefile python definitions patch from Dan Walsh.
753371
  * Removed is_selinux_mls_enabled() conditionals in seusers and users
753371
    file parsers. 
753371
753371
* Wed Nov 23 2005 Dan Walsh <dwalsh@redhat.com> 1.3.59-1
753371
- Add additional swig objects
753371
  * Merged wrap char*** for user_get_roles patch from Joshua Brindle.
753371
  * Merged remove defrole from sepol patch from Ivan Gyurdiev.
753371
  * Merged swig wrappers for modifying users and seusers from Joshua Brindle.
753371
753371
* Wed Nov 23 2005 Dan Walsh <dwalsh@redhat.com> 1.3.56-2
753371
- Add additional swig objects
753371
753371
* Wed Nov 16 2005 Dan Walsh <dwalsh@redhat.com> 1.3.56-1
753371
- Upgrade to latest from NSA
753371
  * Fixed free->key_free bug.
753371
  * Merged clear obsolete patch from Ivan Gyurdiev.
753371
  * Merged modified swigify patch from Dan Walsh 
753371
    (original patch from Joshua Brindle).
753371
  * Merged move genhomedircon call patch from Chad Sellers.
753371
753371
* Mon Nov 14 2005 Dan Walsh <dwalsh@redhat.com> 1.3.53-3
753371
- Add genhomedircon patch from Joshua Brindle
753371
753371
* Fri Nov 11 2005 Dan Walsh <dwalsh@redhat.com> 1.3.53-2
753371
- Add swigify patch from Joshua Brindle
753371
753371
* Fri Nov 11 2005 Dan Walsh <dwalsh@redhat.com> 1.3.53-1
753371
- Upgrade to latest from NSA
753371
  * Merged move seuser validation patch from Ivan Gyurdiev.
753371
  * Merged hidden declaration fixes from Ivan Gyurdiev,
753371
    with minor corrections.
753371
753371
* Wed Nov 9 2005 Dan Walsh <dwalsh@redhat.com> 1.3.52-1
753371
- Upgrade to latest from NSA
753371
  * Merged cleanup patch from Ivan Gyurdiev.
753371
    This renames semanage_module_conn to semanage_direct_handle,
753371
    and moves sepol handle create/destroy into semanage handle
753371
    create/destroy to allow use even when disconnected (for the
753371
    record interfaces).
753371
753371
* Tue Nov 8 2005 Dan Walsh <dwalsh@redhat.com> 1.3.51-1
753371
- Upgrade to latest from NSA
753371
  * Clear modules modified flag upon disconnect and commit.
753371
        * Added tracking of module modifications and use it to
753371
    determine whether expand-time checks should be applied
753371
    on commit.
753371
  * Reverted semanage_set_reload_bools() interface.
753371
753371
* Tue Nov 8 2005 Dan Walsh <dwalsh@redhat.com> 1.3.48-1
753371
- Upgrade to latest from NSA
753371
  * Disabled calls to port dbase for merge and commit and stubbed
753371
    out calls to sepol_port interfaces since they are not exported.
753371
  * Merged rename instead of copy patch from Joshua Brindle (Tresys).
753371
  * Added hidden_def/hidden_proto for exported symbols used within 
753371
    libsemanage to eliminate relocations.  Wrapped type definitions
753371
    in exported headers as needed to avoid conflicts.  Added
753371
    src/context_internal.h and src/iface_internal.h.
753371
  * Added semanage_is_managed() interface to allow detection of whether
753371
    the policy is managed via libsemanage.  This enables proper handling
753371
    in setsebool for non-managed systems.
753371
  * Merged semanage_set_reload_bools() interface from Ivan Gyurdiev,
753371
    to enable runtime control over preserving active boolean values
753371
    versus reloading their saved settings upon commit.
753371
753371
* Mon Nov 7 2005 Dan Walsh <dwalsh@redhat.com> 1.3.43-1
753371
- Upgrade to latest from NSA
753371
  * Merged seuser parser resync, dbase tracking and cleanup, strtol
753371
    bug, copyright, and assert space patches from Ivan Gyurdiev.
753371
  * Added src/*_internal.h in preparation for other changes.
753371
   * Added hidden/hidden_proto/hidden_def to src/debug.[hc] and
753371
          src/seusers.[hc].
753371
753371
753371
* Thu Nov 3 2005 Dan Walsh <dwalsh@redhat.com> 1.3.41-1
753371
- Upgrade to latest from NSA
753371
  * Merged interface parse/print, context_to_string interface change,
753371
    move assert_noeof, and order preserving patches from Ivan Gyurdiev.
753371
        * Added src/dso.h in preparation for other changes.
753371
  * Merged install seusers, handle/error messages, MLS parsing,
753371
    and seusers validation patches from Ivan Gyurdiev.
753371
753371
* Mon Oct 31 2005 Dan Walsh <dwalsh@redhat.com> 1.3.39-1
753371
- Upgrade to latest from NSA
753371
  * Merged record interface, dbase flush, common database code,
753371
    and record bugfix patches from Ivan Gyurdiev.
753371
753371
* Fri Oct 28 2005 Dan Walsh <dwalsh@redhat.com> 1.3.38-1
753371
- Upgrade to latest from NSA
753371
  * Merged dbase policydb list and count change from Ivan Gyurdiev.
753371
  * Merged enable dbase and set relay patches from Ivan Gyurdiev.
753371
753371
* Thu Oct 27 2005 Dan Walsh <dwalsh@redhat.com> 1.3.36-1
753371
- Update from NSA
753371
  * Merged query APIs and dbase_file_set patches from Ivan Gyurdiev.
753371
753371
* Wed Oct 26 2005 Dan Walsh <dwalsh@redhat.com> 1.3.35-1
753371
- Update from NSA
753371
  * Merged sepol handle passing, seusers support, and policydb cache
753371
    patches from Ivan Gyurdiev.
753371
753371
* Tue Oct 25 2005 Dan Walsh <dwalsh@redhat.com> 1.3.34-1
753371
- Update from NSA
753371
  * Merged resync to sepol changes and booleans fixes/improvements 
753371
    patches from Ivan Gyurdiev.
753371
  * Merged support for genhomedircon/homedir template, store selection,
753371
    explicit policy reload, and semanage.conf relocation from Joshua
753371
    Brindle.
753371
753371
* Mon Oct 24 2005 Dan Walsh <dwalsh@redhat.com> 1.3.32-1
753371
- Update from NSA
753371
  * Merged resync to sepol changes and transaction fix patches from
753371
    Ivan Gyurdiev.
753371
  * Merged reorganize users patch from Ivan Gyurdiev.
753371
  * Merged remove unused relay functions patch from Ivan Gyurdiev.
753371
753371
* Fri Oct 21 2005 Dan Walsh <dwalsh@redhat.com> 1.3.30-1
753371
- Update from NSA
753371
  * Fixed policy file leaks in semanage_load_module and
753371
    semanage_write_module.
753371
  * Merged further database work from Ivan Gyurdiev.
753371
  * Fixed bug in semanage_direct_disconnect.
753371
753371
* Thu Oct 20 2005 Dan Walsh <dwalsh@redhat.com> 1.3.28-1
753371
- Update from NSA
753371
  * Merged interface renaming patch from Ivan Gyurdiev.
753371
  * Merged policy component patch from Ivan Gyurdiev.
753371
  * Renamed 'check=' configuration value to 'expand-check=' for 
753371
    clarity.
753371
  * Changed semanage_commit_sandbox to check for and report errors 
753371
    on rename(2) calls performed during rollback.
753371
  * Added optional check= configuration value to semanage.conf 
753371
    and updated call to sepol_expand_module to pass its value
753371
    to control assertion and hierarchy checking on module expansion.
753371
  * Merged fixes for make DESTDIR= builds from Joshua Brindle.
753371
753371
* Tue Oct 18 2005 Dan Walsh <dwalsh@redhat.com> 1.3.24-1
753371
- Update from NSA
753371
  * Merged default database from Ivan Gyurdiev.
753371
  * Merged removal of connect requirement in policydb backend from
753371
    Ivan Gyurdiev.
753371
  * Merged commit locking fix and lock rename from Joshua Brindle.
753371
  * Merged transaction rollback in lock patch from Joshua Brindle.
753371
  * Changed default args for load_policy to be null, as it no longer
753371
    takes a pathname argument and we want to preserve booleans.
753371
  * Merged move local dbase initialization patch from Ivan Gyurdiev.
753371
  * Merged acquire/release read lock in databases patch from Ivan Gyurdiev.
753371
  * Merged rename direct -> policydb as appropriate patch from Ivan Gyurdiev.
753371
  * Added calls to sepol_policy_file_set_handle interface prior
753371
    to invoking sepol operations on policy files.
753371
  * Updated call to sepol_policydb_from_image to pass the handle.
753371
753371
753371
* Tue Oct 18 2005 Dan Walsh <dwalsh@redhat.com> 1.3.20-1
753371
- Update from NSA
753371
  * Changed default args for load_policy to be null, as it no longer
753371
    takes a pathname argument and we want to preserve booleans.
753371
  * Merged move local dbase initialization patch from Ivan Gyurdiev.
753371
  * Merged acquire/release read lock in databases patch from Ivan Gyurdiev.
753371
  * Merged rename direct -> policydb as appropriate patch from Ivan Gyurdiev.
753371
  * Added calls to sepol_policy_file_set_handle interface prior
753371
    to invoking sepol operations on policy files.
753371
  * Updated call to sepol_policydb_from_image to pass the handle.
753371
753371
* Tue Oct 18 2005 Dan Walsh <dwalsh@redhat.com> 1.3.20-1
753371
- Update from NSA
753371
  * Merged user and port APIs - policy database patch from Ivan
753371
  Gyurdiev.
753371
  * Converted calls to sepol link_packages and expand_module interfaces
753371
  from using buffers to using sepol handles for error reporting, and 
753371
  changed direct_connect/disconnect to create/destroy sepol handles.
753371
753371
* Sat Oct 15 2005 Dan Walsh <dwalsh@redhat.com> 1.3.18-1
753371
- Update from NSA
753371
  * Merged bugfix patch from Ivan Gyurdiev.
753371
  * Merged seuser database patch from Ivan Gyurdiev.
753371
  Merged direct user/port databases to the handle from Ivan Gyurdiev.
753371
  * Removed obsolete include/semanage/commit_api.h (leftover).
753371
  Merged seuser record patch from Ivan Gyurdiev.
753371
  * Merged boolean and interface databases from Ivan Gyurdiev.
753371
753371
* Fri Oct 14 2005 Dan Walsh <dwalsh@redhat.com> 1.3.14-1
753371
- Update from NSA
753371
  * Updated to use get interfaces for hidden sepol_module_package type.
753371
  * Changed semanage_expand_sandbox and semanage_install_active
753371
  to generate/install the latest policy version supported  by libsepol
753371
  by default (unless overridden by semanage.conf), since libselinux
753371
  will now downgrade automatically for load_policy.
753371
  * Merged new callback-based error reporting system and ongoing
753371
  database work from Ivan Gyurdiev.
753371
753371
* Wed Oct 12 2005 Dan Walsh <dwalsh@redhat.com> 1.3.11-1
753371
- Update from NSA
753371
  * Fixed semanage_install_active() to use the same logic for
753371
  selecting a policy version as semanage_expand_sandbox().  Dropped
753371
  dead code from semanage_install_sandbox().
753371
753371
* Mon Oct 10 2005 Dan Walsh <dwalsh@redhat.com> 1.3.10-1
753371
- Update from NSA
753371
  * Updated for changes to libsepol, and to only use types and interfaces
753371
  provided by the shared libsepol.
753371
753371
* Fri Oct 7 2005 Dan Walsh <dwalsh@redhat.com> 1.3.9-1
753371
- Update from NSA
753371
  * Merged further database work from Ivan Gyurdiev.
753371
753371
* Tue Oct 4 2005 Dan Walsh <dwalsh@redhat.com> 1.3.8-1
753371
- Update from NSA
753371
  * Merged iterate, redistribute, and dbase split patches from
753371
  Ivan Gyurdiev.
753371
753371
* Mon Oct 3 2005 Dan Walsh <dwalsh@redhat.com> 1.3.7-1
753371
- Update from NSA
753371
  * Merged patch series from Ivan Gyurdiev.
753371
    (pointer typedef elimination, file renames, dbase work, backend
753371
     separation)
753371
  * Split interfaces from semanage.[hc] into handle.[hc], modules.[hc].
753371
  * Separated handle create from connect interface.
753371
  * Added a constructor for initialization.
753371
  * Moved up src/include/*.h to src.
753371
  * Created a symbol map file; dropped dso.h and hidden markings.
753371
753371
* Wed Sep 28 2005 Dan Walsh <dwalsh@redhat.com> 1.3.5-1
753371
- Update from NSA
753371
  * Split interfaces from semanage.[hc] into handle.[hc], modules.[hc].
753371
  * Separated handle create from connect interface.
753371
  * Added a constructor for initialization.
753371
  * Moved up src/include/*.h to src.
753371
  * Created a symbol map file; dropped dso.h and hidden markings.
753371
753371
* Fri Sep 23 2005 Dan Walsh <dwalsh@redhat.com> 1.3.4-1
753371
- Update from NSA
753371
  * Merged dbase redesign patch from Ivan Gyurdiev.
753371
753371
* Wed Sep 21 2005 Dan Walsh <dwalsh@redhat.com> 1.3.3-1
753371
- Update from NSA
753371
  * Merged boolean record, stub record handler, and status codes 
753371
    patches from Ivan Gyurdiev.
753371
753371
* Tue Sep 20 2005 Dan Walsh <dwalsh@redhat.com> 1.3.2-1
753371
- Update from NSA
753371
  * Merged stub iterator functionality from Ivan Gyurdiev.
753371
  * Merged interface record patch from Ivan Gyurdiev.
753371
753371
* Wed Sep 14 2005 Dan Walsh <dwalsh@redhat.com> 1.3.1-1
753371
- Update from NSA
753371
  * Merged stub functionality for managing user and port records,
753371
  and record table code from Ivan Gyurdiev.
753371
  * Updated version for release.
753371
753371
* Thu Sep 1 2005 Dan Walsh <dwalsh@redhat.com> 1.1.6-1
753371
- Update from NSA
753371
  * Merged semod.conf template patch from Dan Walsh (Red Hat),
753371
  but restored location to /usr/share/semod/semod.conf.
753371
  * Fixed several bugs found by valgrind.
753371
  * Fixed bug in prior patch for the semod_build_module_list leak.
753371
  * Merged errno fix from Joshua Brindle (Tresys).
753371
  * Merged fix for semod_build_modules_list leak on error path
753371
    from Serge Hallyn (IBM).  Bug found by Coverity.
753371
753371
* Thu Aug 25 2005 Dan Walsh <dwalsh@redhat.com> 1.1.3-1
753371
- Update from NSA
753371
  * Merged errno fix from Joshua Brindle (Tresys).
753371
  * Merged fix for semod_build_modules_list leak on error path
753371
    from Serge Hallyn (IBM).  Bug found by Coverity.
753371
  * Merged several fixes from Serge Hallyn (IBM).  Bugs found by
753371
    Coverity.
753371
  * Fixed several other bugs and warnings.
753371
  * Merged patch to move module read/write code from libsemanage
753371
    to libsepol from Jason Tang (Tresys).  
753371
  * Merged relay records patch from Ivan Gyurdiev.
753371
  * Merged key extract patch from Ivan Gyurdiev.
753371
753371
- Initial version
753371
- Created by Stephen Smalley <sds@epoch.ncsc.mil>