blob: 6a1dfd4242dc197c1b308454fad86c9b413f0929 [file] [log] [blame]
Torne (Richard Coles)9786af22014-05-23 11:01:58 +01001# Process which creates/updates shared RELRO files to be used by other apps.
2type shared_relro, domain;
3
4# The shared relro process is a Java program forked from the zygote, so it
5# inherits from app to get basic permissions it needs to run.
6app_domain(shared_relro)
7
8# Grant write access to the shared relro files/directory.
9allow shared_relro shared_relro_file:dir rw_dir_perms;
10allow shared_relro shared_relro_file:file create_file_perms;
Nick Kralevichb5ffbb72015-01-07 13:52:43 -080011
12# Needs to contact the "webviewupdate" and "activity" services
dcashmanbd7f5802015-04-08 15:12:24 -070013allow shared_relro webviewupdate_service:service_manager find;