Skip to content
Snippets Groups Projects
Commit bc8677c4 authored by Chad Brubaker's avatar Chad Brubaker Committed by android-build-merger
Browse files

Merge "Allow binder IPC between ephemeral app and appdomain" am: 0046853f...

Merge "Allow binder IPC between ephemeral app and appdomain" am: 0046853f am: 377e50d7 am: 393b96e3
am: 8bc6e51d

Change-Id: Iae7161bf31afd0b12aceb6b7a20427edf9568da0
parents 0bb4a2f0 8bc6e51d
No related branches found
No related tags found
No related merge requests found
......@@ -154,6 +154,8 @@ binder_use(appdomain)
binder_call(appdomain, binderservicedomain)
# Perform binder IPC to other apps.
binder_call(appdomain, appdomain)
# Perform binder IPC to ephemeral apps.
binder_call(appdomain, ephemeral_app)
# Already connected, unnamed sockets being passed over some other IPC
# hence no sock_file or connectto permission. This appears to be how
......
......@@ -54,6 +54,8 @@ binder_use(ephemeral_app)
# Perform binder IPC to binder services.
binder_call(ephemeral_app, surfaceflinger)
binder_call(ephemeral_app, system_server)
# Perform binder IPC to apps.
binder_call(ephemeral_app, appdomain)
# Allow read access to ion memory allocation device
allow ephemeral_app ion_device:chr_file { read open };
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment