64b877
%if 0%{?fedora} > 12
64b877
%global with_python3 1
64b877
%endif
64b877
64b877
%define ruby_inc %(pkg-config --cflags ruby)
64b877
%define ruby_sitearch %(ruby -rrbconfig -e "puts RbConfig::CONFIG['vendorarchdir']")
64b877
%define libsepolver 2.5-6
64b877
%{!?python_sitearch: %define python_sitearch %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib(1)")}
64b877
64b877
Summary: SELinux library and simple utilities
64b877
Name: libselinux
64b877
Version: 2.5
64b877
Release: 12%{?dist}
64b877
License: Public Domain
64b877
Group: System Environment/Libraries
64b877
# https://github.com/SELinuxProject/selinux/wiki/Releases
64b877
Source: https://raw.githubusercontent.com/wiki/SELinuxProject/selinux/files/releases/20160223/libselinux-2.5.tar.gz
64b877
Source1: selinuxconlist.8
64b877
Source2: selinuxdefcon.8
64b877
Url: https://github.com/SELinuxProject/selinux/wiki
64b877
# HEAD fac9844438fe495bd100dda199d2ed76b0003bfe
64b877
Patch1: libselinux-rhel.patch
64b877
BuildRequires: pkgconfig python python-devel ruby-devel ruby libsepol-static >= %{libsepolver} swig pcre-devel xz-devel
64b877
%if 0%{?with_python3}
64b877
BuildRequires: python3 python3-devel
64b877
%endif # if with_python3
64b877
Requires: libsepol%{?_isa} >= %{libsepolver} pcre
64b877
Conflicts: filesystem < 3 systemd < 219-20
64b877
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
64b877
64b877
%description
64b877
Security-enhanced Linux is a feature of the Linux® kernel and a number
64b877
of utilities with enhanced security functionality designed to add
64b877
mandatory access controls to Linux.  The Security-enhanced Linux
64b877
kernel contains new architectural components originally developed to
64b877
improve the security of the Flask operating system. These
64b877
architectural components provide general support for the enforcement
64b877
of many kinds of mandatory access control policies, including those
64b877
based on the concepts of Type Enforcement®, Role-based Access
64b877
Control, and Multi-level Security.
64b877
64b877
libselinux provides an API for SELinux applications to get and set
64b877
process and file security contexts and to obtain security policy
64b877
decisions.  Required for any applications that use the SELinux API.
64b877
64b877
%package utils
64b877
Summary: SELinux libselinux utilies
64b877
Group: Development/Libraries
64b877
Requires: libselinux%{?_isa} = %{version}-%{release}
64b877
64b877
%description utils
64b877
The libselinux-utils package contains the utilities
64b877
64b877
%package python
64b877
Summary: SELinux python bindings for libselinux
64b877
Group: Development/Libraries
64b877
Requires: libselinux%{?_isa} = %{version}-%{release}
64b877
64b877
%description python
64b877
The libselinux-python package contains the python bindings for developing 
64b877
SELinux applications. 
64b877
64b877
%if 0%{?with_python3}
64b877
%package python3
64b877
Summary: SELinux python 3 bindings for libselinux
64b877
Group: Development/Libraries
64b877
Requires: libselinux%{?_isa} = %{version}-%{release}
64b877
64b877
%description python3
64b877
The libselinux-python3 package contains python 3 bindings for developing
64b877
SELinux applications. 
64b877
%endif # with_python3
64b877
64b877
%package ruby
64b877
Summary: SELinux ruby bindings for libselinux
64b877
Group: Development/Libraries
64b877
Requires: libselinux%{?_isa} = %{version}-%{release}
64b877
Provides: ruby(selinux)
64b877
64b877
%description ruby
64b877
The libselinux-ruby package contains the ruby bindings for developing 
64b877
SELinux applications. 
64b877
64b877
%package devel
64b877
Summary: Header files and libraries used to build SELinux
64b877
Group: Development/Libraries
64b877
Requires: libselinux%{?_isa} = %{version}-%{release}
64b877
Requires: libsepol-devel%{?_isa} >= %{libsepolver}
64b877
64b877
%description devel
64b877
The libselinux-devel package contains the libraries and header files
64b877
needed for developing SELinux applications. 
64b877
64b877
%package static
64b877
Summary: Static libraries used to build SELinux
64b877
Group: Development/Libraries
64b877
Requires: libselinux-devel%{?_isa} = %{version}-%{release}
64b877
64b877
%description static
64b877
The libselinux-static package contains the static libraries
64b877
needed for developing SELinux applications. 
64b877
64b877
%prep
64b877
%setup -q -n libselinux-2.5
64b877
%patch1 -p1 -b .rhel
64b877
64b877
%build
64b877
export LDFLAGS="%{?__global_ldflags}"
64b877
# FIXME: export DISABLE_RPM="y"
64b877
64b877
# To support building the Python wrapper against multiple Python runtimes
64b877
# Define a function, for how to perform a "build" of the python wrapper against
64b877
# a specific runtime:
64b877
BuildPythonWrapper() {
64b877
  BinaryName=$1
64b877
64b877
  # Perform the build from the upstream Makefile:
64b877
  make \
64b877
    PYTHON=$BinaryName \
64b877
    LIBDIR="%{_libdir}" CFLAGS="-g %{optflags}" %{?_smp_mflags} \
64b877
    pywrap
64b877
}
64b877
64b877
make clean
64b877
make LIBDIR="%{_libdir}" CFLAGS="-g %{optflags}" %{?_smp_mflags} swigify
64b877
make LIBDIR="%{_libdir}" CFLAGS="-g %{optflags}" %{?_smp_mflags} all
64b877
64b877
BuildPythonWrapper %{__python}
64b877
%if 0%{?with_python3}
64b877
BuildPythonWrapper %{__python3}
64b877
%endif # with_python3
64b877
64b877
make RUBYINC="%{ruby_inc}" SHLIBDIR="%{_libdir}" LIBDIR="%{_libdir}" CFLAGS="-g %{optflags}" %{?_smp_mflags} rubywrap
64b877
64b877
%install
64b877
InstallPythonWrapper() {
64b877
  BinaryName=$1
64b877
64b877
  make \
64b877
    PYTHON=$BinaryName \
64b877
    LIBDIR="%{_libdir}" CFLAGS="-g %{optflags}" %{?_smp_mflags} \
64b877
    pywrap
64b877
64b877
  make \
64b877
    PYTHON=$BinaryName \
64b877
    DESTDIR="%{buildroot}" LIBDIR="%{buildroot}%{_libdir}" \
64b877
    SHLIBDIR="%{buildroot}/%{_lib}" BINDIR="%{buildroot}%{_bindir}" \
64b877
    SBINDIR="%{buildroot}%{_sbindir}" \
64b877
    install-pywrap
64b877
}
64b877
64b877
rm -rf %{buildroot}
64b877
mkdir -p %{buildroot}/%{_prefix}/lib/tmpfiles.d
64b877
mkdir -p %{buildroot}/%{_libdir} 
64b877
mkdir -p %{buildroot}%{_includedir} 
64b877
mkdir -p %{buildroot}%{_sbindir}
64b877
mkdir -p %{buildroot}/var/run/setrans
64b877
echo "d /var/run/setrans 0755 root root" > %{buildroot}/%{_prefix}/lib/tmpfiles.d/libselinux.conf
64b877
64b877
InstallPythonWrapper %{__python}
64b877
%if 0%{?with_python3}
64b877
InstallPythonWrapper %{__python3}
64b877
%endif # with_python3
64b877
64b877
make DESTDIR="%{buildroot}" LIBDIR="%{buildroot}%{_libdir}" SHLIBDIR="%{buildroot}%{_libdir}" BINDIR="%{buildroot}%{_bindir}" SBINDIR="%{buildroot}%{_sbindir}" RUBYINSTALL=%{buildroot}%{ruby_vendorarchdir} install install-rubywrap
64b877
64b877
# Nuke the files we don't want to distribute
64b877
rm -f %{buildroot}%{_sbindir}/compute_*
64b877
rm -f %{buildroot}%{_sbindir}/deftype
64b877
rm -f %{buildroot}%{_sbindir}/execcon
64b877
rm -f %{buildroot}%{_sbindir}/getenforcemode
64b877
rm -f %{buildroot}%{_sbindir}/getfilecon
64b877
rm -f %{buildroot}%{_sbindir}/getpidcon
64b877
rm -f %{buildroot}%{_sbindir}/mkdircon
64b877
rm -f %{buildroot}%{_sbindir}/policyvers
64b877
rm -f %{buildroot}%{_sbindir}/setfilecon
64b877
rm -f %{buildroot}%{_sbindir}/selinuxconfig
64b877
rm -f %{buildroot}%{_sbindir}/selinuxdisable
64b877
rm -f %{buildroot}%{_sbindir}/getseuser
64b877
rm -f %{buildroot}%{_sbindir}/togglesebool
64b877
rm -f %{buildroot}%{_sbindir}/selinux_check_securetty_context
64b877
mv %{buildroot}%{_sbindir}/getdefaultcon %{buildroot}%{_sbindir}/selinuxdefcon
64b877
mv %{buildroot}%{_sbindir}/getconlist %{buildroot}%{_sbindir}/selinuxconlist
64b877
install -d %{buildroot}%{_mandir}/man8/
64b877
install -m 644 %{SOURCE1} %{buildroot}%{_mandir}/man8/
64b877
install -m 644 %{SOURCE2} %{buildroot}%{_mandir}/man8/
64b877
rm -f %{buildroot}%{_mandir}/man8/togglesebool*
64b877
64b877
%clean
64b877
rm -rf %{buildroot}
64b877
64b877
%post -p /sbin/ldconfig
64b877
64b877
%postun -p /sbin/ldconfig
64b877
64b877
%files
64b877
%defattr(-,root,root,-)
64b877
%{_libdir}/libselinux.so.*
64b877
%ghost /var/run/setrans
64b877
%{_sbindir}/sefcontext_compile
64b877
%{_prefix}/lib/tmpfiles.d/libselinux.conf
64b877
64b877
%files utils
64b877
%defattr(-,root,root,-)
64b877
%{_sbindir}/avcstat
64b877
%{_sbindir}/getenforce
64b877
%{_sbindir}/getsebool
64b877
%{_sbindir}/matchpathcon
64b877
%{_sbindir}/selinuxconlist
64b877
%{_sbindir}/selinuxdefcon
64b877
%{_sbindir}/selinuxexeccon
64b877
%{_sbindir}/selinuxenabled
64b877
%{_sbindir}/setenforce
64b877
%{_sbindir}/selabel_digest
64b877
%{_sbindir}/selabel_lookup
64b877
%{_sbindir}/selabel_lookup_best_match
64b877
%{_sbindir}/selabel_partial_match
64b877
%{_sbindir}/selinux_restorecon
64b877
%{_mandir}/man5/*
64b877
%{_mandir}/man8/*
64b877
64b877
%files devel
64b877
%defattr(-,root,root,-)
64b877
%{_libdir}/libselinux.so
64b877
%{_libdir}/pkgconfig/libselinux.pc
64b877
%dir %{_libdir}/golang/src/pkg/github.com/selinux
64b877
%{_libdir}/golang/src/pkg/github.com/selinux/selinux.go
64b877
%dir %{_includedir}/selinux
64b877
%{_includedir}/selinux/*
64b877
%{_mandir}/man3/*
64b877
64b877
%files static
64b877
%defattr(-,root,root,-)
64b877
%{_libdir}/libselinux.a
64b877
64b877
%files python
64b877
%defattr(-,root,root,-)
64b877
%dir %{python_sitearch}/selinux
64b877
%{python_sitearch}/selinux/*
64b877
64b877
%if 0%{?with_python3}
64b877
%files python3
64b877
%defattr(-,root,root,-)
64b877
%dir %{python3_sitearch}/selinux
64b877
%dir %{python3_sitearch}/selinux/__pycache__
64b877
%{python3_sitearch}/selinux/*.py*
64b877
%{python3_sitearch}/selinux/*.so
64b877
%{python3_sitearch}/selinux/__pycache__/*
64b877
%endif with_python3
64b877
64b877
%files ruby
64b877
%defattr(-,root,root,-)
64b877
%{ruby_vendorarchdir}/selinux.so
64b877
64b877
%changelog
64b877
* Tue Oct 17 2017 Vit Mojzis <vmojzis@redhat.com> - 2.5-12
64b877
- Improve getfilecon man page (#1258513)
64b877
64b877
* Thu Mar 23 2017 Petr Lautrbach <plautrba@redhat.com> - 2.5-11
64b877
- Fix audit2why.init error reporting (#1435139)
64b877
64b877
* Tue Mar 14 2017 Petr Lautrbach <plautrba@redhat.com> - 2.5-10
64b877
- Add missing av_permission values (#1025931)
64b877
- Set an appropriate errno in booleans.c (#1402140)
64b877
- Change matchpathcon usage to match with matchpathcon manpage (#1412797)
64b877
64b877
* Tue Feb 21 2017 Petr Lautrbach <plautrba@redhat.com> - 2.5-9
64b877
- Fix pointer handling in realpath_not_final (#1404644)
64b877
64b877
* Fri Jan 20 2017 Vit Mojzis <vmojzis@redhat.com> - 2.5-8
64b877
- selinux_restorecon: fix realpath logic (#1386498)
64b877
64b877
* Thu Jan 05 2017 Petr Lautrbach <plautrba@redhat.com> - 2.5-7
64b877
- Keep recursing if matchpathcon returns ENOENT (#1406520)
64b877
64b877
* Fri Aug 26 2016 Petr Lautrbach <plautrba@redhat.com> 2.5-6
64b877
- Handle NULL pcre study data
64b877
64b877
* Wed Aug 10 2016 Petr Lautrbach <plautrba@redhat.com> 2.5-5
64b877
- Fix in tree compilation of utils that depend on libsepol
64b877
64b877
* Mon Jun 27 2016 Petr Lautrbach <plautrba@redhat.com> - 2.5-4
64b877
- Clarify is_selinux_mls_enabled() description
64b877
- Explain how to free policy type from selinux_getpolicytype()
64b877
- Compare absolute pathname in matchpathcon -V
64b877
- Add selinux_snapperd_contexts_path()
64b877
- Modify audit2why analyze function to use loaded policy
64b877
- Sort object files for deterministic linking order
64b877
- Respect CC and PKG_CONFIG environment variable
64b877
- Avoid mounting /proc outside of selinux_init_load_policy()
64b877
- Fix multiple spelling errors
64b877
64b877
* Wed Apr 27 2016 Petr Lautrbach <plautrba@redhat.com> - 2.5-3
64b877
- Fix setexecfilecon() to work better in a chroot (#1329931)
64b877
- Fix typo in sefcontext_compile.8 (#1320062)
64b877
64b877
* Mon Apr 11 2016 Petr Lautrbach <plautrba@redhat.com> - 2.5-2
64b877
- Fix location of selinuxfs mount point (#1321086)
64b877
- Only mount /proc if necessary
64b877
- procattr: return einval for <= 0 pid args
64b877
- procattr: return error on invalid pid_t inpu
64b877
64b877
* Tue Feb 23 2016 Petr Lautrbach <plautrba@redhat.com> 2.5-1
64b877
- Update to upstream release 2016-02-23
64b877
64b877
* Fri Feb 14 2014 Dan Walsh <dwalsh@redhat.com>  - 2.2.2-6
64b877
- Add additional go bindings for get*con calls
64b877
- Add go bindings test command
64b877
- Modify man pages of set*con calls to mention that they are thread specific
64b877
Resolves:#1053122
64b877
64b877
* Fri Jan 31 2014 Dan Walsh <dwalsh@redhat.com> - 2.2.2-5
64b877
- Move selinux.go to /usr/lib64/golang/src/pkg/github.com/selinux/selinux.go
64b877
- Add Int_to_mcs function to generate MCS labels from integers.
64b877
64b877
* Fri Jan 31 2014 Miroslav Grepl <mgrepl@redhat.com> - 2.2.2-4
64b877
- Fix libselinux.spec file
64b877
- Move selinux.go to /usr/lib64/golang/src/pkg/github.com/selinux/selinux.go
64b877
- Add Int_to_mcs function to generate MCS labels from integers.
64b877
64b877
* Tue Jan 28 2014 Daniel Mach <dmach@redhat.com> - 2.2.2-3
64b877
- Mass rebuild 2014-01-24
64b877
64b877
* Tue Jan 14 2014 Dan Walsh <dwalsh@redhat.com>  - 2.2.2-2
64b877
- Add ghost flag for /var/run/setrans
64b877
Resolves: #1053122
64b877
64b877
* Mon Jan 6 2014 Dan Walsh <dwalsh@redhat.com>  - 2.2.2-1
64b877
- Update to upstream 
64b877
      * Fix userspace AVC handling of per-domain permissive mode.
64b877
- Verify context is not null when passed into *setfilecon_raw
64b877
64b877
* Fri Dec 27 2013 Adam Williamson <awilliam@redhat.com> - 2.2.1-6
64b877
- revert unexplained change to rhat.patch which broke SELinux disablement
64b877
64b877
* Mon Dec 23 2013 Dan Walsh <dwalsh@redhat.com> - 2.2.1-5
64b877
- Verify context is not null when passed into lsetfilecon_raw
64b877
64b877
* Wed Dec 18 2013 Dan Walsh <dwalsh@redhat.com> - 2.2.1-4
64b877
- Mv selinux.go to /usr/share/gocode/src/selinux
64b877
- Add golang support to selinux.
64b877
64b877
* Tue Dec 17 2013 Daniel Mach <dmach@redhat.com> - 2.2.1-3
64b877
- Mass rebuild 2013-12-27
64b877
64b877
* Thu Dec 5 2013 Dan Walsh <dwalsh@redhat.com> - 2.2.1-2
64b877
- Remove togglesebool man page
64b877
Resolves: #1038606
64b877
64b877
* Mon Nov 25 2013 Dan Walsh <dwalsh@redhat.com> - 2.2.1-1
64b877
- Update to upstream 
64b877
	* Remove -lpthread from pkg-config file; it is not required.
64b877
- Add support for policy compressed with xv
64b877
64b877
* Thu Oct 31 2013 Dan Walsh <dwalsh@redhat.com> - 2.2-1
64b877
- Update to upstream 
64b877
	* Fix avc_has_perm() returns -1 even when SELinux is in permissive mode.
64b877
	* Support overriding Makefile RANLIB from Sven Vermeulen.
64b877
	* Update pkgconfig definition from Sven Vermeulen.
64b877
	* Mount sysfs before trying to mount selinuxfs from Sven Vermeulen.
64b877
	* Fix man pages from Laurent Bigonville.
64b877
	* Support overriding PATH  and LIBBASE in Makefiles from Laurent Bigonville.
64b877
	* Fix LDFLAGS usage from Laurent Bigonville
64b877
	* Avoid shadowing stat in load_mmap from Joe MacDonald.
64b877
	* Support building on older PCRE libraries from Joe MacDonald.
64b877
	* Fix handling of temporary file in sefcontext_compile from Dan Walsh.
64b877
	* Fix procattr cache from Dan Walsh.
64b877
	* Define python constants for getenforce result from Dan Walsh.
64b877
	* Fix label substitution handling of / from Dan Walsh.
64b877
	* Add selinux_current_policy_path from Dan Walsh.
64b877
	* Change get_context_list to only return good matches from Dan Walsh.
64b877
	* Support udev-197 and higher from Sven Vermeulen and Dan Walsh.
64b877
	* Add support for local substitutions from Dan Walsh.
64b877
	* Change setfilecon to not return ENOSUP if context is already correct from Dan Walsh.
64b877
	* Python wrapper leak fixes from Dan Walsh.
64b877
	* Export SELINUX_TRANS_DIR definition in selinux.h from Dan Walsh.
64b877
	* Add selinux_systemd_contexts_path from Dan Walsh.
64b877
	* Add selinux_set_policy_root from Dan Walsh.
64b877
	* Add man page for sefcontext_compile from Dan Walsh.
64b877
64b877
* Fri Oct 4 2013 Dan Walsh <dwalsh@redhat.com> - 2.1.13-21
64b877
- Add systemd_contexts support
64b877
- Do substitutions on a local sub followed by a dist sub
64b877
Resolves: #971425
64b877
64b877
* Thu Oct 3 2013 Dan Walsh <dwalsh@redhat.com> - 2.1.13-20
64b877
- Eliminate requirement on pthread library, by applying patch for Jakub Jelinek 
64b877
Resolves: #1013801
64b877
64b877
* Mon Sep 16 2013 Dan Walsh <dwalsh@redhat.com> - 2.1.13-19
64b877
- Fix handling of libselinux getconlist with only one entry
64b877
64b877
* Tue Sep 3 2013 Dan Walsh <dwalsh@redhat.com> - 2.1.13-17
64b877
- Add Python constants for SELinux enforcing modes
64b877
64b877
* Sat Aug 03 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.1.13-17
64b877
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
64b877
64b877
* Fri Jun 28 2013 Dan Walsh <dwalsh@redhat.com> - 2.1.13-16
64b877
- Add sefcontext_compile.8  man page
64b877
- Add Russell Coker  patch to fix man pages
64b877
- Add patches from Laurent Bigonville to fix Makefiles for debian.
64b877
- modify spec file to use %{_prefix}/lib
64b877
64b877
* Mon May 6 2013 Dan Walsh <dwalsh@redhat.com> - 2.1.13-15
64b877
- Fix patch that Handles substitutions for /
64b877
64b877
* Wed Apr 17 2013 Dan Walsh <dwalsh@redhat.com> - 2.1.13-14
64b877
- Handle substitutions for /
64b877
- semanage fcontext -a -e  / /opt/rh/devtoolset-2/root
64b877
64b877
* Tue Apr 9 2013 Dan Walsh <dwalsh@redhat.com> - 2.1.13-13
64b877
- Add Eric Paris patch to fix procattr calls after a fork.
64b877
64b877
* Tue Mar 26 2013 Dan Walsh <dwalsh@redhat.com> - 2.1.13-12
64b877
- Move secolor.conf.5 into mcstrans package and out of libselinux 
64b877
64b877
* Wed Mar 20 2013 Dan Walsh <dwalsh@redhat.com> - 2.1.13-11
64b877
- Fix python bindings for selinux_check_access
64b877
64b877
* Tue Mar 19 2013 Dan Walsh <dwalsh@redhat.com> - 2.1.13-10
64b877
- Fix reseting the policy root in matchpathcon
64b877
64b877
* Wed Mar 6 2013 Dan Walsh <dwalsh@redhat.com> - 2.1.13-9
64b877
- Cleanup setfcontext_compile atomic patch
64b877
- Add matchpathcon -P /etc/selinux/mls support by allowing users to set alternate root
64b877
- Make sure we set exit codes from selinux_label calls to ENOENT or SUCCESS
64b877
64b877
* Wed Mar 6 2013 Dan Walsh <dwalsh@redhat.com> - 2.1.13-8
64b877
- Make setfcontext_compile atomic
64b877
64b877
* Wed Mar 6 2013 Dan Walsh <dwalsh@redhat.com> - 2.1.13-7
64b877
- Fix memory leak in set*con calls.
64b877
64b877
* Thu Feb 28 2013 Dan Walsh <dwalsh@redhat.com> - 2.1.13-6
64b877
- Move matchpathcon to -utils package
64b877
- Remove togglesebool
64b877
64b877
* Thu Feb 21 2013 Dan Walsh <dwalsh@redhat.com> - 2.1.13-5
64b877
- Fix selinux man page to reflect what current selinux policy is.
64b877
64b877
* Fri Feb 15 2013 Dan Walsh <dwalsh@redhat.com> - 2.1.13-4
64b877
- Add new constant SETRANS_DIR which points to the directory where mstransd can find the socket and libvirt can write its translations files.
64b877
64b877
* Fri Feb 15 2013 Dan Walsh <dwalsh@redhat.com> - 2.1.13-3
64b877
- Bring back selinux_current_policy_path
64b877
64b877
* Thu Feb 14 2013 Dan Walsh <dwalsh@redhat.com> - 2.1.13-2
64b877
- Revert some changes which are causing the wrong policy version file to be created
64b877
64b877
* Thu Feb 7 2013 Dan Walsh <dwalsh@redhat.com> - 2.1.13-1
64b877
- Update to upstream 
64b877
        * audit2why: make sure path is nul terminated
64b877
        * utils: new file context regex compiler
64b877
        * label_file: use precompiled filecontext when possible
64b877
        * do not leak mmapfd
64b877
        * sefcontontext_compile: Add error handling to help debug problems in libsemanage.
64b877
        * man: make selinux.8 mention service man pages
64b877
        * audit2why: Fix segfault if finish() called twice
64b877
        * audit2why: do not leak on multiple init() calls
64b877
        * mode_to_security_class: interface to translate a mode_t in to a security class
64b877
        * audit2why: Cleanup audit2why analysys function
64b877
        * man: Fix program synopsis and function prototypes in man pages
64b877
        * man: Fix man pages formatting
64b877
        * man: Fix typo in man page
64b877
        * man: Add references and man page links to _raw function variants
64b877
        * Use ENOTSUP instead of EOPNOTSUPP for getfilecon functions
64b877
        * man: context_new(3): fix the return value description
64b877
        * selinux_status_open: handle error from sysconf
64b877
        * selinux_status_open: do not leak statusfd on exec
64b877
        * Fix errors found by coverity
64b877
        * Change boooleans.subs to booleans.subs_dist.
64b877
        * optimize set*con functions
64b877
        * pkg-config do not specifc ruby version
64b877
        * unmap file contexts on selabel_close()
64b877
        * do not leak file contexts with mmap'd backend
64b877
        * sefcontext_compile: do not leak fd on error
64b877
        * matchmediacon: do not leak fd 
64b877
        * src/label_android_property: do not leak fd on error
64b877
64b877
* Sun Jan 27 2013 Dan Walsh <dwalsh@redhat.com> - 2.1.12-20
64b877
- Update to latest patches from eparis/Upstream
64b877
64b877
* Fri Jan 25 2013 Dan Walsh <dwalsh@redhat.com> - 2.1.12-19
64b877
- Update to latest patches from eparis/Upstream
64b877
64b877
* Wed Jan 23 2013 Dan Walsh <dwalsh@redhat.com> - 2.1.12-18
64b877
- Try procatt speedup patch again
64b877
64b877
* Wed Jan 23 2013 Dan Walsh <dwalsh@redhat.com> - 2.1.12-17
64b877
- Roll back procattr speedups since it seems to be screwing up systemd labeling.
64b877
64b877
* Tue Jan 22 2013 Dan Walsh <dwalsh@redhat.com> - 2.1.12-16
64b877
- Fix tid handling for setfscreatecon, old patch still broken in libvirt
64b877
64b877
* Wed Jan 16 2013 Dan Walsh <dwalsh@redhat.com> - 2.1.12-15
64b877
- Fix tid handling for setfscreatecon, old patch still broken in libvirt
64b877
64b877
* Mon Jan 14 2013 Dan Walsh <dwalsh@redhat.com> - 2.1.12-14
64b877
- setfscreatecon after fork was broken by the Set*con patch.
64b877
- We needed to reset the thread variables after a fork.
64b877
64b877
* Thu Jan 10 2013 Dan Walsh <dwalsh@redhat.com> - 2.1.12-13
64b877
- Fix setfscreatecon call to handle failure mode, which was breaking udev
64b877
64b877
* Wed Jan 9 2013 Dan Walsh <dwalsh@redhat.com> - 2.1.12-12
64b877
- Ondrej Oprala patch to optimize set*con functions
64b877
-    Set*con now caches the security context and only re-sets it if it changes.
64b877
64b877
* Tue Jan 8 2013 Dan Walsh <dwalsh@redhat.com> - 2.1.12-11
64b877
- Rebuild against latest libsepol
64b877
64b877
* Fri Jan 4 2013 Dan Walsh <dwalsh@redhat.com> - 2.1.12-10
64b877
- Update to latest patches from eparis/Upstream
64b877
-    Fix errors found by coverity
64b877
-    set the sepol_compute_av_reason_buffer flag to 0.  This means calculate denials only?
64b877
-    audit2why: remove a useless policy vers variable
64b877
-    audit2why: use the new constraint information
64b877
64b877
* Mon Nov 19 2012 Dan Walsh <dwalsh@redhat.com> - 2.1.12-9
64b877
- Rebuild with latest libsepol
64b877
64b877
* Fri Nov 16 2012 Dan Walsh <dwalsh@redhat.com> - 2.1.12-8
64b877
- Return EPERM if login program can not reach default label for user
64b877
- Attempt to return container info from audit2why
64b877
64b877
* Thu Nov 1 2012 Dan Walsh <dwalsh@redhat.com> - 2.1.12-7
64b877
- Apply patch from eparis to fix leaked file descriptor in new labeling code
64b877
64b877
* Fri Oct 19 2012 Dan Walsh <dwalsh@redhat.com> - 2.1.12-6
64b877
- Add new function mode_to_security_class which takes mode instead of a string.
64b877
- Possibly will be used with coreutils.
64b877
64b877
* Mon Oct 15 2012 Dan Walsh <dwalsh@redhat.com> - 2.1.12-5
64b877
- Add back selinuxconlist and selinuxdefcon man pages
64b877
64b877
* Mon Oct 15 2012 Dan Walsh <dwalsh@redhat.com> - 2.1.12-4
64b877
- Fix segfault from calling audit2why.finish() multiple times
64b877
64b877
* Fri Oct 12 2012 Dan Walsh <dwalsh@redhat.com> - 2.1.12-3
64b877
- Fix up selinux man page to reference service man pages
64b877
64b877
* Wed Sep 19 2012 Dan Walsh <dwalsh@redhat.com> - 2.1.12-2
64b877
- Rebuild with fixed libsepol
64b877
64b877
* Thu Sep 13 2012 Dan Walsh <dwalsh@redhat.com> - 2.1.12-1
64b877
- Update to upstream 
64b877
	* Add support for lxc_contexts_path
64b877
	* utils: add service to getdefaultcon
64b877
	* libsemanage: do not set soname needlessly
64b877
	* libsemanage: remove PYTHONLIBDIR and ruby equivalent
64b877
	* boolean name equivalency
64b877
	* getsebool: support boolean name substitution
64b877
	* Add man page for new selinux_boolean_sub function.
64b877
	* expose selinux_boolean_sub
64b877
	* matchpathcon: add -m option to force file type check
64b877
	* utils: avcstat: clear sa_mask set
64b877
	* seusers: Check for strchr failure
64b877
	* booleans: initialize pointer to silence coveriety
64b877
	* stop messages when SELinux disabled
64b877
	* label_file: use PCRE instead of glibc regex functions
64b877
	* label_file: remove all typedefs
64b877
	* label_file: move definitions to include file
64b877
	* label_file: do string to mode_t conversion in a helper function
64b877
	* label_file: move error reporting back into caller
64b877
	* label_file: move stem/spec handling to header
64b877
	* label_file: drop useless ncomp field from label_file data
64b877
	* label_file: move spec_hasMetaChars to header
64b877
	* label_file: fix potential read past buffer in spec_hasMetaChars
64b877
	* label_file: move regex sorting to the header
64b877
	* label_file: add accessors for the pcre extra data
64b877
	* label_file: only run regex files one time
64b877
	* label_file: new process_file function
64b877
	* label_file: break up find_stem_from_spec
64b877
	* label_file: struct reorg
64b877
	* label_file: only run array once when sorting
64b877
	* Ensure that we only close the selinux netlink socket once.
64b877
	* improve the file_contexts.5 manual page
64b877
64b877
* Fri Aug 03 2012 David Malcolm <dmalcolm@redhat.com> - 2.1.11-6
64b877
- rebuild for https://fedoraproject.org/wiki/Features/Python_3.3
64b877
64b877
* Wed Aug  1 2012 David Malcolm <dmalcolm@redhat.com> - 2.1.11-5
64b877
- make with_python3 be conditional on fedora
64b877
64b877
* Thu Jul 19 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.1.11-4
64b877
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
64b877
64b877
* Mon Jul 16 2012 Dan Walsh <dwalsh@redhat.com> - 2.1.11-3
64b877
- Move the tmpfiles.d content from /etc/tmpfiles.d to /usr/lib/tmpfiles.d
64b877
64b877
* Fri Jul 13 2012 Dan Walsh <dwalsh@redhat.com> - 2.1.11-2
64b877
- Revert Eric Paris Patch for selinux_binary_policy_path
64b877
64b877
* Wed Jul 4 2012 Dan Walsh <dwalsh@redhat.com> - 2.1.11-1
64b877
- Update to upstream 
64b877
	* Fortify source now requires all code to be compiled with -O flag
64b877
	* asprintf return code must be checked
64b877
	* avc_netlink_recieve handle EINTR
64b877
	* audit2why: silence -Wmissing-prototypes warning
64b877
	* libsemanage: remove build warning when build swig c files
64b877
	* matchpathcon: bad handling of symlinks in /
64b877
	* seusers: remove unused lineno
64b877
	* seusers: getseuser: gracefully handle NULL service
64b877
	* New Android property labeling backend
64b877
	* label_android_property whitespace cleanups
64b877
	* additional makefile support for rubywrap
64b877
64b877
* Mon Jun 11 2012 Dan Walsh <dwalsh@redhat.com> - 2.1.10-5
64b877
- Fix booleans.subs name, change function name to selinux_boolean_sub, 
64b877
  add man page, minor fixes to the function
64b877
64b877
* Fri May 25 2012 Dan Walsh <dwalsh@redhat.com> - 2.1.10-4
64b877
- Fix to compile with Fortify source
64b877
      * Add -O compiler flag
64b877
      * Check return code from asprintf
64b877
- Fix handling of symbolic links in / by realpath_not_final
64b877
64b877
* Tue Apr 17 2012 Dan Walsh <dwalsh@redhat.com> - 2.1.10-3
64b877
- Add support for lxc contexts file
64b877
64b877
* Fri Mar 30 2012 Dan Walsh <dwalsh@redhat.com> - 2.1.10-2
64b877
- Add support fot boolean subs file
64b877
64b877
* Thu Mar 29 2012 Dan Walsh <dwalsh@redhat.com> - 2.1.10-1
64b877
- Update to upstream 
64b877
	* Fix dead links to www.nsa.gov/selinux
64b877
	* Remove jump over variable declaration
64b877
	* Fix old style function definitions
64b877
	* Fix const-correctness
64b877
	* Remove unused flush_class_cache method
64b877
	* Add prototype decl for destructor
64b877
	* Add more printf format annotations
64b877
	* Add printf format attribute annotation to die() method
64b877
	* Fix const-ness of parameters & make usage() methods static
64b877
	* Enable many more gcc warnings for libselinux/src/ builds
64b877
	* utils: Enable many more gcc warnings for libselinux/utils builds
64b877
	* Change annotation on include/selinux/avc.h to avoid upsetting SWIG
64b877
	* Ensure there is a prototype for 'matchpathcon_lib_destructor'
64b877
	* Update Makefiles to handle /usrmove
64b877
	* utils: Stop separating out matchpathcon as something special
64b877
	* pkg-config to figure out where ruby include files are located
64b877
	* build with either ruby 1.9 or ruby 1.8
64b877
	* assert if avc_init() not called
64b877
	* take security_deny_unknown into account
64b877
	* security_compute_create_name(3)
64b877
	* Do not link against python library, this is considered
64b877
	* bad practice in debian
64b877
	* Hide unnecessarily-exported library destructors
64b877
64b877
* Thu Feb 16 2012 Dan Walsh <dwalsh@redhat.com> - 2.1.9-9
64b877
- Add selinux_current_policy_path to return /sys/fs/selinux/policy if it exists
64b877
- Otherwise search for policy on disk
64b877
64b877
* Wed Feb 15 2012 Dan Walsh <dwalsh@redhat.com> - 2.1.9-8
64b877
- Change selinux_binary_policy_path to return /sys/fs/selinux/policy
64b877
- Add selinux_installed_policy_path to return what selinux_binary_policy_path used to return
64b877
- avc_has_perm will now return yes if the machine is in permissive mode
64b877
- Make work with ruby-1.9
64b877
64b877
* Fri Feb 3 2012 Dan Walsh <dwalsh@redhat.com> - 2.1.9-7
64b877
- avc_netlink_recieve should continue to poll if it receinves an EINTR rather 
64b877
64b877
* Sun Jan 29 2012 Kay Sievers <kay@redhat.com> - 2.1.9-6
64b877
- use /sbin/ldconfig, glibc does not provide
64b877
  /usr/sbin/ldconfig in the RPM database for now
64b877
64b877
* Fri Jan 27 2012 Dan Walsh <dwalsh@redhat.com> - 2.1.9-5
64b877
- Rebuild with cleaned up upstream to work in /usr
64b877
64b877
* Wed Jan 25 2012 Harald Hoyer <harald@redhat.com> 2.1.9-4
64b877
- install everything in /usr
64b877
  https://fedoraproject.org/wiki/Features/UsrMove
64b877
64b877
* Mon Jan 23 2012 Dan Walsh <dwalsh@redhat.com> - 2.1.9-3
64b877
- Add Dan Berrange code cleanup patches.
64b877
64b877
* Wed Jan 4 2012 Dan Walsh <dwalsh@redhat.com> - 2.1.9-2
64b877
- Fix selabal_open man page to refer to proper selinux_opt structure
64b877
64b877
* Wed Dec 21 2011 Dan Walsh <dwalsh@redhat.com> - 2.1.9-1
64b877
-Update to upstream
64b877
	* Fix setenforce man page to refer to selinux man page
64b877
	* Cleanup Man pages
64b877
	* merge freecon with getcon man page
64b877
64b877
* Mon Dec 19 2011 Dan Walsh <dwalsh@redhat.com> - 2.1.8-5
64b877
- Add patch from Richard Haines
64b877
      When selabel_lookup found an invalid context with validation enabled, it
64b877
      always stated it was 'file_contexts' whether media, x, db or file.
64b877
      The fix is to store the spec file name in the selabel_lookup_rec on
64b877
      selabel_open and use this as output for logs. Also a minor fix if key is
64b877
      NULL to stop seg faults.
64b877
- Fix setenforce manage page.
64b877
64b877
* Thu Dec 15 2011 Dan Walsh <dwalsh@redhat.com> - 2.1.8-4
64b877
- Rebuild with new libsepol
64b877
64b877
* Tue Dec 6 2011 Dan Walsh <dwalsh@redhat.com> - 2.1.8-2
64b877
- Fix setenforce man page, from Miroslav Grepl
64b877
64b877
* Tue Dec 6 2011 Dan Walsh <dwalsh@redhat.com> - 2.1.8-1
64b877
- Upgrade to upstream
64b877
	* selinuxswig_python.i: don't make syscall if it won't change anything
64b877
	* Remove assert in security_get_boolean_names(3)
64b877
	* Mapped compute functions now obey deny_unknown flag
64b877
	* get_default_type now sets EINVAL if no entry.
64b877
	* return EINVAL if invalid role selected
64b877
	* Updated selabel_file(5) man page
64b877
	* Updated selabel_db(5) man page
64b877
	* Updated selabel_media(5) man page
64b877
	* Updated selabel_x(5) man page
64b877
	* Add man/man5 man pages
64b877
	* Add man/man5 man pages
64b877
	* Add man/man5 man pages
64b877
	* use -W and -Werror in utils
64b877
64b877
* Tue Nov 29 2011 Dan Walsh <dwalsh@redhat.com> - 2.1.7-2
64b877
- Change python binding for restorecon to check if the context matches.
64b877
- If it does do not reset
64b877
64b877
* Fri Nov 4 2011 Dan Walsh <dwalsh@redhat.com> - 2.1.7-1
64b877
- Upgrade to upstream
64b877
	* Makefiles: syntax, convert all ${VAR} to $(VAR)
64b877
	* load_policy: handle selinux=0 and /sys/fs/selinux not exist
64b877
	* regenerate .pc on VERSION change
64b877
	* label: cosmetic cleanups
64b877
	* simple interface for access checks
64b877
	* Don't reinitialize avc_init if it has been called previously
64b877
	* seusers: fix to handle large sets of groups
64b877
	* audit2why: close fd on enomem
64b877
	* rename and export symlink_realpath
64b877
	* label_file: style changes to make Eric happy.
64b877
64b877
* Mon Oct 24 2011 Dan Walsh <dwalsh@redhat.com> - 2.1.6-4
64b877
- Apply libselinux patch to handle large groups in seusers.
64b877
64b877
* Wed Oct 19 2011 Dan Walsh <dwalsh@redhat.com> - 2.1.6-3
64b877
- Add selinux_check_access function. Needed for passwd, chfn, chsh
64b877
64b877
* Thu Sep 22 2011 Dan Walsh <dwalsh@redhat.com> - 2.1.6-2
64b877
- Handle situation where selinux=0 passed to the kernel and both /selinux and 
64b877
64b877
* Mon Sep 19 2011 Dan Walsh <dwalsh@redhat.com> - 2.1.6-1
64b877
-Update to upstream
64b877
	* utils: matchpathcon: remove duplicate declaration
64b877
	* src: matchpathcon: use myprintf not fprintf
64b877
	* src: matchpathcon: make sure resolved path starts
64b877
	* put libselinux.so.1 in /lib not /usr/lib
64b877
	* tree: default make target to all not
64b877
64b877
* Wed Sep 14 2011 Dan Walsh <dwalsh@redhat.com> - 2.1.5-5
64b877
- Switch to use ":" as prefix separator rather then ";"
64b877
64b877
* Thu Sep  8 2011 Ville Skyttä <ville.skytta@iki.fi> - 2.1.5-4
64b877
- Avoid unnecessary shell invocation in %%post.
64b877
64b877
* Tue Sep 6 2011 Dan Walsh <dwalsh@redhat.com> - 2.1.5-3
64b877
- Fix handling of subset labeling that is causing segfault in restorecon
64b877
64b877
* Fri Sep 2 2011 Dan Walsh <dwalsh@redhat.com> - 2.1.5-2
64b877
- Change matchpathcon_init_prefix and selabel_open to allow multiple initial 
64b877
prefixes.  Now you can specify a ";" separated list of prefixes and the 
64b877
labeling system will only load regular expressions that match these prefixes.
64b877
64b877
* Tue Aug 30 2011 Dan Walsh <dwalsh@redhat.com> - 2.1.5-1
64b877
- Change matchpatcon to use proper myprintf
64b877
- Fix symlink_realpath to always include "/"
64b877
- Update to upstream
64b877
	* selinux_file_context_verify function returns wrong value.
64b877
	* move realpath helper to matchpathcon library
64b877
	* python wrapper makefile changes
64b877
64b877
* Mon Aug 22 2011 Dan Walsh <dwalsh@redhat.com> - 2.1.4-2
64b877
- Move to new Makefile that can build with or without PYTHON being set
64b877
64b877
* Thu Aug 18 2011 Dan Walsh <dwalsh@redhat.com> - 2.1.4-1
64b877
-Update to upstream
64b877
2.1.4 2011-0817
64b877
	* mapping fix for invalid class/perms after selinux_set_mapping
64b877
	* audit2why: work around python bug not defining
64b877
	* resolv symlinks and dot directories before matching
64b877
64b877
2.1.2 2011-0803
64b877
	* audit2allow: do not print statistics
64b877
	* make python bindings for restorecon work on relative path
64b877
	* fix python audit2why binding error
64b877
	* support new python3 functions
64b877
	* do not check fcontext duplicates on use
64b877
	* Patch for python3 for libselinux
64b877
64b877
2.1.1 2011-08-02
64b877
	* move .gitignore into utils
64b877
	* new setexecon utility
64b877
	* selabel_open fix processing of substitution files
64b877
	* mountpoint changing patch.
64b877
	* simplify SRCS in Makefile
64b877
64b877
2.1.1 2011-08-01
64b877
	* Remove generated files, introduce more .gitignore
64b877
64b877
64b877
64b877
* Thu Jul 28 2011 Dan Walsh <dwalsh@redhat.com> - 2.1.0-1
64b877
-Update to upstream
64b877
	* Release, minor version bump
64b877
	* Give correct names to mount points in load_policy by Dan Walsh.
64b877
	* Make sure selinux state is reported correctly if selinux is disabled or
64b877
	fails to load by Dan Walsh.
64b877
	* Fix crash if selinux_key_create was never called by Dan Walsh.
64b877
	* Add new file_context.subs_dist for distro specific filecon substitutions
64b877
	by Dan Walsh.
64b877
	* Update man pages for selinux_color_* functions by Richard Haines.
64b877
64b877
* Mon Jun 13 2011 Dan Walsh <dwalsh@redhat.com> - 2.0.102-6
64b877
- Only call dups check within selabel/matchpathcon if you are validating the 
64b877
context
64b877
- This seems to speed the loading of labels by 4 times.
64b877
64b877
* Fri Apr 29 2011 Dan Walsh <dwalsh@redhat.com> - 2.0.102-5
64b877
- Move /selinux to /sys/fs/selinux
64b877
- Add selinuxexeccon
64b877
- Add realpath to matchpathcon to handle matchpathcon * type queries.
64b877
64b877
* Thu Apr 21 2011 Dan Walsh <dwalsh@redhat.com> - 2.0.102-4
64b877
- Update for latest libsepol
64b877
64b877
* Mon Apr 18 2011 Dan Walsh <dwalsh@redhat.com> - 2.0.102-3
64b877
- Update for latest libsepol
64b877
64b877
* Wed Apr 13 2011 Dan Walsh <dwalsh@redhat.com> - 2.0.102-2
64b877
- Fix restorecon python binding to accept relative paths
64b877
64b877
* Tue Apr 12 2011 Dan Walsh <dwalsh@redhat.com> - 2.0.102-1
64b877
-Update to upstream
64b877
	* Give correct names to mount points in load_policy by Dan Walsh.
64b877
	* Make sure selinux state is reported correctly if selinux is disabled or
64b877
	fails to load by Dan Walsh.
64b877
	* Fix crash if selinux_key_create was never called by Dan Walsh.
64b877
	* Add new file_context.subs_dist for distro specific filecon substitutions
64b877
	by Dan Walsh.
64b877
	* Update man pages for selinux_color_* functions by Richard Haines.
64b877
64b877
* Wed Apr 6 2011 Dan Walsh <dwalsh@redhat.com> - 2.0.101-1
64b877
- Clean up patch to make handling of constructor  cleanup more portable
64b877
  * db_language object class support for selabel_lookup from KaiGai Kohei.
64b877
  * Library destructors for thread local storage keys from Eamon Walsh.
64b877
64b877
* Tue Apr 5 2011 Dan Walsh <dwalsh@redhat.com> - 2.0.99-5
64b877
- Add distribution subs path
64b877
64b877
* Tue Apr 5 2011 Dan Walsh <dwalsh@redhat.com> - 2.0.99-4
64b877
Add patch from dbhole@redhat.com to initialize thread keys to -1
64b877
Errors were being seen in libpthread/libdl that were related
64b877
to corrupt thread specific keys. Global destructors that are called on dl 
64b877
unload. During destruction delete a thread specific key without checking 
64b877
if it has been initialized. Since the constructor is not called each time 
64b877
(i.e. key is not initialized with pthread_key_create each time), and the 
64b877
default is 0, there is a possibility that key 0 for an active thread gets 
64b877
deleted. This is exactly what is happening in case of OpenJDK.
64b877
64b877
Workaround patch that initializes the key to -1. Thus if the constructor is not
64b877
called, the destructor tries to delete key -1 which is deemed invalid by 
64b877
pthread_key_delete, and is ignored.
64b877
64b877
* Tue Apr 5 2011 Dan Walsh <dwalsh@redhat.com> - 2.0.99-3
64b877
- Call fini_selinuxmnt if selinux is disabled, to cause is_selinux_disabled() to report correct data
64b877
64b877
* Fri Apr 1 2011 Dan Walsh <dwalsh@redhat.com> - 2.0.99-2
64b877
- Change mount source options to use "proc" and "selinuxfs"
64b877
64b877
* Tue Mar 1 2011 Dan Walsh <dwalsh@redhat.com> - 2.0.99-1
64b877
- Update to upstream
64b877
  * Turn off default user handling when computing user contexts by Dan Walsh
64b877
64b877
* Tue Feb 08 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org>
64b877
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
64b877
64b877
* Tue Feb 1 2011 Dan Walsh <dwalsh@redhat.com> - 2.0.98-3
64b877
- Fixup selinux man page
64b877
64b877
* Tue Jan 18 2011 Dan Walsh <dwalsh@redhat.com> - 2.0.98-2
64b877
- Fix Makefile to use pkg-config --cflags python3 to discover include paths
64b877
64b877
* Tue Dec 21 2010 Dan Walsh <dwalsh@redhat.com> - 2.0.98-1
64b877
- Update to upstream 
64b877
  - Turn off fallback in to SELINUX_DEFAULTUSER in get_context_list
64b877
64b877
* Mon Dec 6 2010 Dan Walsh <dwalsh@redhat.com> - 2.0.97-1
64b877
- Update to upstream 
64b877
	* Thread local storage fixes from Eamon Walsh.
64b877
64b877
* Sat Dec 4 2010 Dan Walsh <dwalsh@redhat.com> - 2.0.96-9
64b877
- Add /etc/tmpfiles.d support for /var/run/setrans
64b877
64b877
* Wed Nov 24 2010 Dan Walsh <dwalsh@redhat.com> - 2.0.96-8
64b877
- Ghost /var/run/setrans
64b877
64b877
* Wed Sep 29 2010 jkeating - 2.0.96-7
64b877
- Rebuilt for gcc bug 634757
64b877
64b877
* Thu Sep 16 2010 Adam Tkac <atkac redhat com> - 2.0.96-6
64b877
- rebuild via updated swig (#624674)
64b877
64b877
* Sun Aug 22 2010 Dan Walsh <dwalsh@redhat.com> - 2.0.96-5
64b877
- Update for python 3.2a1
64b877
64b877
* Tue Jul 27 2010 Dan Walsh <dwalsh@redhat.com> - 2.0.96-4
64b877
- Turn off fallback in to SELINUX_DEFAULTUSER in get_context_list
64b877
64b877
* Wed Jul 21 2010 David Malcolm <dmalcolm@redhat.com> - 2.0.96-3
64b877
- Rebuilt for https://fedoraproject.org/wiki/Features/Python_2.7/MassRebuild
64b877
64b877
* Fri Jun 25 2010 Dan Walsh <dwalsh@redhat.com> - 2.0.96-2
64b877
- Turn off messages in audit2why
64b877
64b877
* Wed Mar 24 2010 Dan Walsh <dwalsh@redhat.com> - 2.0.96-1
64b877
- Update to upstream 
64b877
	* Add const qualifiers to public API where appropriate by KaiGai Kohei.
64b877
64b877
2.0.95 2010-06-10
64b877
	* Remove duplicate slashes in paths in selabel_lookup from Chad Sellers
64b877
	* Adds a chcon method to the libselinux python bindings from Steve Lawrence
64b877
- add python3 subpackage from David Malcolm 
64b877
64b877
* Wed Mar 24 2010 Dan Walsh <dwalsh@redhat.com> - 2.0.94-1
64b877
* Set errno=EINVAL for invalid contexts from Dan Walsh.
64b877
64b877
* Tue Mar 16 2010 Dan Walsh <dwalsh@redhat.com> - 2.0.93-1
64b877
- Update to upstream 
64b877
	* Show strerror for security_getenforce() by Colin Waters.
64b877
	* Merged selabel database support by KaiGai Kohei.
64b877
	* Modify netlink socket blocking code by KaiGai Kohei.
64b877
64b877
* Sun Mar 7 2010 Dan Walsh <dwalsh@redhat.com> - 2.0.92-1
64b877
- Update to upstream 
64b877
	* Fix from Eric Paris to fix leak on non-selinux systems.
64b877
	* regenerate swig wrappers
64b877
	* pkgconfig fix to respect LIBDIR from Dan Walsh.
64b877
64b877
* Wed Feb 24 2010 Dan Walsh <dwalsh@redhat.com> - 2.0.91-1
64b877
- Update to upstream 
64b877
	* Change the AVC to only audit the permissions specified by the
64b877
	policy, excluding any permissions specified via dontaudit or not
64b877
	specified via auditallow.
64b877
	* Fix compilation of label_file.c with latest glibc headers.
64b877
64b877
* Mon Feb 22 2010 Dan Walsh <dwalsh@redhat.com> - 2.0.90-5
64b877
- Fix potential doublefree on init
64b877
64b877
* Thu Feb 18 2010 Dan Walsh <dwalsh@redhat.com> - 2.0.90-4
64b877
- Fix libselinux.pc
64b877
64b877
* Mon Jan 18 2010 Dan Walsh <dwalsh@redhat.com> - 2.0.90-3
64b877
- Fix man page for selinuxdefcon
64b877
64b877
* Mon Jan 4 2010 Dan Walsh <dwalsh@redhat.com> - 2.0.90-2
64b877
- Free memory on disabled selinux boxes
64b877
64b877
* Tue Dec 1 2009 Dan Walsh <dwalsh@redhat.com> - 2.0.90-1
64b877
- Update to upstream 
64b877
	* add/reformat man pages by Guido Trentalancia <guido@trentalancia.com>.
64b877
	* Change exception.sh to be called with bash by Manoj Srivastava <srivasta@debian.org>
64b877
64b877
* Mon Nov 2 2009 Dan Walsh <dwalsh@redhat.com> - 2.0.89-2
64b877
- Fix selinuxdefcon man page
64b877
64b877
* Mon Nov 2 2009 Dan Walsh <dwalsh@redhat.com> - 2.0.89-1
64b877
- Update to upstream 
64b877
	* Add pkgconfig file from Eamon Walsh.
64b877
64b877
* Thu Oct 29 2009 Dan Walsh <dwalsh@redhat.com> - 2.0.88-1
64b877
- Update to upstream 
64b877
	* Rename and export selinux_reset_config()
64b877
64b877
* Tue Sep 8 2009 Dan Walsh <dwalsh@redhat.com> - 2.0.87-1
64b877
- Update to upstream 
64b877
	* Add exception handling in libselinux from Dan Walsh. This uses a
64b877
	  shell script called exception.sh to generate a swig interface file.
64b877
	* make swigify
64b877
	* Make matchpathcon print <<none>> if path not found in fcontext file.
64b877
64b877
* Tue Sep 8 2009 Dan Walsh <dwalsh@redhat.com> - 2.0.86-2
64b877
- Eliminate -pthread switch in Makefile
64b877
64b877
* Tue Sep 8 2009 Dan Walsh <dwalsh@redhat.com> - 2.0.86-1
64b877
- Update to upstream 
64b877
	* Removal of reference counting on userspace AVC SID's.
64b877
64b877
* Sat Jul 25 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.0.85-2
64b877
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
64b877
64b877
* Tue Jul 7 2009 Dan Walsh <dwalsh@redhat.com> - 2.0.85-1
64b877
- Update to upstream 
64b877
	* Reverted Tomas Mraz's fix for freeing thread local storage to avoid
64b877
	pthread dependency.
64b877
	* Removed fini_context_translations() altogether.
64b877
	* Merged lazy init patch from Stephen Smalley based on original patch
64b877
	by Steve Grubb.
64b877
64b877
* Tue Jul 7 2009 Dan Walsh <dwalsh@redhat.com> - 2.0.84-1
64b877
- Update to upstream 
64b877
	* Add per-service seuser support from Dan Walsh.
64b877
	* Let load_policy gracefully handle selinuxfs being mounted from Stephen Smalley.
64b877
	* Check /proc/filesystems before /proc/mounts for selinuxfs from Eric
64b877
	Paris.
64b877
64b877
* Wed Jun 24 2009 Dan Walsh <dwalsh@redhat.com> - 2.0.82-2
64b877
- Add provices ruby(selinux)
64b877
64b877
* Tue Jun 23 2009 Dan Walsh <dwalsh@redhat.com> - 2.0.82-1
64b877
- Update to upstream 
64b877
	* Fix improper use of thread local storage from Tomas Mraz <tmraz@redhat.com>.
64b877
	* Label substitution support from Dan Walsh.
64b877
	* Support for labeling virtual machine images from Dan Walsh.
64b877
64b877
* Mon May 18 2009 Dan Walsh <dwalsh@redhat.com> - 2.0.81-1
64b877
- Update to upstream 
64b877
	* Trim / from the end of input paths to matchpathcon from Dan Walsh.
64b877
	* Fix leak in process_line in label_file.c from Hiroshi Shinji.
64b877
	* Move matchpathcon to /sbin, add matchpathcon to clean target from Dan Walsh.
64b877
	* getdefaultcon to print just the correct match and add verbose option from Dan Walsh.
64b877
64b877
* Wed Apr 8 2009 Dan Walsh <dwalsh@redhat.com> - 2.0.80-1
64b877
- Update to upstream 
64b877
	* deny_unknown wrapper function from KaiGai Kohei.
64b877
	* security_compute_av_flags API from KaiGai Kohei.
64b877
	* Netlink socket management and callbacks from KaiGai Kohei.
64b877
64b877
* Fri Apr 3 2009 Dan Walsh <dwalsh@redhat.com> - 2.0.79-6
64b877
- Fix Memory Leak
64b877
64b877
* Thu Apr 2 2009 Dan Walsh <dwalsh@redhat.com> - 2.0.79-5
64b877
- Fix crash in python
64b877
64b877
* Sun Mar 29 2009 Dan Walsh <dwalsh@redhat.com> - 2.0.79-4
64b877
- Add back in additional interfaces
64b877
64b877
* Fri Mar 27 2009 Dan Walsh <dwalsh@redhat.com> - 2.0.79-3
64b877
- Add back in av_decision to python swig
64b877
64b877
* Thu Mar 12 2009 Dan Walsh <dwalsh@redhat.com> - 2.0.79-1
64b877
- Update to upstream 
64b877
	* Netlink socket handoff patch from Adam Jackson.
64b877
	* AVC caching of compute_create results by Eric Paris.
64b877
64b877
* Tue Mar 10 2009 Dan Walsh <dwalsh@redhat.com> - 2.0.78-5
64b877
- Add patch from ajax to accellerate X SELinux 
64b877
- Update eparis patch
64b877
64b877
* Mon Mar 9 2009 Dan Walsh <dwalsh@redhat.com> - 2.0.78-4
64b877
- Add eparis patch to accellerate Xwindows performance
64b877
64b877
* Mon Mar 9 2009 Dan Walsh <dwalsh@redhat.com> - 2.0.78-3
64b877
- Fix URL 
64b877
64b877
* Fri Mar 6 2009 Dan Walsh <dwalsh@redhat.com> - 2.0.78-2
64b877
- Add substitute pattern 
64b877
- matchpathcon output <<none>> on ENOENT
64b877
64b877
* Mon Mar 2 2009 Dan Walsh <dwalsh@redhat.com> - 2.0.78-1
64b877
- Update to upstream
64b877
	* Fix incorrect conversion in discover_class code.
64b877
64b877
* Wed Feb 25 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.0.77-6
64b877
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
64b877
64b877
* Wed Feb 18 2009 Dan Walsh <dwalsh@redhat.com> - 2.0.77-5
64b877
- Add 
64b877
  - selinux_virtual_domain_context_path
64b877
  - selinux_virtual_image_context_path
64b877
64b877
* Tue Jan 6 2009 Dan Walsh <dwalsh@redhat.com> - 2.0.77-3
64b877
- Throw exeptions in python swig bindings on failures
64b877
64b877
* Tue Jan 6 2009 Dan Walsh <dwalsh@redhat.com> - 2.0.77-2
64b877
- Fix restorecon python code
64b877
64b877
* Tue Jan 6 2009 Dan Walsh <dwalsh@redhat.com> - 2.0.77-1
64b877
- Update to upstream
64b877
64b877
* Tue Dec 16 2008 Dan Walsh <dwalsh@redhat.com> - 2.0.76-6
64b877
- Strip trailing / for matchpathcon
64b877
64b877
* Tue Dec 16 2008 Dan Walsh <dwalsh@redhat.com>l - 2.0.76-5
64b877
- Fix segfault if seusers file does not work
64b877
64b877
* Fri Dec 12 2008 Dan Walsh <dwalsh@redhat.com> - 2.0.76-4
64b877
- Add new function getseuser which will take username and service and return
64b877
- seuser and level.  ipa will populate file in future.
64b877
- Change selinuxdefcon to return just the context by default
64b877
64b877
* Sat Nov 29 2008 Ignacio Vazquez-Abrams <ivazqueznet+rpm@gmail.com> - 2.0.76-2
64b877
- Rebuild for Python 2.6
64b877
64b877
* Mon Nov 17 2008 Dan Walsh <dwalsh@redhat.com> - 2.0.76-1
64b877
- Update to Upstream
64b877
	* Allow shell-style wildcards in x_contexts file.
64b877
64b877
* Mon Nov 17 2008 Dan Walsh <dwalsh@redhat.com> - 2.0.75-2
64b877
- Eamon Walsh Patch - libselinux: allow shell-style wildcarding in X names
64b877
- Add Restorecon/Install python functions from Luke Macken
64b877
64b877
* Fri Nov 7 2008 Dan Walsh <dwalsh@redhat.com> - 2.0.75-1
64b877
- Update to Upstream
64b877
	* Correct message types in AVC log messages.
64b877
	* Make matchpathcon -V pass mode from Dan Walsh.
64b877
	* Add man page for selinux_file_context_cmp from Dan Walsh.
64b877
64b877
* Tue Sep 30 2008 Dan Walsh <dwalsh@redhat.com> - 2.0.73-1
64b877
- Update to Upstream
64b877
	* New man pages from Dan Walsh.
64b877
	* Update flask headers from refpolicy trunk from Dan Walsh.
64b877
64b877
* Fri Sep 26 2008 Dan Walsh <dwalsh@redhat.com> - 2.0.71-6
64b877
- Fix matchpathcon -V call 
64b877
64b877
* Tue Sep 9 2008 Dan Walsh <dwalsh@redhat.com> - 2.0.71-5
64b877
- Add flask definitions for open, X and nlmsg_tty_audit
64b877
64b877
* Tue Sep 9 2008 Dan Walsh <dwalsh@redhat.com> - 2.0.71-4
64b877
- Add missing get/setkeycreatecon man pages
64b877
64b877
* Tue Sep 9 2008 Dan Walsh <dwalsh@redhat.com> - 2.0.71-3
64b877
- Split out utilities
64b877
64b877
* Tue Sep 9 2008 Dan Walsh <dwalsh@redhat.com> - 2.0.71-2
64b877
- Add missing man page links for [lf]getfilecon
64b877
64b877
* Tue Aug 5 2008 Dan Walsh <dwalsh@redhat.com> - 2.0.71-1
64b877
- Update to Upstream
64b877
	* Add group support to seusers using %groupname syntax from Dan Walsh.
64b877
	* Mark setrans socket close-on-exec from Stephen Smalley.
64b877
	* Only apply nodups checking to base file contexts from Stephen Smalley.
64b877
64b877
* Fri Aug 1 2008 Dan Walsh <dwalsh@redhat.com> - 2.0.70-1
64b877
- Update to Upstream
64b877
	* Merge ruby bindings from Dan Walsh.
64b877
- Add support for Linux groups to getseuserbyname
64b877
64b877
* Fri Aug 1 2008 Dan Walsh <dwalsh@redhat.com> - 2.0.69-2
64b877
- Allow group handling in getseuser call
64b877
64b877
* Tue Jul 29 2008 Dan Walsh <dwalsh@redhat.com> - 2.0.69-1
64b877
- Update to Upstream
64b877
	* Handle duplicate file context regexes as a fatal error from Stephen Smalley.
64b877
	  This prevents adding them via semanage.
64b877
	* Fix audit2why shadowed variables from Stephen Smalley.
64b877
	* Note that freecon NULL is legal in man page from Karel Zak.
64b877
64b877
* Wed Jul 9 2008 Dan Walsh <dwalsh@redhat.com> - 2.0.67-4
64b877
- Add ruby support for puppet
64b877
64b877
* Tue Jul 8 2008 Dan Walsh <dwalsh@redhat.com> - 2.0.67-3
64b877
- Rebuild for new libsepol
64b877
64b877
* Sun Jun 29 2008 Dan Walsh <dwalsh@redhat.com> - 2.0.67-2
64b877
- Add Karel Zak patch for freecon man page
64b877
64b877
* Sun Jun 22 2008 Dan Walsh <dwalsh@redhat.com> - 2.0.67-1
64b877
- Update to Upstream
64b877
	* New and revised AVC, label, and mapping man pages from Eamon Walsh.
64b877
	* Add swig python bindings for avc interfaces from Dan Walsh.
64b877
64b877
* Sun Jun 22 2008 Dan Walsh <dwalsh@redhat.com> - 2.0.65-1
64b877
- Update to Upstream
64b877
	* Fix selinux_file_context_verify() and selinux_lsetfilecon_default() to call matchpathcon_init_prefix if not already initialized.
64b877
	* Add -q qualifier for -V option of matchpathcon and change it to indicate whether verification succeeded or failed via exit status.
64b877
64b877
* Fri May 16 2008 Dan Walsh <dwalsh@redhat.com> - 2.0.64-3
64b877
- libselinux no longer neets to telnet -u in post install
64b877
64b877
* Wed May 7 2008 Dan Walsh <dwalsh@redhat.com> - 2.0.64-2
64b877
- Add sedefaultcon and setconlist commands to dump login context
64b877
64b877
* Tue Apr 22 2008 Dan Walsh <dwalsh@redhat.com> - 2.0.64-1
64b877
- Update to Upstream
64b877
	* Fixed selinux_set_callback man page.
64b877
	* Try loading the max of the kernel-supported version and the libsepol-supported version when no manipulation of the binary policy is needed from Stephen Smalley.
64b877
	* Fix memory leaks in matchpathcon from Eamon Walsh.
64b877
64b877
* Wed Apr 16 2008 Dan Walsh <dwalsh@redhat.com> - 2.0.61-4
64b877
- Add Xavior Toth patch for security_id_t in swig
64b877
64b877
* Thu Apr 10 2008 Dan Walsh <dwalsh@redhat.com> - 2.0.61-3
64b877
- Add avc.h to swig code
64b877
64b877
* Wed Apr 9 2008 Dan Walsh <dwalsh@redhat.com> - 2.0.61-2
64b877
- Grab the latest policy for the kernel
64b877
64b877
* Tue Apr 1 2008 Dan Walsh <dwalsh@redhat.com> - 2.0.61-1
64b877
- Update to Upstream
64b877
	* Man page typo fix from Jim Meyering.
64b877
64b877
* Sun Mar 23 2008 Dan Walsh <dwalsh@redhat.com> - 2.0.60-1
64b877
- Update to Upstream
64b877
	* Changed selinux_init_load_policy() to not warn about a failed mount of selinuxfs if selinux was disabled in the kernel.
64b877
64b877
* Thu Mar 13 2008 Dan Walsh <dwalsh@redhat.com> - 2.0.59-2
64b877
- Fix matchpathcon memory leak
64b877
64b877
* Fri Feb 29 2008 Dan Walsh <dwalsh@redhat.com> - 2.0.59-1
64b877
- Update to Upstream
64b877
	* Merged new X label "poly_selection" namespace from Eamon Walsh.
64b877
64b877
* Thu Feb 28 2008 Dan Walsh <dwalsh@redhat.com> - 2.0.58-1
64b877
- Update to Upstream
64b877
	* Merged reset_selinux_config() for load policy from Dan Walsh.
64b877
64b877
* Thu Feb 28 2008 Dan Walsh <dwalsh@redhat.com> - 2.0.57-2
64b877
- Reload library on loading of policy to handle chroot
64b877
64b877
* Mon Feb 25 2008 Dan Walsh <dwalsh@redhat.com> - 2.0.57-1
64b877
- Update to Upstream
64b877
	* Merged avc_has_perm() errno fix from Eamon Walsh.
64b877
64b877
* Fri Feb 22 2008 Dan Walsh <dwalsh@redhat.com> - 2.0.56-1
64b877
- Update to Upstream
64b877
	* Regenerated Flask headers from refpolicy flask definitions.
64b877
64b877
* Wed Feb 13 2008 Dan Walsh <dwalsh@redhat.com> - 2.0.55-1
64b877
- Update to Upstream
64b877
	* Merged compute_member AVC function and manpages from Eamon Walsh.
64b877
	* Provide more error reporting on load policy failures from Stephen Smalley.
64b877
64b877
* Fri Feb 8 2008 Dan Walsh <dwalsh@redhat.com> - 2.0.53-1
64b877
- Update to Upstream
64b877
	* Merged new X label "poly_prop" namespace from Eamon Walsh.
64b877
64b877
* Wed Feb 6 2008 Dan Walsh <dwalsh@redhat.com> - 2.0.52-1
64b877
- Update to Upstream
64b877
	* Disable setlocaldefs if no local boolean or users files are present from Stephen Smalley.
64b877
	* Skip userspace preservebools processing for Linux >= 2.6.22 from Stephen Smalley.
64b877
64b877
* Tue Jan 29 2008 Dan Walsh <dwalsh@redhat.com> - 2.0.50-1
64b877
- Update to Upstream
64b877
	* Merged fix for audit2why from Dan Walsh.
64b877
64b877
* Fri Jan 25 2008 Dan Walsh <dwalsh@redhat.com> - 2.0.49-2
64b877
- Fix audit2why to grab latest policy versus the one selected by the kernel
64b877
64b877
* Wed Jan 23 2008 Dan Walsh <dwalsh@redhat.com> - 2.0.49-1
64b877
* Merged audit2why python binding from Dan Walsh.
64b877
64b877
* Wed Jan 23 2008 Dan Walsh <dwalsh@redhat.com> - 2.0.48-1
64b877
* Merged updated swig bindings from Dan Walsh, including typemap for pid_t.
64b877
64b877
* Mon Jan 21 2008 Dan Walsh <dwalsh@redhat.com> - 2.0.47-4
64b877
- Update to use libsepol-static library
64b877
64b877
* Wed Jan 16 2008 Adel Gadllah <adel.gadllah@gmail.com> - 2.0.47-3
64b877
- Move libselinux.a to -static package
64b877
- Spec cleanups
64b877
64b877
* Tue Jan 15 2008 Dan Walsh <dwalsh@redhat.com> - 2.0.47-2
64b877
- Put back libselinux.a
64b877
64b877
* Fri Jan 11 2008 Dan Walsh <dwalsh@redhat.com> - 2.0.47-1
64b877
- Fix memory references in audit2why and change to use tuples
64b877
- Update to Upstream
64b877
	* Fix for the avc:  granted null message bug from Stephen Smalley.
64b877
64b877
* Fri Jan 11 2008 Dan Walsh <dwalsh@redhat.com> - 2.0.46-6
64b877
- Fix __init__.py specification
64b877
64b877
* Tue Jan 8 2008 Dan Walsh <dwalsh@redhat.com> - 2.0.46-5
64b877
- Add audit2why python bindings
64b877
64b877
* Tue Jan 8 2008 Dan Walsh <dwalsh@redhat.com> - 2.0.46-4
64b877
- Add pid_t typemap for swig bindings
64b877
64b877
* Thu Jan 3 2008 Dan Walsh <dwalsh@redhat.com> - 2.0.46-3
64b877
- smp_mflag
64b877
64b877
* Thu Jan 3 2008 Dan Walsh <dwalsh@redhat.com> - 2.0.46-2
64b877
- Fix spec file caused by spec review 
64b877
64b877
* Fri Nov 30 2007 Dan Walsh <dwalsh@redhat.com> - 2.0.46-1
64b877
- Upgrade to upstream
64b877
	* matchpathcon(8) man page update from Dan Walsh.
64b877
64b877
* Fri Nov 30 2007 Dan Walsh <dwalsh@redhat.com> - 2.0.45-1
64b877
- Upgrade to upstream
64b877
	* dlopen libsepol.so.1 rather than libsepol.so from Stephen Smalley.
64b877
	* Based on a suggestion from Ulrich Drepper, defer regex compilation until we have a stem match, by Stephen Smalley.
64b877
	*  A further optimization would be to defer regex compilation until we have a complete match of the constant prefix of the regex - TBD.
64b877
64b877
* Thu Nov 15 2007 Dan Walsh <dwalsh@redhat.com> - 2.0.43-1
64b877
- Upgrade to upstream
64b877
	* Regenerated Flask headers from policy.
64b877
64b877
* Thu Nov 15 2007 Dan Walsh <dwalsh@redhat.com> - 2.0.42-1
64b877
- Upgrade to upstream
64b877
	* AVC enforcing mode override patch from Eamon Walsh.
64b877
	* Aligned attributes in AVC netlink code from Eamon Walsh.
64b877
- Move libselinux.so back into devel package, procps has been fixed
64b877
64b877
* Tue Nov 6 2007 Dan Walsh <dwalsh@redhat.com> - 2.0.40-1
64b877
- Upgrade to upstream
64b877
	* Merged refactored AVC netlink code from Eamon Walsh.
64b877
	* Merged new X label namespaces from Eamon Walsh.
64b877
	* Bux fix and minor refactoring in string representation code.
64b877
64b877
* Fri Oct 5 2007 Dan Walsh <dwalsh@redhat.com> - 2.0.37-1
64b877
- Upgrade to upstream
64b877
	* Merged selinux_get_callback, avc_open, empty string mapping from Eamon Walsh.
64b877
64b877
* Fri Sep 28 2007 Dan Walsh <dwalsh@redhat.com> - 2.0.36-1
64b877
- Upgrade to upstream
64b877
	* Fix segfault resulting from missing file_contexts file.
64b877
64b877
* Thu Sep 27 2007 Dan Walsh <dwalsh@redhat.com> - 2.0.35-2
64b877
- Fix segfault on missing file_context file
64b877
64b877
* Wed Sep 26 2007 Dan Walsh <dwalsh@redhat.com> - 2.0.35-1
64b877
- Upgrade to upstream
64b877
	* Make netlink socket close-on-exec to avoid descriptor leakage from Dan Walsh.
64b877
	* Pass CFLAGS when using gcc for linking from Dennis Gilmore. 
64b877
64b877
* Mon Sep 24 2007 Dan Walsh <dwalsh@redhat.com> - 2.0.34-3
64b877
- Add sparc patch to from Dennis Gilmore to build on Sparc platform
64b877
64b877
* Mon Sep 24 2007 Dan Walsh <dwalsh@redhat.com> - 2.0.34-2
64b877
- Remove leaked file descriptor
64b877
64b877
* Tue Sep 18 2007 Dan Walsh <dwalsh@redhat.com> - 2.0.34-1
64b877
- Upgrade to latest from NSA
64b877
	* Fix selabel option flag setting for 64-bit from Stephen Smalley.
64b877
64b877
* Tue Sep 18 2007 Dan Walsh <dwalsh@redhat.com> - 2.0.33-2
64b877
- Change matchpatcon to use syslog instead of syserror
64b877
64b877
* Thu Sep 13 2007 Dan Walsh <dwalsh@redhat.com> - 2.0.33-1
64b877
- Upgrade to latest from NSA
64b877
	* Re-map a getxattr return value of 0 to a getfilecon return value of -1 with errno EOPNOTSUPP from Stephen Smalley.
64b877
	* Fall back to the compat code for security_class_to_string and security_av_perm_to_string from Stephen Smalley.
64b877
	* Fix swig binding for rpm_execcon from James Athey.
64b877
64b877
* Thu Sep 6 2007 Dan Walsh <dwalsh@redhat.com> - 2.0.31-4
64b877
- Apply James Athway patch to fix rpm_execcon python binding
64b877
64b877
* Tue Aug 28 2007 Dan Walsh <dwalsh@redhat.com> - 2.0.31-3
64b877
- Move libselinux.so back into main package, breaks procps
64b877
64b877
* Thu Aug 23 2007 Dan Walsh <dwalsh@redhat.com> - 2.0.31-2
64b877
- Upgrade to upstream
64b877
	* Fix file_contexts.homedirs path from Todd Miller.
64b877
64b877
* Tue Aug 21 2007 Dan Walsh <dwalsh@redhat.com> - 2.0.30-2
64b877
- Remove requirement on setransd,  Moved to selinux-policy-mls 
64b877
64b877
* Fri Aug 10 2007 Dan Walsh <dwalsh@redhat.com> - 2.0.30-1
64b877
- Move libselinux.so into devel package
64b877
- Upgrade to upstream
64b877
	* Fix segfault resulting from uninitialized print-callback pointer.
64b877
	* Added x_contexts path function patch from Eamon Walsh.
64b877
	* Fix build for EMBEDDED=y from Yuichi Nakamura.
64b877
	* Fix markup problems in selinux man pages from Dan Walsh.
64b877
64b877
* Fri Aug 3 2007 Dan Walsh <dwalsh@redhat.com> - 2.0.29-1
64b877
- Upgrade to upstream
64b877
	* Updated version for stable branch.	
64b877
	* Added x_contexts path function patch from Eamon Walsh.
64b877
	* Fix build for EMBEDDED=y from Yuichi Nakamura.
64b877
	* Fix markup problems in selinux man pages from Dan Walsh.
64b877
	* Updated av_permissions.h and flask.h to include new nscd permissions from Dan Walsh.
64b877
	* Added swigify to top-level Makefile from Dan Walsh.
64b877
	* Fix for string_to_security_class segfault on x86_64 from Stephen
64b877
	  Smalley.
64b877
64b877
* Mon Jul 23 2007 Dan Walsh <dwalsh@redhat.com> - 2.0.24-3
64b877
- Apply Steven Smalley patch to fix segfault in string_to_security_class
64b877
64b877
* Wed Jul 18 2007 Dan Walsh <dwalsh@redhat.com> - 2.0.24-2
64b877
- Fix matchpathcon to set default myprintf
64b877
64b877
* Mon Jul 16 2007 Dan Walsh <dwalsh@redhat.com> - 2.0.24-1
64b877
- Upgrade to upstream
64b877
	* Fix for getfilecon() for zero-length contexts from Stephen Smalley.
64b877
64b877
* Wed Jul 11 2007 Dan Walsh <dwalsh@redhat.com> - 2.0.23-3
64b877
- Update to match flask/access_vectors in policy
64b877
64b877
* Tue Jul 10 2007 Dan Walsh <dwalsh@redhat.com> - 2.0.23-2
64b877
- Fix man page markup lanquage for translations
64b877
64b877
* Tue Jun 26 2007 Dan Walsh <dwalsh@redhat.com> - 2.0.23-1
64b877
- Fix semanage segfault on x86 platform
64b877
64b877
* Thu Jun 21 2007 Dan Walsh <dwalsh@redhat.com> - 2.0.22-1
64b877
- Upgrade to upstream
64b877
	* Labeling and callback interface patches from Eamon Walsh.
64b877
64b877
* Tue Jun 19 2007 Dan Walsh <dwalsh@redhat.com> - 2.0.21-2
64b877
- Refactored swig
64b877
64b877
* Mon Jun 11 2007 Dan Walsh <dwalsh@redhat.com> - 2.0.21-1
64b877
- Upgrade to upstream
64b877
	* Class and permission mapping support patches from Eamon Walsh.
64b877
	* Object class discovery support patches from Chris PeBenito.
64b877
	* Refactoring and errno support in string representation code.
64b877
64b877
* Fri Jun 1 2007 Dan Walsh <dwalsh@redhat.com> - 2.0.18-1
64b877
- Upgrade to upstream
64b877
- Merged patch to reduce size of libselinux and remove need for libsepol for embedded systems from Yuichi Nakamura.
64b877
 This patch also turns the link-time dependency on libsepol into a runtime (dlopen) dependency even in the non-embedded case.
64b877
64b877
2.0.17 2007-05-31
64b877
	* Updated Lindent script and reindented two header files.
64b877
64b877
* Fri May 4 2007 Dan Walsh <dwalsh@redhat.com> - 2.0.16-1
64b877
- Upgrade to upstream
64b877
	* Merged additional swig python bindings from Dan Walsh.
64b877
	* Merged helpful message when selinuxfs mount fails patch from Dax Kelson.
64b877
64b877
* Tue Apr 24 2007 Dan Walsh <dwalsh@redhat.com> - 2.0.14-1
64b877
- Upgrade to upstream
64b877
	* Merged build fix for avc_internal.c from Joshua Brindle.
64b877
64b877
* Mon Apr 23 2007 Dan Walsh <dwalsh@redhat.com> - 2.0.13-2
64b877
- Add get_context_list funcitions to swig file
64b877
64b877
* Thu Apr 12 2007 Dan Walsh <dwalsh@redhat.com> - 2.0.13-1
64b877
- Upgrade to upstream
64b877
	* Merged rpm_execcon python binding fix, matchpathcon man page fix, and getsebool -a handling for EACCES from Dan Walsh.
64b877
64b877
* Thu Apr 12 2007 Dan Walsh <dwalsh@redhat.com> - 2.0.12-2
64b877
- Add missing interface
64b877
64b877
* Wed Apr 11 2007 Dan Walsh <dwalsh@redhat.com> - 2.0.12-1
64b877
- Upgrade to upstream
64b877
	* Merged support for getting initial contexts from James Carter.
64b877
64b877
* Mon Apr 9 2007 Dan Walsh <dwalsh@redhat.com> - 2.0.11-1
64b877
- Upgrade to upstream
64b877
	* Merged userspace AVC patch to follow kernel's behavior for permissive mode in caching previous denials from Eamon Walsh.
64b877
	* Merged sidput(NULL) patch from Eamon Walsh.
64b877
64b877
* Thu Apr 5 2007 Dan Walsh <dwalsh@redhat.com> - 2.0.9-2
64b877
- Make rpm_exec swig work
64b877
64b877
* Tue Mar 27 2007 Dan Walsh <dwalsh@redhat.com> - 2.0.9-1
64b877
- Upgrade to upstream
64b877
	* Merged class/av string conversion and avc_compute_create patch from Eamon Walsh.
64b877
64b877
* Tue Mar 27 2007 Dan Walsh <dwalsh@redhat.com> - 2.0.8-1
64b877
- Upgrade to upstream
64b877
	* Merged fix for avc.h #include's from Eamon Walsh.
64b877
64b877
* Thu Mar 22 2007 Dan Walsh <dwalsh@redhat.com> - 2.0.7-2
64b877
- Add stdint.h to avc.h
64b877
64b877
* Mon Mar 12 2007 Dan Walsh <dwalsh@redhat.com> - 2.0.7-1
64b877
- Merged patch to drop support for CACHETRANS=0 config option from Steve Grubb.
64b877
- Merged patch to drop support for old /etc/sysconfig/selinux and
64b877
- /etc/security policy file layout from Steve Grubb.
64b877
64b877
* Thu Mar 8 2007 Dan Walsh <dwalsh@redhat.com> - 2.0.5-2
64b877
- Do not fail on permission denied in getsebool
64b877
64b877
* Tue Feb 27 2007 Dan Walsh <dwalsh@redhat.com> - 2.0.5-1
64b877
- Upgrade to upstream
64b877
	* Merged init_selinuxmnt() and is_selinux_enabled() improvements from Steve Grubb.
64b877
64b877
* Wed Feb 21 2007 Dan Walsh <dwalsh@redhat.com> - 2.0.4-1
64b877
- Upgrade to upstream
64b877
	* Removed sending of setrans init message.
64b877
	* Merged matchpathcon memory leak fix from Steve Grubb.
64b877
64b877
* Tue Feb 20 2007 Dan Walsh <dwalsh@redhat.com> - 2.0.2-1
64b877
- Upgrade to upstream
64b877
	* Merged more swig initializers from Dan Walsh.
64b877
64b877
* Sun Feb 18 2007 Dan Walsh <dwalsh@redhat.com> - 2.0.1-1
64b877
- Upgrade to upstream
64b877
  * Merged patch from Todd Miller to convert int types over to C99 style.
64b877
64b877
* Wed Feb 7 2007 Dan Walsh <dwalsh@redhat.com> - 2.0.0-1
64b877
- Merged patch from Todd Miller to remove sscanf in matchpathcon.c because
64b877
  of the use of the non-standard format (original patch changed
64b877
  for style).
64b877
- Merged patch from Todd Miller to fix memory leak in matchpathcon.c.
64b877
	
64b877
* Fri Jan 19 2007 Dan Walsh <dwalsh@redhat.com> - 1.34.0-2
64b877
- Add context function to python to split context into 4 parts
64b877
64b877
* Fri Jan 19 2007 Dan Walsh <dwalsh@redhat.com> - 1.34.0-1
64b877
- Upgrade to upstream
64b877
	* Updated version for stable branch.	
64b877
64b877
* Wed Jan 17 2007 Dan Walsh <dwalsh@redhat.com> - 1.33.6-1
64b877
- Upgrade to upstream
64b877
	* Merged man page updates to make "apropos selinux" work from Dan Walsh.
64b877
64b877
* Wed Jan 17 2007 Dan Walsh <dwalsh@redhat.com> - 1.33.5-1
64b877
- Upgrade to upstream
64b877
	* Merged getdefaultcon utility from Dan Walsh.
64b877
64b877
* Mon Jan 15 2007 Dan Walsh <dwalsh@redhat.com> - 1.33.4-3
64b877
- Add Ulrich NSCD__GETSERV and NSCD__SHMEMGRP for Uli
64b877
64b877
* Fri Jan 12 2007 Dan Walsh <dwalsh@redhat.com> - 1.33.4-2
64b877
- Add reference to selinux man page in all man pages to make apropos work
64b877
Resolves: # 217881
64b877
64b877
* Thu Jan 11 2007 Dan Walsh <dwalsh@redhat.com> - 1.33.4-1
64b877
- Upstream wanted some minor changes, upgrading to keep api the same
64b877
- Upgrade to upstream
64b877
	* Merged selinux_check_securetty_context() and support from Dan Walsh.
64b877
Resolves: #200110
64b877
64b877
* Fri Jan 5 2007 Dan Walsh <dwalsh@redhat.com> - 1.33.3-3
64b877
- Cleanup patch
64b877
64b877
* Fri Jan 5 2007 Dan Walsh <dwalsh@redhat.com> - 1.33.3-2
64b877
- Add securetty handling
64b877
Resolves: #200110
64b877
64b877
* Thu Jan 4 2007 Dan Walsh <dwalsh@redhat.com> - 1.33.3-1
64b877
- Upgrade to upstream
64b877
	* Merged patch for matchpathcon utility to use file mode information
64b877
	  when available from Dan Walsh.
64b877
64b877
* Thu Dec  7 2006 Jeremy Katz <katzj@redhat.com> - 1.33.2-4
64b877
- rebuild against python 2.5
64b877
64b877
* Wed Dec 6 2006 Dan Walsh <dwalsh@redhat.com> - 1.33.2-3
64b877
- Fix matchpathcon to lstat files
64b877
64b877
* Thu Nov 30 2006 Dan Walsh <dwalsh@redhat.com> - 1.33.2-2
64b877
- Update man page
64b877
64b877
* Tue Nov 14 2006 Dan Walsh <dwalsh@redhat.com> - 1.33.2-1
64b877
- Upgrade to upstream
64b877
64b877
* Fri Nov 3 2006 Dan Walsh <dwalsh@redhat.com> - 1.33.1-2
64b877
- Add James Antill patch for login verification of MLS Levels
64b877
-  MLS ragnes need to be checked, Eg. login/cron. This patch adds infrastructure.
64b877
64b877
* Tue Oct 24 2006 Dan Walsh <dwalsh@redhat.com> - 1.33.1-1
64b877
- Upgrade to latest from NSA
64b877
	* Merged updated flask definitions from Darrel Goeddel.
64b877
 	  This adds the context security class, and also adds
64b877
	  the string definitions for setsockcreate and polmatch.
64b877
64b877
* Tue Oct 17 2006 Dan Walsh <dwalsh@redhat.com> - 1.32-1
64b877
- Upgrade to latest from NSA
64b877
	* Updated version for release.
64b877
64b877
* Sun Oct 01 2006 Jesse Keating <jkeating@redhat.com> - 1.30.29-2
64b877
- rebuilt for unwind info generation, broken in gcc-4.1.1-21
64b877
64b877
* Fri Sep  29 2006 Dan Walsh <dwalsh@redhat.com> - 1.30.29-1
64b877
- Upgrade to latest from NSA
64b877
	* Merged av_permissions.h update from Steve Grubb,
64b877
	  adding setsockcreate and polmatch definitions.
64b877
64b877
* Wed Sep 27 2006 Jeremy Katz <katzj@redhat.com> - 1.30.28-3
64b877
- really make -devel depend on libsepol-devel
64b877
64b877
* Wed Sep  27 2006 Dan Walsh <dwalsh@redhat.com> - 1.30.28-2
64b877
- Add sgrubb patch for polmatch
64b877
64b877
* Wed Sep  13 2006 Dan Walsh <dwalsh@redhat.com> - 1.30.28-1
64b877
- Upgrade to latest from NSA
64b877
	* Merged patch from Steve Smalley to fix SIGPIPE in setrans_client
64b877
64b877
* Tue Sep  5 2006 Jeremy Katz <katzj@redhat.com> - 1.30.27-2
64b877
- have -devel require libsepol-devel
64b877
64b877
* Thu Aug 24 2006 Dan Walsh <dwalsh@redhat.com> - 1.30.27-1
64b877
- Upgrade to latest from NSA
64b877
	* Merged patch to not log avc stats upon a reset from Steve Grubb.
64b877
	* Applied patch to revert compat_net setting upon policy load.
64b877
	* Merged file context homedir and local path functions from
64b877
	  Chris PeBenito.
64b877
64b877
* Fri Aug 18 2006 Jesse Keating <jkeating@redhat.com> - 1.20.26-2
64b877
- rebuilt with latest binutils to pick up 64K -z commonpagesize on ppc*
64b877
  (#203001)
64b877
64b877
* Sat Aug  12 2006 Dan Walsh <dwalsh@redhat.com> - 1.30.25-1
64b877
- Upgrade to latest from NSA
64b877
	* Merged file context homedir and local path functions from
64b877
	  Chris PeBenito.
64b877
	* Rework functions that access /proc/pid/attr to access the
64b877
	  per-thread nodes, and unify the code to simplify maintenance.
64b877
64b877
* Fri Aug  11 2006 Dan Walsh <dwalsh@redhat.com> - 1.30.24-1
64b877
- Upgrade to latest from NSA
64b877
	* Merged return value fix for *getfilecon() from Dan Walsh.
64b877
	* Merged sockcreate interfaces from Eric Paris.
64b877
64b877
* Wed Aug  9 2006 Dan Walsh <dwalsh@redhat.com> - 1.30.22-2
64b877
- Fix translation return codes to return size of buffer
64b877
64b877
* Tue Aug  1 2006 Dan Walsh <dwalsh@redhat.com> - 1.30.22-1
64b877
- Upgrade to latest from NSA
64b877
	* Merged no-tls-direct-seg-refs patch from Jeremy Katz.
64b877
	* Merged netfilter_contexts support patch from Chris PeBenito.
64b877
64b877
* Tue Aug  1 2006 Dan Walsh <dwalsh@redhat.com> - 1.30.20-1
64b877
- Upgrade to latest from NSA
64b877
	* Merged context_*_set errno patch from Jim Meyering.
64b877
64b877
* Tue Aug  1 2006 Jeremy Katz <katzj@redhat.com> - 1.30.19-5
64b877
- only build non-fpic objects with -mno-tls-direct-seg-refs
64b877
64b877
* Tue Aug  1 2006 Jeremy Katz <katzj@redhat.com> - 1.30.19-4
64b877
- build with -mno-tls-direct-seg-refs on x86 to avoid triggering 
64b877
  segfaults with xen (#200783)  
64b877
64b877
* Mon Jul 17 2006 Dan Walsh <dwalsh@redhat.com> 1.30.19-3
64b877
- Rebuild for new gcc
64b877
64b877
* Tue Jul 11 2006 Dan Walsh <dwalsh@redhat.com> 1.30.19-2
64b877
- Fix libselinux to not telinit during installs
64b877
64b877
* Tue Jul 4 2006 Dan Walsh <dwalsh@redhat.com> 1.30.19-1
64b877
- Upgrade to latest from NSA
64b877
	* Lindent.
64b877
	* Merged {get,set}procattrcon patch set from Eric Paris.
64b877
	* Merged re-base of keycreate patch originally by Michael LeMay from Eric Paris.
64b877
	* Regenerated Flask headers from refpolicy.
64b877
	* Merged patch from Dan Walsh with:
64b877
	  - Added selinux_file_context_{cmp,verify}.
64b877
	  - Added selinux_lsetfilecon_default.
64b877
	  - Delay translation of contexts in matchpathcon.
64b877
64b877
* Wed Jun 21 2006 Dan Walsh <dwalsh@redhat.com> 1.30.15-5
64b877
- Yet another change to matchpathcon
64b877
64b877
* Wed Jun 21 2006 Dan Walsh <dwalsh@redhat.com> 1.30.15-4
64b877
- Turn off error printing in library.  Need to compile with DEBUG to get it back
64b877
64b877
* Wed Jun 21 2006 Dan Walsh <dwalsh@redhat.com> 1.30.15-3
64b877
- Fix error reporting of matchpathcon
64b877
64b877
* Mon Jun 19 2006 Dan Walsh <dwalsh@redhat.com> 1.30.15-2
64b877
- Add function to compare file context on disk versus contexts in file_contexts file.
64b877
64b877
* Fri Jun 16 2006 Dan Walsh <dwalsh@redhat.com> 1.30.15-1
64b877
- Upgrade to latest from NSA
64b877
	* Merged patch from Dan Walsh with:
64b877
	* Added selinux_getpolicytype() function.
64b877
	* Modified setrans code to skip processing if !mls_enabled.
64b877
	* Set errno in the !selinux_mnt case.
64b877
	* Allocate large buffers from the heap, not on stack.
64b877
	  Affects is_context_customizable, selinux_init_load_policy,
64b877
	  and selinux_getenforcemode.
64b877
64b877
* Thu Jun 8 2006 Dan Walsh <dwalsh@redhat.com> 1.30.12-2
64b877
- Add selinux_getpolicytype()
64b877
64b877
* Thu Jun 1 2006 Dan Walsh <dwalsh@redhat.com> 1.30.12-1
64b877
- Upgrade to latest from NSA
64b877
	* Merged !selinux_mnt checks from Ian Kent.
64b877
64b877
* Thu Jun 1 2006 Dan Walsh <dwalsh@redhat.com> 1.30.11-2
64b877
- Check for selinux_mnt == NULL
64b877
64b877
* Tue May 30 2006 Dan Walsh <dwalsh@redhat.com> 1.30.11-1
64b877
- Merged matchmediacon and trans_to_raw_context fixes from 
64b877
  Serge Hallyn.
64b877
64b877
* Fri May 26 2006 Dan Walsh <dwalsh@redhat.com> 1.30.10-4
64b877
- Remove getseuser
64b877
64b877
* Thu May 25 2006 Dan Walsh <dwalsh@redhat.com> 1.30.10-3
64b877
- Bump requires to grab latest libsepol
64b877
64b877
* Tue May 23 2006 Dan Walsh <dwalsh@redhat.com> 1.30.10-2
64b877
- Add BuildRequires for swig
64b877
64b877
* Tue May 23 2006 Dan Walsh <dwalsh@redhat.com> 1.30.10-1
64b877
- Upgrade to latest from NSA
64b877
	* Merged simple setrans client cache from Dan Walsh.
64b877
	  Merged avcstat patch from Russell Coker.
64b877
	* Modified selinux_mkload_policy() to also set /selinux/compat_net
64b877
	  appropriately for the loaded policy.
64b877
64b877
* Thu May 18 2006 Dan Walsh <dwalsh@redhat.com> 1.30.8-1
64b877
- More fixes for translation cache
64b877
- Upgrade to latest from NSA
64b877
	* Added matchpathcon_fini() function to free memory allocated by
64b877
	  matchpathcon_init().
64b877
64b877
* Wed May 17 2006 Dan Walsh <dwalsh@redhat.com> 1.30.7-2
64b877
- Add simple cache to improve translation speed
64b877
64b877
* Tue May 16 2006 Dan Walsh <dwalsh@redhat.com> 1.30.7-1
64b877
- Upgrade to latest from NSA
64b877
	* Merged setrans client cleanup patch from Steve Grubb.
64b877
64b877
* Tue May 9 2006 Dan Walsh <dwalsh@redhat.com> 1.30.6-2
64b877
- Add Russell's AVC patch to handle large numbers
64b877
64b877
* Mon May 8 2006 Dan Walsh <dwalsh@redhat.com> 1.30.6-1
64b877
- Upgrade to latest from NSA
64b877
	* Merged getfscreatecon man page fix from Dan Walsh.
64b877
	* Updated booleans(8) man page to drop references to the old
64b877
	  booleans file and to note that setsebool can be used to set
64b877
	  the boot-time defaults via -P.
64b877
64b877
* Mon May 8 2006 Dan Walsh <dwalsh@redhat.com> 1.30.5-1
64b877
- Upgrade to latest from NSA
64b877
	* Merged fix warnings patch from Karl MacMillan.	
64b877
	* Merged setrans client support from Dan Walsh.
64b877
	  This removes use of libsetrans.
64b877
	* Merged patch to eliminate use of PAGE_SIZE constant from Dan Walsh.
64b877
	* Merged swig typemap fixes from Glauber de Oliveira Costa.
64b877
64b877
* Wed May 3 2006 Dan Walsh <dwalsh@redhat.com> 1.30.3-3
64b877
- Change the way translations work,  Use setransd/remove libsetrans
64b877
64b877
* Tue May 2 2006 Dan Walsh <dwalsh@redhat.com> 1.30.3-2
64b877
- Add selinuxswig fixes
64b877
- Stop using PAGE_SIZE and start using sysconf(_SC_PAGE_SIZE)
64b877
64b877
* Fri Apr 14 2006 Dan Walsh <dwalsh@redhat.com> 1.30.3-1
64b877
- Upgrade to latest from NSA
64b877
	* Added distclean target to Makefile.
64b877
	* Regenerated swig files.
64b877
	* Changed matchpathcon_init to verify that the spec file is
64b877
	  a regular file.
64b877
	* Merged python binding t_output_helper removal patch from Dan Walsh.
64b877
64b877
* Tue Apr 11 2006 Dan Walsh <dwalsh@redhat.com> 1.30.1-2
64b877
- Fix python bindings for matchpathcon
64b877
- Fix booleans man page
64b877
64b877
* Mon Mar 27 2006 Dan Walsh <dwalsh@redhat.com> 1.30.1-1
64b877
- Merged Makefile PYLIBVER definition patch from Dan Walsh.
64b877
64b877
* Fri Mar 10 2006 Dan Walsh <dwalsh@redhat.com> 1.30-1
64b877
- Make some fixes so it will build on RHEL4
64b877
- Upgrade to latest from NSA
64b877
	* Updated version for release.
64b877
	* Altered rpm_execcon fallback logic for permissive mode to also
64b877
	  handle case where /selinux/enforce is not available.
64b877
64b877
* Fri Feb 10 2006 Jesse Keating <jkeating@redhat.com> - 1.29.7-1.2
64b877
- bump again for double-long bug on ppc(64)
64b877
64b877
* Tue Feb 07 2006 Jesse Keating <jkeating@redhat.com> - 1.29.7-1.1
64b877
- rebuilt for new gcc4.1 snapshot and glibc changes
64b877
64b877
* Fri Jan 20 2006 Dan Walsh <dwalsh@redhat.com> 1.29.7-1
64b877
- Upgrade to latest from NSA
64b877
	* Merged install-pywrap Makefile patch from Joshua Brindle.
64b877
64b877
* Wed Jan 18 2006 Dan Walsh <dwalsh@redhat.com> 1.29.6-1
64b877
- Upgrade to latest from NSA
64b877
	* Merged pywrap Makefile patch from Dan Walsh.
64b877
64b877
* Fri Jan 13 2006 Dan Walsh <dwalsh@redhat.com> 1.29.5-2
64b877
- Split out pywrap in Makefile
64b877
64b877
* Fri Jan 13 2006 Dan Walsh <dwalsh@redhat.com> 1.29.5-1
64b877
- Upgrade to latest from NSA
64b877
	* Added getseuser test program.
64b877
64b877
* Fri Jan 6 2006 Dan Walsh <dwalsh@redhat.com> 1.29.4-1
64b877
- Upgrade to latest from NSA
64b877
	* Added format attribute to myprintf in matchpathcon.c and
64b877
	  removed obsoleted rootlen variable in init_selinux_config().
64b877
64b877
* Wed Jan 4 2006 Dan Walsh <dwalsh@redhat.com> 1.29.3-2
64b877
- Build with new libsepol
64b877
64b877
* Wed Jan 4 2006 Dan Walsh <dwalsh@redhat.com> 1.29.3-1
64b877
- Upgrade to latest from NSA
64b877
	* Merged several fixes and improvements from Ulrich Drepper
64b877
	  (Red Hat), including:
64b877
	  - corrected use of getline
64b877
	  - further calls to __fsetlocking for local files
64b877
	  - use of strdupa and asprintf
64b877
	  - proper handling of dirent in booleans code
64b877
	  - use of -z relro
64b877
	  - several other optimizations
64b877
	* Merged getpidcon python wrapper from Dan Walsh (Red Hat).
64b877
64b877
* Sat Dec 24 2005 Dan Walsh <dwalsh@redhat.com> 1.29.2-4
64b877
- Add build requires line for libsepol-devel
64b877
64b877
* Tue Dec 20 2005 Dan Walsh <dwalsh@redhat.com> 1.29.2-3
64b877
- Fix swig call for getpidcon
64b877
64b877
* Mon Dec 19 2005 Dan Walsh <dwalsh@redhat.com> 1.29.2-2
64b877
- Move libselinux.so to base package
64b877
64b877
* Wed Dec 14 2005 Dan Walsh <dwalsh@redhat.com> 1.29.2-1
64b877
- Upgrade to latest from NSA
64b877
	* Merged call to finish_context_translations from Dan Walsh.
64b877
	  This eliminates a memory leak from failing to release memory
64b877
	  allocated by libsetrans.
64b877
64b877
* Sun Dec 11 2005 Dan Walsh <dwalsh@redhat.com> 1.29.1-3
64b877
- update to latest libsetrans  
64b877
- Fix potential memory leak
64b877
64b877
* Fri Dec 09 2005 Jesse Keating <jkeating@redhat.com>
64b877
- rebuilt
64b877
64b877
* Thu Dec 8 2005 Dan Walsh <dwalsh@redhat.com> 1.29.1-1
64b877
- Update to never version
64b877
	* Merged patch for swig interfaces from Dan Walsh.
64b877
64b877
* Wed Dec 7 2005 Dan Walsh <dwalsh@redhat.com> 1.28-1
64b877
- Update to never version
64b877
64b877
* Wed Dec 7 2005 Dan Walsh <dwalsh@redhat.com> 1.27.28-2
64b877
- Fix some of the python swig objects
64b877
64b877
* Thu Dec 1 2005 Dan Walsh <dwalsh@redhat.com> 1.27.28-1
64b877
- Update to latest from NSA
64b877
	* Added MATCHPATHCON_VALIDATE flag for set_matchpathcon_flags() and
64b877
	  modified matchpathcon implementation to make context validation/
64b877
	  canonicalization optional at matchpathcon_init time, deferring it
64b877
	  to a successful matchpathcon by default unless the new flag is set
64b877
	  by the caller.
64b877
	* Added matchpathcon_init_prefix() interface, and
64b877
	  reworked matchpathcon implementation to support selective
64b877
	  loading of file contexts entries based on prefix matching
64b877
	  between the pathname regex stems and the specified path
64b877
	  prefix (stem must be a prefix of the specified path prefix).
64b877
64b877
* Wed Nov 30 2005 Dan Walsh <dwalsh@redhat.com> 1.27.26-1
64b877
- Update to latest from NSA
64b877
	* Change getsebool to return on/off instead of active/inactive
64b877
64b877
* Tue Nov 29 2005 Dan Walsh <dwalsh@redhat.com> 1.27.25-1
64b877
- Update to latest from NSA
64b877
	* Added -f file_contexts option to matchpathcon util.
64b877
	  Fixed warning message in matchpathcon_init().
64b877
	* Merged Makefile python definitions patch from Dan Walsh.
64b877
64b877
* Mon Nov 28 2005 Dan Walsh <dwalsh@redhat.com> 1.27.23-1
64b877
- Update to latest from NSA
64b877
	* Merged swigify patch from Dan Walsh.
64b877
64b877
* Mon Nov 28 2005 Dan Walsh <dwalsh@redhat.com> 1.27.22-4
64b877
- Separate out libselinux-python bindings into separate rpm
64b877
64b877
* Thu Nov 17 2005 Dan Walsh <dwalsh@redhat.com> 1.27.22-3
64b877
- Read libsetrans requirement
64b877
64b877
* Thu Nov 17 2005 Dan Walsh <dwalsh@redhat.com> 1.27.22-2
64b877
- Add python bindings
64b877
64b877
* Wed Nov 16 2005 Dan Walsh <dwalsh@redhat.com> 1.27.22-1
64b877
- Update to latest from NSA
64b877
	* Merged make failure in rpm_execcon non-fatal in permissive mode
64b877
	  patch from Ivan Gyurdiev.
64b877
64b877
* Tue Nov 15 2005 Dan Walsh <dwalsh@redhat.com> 1.27.21-2
64b877
- Remove requirement for libsetrans
64b877
64b877
* Tue Nov 8 2005 Dan Walsh <dwalsh@redhat.com> 1.27.21-1
64b877
- Update to latest from NSA
64b877
	* Added MATCHPATHCON_NOTRANS flag for set_matchpathcon_flags()
64b877
	  and modified matchpathcon_init() to skip context translation
64b877
	  if it is set by the caller.
64b877
64b877
* Tue Nov 8 2005 Dan Walsh <dwalsh@redhat.com> 1.27.20-1
64b877
- Update to latest from NSA
64b877
	* Added security_canonicalize_context() interface and
64b877
	  set_matchpathcon_canoncon() interface for obtaining
64b877
	  canonical contexts.  Changed matchpathcon internals
64b877
	  to obtain canonical contexts by default.  Provided
64b877
	  fallback for kernels that lack extended selinuxfs context
64b877
	  interface.
64b877
- Patch to not translate mls when calling setfiles
64b877
64b877
* Mon Nov 7 2005 Dan Walsh <dwalsh@redhat.com> 1.27.19-1
64b877
- Update to latest from NSA
64b877
	* Merged seusers parser changes from Ivan Gyurdiev.
64b877
	* Merged setsebool to libsemanage patch from Ivan Gyurdiev.
64b877
	* Changed seusers parser to reject empty fields.
64b877
64b877
* Fri Nov 4 2005 Dan Walsh <dwalsh@redhat.com> 1.27.18-1
64b877
- Update to latest from NSA
64b877
	* Merged seusers empty level handling patch from Jonathan Kim (TCS).
64b877
64b877
* Thu Nov 3 2005 Dan Walsh <dwalsh@redhat.com> 1.27.17-4
64b877
- Rebuild for latest libsepol
64b877
64b877
* Mon Oct 31 2005 Dan Walsh <dwalsh@redhat.com> 1.27.17-2
64b877
- Rebuild for latest libsepol
64b877
64b877
* Wed Oct 26 2005 Dan Walsh <dwalsh@redhat.com> 1.27.17-1
64b877
- Change default to __default__
64b877
64b877
* Wed Oct 26 2005 Dan Walsh <dwalsh@redhat.com> 1.27.14-3
64b877
- Change default to __default__
64b877
64b877
* Tue Oct 25 2005 Dan Walsh <dwalsh@redhat.com> 1.27.14-2
64b877
- Add selinux_translations_path
64b877
64b877
* Tue Oct 25 2005 Dan Walsh <dwalsh@redhat.com> 1.27.14-1
64b877
- Update to latest from NSA
64b877
	* Merged selinux_path() and selinux_homedir_context_path()
64b877
	  functions from Joshua Brindle.
64b877
64b877
* Fri Oct 21 2005 Dan Walsh <dwalsh@redhat.com> 1.27.13-2
64b877
- Need to check for /sbin/telinit
64b877
64b877
* Thu Oct 20 2005 Dan Walsh <dwalsh@redhat.com> 1.27.13-1
64b877
- Update to latest from NSA
64b877
	* Merged fixes for make DESTDIR= builds from Joshua Brindle.
64b877
64b877
* Mon Oct 17 2005 Dan Walsh <dwalsh@redhat.com> 1.27.12-1
64b877
- Update to latest from NSA
64b877
	* Merged get_default_context_with_rolelevel and man pages from
64b877
	  Dan Walsh (Red Hat).
64b877
	* Updated call to sepol_policydb_to_image for sepol changes.
64b877
	* Changed getseuserbyname to ignore empty lines and to handle
64b877
	no matching entry in the same manner as no seusers file.
64b877
64b877
* Fri Oct 14 2005 Dan Walsh <dwalsh@redhat.com> 1.27.9-2
64b877
- Tell init to reexec itself in post script
64b877
64b877
* Fri Oct 7 2005 Dan Walsh <dwalsh@redhat.com> 1.27.9-1
64b877
- Update to latest from NSA
64b877
	* Changed selinux_mkload_policy to try downgrading the
64b877
	latest policy version available to the kernel-supported version.
64b877
	* Changed selinux_mkload_policy to fall back to the maximum
64b877
	policy version supported by libsepol if the kernel policy version
64b877
	falls outside of the supported range.
64b877
64b877
* Fri Oct 7 2005 Dan Walsh <dwalsh@redhat.com> 1.27.7-1
64b877
- Update to latest from NSA
64b877
	* Changed getseuserbyname to fall back to the Linux username and
64b877
	NULL level if seusers config file doesn't exist unless 
64b877
	REQUIRESEUSERS=1 is set in /etc/selinux/config.
64b877
	* Moved seusers.conf under $SELINUXTYPE and renamed to seusers.
64b877
64b877
* Thu Oct 6 2005 Dan Walsh <dwalsh@redhat.com> 1.27.6-1
64b877
- Update to latest from NSA
64b877
	* Added selinux_init_load_policy() function as an even higher level
64b877
	interface for the initial policy load by /sbin/init.  This obsoletes
64b877
	the load_policy() function in the sysvinit-selinux.patch. 
64b877
	* Added selinux_mkload_policy() function as a higher level interface
64b877
	for loading policy than the security_load_policy() interface.
64b877
64b877
* Thu Oct 6 2005 Dan Walsh <dwalsh@redhat.com> 1.27.4-1
64b877
- Update to latest from NSA
64b877
	* Merged fix for matchpathcon (regcomp error checking) from Johan
64b877
	Fischer.  Also added use of regerror to obtain the error string
64b877
	for inclusion in the error message.
64b877
64b877
* Tue Oct 4 2005 Dan Walsh <dwalsh@redhat.com> 1.27.3-1
64b877
- Update to latest from NSA
64b877
	* Changed getseuserbyname to not require (and ignore if present)
64b877
	the MLS level in seusers.conf if MLS is disabled, setting *level
64b877
	to NULL in this case.
64b877
64b877
* Mon Oct 3 2005 Dan Walsh <dwalsh@redhat.com> 1.27.2-1
64b877
- Update to latest from NSA
64b877
	* Merged getseuserbyname patch from Dan Walsh.
64b877
64b877
* Thu Sep 29 2005 Dan Walsh <dwalsh@redhat.com> 1.27.1-3
64b877
- Fix patch to satisfy upstream
64b877
64b877
* Wed Sep 28 2005 Dan Walsh <dwalsh@redhat.com> 1.27.1-2
64b877
- Update to latest from NSA
64b877
- Add getseuserbyname
64b877
64b877
* Fri Sep 16 2005 Dan Walsh <dwalsh@redhat.com> 1.26-6
64b877
- Fix patch call
64b877
64b877
* Tue Sep 13 2005 Dan Walsh <dwalsh@redhat.com> 1.26-5
64b877
- Fix strip_con call
64b877
64b877
* Tue Sep 13 2005 Dan Walsh <dwalsh@redhat.com> 1.26-3
64b877
- Go back to original libsetrans code
64b877
64b877
* Mon Sep 12 2005 Dan Walsh <dwalsh@redhat.com> 1.26-2
64b877
- Eliminate forth param from mls context when mls is not enabled.
64b877
64b877
* Tue Sep 6 2005 Dan Walsh <dwalsh@redhat.com> 1.25.7-1
64b877
- Update from NSA
64b877
	* Merged modified form of patch to avoid dlopen/dlclose by
64b877
	the static libselinux from Dan Walsh.  Users of the static libselinux
64b877
	will not have any context translation by default.
64b877
64b877
* Thu Sep 1 2005 Dan Walsh <dwalsh@redhat.com> 1.25.6-1
64b877
- Update from NSA
64b877
	* Added public functions to export context translation to
64b877
	users of libselinux (selinux_trans_to_raw_context,
64b877
	selinux_raw_to_trans_context).
64b877
64b877
* Mon Aug 29 2005 Dan Walsh <dwalsh@redhat.com> 1.25.5-1
64b877
- Update from NSA
64b877
	* Remove special definition for context_range_set; use
64b877
	common code.
64b877
64b877
* Thu Aug 25 2005 Dan Walsh <dwalsh@redhat.com> 1.25.4-1
64b877
- Update from NSA
64b877
	* Hid translation-related symbols entirely and ensured that 
64b877
	raw functions have hidden definitions for internal use.
64b877
	* Allowed setting NULL via context_set* functions.
64b877
	* Allowed whitespace in MLS component of context.
64b877
	* Changed rpm_execcon to use translated functions to workaround
64b877
	lack of MLS level on upgraded systems.
64b877
64b877
* Wed Aug 24 2005 Dan Walsh <dwalsh@redhat.com> 1.25.3-2
64b877
- Allow set_comp on unset ranges
64b877
64b877
* Wed Aug 24 2005 Dan Walsh <dwalsh@redhat.com> 1.25.3-1
64b877
- Merged context translation patch, originally by TCS,
64b877
  with modifications by Dan Walsh (Red Hat).
64b877
64b877
* Wed Aug 17 2005 Dan Walsh <dwalsh@redhat.com> 1.25.2-2
64b877
- Apply translation patch
64b877
64b877
* Thu Aug 11 2005 Dan Walsh <dwalsh@redhat.com> 1.25.2-1
64b877
- Update from NSA
64b877
	* Merged several fixes for error handling paths in the
64b877
	  AVC sidtab, matchpathcon, booleans, context, and get_context_list
64b877
	  code from Serge Hallyn (IBM). Bugs found by Coverity.
64b877
	* Removed setupns; migrated to pam.
64b877
	* Merged patches to rename checkPasswdAccess() from Joshua Brindle.
64b877
	  Original symbol is temporarily retained for compatibility until 
64b877
	  all callers are updated.
64b877
64b877
* Mon Jul 18 2005 Dan Walsh <dwalsh@redhat.com> 1.24.2-1
64b877
- Update makefiles
64b877
64b877
* Wed Jun 29 2005 Dan Walsh <dwalsh@redhat.com> 1.24.1-1
64b877
- Update from NSA
64b877
	* Merged security_setupns() from Chad Sellers.
64b877
- fix selinuxenabled man page
64b877
64b877
* Fri May 20 2005 Dan Walsh <dwalsh@redhat.com> 1.23.11-1
64b877
- Update from NSA
64b877
	* Merged avcstat and selinux man page from Dan Walsh.
64b877
	* Changed security_load_booleans to process booleans.local 
64b877
	  even if booleans file doesn't exist.
64b877
	
64b877
* Fri Apr 29 2005 Dan Walsh <dwalsh@redhat.com> 1.23.10-3
64b877
- Fix avcstat to clear totals
64b877
64b877
* Fri Apr 29 2005 Dan Walsh <dwalsh@redhat.com> 1.23.10-2
64b877
- Add info to man page
64b877
64b877
* Fri Apr 29 2005 Dan Walsh <dwalsh@redhat.com> 1.23.10-1
64b877
- Update from NSA
64b877
	* Merged set_selinuxmnt patch from Bill Nottingham (Red Hat).
64b877
	* Rewrote get_ordered_context_list and helpers, including
64b877
	  changing logic to allow variable MLS fields.
64b877
64b877
* Tue Apr 26 2005 Dan Walsh <dwalsh@redhat.com> 1.23.8-1
64b877
- Update from NSA
64b877
64b877
* Thu Apr 21 2005 Dan Walsh <dwalsh@redhat.com> 1.23.7-3
64b877
- Add backin matchpathcon
64b877
64b877
* Wed Apr 13 2005 Dan Walsh <dwalsh@redhat.com> 1.23.7-2
64b877
- Fix selinux_policy_root man page
64b877
64b877
* Wed Apr 13 2005 Dan Walsh <dwalsh@redhat.com> 1.23.7-1
64b877
- Change assert(selinux_mnt) to if (!selinux_mnt) return -1;
64b877
64b877
* Mon Apr 11 2005 Dan Walsh <dwalsh@redhat.com> 1.23.6-1
64b877
- Update from NSA
64b877
	* Fixed bug in matchpathcon_filespec_destroy.
64b877
64b877
* Wed Apr 6 2005 Dan Walsh <dwalsh@redhat.com> 1.23.5-1
64b877
- Update from NSA
64b877
	* Fixed bug in rpm_execcon error handling path.
64b877
64b877
* Mon Apr 4 2005 Dan Walsh <dwalsh@redhat.com> 1.23.4-1
64b877
- Update from NSA
64b877
	* Merged fix for set_matchpathcon* functions from Andreas Steinmetz.
64b877
	* Merged fix for getconlist utility from Andreas Steinmetz.
64b877
64b877
* Tue Mar 29 2005 Dan Walsh <dwalsh@redhat.com> 1.23.2-3
64b877
- Update from NSA
64b877
64b877
* Wed Mar 23 2005 Dan Walsh <dwalsh@redhat.com> 1.23.2-2
64b877
- Better handling of booleans
64b877
64b877
* Thu Mar 17 2005 Dan Walsh <dwalsh@redhat.com> 1.23.2-1
64b877
- Update from NSA
64b877
	* Merged destructors patch from Tomas Mraz.
64b877
64b877
* Thu Mar 17 2005 Dan Walsh <dwalsh@redhat.com> 1.23.1-1
64b877
- Update from NSA
64b877
	* Added set_matchpathcon_flags() function for setting flags
64b877
	  controlling operation of matchpathcon.  MATCHPATHCON_BASEONLY
64b877
	  means only process the base file_contexts file, not 
64b877
	  file_contexts.homedirs or file_contexts.local, and is for use by
64b877
	  setfiles -c.
64b877
	* Updated matchpathcon.3 man page.
64b877
64b877
* Thu Mar 10 2005 Dan Walsh <dwalsh@redhat.com> 1.22-1
64b877
- Update from NSA
64b877
64b877
* Tue Mar 8 2005 Dan Walsh <dwalsh@redhat.com> 1.21.13-1
64b877
- Update from NSA
64b877
	* Fixed bug in matchpathcon_filespec_add() - failure to clear fl_head.
64b877
64b877
* Tue Mar 1 2005 Dan Walsh <dwalsh@redhat.com> 1.21.12-1
64b877
- Update from NSA
64b877
  * Changed matchpathcon_common to ignore any non-format bits in the mode.
64b877
64b877
* Mon Feb 28 2005 Dan Walsh <dwalsh@redhat.com> 1.21.11-2
64b877
- Default matchpathcon to regular files if the user specifies a mode
64b877
64b877
* Tue Feb 22 2005 Dan Walsh <dwalsh@redhat.com> 1.21.11-1
64b877
- Update from NSA
64b877
	* Merged several fixes from Ulrich Drepper.
64b877
64b877
* Mon Feb 21 2005 Dan Walsh <dwalsh@redhat.com> 1.21.10-3
64b877
- Fix matchpathcon on eof.
64b877
64b877
* Thu Feb 17 2005 Dan Walsh <dwalsh@redhat.com> 1.21.10-1
64b877
- Update from NSA
64b877
	* Merged matchpathcon patch for file_contexts.homedir from Dan Walsh.
64b877
	* Added selinux_users_path() for path to directory containing
64b877
	  system.users and local.users.
64b877
64b877
* Thu Feb 10 2005 Dan Walsh <dwalsh@redhat.com> 1.21.9-2
64b877
- Process file_context.homedir
64b877
64b877
* Thu Feb 10 2005 Dan Walsh <dwalsh@redhat.com> 1.21.9-1
64b877
- Update from NSA
64b877
  *	 Changed relabel Makefile target to use restorecon.
64b877
64b877
* Tue Feb 8 2005 Dan Walsh <dwalsh@redhat.com> 1.21.8-1
64b877
- Update from NSA
64b877
	* Regenerated av_permissions.h.
64b877
64b877
* Wed Feb 2 2005 Dan Walsh <dwalsh@redhat.com> 1.21.7-1
64b877
- Update from NSA
64b877
	* Modified avc_dump_av to explicitly check for any permissions that
64b877
	  cannot be mapped to string names and display them as a hex value.
64b877
	* Regenerated av_permissions.h.
64b877
64b877
* Mon Jan 31 2005 Dan Walsh <dwalsh@redhat.com> 1.21.5-1
64b877
- Update from NSA
64b877
	* Generalized matchpathcon internals, exported more interfaces,
64b877
	  and moved additional code from setfiles into libselinux so that
64b877
	  setfiles can directly use matchpathcon.
64b877
64b877
* Fri Jan 28 2005 Dan Walsh <dwalsh@redhat.com> 1.21.4-1
64b877
- Update from NSA
64b877
	* Prevent overflow of spec array in matchpathcon.
64b877
	* Fixed several uses of internal functions to avoid relocations.
64b877
	* Changed rpm_execcon to check is_selinux_enabled() and fallback to
64b877
	  a regular execve if not enabled (or unable to determine due to a lack
64b877
	  of /proc, e.g. chroot'd environment).
64b877
64b877
* Wed Jan 26 2005 Dan Walsh <dwalsh@redhat.com> 1.21.2-1
64b877
- Update from NSA
64b877
	* Merged minor fix for avcstat from Dan Walsh.
64b877
64b877
* Mon Jan 24 2005 Dan Walsh <dwalsh@redhat.com> 1.21.1-3
64b877
- rpmexeccon should not fail in permissive mode.
64b877
64b877
* Fri Jan 21 2005 Dan Walsh <dwalsh@redhat.com> 1.21.1-2
64b877
- fix printf in avcstat
64b877
64b877
* Thu Jan 20 2005 Dan Walsh <dwalsh@redhat.com> 1.21.1-1
64b877
- Update from NSA
64b877
64b877
* Wed Jan 12 2005 Dan Walsh <dwalsh@redhat.com> 1.20.1-3
64b877
- Modify matchpathcon to also process file_contexts.local if it exists
64b877
64b877
* Wed Jan 12 2005 Dan Walsh <dwalsh@redhat.com> 1.20.1-2
64b877
- Add is_customizable_types function call
64b877
64b877
* Fri Jan 7 2005 Dan Walsh <dwalsh@redhat.com> 1.20.1-1
64b877
- Update to latest from upstream
64b877
	* Just changing version number to match upstream
64b877
64b877
* Wed Dec 29 2004 Dan Walsh <dwalsh@redhat.com> 1.19.4-1
64b877
- Update to latest from upstream
64b877
	* Changed matchpathcon to return -1 with errno ENOENT for 
64b877
	  <<none>> entries, and also for an empty file_contexts configuration.
64b877
64b877
* Tue Dec 28 2004 Dan Walsh <dwalsh@redhat.com> 1.19.3-3
64b877
- Fix link devel libraries
64b877
64b877
* Mon Dec 27 2004 Dan Walsh <dwalsh@redhat.com> 1.19.3-2
64b877
- Fix unitialized variable in avcstat.c
64b877
64b877
* Tue Nov 30 2004 Dan Walsh <dwalsh@redhat.com> 1.19.3-1
64b877
- Upgrade to upstream
64b877
	* Removed some trivial utils that were not useful or redundant.
64b877
	* Changed BINDIR default to /usr/sbin to match change in Fedora.
64b877
	* Added security_compute_member.
64b877
	* Added man page for setcon.
64b877
64b877
* Tue Nov 30 2004 Dan Walsh <dwalsh@redhat.com> 1.19.2-1
64b877
- Upgrade to upstream
64b877
64b877
* Thu Nov 18 2004 Dan Walsh <dwalsh@redhat.com> 1.19.1-6
64b877
- Add avcstat program
64b877
64b877
* Mon Nov 15 2004 Dan Walsh <dwalsh@redhat.com> 1.19.1-4
64b877
- Add lots of missing man pages
64b877
64b877
* Fri Nov 12 2004 Dan Walsh <dwalsh@redhat.com> 1.19.1-2
64b877
- Fix output of getsebool.
64b877
64b877
* Tue Nov 9 2004 Dan Walsh <dwalsh@redhat.com> 1.19.1-1
64b877
- Update from upstream, fix setsebool -P segfault
64b877
64b877
* Fri Nov 5 2004 Steve Grubb <sgrubb@redhat.com> 1.18.1-5
64b877
- Add a patch from upstream. Fixes signed/unsigned issues, and 
64b877
  incomplete structure copy.
64b877
64b877
* Thu Nov 4 2004 Dan Walsh <dwalsh@redhat.com> 1.18.1-4
64b877
- More fixes from sgrubb, better syslog
64b877
64b877
* Thu Nov 4 2004 Dan Walsh <dwalsh@redhat.com> 1.18.1-3
64b877
- Have setsebool and togglesebool log changes to syslog
64b877
64b877
* Wed Nov 3 2004 Steve Grubb <sgrubb@redhat.com> 1.18.1-2
64b877
- Add patch to make setsebool update bool on disk
64b877
- Make togglesebool have a rollback capability in case it blows up inflight
64b877
64b877
* Tue Nov 2 2004 Dan Walsh <dwalsh@redhat.com> 1.18.1-1
64b877
- Upgrade to latest from NSA
64b877
64b877
* Thu Oct 28 2004 Steve Grubb <sgrubb@redhat.com> 1.17.15-2
64b877
- Changed the location of the utilities to /usr/sbin since
64b877
  normal users can't use them anyways.
64b877
64b877
* Wed Oct 27 2004 Steve Grubb <sgrubb@redhat.com> 1.17.15-2
64b877
- Updated various utilities, removed utilities that are for testing,
64b877
  added man pages.
64b877
64b877
* Fri Oct 15 2004 Dan Walsh <dwalsh@redhat.com> 1.17.15-1
64b877
- Add -g flag to make
64b877
- Upgrade to latest  from NSA
64b877
	* Added rpm_execcon.
64b877
64b877
* Fri Oct 1 2004 Dan Walsh <dwalsh@redhat.com> 1.17.14-1
64b877
- Upgrade to latest  from NSA
64b877
	* Merged setenforce and removable context patch from Dan Walsh.
64b877
	* Merged build fix for alpha from Ulrich Drepper.
64b877
	* Removed copyright/license from selinux_netlink.h - definitions only.
64b877
64b877
* Fri Oct 1 2004 Dan Walsh <dwalsh@redhat.com> 1.17.13-3
64b877
- Change setenforce to accept Enforcing and Permissive
64b877
64b877
* Wed Sep 22 2004 Dan Walsh <dwalsh@redhat.com> 1.17.13-2
64b877
- Add alpha patch
64b877
64b877
* Mon Sep 20 2004 Dan Walsh <dwalsh@redhat.com> 1.17.13-1
64b877
- Upgrade to latest  from NSA
64b877
64b877
* Thu Sep 16 2004 Dan Walsh <dwalsh@redhat.com> 1.17.12-2
64b877
- Add selinux_removable_context_path
64b877
64b877
* Tue Sep 14 2004 Dan Walsh <dwalsh@redhat.com> 1.17.12-1
64b877
- Update from NSA
64b877
	* Add matchmediacon
64b877
64b877
* Tue Sep 14 2004 Dan Walsh <dwalsh@redhat.com> 1.17.11-1
64b877
- Update from NSA
64b877
	* Merged in matchmediacon changes.
64b877
64b877
* Fri Sep 10 2004 Dan Walsh <dwalsh@redhat.com> 1.17.10-1
64b877
- Update from NSA
64b877
	* Regenerated headers for new nscd permissions.
64b877
64b877
* Wed Sep 8 2004 Dan Walsh <dwalsh@redhat.com> 1.17.9-2
64b877
- Add matchmediacon
64b877
64b877
* Wed Sep 8 2004 Dan Walsh <dwalsh@redhat.com> 1.17.9-1
64b877
- Update from NSA
64b877
	* Added get_default_context_with_role.
64b877
64b877
* Thu Sep 2 2004 Dan Walsh <dwalsh@redhat.com> 1.17.8-2
64b877
- Clean up spec file
64b877
	* Patch from Matthias Saou
64b877
64b877
* Thu Sep 2 2004 Dan Walsh <dwalsh@redhat.com> 1.17.8-1
64b877
- Update from NSA
64b877
	* Added set_matchpathcon_printf.	
64b877
64b877
* Wed Sep 1 2004 Dan Walsh <dwalsh@redhat.com> 1.17.7-1
64b877
- Update from NSA
64b877
	* Reworked av_inherit.h to allow easier re-use by kernel. 
64b877
64b877
* Tue Aug 31 2004 Dan Walsh <dwalsh@redhat.com> 1.17.6-1
64b877
- Add strcasecmp in selinux_config
64b877
- Update from NSA
64b877
	* Changed avc_has_perm_noaudit to not fail on netlink errors.
64b877
	* Changed avc netlink code to check pid based on patch by Steve Grubb.
64b877
	* Merged second optimization patch from Ulrich Drepper.
64b877
	* Changed matchpathcon to skip invalid file_contexts entries.
64b877
	* Made string tables private to libselinux.
64b877
	* Merged strcat->stpcpy patch from Ulrich Drepper.
64b877
	* Merged matchpathcon man page from Dan Walsh.
64b877
	* Merged patch to eliminate PLTs for local syms from Ulrich Drepper.
64b877
	* Autobind netlink socket.
64b877
	* Dropped compatibility code from security_compute_user.
64b877
	* Merged fix for context_range_set from Chad Hanson.
64b877
	* Merged allocation failure checking patch from Chad Hanson.
64b877
	* Merged avc netlink error message patch from Colin Walters.
64b877
64b877
64b877
* Mon Aug 30 2004 Dan Walsh <dwalsh@redhat.com> 1.17.5-1
64b877
- Update from NSA
64b877
	* Merged second optimization patch from Ulrich Drepper.
64b877
	* Changed matchpathcon to skip invalid file_contexts entries.
64b877
	* Made string tables private to libselinux.
64b877
	* Merged strcat->stpcpy patch from Ulrich Drepper.
64b877
	* Merged matchpathcon man page from Dan Walsh.
64b877
	* Merged patch to eliminate PLTs for local syms from Ulrich Drepper.
64b877
	* Autobind netlink socket.
64b877
	* Dropped compatibility code from security_compute_user.
64b877
	* Merged fix for context_range_set from Chad Hanson.
64b877
	* Merged allocation failure checking patch from Chad Hanson.
64b877
	* Merged avc netlink error message patch from Colin Walters.
64b877
64b877
* Mon Aug 30 2004 Dan Walsh <dwalsh@redhat.com> 1.17.4-1
64b877
- Update from NSA
64b877
- Add optflags
64b877
64b877
* Fri Aug 27 2004 Dan Walsh <dwalsh@redhat.com> 1.17.3-1
64b877
- Update from NSA
64b877
64b877
* Thu Aug 26 2004 Dan Walsh <dwalsh@redhat.com> 1.17.2-1
64b877
- Add matchpathcon man page
64b877
- Latest from NSA
64b877
	* Merged patch to eliminate PLTs for local syms from Ulrich Drepper.
64b877
	* Autobind netlink socket.
64b877
	* Dropped compatibility code from security_compute_user.
64b877
	* Merged fix for context_range_set from Chad Hanson.
64b877
	* Merged allocation failure checking patch from Chad Hanson.
64b877
	* Merged avc netlink error message patch from Colin Walters.
64b877
64b877
* Tue Aug 24 2004 Dan Walsh <dwalsh@redhat.com> 1.17.1-1
64b877
- Latest from NSA
64b877
	* Autobind netlink socket.
64b877
	* Dropped compatibility code from security_compute_user.
64b877
	* Merged fix for context_range_set from Chad Hanson.
64b877
	* Merged allocation failure checking patch from Chad Hanson.
64b877
	* Merged avc netlink error message patch from Colin Walters.
64b877
64b877
* Sun Aug 22 2004 Dan Walsh <dwalsh@redhat.com> 1.16.1-1
64b877
- Latest from NSA
64b877
64b877
* Thu Aug 19 2004 Colin Walters <walters@redhat.com> 1.16-1
64b877
- New upstream version
64b877
64b877
* Tue Aug 17 2004 Dan Walsh <dwalsh@redhat.com> 1.15.7-1
64b877
- Latest from Upstream
64b877
64b877
* Mon Aug 16 2004 Dan Walsh <dwalsh@redhat.com> 1.15.6-1
64b877
- Fix man pages
64b877
64b877
* Mon Aug 16 2004 Dan Walsh <dwalsh@redhat.com> 1.15.5-1
64b877
- Latest from Upstream
64b877
64b877
* Fri Aug 13 2004 Dan Walsh <dwalsh@redhat.com> 1.15.4-1
64b877
- Latest from Upstream
64b877
64b877
* Thu Aug 12 2004 Dan Walsh <dwalsh@redhat.com> 1.15.3-2
64b877
- Add man page for boolean functions and SELinux
64b877
64b877
* Sun Aug 8 2004 Dan Walsh <dwalsh@redhat.com> 1.15.3-1
64b877
- Latest from NSA
64b877
64b877
* Mon Jul 19 2004 Dan Walsh <dwalsh@redhat.com> 1.15.2-1
64b877
- Latest from NSA
64b877
64b877
* Mon Jul 19 2004 Dan Walsh <dwalsh@redhat.com> 1.15.1-3
64b877
- uppercase getenforce returns, to make them match system-config-securitylevel
64b877
64b877
* Thu Jul 15 2004 Dan Walsh <dwalsh@redhat.com> 1.15.1-2
64b877
- Remove old path patch
64b877
64b877
* Thu Jul 8 2004 Dan Walsh <dwalsh@redhat.com> 1.15.1-1
64b877
- Update to latest from NSA
64b877
- Add fix to only get old path if file_context file exists in old location
64b877
64b877
* Wed Jun 30 2004 Dan Walsh <dwalsh@redhat.com> 1.14.1-1
64b877
- Update to latest from NSA
64b877
64b877
* Wed Jun 16 2004 Dan Walsh <dwalsh@redhat.com> 1.13.4-1
64b877
- add nlclass patch
64b877
- Update to latest from NSA
64b877
64b877
* Tue Jun 15 2004 Elliot Lee <sopwith@redhat.com>
64b877
- rebuilt
64b877
64b877
* Sun Jun 13 2004 Dan Walsh <dwalsh@redhat.com> 1.13.3-2
64b877
- Fix selinux_config to break once it finds SELINUXTYPE.
64b877
64b877
* Fri May 28 2004 Dan Walsh <dwalsh@redhat.com> 1.13.2-1
64b877
-Update with latest from NSA
64b877
64b877
* Thu May 27 2004 Dan Walsh <dwalsh@redhat.com> 1.13.1-1
64b877
- Change to use new policy mechanism
64b877
64b877
* Mon May 17 2004 Dan Walsh <dwalsh@redhat.com> 1.12-2
64b877
- add man patch
64b877
64b877
* Fri May 14 2004 Dan Walsh <dwalsh@redhat.com> 1.12-1
64b877
- Update with latest from NSA
64b877
64b877
* Wed May 5 2004 Dan Walsh <dwalsh@redhat.com> 1.11.4-1
64b877
- Update with latest from NSA
64b877
64b877
* Thu Apr 22 2004 Dan Walsh <dwalsh@redhat.com> 1.11.3-1
64b877
- Add changes for relaxed policy 
64b877
- Update to match NSA 
64b877
64b877
* Thu Apr 15 2004 Dan Walsh <dwalsh@redhat.com> 1.11.2-1
64b877
- Add relaxed policy changes 
64b877
64b877
* Thu Apr 15 2004 Dan Walsh <dwalsh@redhat.com> 1.11-4
64b877
- Sync with NSA
64b877
64b877
* Thu Apr 15 2004 Dan Walsh <dwalsh@redhat.com> 1.11-3
64b877
- Remove requires glibc>2.3.4
64b877
64b877
* Wed Apr 14 2004 Dan Walsh <dwalsh@redhat.com> 1.11-2
64b877
- Fix selinuxenabled man page.
64b877
64b877
* Wed Apr 7 2004 Dan Walsh <dwalsh@redhat.com> 1.11-1
64b877
- Upgrade to 1.11
64b877
64b877
* Wed Apr 7 2004 Dan Walsh <dwalsh@redhat.com> 1.10-2
64b877
- Add memleaks patch
64b877
64b877
* Wed Apr 7 2004 Dan Walsh <dwalsh@redhat.com> 1.10-1
64b877
- Upgrade to latest from NSA and add more man pages
64b877
64b877
* Thu Apr 1 2004 Dan Walsh <dwalsh@redhat.com> 1.9-1
64b877
- Update to match NSA
64b877
- Cleanup some man pages
64b877
64b877
* Tue Mar 30 2004 Dan Walsh <dwalsh@redhat.com> 1.8-1
64b877
- Upgrade to latest from NSA
64b877
64b877
* Thu Mar 25 2004 Dan Walsh <dwalsh@redhat.com> 1.6-6
64b877
- Add Russell's Man pages
64b877
64b877
* Thu Mar 25 2004 Dan Walsh <dwalsh@redhat.com> 1.6-5
64b877
- Change getenforce to also check is_selinux_enabled
64b877
64b877
* Thu Mar 25 2004 Dan Walsh <dwalsh@redhat.com> 1.6-4
64b877
- Add ownership to /usr/include/selinux
64b877
64b877
* Wed Mar 10 2004 Dan Walsh <dwalsh@redhat.com> 1.6-3
64b877
- fix location of file_contexts file.
64b877
64b877
* Wed Mar 10 2004 Dan Walsh <dwalsh@redhat.com> 1.6-2
64b877
- Fix matchpathcon to use BUFSIZ
64b877
64b877
* Tue Mar 02 2004 Elliot Lee <sopwith@redhat.com>
64b877
- rebuilt
64b877
64b877
* Mon Feb 23 2004 Dan Walsh <dwalsh@redhat.com> 1.4-11
64b877
- add matchpathcon
64b877
64b877
* Fri Feb 13 2004 Elliot Lee <sopwith@redhat.com>
64b877
- rebuilt
64b877
64b877
* Fri Jan 23 2004 Dan Walsh <dwalsh@redhat.com> 1.4-9
64b877
- Add rootok patch
64b877
64b877
* Wed Jan 14 2004 Dan Walsh <dwalsh@redhat.com> 1.4-8
64b877
- Updated getpeernam patch
64b877
64b877
* Tue Jan 13 2004 Dan Walsh <dwalsh@redhat.com> 1.4-7
64b877
- Add getpeernam patch
64b877
64b877
* Thu Dec 18 2003 Dan Walsh <dwalsh@redhat.com> 1.4-6
64b877
- Add getpeercon patch
64b877
64b877
* Thu Dec 18 2003 Dan Walsh <dwalsh@redhat.com> 1.4-5
64b877
- Put mntpoint patch, because found fix for SysVinit
64b877
64b877
* Wed Dec 17 2003 Dan Walsh <dwalsh@redhat.com> 1.4-4
64b877
- Add remove mntpoint patch, because it breaks SysVinit
64b877
64b877
* Wed Dec 17 2003 Dan Walsh <dwalsh@redhat.com> 1.4-3
64b877
- Add mntpoint patch for SysVinit
64b877
64b877
* Fri Dec 12 2003 Dan Walsh <dwalsh@redhat.com> 1.4-2
64b877
- Add -r -u -t to getcon 
64b877
64b877
* Sat Dec 6 2003 Dan Walsh <dwalsh@redhat.com> 1.4-1
64b877
- Upgrade to latest from NSA
64b877
64b877
* Mon Oct 27 2003 Dan Walsh <dwalsh@redhat.com> 1.3-2
64b877
- Fix x86_64 build
64b877
64b877
* Wed Oct 22 2003 Dan Walsh <dwalsh@redhat.com> 1.3-1
64b877
- Latest tarball from NSA.
64b877
64b877
* Tue Oct 21 2003 Dan Walsh <dwalsh@redhat.com> 1.2-9
64b877
- Update with latest changes from NSA
64b877
64b877
* Mon Oct 20 2003 Dan Walsh <dwalsh@redhat.com> 1.2-8
64b877
- Change location of .so file
64b877
64b877
* Wed Oct 8 2003 Dan Walsh <dwalsh@redhat.com> 1.2-7
64b877
- Break out into development library
64b877
64b877
* Wed Oct  8 2003 Dan Walsh <dwalsh@redhat.com> 1.2-6
64b877
- Move location of libselinux.so to /lib
64b877
64b877
* Fri Oct  3 2003 Dan Walsh <dwalsh@redhat.com> 1.2-5
64b877
- Add selinuxenabled patch
64b877
64b877
* Wed Oct  1 2003 Dan Walsh <dwalsh@redhat.com> 1.2-4
64b877
- Update with final NSA 1.2 sources.
64b877
64b877
* Fri Sep  12 2003 Dan Walsh <dwalsh@redhat.com> 1.2-3
64b877
- Update with latest from NSA.
64b877
64b877
* Thu Aug  28 2003 Dan Walsh <dwalsh@redhat.com> 1.2-2
64b877
- Fix to build on x86_64
64b877
64b877
* Thu Aug  21 2003 Dan Walsh <dwalsh@redhat.com> 1.2-1
64b877
- update for version 1.2
64b877
64b877
* Tue May 27 2003 Dan Walsh <dwalsh@redhat.com> 1.0-1
64b877
- Initial version