2021-10-27 16:12:44 +02:00
|
|
|
# Bind to ports.
|
2023-04-28 11:22:15 +02:00
|
|
|
allow {netdomain -ephemeral_app -sdk_sandbox_all} node_type:{ icmp_socket rawip_socket tcp_socket udp_socket } node_bind;
|
|
|
|
allow {netdomain -ephemeral_app -sdk_sandbox_all} port_type:udp_socket name_bind;
|
|
|
|
allow {netdomain -ephemeral_app -sdk_sandbox_all} port_type:tcp_socket name_bind;
|
2021-10-27 16:12:44 +02:00
|
|
|
|
|
|
|
# b/141455849 gate RTM_GETLINK with a new permission nlmsg_readpriv and block access from
|
|
|
|
# untrusted_apps.
|
|
|
|
# b/171572148 gate RTM_GETNEIGH{TBL} with a new permission nlmsg_getneigh and block access from
|
|
|
|
# untrusted_apps. Some untrusted apps (e.g. untrusted_app_25-30) are granted access elsewhere
|
|
|
|
# to avoid app-compat breakage.
|
|
|
|
allow {
|
|
|
|
netdomain
|
|
|
|
-ephemeral_app
|
|
|
|
-mediaprovider
|
2022-05-17 14:22:02 +02:00
|
|
|
-priv_app
|
2023-04-28 11:22:15 +02:00
|
|
|
-sdk_sandbox_all
|
2021-10-27 16:12:44 +02:00
|
|
|
-untrusted_app_all
|
|
|
|
} self:netlink_route_socket { bind nlmsg_readpriv nlmsg_getneigh };
|
|
|
|
|
2024-03-27 09:18:41 +01:00
|
|
|
###
|
|
|
|
### Domain with network access
|
|
|
|
###
|
|
|
|
|
|
|
|
# Use network sockets.
|
|
|
|
allow netdomain self:tcp_socket create_stream_socket_perms;
|
|
|
|
allow netdomain self:{ icmp_socket udp_socket rawip_socket } create_socket_perms;
|
|
|
|
|
|
|
|
# Connect to ports.
|
|
|
|
allow netdomain port_type:tcp_socket name_connect;
|
|
|
|
# See changes to the routing table.
|
|
|
|
allow netdomain self:netlink_route_socket { create read getattr write setattr lock append connect getopt setopt shutdown nlmsg_read };
|
|
|
|
|
|
|
|
# Talks to netd via dnsproxyd socket.
|
|
|
|
unix_socket_connect(netdomain, dnsproxyd, netd)
|
|
|
|
|
|
|
|
# Talks to netd via fwmarkd socket.
|
|
|
|
unix_socket_connect(netdomain, fwmarkd, netd)
|