blob: 75f294c00bc953266375659aafbf03d4d9eb9030 [file] [log] [blame]
Stephen Smalley2dd4e512012-01-04 12:33:27 -05001#####################################
2# domain_trans(olddomain, type, newdomain)
3# Allow a transition from olddomain to newdomain
4# upon executing a file labeled with type.
5# This only allows the transition; it does not
6# cause it to occur automatically - use domain_auto_trans
7# if that is what you want.
8#
9define(`domain_trans', `
10# Old domain may exec the file and transition to the new domain.
11allow $1 $2:file { getattr open read execute };
12allow $1 $3:process transition;
13# New domain is entered by executing the file.
14allow $3 $2:file { entrypoint read execute };
15# New domain can send SIGCHLD to its caller.
16allow $3 $1:process sigchld;
17# Enable AT_SECURE, i.e. libc secure mode.
18dontaudit $1 $3:process noatsecure;
19# XXX dontaudit candidate but requires further study.
20allow $1 $3:process { siginh rlimitinh };
21')
22
23#####################################
24# domain_auto_trans(olddomain, type, newdomain)
25# Automatically transition from olddomain to newdomain
26# upon executing a file labeled with type.
27#
28define(`domain_auto_trans', `
29# Allow the necessary permissions.
30domain_trans($1,$2,$3)
31# Make the transition occur by default.
32type_transition $1 $2:process $3;
33')
34
35#####################################
36# file_type_trans(domain, dir_type, file_type)
37# Allow domain to create a file labeled file_type in a
38# directory labeled dir_type.
39# This only allows the transition; it does not
40# cause it to occur automatically - use file_type_auto_trans
41# if that is what you want.
42#
43define(`file_type_trans', `
44# Allow the domain to add entries to the directory.
45allow $1 $2:dir ra_dir_perms;
46# Allow the domain to create the file.
47allow $1 $3:notdevfile_class_set create_file_perms;
48allow $1 $3:dir create_dir_perms;
49')
50
51#####################################
52# file_type_auto_trans(domain, dir_type, file_type)
53# Automatically label new files with file_type when
54# they are created by domain in directories labeled dir_type.
55#
56define(`file_type_auto_trans', `
57# Allow the necessary permissions.
58file_type_trans($1, $2, $3)
59# Make the transition occur by default.
60type_transition $1 $2:dir $3;
61type_transition $1 $2:notdevfile_class_set $3;
62')
63
64#####################################
65# r_dir_file(domain, type)
66# Allow the specified domain to read directories, files
67# and symbolic links of the specified type.
68define(`r_dir_file', `
69allow $1 $2:dir r_dir_perms;
70allow $1 $2:{ file lnk_file } r_file_perms;
71')
72
73#####################################
74# unconfined_domain(domain)
75# Allow the specified domain to do anything.
76#
77define(`unconfined_domain', `
78typeattribute $1 mlstrustedsubject;
79typeattribute $1 unconfineddomain;
80')
81
82#####################################
83# tmpfs_domain(domain)
84# Define and allow access to a unique type for
85# this domain when creating tmpfs / shmem / ashmem files.
86define(`tmpfs_domain', `
87type $1_tmpfs, file_type;
88type_transition $1 tmpfs:file $1_tmpfs;
89# Map with PROT_EXEC.
90allow $1 $1_tmpfs:file { read execute execmod };
91')
92
93#####################################
94# init_daemon_domain(domain)
95# Set up a transition from init to the daemon domain
96# upon executing its binary.
97define(`init_daemon_domain', `
98domain_auto_trans(init, $1_exec, $1)
99tmpfs_domain($1)
Stephen Smalley6261d6d2012-01-12 08:57:50 -0500100# Read properties.
101allow $1 kernel:fd use;
102allow $1 tmpfs:file read;
Stephen Smalley2dd4e512012-01-04 12:33:27 -0500103')
104
105#####################################
106# app_domain(domain)
107# Allow a base set of permissions required for all apps.
108define(`app_domain', `
109typeattribute $1 appdomain;
110# Label ashmem objects with our own unique type.
111tmpfs_domain($1)
112')
113
114#####################################
115# net_domain(domain)
116# Allow a base set of permissions required for network access.
117define(`net_domain', `
118typeattribute $1 netdomain;
119')
120
121#####################################
122# bluetooth_domain(domain)
123# Allow a base set of permissions required for bluetooth access.
124define(`bluetooth_domain', `
125typeattribute $1 bluetoothdomain;
126')
127
128#####################################
129# unix_socket_connect(clientdomain, socket, serverdomain)
130# Allow a local socket connection from clientdomain via
131# socket to serverdomain.
132define(`unix_socket_connect', `
133allow $1 $2_socket:sock_file write;
134allow $1 $3:unix_stream_socket connectto;
135')
136
137#####################################
138# unix_socket_send(clientdomain, socket, serverdomain)
139# Allow a local socket send from clientdomain via
140# socket to serverdomain.
141define(`unix_socket_send', `
142allow $1 $2_socket:sock_file write;
143allow $1 $3:unix_dgram_socket sendto;
144')
145
146#####################################
147# binder_use(domain)
148# Allow domain to use Binder IPC.
149define(`binder_use', `
150# Get Binder references from the servicemanager.
151allow $1 servicemanager:binder call;
152# Transfer and receive own Binder references.
153allow $1 self:binder { transfer receive };
154# Map /dev/ashmem with PROT_EXEC.
155allow $1 ashmem_device:chr_file execute;
156# rw access to /dev/binder and /dev/ashmem is presently granted to
157# all domains in domain.te.
158')
159
160#####################################
161# binder_call(clientdomain, serverdomain)
162# Allow clientdomain to perform binder IPC to serverdomain.
163define(`binder_call', `
164# First we receive a Binder ref to the server, then we call it.
165allow $1 $2:binder { receive call };
166# Receive and use open files from the server.
167allow $1 $2:fd use;
168')
169
170#####################################
171# binder_transfer(clientdomain, serverdomain)
172# Allow clientdomain to transfer Binder references created by serverdomain.
173define(`binder_transfer', `
174allow $1 $2:binder transfer;
175')
176
177#####################################
178# binder_service(domain)
179# Mark a domain as being a Binder service domain.
180# Used to allow binder IPC to the various system services.
181define(`binder_service', `
182typeattribute $1 binderservicedomain;
183')
184
185#####################################
186# selinux_check_access(domain)
187# Allow domain to check SELinux permissions via selinuxfs.
188define(`selinux_check_access', `
189allow $1 selinuxfs:dir r_dir_perms;
190allow $1 selinuxfs:file rw_file_perms;
191allow $1 kernel:security compute_av;
192allow $1 self:netlink_selinux_socket *;
193')
194
195#####################################
196# selinux_check_context(domain)
197# Allow domain to check SELinux contexts via selinuxfs.
198define(`selinux_check_context', `
199allow $1 selinuxfs:dir r_dir_perms;
200allow $1 selinuxfs:file rw_file_perms;
201allow $1 kernel:security check_context;
202')
203
204#####################################
205# selinux_getenforce(domain)
206# Allow domain to check whether SELinux is enforcing.
207define(`selinux_getenforce', `
208allow $1 selinuxfs:dir r_dir_perms;
209allow $1 selinuxfs:file r_file_perms;
210')
Stephen Smalley4c6f1ce2012-02-02 13:28:44 -0500211
212#####################################
213# selinux_setenforce(domain)
214# Allow domain to set SELinux to enforcing.
215define(`selinux_setenforce', `
216allow $1 selinuxfs:dir r_dir_perms;
217allow $1 selinuxfs:file rw_file_perms;
218allow $1 kernel:security setenforce;
219')
220
221#####################################
222# selinux_setbool(domain)
223# Allow domain to set SELinux booleans.
224define(`selinux_setbool', `
225allow $1 selinuxfs:dir r_dir_perms;
226allow $1 selinuxfs:file rw_file_perms;
227allow $1 kernel:security setbool;
228')