summaryrefslogtreecommitdiff
path: root/sepolicy/vendor/hal_gnss_qti.te
diff options
context:
space:
mode:
authorSiddharth Ray <siddharthr@google.com>2017-06-26 11:09:16 -0700
committerWyatt Riley <wyattriley@google.com>2017-07-06 12:30:04 -0700
commit078daa1c8b60f7bc7b9c299421e8604e3132fae8 (patch)
treed5cf4fa1f0362a933d3cba0b806b5b3013141291 /sepolicy/vendor/hal_gnss_qti.te
parentf128f5c538e37212e0bc762b12f9ae02470bb346 (diff)
downloadwahoo-078daa1c8b60f7bc7b9c299421e8604e3132fae8.tar.gz
Wahoo sepolicy changes
Wahoo's sepolicy is changed merged to add Marlin permissions based on compliance test needs. Marlin's sepolicy can be found at device/google/marlin/sepolicy/hal_gnss_default.te Bug: 37409476 Test: Boots with no avc denials or crashes. GNSS incl. post XTRA delete runs well with no denials. Change-Id: Id51197120d142850fe0d7c97f747818e23c178f8
Diffstat (limited to 'sepolicy/vendor/hal_gnss_qti.te')
-rw-r--r--sepolicy/vendor/hal_gnss_qti.te31
1 files changed, 23 insertions, 8 deletions
diff --git a/sepolicy/vendor/hal_gnss_qti.te b/sepolicy/vendor/hal_gnss_qti.te
index 8f0acc84..74620f8d 100644
--- a/sepolicy/vendor/hal_gnss_qti.te
+++ b/sepolicy/vendor/hal_gnss_qti.te
@@ -11,19 +11,34 @@ vndbinder_use(hal_gnss_qti)
allow hal_gnss_qti sysfs_soc:dir r_dir_perms;
allow hal_gnss_qti sysfs_soc:file r_file_perms;
+binder_call(hal_gnss_qti, per_mgr)
+allow hal_gnss_qti per_mgr_service:service_manager find;
+
+# /data/vendor/location
+allow hal_gnss_qti location_data_file:fifo_file { open read setattr write };
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 location:unix_stream_socket connectto;
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)
+unix_socket_connect(hal_gnss_qti, netmgrd, netmgrd)
+allow hal_gnss_qti netmgrd_socket:dir search;
-allow hal_gnss_qti per_mgr_service:service_manager find;
+allow hal_gnss_qti self:netlink_generic_socket { bind create read };
+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;