Skip to content
Snippets Groups Projects
Select Git revision
  • 0e2d57fd50f61e668be3180bc8f25991ea88aa8c
  • passt default
  • master
  • pu
  • todo
  • next
  • maint
  • v2.8.0-rc1
  • v2.8.0-rc0
  • v2.7.2
  • v2.7.1
  • v2.7.0
  • v2.6.5
  • v2.7.0-rc3
  • v2.7.0-rc2
  • v2.7.0-rc1
  • v2.7.0-rc0
  • v2.6.4
  • v2.6.3
  • v2.6.2
  • v2.6.1
  • v2.3.10
  • v2.5.4
  • v2.4.10
  • v2.6.0
  • v2.6.0-rc3
  • v2.5.3
27 results

cache.h

Blame
  • shared_relro.te 793 B
    # Process which creates/updates shared RELRO files to be used by other apps.
    type shared_relro, domain;
    
    # The shared relro process is a Java program forked from the zygote, so it
    # inherits from app to get basic permissions it needs to run.
    app_domain(shared_relro)
    
    # Grant write access to the shared relro files/directory.
    allow shared_relro shared_relro_file:dir rw_dir_perms;
    allow shared_relro shared_relro_file:file create_file_perms;
    
    # Needs to contact the "webviewupdate" and "activity" services
    allow shared_relro system_server_service:service_manager find;
    allow shared_relro tmp_system_server_service:service_manager find;
    
    service_manager_local_audit_domain(shared_relro)
    auditallow shared_relro {
        tmp_system_server_service
        -webviewupdate_service
    }:service_manager find;