6e1fb9
%global debug_package   %{nil}
6e1fb9
6e1fb9
# container-selinux
6e1fb9
%global git0 https://github.com/containers/container-selinux
6e1fb9
6e1fb9
# container-selinux stuff (prefix with ds_ for version/release etc.)
6e1fb9
# Some bits borrowed from the openstack-selinux package
6e1fb9
%global selinuxtype targeted
6e1fb9
%global moduletype services
6e1fb9
%global modulenames container
6e1fb9
6e1fb9
# Usage: _format var format
6e1fb9
# Expand 'modulenames' into various formats as needed
6e1fb9
# Format must contain '$x' somewhere to do anything useful
6e1fb9
%global _format() export %1=""; for x in %{modulenames}; do %1+=%2; %1+=" "; done;
6e1fb9
6e1fb9
# Version of SELinux we were using
da844c
%global selinux_policyver 3.14.3-80.el8
6e1fb9
6e1fb9
Epoch: 3
6e1fb9
Name: container-selinux
a02966
Version: 2.179.1
6e1fb9
Release: 1%{?dist}
6e1fb9
License: GPLv2
6e1fb9
URL: %{git0}
6e1fb9
Summary: SELinux policies for container runtimes
6e1fb9
Source0: %{git0}/archive/v%{version}.tar.gz
6e1fb9
BuildArch: noarch
6e1fb9
BuildRequires: git
6e1fb9
BuildRequires: pkgconfig(systemd)
6e1fb9
BuildRequires: selinux-policy >= %{selinux_policyver}
6e1fb9
BuildRequires: selinux-policy-devel >= %{selinux_policyver}
6e1fb9
# RE: rhbz#1195804 - ensure min NVR for selinux-policy
6e1fb9
Requires: selinux-policy >= %{selinux_policyver}
6e1fb9
Requires(post): selinux-policy-base >= %{selinux_policyver}
6e1fb9
Requires(post): selinux-policy-targeted >= %{selinux_policyver}
6e1fb9
Requires(post): policycoreutils >= 2.5-11
6e1fb9
%if 0%{?rhel} > 7 || 0%{?fedora}
6e1fb9
Requires(post): policycoreutils-python-utils
6e1fb9
%else
6e1fb9
Requires(post): policycoreutils-python
6e1fb9
%endif
6e1fb9
Requires(post): libselinux-utils
6e1fb9
Requires(post): sed
6e1fb9
Obsoletes: %{name} <= 2:1.12.5-14
6e1fb9
Obsoletes: docker-selinux <= 2:1.12.4-28
6e1fb9
Provides: docker-selinux = %{epoch}:%{version}-%{release}
6e1fb9
Provides: docker-engine-selinux = %{epoch}:%{version}-%{release}
6e1fb9
Conflicts: udica < 0.2.6-1
6e1fb9
6e1fb9
%description
6e1fb9
SELinux policy modules for use with container runtimes.
6e1fb9
6e1fb9
%prep
6e1fb9
%autosetup -Sgit
6e1fb9
6e1fb9
%build
6e1fb9
make
6e1fb9
6e1fb9
%install
6e1fb9
# install policy modules
6e1fb9
%_format MODULES $x.pp.bz2
6e1fb9
install -d %{buildroot}%{_datadir}/selinux/packages
6e1fb9
install -d -p %{buildroot}%{_datadir}/selinux/devel/include/services
6e1fb9
install -p -m 644 container.if %{buildroot}%{_datadir}/selinux/devel/include/services
6e1fb9
install -m 0644 $MODULES %{buildroot}%{_datadir}/selinux/packages
6e1fb9
install -d %{buildroot}/%{_datadir}/containers/selinux
6e1fb9
install -m 644 container_contexts %{buildroot}/%{_datadir}/containers/selinux/contexts
6e1fb9
install -d %{buildroot}%{_datadir}/udica/templates
6e1fb9
install -m 0644 udica-templates/*.cil %{buildroot}%{_datadir}/udica/templates
6e1fb9
6e1fb9
# remove spec file
6e1fb9
rm -rf %{name}.spec
6e1fb9
6e1fb9
%check
6e1fb9
6e1fb9
%pre
6e1fb9
%selinux_relabel_pre -s %{selinuxtype}
6e1fb9
6e1fb9
%post
6e1fb9
# Install all modules in a single transaction
6e1fb9
if [ $1 -eq 1 ]; then
6e1fb9
   %{_sbindir}/setsebool -P -N virt_use_nfs=1 virt_sandbox_use_all_caps=1
6e1fb9
fi
6e1fb9
%_format MODULES %{_datadir}/selinux/packages/$x.pp.bz2
6e1fb9
%{_sbindir}/semodule -n -s %{selinuxtype} -r container 2> /dev/null
6e1fb9
%{_sbindir}/semodule -n -s %{selinuxtype} -d docker 2> /dev/null
6e1fb9
%{_sbindir}/semodule -n -s %{selinuxtype} -d gear 2> /dev/null
6e1fb9
%selinux_modules_install -s %{selinuxtype} $MODULES
6e1fb9
. %{_sysconfdir}/selinux/config
6e1fb9
sed -e "\|container_file_t|h; \${x;s|container_file_t||;{g;t};a\\" -e "container_file_t" -e "}" -i /etc/selinux/${SELINUXTYPE}/contexts/customizable_types > /dev/null 2>&1
6e1fb9
matchpathcon -qV %{_sharedstatedir}/containers || restorecon -R %{_sharedstatedir}/containers &> /dev/null || :
6e1fb9
6e1fb9
%postun
6e1fb9
if [ $1 -eq 0 ]; then
6e1fb9
%selinux_modules_uninstall -s %{selinuxtype} %{modulenames} docker
6e1fb9
fi
6e1fb9
6e1fb9
%triggerpostun -- container-selinux < 3:2.162.1-3
6e1fb9
if %{_sbindir}/selinuxenabled ; then
6e1fb9
  echo "Fixing Rootless SELinux labels in homedir"
6e1fb9
  %{_sbindir}/restorecon -R /home/*/.local/share/containers/storage/overlay*  2> /dev/null || :
6e1fb9
fi
6e1fb9
6e1fb9
%posttrans
6e1fb9
%selinux_relabel_post -s %{selinuxtype}
6e1fb9
6e1fb9
#define license tag if not already defined
6e1fb9
%{!?_licensedir:%global license %doc}
6e1fb9
6e1fb9
%files
6e1fb9
%doc README.md
6e1fb9
%{_datadir}/selinux/*
6e1fb9
%dir %{_datadir}/containers/selinux
6e1fb9
%{_datadir}/containers/selinux/contexts
6e1fb9
%dir %{_datadir}/udica/templates/
6e1fb9
%{_datadir}/udica/templates/*
6e1fb9
6e1fb9
6e1fb9
%changelog
a02966
* Mon Feb 28 2022 Jindrich Novy <jnovy@redhat.com> - 3:2.179.1-1
a02966
- update to https://github.com/containers/container-selinux/releases/tag/v2.179.1
a02966
- Related: #2000051
a02966
da844c
* Fri Feb 11 2022 Jindrich Novy <jnovy@redhat.com> - 3:2.178.0-1
da844c
- update to https://github.com/containers/container-selinux/releases/tag/v2.178.0
da844c
- Related: #2000051
da844c
da844c
* Thu Feb 10 2022 Jindrich Novy <jnovy@redhat.com> - 3:2.177.0-1
da844c
- update to https://github.com/containers/container-selinux/releases/tag/v2.177.0
da844c
- Related: #2000051
da844c
da844c
* Thu Feb 03 2022 Jindrich Novy <jnovy@redhat.com> - 3:2.176.0-1
da844c
- update to https://github.com/containers/container-selinux/releases/tag/v2.176.0
da844c
- Related: #2000051
da844c
da844c
* Wed Feb 02 2022 Jindrich Novy <jnovy@redhat.com> - 3:2.174.0-1
da844c
- update to https://github.com/containers/container-selinux/releases/tag/v2.174.0
da844c
- Related: #2000051
da844c
da844c
* Thu Jan 27 2022 Jindrich Novy <jnovy@redhat.com> - 3:2.173.2-1
da844c
- update to https://github.com/containers/container-selinux/releases/tag/v2.173.2
da844c
- Related: #2000051
da844c
da844c
* Fri Jan 21 2022 Jindrich Novy <jnovy@redhat.com> - 3:2.173.1-2
da844c
- update minimal selinux_policy dependency
da844c
- Related: #2000051
da844c
da844c
* Wed Jan 19 2022 Jindrich Novy <jnovy@redhat.com> - 3:2.173.1-1
da844c
- update to https://github.com/containers/container-selinux/releases/tag/v2.173.1
da844c
- Related: #2000051
da844c
0d0110
* Wed Jan 12 2022 Jindrich Novy <jnovy@redhat.com> - 3:2.173.0-1
0d0110
- update to https://github.com/containers/container-selinux/releases/tag/v2.173.0
0d0110
- Related: #2000051
0d0110
0d0110
* Fri Jan 07 2022 Jindrich Novy <jnovy@redhat.com> - 3:2.172.1-1
0d0110
- update to https://github.com/containers/container-selinux/releases/tag/v2.172.1
0d0110
- Related: #2000051
0d0110
0d0110
* Tue Nov 23 2021 Jindrich Novy <jnovy@redhat.com> - 3:2.172.0-1
0d0110
- update to https://github.com/containers/container-selinux/releases/tag/v2.172.0
0d0110
- Related: #2000051
0d0110
6e1fb9
* Thu Nov 11 2021 Jindrich Novy <jnovy@redhat.com> - 3:2.171.0-1
6e1fb9
- update to https://github.com/containers/container-selinux/releases/tag/v2.171.0
6e1fb9
- Related: #2000051
6e1fb9
6e1fb9
* Wed Oct 06 2021 Jindrich Novy <jnovy@redhat.com> - 3:2.170.0-1
6e1fb9
- update to https://github.com/containers/container-selinux/releases/tag/v2.170.0
6e1fb9
- Related: #2000051
6e1fb9
6e1fb9
* Fri Oct 01 2021 Jindrich Novy <jnovy@redhat.com> - 3:2.169.0-3
6e1fb9
- perform only sanity/installability tests for now
6e1fb9
- Related: #2000051
6e1fb9
6e1fb9
* Wed Sep 29 2021 Jindrich Novy <jnovy@redhat.com> - 3:2.169.0-2
6e1fb9
- add gating.yaml
6e1fb9
- Related: #2000051
6e1fb9
6e1fb9
* Mon Sep 27 2021 Jindrich Novy <jnovy@redhat.com> - 3:2.169.0-1
6e1fb9
- update to https://github.com/containers/container-selinux/releases/tag/v2.169.0
6e1fb9
- Related: #2000051
6e1fb9
6e1fb9
* Tue Sep 21 2021 Vit Mojzis <vmojzis@redhat.com> - 2:2.168.0-2
6e1fb9
- Start shipping udica templates
6e1fb9
- Related: #2000051
6e1fb9
6e1fb9
* Tue Sep 14 2021 Jindrich Novy <jnovy@redhat.com> - 3:2.168.0-1
6e1fb9
- update to https://github.com/containers/container-selinux/releases/tag/v2.168.0
6e1fb9
- Related: #2000051
6e1fb9
6e1fb9
* Fri Sep 03 2021 Jindrich Novy <jnovy@redhat.com> - 3:2.167.0-1
6e1fb9
- update to
6e1fb9
  https://github.com/containers/container-selinux/releases/tag/v2.167.0
6e1fb9
- Related: #2000051
6e1fb9
6e1fb9
* Mon Aug 09 2021 Mohan Boddu <mboddu@redhat.com> - 3:2.164.2-2
6e1fb9
- Rebuilt for IMA sigs, glibc 2.34, aarch64 flags
6e1fb9
  Related: rhbz#1991688
6e1fb9
6e1fb9
* Tue Aug 03 2021 Jindrich Novy <jnovy@redhat.com> - 3:2.164.2-1
6e1fb9
- update to https://github.com/containers/container-selinux/releases/tag/v2.164.2
6e1fb9
- Related: #1970747
6e1fb9
6e1fb9
* Mon Jul 19 2021 Jindrich Novy <jnovy@redhat.com> - 3:2.164.1-1
6e1fb9
- update to https://github.com/containers/container-selinux/releases/tag/v2.164.1
6e1fb9
- Related: #1970747
6e1fb9
6e1fb9
* Wed Jun 23 2021 Jindrich Novy <jnovy@redhat.com> - 3:2.163.0-2
6e1fb9
- add trigger to fix labels in users homedirs, before overlayfs
6e1fb9
  is supported by default for non root users
6e1fb9
- Related: #1970747
6e1fb9
6e1fb9
* Mon Jun 14 2021 Jindrich Novy <jnovy@redhat.com> - 2:2.163.0-1
6e1fb9
- update to https://github.com/containers/container-selinux/releases/tag/v2.163.0
6e1fb9
- Related: #1970747
6e1fb9
6e1fb9
* Fri Jun 11 2021 Jindrich Novy <jnovy@redhat.com> - 2:2.162.2-1
6e1fb9
- update to
6e1fb9
  https://github.com/containers/container-selinux/releases/tag/v2.162.2
6e1fb9
6e1fb9
* Thu Apr 15 2021 Mohan Boddu <mboddu@redhat.com> - 2:2.160.0-2
6e1fb9
- Rebuilt for RHEL 9 BETA on Apr 15th 2021. Related: rhbz#1947937
6e1fb9
6e1fb9
* Wed Mar 31 2021 Jindrich Novy <jnovy@redhat.com> - 2:2.160.0-1
6e1fb9
- update to
6e1fb9
  https://github.com/containers/container-selinux/releases/tag/v2.160.0
6e1fb9
6e1fb9
* Tue Mar 23 2021 Jindrich Novy <jnovy@redhat.com> - 2:2.159.0-1
6e1fb9
- update to
6e1fb9
  https://github.com/containers/container-selinux/releases/tag/v2.159.0
6e1fb9
6e1fb9
* Fri Feb 12 2021 Jindrich Novy <jnovy@redhat.com> - 2:2.158.0-1
6e1fb9
- update to
6e1fb9
  https://github.com/containers/container-selinux/releases/tag/v2.158.0
6e1fb9
6e1fb9
* Wed Jan 20 2021 Jindrich Novy <jnovy@redhat.com> - 2:2.156.0-1
6e1fb9
- update to
6e1fb9
  https://github.com/containers/container-selinux/releases/tag/v2.156.0
6e1fb9
6e1fb9
* Tue Jan 05 2021 Jindrich Novy <jnovy@redhat.com> - 2:2.155.0-1
6e1fb9
- update to
6e1fb9
  https://github.com/containers/container-selinux/releases/tag/v2.155.0
6e1fb9
6e1fb9
* Mon Jan 04 2021 Jindrich Novy <jnovy@redhat.com> - 2:2.154.0-0.2
6e1fb9
- update to
6e1fb9
  https://github.com/containers/container-selinux/releases/tag/v2.154.0
6e1fb9
6e1fb9
* Sun Dec 20 2020 Petr Å abata <contyk@redhat.com> - 2:2.151.0-1.1
6e1fb9
- Minor bump for gcc11
6e1fb9
6e1fb9
* Tue Nov 03 2020 Jindrich Novy <jnovy@redhat.com> - 2:2.151.0-1
6e1fb9
- update to
6e1fb9
  https://github.com/containers/container-selinux/releases/tag/v2.151.0
6e1fb9
6e1fb9
* Fri Oct 23 2020 Jindrich Novy <jnovy@redhat.com> - 2:2.150.0-1
6e1fb9
- update to
6e1fb9
  https://github.com/containers/container-selinux/releases/tag/v2.150.0
6e1fb9
6e1fb9
* Fri Sep 18 2020 Jindrich Novy <jnovy@redhat.com> - 2:2.145.0-1
6e1fb9
- update to
6e1fb9
  https://github.com/containers/container-selinux/releases/tag/v2.145.0
6e1fb9
6e1fb9
* Thu Sep 17 2020 Jindrich Novy <jnovy@redhat.com> - 2:2.144.0-2
6e1fb9
- sync with rhel8-8.3.0
6e1fb9
6e1fb9
* Thu Sep 17 2020 Jindrich Novy <jnovy@redhat.com> - 2:2.144.0-1
6e1fb9
- update to https://github.com/containers/container-selinux/releases/tag/v2.144.0
6e1fb9
- Related: #1821193
6e1fb9
6e1fb9
* Fri Jun 14 2019 Lokesh Mandvekar <lsm5@redhat.com> - 2:2.107-1
6e1fb9
- Resolves: #1720654 - rebase to v2.107
6e1fb9
6e1fb9
* Tue Apr 30 2019 Eduardo Santiago <santiago@redhat.com> - 2:2.99-3.git9a53d6c
6e1fb9
- strip away fs_manage_fusefs_* to resolve build-time error
6e1fb9
6e1fb9
* Tue Apr 23 2019 Frantisek Kluknavsky <fkluknav@redhat.com> - 2:2.99-2.git9a53d6c
6e1fb9
- rebase
6e1fb9
6e1fb9
* Mon Mar 11 2019 Lokesh Mandvekar <lsm5@redhat.com> - 2:2.89-1.git2521d0d
6e1fb9
- bump to v2.89
6e1fb9
6e1fb9
* Fri Mar 01 2019 Frantisek Kluknavsky <fkluknav@redhat.com> - 2:2.87-3.git891a85f
6e1fb9
- fix fersion number
6e1fb9
6e1fb9
* Fri Mar 01 2019 Frantisek Kluknavsky <fkluknav@redhat.com> - 2:2.75-2.git891a85f
6e1fb9
- rebase
6e1fb9
6e1fb9
* Tue Nov 13 2018 Lokesh Mandvekar <lsm5@redhat.com> - 2:2.75-1.git99e2cfd
6e1fb9
- bump to v2.75
6e1fb9
- built commit 99e2cfd
6e1fb9
6e1fb9
* Mon Oct 22 2018 Lokesh Mandvekar <lsm5@redhat.com> - 2:2.74-1
6e1fb9
- Resolves: #1641655 - bump to v2.74
6e1fb9
- built commit a62c2db
6e1fb9
6e1fb9
* Tue Sep 18 2018 Frantisek Kluknavsky <fkluknav@redhat.com> - 2:2.73-3
6e1fb9
- tweak macro for fedora - applies to rhel8 as well
6e1fb9
6e1fb9
* Mon Sep 17 2018 Frantisek Kluknavsky <fkluknav@redhat.com> - 2:2.73-2
6e1fb9
- moved changelog entries:
6e1fb9
- Define spc_t as a container_domain, so that container_runtime will transition
6e1fb9
to spc_t even when setup with nosuid.
6e1fb9
- Allow container_runtimes to setattr on callers fifo_files
6e1fb9
- Fix restorecon to not error on missing directory
6e1fb9
6e1fb9
* Thu Sep 6 2018 Dan Walsh <dwalsh@fedoraproject.org> - 2.69-3
6e1fb9
- Make sure we pull in the latest selinux-policy
6e1fb9
6e1fb9
* Wed Jul 25 2018 Dan Walsh <dwalsh@fedoraproject.org> - 2.69-2
6e1fb9
- Add map support to container-selinux for RHEL 7.5
6e1fb9
- Dontudit attempts to write to kernel_sysctl_t
6e1fb9
6e1fb9
* Mon Jul 16 2018 Dan Walsh <dwalsh@fedoraproject.org> - 2.68-1
6e1fb9
- Add label for /var/lib/origin
6e1fb9
- Add customizable_file_t to customizable_types
6e1fb9
6e1fb9
* Sun Jul 15 2018 Dan Walsh <dwalsh@fedoraproject.org> - 2.67-1
6e1fb9
- Add policy for container_logreader_t
6e1fb9
6e1fb9
* Thu Jun 14 2018 Dan Walsh <dwalsh@fedoraproject.org> - 2.66-1
6e1fb9
- Allow dnsmasq to dbus chat with spc_t
6e1fb9
6e1fb9
* Sun Jun 3 2018 Dan Walsh <dwalsh@fedoraproject.org> - 2.64-1
6e1fb9
- Allow containers to create all socket classes
6e1fb9
6e1fb9
* Thu May 24 2018 Dan Walsh <dwalsh@fedoraproject.org> - 2.62-1
6e1fb9
- Label overlay directories under /var/lib/containers/ correctly
6e1fb9
6e1fb9
* Mon May 21 2018 Dan Walsh <dwalsh@fedoraproject.org> - 2.61-1
6e1fb9
- Allow spc_t to load kernel modules from inside of container 
6e1fb9
6e1fb9
* Mon May 21 2018 Dan Walsh <dwalsh@fedoraproject.org> - 2.60-1
6e1fb9
- Allow containers to list cgroup directories
6e1fb9
- Transition for unconfined_service_t to container_runtime_t when executing container_runtime_exec_t.
6e1fb9
6e1fb9
* Mon May 21 2018 Dan Walsh <dwalsh@fedoraproject.org> - 2.58-2
6e1fb9
- Run restorecon /usr/bin/podman in postinstall
6e1fb9
6e1fb9
* Fri May 18 2018 Dan Walsh <dwalsh@fedoraproject.org> - 2.58-1
6e1fb9
- Add labels to allow podman to be run from a systemd unit file
6e1fb9
6e1fb9
* Mon May 7 2018 Dan Walsh <dwalsh@fedoraproject.org> - 2.57-1
6e1fb9
- Set the version of SELinux policy required to the latest to fix build issues.
6e1fb9
6e1fb9
* Wed Apr 11 2018 Dan Walsh <dwalsh@fedoraproject.org> - 2.56-1
6e1fb9
- Allow container_runtime_t to transition to spc_t over unlabeled files
6e1fb9
6e1fb9
* Mon Mar 26 2018 Dan Walsh <dwalsh@fedoraproject.org> - 2.55-1
6e1fb9
    Allow iptables to read container state
6e1fb9
    Dontaudit attempts from containers to write to /proc/self
6e1fb9
    Allow spc_t to change attributes on container_runtime_t fifo files
6e1fb9
6e1fb9
* Thu Mar 8 2018 Dan Walsh <dwalsh@fedoraproject.org> - 2.52-1
6e1fb9
- Add better support for writing custom selinux policy for customer container domains.
6e1fb9
6e1fb9
* Thu Mar 8 2018 Dan Walsh <dwalsh@fedoraproject.org> - 2.51-1
6e1fb9
- Allow shell_exec_t as a container_runtime_t entrypoint
6e1fb9
6e1fb9
* Wed Mar 7 2018 Dan Walsh <dwalsh@fedoraproject.org> - 2.50-1
6e1fb9
- Allow bin_t as a container_runtime_t entrypoint
6e1fb9
6e1fb9
* Fri Mar 2 2018 Dan Walsh <dwalsh@fedoraproject.org> - 2.49-1
6e1fb9
- Add support for MLS running container runtimes
6e1fb9
- Add missing allow rules for running systemd in a container
6e1fb9
6e1fb9
* Wed Feb 21 2018 Dan Walsh <dwalsh@fedoraproject.org> - 2.48-1
6e1fb9
- Update policy to match master branch
6e1fb9
- Remove typebounds and replace with nnp_transition and nosuid_transition calls
6e1fb9
6e1fb9
* Tue Jan 9 2018 Dan Walsh <dwalsh@fedoraproject.org> - 2.41-1
6e1fb9
- Add support to nnp_transition for container domains
6e1fb9
- Eliminates need for typebounds.
6e1fb9
6e1fb9
* Tue Jan 9 2018 Dan Walsh <dwalsh@fedoraproject.org> - 2.40-1
6e1fb9
- Allow container_runtime_t to use user ttys
6e1fb9
- Fixes bounds check for container_t
6e1fb9
6e1fb9
* Mon Jan 8 2018 Dan Walsh <dwalsh@fedoraproject.org> - 2.39-1
6e1fb9
- Allow container runtimes to use interited terminals.  This helps
6e1fb9
satisfy the bounds check of container_t versus container_runtime_t.
6e1fb9
6e1fb9
* Sat Jan 6 2018 Dan Walsh <dwalsh@fedoraproject.org> - 2.38-1
6e1fb9
- Allow container runtimes to mmap container_file_t devices
6e1fb9
- Add labeling for rhel push plugin
6e1fb9
6e1fb9
* Tue Dec 12 2017 Dan Walsh <dwalsh@fedoraproject.org> - 2.37-1
6e1fb9
- Allow containers to use inherited ttys
6e1fb9
- Allow ostree to handle labels under /var/lib/containers/ostree
6e1fb9
6e1fb9
* Mon Nov 27 2017 Dan Walsh <dwalsh@fedoraproject.org> - 2.36-1
6e1fb9
- Allow containers to relabelto/from all file types to container_file_t
6e1fb9
6e1fb9
* Mon Nov 27 2017 Dan Walsh <dwalsh@fedoraproject.org> - 2.35-1
6e1fb9
- Allow container to map chr_files labeled container_file_t
6e1fb9
6e1fb9
* Wed Nov 22 2017 Dan Walsh <dwalsh@fedoraproject.org> - 2.34-1
6e1fb9
- Dontaudit container processes getattr on kernel file systems
6e1fb9
6e1fb9
* Sun Nov 19 2017 Dan Walsh <dwalsh@fedoraproject.org> - 2.33-1
6e1fb9
- Allow containers to read /etc/resolv.conf and /etc/hosts if volume
6e1fb9
- mounted into container.
6e1fb9
6e1fb9
* Wed Nov 8 2017 Dan Walsh <dwalsh@fedoraproject.org> - 2.32-1
6e1fb9
- Make sure users creating content in /var/lib with right labels
6e1fb9
6e1fb9
* Thu Oct 26 2017 Dan Walsh <dwalsh@fedoraproject.org> - 2.31-1
6e1fb9
- Allow the container runtime to dbus chat with dnsmasq
6e1fb9
- add dontaudit rules for container trying to write to /proc
6e1fb9
6e1fb9
* Tue Oct 10 2017 Dan Walsh <dwalsh@fedoraproject.org> - 2.29-1
6e1fb9
- Add support for lxcd
6e1fb9
- Add support for labeling of tmpfs storage created within a container.
6e1fb9
6e1fb9
* Mon Oct 9 2017 Dan Walsh <dwalsh@fedoraproject.org> - 2.28-1
6e1fb9
- Allow a container to umount a container_file_t filesystem
6e1fb9
6e1fb9
* Fri Sep 22 2017 Dan Walsh <dwalsh@fedoraproject.org> - 2.27-1
6e1fb9
-  Allow container runtimes to work with the netfilter sockets
6e1fb9
-  Allow container_file_t to be an entrypoint for VM's
6e1fb9
-  Allow spc_t domains to transition to svirt_t
6e1fb9
6e1fb9
* Fri Sep 22 2017 Dan Walsh <dwalsh@fedoraproject.org> - 2.24-1
6e1fb9
-     Make sure container_runtime_t has all access of container_t
6e1fb9
6e1fb9
* Thu Sep 7 2017 Dan Walsh <dwalsh@fedoraproject.org> - 2.23-1
6e1fb9
- Allow container runtimes to create sockets in tmp dirs
6e1fb9
6e1fb9
* Tue Sep 5 2017 Dan Walsh <dwalsh@fedoraproject.org> - 2.22-1
6e1fb9
- Add additonal support for crio labeling.
6e1fb9
6e1fb9
* Mon Aug 14 2017 Troy Dawson <tdawson@redhat.com> - 2.21-3
6e1fb9
- Fixup spec file conditionals
6e1fb9
6e1fb9
* Wed Jul 26 2017 Fedora Release Engineering <releng@fedoraproject.org> - 2:2.21-2
6e1fb9
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
6e1fb9
6e1fb9
* Thu Jul 6 2017 Dan Walsh <dwalsh@fedoraproject.org> - 2.21-1
6e1fb9
- Allow containers to execmod on container_share_t files.
6e1fb9
6e1fb9
* Thu Jul 6 2017 Dan Walsh <dwalsh@fedoraproject.org> - 2.20-2
6e1fb9
- Relabel runc and crio executables
6e1fb9
6e1fb9
* Fri Jun 30 2017 Dan Walsh <dwalsh@fedoraproject.org> - 2.20-1
6e1fb9
- Allow container processes to getsession
6e1fb9
6e1fb9
* Wed Jun 14 2017 Lokesh Mandvekar <lsm5@redhat.com> - 2:2.19-2.1
6e1fb9
- update release tag to isolate from 7.3
6e1fb9
6e1fb9
* Wed Jun 14 2017 Dan Walsh <dwalsh@fedoraproject.org> - 2:2.19-1
6e1fb9
- Fix mcs transition problem on stdin/stdout/stderr
6e1fb9
- Add labels for CRI-O
6e1fb9
- Allow containers to use tunnel sockets
6e1fb9
6e1fb9
* Tue Jun 06 2017 Lokesh Mandvekar <lsm5@redhat.com> - 2:2.15-1.1
6e1fb9
- Resolves: #1451289
6e1fb9
- rebase to v2.15
6e1fb9
- built @origin/RHEL-1.12 commit 583ca40
6e1fb9
6e1fb9
* Mon Mar 20 2017 Dan Walsh <dwalsh@fedoraproject.org> - 2:2.10-2.1
6e1fb9
- Make sure we have a late enough version of policycoreutils
6e1fb9
6e1fb9
* Mon Mar 6 2017 Dan Walsh <dwalsh@fedoraproject.org> - 2:2.10-1
6e1fb9
- Update to the latest container-selinux patch from upstream
6e1fb9
- Label files under /usr/libexec/lxc as container_runtime_exec_t
6e1fb9
- Give container_t access to XFRM sockets
6e1fb9
- Allow spc_t to dbus chat with init system
6e1fb9
- Allow containers to read cgroup configuration mounted into a container
6e1fb9
6e1fb9
* Tue Feb 21 2017 Lokesh Mandvekar <lsm5@redhat.com> - 2:2.9-4
6e1fb9
- Resolves: #1425574
6e1fb9
- built commit 79a6d70
6e1fb9
6e1fb9
* Mon Feb 20 2017 Lokesh Mandvekar <lsm5@redhat.com> - 2:2.9-3
6e1fb9
- Resolves: #1420591
6e1fb9
- built @origin/RHEL-1.12 commit 8f876c4
6e1fb9
6e1fb9
* Mon Feb 13 2017 Lokesh Mandvekar <lsm5@redhat.com> - 2:2.9-2
6e1fb9
- built @origin/RHEL-1.12 commit 33cb78b
6e1fb9
6e1fb9
* Fri Feb 10 2017 Lokesh Mandvekar <lsm5@redhat.com> - 2:2.8-2
6e1fb9
-
6e1fb9
6e1fb9
* Tue Feb 07 2017 Lokesh Mandvekar <lsm5@redhat.com> - 2:2.7-1
6e1fb9
- built origin/RHEL-1.12 commit 21dd37b
6e1fb9
6e1fb9
* Fri Jan 20 2017 Lokesh Mandvekar <lsm5@fedoraproject.org> - 2:2.4-2
6e1fb9
- correct version-release in changelog entries
6e1fb9
6e1fb9
* Thu Jan 19 2017 Dan Walsh <dwalsh@fedoraproject.org> - 2:2.4-1
6e1fb9
- Add typebounds statement for container_t from container_runtime_t
6e1fb9
- We should only label runc not runc*
6e1fb9
6e1fb9
* Tue Jan 17 2017 Dan Walsh <dwalsh@fedoraproject.org> - 2:2.3-1
6e1fb9
- Fix labeling on /usr/bin/runc.*
6e1fb9
- Add sandbox_net_domain access to container.te
6e1fb9
- Remove containers ability to look at /etc content
6e1fb9
6e1fb9
* Wed Jan 11 2017 Lokesh Mandvekar <lsm5@fedoraproject.org> - 2:2.2-4
6e1fb9
- use upstream's RHEL-1.12 branch, commit 56c32da for CentOS 7
6e1fb9
6e1fb9
* Tue Jan 10 2017 Jonathan Lebon <jlebon@redhat.com> - 2:2.2-3
6e1fb9
- properly disable docker module in %%post
6e1fb9
6e1fb9
* Sat Jan 07 2017 Lokesh Mandvekar <lsm5@fedoraproject.org> - 2:2.2-2
6e1fb9
- depend on selinux-policy-targeted
6e1fb9
- relabel docker-latest* files as well
6e1fb9
6e1fb9
* Fri Jan 06 2017 Lokesh Mandvekar <lsm5@fedoraproject.org> - 2:2.2-1
6e1fb9
- bump to v2.2
6e1fb9
- additional labeling for ocid
6e1fb9
6e1fb9
* Fri Jan 06 2017 Lokesh Mandvekar <lsm5@fedoraproject.org> - 2:2.0-2
6e1fb9
- install policy at level 200
6e1fb9
- From: Dan Walsh <dwalsh@redhat.com>
6e1fb9
6e1fb9
* Fri Jan 06 2017 Lokesh Mandvekar <lsm5@fedoraproject.org> - 2:2.0-1
6e1fb9
- Resolves: #1406517 - bump to v2.0 (first upload to Fedora as a
6e1fb9
standalone package)
6e1fb9
- include projectatomic/RHEL-1.12 branch commit for building on centos/rhel
6e1fb9
6e1fb9
* Mon Dec 19 2016 Lokesh Mandvekar <lsm5@fedoraproject.org> - 2:1.12.4-29
6e1fb9
- new package (separated from docker)