blob: 30dcd084e714e82818ff3b4f844eaff3cc9fc73e [file] [log] [blame]
Alex Klyubinf5446eb2017-03-23 14:27:32 -07001typeattribute netd coredomain;
Steven Moreland65981752022-02-10 00:32:44 +00002typeattribute netd bpfdomain;
Alex Klyubinf5446eb2017-03-23 14:27:32 -07003
dcashmancc39f632016-07-22 13:13:11 -07004init_daemon_domain(netd)
5
6# Allow netd to spawn dnsmasq in it's own domain
7domain_auto_trans(netd, dnsmasq_exec, dnsmasq)
8
Chenbo Feng7b571042018-12-04 17:57:27 -08009# give netd permission to setup iptables rule with xt_bpf, attach program to cgroup, and read/write
10# the map created by bpfloader
11allow netd bpfloader:bpf { prog_run map_read map_write };
Joel Fernandesb76a6392019-01-11 08:32:45 -050012
Chenbo Feng8a5539b2019-02-27 17:44:26 -080013# in order to invoke side effect of close() on such a socket calling synchronize_rcu()
14# TODO: Remove this permission when 4.9 kernel is deprecated.
Ken Chen1aed0062022-01-28 15:04:09 +080015# TODO: Remove this after we remove all bpf interactions from netd.
Chenbo Feng8a5539b2019-02-27 17:44:26 -080016allow netd self:key_socket create;
17
Inseob Kim55e5c9b2020-03-04 17:20:35 +090018set_prop(netd, ctl_mdnsd_prop)
19set_prop(netd, netd_stable_secret_prop)
20
steven_fannd3e8f6f2021-01-26 13:34:00 +080021get_prop(netd, adbd_config_prop)
Joel Fernandesb76a6392019-01-11 08:32:45 -050022get_prop(netd, bpf_progs_loaded_prop)
Inseob Kim55e5c9b2020-03-04 17:20:35 +090023get_prop(netd, hwservicemanager_prop)
24get_prop(netd, device_config_netd_native_prop)
lifr980c08c2018-11-21 22:53:48 +080025
26# Allow netd to write to statsd.
27unix_socket_send(netd, statsdw, statsd)
Remi NGUYEN VAN780fbad2019-01-28 13:08:42 +090028
29# Allow netd to send callbacks to network_stack
30binder_call(netd, network_stack)
31
Chalard Jeana4c9f7b2019-04-05 17:33:56 +090032# Allow netd to send dump info to dumpstate
33allow netd dumpstate:fd use;
34allow netd dumpstate:fifo_file { getattr write };
Inseob Kim55e5c9b2020-03-04 17:20:35 +090035
36# persist.netd.stable_secret contains RFC 7217 secret key which should never be
37# leaked to other processes. Make sure it never leaks.
38neverallow { domain -netd -init -dumpstate } netd_stable_secret_prop:file r_file_perms;
39
40# We want to ensure that no other process ever tries tampering with persist.netd.stable_secret,
41# the RFC 7217 secret key managed by netd. Doing so could compromise user privacy.
42neverallow { domain -netd -init } netd_stable_secret_prop:property_service set;