All of lore.kernel.org
 help / color / mirror / Atom feed
* alsactl policy
@ 2007-09-16 20:13 Martin Orr
  2007-09-17 14:21 ` Daniel J Walsh
  0 siblings, 1 reply; 5+ messages in thread
From: Martin Orr @ 2007-09-16 20:13 UTC (permalink / raw)
  To: selinux

Here's a new version of the patch I sent a while ago to add policy for
alsactl.  This is run from an init script to set set volume levels on
boot.  At least on Debian and Fedora, it is also run by udev when a
sound card is detected.

Index: policy/modules/admin/alsa.te
===================================================================
--- policy/modules/admin/alsa.te	(revision 2411)
+++ policy/modules/admin/alsa.te	(working copy)
@@ -8,12 +8,18 @@
 
 type alsa_t;
 type alsa_exec_t;
-application_domain(alsa_t, alsa_exec_t)
+init_system_domain(alsa_t, alsa_exec_t)
 role system_r types alsa_t;
 
 type alsa_etc_rw_t;
 files_type(alsa_etc_rw_t)
 
+type alsa_var_lib_t;
+files_type(alsa_var_lib_t)
+
+type alsa_state_t;
+files_type(alsa_state_t)
+
 ########################################
 #
 # Local policy
@@ -30,9 +36,23 @@
 manage_lnk_files_pattern(alsa_t,alsa_etc_rw_t,alsa_etc_rw_t)
 
 files_read_etc_files(alsa_t)
+files_read_usr_files(alsa_t)
+files_search_pids(alsa_t)
 
+allow alsa_t alsa_state_t:file manage_file_perms;
+ifdef(`distro_debian',`
+	files_search_var_lib(alsa_t)
+	filetrans_pattern(alsa_t,alsa_var_lib_t,alsa_state_t,file)
+',`
+	files_etc_filetrans(alsa_t,alsa_state_t,file)
+')
+
+dev_read_sound(alsa_t)
+dev_write_sound(alsa_t)
+
 term_use_generic_ptys(alsa_t)
 term_dontaudit_use_unallocated_ttys(alsa_t)
+init_dontaudit_use_fds(alsa_t)
 
 libs_use_ld_so(alsa_t)
 libs_use_shared_libs(alsa_t)
@@ -43,6 +63,7 @@
 
 userdom_manage_unpriv_user_semaphores(alsa_t)
 userdom_manage_unpriv_user_shared_mem(alsa_t)
+userdom_search_generic_user_home_dirs(alsa_t)
 
 optional_policy(`
 	nscd_socket_use(alsa_t)
Index: policy/modules/admin/alsa.if
===================================================================
--- policy/modules/admin/alsa.if	(revision 2411)
+++ policy/modules/admin/alsa.if	(working copy)
@@ -74,3 +74,26 @@
 	read_files_pattern($1,alsa_etc_rw_t,alsa_etc_rw_t)
 	read_lnk_files_pattern($1,alsa_etc_rw_t,alsa_etc_rw_t)
 ')
+
+########################################
+## <summary>
+##	Read alsa state file.
+## </summary>
+## <param name="domain">
+##	<summary>
+##	Domain allowed access.
+##	</summary>
+## </param>
+#
+interface(`alsa_read_state',`
+	gen_require(`
+		type alsa_state_t, alsa_var_lib_t;
+	')
+	ifdef(`distro_debian',`
+		files_search_var_lib($1)
+		read_files_pattern($1,alsa_var_lib_t,alsa_state_t)
+	',`
+		files_search_etc($1)
+		allow $1 alsa_state_t:file read_file_perms;
+	')
+')
Index: policy/modules/admin/alsa.fc
===================================================================
--- policy/modules/admin/alsa.fc	(revision 2411)
+++ policy/modules/admin/alsa.fc	(working copy)
@@ -1,4 +1,10 @@
 
 /etc/alsa/pcm(/.*)?		gen_context(system_u:object_r:alsa_etc_rw_t,s0)
 
+/etc/(alsa/)?asound\.state --	gen_context(system_u:object_r:alsa_state_t,s0)
+/var/lib/alsa		-d	gen_context(system_u:object_r:alsa_var_lib_t,s0)
+/var/lib/alsa/asound.state --	gen_context(system_u:object_r:alsa_state_t,s0)
+
 /usr/bin/ainit 		--	gen_context(system_u:object_r:alsa_exec_t,s0)
+/usr/sbin/alsactl	--	gen_context(system_u:object_r:alsa_exec_t,s0)
+/usr/bin/amixer		--	gen_context(system_u:object_r:alsa_exec_t,s0)
Index: policy/modules/system/udev.te
===================================================================
--- policy/modules/system/udev.te	(revision 2411)
+++ policy/modules/system/udev.te	(working copy)
@@ -190,6 +190,11 @@
 ')
 
 optional_policy(`
+	alsa_domtrans(udev_t)
+	alsa_read_state(udev_t)
+')
+
+optional_policy(`
 	brctl_domtrans(udev_t)
 ')
 

--
This message was distributed to subscribers of the selinux mailing list.
If you no longer wish to subscribe, send mail to majordomo@tycho.nsa.gov with
the words "unsubscribe selinux" without quotes as the message.

^ permalink raw reply	[flat|nested] 5+ messages in thread
* alsactl policy
@ 2007-07-23 19:49 Martin Orr
  2007-07-27 13:11 ` Christopher J. PeBenito
  0 siblings, 1 reply; 5+ messages in thread
From: Martin Orr @ 2007-07-23 19:49 UTC (permalink / raw)
  To: selinux

[-- Attachment #1: Type: text/plain, Size: 260 bytes --]

The alsa policy doesn't address alsactl, run from an init script and via a
udev rule whenever a sound device is loaded to set volumes.  This patch
addresses this.  Since I have never written SELinux policy before, all
comments are appreciated.

-- 
Martin Orr

[-- Attachment #2: alsa.diff --]
[-- Type: text/plain, Size: 2458 bytes --]

Index: policy/modules/system/init.te
===================================================================
--- policy/modules/system/init.te	(revision 2373)
+++ policy/modules/system/init.te	(working copy)
@@ -541,6 +541,10 @@
 ')
 
 optional_policy(`
+	alsa_domtrans(initrc_t)
+')
+
+optional_policy(`
 	amavis_search_lib(initrc_t)
 	amavis_setattr_pid_files(initrc_t)
 ')
Index: policy/modules/system/udev.te
===================================================================
--- policy/modules/system/udev.te	(revision 2373)
+++ policy/modules/system/udev.te	(working copy)
@@ -176,6 +176,10 @@
 ')
 
 optional_policy(`
+	alsa_domtrans(udev_t)
+')
+
+optional_policy(`
 	consoletype_exec(udev_t)
 ')
 
Index: policy/modules/admin/alsa.te
===================================================================
--- policy/modules/admin/alsa.te	(revision 2373)
+++ policy/modules/admin/alsa.te	(working copy)
@@ -14,6 +14,9 @@
 type alsa_etc_rw_t;
 files_type(alsa_etc_rw_t)
 
+type alsa_var_lib_t;
+files_type(alsa_var_lib_t)
+
 ########################################
 #
 # Local policy
@@ -30,9 +33,20 @@
 manage_lnk_files_pattern(alsa_t,alsa_etc_rw_t,alsa_etc_rw_t)
 
 files_read_etc_files(alsa_t)
+files_read_usr_files(alsa_t)
+files_search_pids(alsa_t)
 
+# asound.state: lives in /var/lib/alsa on Debian, /etc elsewhere
+files_etc_filetrans(alsa_t,alsa_etc_rw_t,file)
+files_search_var_lib(alsa_t)
+manage_files_pattern(alsa_t,alsa_var_lib_t,alsa_var_lib_t)
+
+dev_read_sound(alsa_t)
+dev_write_sound(alsa_t)
+
 term_use_generic_ptys(alsa_t)
 term_dontaudit_use_unallocated_ttys(alsa_t)
+init_dontaudit_use_fds(alsa_t)
 
 libs_use_ld_so(alsa_t)
 libs_use_shared_libs(alsa_t)
@@ -43,6 +57,7 @@
 
 userdom_manage_unpriv_user_semaphores(alsa_t)
 userdom_manage_unpriv_user_shared_mem(alsa_t)
+userdom_search_generic_user_home_dirs(alsa_t)
 
 optional_policy(`
 	nscd_socket_use(alsa_t)
Index: policy/modules/admin/alsa.fc
===================================================================
--- policy/modules/admin/alsa.fc	(revision 2373)
+++ policy/modules/admin/alsa.fc	(working copy)
@@ -1,4 +1,8 @@
 
 /etc/alsa/pcm(/.*)?		gen_context(system_u:object_r:alsa_etc_rw_t,s0)
 
+/etc/asound\.state	--	gen_context(system_u:object_r:alsa_etc_rw_t,s0)
+/var/lib/alsa(/.*)?		gen_context(system_u:object_r:alsa_var_lib_t,s0)
+
 /usr/bin/ainit 		--	gen_context(system_u:object_r:alsa_exec_t,s0)
+/usr/sbin/alsactl	--	gen_context(system_u:object_r:alsa_exec_t,s0)


^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2007-09-18 15:04 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2007-09-16 20:13 alsactl policy Martin Orr
2007-09-17 14:21 ` Daniel J Walsh
2007-09-18 15:03   ` Martin Orr
  -- strict thread matches above, loose matches on Subject: below --
2007-07-23 19:49 Martin Orr
2007-07-27 13:11 ` Christopher J. PeBenito

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.