Use new app preload path for WebView zygote.

In the "common" case where the WebView stub is not being used, have the
WebView zygote use the new APK preload path added for the app zygote,
which avoids duplicating logic from the framework to construct the
classpath. This allows the WebView implementation to use a static shared
library, which was not previously possible.

The old codepath is retained for now to keep the WebView stub working
when it's in use, as it requires the special mechanism to override the
classloader cache key, but this can be removed when we no longer require
the stub.

Bug: 110790153
Test: Manual verification of classloader cache state
Change-Id: Ie49e5810d570bae7bec0341753e6c50d081189b5
This commit is contained in:
Torne (Richard Coles)
2019-01-14 15:58:39 -05:00
parent 070aba8e54
commit e032061ddb
2 changed files with 69 additions and 34 deletions

View File

@@ -17,8 +17,9 @@
package com.android.internal.os;
import android.app.ApplicationLoaders;
import android.app.LoadedApk;
import android.content.pm.ApplicationInfo;
import android.net.LocalSocket;
import android.os.Build;
import android.text.TextUtils;
import android.util.Log;
import android.webkit.WebViewFactory;
@@ -65,6 +66,34 @@ class WebViewZygoteInit {
return true;
}
@Override
protected boolean canPreloadApp() {
return true;
}
@Override
protected void handlePreloadApp(ApplicationInfo appInfo) {
Log.i(TAG, "Beginning application preload for " + appInfo.packageName);
LoadedApk loadedApk = new LoadedApk(null, appInfo, null, null, false, true, false);
ClassLoader loader = loadedApk.getClassLoader();
doPreload(loader, WebViewFactory.getWebViewLibrary(appInfo));
// Add the APK to the Zygote's list of allowed files for children.
Zygote.nativeAllowFileAcrossFork(appInfo.sourceDir);
if (appInfo.splitSourceDirs != null) {
for (String path : appInfo.splitSourceDirs) {
Zygote.nativeAllowFileAcrossFork(path);
}
}
if (appInfo.sharedLibraryFiles != null) {
for (String path : appInfo.sharedLibraryFiles) {
Zygote.nativeAllowFileAcrossFork(path);
}
}
Log.i(TAG, "Application preload done");
}
@Override
protected void handlePreloadPackage(String packagePath, String libsPath, String libFileName,
String cacheKey) {
@@ -76,16 +105,22 @@ class WebViewZygoteInit {
ClassLoader loader = ApplicationLoaders.getDefault().createAndCacheWebViewClassLoader(
packagePath, libsPath, cacheKey);
// Load the native library using WebViewLibraryLoader to share the RELRO data with other
// processes.
WebViewLibraryLoader.loadNativeLibrary(loader, libFileName);
// Add the APK to the Zygote's list of allowed files for children.
String[] packageList = TextUtils.split(packagePath, File.pathSeparator);
for (String packageEntry : packageList) {
Zygote.nativeAllowFileAcrossFork(packageEntry);
}
doPreload(loader, libFileName);
Log.i(TAG, "Package preload done");
}
private void doPreload(ClassLoader loader, String libFileName) {
// Load the native library using WebViewLibraryLoader to share the RELRO data with other
// processes.
WebViewLibraryLoader.loadNativeLibrary(loader, libFileName);
// Once we have the classloader, look up the WebViewFactoryProvider implementation and
// call preloadInZygote() on it to give it the opportunity to preload the native library
// and perform any other initialisation work that should be shared among the children.
@@ -114,8 +149,6 @@ class WebViewZygoteInit {
} catch (IOException ioe) {
throw new IllegalStateException("Error writing to command socket", ioe);
}
Log.i(TAG, "Package preload done");
}
}