8fc7981885
Before, it was possible to access a hwservice without declaring that you were a client. This introduces the following macro: hal_attribute_hwservice_client(hal_foo, hal_foo_hwservice) which makes sure the above implication holds using a neverallow rule. Bug: 80319537 Test: boot + sanity Change-Id: Iededae68f14f0f3bd412c1205aa3b650a54d55c6
6 lines
257 B
Text
6 lines
257 B
Text
# HwBinder IPC from client to server, and callbacks
|
|
binder_call(hal_gnss_client, hal_gnss_server)
|
|
binder_call(hal_gnss_server, hal_gnss_client)
|
|
|
|
add_hwservice(hal_gnss_server, hal_gnss_hwservice)
|
|
hal_attribute_hwservice_client(hal_gnss, hal_gnss_hwservice)
|