blob: 43cdf597806859bb2521359f50374be01de57236 [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;
Dianne Hackborn354736e2016-08-22 17:00:05 -070028import android.os.ShellCallback;
Gustav Sennton23875b22016-02-09 14:11:33 +000029import android.os.UserHandle;
Primiano Tucci810c0522014-07-25 18:03:16 +010030import android.util.Slog;
Torne (Richard Coles)08cfaf62014-05-08 16:07:05 +010031import android.webkit.IWebViewUpdateService;
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);
Hui Shu9455bd02016-04-08 13:25:26 -070058 mImpl = new WebViewUpdateServiceImpl(context, SystemImpl.getInstance());
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 Sennton0df2c552016-06-14 15:32:19 +010066 int userId = intent.getIntExtra(Intent.EXTRA_USER_HANDLE, UserHandle.USER_NULL);
Gustav Sennton3a6e6b22016-04-05 14:09:09 +010067 switch (intent.getAction()) {
68 case Intent.ACTION_PACKAGE_REMOVED:
69 // When a package is replaced we will receive two intents, one
70 // representing the removal of the old package and one representing the
71 // addition of the new package.
72 // In the case where we receive an intent to remove the old version of
73 // the package that is being replaced we early-out here so that we don't
74 // run the update-logic twice.
75 if (intent.getExtras().getBoolean(Intent.EXTRA_REPLACING)) return;
Gustav Sennton79fea482016-04-07 14:22:56 +010076 mImpl.packageStateChanged(packageNameFromIntent(intent),
Gustav Sennton0df2c552016-06-14 15:32:19 +010077 PACKAGE_REMOVED, userId);
Gustav Sennton3a6e6b22016-04-05 14:09:09 +010078 break;
79 case Intent.ACTION_PACKAGE_CHANGED:
80 // Ensure that we only heed PACKAGE_CHANGED intents if they change an
81 // entire package, not just a component
82 if (entirePackageChanged(intent)) {
Gustav Sennton79fea482016-04-07 14:22:56 +010083 mImpl.packageStateChanged(packageNameFromIntent(intent),
Gustav Sennton0df2c552016-06-14 15:32:19 +010084 PACKAGE_CHANGED, userId);
Gustav Sennton6258dcd2015-10-30 19:25:37 +000085 }
Gustav Sennton3a6e6b22016-04-05 14:09:09 +010086 break;
87 case Intent.ACTION_PACKAGE_ADDED:
Gustav Sennton79fea482016-04-07 14:22:56 +010088 mImpl.packageStateChanged(packageNameFromIntent(intent),
Gustav Sennton3a6e6b22016-04-05 14:09:09 +010089 (intent.getExtras().getBoolean(Intent.EXTRA_REPLACING)
Gustav Sennton0df2c552016-06-14 15:32:19 +010090 ? PACKAGE_ADDED_REPLACED : PACKAGE_ADDED), userId);
Gustav Sennton3a6e6b22016-04-05 14:09:09 +010091 break;
92 case Intent.ACTION_USER_ADDED:
Gustav Sennton79fea482016-04-07 14:22:56 +010093 mImpl.handleNewUser(userId);
Gustav Sennton3a6e6b22016-04-05 14:09:09 +010094 break;
Ben Murdochdc00a842014-07-17 14:55:00 +010095 }
96 }
97 };
98 IntentFilter filter = new IntentFilter();
Gustav Sennton3098cf22015-11-10 03:33:09 +000099 filter.addAction(Intent.ACTION_PACKAGE_ADDED);
100 filter.addAction(Intent.ACTION_PACKAGE_REMOVED);
Gustav Senntonc83e3fa2016-02-18 12:19:13 +0000101 filter.addAction(Intent.ACTION_PACKAGE_CHANGED);
Ben Murdochdc00a842014-07-17 14:55:00 +0100102 filter.addDataScheme("package");
Gustav Senntonc83e3fa2016-02-18 12:19:13 +0000103 // Make sure we only receive intents for WebView packages from our config file.
Gustav Sennton79fea482016-04-07 14:22:56 +0100104 for (WebViewProviderInfo provider : mImpl.getWebViewPackages()) {
Gustav Senntonc83e3fa2016-02-18 12:19:13 +0000105 filter.addDataSchemeSpecificPart(provider.packageName, PatternMatcher.PATTERN_LITERAL);
106 }
Gustav Sennton0df2c552016-06-14 15:32:19 +0100107
108 getContext().registerReceiverAsUser(mWebViewUpdatedReceiver, UserHandle.ALL, filter,
109 null /* broadcast permission */, null /* handler */);
Torne (Richard Coles)08cfaf62014-05-08 16:07:05 +0100110
Gustav Senntonc83e3fa2016-02-18 12:19:13 +0000111 IntentFilter userAddedFilter = new IntentFilter();
112 userAddedFilter.addAction(Intent.ACTION_USER_ADDED);
Gustav Sennton0df2c552016-06-14 15:32:19 +0100113 getContext().registerReceiverAsUser(mWebViewUpdatedReceiver, UserHandle.ALL,
114 userAddedFilter, null /* broadcast permission */, null /* handler */);
Gustav Senntonc83e3fa2016-02-18 12:19:13 +0000115
Torne (Richard Coles)fc19b0a2016-02-01 16:16:57 +0000116 publishBinderService("webviewupdate", new BinderService(), true /*allowIsolated*/);
Torne (Richard Coles)08cfaf62014-05-08 16:07:05 +0100117 }
Ben Murdochdc00a842014-07-17 14:55:00 +0100118
Gustav Sennton3a6e6b22016-04-05 14:09:09 +0100119 public void prepareWebViewInSystemServer() {
Gustav Sennton79fea482016-04-07 14:22:56 +0100120 mImpl.prepareWebViewInSystemServer();
Gustav Sennton3a6e6b22016-04-05 14:09:09 +0100121 }
122
123 private static String packageNameFromIntent(Intent intent) {
124 return intent.getDataString().substring("package:".length());
125 }
126
Gustav Sennton065b7e62016-04-01 15:11:43 +0100127 /**
128 * Returns whether the entire package from an ACTION_PACKAGE_CHANGED intent was changed (rather
129 * than just one of its components).
130 * @hide
131 */
132 public static boolean entirePackageChanged(Intent intent) {
133 String[] componentList =
134 intent.getStringArrayExtra(Intent.EXTRA_CHANGED_COMPONENT_NAME_LIST);
135 return Arrays.asList(componentList).contains(
136 intent.getDataString().substring("package:".length()));
Gustav Senntondbf5eb02016-03-30 14:53:03 +0100137 }
138
Torne (Richard Coles)4dbeb352014-07-29 19:14:24 +0100139 private class BinderService extends IWebViewUpdateService.Stub {
140
Gustav Senntonc83e3fa2016-02-18 12:19:13 +0000141 @Override
142 public void onShellCommand(FileDescriptor in, FileDescriptor out,
Dianne Hackborn354736e2016-08-22 17:00:05 -0700143 FileDescriptor err, String[] args, ShellCallback callback,
144 ResultReceiver resultReceiver) {
Gustav Senntonc83e3fa2016-02-18 12:19:13 +0000145 (new WebViewUpdateServiceShellCommand(this)).exec(
Dianne Hackborn354736e2016-08-22 17:00:05 -0700146 this, in, out, err, args, callback, resultReceiver);
Gustav Senntonc83e3fa2016-02-18 12:19:13 +0000147 }
148
149
Torne (Richard Coles)4dbeb352014-07-29 19:14:24 +0100150 /**
151 * The shared relro process calls this to notify us that it's done trying to create a relro
152 * file. This method gets called even if the relro creation has failed or the process
153 * crashed.
154 */
155 @Override // Binder call
Gustav Sennton6258dcd2015-10-30 19:25:37 +0000156 public void notifyRelroCreationCompleted() {
Torne (Richard Coles)4dbeb352014-07-29 19:14:24 +0100157 // Verify that the caller is either the shared relro process (nominal case) or the
158 // system server (only in the case the relro process crashes and we get here via the
159 // crashHandler).
160 if (Binder.getCallingUid() != Process.SHARED_RELRO_UID &&
161 Binder.getCallingUid() != Process.SYSTEM_UID) {
162 return;
163 }
164
Gustav Sennton275d13c2016-02-24 10:58:09 +0000165 long callingId = Binder.clearCallingIdentity();
166 try {
Gustav Sennton79fea482016-04-07 14:22:56 +0100167 WebViewUpdateService.this.mImpl.notifyRelroCreationCompleted();
Gustav Sennton275d13c2016-02-24 10:58:09 +0000168 } finally {
169 Binder.restoreCallingIdentity(callingId);
Torne (Richard Coles)4dbeb352014-07-29 19:14:24 +0100170 }
171 }
172
173 /**
174 * WebViewFactory calls this to block WebView loading until the relro file is created.
Gustav Sennton6258dcd2015-10-30 19:25:37 +0000175 * Returns the WebView provider for which we create relro files.
Torne (Richard Coles)4dbeb352014-07-29 19:14:24 +0100176 */
177 @Override // Binder call
Gustav Sennton6258dcd2015-10-30 19:25:37 +0000178 public WebViewProviderResponse waitForAndGetProvider() {
Primiano Tuccie76e81a2014-07-29 16:38:33 +0100179 // The WebViewUpdateService depends on the prepareWebViewInSystemServer call, which
180 // happens later (during the PHASE_ACTIVITY_MANAGER_READY) in SystemServer.java. If
181 // another service there tries to bring up a WebView in the between, the wait below
182 // would deadlock without the check below.
183 if (Binder.getCallingPid() == Process.myPid()) {
184 throw new IllegalStateException("Cannot create a WebView from the SystemServer");
Torne (Richard Coles)4dbeb352014-07-29 19:14:24 +0100185 }
186
Gustav Sennton79fea482016-04-07 14:22:56 +0100187 return WebViewUpdateService.this.mImpl.waitForAndGetProvider();
Gustav Sennton6258dcd2015-10-30 19:25:37 +0000188 }
189
190 /**
191 * This is called from DeveloperSettings when the user changes WebView provider.
192 */
193 @Override // Binder call
Gustav Senntonc83e3fa2016-02-18 12:19:13 +0000194 public String changeProviderAndSetting(String newProvider) {
Gustav Sennton6258dcd2015-10-30 19:25:37 +0000195 if (getContext().checkCallingPermission(
196 android.Manifest.permission.WRITE_SECURE_SETTINGS)
197 != PackageManager.PERMISSION_GRANTED) {
198 String msg = "Permission Denial: changeProviderAndSetting() from pid="
199 + Binder.getCallingPid()
200 + ", uid=" + Binder.getCallingUid()
201 + " requires " + android.Manifest.permission.WRITE_SECURE_SETTINGS;
202 Slog.w(TAG, msg);
203 throw new SecurityException(msg);
204 }
205
Gustav Senntonab3b6b12016-03-16 17:38:42 +0000206 long callingId = Binder.clearCallingIdentity();
207 try {
Gustav Sennton79fea482016-04-07 14:22:56 +0100208 return WebViewUpdateService.this.mImpl.changeProviderAndSetting(
Gustav Sennton3a6e6b22016-04-05 14:09:09 +0100209 newProvider);
Gustav Senntonab3b6b12016-03-16 17:38:42 +0000210 } finally {
211 Binder.restoreCallingIdentity(callingId);
212 }
Gustav Sennton6258dcd2015-10-30 19:25:37 +0000213 }
214
215 @Override // Binder call
216 public WebViewProviderInfo[] getValidWebViewPackages() {
Gustav Sennton79fea482016-04-07 14:22:56 +0100217 return WebViewUpdateService.this.mImpl.getValidWebViewPackages();
Gustav Sennton6258dcd2015-10-30 19:25:37 +0000218 }
219
220 @Override // Binder call
Gustav Sennton8b179262016-03-14 11:31:14 +0000221 public WebViewProviderInfo[] getAllWebViewPackages() {
Gustav Sennton79fea482016-04-07 14:22:56 +0100222 return WebViewUpdateService.this.mImpl.getWebViewPackages();
Gustav Sennton8b179262016-03-14 11:31:14 +0000223 }
224
225 @Override // Binder call
Gustav Sennton6258dcd2015-10-30 19:25:37 +0000226 public String getCurrentWebViewPackageName() {
Gustav Sennton79fea482016-04-07 14:22:56 +0100227 return WebViewUpdateService.this.mImpl.getCurrentWebViewPackageName();
Torne (Richard Coles)4dbeb352014-07-29 19:14:24 +0100228 }
Gustav Senntonc83e3fa2016-02-18 12:19:13 +0000229
230 @Override // Binder call
231 public boolean isFallbackPackage(String packageName) {
Gustav Sennton79fea482016-04-07 14:22:56 +0100232 return WebViewUpdateService.this.mImpl.isFallbackPackage(packageName);
Gustav Senntonc83e3fa2016-02-18 12:19:13 +0000233 }
234
235 @Override // Binder call
236 public void enableFallbackLogic(boolean enable) {
237 if (getContext().checkCallingPermission(
238 android.Manifest.permission.WRITE_SECURE_SETTINGS)
239 != PackageManager.PERMISSION_GRANTED) {
240 String msg = "Permission Denial: enableFallbackLogic() from pid="
241 + Binder.getCallingPid()
242 + ", uid=" + Binder.getCallingUid()
243 + " requires " + android.Manifest.permission.WRITE_SECURE_SETTINGS;
244 Slog.w(TAG, msg);
245 throw new SecurityException(msg);
246 }
247
Gustav Sennton6824c7c2016-04-04 14:07:23 +0100248 long callingId = Binder.clearCallingIdentity();
249 try {
250 WebViewUpdateService.this.mImpl.enableFallbackLogic(enable);
251 } finally {
252 Binder.restoreCallingIdentity(callingId);
253 }
Gustav Senntonc83e3fa2016-02-18 12:19:13 +0000254 }
Torne (Richard Coles)4dbeb352014-07-29 19:14:24 +0100255 }
Torne (Richard Coles)08cfaf62014-05-08 16:07:05 +0100256}