Revert "Wahoo sepolicy changes"

This reverts commit eb6f000bff.

Reason for revert: Causing runtime restarts

Bug: 63123125
Change-Id: I3f4752c7ff29f52957f28b0f0c84de2c11a06f40
This commit is contained in:
Ed Tam
2017-06-29 08:49:47 +00:00
parent eb6f000bff
commit 7d05a3ba89
3 changed files with 20 additions and 52 deletions

View File

@@ -7,27 +7,23 @@ init_daemon_domain(hal_gnss_qti)
r_dir_file(hal_gnss_qti, sysfs_msm_subsys)
vndbinder_use(hal_gnss_qti)
binder_call(hal_gnss_qti, per_mgr)
allow hal_gnss_qti per_mgr_service:service_manager find;
allow hal_gnss_qti location_data_file:fifo_file { open read setattr write };
allow hal_gnss_qti location:unix_stream_socket connectto;
allow hal_gnss_qti sysfs_soc:dir r_dir_perms;
allow hal_gnss_qti sysfs_soc:file r_file_perms;
allow hal_gnss_qti location_data_file:dir create_dir_perms;
allow hal_gnss_qti location_data_file:file create_file_perms;
allow hal_gnss_qti location_data_file:sock_file write;
allow hal_gnss_qti location:unix_stream_socket connectto;
unix_socket_connect(hal_gnss_qti, netmgrd, netmgrd)
allow hal_gnss_qti netmgrd_socket:dir search;
allow hal_gnss_qti self:netlink_route_socket { bind create nlmsg_read read write };
# Most HALs are not allowed to use network sockets. Qcom library
# libqdi is used across multiple processes which are clients of
# netmgrd including the GNSS HAL. libqdi first attempts to get the network
# interface using an IOCTL on a UDP INET socket, which isn't allowed here.
# If that fails, it falls back to using libc's if_nameindex() which requires
# a netlink route socket, which HALs may use. Due to the initial
# attempt to use a UDP socket, we still see a selinux denial,
# but it is safe to ignore.
# TODO (b/37730994) Remove udp_socket requirement from
# libqdi and have all its clients use netlink route
# sockets.
dontaudit hal_gnss_qti self:udp_socket create;
allow hal_gnss_qti self:socket create_socket_perms;
allowxperm hal_gnss_qti self:socket ioctl msm_sock_ipc_ioctls;
allow hal_gnss_qti self:netlink_generic_socket { bind create read };
vndbinder_use(hal_gnss_qti)
binder_call(hal_gnss_qti, per_mgr)
allow hal_gnss_qti per_mgr_service:service_manager find;

View File

@@ -7,19 +7,20 @@ init_daemon_domain(location)
# Temporarily grant this permission and log its use.
allow location self:capability { net_admin };
auditallow location self:capability { net_admin };
allow location location_exec:file execute_no_trans;
allow location self:capability { setgid setuid };
allow location proc_net:file r_file_perms;
allow location location_data_file:dir create_dir_perms;
allow location location_data_file:{ file sock_file } create_file_perms;
allow location location_exec:file rx_file_perms;
allow location proc_net:file r_file_perms;
allow location self:netlink_route_socket create_socket_perms_no_ioctl;
allow location self:netlink_generic_socket create_socket_perms_no_ioctl;
allow location self:netlink_socket create_socket_perms_no_ioctl;
allow location self:socket create_socket_perms;
allowxperm location self:udp_socket ioctl { SIOCGIFINDEX SIOCGIFHWADDR SIOCIWFIRSTPRIV_05 };
allowxperm location self:udp_socket ioctl { SIOCGIFHWADDR SIOCIWFIRSTPRIV_05 };
allowxperm location self:socket ioctl msm_sock_ipc_ioctls;
# Enable network access (for XTRA download)
@@ -29,22 +30,3 @@ net_domain(location)
r_dir_file(location, sysfs_type)
dontaudit location kernel:system module_request;
allow location fwk_sensor_hwservice:hwservice_manager find;
allow location hal_wifi:unix_stream_socket { read write };
# Grant access to Qualcomm MSM Interface (QMI) radio sockets
qmux_socket(location)
userdebug_or_eng(`
allow location diag_device:chr_file rw_file_perms;
')
# Added to enable XTRA download (from internet) per
# audit2allow after a test that downloaded XTRA on boot
allow location dnsproxyd_socket:sock_file write;
allow location fwmarkd_socket:sock_file write;
allow location netd:unix_stream_socket connectto;
allow location port:tcp_socket name_connect;
allow location self:tcp_socket { connect create read setopt write };
allow location self:udp_socket { create ioctl read write };

View File

@@ -1,10 +0,0 @@
#####################################
# qmux_socket(clientdomain)
# Allow client domain to connecto and send
# via a local socket to the qmux domain.
# Also allow the client domain to remove
# its own socket.
define(`qmux_socket', `
allow $1 qmuxd_socket:dir create_dir_perms;
allow $1 qmuxd_socket:sock_file { read getattr write setattr create unlink };
')