Skip to content
Snippets Groups Projects
nfc.te 1.18 KiB
Newer Older
  • Learn to ignore specific revisions
  • Stephen Smalley's avatar
    Stephen Smalley committed
    # nfc subsystem
    
    type nfc, domain, domain_deprecated;
    
    Stephen Smalley's avatar
    Stephen Smalley committed
    app_domain(nfc)
    
    binder_service(nfc)
    
    # Set NFC properties
    
    # NFC device access.
    allow nfc nfc_device:chr_file rw_file_perms;
    
    # Data file accesses.
    allow nfc nfc_data_file:dir create_dir_perms;
    allow nfc nfc_data_file:notdevfile_class_set create_file_perms;
    
    allow nfc sysfs_nfc_power_writable:file rw_file_perms;
    allow nfc sysfs:file write;
    
    # TODO: added to match above sysfs rule. Remove me?
    allow nfc sysfs_usb:file write;
    
    
    # SoundPool loading and playback
    
    allow nfc mediaserver_service:service_manager find;
    
    allow nfc audioserver_service:service_manager find;
    
    allow nfc mediaextractor_service:service_manager find;
    
    allow nfc mediacodec_service:service_manager find;
    
    allow nfc nfc_service:service_manager { add find };
    allow nfc radio_service:service_manager find;
    
    allow nfc surfaceflinger_service:service_manager find;
    
    allow nfc app_api_service:service_manager find;
    allow nfc system_api_service:service_manager find;
    
    # already open bugreport file descriptors may be shared with
    # the nfc process, from a file in
    # /data/data/com.android.shell/files/bugreports/bugreport-*.
    allow nfc shell_data_file:file read;