Skip to content
Snippets Groups Projects
Commit d7e004eb authored by Nick Kralevich's avatar Nick Kralevich Committed by Iliyan Malchev
Browse files

allow coredump functionality

Change-Id: I7993698ac96f21db0039681275280dbd43ff61ba
parent f7ccfd00
No related branches found
No related tags found
No related merge requests found
...@@ -59,6 +59,10 @@ userdebug_or_eng(` ...@@ -59,6 +59,10 @@ userdebug_or_eng(`
# allow "gdbserver --attach" to work for su. # allow "gdbserver --attach" to work for su.
allow domain su:process sigchld; allow domain su:process sigchld;
# Allow writing coredumps to /cores/*
allow domain coredump_file:file create_file_perms;
allow domain coredump_file:dir ra_dir_perms;
') ')
### ###
......
...@@ -43,6 +43,8 @@ type usbfs, fs_type; ...@@ -43,6 +43,8 @@ type usbfs, fs_type;
type unlabeled, file_type; type unlabeled, file_type;
# Default type for anything under /system. # Default type for anything under /system.
type system_file, file_type; type system_file, file_type;
# /cores for coredumps on userdebug / eng builds
type coredump_file, file_type;
# Default type for anything under /data. # Default type for anything under /data.
type system_data_file, file_type, data_file_type; type system_data_file, file_type, data_file_type;
# /data/.layout_version or other installd-created files that # /data/.layout_version or other installd-created files that
......
...@@ -218,6 +218,9 @@ ...@@ -218,6 +218,9 @@
/data/misc/wifi/hostapd(/.*)? u:object_r:wpa_socket:s0 /data/misc/wifi/hostapd(/.*)? u:object_r:wpa_socket:s0
/data/misc/zoneinfo(/.*)? u:object_r:zoneinfo_data_file:s0 /data/misc/zoneinfo(/.*)? u:object_r:zoneinfo_data_file:s0
# coredump directory for userdebug/eng devices
/cores(/.*)? u:object_r:coredump_file:s0
# Wallpaper file for other users # Wallpaper file for other users
/data/system/users/[0-9]+/wallpaper u:object_r:wallpaper_file:s0 /data/system/users/[0-9]+/wallpaper u:object_r:wallpaper_file:s0
############################# #############################
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment