This file is indexed.

/usr/share/selinux/ubuntu/include/apps/games.if is in selinux-policy-ubuntu-dev 0.2.20091117-0ubuntu2.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
## <summary>Games</summary>

############################################################
## <summary>
##	Role access for games
## </summary>
## <param name="role">
##	<summary>
##	Role allowed access
##	</summary>
## </param>
## <param name="domain">
##	<summary>
##	User domain for the role
##	</summary>
## </param>
#
interface(`games_role',`
	gen_require(`
		type games_t, games_exec_t;
	')

	role $1 types games_t;

	domtrans_pattern($2, games_exec_t, games_t)
	allow $2 games_t:unix_stream_socket connectto;
	allow games_t $2:unix_stream_socket connectto;

	# Allow the user domain to signal/ps.
	ps_process_pattern($2, games_t)
	allow $2 games_t:process signal_perms;
')

########################################
## <summary>
##	Allow the specified domain to read/write
##	games data.
## </summary>
## <param name="domain">
##	<summary>
##	Domain allowed access.
##	</summary>
## </param>
#
interface(`games_rw_data',`
	gen_require(`
		type games_data_t;
	')

	rw_files_pattern($1, games_data_t, games_data_t)
')