2012-01-04 18:33:27 +01:00
|
|
|
# Network types
|
|
|
|
type node, node_type;
|
|
|
|
type netif, netif_type;
|
|
|
|
type port, port_type;
|
2013-09-30 21:07:55 +02:00
|
|
|
|
|
|
|
# Use network sockets.
|
2014-02-24 16:48:03 +01:00
|
|
|
allow netdomain self:tcp_socket create_stream_socket_perms;
|
|
|
|
allow netdomain self:{ udp_socket rawip_socket } create_socket_perms;
|
2013-09-30 21:07:55 +02:00
|
|
|
# Connect to ports.
|
|
|
|
allow netdomain port_type:tcp_socket name_connect;
|
|
|
|
# Bind to ports.
|
|
|
|
allow netdomain node_type:{ tcp_socket udp_socket } node_bind;
|
|
|
|
allow netdomain port_type:udp_socket name_bind;
|
|
|
|
allow netdomain port_type:tcp_socket name_bind;
|
2014-02-24 16:48:03 +01:00
|
|
|
# See changes to the routing table.
|
2014-02-24 21:06:11 +01:00
|
|
|
allow netdomain self:netlink_route_socket { create_socket_perms nlmsg_read };
|
2013-09-30 21:07:55 +02:00
|
|
|
|
|
|
|
# Talks to netd via dnsproxyd socket.
|
|
|
|
unix_socket_connect(netdomain, dnsproxyd, netd)
|
2014-02-24 19:04:49 +01:00
|
|
|
|
|
|
|
# Connect to mdnsd via mdnsd socket.
|
|
|
|
unix_socket_connect(netdomain, mdnsd, mdnsd)
|