blob: bbb49511a8058c5fe4ca52f6032a2a8b8d169fe2 [file] [log] [blame]
Torne (Richard Coles)08cfaf62014-05-08 16:07:05 +01001/*
2 * Copyright (C) 2012 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17package com.android.server.webkit;
18
Ben Murdochdc00a842014-07-17 14:55:00 +010019import android.content.BroadcastReceiver;
20import android.content.Context;
21import android.content.Intent;
22import android.content.IntentFilter;
Gustav Sennton6258dcd2015-10-30 19:25:37 +000023import android.content.pm.PackageManager;
Torne (Richard Coles)08cfaf62014-05-08 16:07:05 +010024import android.os.Binder;
Gustav Senntonc83e3fa2016-02-18 12:19:13 +000025import android.os.PatternMatcher;
Torne (Richard Coles)08cfaf62014-05-08 16:07:05 +010026import android.os.Process;
Gustav Senntonc83e3fa2016-02-18 12:19:13 +000027import android.os.ResultReceiver;
Gustav Sennton23875b22016-02-09 14:11:33 +000028import android.os.UserHandle;
Primiano Tucci810c0522014-07-25 18:03:16 +010029import android.util.Slog;
Torne (Richard Coles)08cfaf62014-05-08 16:07:05 +010030import android.webkit.IWebViewUpdateService;
Gustav Sennton8b179262016-03-14 11:31:14 +000031import android.webkit.WebViewFactory;
Gustav Sennton6258dcd2015-10-30 19:25:37 +000032import android.webkit.WebViewProviderInfo;
33import android.webkit.WebViewProviderResponse;
Torne (Richard Coles)08cfaf62014-05-08 16:07:05 +010034
Torne (Richard Coles)4dbeb352014-07-29 19:14:24 +010035import com.android.server.SystemService;
36
Gustav Senntonc83e3fa2016-02-18 12:19:13 +000037import java.io.FileDescriptor;
Gustav Sennton6258dcd2015-10-30 19:25:37 +000038import java.util.Arrays;
Gustav Sennton6258dcd2015-10-30 19:25:37 +000039
Torne (Richard Coles)08cfaf62014-05-08 16:07:05 +010040/**
41 * Private service to wait for the updatable WebView to be ready for use.
42 * @hide
43 */
Torne (Richard Coles)4dbeb352014-07-29 19:14:24 +010044public class WebViewUpdateService extends SystemService {
Torne (Richard Coles)08cfaf62014-05-08 16:07:05 +010045
46 private static final String TAG = "WebViewUpdateService";
Gustav Sennton6ce92c92015-10-23 11:10:39 +010047
Ben Murdochdc00a842014-07-17 14:55:00 +010048 private BroadcastReceiver mWebViewUpdatedReceiver;
Gustav Sennton79fea482016-04-07 14:22:56 +010049 private WebViewUpdateServiceImpl mImpl;
Ben Murdochdc00a842014-07-17 14:55:00 +010050
Gustav Sennton3a6e6b22016-04-05 14:09:09 +010051 static final int PACKAGE_CHANGED = 0;
52 static final int PACKAGE_ADDED = 1;
53 static final int PACKAGE_ADDED_REPLACED = 2;
54 static final int PACKAGE_REMOVED = 3;
55
Ben Murdochdc00a842014-07-17 14:55:00 +010056 public WebViewUpdateService(Context context) {
Torne (Richard Coles)4dbeb352014-07-29 19:14:24 +010057 super(context);
Gustav Sennton79fea482016-04-07 14:22:56 +010058 mImpl = new WebViewUpdateServiceImpl(context, new SystemImpl());
Torne (Richard Coles)4dbeb352014-07-29 19:14:24 +010059 }
60
61 @Override
62 public void onStart() {
Ben Murdochdc00a842014-07-17 14:55:00 +010063 mWebViewUpdatedReceiver = new BroadcastReceiver() {
64 @Override
65 public void onReceive(Context context, Intent intent) {
Gustav Sennton3a6e6b22016-04-05 14:09:09 +010066 switch (intent.getAction()) {
67 case Intent.ACTION_PACKAGE_REMOVED:
68 // When a package is replaced we will receive two intents, one
69 // representing the removal of the old package and one representing the
70 // addition of the new package.
71 // In the case where we receive an intent to remove the old version of
72 // the package that is being replaced we early-out here so that we don't
73 // run the update-logic twice.
74 if (intent.getExtras().getBoolean(Intent.EXTRA_REPLACING)) return;
Gustav Sennton79fea482016-04-07 14:22:56 +010075 mImpl.packageStateChanged(packageNameFromIntent(intent),
76 PACKAGE_REMOVED);
Gustav Sennton3a6e6b22016-04-05 14:09:09 +010077 break;
78 case Intent.ACTION_PACKAGE_CHANGED:
79 // Ensure that we only heed PACKAGE_CHANGED intents if they change an
80 // entire package, not just a component
81 if (entirePackageChanged(intent)) {
Gustav Sennton79fea482016-04-07 14:22:56 +010082 mImpl.packageStateChanged(packageNameFromIntent(intent),
83 PACKAGE_CHANGED);
Gustav Sennton6258dcd2015-10-30 19:25:37 +000084 }
Gustav Sennton3a6e6b22016-04-05 14:09:09 +010085 break;
86 case Intent.ACTION_PACKAGE_ADDED:
Gustav Sennton79fea482016-04-07 14:22:56 +010087 mImpl.packageStateChanged(packageNameFromIntent(intent),
Gustav Sennton3a6e6b22016-04-05 14:09:09 +010088 (intent.getExtras().getBoolean(Intent.EXTRA_REPLACING)
89 ? PACKAGE_ADDED_REPLACED : PACKAGE_ADDED));
90 break;
91 case Intent.ACTION_USER_ADDED:
92 int userId =
93 intent.getIntExtra(Intent.EXTRA_USER_HANDLE, UserHandle.USER_NULL);
Gustav Sennton79fea482016-04-07 14:22:56 +010094 mImpl.handleNewUser(userId);
Gustav Sennton3a6e6b22016-04-05 14:09:09 +010095 break;
Ben Murdochdc00a842014-07-17 14:55:00 +010096 }
97 }
98 };
99 IntentFilter filter = new IntentFilter();
Gustav Sennton3098cf22015-11-10 03:33:09 +0000100 filter.addAction(Intent.ACTION_PACKAGE_ADDED);
101 filter.addAction(Intent.ACTION_PACKAGE_REMOVED);
Gustav Senntonc83e3fa2016-02-18 12:19:13 +0000102 filter.addAction(Intent.ACTION_PACKAGE_CHANGED);
Ben Murdochdc00a842014-07-17 14:55:00 +0100103 filter.addDataScheme("package");
Gustav Senntonc83e3fa2016-02-18 12:19:13 +0000104 // Make sure we only receive intents for WebView packages from our config file.
Gustav Sennton79fea482016-04-07 14:22:56 +0100105 for (WebViewProviderInfo provider : mImpl.getWebViewPackages()) {
Gustav Senntonc83e3fa2016-02-18 12:19:13 +0000106 filter.addDataSchemeSpecificPart(provider.packageName, PatternMatcher.PATTERN_LITERAL);
107 }
Torne (Richard Coles)4dbeb352014-07-29 19:14:24 +0100108 getContext().registerReceiver(mWebViewUpdatedReceiver, filter);
Torne (Richard Coles)08cfaf62014-05-08 16:07:05 +0100109
Gustav Senntonc83e3fa2016-02-18 12:19:13 +0000110 IntentFilter userAddedFilter = new IntentFilter();
111 userAddedFilter.addAction(Intent.ACTION_USER_ADDED);
112 getContext().registerReceiver(mWebViewUpdatedReceiver, userAddedFilter);
113
Torne (Richard Coles)fc19b0a2016-02-01 16:16:57 +0000114 publishBinderService("webviewupdate", new BinderService(), true /*allowIsolated*/);
Torne (Richard Coles)08cfaf62014-05-08 16:07:05 +0100115 }
Ben Murdochdc00a842014-07-17 14:55:00 +0100116
Gustav Sennton3a6e6b22016-04-05 14:09:09 +0100117 public void prepareWebViewInSystemServer() {
Gustav Sennton79fea482016-04-07 14:22:56 +0100118 mImpl.prepareWebViewInSystemServer();
Gustav Sennton3a6e6b22016-04-05 14:09:09 +0100119 }
120
121 private static String packageNameFromIntent(Intent intent) {
122 return intent.getDataString().substring("package:".length());
123 }
124
Gustav Sennton065b7e62016-04-01 15:11:43 +0100125 /**
126 * Returns whether the entire package from an ACTION_PACKAGE_CHANGED intent was changed (rather
127 * than just one of its components).
128 * @hide
129 */
130 public static boolean entirePackageChanged(Intent intent) {
131 String[] componentList =
132 intent.getStringArrayExtra(Intent.EXTRA_CHANGED_COMPONENT_NAME_LIST);
133 return Arrays.asList(componentList).contains(
134 intent.getDataString().substring("package:".length()));
Gustav Senntondbf5eb02016-03-30 14:53:03 +0100135 }
136
Torne (Richard Coles)4dbeb352014-07-29 19:14:24 +0100137 private class BinderService extends IWebViewUpdateService.Stub {
138
Gustav Senntonc83e3fa2016-02-18 12:19:13 +0000139 @Override
140 public void onShellCommand(FileDescriptor in, FileDescriptor out,
141 FileDescriptor err, String[] args, ResultReceiver resultReceiver) {
142 (new WebViewUpdateServiceShellCommand(this)).exec(
143 this, in, out, err, args, resultReceiver);
144 }
145
146
Torne (Richard Coles)4dbeb352014-07-29 19:14:24 +0100147 /**
148 * The shared relro process calls this to notify us that it's done trying to create a relro
149 * file. This method gets called even if the relro creation has failed or the process
150 * crashed.
151 */
152 @Override // Binder call
Gustav Sennton6258dcd2015-10-30 19:25:37 +0000153 public void notifyRelroCreationCompleted() {
Torne (Richard Coles)4dbeb352014-07-29 19:14:24 +0100154 // Verify that the caller is either the shared relro process (nominal case) or the
155 // system server (only in the case the relro process crashes and we get here via the
156 // crashHandler).
157 if (Binder.getCallingUid() != Process.SHARED_RELRO_UID &&
158 Binder.getCallingUid() != Process.SYSTEM_UID) {
159 return;
160 }
161
Gustav Sennton275d13c2016-02-24 10:58:09 +0000162 long callingId = Binder.clearCallingIdentity();
163 try {
Gustav Sennton79fea482016-04-07 14:22:56 +0100164 WebViewUpdateService.this.mImpl.notifyRelroCreationCompleted();
Gustav Sennton275d13c2016-02-24 10:58:09 +0000165 } finally {
166 Binder.restoreCallingIdentity(callingId);
Torne (Richard Coles)4dbeb352014-07-29 19:14:24 +0100167 }
168 }
169
170 /**
171 * WebViewFactory calls this to block WebView loading until the relro file is created.
Gustav Sennton6258dcd2015-10-30 19:25:37 +0000172 * Returns the WebView provider for which we create relro files.
Torne (Richard Coles)4dbeb352014-07-29 19:14:24 +0100173 */
174 @Override // Binder call
Gustav Sennton6258dcd2015-10-30 19:25:37 +0000175 public WebViewProviderResponse waitForAndGetProvider() {
Primiano Tuccie76e81a2014-07-29 16:38:33 +0100176 // The WebViewUpdateService depends on the prepareWebViewInSystemServer call, which
177 // happens later (during the PHASE_ACTIVITY_MANAGER_READY) in SystemServer.java. If
178 // another service there tries to bring up a WebView in the between, the wait below
179 // would deadlock without the check below.
180 if (Binder.getCallingPid() == Process.myPid()) {
181 throw new IllegalStateException("Cannot create a WebView from the SystemServer");
Torne (Richard Coles)4dbeb352014-07-29 19:14:24 +0100182 }
183
Gustav Sennton79fea482016-04-07 14:22:56 +0100184 return WebViewUpdateService.this.mImpl.waitForAndGetProvider();
Gustav Sennton6258dcd2015-10-30 19:25:37 +0000185 }
186
187 /**
188 * This is called from DeveloperSettings when the user changes WebView provider.
189 */
190 @Override // Binder call
Gustav Senntonc83e3fa2016-02-18 12:19:13 +0000191 public String changeProviderAndSetting(String newProvider) {
Gustav Sennton6258dcd2015-10-30 19:25:37 +0000192 if (getContext().checkCallingPermission(
193 android.Manifest.permission.WRITE_SECURE_SETTINGS)
194 != PackageManager.PERMISSION_GRANTED) {
195 String msg = "Permission Denial: changeProviderAndSetting() from pid="
196 + Binder.getCallingPid()
197 + ", uid=" + Binder.getCallingUid()
198 + " requires " + android.Manifest.permission.WRITE_SECURE_SETTINGS;
199 Slog.w(TAG, msg);
200 throw new SecurityException(msg);
201 }
202
Gustav Senntonab3b6b12016-03-16 17:38:42 +0000203 long callingId = Binder.clearCallingIdentity();
204 try {
Gustav Sennton79fea482016-04-07 14:22:56 +0100205 return WebViewUpdateService.this.mImpl.changeProviderAndSetting(
Gustav Sennton3a6e6b22016-04-05 14:09:09 +0100206 newProvider);
Gustav Senntonab3b6b12016-03-16 17:38:42 +0000207 } finally {
208 Binder.restoreCallingIdentity(callingId);
209 }
Gustav Sennton6258dcd2015-10-30 19:25:37 +0000210 }
211
212 @Override // Binder call
213 public WebViewProviderInfo[] getValidWebViewPackages() {
Gustav Sennton79fea482016-04-07 14:22:56 +0100214 return WebViewUpdateService.this.mImpl.getValidWebViewPackages();
Gustav Sennton6258dcd2015-10-30 19:25:37 +0000215 }
216
217 @Override // Binder call
Gustav Sennton8b179262016-03-14 11:31:14 +0000218 public WebViewProviderInfo[] getAllWebViewPackages() {
Gustav Sennton79fea482016-04-07 14:22:56 +0100219 return WebViewUpdateService.this.mImpl.getWebViewPackages();
Gustav Sennton8b179262016-03-14 11:31:14 +0000220 }
221
222 @Override // Binder call
Gustav Sennton6258dcd2015-10-30 19:25:37 +0000223 public String getCurrentWebViewPackageName() {
Gustav Sennton79fea482016-04-07 14:22:56 +0100224 return WebViewUpdateService.this.mImpl.getCurrentWebViewPackageName();
Torne (Richard Coles)4dbeb352014-07-29 19:14:24 +0100225 }
Gustav Senntonc83e3fa2016-02-18 12:19:13 +0000226
227 @Override // Binder call
228 public boolean isFallbackPackage(String packageName) {
Gustav Sennton79fea482016-04-07 14:22:56 +0100229 return WebViewUpdateService.this.mImpl.isFallbackPackage(packageName);
Gustav Senntonc83e3fa2016-02-18 12:19:13 +0000230 }
231
232 @Override // Binder call
233 public void enableFallbackLogic(boolean enable) {
234 if (getContext().checkCallingPermission(
235 android.Manifest.permission.WRITE_SECURE_SETTINGS)
236 != PackageManager.PERMISSION_GRANTED) {
237 String msg = "Permission Denial: enableFallbackLogic() from pid="
238 + Binder.getCallingPid()
239 + ", uid=" + Binder.getCallingUid()
240 + " requires " + android.Manifest.permission.WRITE_SECURE_SETTINGS;
241 Slog.w(TAG, msg);
242 throw new SecurityException(msg);
243 }
244
Gustav Sennton6824c7c2016-04-04 14:07:23 +0100245 long callingId = Binder.clearCallingIdentity();
246 try {
247 WebViewUpdateService.this.mImpl.enableFallbackLogic(enable);
248 } finally {
249 Binder.restoreCallingIdentity(callingId);
250 }
Gustav Senntonc83e3fa2016-02-18 12:19:13 +0000251 }
Torne (Richard Coles)4dbeb352014-07-29 19:14:24 +0100252 }
Torne (Richard Coles)08cfaf62014-05-08 16:07:05 +0100253}