From 84e8a3811f0c89a4a6c7cd1c3ea5927fd1259e26 Mon Sep 17 00:00:00 2001 From: Robert Sesek Date: Tue, 13 Feb 2018 14:22:22 -0500 Subject: [PATCH] Remove fs_config entries for webview_zygote. This process is now spawned from the main app_process zygote, rather than being its own binary launched by init. Bug: 63749735 Test: m Change-Id: I87e00197e1ce64d77b4c306fcd702c6ad778b236 --- libcutils/fs_config.cpp | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/libcutils/fs_config.cpp b/libcutils/fs_config.cpp index a993d411c..5ea981f7d 100644 --- a/libcutils/fs_config.cpp +++ b/libcutils/fs_config.cpp @@ -202,16 +202,6 @@ static const struct fs_path_config android_files[] = { CAP_MASK_LONG(CAP_NET_RAW), "vendor/bin/hw/android.hardware.wifi@1.0-service" }, - // A non-privileged zygote that spawns isolated processes for web rendering. - { 0750, AID_ROOT, AID_ROOT, CAP_MASK_LONG(CAP_SETUID) | - CAP_MASK_LONG(CAP_SETGID) | - CAP_MASK_LONG(CAP_SETPCAP), - "system/bin/webview_zygote32" }, - { 0750, AID_ROOT, AID_ROOT, CAP_MASK_LONG(CAP_SETUID) | - CAP_MASK_LONG(CAP_SETGID) | - CAP_MASK_LONG(CAP_SETPCAP), - "system/bin/webview_zygote64" }, - // generic defaults { 00755, AID_ROOT, AID_ROOT, 0, "bin/*" }, { 00640, AID_ROOT, AID_SHELL, 0, "fstab.*" },