5131ff6544
This prebuilt is based on the AOSP policy, but slightly manipulated so that the set of types and attributes are identical with R policy. Following types are removed. boot_status_prop dalvik_config_prop gnss_device surfaceflinger_color_prop surfaceflinger_prop systemsound_config_prop vold_config_prop vold_status_prop Following type is renamed. wificond_service -> wifinl80211_service Bug: 153661471 Test: N/A Change-Id: I018d5e43f53c2bf721db1d13f5f4be42b9782b29
20 lines
662 B
Text
20 lines
662 B
Text
# HwBinder IPC from client to server, and callbacks
|
|
binder_call(hal_lowpan_client, hal_lowpan_server)
|
|
binder_call(hal_lowpan_server, hal_lowpan_client)
|
|
|
|
|
|
# Allow hal_lowpan_client to be able to find the hal_lowpan_server
|
|
hal_attribute_hwservice(hal_lowpan, hal_lowpan_hwservice)
|
|
|
|
# hal_lowpan domain can write/read to/from lowpan_prop
|
|
set_prop(hal_lowpan_server, lowpan_prop)
|
|
|
|
# Allow hal_lowpan_server to open lowpan_devices
|
|
allow hal_lowpan_server lowpan_device:chr_file rw_file_perms;
|
|
|
|
###
|
|
### neverallow rules
|
|
###
|
|
|
|
# Only LoWPAN HAL may directly access LoWPAN hardware
|
|
neverallow { domain -hal_lowpan_server -init -ueventd } lowpan_device:chr_file ~getattr;
|