Merge change 2336 into donut
* changes: dumpstate: Add to AID_SDCARD_RW group to fix saving bugreports to the SD card.
This commit is contained in:
@@ -165,6 +165,7 @@ int main(int argc, char *argv[]) {
|
|||||||
int c, fd, vibrate_fd, fds[2];
|
int c, fd, vibrate_fd, fds[2];
|
||||||
char path[PATH_MAX];
|
char path[PATH_MAX];
|
||||||
pid_t pid;
|
pid_t pid;
|
||||||
|
gid_t groups[] = { AID_LOG, AID_SDCARD_RW };
|
||||||
|
|
||||||
/* set as high priority, and protect from OOM killer */
|
/* set as high priority, and protect from OOM killer */
|
||||||
setpriority(PRIO_PROCESS, 0, -20);
|
setpriority(PRIO_PROCESS, 0, -20);
|
||||||
@@ -207,7 +208,7 @@ int main(int argc, char *argv[]) {
|
|||||||
vibrate_fd = -1;
|
vibrate_fd = -1;
|
||||||
|
|
||||||
/* switch to non-root user and group */
|
/* switch to non-root user and group */
|
||||||
setgid(AID_LOG);
|
setgroups(sizeof(groups)/sizeof(groups[0]), groups);
|
||||||
setuid(AID_SHELL);
|
setuid(AID_SHELL);
|
||||||
|
|
||||||
/* make it safe to use both printf and STDOUT_FILENO */
|
/* make it safe to use both printf and STDOUT_FILENO */
|
||||||
|
|||||||
Reference in New Issue
Block a user