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