-
Notifications
You must be signed in to change notification settings - Fork 99
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add sepolicy for dm backend app #334
Open
chenyanxzhu
wants to merge
1
commit into
projectceladon:celadon/u/mr0/master
Choose a base branch
from
chenyanxzhu:umr0_dm_backend
base: celadon/u/mr0/master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
type dm_backend_client_app, domain; | ||
|
||
app_domain(dm_backend_client_app) | ||
net_domain(dm_backend_client_app) | ||
|
||
#============= dm_backend_client_app ============== | ||
allow dm_backend_client_app dm_backend_app_data_file:dir create_dir_perms; | ||
allow dm_backend_client_app dm_backend_app_data_file:file create_file_perms; | ||
allow dm_backend_client_app dm_disp_socket:sock_file { write read open }; | ||
|
||
allow dm_backend_client_app activity_service:service_manager find; | ||
allow dm_backend_client_app activity_task_service:service_manager find; | ||
allow dm_backend_client_app content_capture_service:service_manager find; | ||
allow dm_backend_client_app game_service:service_manager find; | ||
allow dm_backend_client_app gpu_service:service_manager find; | ||
allow dm_backend_client_app netstats_service:service_manager find; | ||
allow dm_backend_client_app surfaceflinger_service:service_manager find; | ||
allow dm_backend_client_app sysfs_gpu:dir search; | ||
allow dm_backend_client_app vendor_intel_render_selection_prop:file open; | ||
allow dm_backend_client_app virtual_device_service:service_manager find; | ||
allow dm_backend_client_app voiceinteraction_service:service_manager find; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
type dm_backend_server, domain, mlstrustedsubject; | ||
type dm_backend_server_exec, exec_type, file_type, vendor_file_type; | ||
|
||
init_daemon_domain(dm_backend_server) | ||
|
||
allow dm_backend_server socket_device:dir { add_name remove_name search write }; | ||
allow dm_backend_server dm_disp_socket:sock_file { create write getattr unlink read open }; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
type dm_backend_app_data_file, file_type, data_file_type, app_data_file_type; | ||
type dm_disp_socket, file_type; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
/system/bin/dm-backend u:object_r:dm_backend_server_exec:s0 | ||
/system/bin/acrn-bkend-server u:object_r:dm_backend_server_exec:s0 | ||
/dev/socket/dm_display_server u:object_r:dm_disp_socket:s0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
user=_app seinfo=platform name=com.intel.dm_backend domain=dm_backend_client_app type=dm_backend_app_data_file |
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
don't assign a vendor file type to file in system partition