relax /system/bin directory permissions
In commitf4fc922f0b
, we tightened the permissions on various bin directories. Please see https://android-review.googlesource.com/c/platform/system/core/+/822955 for details. This change causes the Chase banking app to crash. This is because the Chase app is using inotify_add_watch() on the /system/bin directory and not checking the return value. The Android Security model guarantees the immutability of files in /system/bin, so the inotify watch is unnecessary. Until the Chase app fixes their bug, we need to relax the permissions on the /system/bin directory. Conceptually, this is a partial revert off4fc922f0b
. Bug: 119605322 Test: compiles Change-Id: Ic72dd24cb27cff677093963bdfd0ae09bf132e08
This commit is contained in:
parent
41216e591b
commit
53842f8a90
1 changed files with 1 additions and 1 deletions
|
@ -84,7 +84,7 @@ static const struct fs_path_config android_dirs[] = {
|
|||
{ 00750, AID_ROOT, AID_SHELL, 0, "sbin" },
|
||||
{ 00777, AID_ROOT, AID_ROOT, 0, "sdcard" },
|
||||
{ 00751, AID_ROOT, AID_SDCARD_R, 0, "storage" },
|
||||
{ 00751, AID_ROOT, AID_SHELL, 0, "system/bin" },
|
||||
{ 00755, AID_ROOT, AID_SHELL, 0, "system/bin" },
|
||||
{ 00755, AID_ROOT, AID_ROOT, 0, "system/etc/ppp" },
|
||||
{ 00755, AID_ROOT, AID_SHELL, 0, "system/vendor" },
|
||||
{ 00751, AID_ROOT, AID_SHELL, 0, "system/xbin" },
|
||||
|
|
Loading…
Reference in a new issue