aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKenton Groombridge <concord@gentoo.org>2021-11-11 20:24:07 -0500
committerKenton Groombridge <concord@gentoo.org>2022-09-03 16:04:27 -0400
commit139f4bb39aea6b202996abebe7581f1479e9fdf1 (patch)
tree64df0df6b9868ce7227f627f1dbac5d8b878b605
parentportage: allow portage to map ebuild files (diff)
downloadhardened-refpolicy-139f4bb3.tar.gz
hardened-refpolicy-139f4bb3.tar.bz2
hardened-refpolicy-139f4bb3.zip
apache: add gentoo-specific interface to map httpd sys content
Signed-off-by: Kenton Groombridge <concord@gentoo.org>
-rw-r--r--policy/modules/services/apache.if20
1 files changed, 20 insertions, 0 deletions
diff --git a/policy/modules/services/apache.if b/policy/modules/services/apache.if
index 2b3a7f3c5..8daa613b9 100644
--- a/policy/modules/services/apache.if
+++ b/policy/modules/services/apache.if
@@ -1466,3 +1466,23 @@ interface(`apache_rw_runtime_files',`
allow $1 httpd_runtime_t:file rw_file_perms;
')
+
+########################################
+## <summary>
+## Map httpd sys content files.
+## This interface is Gentoo-specific.
+## </summary>
+## <param name="domain">
+## <summary>
+## Domain allowed access.
+## </summary>
+## </param>
+#
+interface(`apache_map_sys_content',`
+ gen_require(`
+ type httpd_sys_content_t, httpd_sys_rw_content_t;
+ ')
+
+ allow $1 httpd_sys_content_t:file map;
+ allow $1 httpd_sys_rw_content_t:file map;
+')