From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: <gentoo-commits+bounces-1383982-garchives=archives.gentoo.org@lists.gentoo.org> Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 6CA4815808B for <garchives@archives.gentoo.org>; Sat, 9 Apr 2022 19:28:55 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id B0E07E09CE; Sat, 9 Apr 2022 19:28:51 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 52E01E09CE for <gentoo-commits@lists.gentoo.org>; Sat, 9 Apr 2022 19:28:51 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 6C0BB34179E for <gentoo-commits@lists.gentoo.org>; Sat, 9 Apr 2022 19:28:50 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id D0C703A5 for <gentoo-commits@lists.gentoo.org>; Sat, 9 Apr 2022 19:28:47 +0000 (UTC) From: "Jason Zaman" <perfinion@gentoo.org> To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Jason Zaman" <perfinion@gentoo.org> Message-ID: <1649532510.dd3730338d07fb8b8a96350f84148eb07ab40769.perfinion@gentoo> Subject: [gentoo-commits] proj/hardened-refpolicy:master commit in: policy/modules/services/ X-VCS-Repository: proj/hardened-refpolicy X-VCS-Files: policy/modules/services/container.te X-VCS-Directories: policy/modules/services/ X-VCS-Committer: perfinion X-VCS-Committer-Name: Jason Zaman X-VCS-Revision: dd3730338d07fb8b8a96350f84148eb07ab40769 X-VCS-Branch: master Date: Sat, 9 Apr 2022 19:28:47 +0000 (UTC) Precedence: bulk List-Post: <mailto:gentoo-commits@lists.gentoo.org> List-Help: <mailto:gentoo-commits+help@lists.gentoo.org> List-Unsubscribe: <mailto:gentoo-commits+unsubscribe@lists.gentoo.org> List-Subscribe: <mailto:gentoo-commits+subscribe@lists.gentoo.org> List-Id: Gentoo Linux mail <gentoo-commits.gentoo.org> X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 62ad4c4d-3643-4f0e-a5db-12472372abad X-Archives-Hash: bbe4479ffb1da1f23e49a01d37017f5b commit: dd3730338d07fb8b8a96350f84148eb07ab40769 Author: Kenton Groombridge <me <AT> concord <DOT> sh> AuthorDate: Thu Mar 31 19:09:25 2022 +0000 Commit: Jason Zaman <perfinion <AT> gentoo <DOT> org> CommitDate: Sat Apr 9 19:28:30 2022 +0000 URL: https://gitweb.gentoo.org/proj/hardened-refpolicy.git/commit/?id=dd373033 container: add tunables to allow containers to access public content Note that container engines only need read access to these files even if manage access is enabled. Signed-off-by: Kenton Groombridge <me <AT> concord.sh> Signed-off-by: Jason Zaman <perfinion <AT> gentoo.org> policy/modules/services/container.te | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) diff --git a/policy/modules/services/container.te b/policy/modules/services/container.te index d7d27d7c..fa4145e3 100644 --- a/policy/modules/services/container.te +++ b/policy/modules/services/container.te @@ -16,6 +16,20 @@ gen_tunable(container_manage_cgroup, false) ## </desc> gen_tunable(container_mounton_non_security, false) +## <desc> +## <p> +## Allow containers to manage all read-writable public content. +## </p> +## </desc> +gen_tunable(container_manage_public_content, false) + +## <desc> +## <p> +## Allow containers to read all public content. +## </p> +## </desc> +gen_tunable(container_read_public_content, false) + ## <desc> ## <p> ## Allow containers to use NFS filesystems. @@ -232,6 +246,14 @@ tunable_policy(`container_manage_cgroup',` fs_manage_cgroup_files(container_domain) ') +tunable_policy(`container_manage_public_content',` + miscfiles_manage_public_files(container_domain) +') + +tunable_policy(`container_read_public_content',` + miscfiles_read_public_files(container_domain) +') + tunable_policy(`container_use_nfs',` fs_manage_nfs_dirs(container_domain) fs_manage_nfs_files(container_domain) @@ -515,6 +537,14 @@ ifdef(`init_systemd',` init_run_bpf(container_engine_domain) ') +tunable_policy(`container_manage_public_content',` + miscfiles_read_public_files(container_engine_domain) +') + +tunable_policy(`container_read_public_content',` + miscfiles_read_public_files(container_engine_domain) +') + tunable_policy(`container_mounton_non_security',` files_mounton_non_security(container_engine_domain) ')