blob: 48429e8b2b054035d3127dabcb2da1c9fc73a5e4 [file] [log] [blame]
The Android Open Source Project54b6cfa2008-10-21 07:00:00 -07001/*
2 * Copyright (C) 2007 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.providers.settings;
18
Svetoslav683914b2015-01-15 14:22:26 -080019import android.Manifest;
Eugene Suslad72c3972016-12-27 15:49:30 -080020import android.annotation.NonNull;
Christopher Tated5fe1472012-09-10 15:48:38 -070021import android.app.ActivityManager;
Xiaohui Chen43765b72015-08-31 10:57:33 -070022import android.app.AppGlobals;
Christopher Tate45281862010-03-05 15:46:30 -080023import android.app.backup.BackupManager;
Christopher Tate06efb532012-08-24 15:29:27 -070024import android.content.BroadcastReceiver;
Ruben Brunk98576cf2016-03-07 18:54:28 -080025import android.content.ComponentName;
The Android Open Source Project54b6cfa2008-10-21 07:00:00 -070026import android.content.ContentProvider;
The Android Open Source Project54b6cfa2008-10-21 07:00:00 -070027import android.content.ContentValues;
28import android.content.Context;
Christopher Tate06efb532012-08-24 15:29:27 -070029import android.content.Intent;
30import android.content.IntentFilter;
Svetoslav683914b2015-01-15 14:22:26 -080031import android.content.pm.ApplicationInfo;
Xiaohui Chen43765b72015-08-31 10:57:33 -070032import android.content.pm.IPackageManager;
Svetoslav683914b2015-01-15 14:22:26 -080033import android.content.pm.PackageInfo;
The Android Open Source Project54b6cfa2008-10-21 07:00:00 -070034import android.content.pm.PackageManager;
Julia Reynoldsad0d9e02017-02-15 08:41:48 -050035import android.content.pm.ResolveInfo;
36import android.content.pm.ServiceInfo;
Christopher Tate38e7a602013-09-03 16:57:34 -070037import android.content.pm.UserInfo;
The Android Open Source Project54b6cfa2008-10-21 07:00:00 -070038import android.database.Cursor;
Svetoslav683914b2015-01-15 14:22:26 -080039import android.database.MatrixCursor;
The Android Open Source Project54b6cfa2008-10-21 07:00:00 -070040import android.database.sqlite.SQLiteDatabase;
41import android.database.sqlite.SQLiteQueryBuilder;
Svetoslav683914b2015-01-15 14:22:26 -080042import android.hardware.camera2.utils.ArrayUtils;
John Spurlocke11ae112015-05-11 16:09:03 -040043import android.media.AudioManager;
The Android Open Source Project54b6cfa2008-10-21 07:00:00 -070044import android.net.Uri;
Christopher Tate06efb532012-08-24 15:29:27 -070045import android.os.Binder;
Svetoslav683914b2015-01-15 14:22:26 -080046import android.os.Build;
Brad Fitzpatrick1877d012010-03-04 17:48:13 -080047import android.os.Bundle;
Amith Yamasani5cdf7f52013-06-27 15:12:01 -070048import android.os.DropBoxManager;
Svetoslav683914b2015-01-15 14:22:26 -080049import android.os.Environment;
Svetoslav7e0683b2015-08-03 16:02:52 -070050import android.os.Handler;
Svet Ganova8f90262016-05-10 08:44:48 -070051import android.os.HandlerThread;
Svetoslav7e0683b2015-08-03 16:02:52 -070052import android.os.Looper;
53import android.os.Message;
The Android Open Source Project54b6cfa2008-10-21 07:00:00 -070054import android.os.ParcelFileDescriptor;
Christopher Tate0da13572013-10-13 17:34:49 -070055import android.os.Process;
Xiaohui Chen43765b72015-08-31 10:57:33 -070056import android.os.RemoteException;
Jeff Sharkey413573a2016-02-22 17:52:45 -070057import android.os.SELinux;
Dianne Hackborn32f40ee2016-10-20 15:54:14 -070058import android.os.ServiceManager;
Christopher Tate06efb532012-08-24 15:29:27 -070059import android.os.UserHandle;
60import android.os.UserManager;
Svet Ganov53a441c2016-04-19 19:38:00 -070061import android.os.UserManagerInternal;
The Android Open Source Project54b6cfa2008-10-21 07:00:00 -070062import android.provider.Settings;
Julia Reynoldsad0d9e02017-02-15 08:41:48 -050063import android.service.notification.NotificationListenerService;
The Android Open Source Project54b6cfa2008-10-21 07:00:00 -070064import android.text.TextUtils;
Andre Lago3fa139c2016-08-04 13:53:44 +010065import android.util.ArrayMap;
Svetoslav683914b2015-01-15 14:22:26 -080066import android.util.ArraySet;
Mark Rathjend891f012017-01-19 04:10:37 +000067import android.util.ByteStringUtils;
Christopher Tate06efb532012-08-24 15:29:27 -070068import android.util.Slog;
69import android.util.SparseArray;
Dianne Hackborn32f40ee2016-10-20 15:54:14 -070070import android.util.SparseBooleanArray;
Eugene Suslad72c3972016-12-27 15:49:30 -080071import android.util.proto.ProtoOutputStream;
John Spurlocke11ae112015-05-11 16:09:03 -040072
Svetoslav683914b2015-01-15 14:22:26 -080073import com.android.internal.annotations.GuardedBy;
74import com.android.internal.content.PackageMonitor;
75import com.android.internal.os.BackgroundThread;
Suprabh Shukla269c11e2015-12-02 16:51:16 -080076import com.android.providers.settings.SettingsState.Setting;
Svet Ganov53a441c2016-04-19 19:38:00 -070077import com.android.server.LocalServices;
Ruben Brunk98576cf2016-03-07 18:54:28 -080078import com.android.server.SystemConfig;
John Spurlocke11ae112015-05-11 16:09:03 -040079
Svetoslav683914b2015-01-15 14:22:26 -080080import java.io.File;
Svetoslavb505ccc2015-02-17 12:41:04 -080081import java.io.FileDescriptor;
Svetoslav683914b2015-01-15 14:22:26 -080082import java.io.FileNotFoundException;
Svetoslavb505ccc2015-02-17 12:41:04 -080083import java.io.PrintWriter;
Mark Rathjend891f012017-01-19 04:10:37 +000084import java.nio.charset.StandardCharsets;
Mark Rathjen7599f132017-01-23 14:15:54 -080085import java.nio.ByteBuffer;
86import java.security.InvalidKeyException;
Mark Rathjend891f012017-01-19 04:10:37 +000087import java.security.NoSuchAlgorithmException;
Svetoslav683914b2015-01-15 14:22:26 -080088import java.security.SecureRandom;
Dianne Hackborn32f40ee2016-10-20 15:54:14 -070089import java.util.ArrayList;
Svetoslav683914b2015-01-15 14:22:26 -080090import java.util.Arrays;
Robin Lee7af9a742017-02-20 14:47:30 +000091import java.util.Collection;
Mark Rathjend891f012017-01-19 04:10:37 +000092import java.util.HashSet;
Svetoslav683914b2015-01-15 14:22:26 -080093import java.util.List;
Mark Rathjen7599f132017-01-23 14:15:54 -080094import java.util.Locale;
Andre Lago3fa139c2016-08-04 13:53:44 +010095import java.util.Map;
Svetoslav683914b2015-01-15 14:22:26 -080096import java.util.Set;
97import java.util.regex.Pattern;
Mark Rathjen7599f132017-01-23 14:15:54 -080098import javax.crypto.Mac;
99import javax.crypto.spec.SecretKeySpec;
The Android Open Source Project54b6cfa2008-10-21 07:00:00 -0700100
Svetoslav Ganove080da92016-12-21 17:10:35 -0800101import static android.os.Process.ROOT_UID;
Svetoslav Ganove080da92016-12-21 17:10:35 -0800102import static android.os.Process.SHELL_UID;
Eugene Suslad72c3972016-12-27 15:49:30 -0800103import static android.os.Process.SYSTEM_UID;
104
Svetoslav Ganove080da92016-12-21 17:10:35 -0800105
Svetoslav683914b2015-01-15 14:22:26 -0800106/**
107 * <p>
108 * This class is a content provider that publishes the system settings.
109 * It can be accessed via the content provider APIs or via custom call
110 * commands. The latter is a bit faster and is the preferred way to access
111 * the platform settings.
112 * </p>
113 * <p>
114 * There are three settings types, global (with signature level protection
115 * and shared across users), secure (with signature permission level
116 * protection and per user), and system (with dangerous permission level
117 * protection and per user). Global settings are stored under the device owner.
118 * Each of these settings is represented by a {@link
119 * com.android.providers.settings.SettingsState} object mapped to an integer
120 * key derived from the setting type in the most significant bits and user
121 * id in the least significant bits. Settings are synchronously loaded on
122 * instantiation of a SettingsState and asynchronously persisted on mutation.
123 * Settings are stored in the user specific system directory.
124 * </p>
125 * <p>
126 * Apps targeting APIs Lollipop MR1 and lower can add custom settings entries
127 * and get a warning. Targeting higher API version prohibits this as the
128 * system settings are not a place for apps to save their state. When a package
129 * is removed the settings it added are deleted. Apps cannot delete system
130 * settings added by the platform. System settings values are validated to
131 * ensure the clients do not put bad values. Global and secure settings are
132 * changed only by trusted parties, therefore no validation is performed. Also
133 * there is a limit on the amount of app specific settings that can be added
134 * to prevent unlimited growth of the system process memory footprint.
135 * </p>
136 */
137@SuppressWarnings("deprecation")
The Android Open Source Project54b6cfa2008-10-21 07:00:00 -0700138public class SettingsProvider extends ContentProvider {
Dianne Hackborn32f40ee2016-10-20 15:54:14 -0700139 static final boolean DEBUG = false;
The Android Open Source Project54b6cfa2008-10-21 07:00:00 -0700140
Svetoslav Ganov264c7a92016-08-24 17:31:14 -0700141 private static final boolean DROP_DATABASE_ON_MIGRATION = true;
Svetoslav683914b2015-01-15 14:22:26 -0800142
143 private static final String LOG_TAG = "SettingsProvider";
Christopher Tate0da13572013-10-13 17:34:49 -0700144
Christopher Tate06efb532012-08-24 15:29:27 -0700145 private static final String TABLE_SYSTEM = "system";
146 private static final String TABLE_SECURE = "secure";
147 private static final String TABLE_GLOBAL = "global";
Svetoslav683914b2015-01-15 14:22:26 -0800148
149 // Old tables no longer exist.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800150 private static final String TABLE_FAVORITES = "favorites";
151 private static final String TABLE_OLD_FAVORITES = "old_favorites";
Svetoslav683914b2015-01-15 14:22:26 -0800152 private static final String TABLE_BLUETOOTH_DEVICES = "bluetooth_devices";
153 private static final String TABLE_BOOKMARKS = "bookmarks";
154 private static final String TABLE_ANDROID_METADATA = "android_metadata";
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800155
Svetoslav683914b2015-01-15 14:22:26 -0800156 // The set of removed legacy tables.
157 private static final Set<String> REMOVED_LEGACY_TABLES = new ArraySet<>();
Christopher Tate06efb532012-08-24 15:29:27 -0700158 static {
Svetoslav683914b2015-01-15 14:22:26 -0800159 REMOVED_LEGACY_TABLES.add(TABLE_FAVORITES);
160 REMOVED_LEGACY_TABLES.add(TABLE_OLD_FAVORITES);
161 REMOVED_LEGACY_TABLES.add(TABLE_BLUETOOTH_DEVICES);
162 REMOVED_LEGACY_TABLES.add(TABLE_BOOKMARKS);
163 REMOVED_LEGACY_TABLES.add(TABLE_ANDROID_METADATA);
164 }
Christopher Tate06efb532012-08-24 15:29:27 -0700165
Svetoslav683914b2015-01-15 14:22:26 -0800166 private static final int MUTATION_OPERATION_INSERT = 1;
167 private static final int MUTATION_OPERATION_DELETE = 2;
168 private static final int MUTATION_OPERATION_UPDATE = 3;
Svetoslav Ganove080da92016-12-21 17:10:35 -0800169 private static final int MUTATION_OPERATION_RESET = 4;
Julia Reynolds5e458dd2014-07-07 16:07:01 -0400170
Svetoslav683914b2015-01-15 14:22:26 -0800171 private static final String[] ALL_COLUMNS = new String[] {
172 Settings.NameValueTable._ID,
173 Settings.NameValueTable.NAME,
174 Settings.NameValueTable.VALUE
175 };
176
Svet Ganov53a441c2016-04-19 19:38:00 -0700177 public static final int SETTINGS_TYPE_GLOBAL = 0;
178 public static final int SETTINGS_TYPE_SYSTEM = 1;
179 public static final int SETTINGS_TYPE_SECURE = 2;
Mark Rathjend891f012017-01-19 04:10:37 +0000180 public static final int SETTINGS_TYPE_SSAID = 3;
Svetoslav683914b2015-01-15 14:22:26 -0800181
Svet Ganov53a441c2016-04-19 19:38:00 -0700182 public static final int SETTINGS_TYPE_MASK = 0xF0000000;
183 public static final int SETTINGS_TYPE_SHIFT = 28;
184
185 private static final Bundle NULL_SETTING_BUNDLE = Bundle.forPair(
186 Settings.NameValueTable.VALUE, null);
Christopher Tate06efb532012-08-24 15:29:27 -0700187
Svetoslav Ganov5fb405b2017-01-26 22:43:09 -0800188 // Changes to these global settings are synchronously persisted
189 private static final Set<String> CRITICAL_GLOBAL_SETTINGS = new ArraySet<>();
190 static {
191 CRITICAL_GLOBAL_SETTINGS.add(Settings.Global.DEVICE_PROVISIONED);
192 }
193
194 // Changes to these secure settings are synchronously persisted
195 private static final Set<String> CRITICAL_SECURE_SETTINGS = new ArraySet<>();
196 static {
197 CRITICAL_SECURE_SETTINGS.add(Settings.Secure.USER_SETUP_COMPLETE);
198 }
199
Svetoslav683914b2015-01-15 14:22:26 -0800200 // Per user secure settings that moved to the for all users global settings.
201 static final Set<String> sSecureMovedToGlobalSettings = new ArraySet<>();
202 static {
203 Settings.Secure.getMovedToGlobalSettings(sSecureMovedToGlobalSettings);
Christopher Tate06efb532012-08-24 15:29:27 -0700204 }
205
Svetoslav683914b2015-01-15 14:22:26 -0800206 // Per user system settings that moved to the for all users global settings.
207 static final Set<String> sSystemMovedToGlobalSettings = new ArraySet<>();
208 static {
209 Settings.System.getMovedToGlobalSettings(sSystemMovedToGlobalSettings);
The Android Open Source Project54b6cfa2008-10-21 07:00:00 -0700210 }
211
Svetoslav683914b2015-01-15 14:22:26 -0800212 // Per user system settings that moved to the per user secure settings.
213 static final Set<String> sSystemMovedToSecureSettings = new ArraySet<>();
214 static {
215 Settings.System.getMovedToSecureSettings(sSystemMovedToSecureSettings);
The Android Open Source Project54b6cfa2008-10-21 07:00:00 -0700216 }
217
Svetoslav683914b2015-01-15 14:22:26 -0800218 // Per all users global settings that moved to the per user secure settings.
219 static final Set<String> sGlobalMovedToSecureSettings = new ArraySet<>();
220 static {
221 Settings.Global.getMovedToSecureSettings(sGlobalMovedToSecureSettings);
The Android Open Source Project54b6cfa2008-10-21 07:00:00 -0700222 }
223
Svetoslav683914b2015-01-15 14:22:26 -0800224 // Per user secure settings that are cloned for the managed profiles of the user.
225 private static final Set<String> sSecureCloneToManagedSettings = new ArraySet<>();
226 static {
227 Settings.Secure.getCloneToManagedProfileSettings(sSecureCloneToManagedSettings);
The Android Open Source Project54b6cfa2008-10-21 07:00:00 -0700228 }
229
Svetoslav683914b2015-01-15 14:22:26 -0800230 // Per user system settings that are cloned for the managed profiles of the user.
231 private static final Set<String> sSystemCloneToManagedSettings = new ArraySet<>();
232 static {
233 Settings.System.getCloneToManagedProfileSettings(sSystemCloneToManagedSettings);
Julia Reynolds5e458dd2014-07-07 16:07:01 -0400234 }
235
Andre Lago3fa139c2016-08-04 13:53:44 +0100236 // Per user system settings that are cloned from the profile's parent when a dependency
237 // in {@link Settings.Secure} is set to "1".
238 public static final Map<String, String> sSystemCloneFromParentOnDependency = new ArrayMap<>();
239 static {
240 Settings.System.getCloneFromParentOnValueSettings(sSystemCloneFromParentOnDependency);
241 }
242
Svetoslav683914b2015-01-15 14:22:26 -0800243 private final Object mLock = new Object();
Brad Fitzpatrickf366a9b2010-08-24 16:14:07 -0700244
Svetoslav683914b2015-01-15 14:22:26 -0800245 @GuardedBy("mLock")
246 private SettingsRegistry mSettingsRegistry;
Brad Fitzpatrickf366a9b2010-08-24 16:14:07 -0700247
Svet Ganova8f90262016-05-10 08:44:48 -0700248 @GuardedBy("mLock")
249 private HandlerThread mHandlerThread;
250
Makoto Onuki73360ab2017-03-17 11:50:13 -0700251 @GuardedBy("mLock")
252 private Handler mHandler;
253
Svetoslav7ec28e82015-05-20 17:01:10 -0700254 // We have to call in the user manager with no lock held,
255 private volatile UserManager mUserManager;
Svetoslav683914b2015-01-15 14:22:26 -0800256
Svetoslav7ec28e82015-05-20 17:01:10 -0700257 // We have to call in the package manager with no lock held,
Xiaohui Chen43765b72015-08-31 10:57:33 -0700258 private volatile IPackageManager mPackageManager;
Brad Fitzpatrickf366a9b2010-08-24 16:14:07 -0700259
Svet Ganov53a441c2016-04-19 19:38:00 -0700260 public static int makeKey(int type, int userId) {
261 return (type << SETTINGS_TYPE_SHIFT) | userId;
262 }
263
264 public static int getTypeFromKey(int key) {
265 return key >>> SETTINGS_TYPE_SHIFT;
266 }
267
268 public static int getUserIdFromKey(int key) {
269 return key & ~SETTINGS_TYPE_MASK;
270 }
271
272 public static String settingTypeToString(int type) {
273 switch (type) {
274 case SETTINGS_TYPE_GLOBAL: {
275 return "SETTINGS_GLOBAL";
276 }
277 case SETTINGS_TYPE_SECURE: {
278 return "SETTINGS_SECURE";
279 }
280 case SETTINGS_TYPE_SYSTEM: {
281 return "SETTINGS_SYSTEM";
282 }
Mark Rathjend891f012017-01-19 04:10:37 +0000283 case SETTINGS_TYPE_SSAID: {
284 return "SETTINGS_SSAID";
285 }
Svet Ganov53a441c2016-04-19 19:38:00 -0700286 default: {
287 return "UNKNOWN";
288 }
289 }
290 }
291
292 public static String keyToString(int key) {
293 return "Key[user=" + getUserIdFromKey(key) + ";type="
294 + settingTypeToString(getTypeFromKey(key)) + "]";
295 }
296
The Android Open Source Project54b6cfa2008-10-21 07:00:00 -0700297 @Override
298 public boolean onCreate() {
Chad Brubaker97bccee2017-01-05 15:51:41 -0800299 Settings.setInSystemServer();
Svetoslav683914b2015-01-15 14:22:26 -0800300 synchronized (mLock) {
Xiaohui Chen43765b72015-08-31 10:57:33 -0700301 mUserManager = UserManager.get(getContext());
302 mPackageManager = AppGlobals.getPackageManager();
Svet Ganova8f90262016-05-10 08:44:48 -0700303 mHandlerThread = new HandlerThread(LOG_TAG,
304 Process.THREAD_PRIORITY_BACKGROUND);
305 mHandlerThread.start();
Makoto Onuki73360ab2017-03-17 11:50:13 -0700306 mHandler = new Handler(mHandlerThread.getLooper());
Svetoslav683914b2015-01-15 14:22:26 -0800307 mSettingsRegistry = new SettingsRegistry();
308 }
Makoto Onuki73360ab2017-03-17 11:50:13 -0700309 mHandler.post(() -> {
310 registerBroadcastReceivers();
311 startWatchingUserRestrictionChanges();
312 });
Dianne Hackborn32f40ee2016-10-20 15:54:14 -0700313 ServiceManager.addService("settings", new SettingsService(this));
The Android Open Source Project54b6cfa2008-10-21 07:00:00 -0700314 return true;
315 }
316
Svetoslav683914b2015-01-15 14:22:26 -0800317 @Override
318 public Bundle call(String method, String name, Bundle args) {
Svetoslav7ec28e82015-05-20 17:01:10 -0700319 final int requestingUserId = getRequestingUserId(args);
320 switch (method) {
321 case Settings.CALL_METHOD_GET_GLOBAL: {
322 Setting setting = getGlobalSetting(name);
Svet Ganov53a441c2016-04-19 19:38:00 -0700323 return packageValueForCallResult(setting, isTrackingGeneration(args));
Svetoslav683914b2015-01-15 14:22:26 -0800324 }
Svetoslav7ec28e82015-05-20 17:01:10 -0700325
326 case Settings.CALL_METHOD_GET_SECURE: {
327 Setting setting = getSecureSetting(name, requestingUserId);
Svet Ganov53a441c2016-04-19 19:38:00 -0700328 return packageValueForCallResult(setting, isTrackingGeneration(args));
Svetoslav7ec28e82015-05-20 17:01:10 -0700329 }
330
331 case Settings.CALL_METHOD_GET_SYSTEM: {
332 Setting setting = getSystemSetting(name, requestingUserId);
Svet Ganov53a441c2016-04-19 19:38:00 -0700333 return packageValueForCallResult(setting, isTrackingGeneration(args));
Svetoslav7ec28e82015-05-20 17:01:10 -0700334 }
335
336 case Settings.CALL_METHOD_PUT_GLOBAL: {
337 String value = getSettingValue(args);
Svetoslav Ganove080da92016-12-21 17:10:35 -0800338 String tag = getSettingTag(args);
339 final boolean makeDefault = getSettingMakeDefault(args);
340 insertGlobalSetting(name, value, tag, makeDefault, requestingUserId, false);
Svetoslav7ec28e82015-05-20 17:01:10 -0700341 break;
342 }
343
344 case Settings.CALL_METHOD_PUT_SECURE: {
345 String value = getSettingValue(args);
Svetoslav Ganove080da92016-12-21 17:10:35 -0800346 String tag = getSettingTag(args);
347 final boolean makeDefault = getSettingMakeDefault(args);
348 insertSecureSetting(name, value, tag, makeDefault, requestingUserId, false);
Svetoslav7ec28e82015-05-20 17:01:10 -0700349 break;
350 }
351
352 case Settings.CALL_METHOD_PUT_SYSTEM: {
353 String value = getSettingValue(args);
354 insertSystemSetting(name, value, requestingUserId);
355 break;
356 }
357
Svetoslav Ganove080da92016-12-21 17:10:35 -0800358 case Settings.CALL_METHOD_RESET_GLOBAL: {
359 final int mode = getResetModeEnforcingPermission(args);
360 String tag = getSettingTag(args);
361 resetGlobalSetting(requestingUserId, mode, tag);
362 break;
363 }
364
365 case Settings.CALL_METHOD_RESET_SECURE: {
366 final int mode = getResetModeEnforcingPermission(args);
367 String tag = getSettingTag(args);
368 resetSecureSetting(requestingUserId, mode, tag);
369 break;
370 }
371
Svetoslav7ec28e82015-05-20 17:01:10 -0700372 default: {
373 Slog.w(LOG_TAG, "call() with invalid method: " + method);
374 } break;
Christopher Tate06efb532012-08-24 15:29:27 -0700375 }
Svetoslav7ec28e82015-05-20 17:01:10 -0700376
Christopher Tate06efb532012-08-24 15:29:27 -0700377 return null;
378 }
379
Brad Fitzpatrick1877d012010-03-04 17:48:13 -0800380 @Override
Svetoslav683914b2015-01-15 14:22:26 -0800381 public String getType(Uri uri) {
382 Arguments args = new Arguments(uri, null, null, true);
383 if (TextUtils.isEmpty(args.name)) {
The Android Open Source Project54b6cfa2008-10-21 07:00:00 -0700384 return "vnd.android.cursor.dir/" + args.table;
385 } else {
Svetoslav7ec28e82015-05-20 17:01:10 -0700386 return "vnd.android.cursor.item/" + args.table;
The Android Open Source Project54b6cfa2008-10-21 07:00:00 -0700387 }
388 }
389
390 @Override
Svetoslav683914b2015-01-15 14:22:26 -0800391 public Cursor query(Uri uri, String[] projection, String where, String[] whereArgs,
392 String order) {
393 if (DEBUG) {
394 Slog.v(LOG_TAG, "query() for user: " + UserHandle.getCallingUserId());
The Android Open Source Project54b6cfa2008-10-21 07:00:00 -0700395 }
396
Svetoslav683914b2015-01-15 14:22:26 -0800397 Arguments args = new Arguments(uri, where, whereArgs, true);
398 String[] normalizedProjection = normalizeProjection(projection);
The Android Open Source Project54b6cfa2008-10-21 07:00:00 -0700399
Svetoslav683914b2015-01-15 14:22:26 -0800400 // If a legacy table that is gone, done.
401 if (REMOVED_LEGACY_TABLES.contains(args.table)) {
402 return new MatrixCursor(normalizedProjection, 0);
403 }
Mike Lockwoodbd2a7122009-04-02 23:41:33 -0700404
Svetoslav7ec28e82015-05-20 17:01:10 -0700405 switch (args.table) {
406 case TABLE_GLOBAL: {
407 if (args.name != null) {
408 Setting setting = getGlobalSetting(args.name);
409 return packageSettingForQuery(setting, normalizedProjection);
410 } else {
411 return getAllGlobalSettings(projection);
Mike Lockwoodbd2a7122009-04-02 23:41:33 -0700412 }
Svetoslav7ec28e82015-05-20 17:01:10 -0700413 }
Mike Lockwoodbd2a7122009-04-02 23:41:33 -0700414
Svetoslav7ec28e82015-05-20 17:01:10 -0700415 case TABLE_SECURE: {
416 final int userId = UserHandle.getCallingUserId();
417 if (args.name != null) {
418 Setting setting = getSecureSetting(args.name, userId);
419 return packageSettingForQuery(setting, normalizedProjection);
420 } else {
421 return getAllSecureSettings(userId, projection);
Svetoslav683914b2015-01-15 14:22:26 -0800422 }
Svetoslav7ec28e82015-05-20 17:01:10 -0700423 }
Svetoslav683914b2015-01-15 14:22:26 -0800424
Svetoslav7ec28e82015-05-20 17:01:10 -0700425 case TABLE_SYSTEM: {
426 final int userId = UserHandle.getCallingUserId();
427 if (args.name != null) {
428 Setting setting = getSystemSetting(args.name, userId);
429 return packageSettingForQuery(setting, normalizedProjection);
430 } else {
431 return getAllSystemSettings(userId, projection);
Svetoslav683914b2015-01-15 14:22:26 -0800432 }
Svetoslav7ec28e82015-05-20 17:01:10 -0700433 }
Svetoslav683914b2015-01-15 14:22:26 -0800434
Svetoslav7ec28e82015-05-20 17:01:10 -0700435 default: {
436 throw new IllegalArgumentException("Invalid Uri path:" + uri);
Mike Lockwoodbd2a7122009-04-02 23:41:33 -0700437 }
438 }
Mike Lockwoodbd2a7122009-04-02 23:41:33 -0700439 }
440
The Android Open Source Project54b6cfa2008-10-21 07:00:00 -0700441 @Override
Svetoslav683914b2015-01-15 14:22:26 -0800442 public Uri insert(Uri uri, ContentValues values) {
443 if (DEBUG) {
444 Slog.v(LOG_TAG, "insert() for user: " + UserHandle.getCallingUserId());
Christopher Tate06efb532012-08-24 15:29:27 -0700445 }
446
Svetoslav683914b2015-01-15 14:22:26 -0800447 String table = getValidTableOrThrow(uri);
Christopher Tate06efb532012-08-24 15:29:27 -0700448
Svetoslav683914b2015-01-15 14:22:26 -0800449 // If a legacy table that is gone, done.
450 if (REMOVED_LEGACY_TABLES.contains(table)) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800451 return null;
452 }
The Android Open Source Project54b6cfa2008-10-21 07:00:00 -0700453
Svetoslav683914b2015-01-15 14:22:26 -0800454 String name = values.getAsString(Settings.Secure.NAME);
Makoto Onuki3a2c35782015-06-18 11:21:58 -0700455 if (!isKeyValid(name)) {
Svetoslav683914b2015-01-15 14:22:26 -0800456 return null;
Mike Lockwoodbd2a7122009-04-02 23:41:33 -0700457 }
458
Svetoslav683914b2015-01-15 14:22:26 -0800459 String value = values.getAsString(Settings.Secure.VALUE);
460
Svetoslav7ec28e82015-05-20 17:01:10 -0700461 switch (table) {
462 case TABLE_GLOBAL: {
Svetoslav Ganove080da92016-12-21 17:10:35 -0800463 if (insertGlobalSetting(name, value, null, false,
464 UserHandle.getCallingUserId(), false)) {
Svetoslav7ec28e82015-05-20 17:01:10 -0700465 return Uri.withAppendedPath(Settings.Global.CONTENT_URI, name);
Christopher Tatec221d2b2012-10-03 18:33:52 -0700466 }
Svetoslav7ec28e82015-05-20 17:01:10 -0700467 } break;
468
469 case TABLE_SECURE: {
Svetoslav Ganove080da92016-12-21 17:10:35 -0800470 if (insertSecureSetting(name, value, null, false,
471 UserHandle.getCallingUserId(), false)) {
Svetoslav7ec28e82015-05-20 17:01:10 -0700472 return Uri.withAppendedPath(Settings.Secure.CONTENT_URI, name);
473 }
474 } break;
475
476 case TABLE_SYSTEM: {
477 if (insertSystemSetting(name, value, UserHandle.getCallingUserId())) {
478 return Uri.withAppendedPath(Settings.System.CONTENT_URI, name);
479 }
480 } break;
481
482 default: {
483 throw new IllegalArgumentException("Bad Uri path:" + uri);
Christopher Tatec221d2b2012-10-03 18:33:52 -0700484 }
485 }
486
Svetoslav683914b2015-01-15 14:22:26 -0800487 return null;
The Android Open Source Project54b6cfa2008-10-21 07:00:00 -0700488 }
489
490 @Override
Svetoslav683914b2015-01-15 14:22:26 -0800491 public int bulkInsert(Uri uri, ContentValues[] allValues) {
492 if (DEBUG) {
493 Slog.v(LOG_TAG, "bulkInsert() for user: " + UserHandle.getCallingUserId());
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800494 }
The Android Open Source Project54b6cfa2008-10-21 07:00:00 -0700495
Svetoslav683914b2015-01-15 14:22:26 -0800496 int insertionCount = 0;
497 final int valuesCount = allValues.length;
498 for (int i = 0; i < valuesCount; i++) {
499 ContentValues values = allValues[i];
500 if (insert(uri, values) != null) {
501 insertionCount++;
502 }
Dianne Hackborn8d051722014-10-01 14:59:58 -0700503 }
Svetoslav683914b2015-01-15 14:22:26 -0800504
505 return insertionCount;
The Android Open Source Project54b6cfa2008-10-21 07:00:00 -0700506 }
507
508 @Override
Svetoslav683914b2015-01-15 14:22:26 -0800509 public int delete(Uri uri, String where, String[] whereArgs) {
510 if (DEBUG) {
511 Slog.v(LOG_TAG, "delete() for user: " + UserHandle.getCallingUserId());
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800512 }
The Android Open Source Project54b6cfa2008-10-21 07:00:00 -0700513
Svetoslav683914b2015-01-15 14:22:26 -0800514 Arguments args = new Arguments(uri, where, whereArgs, false);
515
516 // If a legacy table that is gone, done.
517 if (REMOVED_LEGACY_TABLES.contains(args.table)) {
518 return 0;
Dianne Hackborn8d051722014-10-01 14:59:58 -0700519 }
Svetoslav683914b2015-01-15 14:22:26 -0800520
Makoto Onuki3a2c35782015-06-18 11:21:58 -0700521 if (!isKeyValid(args.name)) {
Svetoslav683914b2015-01-15 14:22:26 -0800522 return 0;
Dianne Hackborn8d051722014-10-01 14:59:58 -0700523 }
Svetoslav683914b2015-01-15 14:22:26 -0800524
Svetoslav7ec28e82015-05-20 17:01:10 -0700525 switch (args.table) {
526 case TABLE_GLOBAL: {
527 final int userId = UserHandle.getCallingUserId();
Svet Ganov53a441c2016-04-19 19:38:00 -0700528 return deleteGlobalSetting(args.name, userId, false) ? 1 : 0;
Svetoslav7ec28e82015-05-20 17:01:10 -0700529 }
Svetoslav683914b2015-01-15 14:22:26 -0800530
Svetoslav7ec28e82015-05-20 17:01:10 -0700531 case TABLE_SECURE: {
532 final int userId = UserHandle.getCallingUserId();
Svet Ganov53a441c2016-04-19 19:38:00 -0700533 return deleteSecureSetting(args.name, userId, false) ? 1 : 0;
Svetoslav7ec28e82015-05-20 17:01:10 -0700534 }
Svetoslav683914b2015-01-15 14:22:26 -0800535
Svetoslav7ec28e82015-05-20 17:01:10 -0700536 case TABLE_SYSTEM: {
537 final int userId = UserHandle.getCallingUserId();
538 return deleteSystemSetting(args.name, userId) ? 1 : 0;
539 }
540
541 default: {
542 throw new IllegalArgumentException("Bad Uri path:" + uri);
Svetoslav683914b2015-01-15 14:22:26 -0800543 }
Dianne Hackborn8d051722014-10-01 14:59:58 -0700544 }
Svetoslav683914b2015-01-15 14:22:26 -0800545 }
546
547 @Override
548 public int update(Uri uri, ContentValues values, String where, String[] whereArgs) {
549 if (DEBUG) {
550 Slog.v(LOG_TAG, "update() for user: " + UserHandle.getCallingUserId());
Christopher Tate06efb532012-08-24 15:29:27 -0700551 }
Svetoslav683914b2015-01-15 14:22:26 -0800552
553 Arguments args = new Arguments(uri, where, whereArgs, false);
554
555 // If a legacy table that is gone, done.
556 if (REMOVED_LEGACY_TABLES.contains(args.table)) {
557 return 0;
558 }
559
Makoto Onuki3a2c35782015-06-18 11:21:58 -0700560 String name = values.getAsString(Settings.Secure.NAME);
561 if (!isKeyValid(name)) {
Svetoslav683914b2015-01-15 14:22:26 -0800562 return 0;
563 }
Makoto Onuki3a2c35782015-06-18 11:21:58 -0700564 String value = values.getAsString(Settings.Secure.VALUE);
Svetoslav683914b2015-01-15 14:22:26 -0800565
Svetoslav7ec28e82015-05-20 17:01:10 -0700566 switch (args.table) {
567 case TABLE_GLOBAL: {
568 final int userId = UserHandle.getCallingUserId();
Svetoslav Ganove080da92016-12-21 17:10:35 -0800569 return updateGlobalSetting(args.name, value, null, false,
570 userId, false) ? 1 : 0;
Svetoslav7ec28e82015-05-20 17:01:10 -0700571 }
Svetoslav683914b2015-01-15 14:22:26 -0800572
Svetoslav7ec28e82015-05-20 17:01:10 -0700573 case TABLE_SECURE: {
574 final int userId = UserHandle.getCallingUserId();
Svetoslav Ganove080da92016-12-21 17:10:35 -0800575 return updateSecureSetting(args.name, value, null, false,
576 userId, false) ? 1 : 0;
Svetoslav7ec28e82015-05-20 17:01:10 -0700577 }
Svetoslav683914b2015-01-15 14:22:26 -0800578
Svetoslav7ec28e82015-05-20 17:01:10 -0700579 case TABLE_SYSTEM: {
580 final int userId = UserHandle.getCallingUserId();
581 return updateSystemSetting(args.name, value, userId) ? 1 : 0;
582 }
Svetoslav683914b2015-01-15 14:22:26 -0800583
Svetoslav7ec28e82015-05-20 17:01:10 -0700584 default: {
585 throw new IllegalArgumentException("Invalid Uri path:" + uri);
Svetoslav683914b2015-01-15 14:22:26 -0800586 }
587 }
The Android Open Source Project54b6cfa2008-10-21 07:00:00 -0700588 }
589
590 @Override
591 public ParcelFileDescriptor openFile(Uri uri, String mode) throws FileNotFoundException {
Robin Lee2ab02e22016-07-28 18:41:23 +0100592 final int userId = getUserIdFromUri(uri, UserHandle.getCallingUserId());
593 if (userId != UserHandle.getCallingUserId()) {
594 getContext().enforceCallingPermission(Manifest.permission.INTERACT_ACROSS_USERS,
595 "Access files from the settings of another user");
596 }
597 uri = ContentProvider.getUriWithoutUserId(uri);
598
Andre Lago3fa139c2016-08-04 13:53:44 +0100599 final String cacheRingtoneSetting;
Jeff Sharkey413573a2016-02-22 17:52:45 -0700600 final String cacheName;
601 if (Settings.System.RINGTONE_CACHE_URI.equals(uri)) {
Andre Lago3fa139c2016-08-04 13:53:44 +0100602 cacheRingtoneSetting = Settings.System.RINGTONE;
Jeff Sharkey413573a2016-02-22 17:52:45 -0700603 cacheName = Settings.System.RINGTONE_CACHE;
604 } else if (Settings.System.NOTIFICATION_SOUND_CACHE_URI.equals(uri)) {
Andre Lago3fa139c2016-08-04 13:53:44 +0100605 cacheRingtoneSetting = Settings.System.NOTIFICATION_SOUND;
Jeff Sharkey413573a2016-02-22 17:52:45 -0700606 cacheName = Settings.System.NOTIFICATION_SOUND_CACHE;
607 } else if (Settings.System.ALARM_ALERT_CACHE_URI.equals(uri)) {
Andre Lago3fa139c2016-08-04 13:53:44 +0100608 cacheRingtoneSetting = Settings.System.ALARM_ALERT;
Jeff Sharkey413573a2016-02-22 17:52:45 -0700609 cacheName = Settings.System.ALARM_ALERT_CACHE;
610 } else {
611 throw new FileNotFoundException("Direct file access no longer supported; "
612 + "ringtone playback is available through android.media.Ringtone");
613 }
614
Andre Lago3fa139c2016-08-04 13:53:44 +0100615 int actualCacheOwner;
616 // Redirect cache to parent if ringtone setting is owned by profile parent
617 synchronized (mLock) {
618 actualCacheOwner = resolveOwningUserIdForSystemSettingLocked(userId,
619 cacheRingtoneSetting);
620 }
621 final File cacheFile = new File(getRingtoneCacheDir(actualCacheOwner), cacheName);
Jeff Sharkey413573a2016-02-22 17:52:45 -0700622 return ParcelFileDescriptor.open(cacheFile, ParcelFileDescriptor.parseMode(mode));
623 }
624
625 private File getRingtoneCacheDir(int userId) {
626 final File cacheDir = new File(Environment.getDataSystemDeDirectory(userId), "ringtones");
627 cacheDir.mkdir();
628 SELinux.restorecon(cacheDir);
629 return cacheDir;
Marco Nelissen69f593c2009-07-28 09:55:04 -0700630 }
Brad Fitzpatrick1bd62bd2010-03-08 18:30:52 -0800631
Eugene Suslad72c3972016-12-27 15:49:30 -0800632 /**
633 * Dump all settings as a proto buf.
634 *
635 * @param fd The file to dump to
636 */
637 void dumpProto(@NonNull FileDescriptor fd) {
638 ProtoOutputStream proto = new ProtoOutputStream(fd);
639
640 synchronized (mLock) {
641 SettingsProtoDumpUtil.dumpProtoLocked(mSettingsRegistry, proto);
642
643 }
644
645 proto.flush();
646 }
647
Dianne Hackborn32f40ee2016-10-20 15:54:14 -0700648 public void dumpInternal(FileDescriptor fd, PrintWriter pw, String[] args) {
Svetoslavb505ccc2015-02-17 12:41:04 -0800649 synchronized (mLock) {
650 final long identity = Binder.clearCallingIdentity();
651 try {
Dianne Hackborn32f40ee2016-10-20 15:54:14 -0700652 SparseBooleanArray users = mSettingsRegistry.getKnownUsersLocked();
Svetoslavb505ccc2015-02-17 12:41:04 -0800653 final int userCount = users.size();
654 for (int i = 0; i < userCount; i++) {
Dianne Hackborn32f40ee2016-10-20 15:54:14 -0700655 dumpForUserLocked(users.keyAt(i), pw);
Svetoslavb505ccc2015-02-17 12:41:04 -0800656 }
657 } finally {
658 Binder.restoreCallingIdentity(identity);
659 }
660 }
661 }
662
Svetoslav Ganova340bfd2016-08-02 18:24:49 -0700663 private void dumpForUserLocked(int userId, PrintWriter pw) {
Xiaohui Chen43765b72015-08-31 10:57:33 -0700664 if (userId == UserHandle.USER_SYSTEM) {
Svetoslavb505ccc2015-02-17 12:41:04 -0800665 pw.println("GLOBAL SETTINGS (user " + userId + ")");
Svetoslav Ganova340bfd2016-08-02 18:24:49 -0700666 SettingsState globalSettings = mSettingsRegistry.getSettingsLocked(
667 SETTINGS_TYPE_GLOBAL, UserHandle.USER_SYSTEM);
Dianne Hackborn32f40ee2016-10-20 15:54:14 -0700668 if (globalSettings != null) {
669 dumpSettingsLocked(globalSettings, pw);
Svetoslav Ganove080da92016-12-21 17:10:35 -0800670 pw.println();
671 globalSettings.dumpHistoricalOperations(pw);
Dianne Hackborn32f40ee2016-10-20 15:54:14 -0700672 }
Svetoslavb505ccc2015-02-17 12:41:04 -0800673 }
674
675 pw.println("SECURE SETTINGS (user " + userId + ")");
Svetoslav Ganova340bfd2016-08-02 18:24:49 -0700676 SettingsState secureSettings = mSettingsRegistry.getSettingsLocked(
677 SETTINGS_TYPE_SECURE, userId);
Dianne Hackborn32f40ee2016-10-20 15:54:14 -0700678 if (secureSettings != null) {
679 dumpSettingsLocked(secureSettings, pw);
Svetoslav Ganove080da92016-12-21 17:10:35 -0800680 pw.println();
681 secureSettings.dumpHistoricalOperations(pw);
Dianne Hackborn32f40ee2016-10-20 15:54:14 -0700682 }
Svetoslav Ganova340bfd2016-08-02 18:24:49 -0700683
Svetoslavb505ccc2015-02-17 12:41:04 -0800684 pw.println("SYSTEM SETTINGS (user " + userId + ")");
Svetoslav Ganova340bfd2016-08-02 18:24:49 -0700685 SettingsState systemSettings = mSettingsRegistry.getSettingsLocked(
686 SETTINGS_TYPE_SYSTEM, userId);
Dianne Hackborn32f40ee2016-10-20 15:54:14 -0700687 if (systemSettings != null) {
688 dumpSettingsLocked(systemSettings, pw);
Svetoslav Ganove080da92016-12-21 17:10:35 -0800689 pw.println();
690 systemSettings.dumpHistoricalOperations(pw);
Dianne Hackborn32f40ee2016-10-20 15:54:14 -0700691 }
Svetoslavb505ccc2015-02-17 12:41:04 -0800692 }
693
Dianne Hackborn32f40ee2016-10-20 15:54:14 -0700694 private void dumpSettingsLocked(SettingsState settingsState, PrintWriter pw) {
695 List<String> names = settingsState.getSettingNamesLocked();
Svetoslavb505ccc2015-02-17 12:41:04 -0800696
Dianne Hackborn32f40ee2016-10-20 15:54:14 -0700697 final int nameCount = names.size();
Svetoslavb505ccc2015-02-17 12:41:04 -0800698
Dianne Hackborn32f40ee2016-10-20 15:54:14 -0700699 for (int i = 0; i < nameCount; i++) {
700 String name = names.get(i);
701 Setting setting = settingsState.getSettingLocked(name);
702 pw.print("_id:"); pw.print(toDumpString(setting.getId()));
703 pw.print(" name:"); pw.print(toDumpString(name));
704 if (setting.getPackageName() != null) {
Svetoslav Ganove080da92016-12-21 17:10:35 -0800705 pw.print(" pkg:"); pw.print(setting.getPackageName());
Dianne Hackborn32f40ee2016-10-20 15:54:14 -0700706 }
707 pw.print(" value:"); pw.print(toDumpString(setting.getValue()));
Svetoslav Ganove080da92016-12-21 17:10:35 -0800708 if (setting.getDefaultValue() != null) {
709 pw.print(" default:"); pw.print(setting.getDefaultValue());
Eugene Suslad72c3972016-12-27 15:49:30 -0800710 pw.print(" defaultSystemSet:"); pw.print(setting.isDefaultFromSystem());
Svetoslav Ganove080da92016-12-21 17:10:35 -0800711 }
712 if (setting.getTag() != null) {
713 pw.print(" tag:"); pw.print(setting.getTag());
714 }
Svetoslavb505ccc2015-02-17 12:41:04 -0800715 pw.println();
Dianne Hackborn32f40ee2016-10-20 15:54:14 -0700716 }
Svetoslavb505ccc2015-02-17 12:41:04 -0800717 }
718
Svetoslav7e0683b2015-08-03 16:02:52 -0700719 private static String toDumpString(String s) {
Makoto Onuki3a2c35782015-06-18 11:21:58 -0700720 if (s != null) {
721 return s;
722 }
723 return "{null}";
724 }
725
Svetoslav683914b2015-01-15 14:22:26 -0800726 private void registerBroadcastReceivers() {
727 IntentFilter userFilter = new IntentFilter();
728 userFilter.addAction(Intent.ACTION_USER_REMOVED);
729 userFilter.addAction(Intent.ACTION_USER_STOPPED);
730
731 getContext().registerReceiver(new BroadcastReceiver() {
732 @Override
733 public void onReceive(Context context, Intent intent) {
734 final int userId = intent.getIntExtra(Intent.EXTRA_USER_HANDLE,
Xiaohui Chen43765b72015-08-31 10:57:33 -0700735 UserHandle.USER_SYSTEM);
Svetoslav683914b2015-01-15 14:22:26 -0800736
737 switch (intent.getAction()) {
738 case Intent.ACTION_USER_REMOVED: {
Svet Ganov53a441c2016-04-19 19:38:00 -0700739 synchronized (mLock) {
740 mSettingsRegistry.removeUserStateLocked(userId, true);
741 }
Svetoslav683914b2015-01-15 14:22:26 -0800742 } break;
743
744 case Intent.ACTION_USER_STOPPED: {
Svet Ganov53a441c2016-04-19 19:38:00 -0700745 synchronized (mLock) {
746 mSettingsRegistry.removeUserStateLocked(userId, false);
747 }
Svetoslav683914b2015-01-15 14:22:26 -0800748 } break;
749 }
750 }
751 }, userFilter);
752
753 PackageMonitor monitor = new PackageMonitor() {
754 @Override
755 public void onPackageRemoved(String packageName, int uid) {
756 synchronized (mLock) {
757 mSettingsRegistry.onPackageRemovedLocked(packageName,
758 UserHandle.getUserId(uid));
759 }
760 }
Mark Rathjend891f012017-01-19 04:10:37 +0000761
762 @Override
763 public void onUidRemoved(int uid) {
764 synchronized (mLock) {
765 mSettingsRegistry.onUidRemovedLocked(uid);
766 }
767 }
Svetoslav683914b2015-01-15 14:22:26 -0800768 };
769
770 // package changes
771 monitor.register(getContext(), BackgroundThread.getHandler().getLooper(),
772 UserHandle.ALL, true);
773 }
774
Svet Ganov53a441c2016-04-19 19:38:00 -0700775 private void startWatchingUserRestrictionChanges() {
776 // TODO: The current design of settings looking different based on user restrictions
777 // should be reworked to keep them separate and system code should check the setting
778 // first followed by checking the user restriction before performing an operation.
779 UserManagerInternal userManager = LocalServices.getService(UserManagerInternal.class);
780 userManager.addUserRestrictionsListener((int userId, Bundle newRestrictions,
781 Bundle prevRestrictions) -> {
782 // We are changing the settings affected by restrictions to their current
783 // value with a forced update to ensure that all cross profile dependencies
784 // are taken into account. Also make sure the settings update to.. the same
785 // value passes the security checks, so clear binder calling id.
Svetoslav Ganove080da92016-12-21 17:10:35 -0800786 if (newRestrictions.getBoolean(UserManager.DISALLOW_SHARE_LOCATION)
787 != prevRestrictions.getBoolean(UserManager.DISALLOW_SHARE_LOCATION)) {
Svet Ganov53a441c2016-04-19 19:38:00 -0700788 final long identity = Binder.clearCallingIdentity();
789 try {
790 synchronized (mLock) {
791 Setting setting = getSecureSetting(
792 Settings.Secure.LOCATION_PROVIDERS_ALLOWED, userId);
793 updateSecureSetting(Settings.Secure.LOCATION_PROVIDERS_ALLOWED,
Svetoslav Ganove080da92016-12-21 17:10:35 -0800794 setting != null ? setting.getValue() : null, null,
795 true, userId, true);
Svet Ganov53a441c2016-04-19 19:38:00 -0700796 }
797 } finally {
798 Binder.restoreCallingIdentity(identity);
799 }
800 }
Svetoslav Ganove080da92016-12-21 17:10:35 -0800801 if (newRestrictions.getBoolean(UserManager.DISALLOW_INSTALL_UNKNOWN_SOURCES)
802 != prevRestrictions.getBoolean(UserManager.DISALLOW_INSTALL_UNKNOWN_SOURCES)) {
Svet Ganov53a441c2016-04-19 19:38:00 -0700803 final long identity = Binder.clearCallingIdentity();
804 try {
805 synchronized (mLock) {
806 Setting setting = getGlobalSetting(Settings.Global.INSTALL_NON_MARKET_APPS);
Svetoslav Ganove080da92016-12-21 17:10:35 -0800807 String value = setting != null ? setting.getValue() : null;
Svet Ganov53a441c2016-04-19 19:38:00 -0700808 updateGlobalSetting(Settings.Global.INSTALL_NON_MARKET_APPS,
Svetoslav Ganove080da92016-12-21 17:10:35 -0800809 value, null, true, userId, true);
Svet Ganov53a441c2016-04-19 19:38:00 -0700810 }
811 } finally {
812 Binder.restoreCallingIdentity(identity);
813 }
814 }
Svetoslav Ganove080da92016-12-21 17:10:35 -0800815 if (newRestrictions.getBoolean(UserManager.DISALLOW_DEBUGGING_FEATURES)
816 != prevRestrictions.getBoolean(UserManager.DISALLOW_DEBUGGING_FEATURES)) {
Svet Ganov53a441c2016-04-19 19:38:00 -0700817 final long identity = Binder.clearCallingIdentity();
818 try {
819 synchronized (mLock) {
820 Setting setting = getGlobalSetting(Settings.Global.ADB_ENABLED);
Svetoslav Ganove080da92016-12-21 17:10:35 -0800821 String value = setting != null ? setting.getValue() : null;
Svet Ganov53a441c2016-04-19 19:38:00 -0700822 updateGlobalSetting(Settings.Global.ADB_ENABLED,
Svetoslav Ganove080da92016-12-21 17:10:35 -0800823 value, null, true, userId, true);
Svet Ganov53a441c2016-04-19 19:38:00 -0700824 }
825 } finally {
826 Binder.restoreCallingIdentity(identity);
827 }
828 }
Svetoslav Ganove080da92016-12-21 17:10:35 -0800829 if (newRestrictions.getBoolean(UserManager.ENSURE_VERIFY_APPS)
830 != prevRestrictions.getBoolean(UserManager.ENSURE_VERIFY_APPS)) {
Svet Ganov53a441c2016-04-19 19:38:00 -0700831 final long identity = Binder.clearCallingIdentity();
832 try {
833 synchronized (mLock) {
834 Setting enable = getGlobalSetting(
835 Settings.Global.PACKAGE_VERIFIER_ENABLE);
Svetoslav Ganove080da92016-12-21 17:10:35 -0800836 String enableValue = enable != null ? enable.getValue() : null;
Svet Ganov53a441c2016-04-19 19:38:00 -0700837 updateGlobalSetting(Settings.Global.PACKAGE_VERIFIER_ENABLE,
Svetoslav Ganove080da92016-12-21 17:10:35 -0800838 enableValue, null, true, userId, true);
Svet Ganov53a441c2016-04-19 19:38:00 -0700839 Setting include = getGlobalSetting(
840 Settings.Global.PACKAGE_VERIFIER_INCLUDE_ADB);
Svetoslav Ganove080da92016-12-21 17:10:35 -0800841 String includeValue = include != null ? include.getValue() : null;
Svet Ganov53a441c2016-04-19 19:38:00 -0700842 updateGlobalSetting(Settings.Global.PACKAGE_VERIFIER_INCLUDE_ADB,
Svetoslav Ganove080da92016-12-21 17:10:35 -0800843 includeValue, null, true, userId, true);
Svet Ganov53a441c2016-04-19 19:38:00 -0700844 }
845 } finally {
846 Binder.restoreCallingIdentity(identity);
847 }
848 }
Svetoslav Ganove080da92016-12-21 17:10:35 -0800849 if (newRestrictions.getBoolean(UserManager.DISALLOW_CONFIG_MOBILE_NETWORKS)
850 != prevRestrictions.getBoolean(UserManager.DISALLOW_CONFIG_MOBILE_NETWORKS)) {
Svet Ganov53a441c2016-04-19 19:38:00 -0700851 final long identity = Binder.clearCallingIdentity();
852 try {
853 synchronized (mLock) {
854 Setting setting = getGlobalSetting(
855 Settings.Global.PREFERRED_NETWORK_MODE);
Svetoslav Ganove080da92016-12-21 17:10:35 -0800856 String value = setting != null ? setting.getValue() : null;
Svet Ganov53a441c2016-04-19 19:38:00 -0700857 updateGlobalSetting(Settings.Global.PREFERRED_NETWORK_MODE,
Svetoslav Ganove080da92016-12-21 17:10:35 -0800858 value, null, true, userId, true);
Svet Ganov53a441c2016-04-19 19:38:00 -0700859 }
860 } finally {
861 Binder.restoreCallingIdentity(identity);
862 }
863 }
864 });
865 }
866
Svetoslav7ec28e82015-05-20 17:01:10 -0700867 private Cursor getAllGlobalSettings(String[] projection) {
Svetoslav683914b2015-01-15 14:22:26 -0800868 if (DEBUG) {
Svetoslav7ec28e82015-05-20 17:01:10 -0700869 Slog.v(LOG_TAG, "getAllGlobalSettings()");
Svetoslav683914b2015-01-15 14:22:26 -0800870 }
871
Svetoslav7ec28e82015-05-20 17:01:10 -0700872 synchronized (mLock) {
873 // Get the settings.
874 SettingsState settingsState = mSettingsRegistry.getSettingsLocked(
Svet Ganov53a441c2016-04-19 19:38:00 -0700875 SETTINGS_TYPE_GLOBAL, UserHandle.USER_SYSTEM);
Svetoslav683914b2015-01-15 14:22:26 -0800876
Chad Brubaker97bccee2017-01-05 15:51:41 -0800877 List<String> names = getSettingsNamesLocked(SETTINGS_TYPE_GLOBAL,
878 UserHandle.USER_SYSTEM);
Svetoslav683914b2015-01-15 14:22:26 -0800879
Svetoslav7ec28e82015-05-20 17:01:10 -0700880 final int nameCount = names.size();
Svetoslav683914b2015-01-15 14:22:26 -0800881
Svetoslav7ec28e82015-05-20 17:01:10 -0700882 String[] normalizedProjection = normalizeProjection(projection);
883 MatrixCursor result = new MatrixCursor(normalizedProjection, nameCount);
Svetoslav683914b2015-01-15 14:22:26 -0800884
Svetoslav7ec28e82015-05-20 17:01:10 -0700885 // Anyone can get the global settings, so no security checks.
886 for (int i = 0; i < nameCount; i++) {
887 String name = names.get(i);
888 Setting setting = settingsState.getSettingLocked(name);
889 appendSettingToCursor(result, setting);
890 }
891
892 return result;
Svetoslav683914b2015-01-15 14:22:26 -0800893 }
Svetoslav683914b2015-01-15 14:22:26 -0800894 }
895
Svetoslav7ec28e82015-05-20 17:01:10 -0700896 private Setting getGlobalSetting(String name) {
Svetoslav683914b2015-01-15 14:22:26 -0800897 if (DEBUG) {
898 Slog.v(LOG_TAG, "getGlobalSetting(" + name + ")");
899 }
900
Chad Brubaker97bccee2017-01-05 15:51:41 -0800901 // Ensure the caller can access the setting.
902 enforceSettingReadable(name, SETTINGS_TYPE_GLOBAL, UserHandle.getCallingUserId());
903
Svetoslav683914b2015-01-15 14:22:26 -0800904 // Get the value.
Svetoslav7ec28e82015-05-20 17:01:10 -0700905 synchronized (mLock) {
Svet Ganov53a441c2016-04-19 19:38:00 -0700906 return mSettingsRegistry.getSettingLocked(SETTINGS_TYPE_GLOBAL,
Xiaohui Chen43765b72015-08-31 10:57:33 -0700907 UserHandle.USER_SYSTEM, name);
Svetoslav683914b2015-01-15 14:22:26 -0800908 }
Svetoslav683914b2015-01-15 14:22:26 -0800909 }
910
Svetoslav Ganove080da92016-12-21 17:10:35 -0800911 private boolean updateGlobalSetting(String name, String value, String tag,
912 boolean makeDefault, int requestingUserId, boolean forceNotify) {
Svetoslav683914b2015-01-15 14:22:26 -0800913 if (DEBUG) {
Svetoslav Ganove080da92016-12-21 17:10:35 -0800914 Slog.v(LOG_TAG, "updateGlobalSetting(" + name + ", " + value + ", "
915 + ", " + tag + ", " + makeDefault + ", " + requestingUserId
916 + ", " + forceNotify + ")");
Svetoslav683914b2015-01-15 14:22:26 -0800917 }
Svetoslav Ganove080da92016-12-21 17:10:35 -0800918 return mutateGlobalSetting(name, value, tag, makeDefault, requestingUserId,
919 MUTATION_OPERATION_UPDATE, forceNotify, 0);
Svetoslav683914b2015-01-15 14:22:26 -0800920 }
921
Svetoslav Ganove080da92016-12-21 17:10:35 -0800922 private boolean insertGlobalSetting(String name, String value, String tag,
923 boolean makeDefault, int requestingUserId, boolean forceNotify) {
Svetoslav7ec28e82015-05-20 17:01:10 -0700924 if (DEBUG) {
Svetoslav Ganove080da92016-12-21 17:10:35 -0800925 Slog.v(LOG_TAG, "insertGlobalSetting(" + name + ", " + value + ", "
926 + ", " + tag + ", " + makeDefault + ", " + requestingUserId
927 + ", " + forceNotify + ")");
Svetoslav7ec28e82015-05-20 17:01:10 -0700928 }
Svetoslav Ganove080da92016-12-21 17:10:35 -0800929 return mutateGlobalSetting(name, value, tag, makeDefault, requestingUserId,
930 MUTATION_OPERATION_INSERT, forceNotify, 0);
Svetoslav7ec28e82015-05-20 17:01:10 -0700931 }
932
Svet Ganov53a441c2016-04-19 19:38:00 -0700933 private boolean deleteGlobalSetting(String name, int requestingUserId, boolean forceNotify) {
Svetoslav683914b2015-01-15 14:22:26 -0800934 if (DEBUG) {
Svetoslav Ganove080da92016-12-21 17:10:35 -0800935 Slog.v(LOG_TAG, "deleteGlobalSetting(" + name + ", " + requestingUserId
936 + ", " + forceNotify + ")");
Svetoslav683914b2015-01-15 14:22:26 -0800937 }
Svetoslav Ganove080da92016-12-21 17:10:35 -0800938 return mutateGlobalSetting(name, null, null, false, requestingUserId,
939 MUTATION_OPERATION_DELETE, forceNotify, 0);
Svetoslav683914b2015-01-15 14:22:26 -0800940 }
941
Svetoslav Ganove080da92016-12-21 17:10:35 -0800942 private void resetGlobalSetting(int requestingUserId, int mode, String tag) {
943 if (DEBUG) {
944 Slog.v(LOG_TAG, "resetGlobalSetting(" + requestingUserId + ", "
945 + mode + ", " + tag + ")");
946 }
947 mutateGlobalSetting(null, null, tag, false, requestingUserId,
948 MUTATION_OPERATION_RESET, false, mode);
949 }
950
951 private boolean mutateGlobalSetting(String name, String value, String tag,
952 boolean makeDefault, int requestingUserId, int operation, boolean forceNotify,
953 int mode) {
Svetoslav683914b2015-01-15 14:22:26 -0800954 // Make sure the caller can change the settings - treated as secure.
955 enforceWritePermission(Manifest.permission.WRITE_SECURE_SETTINGS);
956
Svetoslav683914b2015-01-15 14:22:26 -0800957 // Resolve the userId on whose behalf the call is made.
958 final int callingUserId = resolveCallingUserIdEnforcingPermissionsLocked(requestingUserId);
959
Makoto Onuki28da2e32015-11-20 11:30:44 -0800960 // If this is a setting that is currently restricted for this user, do not allow
961 // unrestricting changes.
Svetoslav Ganove080da92016-12-21 17:10:35 -0800962 if (name != null && isGlobalOrSecureSettingRestrictedForUser(name, callingUserId, value,
Victor Chang9c7b7062016-07-12 23:47:29 +0100963 Binder.getCallingUid())) {
Svetoslav683914b2015-01-15 14:22:26 -0800964 return false;
965 }
966
967 // Perform the mutation.
Svetoslav7ec28e82015-05-20 17:01:10 -0700968 synchronized (mLock) {
969 switch (operation) {
970 case MUTATION_OPERATION_INSERT: {
Svetoslav Ganove080da92016-12-21 17:10:35 -0800971 return mSettingsRegistry.insertSettingLocked(SETTINGS_TYPE_GLOBAL,
972 UserHandle.USER_SYSTEM, name, value, tag, makeDefault,
Svetoslav Ganov5fb405b2017-01-26 22:43:09 -0800973 getCallingPackage(), forceNotify, CRITICAL_GLOBAL_SETTINGS);
Svetoslav7ec28e82015-05-20 17:01:10 -0700974 }
Svetoslav683914b2015-01-15 14:22:26 -0800975
Svetoslav7ec28e82015-05-20 17:01:10 -0700976 case MUTATION_OPERATION_DELETE: {
Svet Ganov53a441c2016-04-19 19:38:00 -0700977 return mSettingsRegistry.deleteSettingLocked(SETTINGS_TYPE_GLOBAL,
Svetoslav Ganov5fb405b2017-01-26 22:43:09 -0800978 UserHandle.USER_SYSTEM, name, forceNotify, CRITICAL_GLOBAL_SETTINGS);
Svetoslav7ec28e82015-05-20 17:01:10 -0700979 }
Svetoslav683914b2015-01-15 14:22:26 -0800980
Svetoslav7ec28e82015-05-20 17:01:10 -0700981 case MUTATION_OPERATION_UPDATE: {
Svetoslav Ganove080da92016-12-21 17:10:35 -0800982 return mSettingsRegistry.updateSettingLocked(SETTINGS_TYPE_GLOBAL,
983 UserHandle.USER_SYSTEM, name, value, tag, makeDefault,
Svetoslav Ganov5fb405b2017-01-26 22:43:09 -0800984 getCallingPackage(), forceNotify, CRITICAL_GLOBAL_SETTINGS);
Svetoslav7ec28e82015-05-20 17:01:10 -0700985 }
Svetoslav Ganove080da92016-12-21 17:10:35 -0800986
987 case MUTATION_OPERATION_RESET: {
988 mSettingsRegistry.resetSettingsLocked(SETTINGS_TYPE_GLOBAL,
989 UserHandle.USER_SYSTEM, getCallingPackage(), mode, tag);
990 } return true;
Svetoslav683914b2015-01-15 14:22:26 -0800991 }
992 }
993
994 return false;
995 }
996
Christopher Tateb218e762017-04-05 16:34:07 -0700997 private PackageInfo getCallingPackageInfo(int userId) {
998 try {
999 return mPackageManager.getPackageInfo(getCallingPackage(),
1000 PackageManager.GET_SIGNATURES, userId);
1001 } catch (RemoteException e) {
1002 throw new IllegalStateException("Package " + getCallingPackage() + " doesn't exist");
1003 }
1004 }
1005
Svetoslav7ec28e82015-05-20 17:01:10 -07001006 private Cursor getAllSecureSettings(int userId, String[] projection) {
Svetoslav683914b2015-01-15 14:22:26 -08001007 if (DEBUG) {
1008 Slog.v(LOG_TAG, "getAllSecureSettings(" + userId + ")");
1009 }
1010
1011 // Resolve the userId on whose behalf the call is made.
1012 final int callingUserId = resolveCallingUserIdEnforcingPermissionsLocked(userId);
1013
Christopher Tateb218e762017-04-05 16:34:07 -07001014 // The relevant "calling package" userId will be the owning userId for some
1015 // profiles, and we can't do the lookup inside our [lock held] loop, so work out
1016 // up front who the effective "new SSAID" user ID for that settings name will be.
1017 final int ssaidUserId = resolveOwningUserIdForSecureSettingLocked(callingUserId,
1018 Settings.Secure.ANDROID_ID);
1019 final PackageInfo ssaidCallingPkg = getCallingPackageInfo(ssaidUserId);
1020
Svetoslav7ec28e82015-05-20 17:01:10 -07001021 synchronized (mLock) {
Chad Brubaker97bccee2017-01-05 15:51:41 -08001022 List<String> names = getSettingsNamesLocked(SETTINGS_TYPE_SECURE, callingUserId);
Svetoslav683914b2015-01-15 14:22:26 -08001023
Svetoslav7ec28e82015-05-20 17:01:10 -07001024 final int nameCount = names.size();
Svetoslav683914b2015-01-15 14:22:26 -08001025
Svetoslav7ec28e82015-05-20 17:01:10 -07001026 String[] normalizedProjection = normalizeProjection(projection);
1027 MatrixCursor result = new MatrixCursor(normalizedProjection, nameCount);
Svetoslav683914b2015-01-15 14:22:26 -08001028
Svetoslav7ec28e82015-05-20 17:01:10 -07001029 for (int i = 0; i < nameCount; i++) {
1030 String name = names.get(i);
1031 // Determine the owning user as some profile settings are cloned from the parent.
1032 final int owningUserId = resolveOwningUserIdForSecureSettingLocked(callingUserId,
1033 name);
Svetoslav683914b2015-01-15 14:22:26 -08001034
Alex Klyubin1991f572017-03-03 14:08:36 -08001035 if (!isSecureSettingAccessible(name, callingUserId, owningUserId)) {
1036 // This caller is not permitted to access this setting. Pretend the setting
1037 // doesn't exist.
Svetoslav Ganov83a1f7f2016-04-27 13:50:49 -07001038 continue;
Svetoslav7ec28e82015-05-20 17:01:10 -07001039 }
Svetoslav683914b2015-01-15 14:22:26 -08001040
Mark Rathjen7599f132017-01-23 14:15:54 -08001041 // As of Android O, the SSAID is read from an app-specific entry in table
Mark Rathjend891f012017-01-19 04:10:37 +00001042 // SETTINGS_FILE_SSAID, unless accessed by a system process.
1043 final Setting setting;
1044 if (isNewSsaidSetting(name)) {
Christopher Tateb218e762017-04-05 16:34:07 -07001045 setting = getSsaidSettingLocked(ssaidCallingPkg, owningUserId);
Mark Rathjend891f012017-01-19 04:10:37 +00001046 } else {
1047 setting = mSettingsRegistry.getSettingLocked(SETTINGS_TYPE_SECURE, owningUserId,
1048 name);
1049 }
Svetoslav7ec28e82015-05-20 17:01:10 -07001050 appendSettingToCursor(result, setting);
Svetoslav683914b2015-01-15 14:22:26 -08001051 }
1052
Svetoslav7ec28e82015-05-20 17:01:10 -07001053 return result;
Svetoslav683914b2015-01-15 14:22:26 -08001054 }
Svetoslav683914b2015-01-15 14:22:26 -08001055 }
1056
Svetoslav7ec28e82015-05-20 17:01:10 -07001057 private Setting getSecureSetting(String name, int requestingUserId) {
Svetoslav683914b2015-01-15 14:22:26 -08001058 if (DEBUG) {
1059 Slog.v(LOG_TAG, "getSecureSetting(" + name + ", " + requestingUserId + ")");
1060 }
1061
1062 // Resolve the userId on whose behalf the call is made.
1063 final int callingUserId = resolveCallingUserIdEnforcingPermissionsLocked(requestingUserId);
1064
Chad Brubaker97bccee2017-01-05 15:51:41 -08001065 // Ensure the caller can access the setting.
Chad Brubaker7fe0a5a2017-02-18 11:41:26 -08001066 enforceSettingReadable(name, SETTINGS_TYPE_SECURE, UserHandle.getCallingUserId());
Chad Brubaker97bccee2017-01-05 15:51:41 -08001067
Svetoslav683914b2015-01-15 14:22:26 -08001068 // Determine the owning user as some profile settings are cloned from the parent.
1069 final int owningUserId = resolveOwningUserIdForSecureSettingLocked(callingUserId, name);
1070
Alex Klyubin1991f572017-03-03 14:08:36 -08001071 if (!isSecureSettingAccessible(name, callingUserId, owningUserId)) {
1072 // This caller is not permitted to access this setting. Pretend the setting doesn't
1073 // exist.
Dianne Hackborn32f40ee2016-10-20 15:54:14 -07001074 SettingsState settings = mSettingsRegistry.getSettingsLocked(SETTINGS_TYPE_SECURE,
1075 owningUserId);
1076 return settings != null ? settings.getNullSetting() : null;
Svetoslav683914b2015-01-15 14:22:26 -08001077 }
1078
Christopher Tateb218e762017-04-05 16:34:07 -07001079 // As of Android O, the SSAID is read from an app-specific entry in table
1080 // SETTINGS_FILE_SSAID, unless accessed by a system process.
1081 if (isNewSsaidSetting(name)) {
1082 PackageInfo callingPkg = getCallingPackageInfo(owningUserId);
1083 synchronized (mLock) {
1084 return getSsaidSettingLocked(callingPkg, owningUserId);
Mark Rathjend891f012017-01-19 04:10:37 +00001085 }
Christopher Tateb218e762017-04-05 16:34:07 -07001086 }
Mark Rathjend891f012017-01-19 04:10:37 +00001087
Christopher Tateb218e762017-04-05 16:34:07 -07001088 // Not the SSAID; do a straight lookup
1089 synchronized (mLock) {
Svet Ganov53a441c2016-04-19 19:38:00 -07001090 return mSettingsRegistry.getSettingLocked(SETTINGS_TYPE_SECURE,
Svetoslav7ec28e82015-05-20 17:01:10 -07001091 owningUserId, name);
1092 }
Svetoslav683914b2015-01-15 14:22:26 -08001093 }
1094
Mark Rathjend891f012017-01-19 04:10:37 +00001095 private boolean isNewSsaidSetting(String name) {
1096 return Settings.Secure.ANDROID_ID.equals(name)
1097 && UserHandle.getAppId(Binder.getCallingUid()) >= Process.FIRST_APPLICATION_UID;
1098 }
1099
Christopher Tateb218e762017-04-05 16:34:07 -07001100 private Setting getSsaidSettingLocked(PackageInfo callingPkg, int owningUserId) {
Mark Rathjend891f012017-01-19 04:10:37 +00001101 // Get uid of caller (key) used to store ssaid value
1102 String name = Integer.toString(
1103 UserHandle.getUid(owningUserId, UserHandle.getAppId(Binder.getCallingUid())));
1104
1105 if (DEBUG) {
1106 Slog.v(LOG_TAG, "getSsaidSettingLocked(" + name + "," + owningUserId + ")");
1107 }
1108
1109 // Retrieve the ssaid from the table if present.
1110 final Setting ssaid = mSettingsRegistry.getSettingLocked(SETTINGS_TYPE_SSAID, owningUserId,
1111 name);
Chad Brubaker0d277a72017-04-12 16:56:53 -07001112 // If the app is an Instant App use its stored SSAID instead of our own.
1113 final String instantSsaid;
1114 final long token = Binder.clearCallingIdentity();
1115 try {
1116 instantSsaid = mPackageManager.getInstantAppAndroidId(callingPkg.packageName,
1117 owningUserId);
1118 } catch (RemoteException e) {
1119 Slog.e(LOG_TAG, "Failed to get Instant App Android ID", e);
1120 return null;
1121 } finally {
1122 Binder.restoreCallingIdentity(token);
1123 }
1124 if (instantSsaid != null) {
1125 // Use the stored value if it is still valid.
1126 if (ssaid != null && instantSsaid.equals(ssaid.getValue())) {
1127 return ssaid;
1128 }
1129 // The value has changed, update the stored value.
1130 final SettingsState ssaidSettings = mSettingsRegistry.getSettingsLocked(
1131 SETTINGS_TYPE_SSAID, owningUserId);
1132 final boolean success = ssaidSettings.insertSettingLocked(name, instantSsaid, null,
1133 true, callingPkg.packageName);
1134 if (!success) {
1135 throw new IllegalStateException("Failed to update instant app android id");
1136 }
1137 return mSettingsRegistry.getSettingLocked(SETTINGS_TYPE_SSAID, owningUserId, name);
1138 }
Mark Rathjend891f012017-01-19 04:10:37 +00001139
1140 // Lazy initialize ssaid if not yet present in ssaid table.
Mark Rathjenea617592017-01-18 23:03:41 -08001141 if (ssaid == null || ssaid.isNull() || ssaid.getValue() == null) {
Christopher Tateb218e762017-04-05 16:34:07 -07001142 return mSettingsRegistry.generateSsaidLocked(callingPkg, owningUserId);
Mark Rathjend891f012017-01-19 04:10:37 +00001143 }
1144
1145 return ssaid;
1146 }
1147
Svetoslav Ganove080da92016-12-21 17:10:35 -08001148 private boolean insertSecureSetting(String name, String value, String tag,
1149 boolean makeDefault, int requestingUserId, boolean forceNotify) {
Svetoslav683914b2015-01-15 14:22:26 -08001150 if (DEBUG) {
Svetoslav7ec28e82015-05-20 17:01:10 -07001151 Slog.v(LOG_TAG, "insertSecureSetting(" + name + ", " + value + ", "
Svetoslav Ganove080da92016-12-21 17:10:35 -08001152 + ", " + tag + ", " + makeDefault + ", " + requestingUserId
1153 + ", " + forceNotify + ")");
Svetoslav683914b2015-01-15 14:22:26 -08001154 }
1155
Svetoslav Ganove080da92016-12-21 17:10:35 -08001156 return mutateSecureSetting(name, value, tag, makeDefault, requestingUserId,
1157 MUTATION_OPERATION_INSERT, forceNotify, 0);
Svetoslav683914b2015-01-15 14:22:26 -08001158 }
1159
Svet Ganov53a441c2016-04-19 19:38:00 -07001160 private boolean deleteSecureSetting(String name, int requestingUserId, boolean forceNotify) {
Svetoslav683914b2015-01-15 14:22:26 -08001161 if (DEBUG) {
Svetoslav Ganove080da92016-12-21 17:10:35 -08001162 Slog.v(LOG_TAG, "deleteSecureSetting(" + name + ", " + requestingUserId
1163 + ", " + forceNotify + ")");
Svetoslav683914b2015-01-15 14:22:26 -08001164 }
1165
Svetoslav Ganove080da92016-12-21 17:10:35 -08001166 return mutateSecureSetting(name, null, null, false, requestingUserId,
1167 MUTATION_OPERATION_DELETE, forceNotify, 0);
Svetoslav683914b2015-01-15 14:22:26 -08001168 }
1169
Svetoslav Ganove080da92016-12-21 17:10:35 -08001170 private boolean updateSecureSetting(String name, String value, String tag,
1171 boolean makeDefault, int requestingUserId, boolean forceNotify) {
Svetoslav683914b2015-01-15 14:22:26 -08001172 if (DEBUG) {
Svetoslav7ec28e82015-05-20 17:01:10 -07001173 Slog.v(LOG_TAG, "updateSecureSetting(" + name + ", " + value + ", "
Svetoslav Ganove080da92016-12-21 17:10:35 -08001174 + ", " + tag + ", " + makeDefault + ", " + requestingUserId
1175 + ", " + forceNotify +")");
Svetoslav683914b2015-01-15 14:22:26 -08001176 }
1177
Svetoslav Ganove080da92016-12-21 17:10:35 -08001178 return mutateSecureSetting(name, value, tag, makeDefault, requestingUserId,
1179 MUTATION_OPERATION_UPDATE, forceNotify, 0);
Svetoslav683914b2015-01-15 14:22:26 -08001180 }
1181
Svetoslav Ganove080da92016-12-21 17:10:35 -08001182 private void resetSecureSetting(int requestingUserId, int mode, String tag) {
1183 if (DEBUG) {
1184 Slog.v(LOG_TAG, "resetSecureSetting(" + requestingUserId + ", "
1185 + mode + ", " + tag + ")");
1186 }
1187
1188 mutateSecureSetting(null, null, tag, false, requestingUserId,
1189 MUTATION_OPERATION_RESET, false, mode);
1190 }
1191
1192 private boolean mutateSecureSetting(String name, String value, String tag,
1193 boolean makeDefault, int requestingUserId, int operation, boolean forceNotify,
1194 int mode) {
Svetoslav683914b2015-01-15 14:22:26 -08001195 // Make sure the caller can change the settings.
1196 enforceWritePermission(Manifest.permission.WRITE_SECURE_SETTINGS);
1197
Svetoslav683914b2015-01-15 14:22:26 -08001198 // Resolve the userId on whose behalf the call is made.
1199 final int callingUserId = resolveCallingUserIdEnforcingPermissionsLocked(requestingUserId);
1200
Makoto Onuki28da2e32015-11-20 11:30:44 -08001201 // If this is a setting that is currently restricted for this user, do not allow
1202 // unrestricting changes.
Svetoslav Ganove080da92016-12-21 17:10:35 -08001203 if (name != null && isGlobalOrSecureSettingRestrictedForUser(name, callingUserId, value,
Victor Chang9c7b7062016-07-12 23:47:29 +01001204 Binder.getCallingUid())) {
Svetoslav683914b2015-01-15 14:22:26 -08001205 return false;
1206 }
1207
1208 // Determine the owning user as some profile settings are cloned from the parent.
1209 final int owningUserId = resolveOwningUserIdForSecureSettingLocked(callingUserId, name);
1210
1211 // Only the owning user can change the setting.
1212 if (owningUserId != callingUserId) {
1213 return false;
1214 }
1215
1216 // Special cases for location providers (sigh).
1217 if (Settings.Secure.LOCATION_PROVIDERS_ALLOWED.equals(name)) {
Svetoslav Ganove080da92016-12-21 17:10:35 -08001218 return updateLocationProvidersAllowedLocked(value, tag, owningUserId, makeDefault,
1219 forceNotify);
Svetoslav683914b2015-01-15 14:22:26 -08001220 }
1221
1222 // Mutate the value.
Svetoslav7ec28e82015-05-20 17:01:10 -07001223 synchronized (mLock) {
1224 switch (operation) {
1225 case MUTATION_OPERATION_INSERT: {
Svet Ganov53a441c2016-04-19 19:38:00 -07001226 return mSettingsRegistry.insertSettingLocked(SETTINGS_TYPE_SECURE,
Svetoslav Ganove080da92016-12-21 17:10:35 -08001227 owningUserId, name, value, tag, makeDefault,
Svetoslav Ganov5fb405b2017-01-26 22:43:09 -08001228 getCallingPackage(), forceNotify, CRITICAL_SECURE_SETTINGS);
Svetoslav7ec28e82015-05-20 17:01:10 -07001229 }
Svetoslav683914b2015-01-15 14:22:26 -08001230
Svetoslav7ec28e82015-05-20 17:01:10 -07001231 case MUTATION_OPERATION_DELETE: {
Svet Ganov53a441c2016-04-19 19:38:00 -07001232 return mSettingsRegistry.deleteSettingLocked(SETTINGS_TYPE_SECURE,
Svetoslav Ganov5fb405b2017-01-26 22:43:09 -08001233 owningUserId, name, forceNotify, CRITICAL_SECURE_SETTINGS);
Svetoslav7ec28e82015-05-20 17:01:10 -07001234 }
Svetoslav683914b2015-01-15 14:22:26 -08001235
Svetoslav7ec28e82015-05-20 17:01:10 -07001236 case MUTATION_OPERATION_UPDATE: {
Svet Ganov53a441c2016-04-19 19:38:00 -07001237 return mSettingsRegistry.updateSettingLocked(SETTINGS_TYPE_SECURE,
Svetoslav Ganove080da92016-12-21 17:10:35 -08001238 owningUserId, name, value, tag, makeDefault,
Svetoslav Ganov5fb405b2017-01-26 22:43:09 -08001239 getCallingPackage(), forceNotify, CRITICAL_SECURE_SETTINGS);
Svetoslav7ec28e82015-05-20 17:01:10 -07001240 }
Svetoslav Ganove080da92016-12-21 17:10:35 -08001241
1242 case MUTATION_OPERATION_RESET: {
1243 mSettingsRegistry.resetSettingsLocked(SETTINGS_TYPE_SECURE,
1244 UserHandle.USER_SYSTEM, getCallingPackage(), mode, tag);
1245 } return true;
Svetoslav683914b2015-01-15 14:22:26 -08001246 }
1247 }
1248
1249 return false;
1250 }
1251
Svetoslav7ec28e82015-05-20 17:01:10 -07001252 private Cursor getAllSystemSettings(int userId, String[] projection) {
Svetoslav683914b2015-01-15 14:22:26 -08001253 if (DEBUG) {
Svetoslav7ec28e82015-05-20 17:01:10 -07001254 Slog.v(LOG_TAG, "getAllSecureSystem(" + userId + ")");
Svetoslav683914b2015-01-15 14:22:26 -08001255 }
1256
1257 // Resolve the userId on whose behalf the call is made.
1258 final int callingUserId = resolveCallingUserIdEnforcingPermissionsLocked(userId);
1259
Svetoslav7ec28e82015-05-20 17:01:10 -07001260 synchronized (mLock) {
Chad Brubaker97bccee2017-01-05 15:51:41 -08001261 List<String> names = getSettingsNamesLocked(SETTINGS_TYPE_SYSTEM, callingUserId);
Svetoslav683914b2015-01-15 14:22:26 -08001262
Svetoslav7ec28e82015-05-20 17:01:10 -07001263 final int nameCount = names.size();
Svetoslav683914b2015-01-15 14:22:26 -08001264
Svetoslav7ec28e82015-05-20 17:01:10 -07001265 String[] normalizedProjection = normalizeProjection(projection);
1266 MatrixCursor result = new MatrixCursor(normalizedProjection, nameCount);
Svetoslav683914b2015-01-15 14:22:26 -08001267
Svetoslav7ec28e82015-05-20 17:01:10 -07001268 for (int i = 0; i < nameCount; i++) {
1269 String name = names.get(i);
Svetoslav683914b2015-01-15 14:22:26 -08001270
Svetoslav7ec28e82015-05-20 17:01:10 -07001271 // Determine the owning user as some profile settings are cloned from the parent.
1272 final int owningUserId = resolveOwningUserIdForSystemSettingLocked(callingUserId,
1273 name);
Svetoslav683914b2015-01-15 14:22:26 -08001274
Svetoslav7ec28e82015-05-20 17:01:10 -07001275 Setting setting = mSettingsRegistry.getSettingLocked(
Svet Ganov53a441c2016-04-19 19:38:00 -07001276 SETTINGS_TYPE_SYSTEM, owningUserId, name);
Svetoslav7ec28e82015-05-20 17:01:10 -07001277 appendSettingToCursor(result, setting);
1278 }
1279
1280 return result;
Svetoslav683914b2015-01-15 14:22:26 -08001281 }
Svetoslav683914b2015-01-15 14:22:26 -08001282 }
1283
Svetoslav7ec28e82015-05-20 17:01:10 -07001284 private Setting getSystemSetting(String name, int requestingUserId) {
Svetoslav683914b2015-01-15 14:22:26 -08001285 if (DEBUG) {
1286 Slog.v(LOG_TAG, "getSystemSetting(" + name + ", " + requestingUserId + ")");
1287 }
1288
1289 // Resolve the userId on whose behalf the call is made.
1290 final int callingUserId = resolveCallingUserIdEnforcingPermissionsLocked(requestingUserId);
1291
Chad Brubaker97bccee2017-01-05 15:51:41 -08001292 // Ensure the caller can access the setting.
Chad Brubaker7fe0a5a2017-02-18 11:41:26 -08001293 enforceSettingReadable(name, SETTINGS_TYPE_SYSTEM, UserHandle.getCallingUserId());
Chad Brubaker97bccee2017-01-05 15:51:41 -08001294
Svetoslav683914b2015-01-15 14:22:26 -08001295 // Determine the owning user as some profile settings are cloned from the parent.
1296 final int owningUserId = resolveOwningUserIdForSystemSettingLocked(callingUserId, name);
1297
1298 // Get the value.
Svetoslav7ec28e82015-05-20 17:01:10 -07001299 synchronized (mLock) {
Svet Ganov53a441c2016-04-19 19:38:00 -07001300 return mSettingsRegistry.getSettingLocked(SETTINGS_TYPE_SYSTEM, owningUserId, name);
Svetoslav7ec28e82015-05-20 17:01:10 -07001301 }
Svetoslav683914b2015-01-15 14:22:26 -08001302 }
1303
Svetoslav7ec28e82015-05-20 17:01:10 -07001304 private boolean insertSystemSetting(String name, String value, int requestingUserId) {
Svetoslav683914b2015-01-15 14:22:26 -08001305 if (DEBUG) {
Svetoslav7ec28e82015-05-20 17:01:10 -07001306 Slog.v(LOG_TAG, "insertSystemSetting(" + name + ", " + value + ", "
Svetoslav683914b2015-01-15 14:22:26 -08001307 + requestingUserId + ")");
1308 }
1309
Svetoslav7ec28e82015-05-20 17:01:10 -07001310 return mutateSystemSetting(name, value, requestingUserId, MUTATION_OPERATION_INSERT);
Svetoslav683914b2015-01-15 14:22:26 -08001311 }
1312
Svetoslav7ec28e82015-05-20 17:01:10 -07001313 private boolean deleteSystemSetting(String name, int requestingUserId) {
Svetoslav683914b2015-01-15 14:22:26 -08001314 if (DEBUG) {
Svetoslav7ec28e82015-05-20 17:01:10 -07001315 Slog.v(LOG_TAG, "deleteSystemSetting(" + name + ", " + requestingUserId + ")");
Svetoslav683914b2015-01-15 14:22:26 -08001316 }
1317
Svetoslav7ec28e82015-05-20 17:01:10 -07001318 return mutateSystemSetting(name, null, requestingUserId, MUTATION_OPERATION_DELETE);
Svetoslav683914b2015-01-15 14:22:26 -08001319 }
1320
Svetoslav7ec28e82015-05-20 17:01:10 -07001321 private boolean updateSystemSetting(String name, String value, int requestingUserId) {
Svetoslav683914b2015-01-15 14:22:26 -08001322 if (DEBUG) {
Svetoslav7ec28e82015-05-20 17:01:10 -07001323 Slog.v(LOG_TAG, "updateSystemSetting(" + name + ", " + value + ", "
Svetoslav683914b2015-01-15 14:22:26 -08001324 + requestingUserId + ")");
1325 }
1326
Svetoslav7ec28e82015-05-20 17:01:10 -07001327 return mutateSystemSetting(name, value, requestingUserId, MUTATION_OPERATION_UPDATE);
Svetoslav683914b2015-01-15 14:22:26 -08001328 }
1329
Svetoslav7ec28e82015-05-20 17:01:10 -07001330 private boolean mutateSystemSetting(String name, String value, int runAsUserId,
Svetoslav683914b2015-01-15 14:22:26 -08001331 int operation) {
Billy Lau6ad2d662015-07-18 00:26:58 +01001332 if (!hasWriteSecureSettingsPermission()) {
1333 // If the caller doesn't hold WRITE_SECURE_SETTINGS, we verify whether this
1334 // operation is allowed for the calling package through appops.
1335 if (!Settings.checkAndNoteWriteSettingsOperation(getContext(),
1336 Binder.getCallingUid(), getCallingPackage(), true)) {
1337 return false;
1338 }
Svetoslav683914b2015-01-15 14:22:26 -08001339 }
1340
Svetoslav683914b2015-01-15 14:22:26 -08001341 // Resolve the userId on whose behalf the call is made.
1342 final int callingUserId = resolveCallingUserIdEnforcingPermissionsLocked(runAsUserId);
1343
Svetoslavd8d25e02015-11-20 13:09:26 -08001344 // Enforce what the calling package can mutate the system settings.
1345 enforceRestrictedSystemSettingsMutationForCallingPackage(operation, name, callingUserId);
1346
Svetoslav683914b2015-01-15 14:22:26 -08001347 // Determine the owning user as some profile settings are cloned from the parent.
1348 final int owningUserId = resolveOwningUserIdForSystemSettingLocked(callingUserId, name);
1349
1350 // Only the owning user id can change the setting.
1351 if (owningUserId != callingUserId) {
1352 return false;
1353 }
1354
Jeff Sharkey413573a2016-02-22 17:52:45 -07001355 // Invalidate any relevant cache files
1356 String cacheName = null;
1357 if (Settings.System.RINGTONE.equals(name)) {
1358 cacheName = Settings.System.RINGTONE_CACHE;
1359 } else if (Settings.System.NOTIFICATION_SOUND.equals(name)) {
1360 cacheName = Settings.System.NOTIFICATION_SOUND_CACHE;
1361 } else if (Settings.System.ALARM_ALERT.equals(name)) {
1362 cacheName = Settings.System.ALARM_ALERT_CACHE;
1363 }
1364 if (cacheName != null) {
1365 final File cacheFile = new File(
Andre Lago3fa139c2016-08-04 13:53:44 +01001366 getRingtoneCacheDir(owningUserId), cacheName);
Jeff Sharkey413573a2016-02-22 17:52:45 -07001367 cacheFile.delete();
1368 }
1369
Svetoslav683914b2015-01-15 14:22:26 -08001370 // Mutate the value.
Svetoslav7ec28e82015-05-20 17:01:10 -07001371 synchronized (mLock) {
1372 switch (operation) {
1373 case MUTATION_OPERATION_INSERT: {
1374 validateSystemSettingValue(name, value);
Svet Ganov53a441c2016-04-19 19:38:00 -07001375 return mSettingsRegistry.insertSettingLocked(SETTINGS_TYPE_SYSTEM,
Svetoslav Ganov5fb405b2017-01-26 22:43:09 -08001376 owningUserId, name, value, null, false, getCallingPackage(),
1377 false, null);
Svetoslav7ec28e82015-05-20 17:01:10 -07001378 }
1379
1380 case MUTATION_OPERATION_DELETE: {
Svet Ganov53a441c2016-04-19 19:38:00 -07001381 return mSettingsRegistry.deleteSettingLocked(SETTINGS_TYPE_SYSTEM,
Svetoslav Ganov5fb405b2017-01-26 22:43:09 -08001382 owningUserId, name, false, null);
Svetoslav7ec28e82015-05-20 17:01:10 -07001383 }
1384
1385 case MUTATION_OPERATION_UPDATE: {
1386 validateSystemSettingValue(name, value);
Svet Ganov53a441c2016-04-19 19:38:00 -07001387 return mSettingsRegistry.updateSettingLocked(SETTINGS_TYPE_SYSTEM,
Svetoslav Ganov5fb405b2017-01-26 22:43:09 -08001388 owningUserId, name, value, null, false, getCallingPackage(),
1389 false, null);
Svetoslav7ec28e82015-05-20 17:01:10 -07001390 }
Svetoslav683914b2015-01-15 14:22:26 -08001391 }
1392
Svetoslav7ec28e82015-05-20 17:01:10 -07001393 return false;
Svetoslav683914b2015-01-15 14:22:26 -08001394 }
Svetoslav683914b2015-01-15 14:22:26 -08001395 }
1396
Billy Lau6ad2d662015-07-18 00:26:58 +01001397 private boolean hasWriteSecureSettingsPermission() {
Svetoslavf41334b2015-06-23 12:06:03 -07001398 // Write secure settings is a more protected permission. If caller has it we are good.
1399 if (getContext().checkCallingOrSelfPermission(Manifest.permission.WRITE_SECURE_SETTINGS)
1400 == PackageManager.PERMISSION_GRANTED) {
1401 return true;
1402 }
1403
Svetoslavf41334b2015-06-23 12:06:03 -07001404 return false;
1405 }
1406
Svetoslav683914b2015-01-15 14:22:26 -08001407 private void validateSystemSettingValue(String name, String value) {
1408 Settings.System.Validator validator = Settings.System.VALIDATORS.get(name);
1409 if (validator != null && !validator.validate(value)) {
1410 throw new IllegalArgumentException("Invalid value: " + value
1411 + " for setting: " + name);
1412 }
1413 }
1414
Alex Klyubin1991f572017-03-03 14:08:36 -08001415 /**
1416 * Returns {@code true} if the specified secure setting should be accessible to the caller.
1417 */
1418 private boolean isSecureSettingAccessible(String name, int callingUserId,
1419 int owningUserId) {
1420 // Special case for location (sigh).
1421 // This check is not inside the name-based checks below because this method performs checks
1422 // only if the calling user ID is not the same as the owning user ID.
1423 if (isLocationProvidersAllowedRestricted(name, callingUserId, owningUserId)) {
1424 return false;
1425 }
1426
1427 switch (name) {
1428 case "bluetooth_address":
1429 // BluetoothManagerService for some reason stores the Android's Bluetooth MAC
1430 // address in this secure setting. Secure settings can normally be read by any app,
1431 // which thus enables them to bypass the recently introduced restrictions on access
1432 // to device identifiers.
1433 // To mitigate this we make this setting available only to callers privileged to see
1434 // this device's MAC addresses, same as through public API
1435 // BluetoothAdapter.getAddress() (see BluetoothManagerService for details).
1436 return getContext().checkCallingOrSelfPermission(
1437 Manifest.permission.LOCAL_MAC_ADDRESS) == PackageManager.PERMISSION_GRANTED;
1438 default:
1439 return true;
1440 }
1441 }
1442
Svetoslav683914b2015-01-15 14:22:26 -08001443 private boolean isLocationProvidersAllowedRestricted(String name, int callingUserId,
1444 int owningUserId) {
1445 // Optimization - location providers are restricted only for managed profiles.
1446 if (callingUserId == owningUserId) {
1447 return false;
1448 }
1449 if (Settings.Secure.LOCATION_PROVIDERS_ALLOWED.equals(name)
1450 && mUserManager.hasUserRestriction(UserManager.DISALLOW_SHARE_LOCATION,
1451 new UserHandle(callingUserId))) {
1452 return true;
1453 }
1454 return false;
1455 }
1456
Makoto Onuki28da2e32015-11-20 11:30:44 -08001457 /**
1458 * Checks whether changing a setting to a value is prohibited by the corresponding user
1459 * restriction.
1460 *
Svet Ganov53a441c2016-04-19 19:38:00 -07001461 * <p>See also {@link com.android.server.pm.UserRestrictionsUtils#applyUserRestriction(
1462 * Context, int, String, boolean)}, which should be in sync with this method.
Makoto Onuki28da2e32015-11-20 11:30:44 -08001463 *
1464 * @return true if the change is prohibited, false if the change is allowed.
1465 */
1466 private boolean isGlobalOrSecureSettingRestrictedForUser(String setting, int userId,
Victor Chang9c7b7062016-07-12 23:47:29 +01001467 String value, int callingUid) {
Makoto Onuki28da2e32015-11-20 11:30:44 -08001468 String restriction;
1469 switch (setting) {
1470 case Settings.Secure.LOCATION_MODE:
1471 // Note LOCATION_MODE will be converted into LOCATION_PROVIDERS_ALLOWED
1472 // in android.provider.Settings.Secure.putStringForUser(), so we shouldn't come
1473 // here normally, but we still protect it here from a direct provider write.
1474 if (String.valueOf(Settings.Secure.LOCATION_MODE_OFF).equals(value)) return false;
1475 restriction = UserManager.DISALLOW_SHARE_LOCATION;
1476 break;
1477
1478 case Settings.Secure.LOCATION_PROVIDERS_ALLOWED:
1479 // See SettingsProvider.updateLocationProvidersAllowedLocked. "-" is to disable
1480 // a provider, which should be allowed even if the user restriction is set.
1481 if (value != null && value.startsWith("-")) return false;
1482 restriction = UserManager.DISALLOW_SHARE_LOCATION;
1483 break;
1484
1485 case Settings.Secure.INSTALL_NON_MARKET_APPS:
1486 if ("0".equals(value)) return false;
1487 restriction = UserManager.DISALLOW_INSTALL_UNKNOWN_SOURCES;
1488 break;
1489
1490 case Settings.Global.ADB_ENABLED:
1491 if ("0".equals(value)) return false;
1492 restriction = UserManager.DISALLOW_DEBUGGING_FEATURES;
1493 break;
1494
1495 case Settings.Global.PACKAGE_VERIFIER_ENABLE:
1496 case Settings.Global.PACKAGE_VERIFIER_INCLUDE_ADB:
1497 if ("1".equals(value)) return false;
1498 restriction = UserManager.ENSURE_VERIFY_APPS;
1499 break;
1500
1501 case Settings.Global.PREFERRED_NETWORK_MODE:
1502 restriction = UserManager.DISALLOW_CONFIG_MOBILE_NETWORKS;
1503 break;
1504
Victor Chang9c7b7062016-07-12 23:47:29 +01001505 case Settings.Secure.ALWAYS_ON_VPN_APP:
1506 case Settings.Secure.ALWAYS_ON_VPN_LOCKDOWN:
1507 // Whitelist system uid (ConnectivityService) and root uid to change always-on vpn
Svetoslav Ganove080da92016-12-21 17:10:35 -08001508 final int appId = UserHandle.getAppId(callingUid);
1509 if (appId == Process.SYSTEM_UID || appId == Process.ROOT_UID) {
Victor Chang9c7b7062016-07-12 23:47:29 +01001510 return false;
1511 }
1512 restriction = UserManager.DISALLOW_CONFIG_VPN;
1513 break;
1514
Benjamin Franz0ff13fc2016-07-12 13:42:21 +01001515 case Settings.Global.SAFE_BOOT_DISALLOWED:
1516 if ("1".equals(value)) return false;
1517 restriction = UserManager.DISALLOW_SAFE_BOOT;
1518 break;
1519
Makoto Onuki28da2e32015-11-20 11:30:44 -08001520 default:
Mahaver Chopra87648752016-01-08 19:23:57 +00001521 if (setting != null && setting.startsWith(Settings.Global.DATA_ROAMING)) {
Mahaver Chopradea471e2015-12-17 11:02:37 +00001522 if ("0".equals(value)) return false;
1523 restriction = UserManager.DISALLOW_DATA_ROAMING;
1524 break;
1525 }
Makoto Onuki28da2e32015-11-20 11:30:44 -08001526 return false;
Svetoslav683914b2015-01-15 14:22:26 -08001527 }
Makoto Onuki28da2e32015-11-20 11:30:44 -08001528
1529 return mUserManager.hasUserRestriction(restriction, UserHandle.of(userId));
Svetoslav683914b2015-01-15 14:22:26 -08001530 }
1531
1532 private int resolveOwningUserIdForSecureSettingLocked(int userId, String setting) {
1533 return resolveOwningUserIdLocked(userId, sSecureCloneToManagedSettings, setting);
1534 }
1535
1536 private int resolveOwningUserIdForSystemSettingLocked(int userId, String setting) {
Andre Lago3fa139c2016-08-04 13:53:44 +01001537 final int parentId;
1538 // Resolves dependency if setting has a dependency and the calling user has a parent
1539 if (sSystemCloneFromParentOnDependency.containsKey(setting)
1540 && (parentId = getGroupParentLocked(userId)) != userId) {
1541 // The setting has a dependency and the profile has a parent
1542 String dependency = sSystemCloneFromParentOnDependency.get(setting);
Chad Brubaker97bccee2017-01-05 15:51:41 -08001543 // Lookup the dependency setting as ourselves, some callers may not have access to it.
1544 final long token = Binder.clearCallingIdentity();
1545 try {
1546 Setting settingObj = getSecureSetting(dependency, userId);
1547 if (settingObj != null && settingObj.getValue().equals("1")) {
1548 return parentId;
1549 }
1550 } finally {
1551 Binder.restoreCallingIdentity(token);
Andre Lago3fa139c2016-08-04 13:53:44 +01001552 }
1553 }
Svetoslav683914b2015-01-15 14:22:26 -08001554 return resolveOwningUserIdLocked(userId, sSystemCloneToManagedSettings, setting);
1555 }
1556
1557 private int resolveOwningUserIdLocked(int userId, Set<String> keys, String name) {
1558 final int parentId = getGroupParentLocked(userId);
1559 if (parentId != userId && keys.contains(name)) {
1560 return parentId;
1561 }
1562 return userId;
1563 }
1564
Svetoslavf41334b2015-06-23 12:06:03 -07001565 private void enforceRestrictedSystemSettingsMutationForCallingPackage(int operation,
Xiaohui Chen43765b72015-08-31 10:57:33 -07001566 String name, int userId) {
Svetoslav683914b2015-01-15 14:22:26 -08001567 // System/root/shell can mutate whatever secure settings they want.
1568 final int callingUid = Binder.getCallingUid();
Svetoslav Ganove080da92016-12-21 17:10:35 -08001569 final int appId = UserHandle.getAppId(callingUid);
1570 if (appId == android.os.Process.SYSTEM_UID
1571 || appId == Process.SHELL_UID
1572 || appId == Process.ROOT_UID) {
Svetoslav683914b2015-01-15 14:22:26 -08001573 return;
1574 }
1575
1576 switch (operation) {
1577 case MUTATION_OPERATION_INSERT:
1578 // Insert updates.
1579 case MUTATION_OPERATION_UPDATE: {
1580 if (Settings.System.PUBLIC_SETTINGS.contains(name)) {
1581 return;
1582 }
1583
1584 // The calling package is already verified.
Xiaohui Chen43765b72015-08-31 10:57:33 -07001585 PackageInfo packageInfo = getCallingPackageInfoOrThrow(userId);
Svetoslav683914b2015-01-15 14:22:26 -08001586
1587 // Privileged apps can do whatever they want.
1588 if ((packageInfo.applicationInfo.privateFlags
1589 & ApplicationInfo.PRIVATE_FLAG_PRIVILEGED) != 0) {
1590 return;
1591 }
1592
1593 warnOrThrowForUndesiredSecureSettingsMutationForTargetSdk(
1594 packageInfo.applicationInfo.targetSdkVersion, name);
1595 } break;
1596
1597 case MUTATION_OPERATION_DELETE: {
1598 if (Settings.System.PUBLIC_SETTINGS.contains(name)
1599 || Settings.System.PRIVATE_SETTINGS.contains(name)) {
1600 throw new IllegalArgumentException("You cannot delete system defined"
1601 + " secure settings.");
1602 }
1603
1604 // The calling package is already verified.
Xiaohui Chen43765b72015-08-31 10:57:33 -07001605 PackageInfo packageInfo = getCallingPackageInfoOrThrow(userId);
Svetoslav683914b2015-01-15 14:22:26 -08001606
1607 // Privileged apps can do whatever they want.
1608 if ((packageInfo.applicationInfo.privateFlags &
1609 ApplicationInfo.PRIVATE_FLAG_PRIVILEGED) != 0) {
1610 return;
1611 }
1612
1613 warnOrThrowForUndesiredSecureSettingsMutationForTargetSdk(
1614 packageInfo.applicationInfo.targetSdkVersion, name);
1615 } break;
1616 }
1617 }
1618
Todd Kennedybe0b8892017-02-15 14:13:52 -08001619 private Set<String> getInstantAppAccessibleSettings(int settingsType) {
Chad Brubaker97bccee2017-01-05 15:51:41 -08001620 switch (settingsType) {
1621 case SETTINGS_TYPE_GLOBAL:
Todd Kennedybe0b8892017-02-15 14:13:52 -08001622 return Settings.Global.INSTANT_APP_SETTINGS;
Chad Brubaker97bccee2017-01-05 15:51:41 -08001623 case SETTINGS_TYPE_SECURE:
Todd Kennedybe0b8892017-02-15 14:13:52 -08001624 return Settings.Secure.INSTANT_APP_SETTINGS;
Chad Brubaker97bccee2017-01-05 15:51:41 -08001625 case SETTINGS_TYPE_SYSTEM:
Todd Kennedybe0b8892017-02-15 14:13:52 -08001626 return Settings.System.INSTANT_APP_SETTINGS;
Chad Brubaker97bccee2017-01-05 15:51:41 -08001627 default:
1628 throw new IllegalArgumentException("Invalid settings type: " + settingsType);
1629 }
1630 }
1631
1632 private List<String> getSettingsNamesLocked(int settingsType, int userId) {
Chad Brubakerf0fa8532017-02-23 10:45:20 -08001633 boolean instantApp;
1634 if (UserHandle.getAppId(Binder.getCallingUid()) < Process.FIRST_APPLICATION_UID) {
1635 instantApp = false;
1636 } else {
1637 ApplicationInfo ai = getCallingApplicationInfoOrThrow();
1638 instantApp = ai.isInstantApp();
1639 }
1640 if (instantApp) {
Todd Kennedybe0b8892017-02-15 14:13:52 -08001641 return new ArrayList<String>(getInstantAppAccessibleSettings(settingsType));
Chad Brubaker97bccee2017-01-05 15:51:41 -08001642 } else {
1643 return mSettingsRegistry.getSettingsNamesLocked(settingsType, userId);
1644 }
1645 }
1646
1647 private void enforceSettingReadable(String settingName, int settingsType, int userId) {
1648 if (UserHandle.getAppId(Binder.getCallingUid()) < Process.FIRST_APPLICATION_UID) {
1649 return;
1650 }
Chad Brubakerf0fa8532017-02-23 10:45:20 -08001651 ApplicationInfo ai = getCallingApplicationInfoOrThrow();
Svetoslav Ganov096d3042017-01-30 16:34:13 -08001652 if (!ai.isInstantApp()) {
Chad Brubaker97bccee2017-01-05 15:51:41 -08001653 return;
1654 }
Todd Kennedybe0b8892017-02-15 14:13:52 -08001655 if (!getInstantAppAccessibleSettings(settingsType).contains(settingName)) {
Chad Brubaker97bccee2017-01-05 15:51:41 -08001656 throw new SecurityException("Setting " + settingName + " is not accessible from"
1657 + " ephemeral package " + getCallingPackage());
1658 }
1659 }
1660
Chad Brubakerf0fa8532017-02-23 10:45:20 -08001661 private ApplicationInfo getCallingApplicationInfoOrThrow() {
1662 // We always use the callingUid for this lookup. This means that if hypothetically an
1663 // app was installed in user A with cross user and in user B as an Instant App
1664 // the app in A would be able to see all the settings in user B. However since cross
1665 // user is a system permission and the app must be uninstalled in B and then installed as
1666 // an Instant App that situation is not realistic or supported.
Chad Brubaker97bccee2017-01-05 15:51:41 -08001667 ApplicationInfo ai = null;
1668 try {
Chad Brubakerf0fa8532017-02-23 10:45:20 -08001669 ai = mPackageManager.getApplicationInfo(getCallingPackage(), 0
1670 , UserHandle.getCallingUserId());
Chad Brubaker97bccee2017-01-05 15:51:41 -08001671 } catch (RemoteException ignored) {
1672 }
1673 if (ai == null) {
1674 throw new IllegalStateException("Failed to lookup info for package "
1675 + getCallingPackage());
1676 }
1677 return ai;
1678 }
1679
Xiaohui Chen43765b72015-08-31 10:57:33 -07001680 private PackageInfo getCallingPackageInfoOrThrow(int userId) {
Svetoslav683914b2015-01-15 14:22:26 -08001681 try {
Svetoslav Ganov67a8d352016-03-02 13:26:40 -08001682 PackageInfo packageInfo = mPackageManager.getPackageInfo(
1683 getCallingPackage(), 0, userId);
1684 if (packageInfo != null) {
1685 return packageInfo;
1686 }
Xiaohui Chen43765b72015-08-31 10:57:33 -07001687 } catch (RemoteException e) {
Svetoslav Ganov67a8d352016-03-02 13:26:40 -08001688 /* ignore */
Svetoslav683914b2015-01-15 14:22:26 -08001689 }
Svetoslav Ganov67a8d352016-03-02 13:26:40 -08001690 throw new IllegalStateException("Calling package doesn't exist");
Svetoslav683914b2015-01-15 14:22:26 -08001691 }
1692
1693 private int getGroupParentLocked(int userId) {
1694 // Most frequent use case.
Xiaohui Chen43765b72015-08-31 10:57:33 -07001695 if (userId == UserHandle.USER_SYSTEM) {
Svetoslav683914b2015-01-15 14:22:26 -08001696 return userId;
1697 }
1698 // We are in the same process with the user manager and the returned
1699 // user info is a cached instance, so just look up instead of cache.
1700 final long identity = Binder.clearCallingIdentity();
1701 try {
Svetoslav7ec28e82015-05-20 17:01:10 -07001702 // Just a lookup and not reentrant, so holding a lock is fine.
Svetoslav683914b2015-01-15 14:22:26 -08001703 UserInfo userInfo = mUserManager.getProfileParent(userId);
1704 return (userInfo != null) ? userInfo.id : userId;
1705 } finally {
1706 Binder.restoreCallingIdentity(identity);
1707 }
1708 }
1709
Svetoslav683914b2015-01-15 14:22:26 -08001710 private void enforceWritePermission(String permission) {
1711 if (getContext().checkCallingOrSelfPermission(permission)
1712 != PackageManager.PERMISSION_GRANTED) {
1713 throw new SecurityException("Permission denial: writing to settings requires:"
1714 + permission);
1715 }
1716 }
1717
1718 /*
1719 * Used to parse changes to the value of Settings.Secure.LOCATION_PROVIDERS_ALLOWED.
1720 * This setting contains a list of the currently enabled location providers.
1721 * But helper functions in android.providers.Settings can enable or disable
1722 * a single provider by using a "+" or "-" prefix before the provider name.
1723 *
Makoto Onuki28da2e32015-11-20 11:30:44 -08001724 * <p>See also {@link #isGlobalOrSecureSettingRestrictedForUser()}. If DISALLOW_SHARE_LOCATION
1725 * is set, the said method will only allow values with the "-" prefix.
1726 *
Svetoslav683914b2015-01-15 14:22:26 -08001727 * @returns whether the enabled location providers changed.
Brad Fitzpatrick1bd62bd2010-03-08 18:30:52 -08001728 */
Svetoslav Ganove080da92016-12-21 17:10:35 -08001729 private boolean updateLocationProvidersAllowedLocked(String value, String tag,
1730 int owningUserId, boolean makeDefault, boolean forceNotify) {
Svetoslav683914b2015-01-15 14:22:26 -08001731 if (TextUtils.isEmpty(value)) {
1732 return false;
Brad Fitzpatrickf366a9b2010-08-24 16:14:07 -07001733 }
1734
Svetoslav683914b2015-01-15 14:22:26 -08001735 final char prefix = value.charAt(0);
1736 if (prefix != '+' && prefix != '-') {
Svet Ganov53a441c2016-04-19 19:38:00 -07001737 if (forceNotify) {
1738 final int key = makeKey(SETTINGS_TYPE_SECURE, owningUserId);
1739 mSettingsRegistry.notifyForSettingsChange(key,
1740 Settings.Secure.LOCATION_PROVIDERS_ALLOWED);
1741 }
Svetoslav683914b2015-01-15 14:22:26 -08001742 return false;
1743 }
1744
1745 // skip prefix
1746 value = value.substring(1);
1747
Svetoslav7ec28e82015-05-20 17:01:10 -07001748 Setting settingValue = getSecureSetting(
Chad Brubaker97bccee2017-01-05 15:51:41 -08001749 Settings.Secure.LOCATION_PROVIDERS_ALLOWED, owningUserId);
Dianne Hackborn32f40ee2016-10-20 15:54:14 -07001750 if (settingValue == null) {
1751 return false;
1752 }
Svetoslav683914b2015-01-15 14:22:26 -08001753
Svetoslav Ganovcac64f62017-02-21 13:24:09 -08001754 String oldProviders = !settingValue.isNull() ? settingValue.getValue() : "";
Svetoslav683914b2015-01-15 14:22:26 -08001755
1756 int index = oldProviders.indexOf(value);
1757 int end = index + value.length();
1758
1759 // check for commas to avoid matching on partial string
1760 if (index > 0 && oldProviders.charAt(index - 1) != ',') {
1761 index = -1;
1762 }
1763
1764 // check for commas to avoid matching on partial string
1765 if (end < oldProviders.length() && oldProviders.charAt(end) != ',') {
1766 index = -1;
1767 }
1768
1769 String newProviders;
1770
1771 if (prefix == '+' && index < 0) {
1772 // append the provider to the list if not present
1773 if (oldProviders.length() == 0) {
1774 newProviders = value;
1775 } else {
1776 newProviders = oldProviders + ',' + value;
1777 }
1778 } else if (prefix == '-' && index >= 0) {
1779 // remove the provider from the list if present
1780 // remove leading or trailing comma
1781 if (index > 0) {
1782 index--;
1783 } else if (end < oldProviders.length()) {
1784 end++;
1785 }
1786
1787 newProviders = oldProviders.substring(0, index);
1788 if (end < oldProviders.length()) {
1789 newProviders += oldProviders.substring(end);
1790 }
1791 } else {
1792 // nothing changed, so no need to update the database
Svet Ganov53a441c2016-04-19 19:38:00 -07001793 if (forceNotify) {
1794 final int key = makeKey(SETTINGS_TYPE_SECURE, owningUserId);
1795 mSettingsRegistry.notifyForSettingsChange(key,
1796 Settings.Secure.LOCATION_PROVIDERS_ALLOWED);
1797 }
Svetoslav683914b2015-01-15 14:22:26 -08001798 return false;
1799 }
1800
Svet Ganov53a441c2016-04-19 19:38:00 -07001801 return mSettingsRegistry.insertSettingLocked(SETTINGS_TYPE_SECURE,
Svetoslavb596a2c2015-02-17 21:37:09 -08001802 owningUserId, Settings.Secure.LOCATION_PROVIDERS_ALLOWED, newProviders,
Svetoslav Ganov5fb405b2017-01-26 22:43:09 -08001803 tag, makeDefault, getCallingPackage(), forceNotify, CRITICAL_SECURE_SETTINGS);
Svetoslav683914b2015-01-15 14:22:26 -08001804 }
1805
Svetoslav683914b2015-01-15 14:22:26 -08001806 private static void warnOrThrowForUndesiredSecureSettingsMutationForTargetSdk(
1807 int targetSdkVersion, String name) {
1808 // If the app targets Lollipop MR1 or older SDK we warn, otherwise crash.
1809 if (targetSdkVersion <= Build.VERSION_CODES.LOLLIPOP_MR1) {
1810 if (Settings.System.PRIVATE_SETTINGS.contains(name)) {
1811 Slog.w(LOG_TAG, "You shouldn't not change private system settings."
1812 + " This will soon become an error.");
1813 } else {
1814 Slog.w(LOG_TAG, "You shouldn't keep your settings in the secure settings."
1815 + " This will soon become an error.");
1816 }
1817 } else {
1818 if (Settings.System.PRIVATE_SETTINGS.contains(name)) {
1819 throw new IllegalArgumentException("You cannot change private secure settings.");
1820 } else {
1821 throw new IllegalArgumentException("You cannot keep your settings in"
1822 + " the secure settings.");
1823 }
1824 }
1825 }
1826
1827 private static int resolveCallingUserIdEnforcingPermissionsLocked(int requestingUserId) {
1828 if (requestingUserId == UserHandle.getCallingUserId()) {
1829 return requestingUserId;
1830 }
1831 return ActivityManager.handleIncomingUser(Binder.getCallingPid(),
1832 Binder.getCallingUid(), requestingUserId, false, true,
1833 "get/set setting for user", null);
1834 }
1835
Svet Ganov53a441c2016-04-19 19:38:00 -07001836 private Bundle packageValueForCallResult(Setting setting,
1837 boolean trackingGeneration) {
1838 if (!trackingGeneration) {
Dianne Hackborn32f40ee2016-10-20 15:54:14 -07001839 if (setting == null || setting.isNull()) {
Svet Ganov53a441c2016-04-19 19:38:00 -07001840 return NULL_SETTING_BUNDLE;
1841 }
1842 return Bundle.forPair(Settings.NameValueTable.VALUE, setting.getValue());
Svetoslav683914b2015-01-15 14:22:26 -08001843 }
Svet Ganov53a441c2016-04-19 19:38:00 -07001844 Bundle result = new Bundle();
1845 result.putString(Settings.NameValueTable.VALUE,
Svetoslav Ganove080da92016-12-21 17:10:35 -08001846 !setting.isNull() ? setting.getValue() : null);
1847 mSettingsRegistry.mGenerationRegistry.addGenerationData(result, setting.getKey());
Svet Ganov53a441c2016-04-19 19:38:00 -07001848 return result;
Svetoslav683914b2015-01-15 14:22:26 -08001849 }
1850
1851 private static int getRequestingUserId(Bundle args) {
1852 final int callingUserId = UserHandle.getCallingUserId();
1853 return (args != null) ? args.getInt(Settings.CALL_METHOD_USER_KEY, callingUserId)
1854 : callingUserId;
1855 }
1856
Svet Ganov53a441c2016-04-19 19:38:00 -07001857 private boolean isTrackingGeneration(Bundle args) {
1858 return args != null && args.containsKey(Settings.CALL_METHOD_TRACK_GENERATION_KEY);
1859 }
1860
Svetoslav683914b2015-01-15 14:22:26 -08001861 private static String getSettingValue(Bundle args) {
1862 return (args != null) ? args.getString(Settings.NameValueTable.VALUE) : null;
1863 }
1864
Svetoslav Ganove080da92016-12-21 17:10:35 -08001865 private static String getSettingTag(Bundle args) {
1866 return (args != null) ? args.getString(Settings.CALL_METHOD_TAG_KEY) : null;
1867 }
1868
1869 private static boolean getSettingMakeDefault(Bundle args) {
1870 return (args != null) && args.getBoolean(Settings.CALL_METHOD_MAKE_DEFAULT_KEY);
1871 }
1872
1873 private static int getResetModeEnforcingPermission(Bundle args) {
1874 final int mode = (args != null) ? args.getInt(Settings.CALL_METHOD_RESET_MODE_KEY) : 0;
1875 switch (mode) {
1876 case Settings.RESET_MODE_UNTRUSTED_DEFAULTS: {
1877 if (!isCallerSystemOrShellOrRootOnDebuggableBuild()) {
1878 throw new SecurityException("Only system, shell/root on a "
1879 + "debuggable build can reset to untrusted defaults");
1880 }
1881 return mode;
1882 }
1883 case Settings.RESET_MODE_UNTRUSTED_CHANGES: {
1884 if (!isCallerSystemOrShellOrRootOnDebuggableBuild()) {
1885 throw new SecurityException("Only system, shell/root on a "
1886 + "debuggable build can reset untrusted changes");
1887 }
1888 return mode;
1889 }
1890 case Settings.RESET_MODE_TRUSTED_DEFAULTS: {
1891 if (!isCallerSystemOrShellOrRootOnDebuggableBuild()) {
1892 throw new SecurityException("Only system, shell/root on a "
1893 + "debuggable build can reset to trusted defaults");
1894 }
1895 return mode;
1896 }
1897 case Settings.RESET_MODE_PACKAGE_DEFAULTS: {
1898 return mode;
1899 }
1900 }
1901 throw new IllegalArgumentException("Invalid reset mode: " + mode);
1902 }
1903
1904 private static boolean isCallerSystemOrShellOrRootOnDebuggableBuild() {
1905 final int appId = UserHandle.getAppId(Binder.getCallingUid());
1906 return appId == SYSTEM_UID || (Build.IS_DEBUGGABLE
1907 && (appId == SHELL_UID || appId == ROOT_UID));
1908 }
1909
Svetoslav683914b2015-01-15 14:22:26 -08001910 private static String getValidTableOrThrow(Uri uri) {
1911 if (uri.getPathSegments().size() > 0) {
1912 String table = uri.getPathSegments().get(0);
1913 if (DatabaseHelper.isValidTable(table)) {
1914 return table;
1915 }
1916 throw new IllegalArgumentException("Bad root path: " + table);
1917 }
1918 throw new IllegalArgumentException("Invalid URI:" + uri);
1919 }
1920
1921 private static MatrixCursor packageSettingForQuery(Setting setting, String[] projection) {
Svetoslav Ganovfedb2302016-04-26 18:36:42 -07001922 if (setting.isNull()) {
Svetoslav683914b2015-01-15 14:22:26 -08001923 return new MatrixCursor(projection, 0);
1924 }
1925 MatrixCursor cursor = new MatrixCursor(projection, 1);
1926 appendSettingToCursor(cursor, setting);
1927 return cursor;
1928 }
1929
1930 private static String[] normalizeProjection(String[] projection) {
1931 if (projection == null) {
1932 return ALL_COLUMNS;
1933 }
1934
1935 final int columnCount = projection.length;
1936 for (int i = 0; i < columnCount; i++) {
1937 String column = projection[i];
1938 if (!ArrayUtils.contains(ALL_COLUMNS, column)) {
1939 throw new IllegalArgumentException("Invalid column: " + column);
Brad Fitzpatrickf366a9b2010-08-24 16:14:07 -07001940 }
1941 }
1942
Svetoslav683914b2015-01-15 14:22:26 -08001943 return projection;
1944 }
1945
1946 private static void appendSettingToCursor(MatrixCursor cursor, Setting setting) {
Dianne Hackborn32f40ee2016-10-20 15:54:14 -07001947 if (setting == null || setting.isNull()) {
Suprabh Shuklac9d064a2016-04-12 18:45:34 -07001948 return;
1949 }
Svetoslav683914b2015-01-15 14:22:26 -08001950 final int columnCount = cursor.getColumnCount();
1951
1952 String[] values = new String[columnCount];
1953
1954 for (int i = 0; i < columnCount; i++) {
1955 String column = cursor.getColumnName(i);
1956
1957 switch (column) {
1958 case Settings.NameValueTable._ID: {
1959 values[i] = setting.getId();
1960 } break;
1961
1962 case Settings.NameValueTable.NAME: {
1963 values[i] = setting.getName();
1964 } break;
1965
1966 case Settings.NameValueTable.VALUE: {
1967 values[i] = setting.getValue();
1968 } break;
Brad Fitzpatrickf366a9b2010-08-24 16:14:07 -07001969 }
Brad Fitzpatrick1bd62bd2010-03-08 18:30:52 -08001970 }
1971
Svetoslav683914b2015-01-15 14:22:26 -08001972 cursor.addRow(values);
1973 }
Brad Fitzpatrick1bd62bd2010-03-08 18:30:52 -08001974
Makoto Onuki3a2c35782015-06-18 11:21:58 -07001975 private static boolean isKeyValid(String key) {
1976 return !(TextUtils.isEmpty(key) || SettingsState.isBinary(key));
1977 }
1978
Svetoslav683914b2015-01-15 14:22:26 -08001979 private static final class Arguments {
1980 private static final Pattern WHERE_PATTERN_WITH_PARAM_NO_BRACKETS =
1981 Pattern.compile("[\\s]*name[\\s]*=[\\s]*\\?[\\s]*");
1982
1983 private static final Pattern WHERE_PATTERN_WITH_PARAM_IN_BRACKETS =
1984 Pattern.compile("[\\s]*\\([\\s]*name[\\s]*=[\\s]*\\?[\\s]*\\)[\\s]*");
1985
1986 private static final Pattern WHERE_PATTERN_NO_PARAM_IN_BRACKETS =
1987 Pattern.compile("[\\s]*\\([\\s]*name[\\s]*=[\\s]*['\"].*['\"][\\s]*\\)[\\s]*");
1988
1989 private static final Pattern WHERE_PATTERN_NO_PARAM_NO_BRACKETS =
1990 Pattern.compile("[\\s]*name[\\s]*=[\\s]*['\"].*['\"][\\s]*");
1991
1992 public final String table;
1993 public final String name;
1994
1995 public Arguments(Uri uri, String where, String[] whereArgs, boolean supportAll) {
1996 final int segmentSize = uri.getPathSegments().size();
1997 switch (segmentSize) {
1998 case 1: {
1999 if (where != null
2000 && (WHERE_PATTERN_WITH_PARAM_NO_BRACKETS.matcher(where).matches()
2001 || WHERE_PATTERN_WITH_PARAM_IN_BRACKETS.matcher(where).matches())
2002 && whereArgs.length == 1) {
2003 name = whereArgs[0];
2004 table = computeTableForSetting(uri, name);
Svetoslav28494652015-02-12 14:11:42 -08002005 return;
Svetoslav683914b2015-01-15 14:22:26 -08002006 } else if (where != null
2007 && (WHERE_PATTERN_NO_PARAM_NO_BRACKETS.matcher(where).matches()
2008 || WHERE_PATTERN_NO_PARAM_IN_BRACKETS.matcher(where).matches())) {
2009 final int startIndex = Math.max(where.indexOf("'"),
2010 where.indexOf("\"")) + 1;
2011 final int endIndex = Math.max(where.lastIndexOf("'"),
2012 where.lastIndexOf("\""));
2013 name = where.substring(startIndex, endIndex);
2014 table = computeTableForSetting(uri, name);
Svetoslav28494652015-02-12 14:11:42 -08002015 return;
Svetoslav683914b2015-01-15 14:22:26 -08002016 } else if (supportAll && where == null && whereArgs == null) {
2017 name = null;
2018 table = computeTableForSetting(uri, null);
Svetoslav28494652015-02-12 14:11:42 -08002019 return;
Brad Fitzpatrick342984a2010-03-09 16:59:30 -08002020 }
Svetoslav683914b2015-01-15 14:22:26 -08002021 } break;
2022
Svetoslav28494652015-02-12 14:11:42 -08002023 case 2: {
2024 if (where == null && whereArgs == null) {
2025 name = uri.getPathSegments().get(1);
2026 table = computeTableForSetting(uri, name);
2027 return;
2028 }
2029 } break;
Brad Fitzpatrick1bd62bd2010-03-08 18:30:52 -08002030 }
Svetoslav28494652015-02-12 14:11:42 -08002031
2032 EventLogTags.writeUnsupportedSettingsQuery(
2033 uri.toSafeString(), where, Arrays.toString(whereArgs));
2034 String message = String.format( "Supported SQL:\n"
2035 + " uri content://some_table/some_property with null where and where args\n"
2036 + " uri content://some_table with query name=? and single name as arg\n"
2037 + " uri content://some_table with query name=some_name and null args\n"
2038 + " but got - uri:%1s, where:%2s whereArgs:%3s", uri, where,
2039 Arrays.toString(whereArgs));
2040 throw new IllegalArgumentException(message);
Brad Fitzpatrick1bd62bd2010-03-08 18:30:52 -08002041 }
2042
Svetoslav28494652015-02-12 14:11:42 -08002043 private static String computeTableForSetting(Uri uri, String name) {
Svetoslav683914b2015-01-15 14:22:26 -08002044 String table = getValidTableOrThrow(uri);
2045
2046 if (name != null) {
2047 if (sSystemMovedToSecureSettings.contains(name)) {
2048 table = TABLE_SECURE;
2049 }
2050
2051 if (sSystemMovedToGlobalSettings.contains(name)) {
2052 table = TABLE_GLOBAL;
2053 }
2054
2055 if (sSecureMovedToGlobalSettings.contains(name)) {
2056 table = TABLE_GLOBAL;
2057 }
2058
2059 if (sGlobalMovedToSecureSettings.contains(name)) {
2060 table = TABLE_SECURE;
2061 }
Brad Fitzpatrick1bd62bd2010-03-08 18:30:52 -08002062 }
Svetoslav683914b2015-01-15 14:22:26 -08002063
2064 return table;
2065 }
2066 }
2067
2068 final class SettingsRegistry {
2069 private static final String DROPBOX_TAG_USERLOG = "restricted_profile_ssaid";
2070
Svetoslav683914b2015-01-15 14:22:26 -08002071 private static final String SETTINGS_FILE_GLOBAL = "settings_global.xml";
2072 private static final String SETTINGS_FILE_SYSTEM = "settings_system.xml";
2073 private static final String SETTINGS_FILE_SECURE = "settings_secure.xml";
Mark Rathjend891f012017-01-19 04:10:37 +00002074 private static final String SETTINGS_FILE_SSAID = "settings_ssaid.xml";
2075
2076 private static final String SSAID_USER_KEY = "userkey";
Svetoslav683914b2015-01-15 14:22:26 -08002077
2078 private final SparseArray<SettingsState> mSettingsStates = new SparseArray<>();
2079
Svet Ganov53a441c2016-04-19 19:38:00 -07002080 private GenerationRegistry mGenerationRegistry;
Svetoslav683914b2015-01-15 14:22:26 -08002081
Svetoslav7e0683b2015-08-03 16:02:52 -07002082 private final Handler mHandler;
2083
Svet Ganov53a441c2016-04-19 19:38:00 -07002084 private final BackupManager mBackupManager;
2085
Amith Yamasani39452022017-03-21 15:23:47 -07002086 private String mSettingsCreationBuildId;
2087
Svetoslav683914b2015-01-15 14:22:26 -08002088 public SettingsRegistry() {
Svetoslav7e0683b2015-08-03 16:02:52 -07002089 mHandler = new MyHandler(getContext().getMainLooper());
Svet Ganov53a441c2016-04-19 19:38:00 -07002090 mGenerationRegistry = new GenerationRegistry(mLock);
2091 mBackupManager = new BackupManager(getContext());
Svetoslav683914b2015-01-15 14:22:26 -08002092 migrateAllLegacySettingsIfNeeded();
Mark Rathjend891f012017-01-19 04:10:37 +00002093 syncSsaidTableOnStart();
2094 }
2095
2096 private void generateUserKeyLocked(int userId) {
2097 // Generate a random key for each user used for creating a new ssaid.
Mark Rathjen7599f132017-01-23 14:15:54 -08002098 final byte[] keyBytes = new byte[32];
Mark Rathjend891f012017-01-19 04:10:37 +00002099 final SecureRandom rand = new SecureRandom();
2100 rand.nextBytes(keyBytes);
2101
2102 // Convert to string for storage in settings table.
Mark Rathjen7599f132017-01-23 14:15:54 -08002103 final String userKey = ByteStringUtils.toHexString(keyBytes);
Mark Rathjend891f012017-01-19 04:10:37 +00002104
2105 // Store the key in the ssaid table.
2106 final SettingsState ssaidSettings = getSettingsLocked(SETTINGS_TYPE_SSAID, userId);
2107 final boolean success = ssaidSettings.insertSettingLocked(SSAID_USER_KEY, userKey, null,
2108 true, SettingsState.SYSTEM_PACKAGE_NAME);
2109
2110 if (!success) {
2111 throw new IllegalStateException("Ssaid settings not accessible");
2112 }
2113 }
2114
Mark Rathjen7599f132017-01-23 14:15:54 -08002115 private byte[] getLengthPrefix(byte[] data) {
2116 return ByteBuffer.allocate(4).putInt(data.length).array();
2117 }
2118
Christopher Tateb218e762017-04-05 16:34:07 -07002119 public Setting generateSsaidLocked(PackageInfo callingPkg, int userId) {
Mark Rathjend891f012017-01-19 04:10:37 +00002120 // Read the user's key from the ssaid table.
2121 Setting userKeySetting = getSettingLocked(SETTINGS_TYPE_SSAID, userId, SSAID_USER_KEY);
Mark Rathjenea617592017-01-18 23:03:41 -08002122 if (userKeySetting == null || userKeySetting.isNull()
2123 || userKeySetting.getValue() == null) {
Mark Rathjend891f012017-01-19 04:10:37 +00002124 // Lazy initialize and store the user key.
2125 generateUserKeyLocked(userId);
2126 userKeySetting = getSettingLocked(SETTINGS_TYPE_SSAID, userId, SSAID_USER_KEY);
Mark Rathjenea617592017-01-18 23:03:41 -08002127 if (userKeySetting == null || userKeySetting.isNull()
2128 || userKeySetting.getValue() == null) {
Mark Rathjend891f012017-01-19 04:10:37 +00002129 throw new IllegalStateException("User key not accessible");
2130 }
2131 }
2132 final String userKey = userKeySetting.getValue();
2133
2134 // Convert the user's key back to a byte array.
Mark Rathjen7599f132017-01-23 14:15:54 -08002135 final byte[] keyBytes = ByteStringUtils.fromHexToByteArray(userKey);
2136
2137 // Validate that the key is of expected length.
2138 // Keys are currently 32 bytes, but were once 16 bytes during Android O development.
2139 if (keyBytes == null || (keyBytes.length != 16 && keyBytes.length != 32)) {
Mark Rathjend891f012017-01-19 04:10:37 +00002140 throw new IllegalStateException("User key invalid");
2141 }
2142
Mark Rathjen7599f132017-01-23 14:15:54 -08002143 final Mac m;
Mark Rathjend891f012017-01-19 04:10:37 +00002144 try {
Mark Rathjen7599f132017-01-23 14:15:54 -08002145 m = Mac.getInstance("HmacSHA256");
2146 m.init(new SecretKeySpec(keyBytes, m.getAlgorithm()));
Mark Rathjend891f012017-01-19 04:10:37 +00002147 } catch (NoSuchAlgorithmException e) {
Mark Rathjen7599f132017-01-23 14:15:54 -08002148 throw new IllegalStateException("HmacSHA256 is not available", e);
2149 } catch (InvalidKeyException e) {
2150 throw new IllegalStateException("Key is corrupted", e);
Mark Rathjend891f012017-01-19 04:10:37 +00002151 }
Mark Rathjen7599f132017-01-23 14:15:54 -08002152
2153 // Mac the package name and each of the signatures.
Christopher Tateb218e762017-04-05 16:34:07 -07002154 final String packageName = callingPkg.packageName;
2155 byte[] packageNameBytes = packageName.getBytes(StandardCharsets.UTF_8);
Mark Rathjen7599f132017-01-23 14:15:54 -08002156 m.update(getLengthPrefix(packageNameBytes), 0, 4);
2157 m.update(packageNameBytes);
Christopher Tateb218e762017-04-05 16:34:07 -07002158 for (int i = 0; i < callingPkg.signatures.length; i++) {
2159 byte[] sig = callingPkg.signatures[i].toByteArray();
Mark Rathjen7599f132017-01-23 14:15:54 -08002160 m.update(getLengthPrefix(sig), 0, 4);
2161 m.update(sig);
2162 }
Mark Rathjend891f012017-01-19 04:10:37 +00002163
2164 // Convert result to a string for storage in settings table. Only want first 64 bits.
Mark Rathjen7599f132017-01-23 14:15:54 -08002165 final String ssaid = ByteStringUtils.toHexString(m.doFinal()).substring(0, 16)
2166 .toLowerCase(Locale.US);
Mark Rathjend891f012017-01-19 04:10:37 +00002167
2168 // Save the ssaid in the ssaid table.
Christopher Tateb218e762017-04-05 16:34:07 -07002169 final String uid = Integer.toString(callingPkg.applicationInfo.uid);
Mark Rathjend891f012017-01-19 04:10:37 +00002170 final SettingsState ssaidSettings = getSettingsLocked(SETTINGS_TYPE_SSAID, userId);
2171 final boolean success = ssaidSettings.insertSettingLocked(uid, ssaid, null, true,
2172 packageName);
2173
2174 if (!success) {
2175 throw new IllegalStateException("Ssaid settings not accessible");
2176 }
2177
2178 return getSettingLocked(SETTINGS_TYPE_SSAID, userId, uid);
2179 }
2180
2181 public void syncSsaidTableOnStart() {
2182 synchronized (mLock) {
2183 // Verify that each user's packages and ssaid's are in sync.
2184 for (UserInfo user : mUserManager.getUsers(true)) {
2185 // Get all uids for the user's packages.
2186 final List<PackageInfo> packages;
2187 try {
2188 packages = mPackageManager.getInstalledPackages(0, user.id).getList();
2189 } catch (RemoteException e) {
2190 throw new IllegalStateException("Package manager not available");
2191 }
2192 final Set<String> appUids = new HashSet<>();
2193 for (PackageInfo info : packages) {
2194 appUids.add(Integer.toString(info.applicationInfo.uid));
2195 }
2196
2197 // Get all uids currently stored in the user's ssaid table.
2198 final Set<String> ssaidUids = new HashSet<>(
2199 getSettingsNamesLocked(SETTINGS_TYPE_SSAID, user.id));
2200 ssaidUids.remove(SSAID_USER_KEY);
2201
2202 // Perform a set difference for the appUids and ssaidUids.
2203 ssaidUids.removeAll(appUids);
2204
2205 // If there are ssaidUids left over they need to be removed from the table.
2206 final SettingsState ssaidSettings = getSettingsLocked(SETTINGS_TYPE_SSAID,
2207 user.id);
2208 for (String uid : ssaidUids) {
2209 ssaidSettings.deleteSettingLocked(uid);
2210 }
2211 }
2212 }
Brad Fitzpatrickf366a9b2010-08-24 16:14:07 -07002213 }
2214
Svetoslav683914b2015-01-15 14:22:26 -08002215 public List<String> getSettingsNamesLocked(int type, int userId) {
2216 final int key = makeKey(type, userId);
2217 SettingsState settingsState = peekSettingsStateLocked(key);
Dianne Hackborn32f40ee2016-10-20 15:54:14 -07002218 if (settingsState == null) {
2219 return new ArrayList<String>();
2220 }
Svetoslav683914b2015-01-15 14:22:26 -08002221 return settingsState.getSettingNamesLocked();
2222 }
2223
Dianne Hackborn32f40ee2016-10-20 15:54:14 -07002224 public SparseBooleanArray getKnownUsersLocked() {
2225 SparseBooleanArray users = new SparseBooleanArray();
2226 for (int i = mSettingsStates.size()-1; i >= 0; i--) {
2227 users.put(getUserIdFromKey(mSettingsStates.keyAt(i)), true);
2228 }
2229 return users;
2230 }
2231
Svetoslav683914b2015-01-15 14:22:26 -08002232 public SettingsState getSettingsLocked(int type, int userId) {
2233 final int key = makeKey(type, userId);
2234 return peekSettingsStateLocked(key);
2235 }
2236
Dianne Hackborn32f40ee2016-10-20 15:54:14 -07002237 public boolean ensureSettingsForUserLocked(int userId) {
2238 // First make sure this user actually exists.
2239 if (mUserManager.getUserInfo(userId) == null) {
2240 Slog.wtf(LOG_TAG, "Requested user " + userId + " does not exist");
2241 return false;
2242 }
2243
Svetoslav683914b2015-01-15 14:22:26 -08002244 // Migrate the setting for this user if needed.
2245 migrateLegacySettingsForUserIfNeededLocked(userId);
2246
2247 // Ensure global settings loaded if owner.
Xiaohui Chen43765b72015-08-31 10:57:33 -07002248 if (userId == UserHandle.USER_SYSTEM) {
2249 final int globalKey = makeKey(SETTINGS_TYPE_GLOBAL, UserHandle.USER_SYSTEM);
Svetoslav683914b2015-01-15 14:22:26 -08002250 ensureSettingsStateLocked(globalKey);
2251 }
2252
2253 // Ensure secure settings loaded.
2254 final int secureKey = makeKey(SETTINGS_TYPE_SECURE, userId);
2255 ensureSettingsStateLocked(secureKey);
2256
2257 // Make sure the secure settings have an Android id set.
2258 SettingsState secureSettings = getSettingsLocked(SETTINGS_TYPE_SECURE, userId);
2259 ensureSecureSettingAndroidIdSetLocked(secureSettings);
2260
2261 // Ensure system settings loaded.
2262 final int systemKey = makeKey(SETTINGS_TYPE_SYSTEM, userId);
2263 ensureSettingsStateLocked(systemKey);
2264
Mark Rathjend891f012017-01-19 04:10:37 +00002265 // Ensure secure settings loaded.
2266 final int ssaidKey = makeKey(SETTINGS_TYPE_SSAID, userId);
2267 ensureSettingsStateLocked(ssaidKey);
2268
Svetoslav683914b2015-01-15 14:22:26 -08002269 // Upgrade the settings to the latest version.
2270 UpgradeController upgrader = new UpgradeController(userId);
2271 upgrader.upgradeIfNeededLocked();
Dianne Hackborn32f40ee2016-10-20 15:54:14 -07002272 return true;
Svetoslav683914b2015-01-15 14:22:26 -08002273 }
2274
2275 private void ensureSettingsStateLocked(int key) {
2276 if (mSettingsStates.get(key) == null) {
2277 final int maxBytesPerPackage = getMaxBytesPerPackageForType(getTypeFromKey(key));
Svetoslav Ganove080da92016-12-21 17:10:35 -08002278 SettingsState settingsState = new SettingsState(getContext(), mLock,
2279 getSettingsFile(key), key, maxBytesPerPackage, mHandlerThread.getLooper());
Svetoslav683914b2015-01-15 14:22:26 -08002280 mSettingsStates.put(key, settingsState);
2281 }
2282 }
2283
2284 public void removeUserStateLocked(int userId, boolean permanently) {
2285 // We always keep the global settings in memory.
2286
2287 // Nuke system settings.
2288 final int systemKey = makeKey(SETTINGS_TYPE_SYSTEM, userId);
2289 final SettingsState systemSettingsState = mSettingsStates.get(systemKey);
2290 if (systemSettingsState != null) {
2291 if (permanently) {
2292 mSettingsStates.remove(systemKey);
2293 systemSettingsState.destroyLocked(null);
Brad Fitzpatrick342984a2010-03-09 16:59:30 -08002294 } else {
Svetoslav683914b2015-01-15 14:22:26 -08002295 systemSettingsState.destroyLocked(new Runnable() {
2296 @Override
2297 public void run() {
2298 mSettingsStates.remove(systemKey);
2299 }
2300 });
2301 }
2302 }
2303
2304 // Nuke secure settings.
2305 final int secureKey = makeKey(SETTINGS_TYPE_SECURE, userId);
2306 final SettingsState secureSettingsState = mSettingsStates.get(secureKey);
2307 if (secureSettingsState != null) {
2308 if (permanently) {
2309 mSettingsStates.remove(secureKey);
2310 secureSettingsState.destroyLocked(null);
2311 } else {
2312 secureSettingsState.destroyLocked(new Runnable() {
2313 @Override
2314 public void run() {
2315 mSettingsStates.remove(secureKey);
2316 }
2317 });
Brad Fitzpatrick342984a2010-03-09 16:59:30 -08002318 }
Brad Fitzpatrick1bd62bd2010-03-08 18:30:52 -08002319 }
Svet Ganov53a441c2016-04-19 19:38:00 -07002320
Mark Rathjend891f012017-01-19 04:10:37 +00002321 // Nuke ssaid settings.
2322 final int ssaidKey = makeKey(SETTINGS_TYPE_SSAID, userId);
2323 final SettingsState ssaidSettingsState = mSettingsStates.get(ssaidKey);
2324 if (ssaidSettingsState != null) {
2325 if (permanently) {
2326 mSettingsStates.remove(ssaidKey);
2327 ssaidSettingsState.destroyLocked(null);
2328 } else {
2329 ssaidSettingsState.destroyLocked(new Runnable() {
2330 @Override
2331 public void run() {
2332 mSettingsStates.remove(ssaidKey);
2333 }
2334 });
2335 }
2336 }
2337
Svet Ganov53a441c2016-04-19 19:38:00 -07002338 // Nuke generation tracking data
2339 mGenerationRegistry.onUserRemoved(userId);
Brad Fitzpatrick1bd62bd2010-03-08 18:30:52 -08002340 }
2341
Svetoslav683914b2015-01-15 14:22:26 -08002342 public boolean insertSettingLocked(int type, int userId, String name, String value,
Svetoslav Ganov5fb405b2017-01-26 22:43:09 -08002343 String tag, boolean makeDefault, String packageName, boolean forceNotify,
2344 Set<String> criticalSettings) {
Svetoslav683914b2015-01-15 14:22:26 -08002345 final int key = makeKey(type, userId);
2346
Svetoslav Ganove080da92016-12-21 17:10:35 -08002347 boolean success = false;
Svetoslav683914b2015-01-15 14:22:26 -08002348 SettingsState settingsState = peekSettingsStateLocked(key);
Svetoslav Ganove080da92016-12-21 17:10:35 -08002349 if (settingsState != null) {
2350 success = settingsState.insertSettingLocked(name, value,
2351 tag, makeDefault, packageName);
2352 }
Svetoslav683914b2015-01-15 14:22:26 -08002353
Svetoslav Ganov5fb405b2017-01-26 22:43:09 -08002354 if (success && criticalSettings != null && criticalSettings.contains(name)) {
2355 settingsState.persistSyncLocked();
2356 }
2357
Svet Ganov53a441c2016-04-19 19:38:00 -07002358 if (forceNotify || success) {
Svetoslav683914b2015-01-15 14:22:26 -08002359 notifyForSettingsChange(key, name);
2360 }
2361 return success;
2362 }
2363
Svetoslav Ganov5fb405b2017-01-26 22:43:09 -08002364 public boolean deleteSettingLocked(int type, int userId, String name, boolean forceNotify,
2365 Set<String> criticalSettings) {
Svetoslav683914b2015-01-15 14:22:26 -08002366 final int key = makeKey(type, userId);
2367
Svetoslav Ganove080da92016-12-21 17:10:35 -08002368 boolean success = false;
Svetoslav683914b2015-01-15 14:22:26 -08002369 SettingsState settingsState = peekSettingsStateLocked(key);
Svetoslav Ganove080da92016-12-21 17:10:35 -08002370 if (settingsState != null) {
2371 success = settingsState.deleteSettingLocked(name);
Dianne Hackborn32f40ee2016-10-20 15:54:14 -07002372 }
Svetoslav683914b2015-01-15 14:22:26 -08002373
Svetoslav Ganov5fb405b2017-01-26 22:43:09 -08002374 if (success && criticalSettings != null && criticalSettings.contains(name)) {
2375 settingsState.persistSyncLocked();
2376 }
2377
Svet Ganov53a441c2016-04-19 19:38:00 -07002378 if (forceNotify || success) {
Svetoslav683914b2015-01-15 14:22:26 -08002379 notifyForSettingsChange(key, name);
2380 }
2381 return success;
2382 }
2383
Svetoslav Ganov5fb405b2017-01-26 22:43:09 -08002384 public boolean updateSettingLocked(int type, int userId, String name, String value,
2385 String tag, boolean makeDefault, String packageName, boolean forceNotify,
2386 Set<String> criticalSettings) {
2387 final int key = makeKey(type, userId);
2388
2389 boolean success = false;
2390 SettingsState settingsState = peekSettingsStateLocked(key);
2391 if (settingsState != null) {
2392 success = settingsState.updateSettingLocked(name, value, tag,
2393 makeDefault, packageName);
2394 }
2395
2396 if (success && criticalSettings != null && criticalSettings.contains(name)) {
2397 settingsState.persistSyncLocked();
2398 }
2399
2400 if (forceNotify || success) {
2401 notifyForSettingsChange(key, name);
2402 }
2403
2404 return success;
2405 }
2406
Svetoslav683914b2015-01-15 14:22:26 -08002407 public Setting getSettingLocked(int type, int userId, String name) {
2408 final int key = makeKey(type, userId);
2409
2410 SettingsState settingsState = peekSettingsStateLocked(key);
Dianne Hackborn32f40ee2016-10-20 15:54:14 -07002411 if (settingsState == null) {
Mark Rathjenea617592017-01-18 23:03:41 -08002412 return null;
Dianne Hackborn32f40ee2016-10-20 15:54:14 -07002413 }
Mark Rathjend891f012017-01-19 04:10:37 +00002414
2415 // getSettingLocked will return non-null result
Svetoslav683914b2015-01-15 14:22:26 -08002416 return settingsState.getSettingLocked(name);
2417 }
2418
Svetoslav Ganove080da92016-12-21 17:10:35 -08002419 public void resetSettingsLocked(int type, int userId, String packageName, int mode,
2420 String tag) {
2421 final int key = makeKey(type, userId);
2422 SettingsState settingsState = peekSettingsStateLocked(key);
2423 if (settingsState == null) {
2424 return;
2425 }
2426
2427 switch (mode) {
2428 case Settings.RESET_MODE_PACKAGE_DEFAULTS: {
2429 for (String name : settingsState.getSettingNamesLocked()) {
Svetoslav Ganov5fb405b2017-01-26 22:43:09 -08002430 boolean someSettingChanged = false;
Svetoslav Ganove080da92016-12-21 17:10:35 -08002431 Setting setting = settingsState.getSettingLocked(name);
2432 if (packageName.equals(setting.getPackageName())) {
2433 if (tag != null && !tag.equals(setting.getTag())) {
2434 continue;
2435 }
Svetoslav Ganov5fb405b2017-01-26 22:43:09 -08002436 if (settingsState.resetSettingLocked(name)) {
2437 someSettingChanged = true;
Svetoslav Ganove080da92016-12-21 17:10:35 -08002438 notifyForSettingsChange(key, name);
2439 }
2440 }
Svetoslav Ganov5fb405b2017-01-26 22:43:09 -08002441 if (someSettingChanged) {
2442 settingsState.persistSyncLocked();
2443 }
Svetoslav Ganove080da92016-12-21 17:10:35 -08002444 }
2445 } break;
2446
2447 case Settings.RESET_MODE_UNTRUSTED_DEFAULTS: {
2448 for (String name : settingsState.getSettingNamesLocked()) {
Svetoslav Ganov5fb405b2017-01-26 22:43:09 -08002449 boolean someSettingChanged = false;
Svetoslav Ganove080da92016-12-21 17:10:35 -08002450 Setting setting = settingsState.getSettingLocked(name);
2451 if (!SettingsState.isSystemPackage(getContext(),
2452 setting.getPackageName())) {
Svetoslav Ganov5fb405b2017-01-26 22:43:09 -08002453 if (settingsState.resetSettingLocked(name)) {
2454 someSettingChanged = true;
Svetoslav Ganove080da92016-12-21 17:10:35 -08002455 notifyForSettingsChange(key, name);
2456 }
2457 }
Svetoslav Ganov5fb405b2017-01-26 22:43:09 -08002458 if (someSettingChanged) {
2459 settingsState.persistSyncLocked();
2460 }
Svetoslav Ganove080da92016-12-21 17:10:35 -08002461 }
2462 } break;
2463
2464 case Settings.RESET_MODE_UNTRUSTED_CHANGES: {
2465 for (String name : settingsState.getSettingNamesLocked()) {
Svetoslav Ganov5fb405b2017-01-26 22:43:09 -08002466 boolean someSettingChanged = false;
Svetoslav Ganove080da92016-12-21 17:10:35 -08002467 Setting setting = settingsState.getSettingLocked(name);
2468 if (!SettingsState.isSystemPackage(getContext(),
2469 setting.getPackageName())) {
Eugene Suslad72c3972016-12-27 15:49:30 -08002470 if (setting.isDefaultFromSystem()) {
Svetoslav Ganov5fb405b2017-01-26 22:43:09 -08002471 if (settingsState.resetSettingLocked(name)) {
2472 someSettingChanged = true;
Svetoslav Ganove080da92016-12-21 17:10:35 -08002473 notifyForSettingsChange(key, name);
2474 }
2475 } else if (settingsState.deleteSettingLocked(name)) {
Svetoslav Ganov5fb405b2017-01-26 22:43:09 -08002476 someSettingChanged = true;
Svetoslav Ganove080da92016-12-21 17:10:35 -08002477 notifyForSettingsChange(key, name);
2478 }
2479 }
Svetoslav Ganov5fb405b2017-01-26 22:43:09 -08002480 if (someSettingChanged) {
2481 settingsState.persistSyncLocked();
2482 }
Svetoslav Ganove080da92016-12-21 17:10:35 -08002483 }
2484 } break;
2485
2486 case Settings.RESET_MODE_TRUSTED_DEFAULTS: {
2487 for (String name : settingsState.getSettingNamesLocked()) {
2488 Setting setting = settingsState.getSettingLocked(name);
Svetoslav Ganov5fb405b2017-01-26 22:43:09 -08002489 boolean someSettingChanged = false;
Eugene Suslad72c3972016-12-27 15:49:30 -08002490 if (setting.isDefaultFromSystem()) {
Svetoslav Ganov5fb405b2017-01-26 22:43:09 -08002491 if (settingsState.resetSettingLocked(name)) {
2492 someSettingChanged = true;
Svetoslav Ganove080da92016-12-21 17:10:35 -08002493 notifyForSettingsChange(key, name);
2494 }
2495 } else if (settingsState.deleteSettingLocked(name)) {
Svetoslav Ganov5fb405b2017-01-26 22:43:09 -08002496 someSettingChanged = true;
Svetoslav Ganove080da92016-12-21 17:10:35 -08002497 notifyForSettingsChange(key, name);
2498 }
Svetoslav Ganov5fb405b2017-01-26 22:43:09 -08002499 if (someSettingChanged) {
2500 settingsState.persistSyncLocked();
2501 }
Svetoslav Ganove080da92016-12-21 17:10:35 -08002502 }
2503 } break;
2504 }
2505 }
2506
Svetoslav683914b2015-01-15 14:22:26 -08002507 public void onPackageRemovedLocked(String packageName, int userId) {
Svet Ganov8de34802015-04-27 09:33:40 -07002508 // Global and secure settings are signature protected. Apps signed
2509 // by the platform certificate are generally not uninstalled and
2510 // the main exception is tests. We trust components signed
2511 // by the platform certificate and do not do a clean up after them.
Svetoslav683914b2015-01-15 14:22:26 -08002512
2513 final int systemKey = makeKey(SETTINGS_TYPE_SYSTEM, userId);
2514 SettingsState systemSettings = mSettingsStates.get(systemKey);
Svet Ganov8de34802015-04-27 09:33:40 -07002515 if (systemSettings != null) {
2516 systemSettings.onPackageRemovedLocked(packageName);
2517 }
Svetoslav683914b2015-01-15 14:22:26 -08002518 }
2519
Mark Rathjend891f012017-01-19 04:10:37 +00002520 public void onUidRemovedLocked(int uid) {
2521 final SettingsState ssaidSettings = getSettingsLocked(SETTINGS_TYPE_SSAID,
2522 UserHandle.getUserId(uid));
2523 ssaidSettings.deleteSettingLocked(Integer.toString(uid));
2524 }
2525
Svetoslav683914b2015-01-15 14:22:26 -08002526 private SettingsState peekSettingsStateLocked(int key) {
2527 SettingsState settingsState = mSettingsStates.get(key);
2528 if (settingsState != null) {
2529 return settingsState;
2530 }
2531
Dianne Hackborn32f40ee2016-10-20 15:54:14 -07002532 if (!ensureSettingsForUserLocked(getUserIdFromKey(key))) {
2533 return null;
2534 }
Svetoslav683914b2015-01-15 14:22:26 -08002535 return mSettingsStates.get(key);
2536 }
2537
2538 private void migrateAllLegacySettingsIfNeeded() {
2539 synchronized (mLock) {
Xiaohui Chen43765b72015-08-31 10:57:33 -07002540 final int key = makeKey(SETTINGS_TYPE_GLOBAL, UserHandle.USER_SYSTEM);
Svetoslav683914b2015-01-15 14:22:26 -08002541 File globalFile = getSettingsFile(key);
2542 if (globalFile.exists()) {
2543 return;
2544 }
2545
Amith Yamasani39452022017-03-21 15:23:47 -07002546 mSettingsCreationBuildId = Build.ID;
2547
Svetoslav683914b2015-01-15 14:22:26 -08002548 final long identity = Binder.clearCallingIdentity();
2549 try {
2550 List<UserInfo> users = mUserManager.getUsers(true);
2551
2552 final int userCount = users.size();
2553 for (int i = 0; i < userCount; i++) {
2554 final int userId = users.get(i).id;
2555
2556 DatabaseHelper dbHelper = new DatabaseHelper(getContext(), userId);
2557 SQLiteDatabase database = dbHelper.getWritableDatabase();
2558 migrateLegacySettingsForUserLocked(dbHelper, database, userId);
2559
2560 // Upgrade to the latest version.
2561 UpgradeController upgrader = new UpgradeController(userId);
2562 upgrader.upgradeIfNeededLocked();
2563
2564 // Drop from memory if not a running user.
2565 if (!mUserManager.isUserRunning(new UserHandle(userId))) {
2566 removeUserStateLocked(userId, false);
2567 }
2568 }
2569 } finally {
2570 Binder.restoreCallingIdentity(identity);
2571 }
2572 }
2573 }
2574
2575 private void migrateLegacySettingsForUserIfNeededLocked(int userId) {
2576 // Every user has secure settings and if no file we need to migrate.
2577 final int secureKey = makeKey(SETTINGS_TYPE_SECURE, userId);
2578 File secureFile = getSettingsFile(secureKey);
2579 if (secureFile.exists()) {
2580 return;
2581 }
2582
2583 DatabaseHelper dbHelper = new DatabaseHelper(getContext(), userId);
2584 SQLiteDatabase database = dbHelper.getWritableDatabase();
2585
2586 migrateLegacySettingsForUserLocked(dbHelper, database, userId);
2587 }
2588
2589 private void migrateLegacySettingsForUserLocked(DatabaseHelper dbHelper,
2590 SQLiteDatabase database, int userId) {
Amith Yamasanibf2ef612016-03-07 16:37:18 -08002591 // Move over the system settings.
2592 final int systemKey = makeKey(SETTINGS_TYPE_SYSTEM, userId);
2593 ensureSettingsStateLocked(systemKey);
2594 SettingsState systemSettings = mSettingsStates.get(systemKey);
2595 migrateLegacySettingsLocked(systemSettings, database, TABLE_SYSTEM);
2596 systemSettings.persistSyncLocked();
Svetoslav683914b2015-01-15 14:22:26 -08002597
2598 // Move over the secure settings.
Amith Yamasanibf2ef612016-03-07 16:37:18 -08002599 // Do this after System settings, since this is the first thing we check when deciding
2600 // to skip over migration from db to xml for a secondary user.
Svetoslav683914b2015-01-15 14:22:26 -08002601 final int secureKey = makeKey(SETTINGS_TYPE_SECURE, userId);
2602 ensureSettingsStateLocked(secureKey);
2603 SettingsState secureSettings = mSettingsStates.get(secureKey);
2604 migrateLegacySettingsLocked(secureSettings, database, TABLE_SECURE);
2605 ensureSecureSettingAndroidIdSetLocked(secureSettings);
2606 secureSettings.persistSyncLocked();
2607
Amith Yamasanibf2ef612016-03-07 16:37:18 -08002608 // Move over the global settings if owner.
2609 // Do this last, since this is the first thing we check when deciding
2610 // to skip over migration from db to xml for owner user.
2611 if (userId == UserHandle.USER_SYSTEM) {
2612 final int globalKey = makeKey(SETTINGS_TYPE_GLOBAL, userId);
2613 ensureSettingsStateLocked(globalKey);
2614 SettingsState globalSettings = mSettingsStates.get(globalKey);
2615 migrateLegacySettingsLocked(globalSettings, database, TABLE_GLOBAL);
Amith Yamasani39452022017-03-21 15:23:47 -07002616 // If this was just created
2617 if (mSettingsCreationBuildId != null) {
2618 globalSettings.insertSettingLocked(Settings.Global.DATABASE_CREATION_BUILDID,
2619 mSettingsCreationBuildId, null, true,
2620 SettingsState.SYSTEM_PACKAGE_NAME);
2621 }
Amith Yamasanibf2ef612016-03-07 16:37:18 -08002622 globalSettings.persistSyncLocked();
2623 }
Svetoslav683914b2015-01-15 14:22:26 -08002624
2625 // Drop the database as now all is moved and persisted.
2626 if (DROP_DATABASE_ON_MIGRATION) {
2627 dbHelper.dropDatabase();
2628 } else {
2629 dbHelper.backupDatabase();
2630 }
2631 }
2632
2633 private void migrateLegacySettingsLocked(SettingsState settingsState,
2634 SQLiteDatabase database, String table) {
2635 SQLiteQueryBuilder queryBuilder = new SQLiteQueryBuilder();
2636 queryBuilder.setTables(table);
2637
2638 Cursor cursor = queryBuilder.query(database, ALL_COLUMNS,
2639 null, null, null, null, null);
2640
2641 if (cursor == null) {
2642 return;
2643 }
2644
2645 try {
2646 if (!cursor.moveToFirst()) {
2647 return;
2648 }
2649
2650 final int nameColumnIdx = cursor.getColumnIndex(Settings.NameValueTable.NAME);
2651 final int valueColumnIdx = cursor.getColumnIndex(Settings.NameValueTable.VALUE);
2652
2653 settingsState.setVersionLocked(database.getVersion());
2654
2655 while (!cursor.isAfterLast()) {
2656 String name = cursor.getString(nameColumnIdx);
2657 String value = cursor.getString(valueColumnIdx);
Svetoslav Ganove080da92016-12-21 17:10:35 -08002658 settingsState.insertSettingLocked(name, value, null, true,
Svetoslav683914b2015-01-15 14:22:26 -08002659 SettingsState.SYSTEM_PACKAGE_NAME);
2660 cursor.moveToNext();
2661 }
2662 } finally {
2663 cursor.close();
2664 }
2665 }
2666
2667 private void ensureSecureSettingAndroidIdSetLocked(SettingsState secureSettings) {
2668 Setting value = secureSettings.getSettingLocked(Settings.Secure.ANDROID_ID);
2669
Seigo Nonaka6e5b6022016-04-27 16:32:44 +09002670 if (!value.isNull()) {
Svetoslav683914b2015-01-15 14:22:26 -08002671 return;
2672 }
2673
2674 final int userId = getUserIdFromKey(secureSettings.mKey);
2675
2676 final UserInfo user;
2677 final long identity = Binder.clearCallingIdentity();
2678 try {
2679 user = mUserManager.getUserInfo(userId);
2680 } finally {
2681 Binder.restoreCallingIdentity(identity);
2682 }
2683 if (user == null) {
2684 // Can happen due to races when deleting users - treat as benign.
2685 return;
2686 }
2687
2688 String androidId = Long.toHexString(new SecureRandom().nextLong());
2689 secureSettings.insertSettingLocked(Settings.Secure.ANDROID_ID, androidId,
Svetoslav Ganove080da92016-12-21 17:10:35 -08002690 null, true, SettingsState.SYSTEM_PACKAGE_NAME);
Svetoslav683914b2015-01-15 14:22:26 -08002691
2692 Slog.d(LOG_TAG, "Generated and saved new ANDROID_ID [" + androidId
2693 + "] for user " + userId);
2694
2695 // Write a drop box entry if it's a restricted profile
2696 if (user.isRestricted()) {
2697 DropBoxManager dbm = (DropBoxManager) getContext().getSystemService(
2698 Context.DROPBOX_SERVICE);
2699 if (dbm != null && dbm.isTagEnabled(DROPBOX_TAG_USERLOG)) {
2700 dbm.addText(DROPBOX_TAG_USERLOG, System.currentTimeMillis()
2701 + "," + DROPBOX_TAG_USERLOG + "," + androidId + "\n");
2702 }
2703 }
2704 }
2705
2706 private void notifyForSettingsChange(int key, String name) {
Svetoslav683914b2015-01-15 14:22:26 -08002707 final int userId = getUserIdFromKey(key);
2708 Uri uri = getNotificationUriFor(key, name);
2709
Phil Weaver83fec002016-05-11 10:55:29 -07002710 mGenerationRegistry.incrementGeneration(key);
2711
Svetoslav7e0683b2015-08-03 16:02:52 -07002712 mHandler.obtainMessage(MyHandler.MSG_NOTIFY_URI_CHANGED,
2713 userId, 0, uri).sendToTarget();
2714
Nicolas Prevot310e1ee2015-07-02 14:03:06 +01002715 if (isSecureSettingsKey(key)) {
Svet Ganov53a441c2016-04-19 19:38:00 -07002716 maybeNotifyProfiles(getTypeFromKey(key), userId, uri, name,
2717 sSecureCloneToManagedSettings);
Robin Lee7af9a742017-02-20 14:47:30 +00002718 maybeNotifyProfiles(SETTINGS_TYPE_SYSTEM, userId, uri, name,
2719 sSystemCloneFromParentOnDependency.values());
Nicolas Prevot310e1ee2015-07-02 14:03:06 +01002720 } else if (isSystemSettingsKey(key)) {
Svet Ganov53a441c2016-04-19 19:38:00 -07002721 maybeNotifyProfiles(getTypeFromKey(key), userId, uri, name,
2722 sSystemCloneToManagedSettings);
Nicolas Prevot310e1ee2015-07-02 14:03:06 +01002723 }
Svet Ganov53a441c2016-04-19 19:38:00 -07002724
Svet Ganov53a441c2016-04-19 19:38:00 -07002725 mHandler.obtainMessage(MyHandler.MSG_NOTIFY_DATA_CHANGED).sendToTarget();
Nicolas Prevot310e1ee2015-07-02 14:03:06 +01002726 }
2727
Svet Ganov53a441c2016-04-19 19:38:00 -07002728 private void maybeNotifyProfiles(int type, int userId, Uri uri, String name,
Robin Lee7af9a742017-02-20 14:47:30 +00002729 Collection<String> keysCloned) {
Nicolas Prevot310e1ee2015-07-02 14:03:06 +01002730 if (keysCloned.contains(name)) {
Fyodor Kupolov7f98aa42016-04-07 14:56:25 -07002731 for (int profileId : mUserManager.getProfileIdsWithDisabled(userId)) {
Nicolas Prevot310e1ee2015-07-02 14:03:06 +01002732 // the notification for userId has already been sent.
Fyodor Kupolov7f98aa42016-04-07 14:56:25 -07002733 if (profileId != userId) {
Svetoslav7e0683b2015-08-03 16:02:52 -07002734 mHandler.obtainMessage(MyHandler.MSG_NOTIFY_URI_CHANGED,
Fyodor Kupolov7f98aa42016-04-07 14:56:25 -07002735 profileId, 0, uri).sendToTarget();
Svet Ganov53a441c2016-04-19 19:38:00 -07002736 final int key = makeKey(type, profileId);
2737 mGenerationRegistry.incrementGeneration(key);
2738
2739 mHandler.obtainMessage(MyHandler.MSG_NOTIFY_DATA_CHANGED).sendToTarget();
Nicolas Prevot310e1ee2015-07-02 14:03:06 +01002740 }
2741 }
2742 }
Svetoslav683914b2015-01-15 14:22:26 -08002743 }
2744
Svetoslav683914b2015-01-15 14:22:26 -08002745 private boolean isGlobalSettingsKey(int key) {
2746 return getTypeFromKey(key) == SETTINGS_TYPE_GLOBAL;
2747 }
2748
2749 private boolean isSystemSettingsKey(int key) {
2750 return getTypeFromKey(key) == SETTINGS_TYPE_SYSTEM;
2751 }
2752
2753 private boolean isSecureSettingsKey(int key) {
2754 return getTypeFromKey(key) == SETTINGS_TYPE_SECURE;
2755 }
2756
Mark Rathjend891f012017-01-19 04:10:37 +00002757 private boolean isSsaidSettingsKey(int key) {
2758 return getTypeFromKey(key) == SETTINGS_TYPE_SSAID;
2759 }
2760
Svetoslav683914b2015-01-15 14:22:26 -08002761 private File getSettingsFile(int key) {
2762 if (isGlobalSettingsKey(key)) {
2763 final int userId = getUserIdFromKey(key);
2764 return new File(Environment.getUserSystemDirectory(userId),
2765 SETTINGS_FILE_GLOBAL);
2766 } else if (isSystemSettingsKey(key)) {
2767 final int userId = getUserIdFromKey(key);
2768 return new File(Environment.getUserSystemDirectory(userId),
2769 SETTINGS_FILE_SYSTEM);
2770 } else if (isSecureSettingsKey(key)) {
2771 final int userId = getUserIdFromKey(key);
2772 return new File(Environment.getUserSystemDirectory(userId),
2773 SETTINGS_FILE_SECURE);
Mark Rathjend891f012017-01-19 04:10:37 +00002774 } else if (isSsaidSettingsKey(key)) {
2775 final int userId = getUserIdFromKey(key);
2776 return new File(Environment.getUserSystemDirectory(userId),
2777 SETTINGS_FILE_SSAID);
Svetoslav683914b2015-01-15 14:22:26 -08002778 } else {
2779 throw new IllegalArgumentException("Invalid settings key:" + key);
2780 }
2781 }
2782
2783 private Uri getNotificationUriFor(int key, String name) {
2784 if (isGlobalSettingsKey(key)) {
2785 return (name != null) ? Uri.withAppendedPath(Settings.Global.CONTENT_URI, name)
2786 : Settings.Global.CONTENT_URI;
2787 } else if (isSecureSettingsKey(key)) {
2788 return (name != null) ? Uri.withAppendedPath(Settings.Secure.CONTENT_URI, name)
2789 : Settings.Secure.CONTENT_URI;
2790 } else if (isSystemSettingsKey(key)) {
2791 return (name != null) ? Uri.withAppendedPath(Settings.System.CONTENT_URI, name)
2792 : Settings.System.CONTENT_URI;
2793 } else {
2794 throw new IllegalArgumentException("Invalid settings key:" + key);
2795 }
2796 }
2797
2798 private int getMaxBytesPerPackageForType(int type) {
2799 switch (type) {
2800 case SETTINGS_TYPE_GLOBAL:
Mark Rathjend891f012017-01-19 04:10:37 +00002801 case SETTINGS_TYPE_SECURE:
2802 case SETTINGS_TYPE_SSAID: {
Svetoslav683914b2015-01-15 14:22:26 -08002803 return SettingsState.MAX_BYTES_PER_APP_PACKAGE_UNLIMITED;
2804 }
2805
2806 default: {
2807 return SettingsState.MAX_BYTES_PER_APP_PACKAGE_LIMITED;
2808 }
2809 }
2810 }
2811
Svetoslav7e0683b2015-08-03 16:02:52 -07002812 private final class MyHandler extends Handler {
2813 private static final int MSG_NOTIFY_URI_CHANGED = 1;
2814 private static final int MSG_NOTIFY_DATA_CHANGED = 2;
2815
2816 public MyHandler(Looper looper) {
2817 super(looper);
2818 }
2819
2820 @Override
2821 public void handleMessage(Message msg) {
2822 switch (msg.what) {
2823 case MSG_NOTIFY_URI_CHANGED: {
2824 final int userId = msg.arg1;
2825 Uri uri = (Uri) msg.obj;
2826 getContext().getContentResolver().notifyChange(uri, null, true, userId);
2827 if (DEBUG) {
2828 Slog.v(LOG_TAG, "Notifying for " + userId + ": " + uri);
2829 }
2830 } break;
2831
2832 case MSG_NOTIFY_DATA_CHANGED: {
2833 mBackupManager.dataChanged();
2834 } break;
2835 }
2836 }
2837 }
2838
Svetoslav683914b2015-01-15 14:22:26 -08002839 private final class UpgradeController {
Felipe Lemeff355092017-04-03 12:55:02 -07002840 private static final int SETTINGS_VERSION = 144;
Svetoslav683914b2015-01-15 14:22:26 -08002841
2842 private final int mUserId;
2843
2844 public UpgradeController(int userId) {
2845 mUserId = userId;
2846 }
2847
2848 public void upgradeIfNeededLocked() {
2849 // The version of all settings for a user is the same (all users have secure).
2850 SettingsState secureSettings = getSettingsLocked(
Svet Ganov53a441c2016-04-19 19:38:00 -07002851 SETTINGS_TYPE_SECURE, mUserId);
Svetoslav683914b2015-01-15 14:22:26 -08002852
2853 // Try an update from the current state.
2854 final int oldVersion = secureSettings.getVersionLocked();
2855 final int newVersion = SETTINGS_VERSION;
2856
Svet Ganovc9755bc2015-03-28 13:21:22 -07002857 // If up do date - done.
Svetoslav683914b2015-01-15 14:22:26 -08002858 if (oldVersion == newVersion) {
2859 return;
2860 }
2861
2862 // Try to upgrade.
2863 final int curVersion = onUpgradeLocked(mUserId, oldVersion, newVersion);
2864
2865 // If upgrade failed start from scratch and upgrade.
2866 if (curVersion != newVersion) {
2867 // Drop state we have for this user.
2868 removeUserStateLocked(mUserId, true);
2869
2870 // Recreate the database.
2871 DatabaseHelper dbHelper = new DatabaseHelper(getContext(), mUserId);
2872 SQLiteDatabase database = dbHelper.getWritableDatabase();
2873 dbHelper.recreateDatabase(database, newVersion, curVersion, oldVersion);
2874
2875 // Migrate the settings for this user.
2876 migrateLegacySettingsForUserLocked(dbHelper, database, mUserId);
2877
2878 // Now upgrade should work fine.
2879 onUpgradeLocked(mUserId, oldVersion, newVersion);
Svetoslav Ganov264c7a92016-08-24 17:31:14 -07002880
2881 // Make a note what happened, so we don't wonder why data was lost
2882 String reason = "Settings rebuilt! Current version: "
2883 + curVersion + " while expected: " + newVersion;
2884 getGlobalSettingsLocked().insertSettingLocked(
Svetoslav Ganove080da92016-12-21 17:10:35 -08002885 Settings.Global.DATABASE_DOWNGRADE_REASON,
2886 reason, null, true, SettingsState.SYSTEM_PACKAGE_NAME);
Svetoslav683914b2015-01-15 14:22:26 -08002887 }
2888
2889 // Set the global settings version if owner.
Xiaohui Chen43765b72015-08-31 10:57:33 -07002890 if (mUserId == UserHandle.USER_SYSTEM) {
Svetoslav683914b2015-01-15 14:22:26 -08002891 SettingsState globalSettings = getSettingsLocked(
Svet Ganov53a441c2016-04-19 19:38:00 -07002892 SETTINGS_TYPE_GLOBAL, mUserId);
Svetoslav683914b2015-01-15 14:22:26 -08002893 globalSettings.setVersionLocked(newVersion);
2894 }
2895
2896 // Set the secure settings version.
2897 secureSettings.setVersionLocked(newVersion);
2898
2899 // Set the system settings version.
2900 SettingsState systemSettings = getSettingsLocked(
Svet Ganov53a441c2016-04-19 19:38:00 -07002901 SETTINGS_TYPE_SYSTEM, mUserId);
Svetoslav683914b2015-01-15 14:22:26 -08002902 systemSettings.setVersionLocked(newVersion);
2903 }
2904
2905 private SettingsState getGlobalSettingsLocked() {
Xiaohui Chen43765b72015-08-31 10:57:33 -07002906 return getSettingsLocked(SETTINGS_TYPE_GLOBAL, UserHandle.USER_SYSTEM);
Svetoslav683914b2015-01-15 14:22:26 -08002907 }
2908
2909 private SettingsState getSecureSettingsLocked(int userId) {
2910 return getSettingsLocked(SETTINGS_TYPE_SECURE, userId);
2911 }
2912
Mark Rathjend891f012017-01-19 04:10:37 +00002913 private SettingsState getSsaidSettingsLocked(int userId) {
2914 return getSettingsLocked(SETTINGS_TYPE_SSAID, userId);
2915 }
2916
Svetoslav683914b2015-01-15 14:22:26 -08002917 private SettingsState getSystemSettingsLocked(int userId) {
2918 return getSettingsLocked(SETTINGS_TYPE_SYSTEM, userId);
2919 }
2920
Jeff Brown503cffc2015-03-26 18:08:51 -07002921 /**
2922 * You must perform all necessary mutations to bring the settings
2923 * for this user from the old to the new version. When you add a new
2924 * upgrade step you *must* update SETTINGS_VERSION.
2925 *
2926 * This is an example of moving a setting from secure to global.
2927 *
2928 * // v119: Example settings changes.
2929 * if (currentVersion == 118) {
2930 * if (userId == UserHandle.USER_OWNER) {
2931 * // Remove from the secure settings.
2932 * SettingsState secureSettings = getSecureSettingsLocked(userId);
2933 * String name = "example_setting_to_move";
2934 * String value = secureSettings.getSetting(name);
2935 * secureSettings.deleteSetting(name);
2936 *
2937 * // Add to the global settings.
2938 * SettingsState globalSettings = getGlobalSettingsLocked();
2939 * globalSettings.insertSetting(name, value, SettingsState.SYSTEM_PACKAGE_NAME);
2940 * }
2941 *
2942 * // Update the current version.
2943 * currentVersion = 119;
2944 * }
2945 */
Svetoslav683914b2015-01-15 14:22:26 -08002946 private int onUpgradeLocked(int userId, int oldVersion, int newVersion) {
2947 if (DEBUG) {
2948 Slog.w(LOG_TAG, "Upgrading settings for user: " + userId + " from version: "
2949 + oldVersion + " to version: " + newVersion);
2950 }
2951
Jeff Brown503cffc2015-03-26 18:08:51 -07002952 int currentVersion = oldVersion;
Svetoslav683914b2015-01-15 14:22:26 -08002953
John Spurlocke11ae112015-05-11 16:09:03 -04002954 // v119: Reset zen + ringer mode.
2955 if (currentVersion == 118) {
Xiaohui Chen43765b72015-08-31 10:57:33 -07002956 if (userId == UserHandle.USER_SYSTEM) {
John Spurlocke11ae112015-05-11 16:09:03 -04002957 final SettingsState globalSettings = getGlobalSettingsLocked();
2958 globalSettings.updateSettingLocked(Settings.Global.ZEN_MODE,
Svetoslav Ganove080da92016-12-21 17:10:35 -08002959 Integer.toString(Settings.Global.ZEN_MODE_OFF), null,
2960 true, SettingsState.SYSTEM_PACKAGE_NAME);
John Spurlocke11ae112015-05-11 16:09:03 -04002961 globalSettings.updateSettingLocked(Settings.Global.MODE_RINGER,
Svetoslav Ganove080da92016-12-21 17:10:35 -08002962 Integer.toString(AudioManager.RINGER_MODE_NORMAL), null,
2963 true, SettingsState.SYSTEM_PACKAGE_NAME);
John Spurlocke11ae112015-05-11 16:09:03 -04002964 }
2965 currentVersion = 119;
2966 }
2967
Jason Monk27bbb2d2015-03-31 16:46:39 -04002968 // v120: Add double tap to wake setting.
2969 if (currentVersion == 119) {
2970 SettingsState secureSettings = getSecureSettingsLocked(userId);
2971 secureSettings.insertSettingLocked(Settings.Secure.DOUBLE_TAP_TO_WAKE,
2972 getContext().getResources().getBoolean(
Svetoslav Ganove080da92016-12-21 17:10:35 -08002973 R.bool.def_double_tap_to_wake) ? "1" : "0", null, true,
Jason Monk27bbb2d2015-03-31 16:46:39 -04002974 SettingsState.SYSTEM_PACKAGE_NAME);
2975
2976 currentVersion = 120;
2977 }
2978
Svetoslav7e0683b2015-08-03 16:02:52 -07002979 if (currentVersion == 120) {
2980 // Before 121, we used a different string encoding logic. We just bump the
2981 // version here; SettingsState knows how to handle pre-version 120 files.
2982 currentVersion = 121;
2983 }
Makoto Onuki3a2c35782015-06-18 11:21:58 -07002984
Martijn Coenen7ab4b7f2015-07-27 15:58:32 +02002985 if (currentVersion == 121) {
2986 // Version 122: allow OEMs to set a default payment component in resources.
2987 // Note that we only write the default if no default has been set;
2988 // if there is, we just leave the default at whatever it currently is.
2989 final SettingsState secureSettings = getSecureSettingsLocked(userId);
2990 String defaultComponent = (getContext().getResources().getString(
2991 R.string.def_nfc_payment_component));
2992 Setting currentSetting = secureSettings.getSettingLocked(
2993 Settings.Secure.NFC_PAYMENT_DEFAULT_COMPONENT);
2994 if (defaultComponent != null && !defaultComponent.isEmpty() &&
Svetoslav Ganovfedb2302016-04-26 18:36:42 -07002995 currentSetting.isNull()) {
Martijn Coenen7ab4b7f2015-07-27 15:58:32 +02002996 secureSettings.insertSettingLocked(
2997 Settings.Secure.NFC_PAYMENT_DEFAULT_COMPONENT,
Svetoslav Ganove080da92016-12-21 17:10:35 -08002998 defaultComponent, null, true, SettingsState.SYSTEM_PACKAGE_NAME);
Martijn Coenen7ab4b7f2015-07-27 15:58:32 +02002999 }
3000 currentVersion = 122;
3001 }
Suprabh Shukla269c11e2015-12-02 16:51:16 -08003002
3003 if (currentVersion == 122) {
3004 // Version 123: Adding a default value for the ability to add a user from
3005 // the lock screen.
3006 if (userId == UserHandle.USER_SYSTEM) {
3007 final SettingsState globalSettings = getGlobalSettingsLocked();
3008 Setting currentSetting = globalSettings.getSettingLocked(
3009 Settings.Global.ADD_USERS_WHEN_LOCKED);
Svetoslav Ganovfedb2302016-04-26 18:36:42 -07003010 if (currentSetting.isNull()) {
Suprabh Shukla269c11e2015-12-02 16:51:16 -08003011 globalSettings.insertSettingLocked(
3012 Settings.Global.ADD_USERS_WHEN_LOCKED,
3013 getContext().getResources().getBoolean(
3014 R.bool.def_add_users_from_lockscreen) ? "1" : "0",
Svetoslav Ganove080da92016-12-21 17:10:35 -08003015 null, true, SettingsState.SYSTEM_PACKAGE_NAME);
Suprabh Shukla269c11e2015-12-02 16:51:16 -08003016 }
3017 }
3018 currentVersion = 123;
3019 }
Bryce Leebd179282015-12-17 19:01:37 -08003020
3021 if (currentVersion == 123) {
Bryce Leeec85f342015-12-16 13:32:28 -08003022 final SettingsState globalSettings = getGlobalSettingsLocked();
3023 String defaultDisabledProfiles = (getContext().getResources().getString(
3024 R.string.def_bluetooth_disabled_profiles));
3025 globalSettings.insertSettingLocked(Settings.Global.BLUETOOTH_DISABLED_PROFILES,
Svetoslav Ganove080da92016-12-21 17:10:35 -08003026 defaultDisabledProfiles, null, true, SettingsState.SYSTEM_PACKAGE_NAME);
Bryce Leebd179282015-12-17 19:01:37 -08003027 currentVersion = 124;
Bryce Leeec85f342015-12-16 13:32:28 -08003028 }
3029
Prathmesh Prabhude16b862016-03-04 15:22:24 -08003030 if (currentVersion == 124) {
3031 // Version 124: allow OEMs to set a default value for whether IME should be
3032 // shown when a physical keyboard is connected.
3033 final SettingsState secureSettings = getSecureSettingsLocked(userId);
3034 Setting currentSetting = secureSettings.getSettingLocked(
3035 Settings.Secure.SHOW_IME_WITH_HARD_KEYBOARD);
Svetoslav Ganovfedb2302016-04-26 18:36:42 -07003036 if (currentSetting.isNull()) {
Prathmesh Prabhude16b862016-03-04 15:22:24 -08003037 secureSettings.insertSettingLocked(
3038 Settings.Secure.SHOW_IME_WITH_HARD_KEYBOARD,
3039 getContext().getResources().getBoolean(
3040 R.bool.def_show_ime_with_hard_keyboard) ? "1" : "0",
Svetoslav Ganove080da92016-12-21 17:10:35 -08003041 null, true, SettingsState.SYSTEM_PACKAGE_NAME);
Prathmesh Prabhude16b862016-03-04 15:22:24 -08003042 }
3043 currentVersion = 125;
3044 }
3045
Ruben Brunk98576cf2016-03-07 18:54:28 -08003046 if (currentVersion == 125) {
3047 // Version 125: Allow OEMs to set the default VR service.
3048 final SettingsState secureSettings = getSecureSettingsLocked(userId);
3049
3050 Setting currentSetting = secureSettings.getSettingLocked(
3051 Settings.Secure.ENABLED_VR_LISTENERS);
Svetoslav Ganovfedb2302016-04-26 18:36:42 -07003052 if (currentSetting.isNull()) {
Ruben Brunk98576cf2016-03-07 18:54:28 -08003053 ArraySet<ComponentName> l =
3054 SystemConfig.getInstance().getDefaultVrComponents();
3055
3056 if (l != null && !l.isEmpty()) {
3057 StringBuilder b = new StringBuilder();
3058 boolean start = true;
3059 for (ComponentName c : l) {
3060 if (!start) {
3061 b.append(':');
3062 }
3063 b.append(c.flattenToString());
3064 start = false;
3065 }
3066 secureSettings.insertSettingLocked(
3067 Settings.Secure.ENABLED_VR_LISTENERS, b.toString(),
Svetoslav Ganove080da92016-12-21 17:10:35 -08003068 null, true, SettingsState.SYSTEM_PACKAGE_NAME);
Ruben Brunk98576cf2016-03-07 18:54:28 -08003069 }
3070
3071 }
3072 currentVersion = 126;
3073 }
3074
Daniel U02ba6122016-04-01 18:41:42 +01003075 if (currentVersion == 126) {
3076 // Version 126: copy the primary values of LOCK_SCREEN_SHOW_NOTIFICATIONS and
3077 // LOCK_SCREEN_ALLOW_PRIVATE_NOTIFICATIONS into managed profile.
3078 if (mUserManager.isManagedProfile(userId)) {
3079 final SettingsState systemSecureSettings =
3080 getSecureSettingsLocked(UserHandle.USER_SYSTEM);
3081
3082 final Setting showNotifications = systemSecureSettings.getSettingLocked(
3083 Settings.Secure.LOCK_SCREEN_SHOW_NOTIFICATIONS);
Seigo Nonaka6e5b6022016-04-27 16:32:44 +09003084 if (!showNotifications.isNull()) {
Daniel U02ba6122016-04-01 18:41:42 +01003085 final SettingsState secureSettings = getSecureSettingsLocked(userId);
3086 secureSettings.insertSettingLocked(
3087 Settings.Secure.LOCK_SCREEN_SHOW_NOTIFICATIONS,
Svetoslav Ganove080da92016-12-21 17:10:35 -08003088 showNotifications.getValue(), null, true,
Daniel U02ba6122016-04-01 18:41:42 +01003089 SettingsState.SYSTEM_PACKAGE_NAME);
3090 }
3091
3092 final Setting allowPrivate = systemSecureSettings.getSettingLocked(
3093 Settings.Secure.LOCK_SCREEN_ALLOW_PRIVATE_NOTIFICATIONS);
Seigo Nonaka6e5b6022016-04-27 16:32:44 +09003094 if (!allowPrivate.isNull()) {
Daniel U02ba6122016-04-01 18:41:42 +01003095 final SettingsState secureSettings = getSecureSettingsLocked(userId);
3096 secureSettings.insertSettingLocked(
3097 Settings.Secure.LOCK_SCREEN_ALLOW_PRIVATE_NOTIFICATIONS,
Svetoslav Ganove080da92016-12-21 17:10:35 -08003098 allowPrivate.getValue(), null, true,
Daniel U02ba6122016-04-01 18:41:42 +01003099 SettingsState.SYSTEM_PACKAGE_NAME);
3100 }
3101 }
3102 currentVersion = 127;
3103 }
3104
Steven Ngdc20ba62016-04-26 18:19:04 +01003105 if (currentVersion == 127) {
Mahaver Chopra3d9805d2016-07-07 16:25:05 +01003106 // version 127 is no longer used.
Steven Ngdc20ba62016-04-26 18:19:04 +01003107 currentVersion = 128;
3108 }
3109
Julia Reynolds1f721e12016-07-11 08:50:58 -04003110 if (currentVersion == 128) {
3111 // Version 128: Allow OEMs to grant DND access to default apps. Note that
3112 // the new apps are appended to the list of already approved apps.
3113 final SettingsState systemSecureSettings =
3114 getSecureSettingsLocked(userId);
3115
3116 final Setting policyAccess = systemSecureSettings.getSettingLocked(
3117 Settings.Secure.ENABLED_NOTIFICATION_POLICY_ACCESS_PACKAGES);
3118 String defaultPolicyAccess = getContext().getResources().getString(
3119 com.android.internal.R.string.config_defaultDndAccessPackages);
3120 if (!TextUtils.isEmpty(defaultPolicyAccess)) {
3121 if (policyAccess.isNull()) {
3122 systemSecureSettings.insertSettingLocked(
3123 Settings.Secure.ENABLED_NOTIFICATION_POLICY_ACCESS_PACKAGES,
Svetoslav Ganove080da92016-12-21 17:10:35 -08003124 defaultPolicyAccess, null, true,
Julia Reynolds1f721e12016-07-11 08:50:58 -04003125 SettingsState.SYSTEM_PACKAGE_NAME);
3126 } else {
3127 StringBuilder currentSetting =
3128 new StringBuilder(policyAccess.getValue());
3129 currentSetting.append(":");
3130 currentSetting.append(defaultPolicyAccess);
3131 systemSecureSettings.updateSettingLocked(
3132 Settings.Secure.ENABLED_NOTIFICATION_POLICY_ACCESS_PACKAGES,
Svetoslav Ganove080da92016-12-21 17:10:35 -08003133 currentSetting.toString(), null, true,
Julia Reynolds1f721e12016-07-11 08:50:58 -04003134 SettingsState.SYSTEM_PACKAGE_NAME);
3135 }
3136 }
3137
3138 currentVersion = 129;
3139 }
3140
Dan Sandler71f85e92016-07-20 13:46:05 -04003141 if (currentVersion == 129) {
3142 // default longpress timeout changed from 500 to 400. If unchanged from the old
3143 // default, update to the new default.
3144 final SettingsState systemSecureSettings =
3145 getSecureSettingsLocked(userId);
3146 final String oldValue = systemSecureSettings.getSettingLocked(
3147 Settings.Secure.LONG_PRESS_TIMEOUT).getValue();
3148 if (TextUtils.equals("500", oldValue)) {
3149 systemSecureSettings.insertSettingLocked(
3150 Settings.Secure.LONG_PRESS_TIMEOUT,
3151 String.valueOf(getContext().getResources().getInteger(
3152 R.integer.def_long_press_timeout_millis)),
Svetoslav Ganove080da92016-12-21 17:10:35 -08003153 null, true, SettingsState.SYSTEM_PACKAGE_NAME);
Dan Sandler71f85e92016-07-20 13:46:05 -04003154 }
3155 currentVersion = 130;
3156 }
3157
Anthony Hugh96e9cc52016-07-12 15:17:24 -07003158 if (currentVersion == 130) {
Adrian Roos69741a22016-10-21 14:49:17 -07003159 // Split Ambient settings
3160 final SettingsState secureSettings = getSecureSettingsLocked(userId);
3161 boolean dozeExplicitlyDisabled = "0".equals(secureSettings.
3162 getSettingLocked(Settings.Secure.DOZE_ENABLED).getValue());
3163
3164 if (dozeExplicitlyDisabled) {
3165 secureSettings.insertSettingLocked(Settings.Secure.DOZE_PULSE_ON_PICK_UP,
Svetoslav Ganove080da92016-12-21 17:10:35 -08003166 "0", null, true, SettingsState.SYSTEM_PACKAGE_NAME);
Adrian Roos69741a22016-10-21 14:49:17 -07003167 secureSettings.insertSettingLocked(Settings.Secure.DOZE_PULSE_ON_DOUBLE_TAP,
Svetoslav Ganove080da92016-12-21 17:10:35 -08003168 "0", null, true, SettingsState.SYSTEM_PACKAGE_NAME);
Adrian Roos69741a22016-10-21 14:49:17 -07003169 }
3170 currentVersion = 131;
3171 }
3172
3173 if (currentVersion == 131) {
Anthony Hugh96e9cc52016-07-12 15:17:24 -07003174 // Initialize new multi-press timeout to default value
3175 final SettingsState systemSecureSettings = getSecureSettingsLocked(userId);
3176 final String oldValue = systemSecureSettings.getSettingLocked(
3177 Settings.Secure.MULTI_PRESS_TIMEOUT).getValue();
3178 if (TextUtils.equals(null, oldValue)) {
3179 systemSecureSettings.insertSettingLocked(
3180 Settings.Secure.MULTI_PRESS_TIMEOUT,
3181 String.valueOf(getContext().getResources().getInteger(
3182 R.integer.def_multi_press_timeout_millis)),
Svetoslav Ganove080da92016-12-21 17:10:35 -08003183 null, true, SettingsState.SYSTEM_PACKAGE_NAME);
Anthony Hugh96e9cc52016-07-12 15:17:24 -07003184 }
3185
Adrian Roos69741a22016-10-21 14:49:17 -07003186 currentVersion = 132;
Anthony Hugh96e9cc52016-07-12 15:17:24 -07003187 }
3188
Adrian Roos69741a22016-10-21 14:49:17 -07003189 if (currentVersion == 132) {
3190 // Version 132: Allow managed profile to optionally use the parent's ringtones
Andre Lagoea35e072016-08-04 13:41:13 +01003191 final SettingsState systemSecureSettings = getSecureSettingsLocked(userId);
3192 String defaultSyncParentSounds = (getContext().getResources()
3193 .getBoolean(R.bool.def_sync_parent_sounds) ? "1" : "0");
3194 systemSecureSettings.insertSettingLocked(
Svetoslav Ganove080da92016-12-21 17:10:35 -08003195 Settings.Secure.SYNC_PARENT_SOUNDS, defaultSyncParentSounds,
3196 null, true, SettingsState.SYSTEM_PACKAGE_NAME);
Adrian Roos69741a22016-10-21 14:49:17 -07003197 currentVersion = 133;
Andre Lagoea35e072016-08-04 13:41:13 +01003198 }
3199
Adrian Roos69741a22016-10-21 14:49:17 -07003200 if (currentVersion == 133) {
3201 // Version 133: Add default end button behavior
Keun-young Parkec7a1182016-10-18 11:52:38 -07003202 final SettingsState systemSettings = getSystemSettingsLocked(userId);
3203 if (systemSettings.getSettingLocked(Settings.System.END_BUTTON_BEHAVIOR) ==
3204 null) {
3205 String defaultEndButtonBehavior = Integer.toString(getContext()
3206 .getResources().getInteger(R.integer.def_end_button_behavior));
3207 systemSettings.insertSettingLocked(Settings.System.END_BUTTON_BEHAVIOR,
Svetoslav Ganove080da92016-12-21 17:10:35 -08003208 defaultEndButtonBehavior, null, true,
3209 SettingsState.SYSTEM_PACKAGE_NAME);
Keun-young Parkec7a1182016-10-18 11:52:38 -07003210 }
Adrian Roos69741a22016-10-21 14:49:17 -07003211 currentVersion = 134;
Keun-young Parkec7a1182016-10-18 11:52:38 -07003212 }
3213
Phil Weaver89e3ffc2016-09-19 13:51:10 -07003214 if (currentVersion == 134) {
3215 // Remove setting that specifies if magnification values should be preserved.
3216 // This setting defaulted to true and never has a UI.
3217 getSecureSettingsLocked(userId).deleteSettingLocked(
3218 Settings.Secure.ACCESSIBILITY_DISPLAY_MAGNIFICATION_AUTO_UPDATE);
3219 currentVersion = 135;
3220 }
3221
Jeremy Joslin8bdad342016-12-14 11:46:47 -08003222 if (currentVersion == 135) {
Jeremy Joslinc9eb3c42017-02-08 10:45:30 -08003223 // Version 135 no longer used.
Jeremy Joslin8bdad342016-12-14 11:46:47 -08003224 currentVersion = 136;
3225 }
3226
Mark Rathjend891f012017-01-19 04:10:37 +00003227 if (currentVersion == 136) {
3228 // Version 136: Store legacy SSAID for all apps currently installed on the
3229 // device as first step in migrating SSAID to be unique per application.
3230
3231 final boolean isUpgrade;
3232 try {
3233 isUpgrade = mPackageManager.isUpgrade();
3234 } catch (RemoteException e) {
3235 throw new IllegalStateException("Package manager not available");
3236 }
3237 // Only retain legacy ssaid if the device is performing an OTA. After wiping
3238 // user data or first boot on a new device should use new ssaid generation.
3239 if (isUpgrade) {
3240 // Retrieve the legacy ssaid from the secure settings table.
Mark Rathjenea617592017-01-18 23:03:41 -08003241 final Setting legacySsaidSetting = getSettingLocked(SETTINGS_TYPE_SECURE,
3242 userId, Settings.Secure.ANDROID_ID);
3243 if (legacySsaidSetting == null || legacySsaidSetting.isNull()
3244 || legacySsaidSetting.getValue() == null) {
3245 throw new IllegalStateException("Legacy ssaid not accessible");
3246 }
3247 final String legacySsaid = legacySsaidSetting.getValue();
Mark Rathjend891f012017-01-19 04:10:37 +00003248
3249 // Fill each uid with the legacy ssaid to be backwards compatible.
3250 final List<PackageInfo> packages;
3251 try {
3252 packages = mPackageManager.getInstalledPackages(0, userId).getList();
3253 } catch (RemoteException e) {
3254 throw new IllegalStateException("Package manager not available");
3255 }
3256
3257 final SettingsState ssaidSettings = getSsaidSettingsLocked(userId);
3258 for (PackageInfo info : packages) {
3259 // Check if the UID already has an entry in the table.
3260 final String uid = Integer.toString(info.applicationInfo.uid);
3261 final Setting ssaid = ssaidSettings.getSettingLocked(uid);
3262
3263 if (ssaid.isNull() || ssaid.getValue() == null) {
3264 // Android Id doesn't exist for this package so create it.
3265 ssaidSettings.insertSettingLocked(uid, legacySsaid, null, true,
3266 info.packageName);
3267 }
3268 }
3269 }
3270
3271 currentVersion = 137;
3272 }
Suprabh Shuklae3745ee2017-02-02 20:01:11 -08003273 if (currentVersion == 137) {
3274 // Version 138: Settings.Secure#INSTALL_NON_MARKET_APPS is deprecated and its
3275 // default value set to 1. The user can no longer change the value of this
3276 // setting through the UI.
3277 final SettingsState secureSetting = getSecureSettingsLocked(userId);
3278 if (!mUserManager.hasUserRestriction(
Suprabh Shukla0b1356f2017-02-21 14:33:50 -08003279 UserManager.DISALLOW_INSTALL_UNKNOWN_SOURCES, UserHandle.of(userId))
3280 && secureSetting.getSettingLocked(
3281 Settings.Secure.INSTALL_NON_MARKET_APPS).getValue().equals("0")) {
3282
Suprabh Shuklae3745ee2017-02-02 20:01:11 -08003283 secureSetting.insertSettingLocked(Settings.Secure.INSTALL_NON_MARKET_APPS,
3284 "1", null, true, SettingsState.SYSTEM_PACKAGE_NAME);
Suprabh Shukla0b1356f2017-02-21 14:33:50 -08003285 // For managed profiles with profile owners, DevicePolicyManagerService
3286 // may want to set the user restriction in this case
3287 secureSetting.insertSettingLocked(
3288 Settings.Secure.UNKNOWN_SOURCES_DEFAULT_REVERSED, "1", null, true,
3289 SettingsState.SYSTEM_PACKAGE_NAME);
Suprabh Shuklae3745ee2017-02-02 20:01:11 -08003290 }
3291 currentVersion = 138;
3292 }
Mark Rathjend891f012017-01-19 04:10:37 +00003293
Jeremy Joslinc9eb3c42017-02-08 10:45:30 -08003294 if (currentVersion == 138) {
Jeremy Joslin27d14c42017-02-15 12:02:03 -08003295 // Version 139: Removed.
Jeremy Joslinc9eb3c42017-02-08 10:45:30 -08003296 currentVersion = 139;
3297 }
3298
Phil Weaver385912e2017-02-10 10:06:56 -08003299 if (currentVersion == 139) {
3300 // Version 140: Settings.Secure#ACCESSIBILITY_SPEAK_PASSWORD is deprecated and
3301 // the user can no longer change the value of this setting through the UI.
3302 // Force to true.
3303 final SettingsState secureSettings = getSecureSettingsLocked(userId);
3304 secureSettings.updateSettingLocked(Settings.Secure.ACCESSIBILITY_SPEAK_PASSWORD,
3305 "1", null, true, SettingsState.SYSTEM_PACKAGE_NAME);
3306 currentVersion = 140;
3307 }
3308
Julia Reynoldsad0d9e02017-02-15 08:41:48 -05003309 if (currentVersion == 140) {
3310 // Version 141: One-time grant of notification listener privileges
3311 // to packages specified in overlay.
3312 String defaultListenerAccess = getContext().getResources().getString(
3313 com.android.internal.R.string.config_defaultListenerAccessPackages);
3314 if (defaultListenerAccess != null) {
3315 StringBuffer newListeners = new StringBuffer();
3316 for (String whitelistPkg : defaultListenerAccess.split(":")) {
3317 // Gather all notification listener components for candidate pkgs.
3318 Intent serviceIntent =
3319 new Intent(NotificationListenerService.SERVICE_INTERFACE)
3320 .setPackage(whitelistPkg);
3321 List<ResolveInfo> installedServices =
3322 getContext().getPackageManager().queryIntentServicesAsUser(
3323 serviceIntent,
3324 PackageManager.GET_SERVICES
3325 | PackageManager.GET_META_DATA
3326 | PackageManager.MATCH_DIRECT_BOOT_AWARE
3327 | PackageManager.MATCH_DIRECT_BOOT_UNAWARE,
3328 userId);
3329
3330 for (int i = 0, count = installedServices.size(); i < count; i++) {
3331 ResolveInfo resolveInfo = installedServices.get(i);
3332 ServiceInfo info = resolveInfo.serviceInfo;
3333 if (!android.Manifest.permission.BIND_NOTIFICATION_LISTENER_SERVICE
3334 .equals(info.permission)) {
3335 continue;
3336 }
3337 newListeners.append(":")
3338 .append(info.getComponentName().flattenToString());
3339 }
3340 }
3341
3342 if (newListeners.length() > 0) {
3343 final SettingsState secureSetting = getSecureSettingsLocked(userId);
3344 final Setting existingSetting = secureSetting.getSettingLocked(
3345 Settings.Secure.ENABLED_NOTIFICATION_LISTENERS);
3346 if (existingSetting.isNull()) {
3347 secureSetting.insertSettingLocked(
3348 Settings.Secure.ENABLED_NOTIFICATION_LISTENERS,
3349 newListeners.toString(), null, true,
3350 SettingsState.SYSTEM_PACKAGE_NAME);
3351 } else {
3352 StringBuilder currentSetting =
3353 new StringBuilder(existingSetting.getValue());
3354 currentSetting.append(newListeners.toString());
3355 secureSetting.updateSettingLocked(
3356 Settings.Secure.ENABLED_NOTIFICATION_LISTENERS,
3357 currentSetting.toString(), null, true,
3358 SettingsState.SYSTEM_PACKAGE_NAME);
3359 }
3360 }
3361 }
3362 currentVersion = 141;
3363 }
3364
Svet Ganov13701552017-02-23 12:45:17 -08003365 if (currentVersion == 141) {
Felipe Lemeff355092017-04-03 12:55:02 -07003366 // Version 142: We added the notion of a default and whether the system set
Svet Ganov13701552017-02-23 12:45:17 -08003367 // the setting. This is used for resetting the internal state and we need
3368 // to make sure this value is updated for the existing settings, otherwise
3369 // we would delete system set settings while they should stay unmodified.
3370 SettingsState globalSettings = getGlobalSettingsLocked();
3371 ensureLegacyDefaultValueAndSystemSetUpdatedLocked(globalSettings);
3372 globalSettings.persistSyncLocked();
3373
3374 SettingsState secureSettings = getSecureSettingsLocked(mUserId);
3375 ensureLegacyDefaultValueAndSystemSetUpdatedLocked(secureSettings);
3376 secureSettings.persistSyncLocked();
3377
3378 SettingsState systemSettings = getSystemSettingsLocked(mUserId);
3379 ensureLegacyDefaultValueAndSystemSetUpdatedLocked(systemSettings);
3380 systemSettings.persistSyncLocked();
3381
3382 currentVersion = 142;
3383 }
3384
Stephen Chen5d0922f2017-03-27 10:28:04 -07003385 if (currentVersion == 142) {
Felipe Lemeff355092017-04-03 12:55:02 -07003386 // Version 143: Set a default value for Wi-Fi wakeup feature.
Stephen Chen5d0922f2017-03-27 10:28:04 -07003387 if (userId == UserHandle.USER_SYSTEM) {
3388 final SettingsState globalSettings = getGlobalSettingsLocked();
3389 Setting currentSetting = globalSettings.getSettingLocked(
3390 Settings.Global.WIFI_WAKEUP_ENABLED);
3391 if (currentSetting.isNull()) {
3392 globalSettings.insertSettingLocked(
3393 Settings.Global.WIFI_WAKEUP_ENABLED,
3394 getContext().getResources().getBoolean(
3395 R.bool.def_wifi_wakeup_enabled) ? "1" : "0",
3396 null, true, SettingsState.SYSTEM_PACKAGE_NAME);
3397 }
3398 }
3399
3400 currentVersion = 143;
3401 }
3402
Felipe Lemeff355092017-04-03 12:55:02 -07003403 if (currentVersion == 143) {
3404 // Version 144: Set a default value for Autofill service.
3405 final SettingsState secureSettings = getSecureSettingsLocked(userId);
3406 final Setting currentSetting = secureSettings
3407 .getSettingLocked(Settings.Secure.AUTOFILL_SERVICE);
3408 if (currentSetting.isNull()) {
3409 final String defaultValue = getContext().getResources().getString(
3410 com.android.internal.R.string.config_defaultAutofillService);
3411 if (defaultValue != null) {
3412 Slog.d(LOG_TAG, "Setting [" + defaultValue + "] as Autofill Service "
3413 + "for user " + userId);
3414 secureSettings.insertSettingLocked(Settings.Secure.AUTOFILL_SERVICE,
3415 defaultValue, null, true, SettingsState.SYSTEM_PACKAGE_NAME);
3416 }
3417 }
3418
3419 currentVersion = 144;
3420 }
3421
3422 // vXXX: Add new settings above this point.
3423
Dan Sandler71f85e92016-07-20 13:46:05 -04003424 if (currentVersion != newVersion) {
Svetoslav Ganov264c7a92016-08-24 17:31:14 -07003425 Slog.wtf("SettingsProvider", "warning: upgrading settings database to version "
Dan Sandler71f85e92016-07-20 13:46:05 -04003426 + newVersion + " left it at "
Stephen Chen5d0922f2017-03-27 10:28:04 -07003427 + currentVersion +
3428 " instead; this is probably a bug. Did you update SETTINGS_VERSION?",
3429 new Throwable());
Dan Sandler71f85e92016-07-20 13:46:05 -04003430 if (DEBUG) {
3431 throw new RuntimeException("db upgrade error");
3432 }
3433 }
3434
Jeff Brown503cffc2015-03-26 18:08:51 -07003435 // Return the current version.
3436 return currentVersion;
Brad Fitzpatrick547a96b2010-03-09 17:58:53 -08003437 }
3438 }
Svet Ganov13701552017-02-23 12:45:17 -08003439
3440 private void ensureLegacyDefaultValueAndSystemSetUpdatedLocked(SettingsState settings) {
3441 List<String> names = settings.getSettingNamesLocked();
3442 final int nameCount = names.size();
3443 for (int i = 0; i < nameCount; i++) {
3444 String name = names.get(i);
3445 Setting setting = settings.getSettingLocked(name);
3446 if (setting.getDefaultValue() == null) {
3447 boolean systemSet = SettingsState.isSystemPackage(getContext(),
3448 setting.getPackageName());
3449 if (systemSet) {
3450 settings.insertSettingLocked(name, setting.getValue(),
3451 setting.getTag(), true, setting.getPackageName());
3452 }
3453 }
3454 }
3455 }
Brad Fitzpatrick1bd62bd2010-03-08 18:30:52 -08003456 }
The Android Open Source Project54b6cfa2008-10-21 07:00:00 -07003457}