goldfish_setup.te revision 063b6b85d69752a6c76ae639d73eaaf952e2d6b2
1# goldfish-setup service: runs init.goldfish.sh script
2type goldfish_setup, domain;
3type goldfish_setup_exec, exec_type, file_type;
4
5init_daemon_domain(goldfish_setup)
6
7# Inherit open file to shell (interpreter) for script.
8allow goldfish_setup shell_exec:file read;
9
10# Run ifconfig, route commands to configure interfaces and routes.
11allow goldfish_setup system_file:file execute_no_trans;
12allow goldfish_setup self:capability { net_admin net_raw };
13allow goldfish_setup self:udp_socket create_socket_perms;
14
15# Set net.eth0.dns*, debug.sf.nobootanimation
16unix_socket_connect(goldfish_setup, property, init)
17allow goldfish_setup system_prop:property_service set;
18allow goldfish_setup debug_prop:property_service set;
19