Update for the xserver module:

- updated the file contexts for the Xsession script;
- created an interface for chatting over dbus with
  xdm (currently used by the userdomain module in
  the common user template);
- added permission to chat over dbus with colord.

Signed-off-by: Guido Trentalancia <guido@trentalancia.net>
This commit is contained in:
Chris PeBenito 2016-08-14 15:13:24 -04:00
parent 87b8627839
commit 6829da4054
2 changed files with 26 additions and 1 deletions

View File

@ -711,6 +711,27 @@ interface(`xserver_dontaudit_rw_xdm_pipes',`
dontaudit $1 xdm_t:fifo_file rw_fifo_file_perms;
')
########################################
## <summary>
## Send and receive messages from
## xdm over dbus.
## </summary>
## <param name="domain">
## <summary>
## Domain allowed access.
## </summary>
## </param>
#
interface(`xserver_dbus_chat_xdm',`
gen_require(`
type xdm_t;
class dbus send_msg;
')
allow $1 xdm_t:dbus send_msg;
allow xdm_t $1:dbus send_msg;
')
########################################
## <summary>
## Read xdm process state files.

View File

@ -1,4 +1,4 @@
policy_module(xserver, 3.11.3)
policy_module(xserver, 3.11.4)
gen_require(`
class x_drawable all_x_drawable_perms;
@ -510,6 +510,10 @@ optional_policy(`
colord_dbus_chat(xdm_t)
')
optional_policy(`
colord_dbus_chat(xdm_t)
')
optional_policy(`
consolekit_dbus_chat(xdm_t)
')