Home | History | Annotate | Download | only in sepolicy
      1 type atfwd, domain;
      2 type atfwd_exec, exec_type, file_type;
      3 
      4 # Started by init
      5 init_daemon_domain(atfwd)
      6 
      7 # Creates/Talks to qmuxd via the qmux_radio socket.
      8 allow atfwd qmuxd_socket:dir rw_dir_perms;
      9 allow atfwd qmuxd_socket:sock_file create_file_perms;
     10 allow atfwd qmux:unix_stream_socket connectto;
     11 
     12 #Allow IPC binding with ServiceManager & System apps
     13 binder_use(atfwd);
     14 binder_call(atfwd, system_app);
     15 binder_call(atfwd, servicemanager);
     16 
     17 allow atfwd atfwd_service:service_manager find;
     18