Blame SOURCES/policy-rhel-7.6.z-contrib.patch

a01187
diff --git a/cinder.te b/cinder.te
a01187
index 488a7a659..a05691d8f 100644
a01187
--- a/cinder.te
a01187
+++ b/cinder.te
a01187
@@ -159,6 +159,8 @@ kernel_read_kernel_sysctls(cinder_volume_t)
a01187
 
a01187
 logging_send_syslog_msg(cinder_volume_t)
a01187
 
a01187
+systemd_dbus_chat_logind(cinder_volume_t)
a01187
+
a01187
 optional_policy(`
a01187
 	lvm_domtrans(cinder_volume_t)
a01187
 ')
a01187
diff --git a/ganesha.fc b/ganesha.fc
a01187
new file mode 100644
a01187
index 000000000..c723bfb97
a01187
--- /dev/null
a01187
+++ b/ganesha.fc
a01187
@@ -0,0 +1,12 @@
a01187
+/usr/bin/ganesha.nfsd		--	gen_context(system_u:object_r:ganesha_exec_t,s0)
a01187
+
a01187
+/usr/lib/systemd/system/nfs-ganesha-config.*		--	gen_context(system_u:object_r:ganesha_unit_file_t,s0)
a01187
+
a01187
+/usr/lib/systemd/system/nfs-ganesha-lock.*		--	gen_context(system_u:object_r:ganesha_unit_file_t,s0)
a01187
+
a01187
+/usr/lib/systemd/system/nfs-ganesha.*e		--	gen_context(system_u:object_r:ganesha_unit_file_t,s0)
a01187
+
a01187
+/var/log/ganesha.log.*	--	gen_context(system_u:object_r:ganesha_var_log_t,s0)
a01187
+/var/log/ganesha-gfapi.log.*	--	gen_context(system_u:object_r:ganesha_var_log_t,s0)
a01187
+
a01187
+/var/run/ganesha(/.*)?		gen_context(system_u:object_r:ganesha_var_run_t,s0)
a01187
diff --git a/ganesha.if b/ganesha.if
a01187
new file mode 100644
a01187
index 000000000..4c347e5cc
a01187
--- /dev/null
a01187
+++ b/ganesha.if
a01187
@@ -0,0 +1,146 @@
a01187
+## <summary>policy for ganesha</summary>
a01187
+
a01187
+########################################
a01187
+## <summary>
a01187
+##	Execute ganesha_exec_t in the ganesha domain.
a01187
+## </summary>
a01187
+## <param name="domain">
a01187
+## <summary>
a01187
+##	Domain allowed to transition.
a01187
+## </summary>
a01187
+## </param>
a01187
+#
a01187
+interface(`ganesha_domtrans',`
a01187
+	gen_require(`
a01187
+		type ganesha_t, ganesha_exec_t;
a01187
+	')
a01187
+
a01187
+	corecmd_search_bin($1)
a01187
+	domtrans_pattern($1, ganesha_exec_t, ganesha_t)
a01187
+')
a01187
+
a01187
+######################################
a01187
+## <summary>
a01187
+##	Execute ganesha in the caller domain.
a01187
+## </summary>
a01187
+## <param name="domain">
a01187
+##	<summary>
a01187
+##	Domain allowed access.
a01187
+##	</summary>
a01187
+## </param>
a01187
+#
a01187
+interface(`ganesha_exec',`
a01187
+	gen_require(`
a01187
+		type ganesha_exec_t;
a01187
+	')
a01187
+
a01187
+	corecmd_search_bin($1)
a01187
+	can_exec($1, ganesha_exec_t)
a01187
+')
a01187
+########################################
a01187
+## <summary>
a01187
+##	Read ganesha PID files.
a01187
+## </summary>
a01187
+## <param name="domain">
a01187
+##	<summary>
a01187
+##	Domain allowed access.
a01187
+##	</summary>
a01187
+## </param>
a01187
+#
a01187
+interface(`ganesha_read_pid_files',`
a01187
+	gen_require(`
a01187
+		type ganesha_var_run_t;
a01187
+	')
a01187
+
a01187
+	files_search_pids($1)
a01187
+	read_files_pattern($1, ganesha_var_run_t, ganesha_var_run_t)
a01187
+')
a01187
+
a01187
+########################################
a01187
+## <summary>
a01187
+##	Execute ganesha server in the ganesha domain.
a01187
+## </summary>
a01187
+## <param name="domain">
a01187
+##	<summary>
a01187
+##	Domain allowed to transition.
a01187
+##	</summary>
a01187
+## </param>
a01187
+#
a01187
+interface(`ganesha_systemctl',`
a01187
+	gen_require(`
a01187
+		type ganesha_t;
a01187
+		type ganesha_unit_file_t;
a01187
+	')
a01187
+
a01187
+	systemd_exec_systemctl($1)
a01187
+        systemd_read_fifo_file_passwd_run($1)
a01187
+	allow $1 ganesha_unit_file_t:file read_file_perms;
a01187
+	allow $1 ganesha_unit_file_t:service manage_service_perms;
a01187
+
a01187
+	ps_process_pattern($1, ganesha_t)
a01187
+')
a01187
+
a01187
+
a01187
+########################################
a01187
+## <summary>
a01187
+##	Send and receive messages from
a01187
+##	ganesha over dbus.
a01187
+## </summary>
a01187
+## <param name="domain">
a01187
+##	<summary>
a01187
+##	Domain allowed access.
a01187
+##	</summary>
a01187
+## </param>
a01187
+#
a01187
+interface(`ganesha_dbus_chat',`
a01187
+	gen_require(`
a01187
+		type ganesha_t;
a01187
+		class dbus send_msg;
a01187
+	')
a01187
+
a01187
+	allow $1 ganesha_t:dbus send_msg;
a01187
+	allow ganesha_t $1:dbus send_msg;
a01187
+')
a01187
+
a01187
+########################################
a01187
+## <summary>
a01187
+##	All of the rules required to administrate
a01187
+##	an ganesha environment
a01187
+## </summary>
a01187
+## <param name="domain">
a01187
+##	<summary>
a01187
+##	Domain allowed access.
a01187
+##	</summary>
a01187
+## </param>
a01187
+## <param name="role">
a01187
+##	<summary>
a01187
+##	Role allowed access.
a01187
+##	</summary>
a01187
+## </param>
a01187
+## <rolecap/>
a01187
+#
a01187
+interface(`ganesha_admin',`
a01187
+	gen_require(`
a01187
+		type ganesha_t;
a01187
+		type ganesha_var_run_t;
a01187
+	type ganesha_unit_file_t;
a01187
+	')
a01187
+
a01187
+	allow $1 ganesha_t:process { signal_perms };
a01187
+	ps_process_pattern($1, ganesha_t)
a01187
+
a01187
+    tunable_policy(`deny_ptrace',`',`
a01187
+        allow $1 ganesha_t:process ptrace;
a01187
+    ')
a01187
+
a01187
+	files_search_pids($1)
a01187
+	admin_pattern($1, ganesha_var_run_t)
a01187
+
a01187
+	ganesha_systemctl($1)
a01187
+	admin_pattern($1, ganesha_unit_file_t)
a01187
+	allow $1 ganesha_unit_file_t:service all_service_perms;
a01187
+	optional_policy(`
a01187
+		systemd_passwd_agent_exec($1)
a01187
+		systemd_read_fifo_file_passwd_run($1)
a01187
+	')
a01187
+')
a01187
diff --git a/ganesha.te b/ganesha.te
a01187
new file mode 100644
a01187
index 000000000..f25a3f34d
a01187
--- /dev/null
a01187
+++ b/ganesha.te
a01187
@@ -0,0 +1,111 @@
a01187
+policy_module(ganesha, 1.0.0)
a01187
+
a01187
+########################################
a01187
+#
a01187
+# Declarations
a01187
+#
a01187
+
a01187
+## <desc>
a01187
+## 

a01187
+## Allow ganesha to read/write fuse files
a01187
+## 

a01187
+## </desc>
a01187
+gen_tunable(ganesha_use_fusefs, false)
a01187
+
a01187
+type ganesha_t;
a01187
+type ganesha_exec_t;
a01187
+init_daemon_domain(ganesha_t, ganesha_exec_t)
a01187
+
a01187
+type ganesha_var_log_t;
a01187
+logging_log_file(ganesha_var_log_t)
a01187
+
a01187
+type ganesha_var_run_t;
a01187
+files_pid_file(ganesha_var_run_t)
a01187
+
a01187
+type ganesha_tmp_t;
a01187
+files_tmp_file(ganesha_tmp_t)
a01187
+
a01187
+type ganesha_unit_file_t;
a01187
+systemd_unit_file(ganesha_unit_file_t)
a01187
+
a01187
+########################################
a01187
+#
a01187
+# ganesha local policy
a01187
+#
a01187
+dontaudit ganesha_t self:capability net_admin;
a01187
+
a01187
+allow ganesha_t self:capability { dac_read_search dac_override };
a01187
+allow ganesha_t self:capability2 block_suspend;
a01187
+allow ganesha_t self:process { setcap setrlimit };
a01187
+allow ganesha_t self:fifo_file rw_fifo_file_perms;
a01187
+allow ganesha_t self:unix_stream_socket create_stream_socket_perms;
a01187
+allow ganesha_t self:tcp_socket { accept listen };
a01187
+
a01187
+manage_dirs_pattern(ganesha_t, ganesha_var_run_t, ganesha_var_run_t)
a01187
+manage_files_pattern(ganesha_t, ganesha_var_run_t, ganesha_var_run_t)
a01187
+manage_lnk_files_pattern(ganesha_t, ganesha_var_run_t, ganesha_var_run_t)
a01187
+files_pid_filetrans(ganesha_t, ganesha_var_run_t, { dir file lnk_file })
a01187
+
a01187
+manage_dirs_pattern(ganesha_t, ganesha_var_log_t, ganesha_var_log_t)
a01187
+manage_files_pattern(ganesha_t, ganesha_var_log_t, ganesha_var_log_t)
a01187
+logging_log_filetrans(ganesha_t, ganesha_var_log_t, { file dir })
a01187
+
a01187
+manage_dirs_pattern(ganesha_t, ganesha_tmp_t, ganesha_tmp_t)
a01187
+manage_files_pattern(ganesha_t, ganesha_tmp_t, ganesha_tmp_t)
a01187
+files_tmp_filetrans(ganesha_t, ganesha_tmp_t, { file dir })
a01187
+
a01187
+kernel_read_system_state(ganesha_t)
a01187
+kernel_search_network_sysctl(ganesha_t)
a01187
+kernel_read_net_sysctls(ganesha_t)
a01187
+
a01187
+auth_use_nsswitch(ganesha_t)
a01187
+
a01187
+corenet_tcp_bind_nfs_port(ganesha_t)
a01187
+corenet_tcp_connect_generic_port(ganesha_t)
a01187
+corenet_tcp_connect_gluster_port(ganesha_t)
a01187
+corenet_udp_bind_dey_keyneg_port(ganesha_t)
a01187
+corenet_tcp_bind_dey_keyneg_port(ganesha_t)
a01187
+corenet_udp_bind_nfs_port(ganesha_t)
a01187
+corenet_udp_bind_all_rpc_ports(ganesha_t)
a01187
+corenet_tcp_bind_all_rpc_ports(ganesha_t)
a01187
+corenet_tcp_bind_mountd_port(ganesha_t)
a01187
+corenet_udp_bind_mountd_port(ganesha_t)
a01187
+corenet_tcp_connect_virt_migration_port(ganesha_t)
a01187
+corenet_tcp_connect_all_rpc_ports(ganesha_t)
a01187
+
a01187
+dev_rw_infiniband_dev(ganesha_t)
a01187
+dev_read_gpfs(ganesha_t)
a01187
+dev_read_rand(ganesha_t)
a01187
+
a01187
+logging_send_syslog_msg(ganesha_t)
a01187
+
a01187
+sysnet_dns_name_resolve(ganesha_t)
a01187
+
a01187
+optional_policy(`
a01187
+	dbus_system_bus_client(ganesha_t)
a01187
+	dbus_connect_system_bus(ganesha_t)
a01187
+    unconfined_dbus_chat(ganesha_t)
a01187
+')
a01187
+
a01187
+optional_policy(`
a01187
+    glusterd_read_conf(ganesha_t)
a01187
+    glusterd_read_lib_files(ganesha_t)
a01187
+    glusterd_manage_pid(ganesha_t)
a01187
+')
a01187
+
a01187
+optional_policy(`
a01187
+    kerberos_read_keytab(ganesha_t)
a01187
+')
a01187
+
a01187
+optional_policy(`
a01187
+	rpc_manage_nfs_state_data_dir(ganesha_t)
a01187
+    rpc_read_nfs_state_data(ganesha_t)
a01187
+	rpcbind_stream_connect(ganesha_t)
a01187
+')
a01187
+
a01187
+tunable_policy(`ganesha_use_fusefs',`
a01187
+    fs_manage_fusefs_dirs(ganesha_t)
a01187
+    fs_manage_fusefs_files(ganesha_t)
a01187
+    fs_read_fusefs_symlinks(ganesha_t)
a01187
+    fs_getattr_fusefs(ganesha_t)
a01187
+')
a01187
diff --git a/glusterd.fc b/glusterd.fc
a01187
index e42e81f5f..9806f50ae 100644
a01187
--- a/glusterd.fc
a01187
+++ b/glusterd.fc
a01187
@@ -23,8 +23,3 @@
a01187
 /var/run/glusterd(/.*)?	gen_context(system_u:object_r:glusterd_var_run_t,s0)
a01187
 /var/run/glusterd.*	--	gen_context(system_u:object_r:glusterd_var_run_t,s0)
a01187
 /var/run/glusterd.*	-s	gen_context(system_u:object_r:glusterd_var_run_t,s0)
a01187
-
a01187
-/var/log/ganesha(/.*)?      gen_context(system_u:object_r:glusterd_log_t,s0)
a01187
-/var/log/ganesha.log	--	gen_context(system_u:object_r:glusterd_log_t,s0)
a01187
-/var/log/ganesha-gfapi.log	--	gen_context(system_u:object_r:glusterd_log_t,s0)
a01187
-
a01187
diff --git a/glusterd.if b/glusterd.if
a01187
index a62e355ac..291191f17 100644
a01187
--- a/glusterd.if
a01187
+++ b/glusterd.if
a01187
@@ -135,7 +135,6 @@ interface(`glusterd_manage_log',`
a01187
 	manage_dirs_pattern($1, glusterd_log_t, glusterd_log_t)
a01187
 	manage_files_pattern($1, glusterd_log_t, glusterd_log_t)
a01187
 	manage_lnk_files_pattern($1, glusterd_log_t, glusterd_log_t)
a01187
-    logging_log_named_filetrans($1, glusterd_log_t, file, "ganesha.log")
a01187
 ')
a01187
 
a01187
 ######################################
a01187
diff --git a/glusterd.te b/glusterd.te
a01187
index 7804cbaf4..2bcedd014 100644
a01187
--- a/glusterd.te
a01187
+++ b/glusterd.te
a01187
@@ -64,8 +64,6 @@ files_type(glusterd_var_lib_t)
a01187
 type glusterd_brick_t;
a01187
 files_type(glusterd_brick_t)
a01187
 
a01187
-typealias glusterd_log_t alias ganesha_var_log_t;
a01187
-
a01187
 ########################################
a01187
 #
a01187
 # Local policy
a01187
@@ -270,6 +268,11 @@ optional_policy(`
a01187
     ')
a01187
 ')
a01187
 
a01187
+optional_policy(`
a01187
+    ganesha_systemctl(glusterd_t)
a01187
+    ganesha_dbus_chat(glusterd_t)
a01187
+')
a01187
+
a01187
 optional_policy(`
a01187
     hostname_exec(glusterd_t)
a01187
 ')
a01187
@@ -310,8 +313,8 @@ optional_policy(`
a01187
 optional_policy(`
a01187
     rpc_systemctl_nfsd(glusterd_t)
a01187
     rpc_systemctl_rpcd(glusterd_t)
a01187
+
a01187
     rpc_domtrans_nfsd(glusterd_t)
a01187
-    rpc_dbus_chat_nfsd(glusterd_t)
a01187
     rpc_domtrans_rpcd(glusterd_t)
a01187
     rpc_manage_nfs_state_data(glusterd_t)
a01187
 	rpc_manage_nfs_state_data_dir(glusterd_t)
06ab47
diff --git a/nova.te b/nova.te
06ab47
index 2259a5192..af8dd5527 100644
06ab47
--- a/nova.te
06ab47
+++ b/nova.te
06ab47
@@ -124,6 +124,7 @@ corenet_sendrecv_dns_server_packets(nova_domain)
06ab47
 corenet_sendrecv_dhcpd_server_packets(nova_domain)
06ab47
 
06ab47
 auth_use_nsswitch(nova_t)
06ab47
+auth_use_pam(nova_t)
06ab47
 auth_read_passwd(nova_domain)
06ab47
 
06ab47
 dev_read_sysfs(nova_domain)
06ab47
@@ -132,7 +133,7 @@ dev_read_rand(nova_domain)
06ab47
 
06ab47
 fs_getattr_all_fs(nova_domain)
06ab47
 
06ab47
-init_read_utmp(nova_domain)
06ab47
+init_rw_utmp(nova_domain)
06ab47
 
06ab47
 libs_exec_ldconfig(nova_domain)
06ab47
 
a01187
diff --git a/rhcs.te b/rhcs.te
a01187
index 0e8b031bb..c029ccd71 100644
a01187
--- a/rhcs.te
a01187
+++ b/rhcs.te
a01187
@@ -265,7 +265,7 @@ optional_policy(`
a01187
 ')
a01187
 
a01187
 optional_policy(`
a01187
-    rpc_dbus_chat_nfsd(cluster_t)
a01187
+    ganesha_dbus_chat(cluster_t)
a01187
 ')
a01187
 
a01187
 optional_policy(`
a01187
diff --git a/rpc.fc b/rpc.fc
a01187
index b08ec8d2d..38a2f0911 100644
a01187
--- a/rpc.fc
a01187
+++ b/rpc.fc
a01187
@@ -1,5 +1,3 @@
a01187
-
a01187
-
a01187
 #
a01187
 # /etc
a01187
 #
a01187
@@ -11,10 +9,6 @@
a01187
 /usr/lib/systemd/system/nfs.* 		--	gen_context(system_u:object_r:nfsd_unit_file_t,s0)
a01187
 /usr/lib/systemd/system/rpc.* 		--	gen_context(system_u:object_r:rpcd_unit_file_t,s0)
a01187
 
a01187
-/usr/lib/systemd/system/nfs-ganesha-config.*		--	gen_context(system_u:object_r:nfsd_unit_file_t,s0)
a01187
-/usr/lib/systemd/system/nfs-ganesha-lock.*		--	gen_context(system_u:object_r:nfsd_unit_file_t,s0)
a01187
-/usr/lib/systemd/system/nfs-ganesha.*e		--	gen_context(system_u:object_r:nfsd_unit_file_t,s0)
a01187
-
a01187
 #
a01187
 # /sbin
a01187
 #
a01187
@@ -33,15 +27,12 @@
a01187
 /usr/sbin/rpc\.svcgssd	--	gen_context(system_u:object_r:gssd_exec_t,s0)
a01187
 /usr/sbin/sm-notify	--	gen_context(system_u:object_r:rpcd_exec_t,s0)
a01187
 
a01187
-/usr/bin/ganesha\.nfsd		--	gen_context(system_u:object_r:nfsd_exec_t,s0)
a01187
-
a01187
 #
a01187
 # /var
a01187
 #
a01187
 /var/lib/nfs(/.*)?		gen_context(system_u:object_r:var_lib_nfs_t,s0)
a01187
 
a01187
 /var/run/sm-notify.*		gen_context(system_u:object_r:rpcd_var_run_t,s0)
a01187
-/var/run/ganesha.*		gen_context(system_u:object_r:rpcd_var_run_t,s0)
a01187
 /var/run/rpc\.statd(/.*)?	gen_context(system_u:object_r:rpcd_var_run_t,s0)
a01187
 /var/run/rpc\.statd\.pid --	gen_context(system_u:object_r:rpcd_var_run_t,s0)
a01187
 
a01187
diff --git a/rpc.if b/rpc.if
a01187
index 2ee527f2a..79a2a9c48 100644
a01187
--- a/rpc.if
a01187
+++ b/rpc.if
a01187
@@ -530,24 +530,3 @@ interface(`rpc_gssd_noatsecure',`
a01187
 
a01187
     allow $1 gssd_t:process { noatsecure rlimitinh };
a01187
 ')
a01187
-
a01187
-########################################
a01187
-## <summary>
a01187
-##	Send and receive messages from
a01187
-##	ganesha over dbus.
a01187
-## </summary>
a01187
-## <param name="domain">
a01187
-##	<summary>
a01187
-##	Domain allowed access.
a01187
-##	</summary>
a01187
-## </param>
a01187
-#
a01187
-interface(`rpc_dbus_chat_nfsd',`
a01187
-	gen_require(`
a01187
-		type nfsd_t;
a01187
-		class dbus send_msg;
a01187
-	')
a01187
-
a01187
-	allow $1 nfsd_t:dbus send_msg;
a01187
-	allow nfsd_t $1:dbus send_msg;
a01187
-')
a01187
diff --git a/rpc.te b/rpc.te
1aa61c
index f4df4fda2..b9665f773 100644
a01187
--- a/rpc.te
a01187
+++ b/rpc.te
a01187
@@ -65,13 +65,6 @@ systemd_unit_file(nfsd_unit_file_t)
a01187
 type var_lib_nfs_t;
a01187
 files_mountpoint(var_lib_nfs_t)
a01187
 
a01187
-type nfsd_tmp_t;
a01187
-files_tmp_file(nfsd_tmp_t)
a01187
-
a01187
-typealias nfsd_t alias ganesha_t;
a01187
-typealias nfsd_exec_t alias ganesha_exec_t;
a01187
-typealias nfsd_unit_file_t alias ganesha_unit_file_t;
a01187
-
a01187
 ########################################
a01187
 #
a01187
 # Common rpc domain local policy
a01187
@@ -234,17 +227,8 @@ optional_policy(`
a01187
 
a01187
 allow nfsd_t self:capability { dac_read_search dac_override sys_admin sys_rawio sys_resource };
a01187
 
a01187
-allow nfsd_t self:process { setcap };
a01187
-
a01187
 allow nfsd_t exports_t:file read_file_perms;
a01187
 
a01187
-manage_dirs_pattern(nfsd_t, nfsd_tmp_t, nfsd_tmp_t)
a01187
-manage_files_pattern(nfsd_t, nfsd_tmp_t, nfsd_tmp_t)
a01187
-files_tmp_filetrans(nfsd_t, nfsd_tmp_t, { file dir })
a01187
-
a01187
-manage_files_pattern(nfsd_t, rpcd_var_run_t, rpcd_var_run_t)
a01187
-files_pid_filetrans(nfsd_t, rpcd_var_run_t, { file })
a01187
-
a01187
 # for /proc/fs/nfs/exports - should we have a new type?
a01187
 kernel_read_system_state(nfsd_t)
a01187
 kernel_read_network_state(nfsd_t)
a01187
@@ -318,16 +302,6 @@ tunable_policy(`nfs_export_all_ro',`
a01187
 	files_read_non_security_files(nfsd_t)
a01187
 ')
a01187
 
a01187
-optional_policy(`
a01187
-    glusterd_manage_log(nfsd_t)
a01187
-    glusterd_manage_pid(nfsd_t)
a01187
-')
a01187
-
a01187
-optional_policy(`
a01187
-    dbus_system_bus_client(nfsd_t)
a01187
-    dbus_acquire_svc_system_dbusd(nfsd_t)
a01187
-')
a01187
-
a01187
 optional_policy(`
a01187
 	mount_exec(nfsd_t)
a01187
 	mount_manage_pid_files(nfsd_t)
1aa61c
@@ -357,6 +331,8 @@ kernel_signal(gssd_t)
1aa61c
 
1aa61c
 corecmd_exec_bin(gssd_t)
1aa61c
 
1aa61c
+domain_manage_all_domains_keyrings(gssd_t)
1aa61c
+
1aa61c
 fs_list_rpc(gssd_t)
1aa61c
 fs_rw_rpc_sockets(gssd_t)
1aa61c
 fs_read_rpc_files(gssd_t)
1aa61c
diff --git a/rpm.te b/rpm.te
1aa61c
index 7394a0dfc..4402cbe09 100644
1aa61c
--- a/rpm.te
1aa61c
+++ b/rpm.te
1aa61c
@@ -34,6 +34,7 @@ logging_log_file(rpm_log_t)
1aa61c
 
1aa61c
 type rpm_var_lib_t;
1aa61c
 files_type(rpm_var_lib_t)
1aa61c
+files_mountpoint(rpm_var_lib_t)
1aa61c
 typealias rpm_var_lib_t alias var_lib_rpm_t;
1aa61c
 
1aa61c
 type rpm_var_cache_t;
1aa61c
diff --git a/snapper.fc b/snapper.fc
1aa61c
index 4f4bdb397..0a43846a8 100644
1aa61c
--- a/snapper.fc
1aa61c
+++ b/snapper.fc
1aa61c
@@ -7,6 +7,7 @@
1aa61c
 
1aa61c
 /mnt/(.*/)?\.snapshots(/.*)?   gen_context(system_u:object_r:snapperd_data_t,s0)
1aa61c
 /\.snapshots(/.*)?   gen_context(system_u:object_r:snapperd_data_t,s0)
1aa61c
+
1aa61c
 /usr/\.snapshots(/.*)?   gen_context(system_u:object_r:snapperd_data_t,s0)
1aa61c
 /var/\.snapshots(/.*)?   gen_context(system_u:object_r:snapperd_data_t,s0)
1aa61c
 /etc/\.snapshots(/.*)?   gen_context(system_u:object_r:snapperd_data_t,s0)
1aa61c
diff --git a/snapper.te b/snapper.te
1aa61c
index 8c9e4a200..5be6d3542 100644
1aa61c
--- a/snapper.te
1aa61c
+++ b/snapper.te
1aa61c
@@ -22,7 +22,7 @@ files_type(snapperd_data_t)
1aa61c
 #
1aa61c
 # snapperd local policy
1aa61c
 #
1aa61c
-allow snapperd_t self:capability { dac_read_search fowner sys_admin };
1aa61c
+allow snapperd_t self:capability { dac_read_search dac_override fowner sys_admin };
1aa61c
 allow snapperd_t self:process setsched;
1aa61c
 
1aa61c
 allow snapperd_t self:fifo_file rw_fifo_file_perms;
1aa61c
@@ -57,6 +57,8 @@ files_read_all_files(snapperd_t)
1aa61c
 files_read_all_symlinks(snapperd_t)
1aa61c
 files_list_all(snapperd_t)
1aa61c
 files_manage_isid_type_dirs(snapperd_t)
1aa61c
+files_manage_non_security_dirs(snapperd_t)
1aa61c
+files_relabel_non_security_files(snapperd_t)
1aa61c
 
1aa61c
 fs_getattr_all_fs(snapperd_t)
1aa61c
 fs_mount_xattr_fs(snapperd_t)
06ab47
diff --git a/sysstat.te b/sysstat.te
06ab47
index a2690e315..efb2f855c 100644
06ab47
--- a/sysstat.te
06ab47
+++ b/sysstat.te
06ab47
@@ -44,6 +44,7 @@ dev_read_urand(sysstat_t)
06ab47
 
06ab47
 files_search_var(sysstat_t)
06ab47
 files_read_etc_runtime_files(sysstat_t)
06ab47
+files_search_all_mountpoints(sysstat_t)
06ab47
 
06ab47
 fs_getattr_all_fs(sysstat_t)
06ab47
 fs_list_inotifyfs(sysstat_t)