606d2fd665
Introduce the add_service() macro which wraps up add/find permissions for the source domain with a neverallow preventing others from adding it. Only a particular domain should add a particular service. Use the add_service() macro to automatically add a neverallow that prevents other domains from adding the service. mediadrmserver was adding services labeled mediaserver_service. Drop the add permission as it should just need the find permission. Additionally, the macro adds the { add find } permission which causes some existing neverallow's to assert. Adjust those neverallow's so "self" can always find. Test: compile and run on hikey and emulator. No new denials were found, and all services, where applicable, seem to be running OK. Change-Id: Ibbd2a5304edd5f8b877bc86852b0694732be993c Signed-off-by: William Roberts <william.c.roberts@intel.com>
30 lines
1 KiB
Text
30 lines
1 KiB
Text
# mediacodec - audio and video codecs live here
|
|
type mediacodec, domain;
|
|
type mediacodec_exec, exec_type, file_type;
|
|
|
|
typeattribute mediacodec mlstrustedsubject;
|
|
|
|
binder_use(mediacodec)
|
|
binder_call(mediacodec, binderservicedomain)
|
|
binder_call(mediacodec, appdomain)
|
|
binder_service(mediacodec)
|
|
|
|
add_service(mediacodec, mediacodec_service)
|
|
allow mediacodec mediametrics_service:service_manager find;
|
|
allow mediacodec surfaceflinger_service:service_manager find;
|
|
allow mediacodec gpu_device:chr_file rw_file_perms;
|
|
allow mediacodec video_device:chr_file rw_file_perms;
|
|
allow mediacodec video_device:dir search;
|
|
allow mediacodec ion_device:chr_file rw_file_perms;
|
|
allow mediacodec hal_graphics_allocator:fd use;
|
|
|
|
###
|
|
### neverallow rules
|
|
###
|
|
|
|
# mediacodec should never execute any executable without a
|
|
# domain transition
|
|
neverallow mediacodec { file_type fs_type }:file execute_no_trans;
|
|
|
|
# mediacodec should never need network access. Disallow network sockets.
|
|
neverallow mediacodec domain:{ tcp_socket udp_socket rawip_socket } *;
|