From 957983787d7a753d34b582ae0165160f4ebf815c Mon Sep 17 00:00:00 2001 From: Robert Craig Date: Thu, 4 Apr 2013 06:33:10 -0400 Subject: dumpstate: Add SELinux restorecon call. Set the security context on the directory used to dump Dalvik and native stack traces. Change-Id: Iba13783f10e850485ce1a8d4aa5792d55085eb22 Signed-off-by: Robert Craig --- cmds/dumpstate/Android.mk | 2 +- cmds/dumpstate/utils.c | 5 +++++ 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/cmds/dumpstate/Android.mk b/cmds/dumpstate/Android.mk index 18685f7250..86409833fe 100644 --- a/cmds/dumpstate/Android.mk +++ b/cmds/dumpstate/Android.mk @@ -9,7 +9,7 @@ LOCAL_SRC_FILES := dumpstate.c utils.c LOCAL_MODULE := dumpstate -LOCAL_SHARED_LIBRARIES := libcutils +LOCAL_SHARED_LIBRARIES := libcutils libselinux ifdef BOARD_LIB_DUMPSTATE LOCAL_STATIC_LIBRARIES := $(BOARD_LIB_DUMPSTATE) diff --git a/cmds/dumpstate/utils.c b/cmds/dumpstate/utils.c index eaef3d4747..5b8ed49e63 100644 --- a/cmds/dumpstate/utils.c +++ b/cmds/dumpstate/utils.c @@ -38,6 +38,8 @@ #include #include +#include + #include "dumpstate.h" /* list of native processes to include in the native dumps */ @@ -402,6 +404,9 @@ const char *dump_traces() { if (!mkdir(anr_traces_dir, 0775)) { chown(anr_traces_dir, AID_SYSTEM, AID_SYSTEM); chmod(anr_traces_dir, 0775); + if (selinux_android_restorecon(anr_traces_dir) == -1) { + fprintf(stderr, "restorecon failed for %s: %s\n", anr_traces_dir, strerror(errno)); + } } else if (errno != EEXIST) { fprintf(stderr, "mkdir(%s): %s\n", anr_traces_dir, strerror(errno)); return NULL; -- cgit v1.2.3