blob: fdc987fb091976d86ca15e31e2a3482dd186d5ee [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
Matt Pape25c940d2019-03-26 12:14:33 -070019import static android.os.Process.INVALID_UID;
yuemingw1d13eae2018-01-30 17:27:54 +000020import static android.os.Process.ROOT_UID;
21import static android.os.Process.SHELL_UID;
22import static android.os.Process.SYSTEM_UID;
Winson Chungd9f2fb32019-03-05 11:10:12 -080023import static android.view.WindowManagerPolicyConstants.NAV_BAR_MODE_2BUTTON_OVERLAY;
yuemingw1d13eae2018-01-30 17:27:54 +000024
Svetoslav683914b2015-01-15 14:22:26 -080025import android.Manifest;
Eugene Suslad72c3972016-12-27 15:49:30 -080026import android.annotation.NonNull;
Kweku Adamsb0886f32017-10-31 15:32:09 -070027import android.annotation.Nullable;
Christopher Tated5fe1472012-09-10 15:48:38 -070028import android.app.ActivityManager;
Xiaohui Chen43765b72015-08-31 10:57:33 -070029import android.app.AppGlobals;
Christopher Tate45281862010-03-05 15:46:30 -080030import android.app.backup.BackupManager;
Christopher Tate06efb532012-08-24 15:29:27 -070031import android.content.BroadcastReceiver;
Ruben Brunk98576cf2016-03-07 18:54:28 -080032import android.content.ComponentName;
The Android Open Source Project54b6cfa2008-10-21 07:00:00 -070033import android.content.ContentProvider;
The Android Open Source Project54b6cfa2008-10-21 07:00:00 -070034import android.content.ContentValues;
35import android.content.Context;
Christopher Tate06efb532012-08-24 15:29:27 -070036import android.content.Intent;
37import android.content.IntentFilter;
Winson Chungd9f2fb32019-03-05 11:10:12 -080038import android.content.om.IOverlayManager;
Svetoslav683914b2015-01-15 14:22:26 -080039import android.content.pm.ApplicationInfo;
Xiaohui Chen43765b72015-08-31 10:57:33 -070040import android.content.pm.IPackageManager;
Svetoslav683914b2015-01-15 14:22:26 -080041import android.content.pm.PackageInfo;
The Android Open Source Project54b6cfa2008-10-21 07:00:00 -070042import android.content.pm.PackageManager;
Christopher Tate38e7a602013-09-03 16:57:34 -070043import android.content.pm.UserInfo;
Chad Brubaker20e0dc32017-04-28 18:24:55 -070044import android.content.res.Resources;
The Android Open Source Project54b6cfa2008-10-21 07:00:00 -070045import android.database.Cursor;
Svetoslav683914b2015-01-15 14:22:26 -080046import android.database.MatrixCursor;
The Android Open Source Project54b6cfa2008-10-21 07:00:00 -070047import android.database.sqlite.SQLiteDatabase;
48import android.database.sqlite.SQLiteQueryBuilder;
Svetoslav683914b2015-01-15 14:22:26 -080049import android.hardware.camera2.utils.ArrayUtils;
John Spurlocke11ae112015-05-11 16:09:03 -040050import android.media.AudioManager;
The Android Open Source Project54b6cfa2008-10-21 07:00:00 -070051import android.net.Uri;
Christopher Tate06efb532012-08-24 15:29:27 -070052import android.os.Binder;
Svetoslav683914b2015-01-15 14:22:26 -080053import android.os.Build;
Brad Fitzpatrick1877d012010-03-04 17:48:13 -080054import android.os.Bundle;
Amith Yamasani5cdf7f52013-06-27 15:12:01 -070055import android.os.DropBoxManager;
Svetoslav683914b2015-01-15 14:22:26 -080056import android.os.Environment;
Svetoslav7e0683b2015-08-03 16:02:52 -070057import android.os.Handler;
Svet Ganova8f90262016-05-10 08:44:48 -070058import android.os.HandlerThread;
Christopher Tate65fb2e42019-10-11 17:00:23 -070059import android.os.IUserRestrictionsListener;
Svetoslav7e0683b2015-08-03 16:02:52 -070060import android.os.Looper;
61import android.os.Message;
The Android Open Source Project54b6cfa2008-10-21 07:00:00 -070062import android.os.ParcelFileDescriptor;
Christopher Tate0da13572013-10-13 17:34:49 -070063import android.os.Process;
Xiaohui Chen43765b72015-08-31 10:57:33 -070064import android.os.RemoteException;
Jeff Sharkey413573a2016-02-22 17:52:45 -070065import android.os.SELinux;
Dianne Hackborn32f40ee2016-10-20 15:54:14 -070066import android.os.ServiceManager;
Christopher Tate06efb532012-08-24 15:29:27 -070067import android.os.UserHandle;
68import android.os.UserManager;
Matt Pape1278d1c2018-12-11 13:03:49 -080069import android.provider.DeviceConfig;
The Android Open Source Project54b6cfa2008-10-21 07:00:00 -070070import android.provider.Settings;
Narayan Kamath94bcdbc2017-07-17 15:32:53 +010071import android.provider.Settings.Global;
Makoto Onuki0000d322017-11-28 16:31:47 -080072import android.provider.Settings.Secure;
Al Sutton91f89d02019-08-16 12:56:57 +010073import android.provider.settings.validators.SystemSettingsValidators;
Al Suttonb0067fb2019-08-16 10:34:46 +010074import android.provider.settings.validators.Validator;
The Android Open Source Project54b6cfa2008-10-21 07:00:00 -070075import android.text.TextUtils;
Andre Lago3fa139c2016-08-04 13:53:44 +010076import android.util.ArrayMap;
Svetoslav683914b2015-01-15 14:22:26 -080077import android.util.ArraySet;
Christopher Tate06efb532012-08-24 15:29:27 -070078import android.util.Slog;
79import android.util.SparseArray;
Dianne Hackborn32f40ee2016-10-20 15:54:14 -070080import android.util.SparseBooleanArray;
Eugene Suslad72c3972016-12-27 15:49:30 -080081import android.util.proto.ProtoOutputStream;
John Spurlocke11ae112015-05-11 16:09:03 -040082
Svetoslav683914b2015-01-15 14:22:26 -080083import com.android.internal.annotations.GuardedBy;
84import com.android.internal.content.PackageMonitor;
85import com.android.internal.os.BackgroundThread;
Suprabh Shukla269c11e2015-12-02 16:51:16 -080086import com.android.providers.settings.SettingsState.Setting;
Ruben Brunk98576cf2016-03-07 18:54:28 -080087import com.android.server.SystemConfig;
John Spurlocke11ae112015-05-11 16:09:03 -040088
Irina Dumitrescue3696872019-01-09 16:07:59 +000089import com.google.android.collect.Sets;
90
Neil Fuller3447fb42019-04-08 22:03:14 +010091import libcore.util.HexEncoding;
92
Svetoslav683914b2015-01-15 14:22:26 -080093import java.io.File;
Svetoslavb505ccc2015-02-17 12:41:04 -080094import java.io.FileDescriptor;
Svetoslav683914b2015-01-15 14:22:26 -080095import java.io.FileNotFoundException;
Svetoslavb505ccc2015-02-17 12:41:04 -080096import java.io.PrintWriter;
Mark Rathjen7599f132017-01-23 14:15:54 -080097import java.nio.ByteBuffer;
98import java.security.InvalidKeyException;
Mark Rathjend891f012017-01-19 04:10:37 +000099import java.security.NoSuchAlgorithmException;
Svetoslav683914b2015-01-15 14:22:26 -0800100import java.security.SecureRandom;
Dianne Hackborn32f40ee2016-10-20 15:54:14 -0700101import java.util.ArrayList;
Svetoslav683914b2015-01-15 14:22:26 -0800102import java.util.Arrays;
Robin Lee7af9a742017-02-20 14:47:30 +0000103import java.util.Collection;
Matt Pape6bfc62e2018-11-28 13:16:03 -0800104import java.util.HashMap;
Mark Rathjend891f012017-01-19 04:10:37 +0000105import java.util.HashSet;
Svetoslav683914b2015-01-15 14:22:26 -0800106import java.util.List;
Andre Lago3fa139c2016-08-04 13:53:44 +0100107import java.util.Map;
Svetoslav683914b2015-01-15 14:22:26 -0800108import java.util.Set;
109import java.util.regex.Pattern;
yuemingw1d13eae2018-01-30 17:27:54 +0000110
Mark Rathjen7599f132017-01-23 14:15:54 -0800111import javax.crypto.Mac;
112import javax.crypto.spec.SecretKeySpec;
The Android Open Source Project54b6cfa2008-10-21 07:00:00 -0700113
Svetoslav Ganove080da92016-12-21 17:10:35 -0800114
Svetoslav683914b2015-01-15 14:22:26 -0800115/**
116 * <p>
117 * This class is a content provider that publishes the system settings.
118 * It can be accessed via the content provider APIs or via custom call
119 * commands. The latter is a bit faster and is the preferred way to access
120 * the platform settings.
121 * </p>
122 * <p>
123 * There are three settings types, global (with signature level protection
124 * and shared across users), secure (with signature permission level
125 * protection and per user), and system (with dangerous permission level
126 * protection and per user). Global settings are stored under the device owner.
127 * Each of these settings is represented by a {@link
128 * com.android.providers.settings.SettingsState} object mapped to an integer
129 * key derived from the setting type in the most significant bits and user
130 * id in the least significant bits. Settings are synchronously loaded on
131 * instantiation of a SettingsState and asynchronously persisted on mutation.
132 * Settings are stored in the user specific system directory.
133 * </p>
134 * <p>
135 * Apps targeting APIs Lollipop MR1 and lower can add custom settings entries
136 * and get a warning. Targeting higher API version prohibits this as the
137 * system settings are not a place for apps to save their state. When a package
138 * is removed the settings it added are deleted. Apps cannot delete system
139 * settings added by the platform. System settings values are validated to
140 * ensure the clients do not put bad values. Global and secure settings are
141 * changed only by trusted parties, therefore no validation is performed. Also
142 * there is a limit on the amount of app specific settings that can be added
143 * to prevent unlimited growth of the system process memory footprint.
144 * </p>
145 */
146@SuppressWarnings("deprecation")
The Android Open Source Project54b6cfa2008-10-21 07:00:00 -0700147public class SettingsProvider extends ContentProvider {
Dianne Hackborn32f40ee2016-10-20 15:54:14 -0700148 static final boolean DEBUG = false;
The Android Open Source Project54b6cfa2008-10-21 07:00:00 -0700149
Svetoslav Ganov264c7a92016-08-24 17:31:14 -0700150 private static final boolean DROP_DATABASE_ON_MIGRATION = true;
Svetoslav683914b2015-01-15 14:22:26 -0800151
152 private static final String LOG_TAG = "SettingsProvider";
Christopher Tate0da13572013-10-13 17:34:49 -0700153
Christopher Tate06efb532012-08-24 15:29:27 -0700154 private static final String TABLE_SYSTEM = "system";
155 private static final String TABLE_SECURE = "secure";
156 private static final String TABLE_GLOBAL = "global";
Matt Pape6bfc62e2018-11-28 13:16:03 -0800157 private static final String TABLE_CONFIG = "config";
Svetoslav683914b2015-01-15 14:22:26 -0800158
159 // Old tables no longer exist.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800160 private static final String TABLE_FAVORITES = "favorites";
161 private static final String TABLE_OLD_FAVORITES = "old_favorites";
Svetoslav683914b2015-01-15 14:22:26 -0800162 private static final String TABLE_BLUETOOTH_DEVICES = "bluetooth_devices";
163 private static final String TABLE_BOOKMARKS = "bookmarks";
164 private static final String TABLE_ANDROID_METADATA = "android_metadata";
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800165
Svetoslav683914b2015-01-15 14:22:26 -0800166 // The set of removed legacy tables.
167 private static final Set<String> REMOVED_LEGACY_TABLES = new ArraySet<>();
Christopher Tate06efb532012-08-24 15:29:27 -0700168 static {
Svetoslav683914b2015-01-15 14:22:26 -0800169 REMOVED_LEGACY_TABLES.add(TABLE_FAVORITES);
170 REMOVED_LEGACY_TABLES.add(TABLE_OLD_FAVORITES);
171 REMOVED_LEGACY_TABLES.add(TABLE_BLUETOOTH_DEVICES);
172 REMOVED_LEGACY_TABLES.add(TABLE_BOOKMARKS);
173 REMOVED_LEGACY_TABLES.add(TABLE_ANDROID_METADATA);
174 }
Christopher Tate06efb532012-08-24 15:29:27 -0700175
Svetoslav683914b2015-01-15 14:22:26 -0800176 private static final int MUTATION_OPERATION_INSERT = 1;
177 private static final int MUTATION_OPERATION_DELETE = 2;
178 private static final int MUTATION_OPERATION_UPDATE = 3;
Svetoslav Ganove080da92016-12-21 17:10:35 -0800179 private static final int MUTATION_OPERATION_RESET = 4;
Julia Reynolds5e458dd2014-07-07 16:07:01 -0400180
Svetoslav683914b2015-01-15 14:22:26 -0800181 private static final String[] ALL_COLUMNS = new String[] {
182 Settings.NameValueTable._ID,
183 Settings.NameValueTable.NAME,
184 Settings.NameValueTable.VALUE
185 };
186
Makoto Onuki53f0e022017-11-29 13:51:01 -0800187 public static final int SETTINGS_TYPE_GLOBAL = SettingsState.SETTINGS_TYPE_GLOBAL;
188 public static final int SETTINGS_TYPE_SYSTEM = SettingsState.SETTINGS_TYPE_SYSTEM;
189 public static final int SETTINGS_TYPE_SECURE = SettingsState.SETTINGS_TYPE_SECURE;
190 public static final int SETTINGS_TYPE_SSAID = SettingsState.SETTINGS_TYPE_SSAID;
Matt Pape1b31a332018-10-17 09:58:28 -0700191 public static final int SETTINGS_TYPE_CONFIG = SettingsState.SETTINGS_TYPE_CONFIG;
Svet Ganov53a441c2016-04-19 19:38:00 -0700192
193 private static final Bundle NULL_SETTING_BUNDLE = Bundle.forPair(
194 Settings.NameValueTable.VALUE, null);
Christopher Tate06efb532012-08-24 15:29:27 -0700195
Nicholas Sauer3d87d1e2018-11-06 08:38:39 -0800196 public static final String RESULT_ROWS_DELETED = "result_rows_deleted";
Nicholas Sauer72500532018-11-21 10:30:58 -0800197 public static final String RESULT_SETTINGS_LIST = "result_settings_list";
Nicholas Sauer3d87d1e2018-11-06 08:38:39 -0800198
Chad Brubaker20e0dc32017-04-28 18:24:55 -0700199 // Overlay specified settings whitelisted for Instant Apps
200 private static final Set<String> OVERLAY_ALLOWED_GLOBAL_INSTANT_APP_SETTINGS = new ArraySet<>();
201 private static final Set<String> OVERLAY_ALLOWED_SYSTEM_INSTANT_APP_SETTINGS = new ArraySet<>();
202 private static final Set<String> OVERLAY_ALLOWED_SECURE_INSTANT_APP_SETTINGS = new ArraySet<>();
203
204 static {
205 for (String name : Resources.getSystem().getStringArray(
206 com.android.internal.R.array.config_allowedGlobalInstantAppSettings)) {
207 OVERLAY_ALLOWED_GLOBAL_INSTANT_APP_SETTINGS.add(name);
208 }
209 for (String name : Resources.getSystem().getStringArray(
210 com.android.internal.R.array.config_allowedSystemInstantAppSettings)) {
211 OVERLAY_ALLOWED_SYSTEM_INSTANT_APP_SETTINGS.add(name);
212 }
213 for (String name : Resources.getSystem().getStringArray(
214 com.android.internal.R.array.config_allowedSecureInstantAppSettings)) {
215 OVERLAY_ALLOWED_SECURE_INSTANT_APP_SETTINGS.add(name);
216 }
217 }
218
Svetoslav Ganov5fb405b2017-01-26 22:43:09 -0800219 // Changes to these global settings are synchronously persisted
220 private static final Set<String> CRITICAL_GLOBAL_SETTINGS = new ArraySet<>();
221 static {
222 CRITICAL_GLOBAL_SETTINGS.add(Settings.Global.DEVICE_PROVISIONED);
223 }
224
225 // Changes to these secure settings are synchronously persisted
226 private static final Set<String> CRITICAL_SECURE_SETTINGS = new ArraySet<>();
227 static {
228 CRITICAL_SECURE_SETTINGS.add(Settings.Secure.USER_SETUP_COMPLETE);
229 }
230
Svetoslav683914b2015-01-15 14:22:26 -0800231 // Per user secure settings that moved to the for all users global settings.
232 static final Set<String> sSecureMovedToGlobalSettings = new ArraySet<>();
233 static {
234 Settings.Secure.getMovedToGlobalSettings(sSecureMovedToGlobalSettings);
Christopher Tate06efb532012-08-24 15:29:27 -0700235 }
236
Svetoslav683914b2015-01-15 14:22:26 -0800237 // Per user system settings that moved to the for all users global settings.
238 static final Set<String> sSystemMovedToGlobalSettings = new ArraySet<>();
239 static {
240 Settings.System.getMovedToGlobalSettings(sSystemMovedToGlobalSettings);
The Android Open Source Project54b6cfa2008-10-21 07:00:00 -0700241 }
242
Svetoslav683914b2015-01-15 14:22:26 -0800243 // Per user system settings that moved to the per user secure settings.
244 static final Set<String> sSystemMovedToSecureSettings = new ArraySet<>();
245 static {
246 Settings.System.getMovedToSecureSettings(sSystemMovedToSecureSettings);
The Android Open Source Project54b6cfa2008-10-21 07:00:00 -0700247 }
248
Svetoslav683914b2015-01-15 14:22:26 -0800249 // Per all users global settings that moved to the per user secure settings.
250 static final Set<String> sGlobalMovedToSecureSettings = new ArraySet<>();
251 static {
252 Settings.Global.getMovedToSecureSettings(sGlobalMovedToSecureSettings);
The Android Open Source Project54b6cfa2008-10-21 07:00:00 -0700253 }
254
Svetoslav683914b2015-01-15 14:22:26 -0800255 // Per user secure settings that are cloned for the managed profiles of the user.
256 private static final Set<String> sSecureCloneToManagedSettings = new ArraySet<>();
257 static {
258 Settings.Secure.getCloneToManagedProfileSettings(sSecureCloneToManagedSettings);
The Android Open Source Project54b6cfa2008-10-21 07:00:00 -0700259 }
260
Svetoslav683914b2015-01-15 14:22:26 -0800261 // Per user system settings that are cloned for the managed profiles of the user.
262 private static final Set<String> sSystemCloneToManagedSettings = new ArraySet<>();
263 static {
264 Settings.System.getCloneToManagedProfileSettings(sSystemCloneToManagedSettings);
Julia Reynolds5e458dd2014-07-07 16:07:01 -0400265 }
266
Andre Lago3fa139c2016-08-04 13:53:44 +0100267 // Per user system settings that are cloned from the profile's parent when a dependency
268 // in {@link Settings.Secure} is set to "1".
269 public static final Map<String, String> sSystemCloneFromParentOnDependency = new ArrayMap<>();
270 static {
271 Settings.System.getCloneFromParentOnValueSettings(sSystemCloneFromParentOnDependency);
272 }
273
Svetoslav683914b2015-01-15 14:22:26 -0800274 private final Object mLock = new Object();
Brad Fitzpatrickf366a9b2010-08-24 16:14:07 -0700275
Svetoslav683914b2015-01-15 14:22:26 -0800276 @GuardedBy("mLock")
277 private SettingsRegistry mSettingsRegistry;
Brad Fitzpatrickf366a9b2010-08-24 16:14:07 -0700278
Svet Ganova8f90262016-05-10 08:44:48 -0700279 @GuardedBy("mLock")
280 private HandlerThread mHandlerThread;
281
Makoto Onuki73360ab2017-03-17 11:50:13 -0700282 @GuardedBy("mLock")
283 private Handler mHandler;
284
Svetoslav7ec28e82015-05-20 17:01:10 -0700285 // We have to call in the user manager with no lock held,
286 private volatile UserManager mUserManager;
Svetoslav683914b2015-01-15 14:22:26 -0800287
Svetoslav7ec28e82015-05-20 17:01:10 -0700288 // We have to call in the package manager with no lock held,
Xiaohui Chen43765b72015-08-31 10:57:33 -0700289 private volatile IPackageManager mPackageManager;
Brad Fitzpatrickf366a9b2010-08-24 16:14:07 -0700290
Svet Ganov53a441c2016-04-19 19:38:00 -0700291 public static int makeKey(int type, int userId) {
Makoto Onuki53f0e022017-11-29 13:51:01 -0800292 return SettingsState.makeKey(type, userId);
Svet Ganov53a441c2016-04-19 19:38:00 -0700293 }
294
295 public static int getTypeFromKey(int key) {
Makoto Onuki53f0e022017-11-29 13:51:01 -0800296 return SettingsState.getTypeFromKey(key);
Svet Ganov53a441c2016-04-19 19:38:00 -0700297 }
298
299 public static int getUserIdFromKey(int key) {
Makoto Onuki53f0e022017-11-29 13:51:01 -0800300 return SettingsState.getUserIdFromKey(key);
Svet Ganov53a441c2016-04-19 19:38:00 -0700301 }
302
303 public static String settingTypeToString(int type) {
Makoto Onuki53f0e022017-11-29 13:51:01 -0800304 return SettingsState.settingTypeToString(type);
Svet Ganov53a441c2016-04-19 19:38:00 -0700305 }
306
307 public static String keyToString(int key) {
Makoto Onuki53f0e022017-11-29 13:51:01 -0800308 return SettingsState.keyToString(key);
Svet Ganov53a441c2016-04-19 19:38:00 -0700309 }
310
The Android Open Source Project54b6cfa2008-10-21 07:00:00 -0700311 @Override
312 public boolean onCreate() {
Chad Brubaker97bccee2017-01-05 15:51:41 -0800313 Settings.setInSystemServer();
Michal Karpinski2c37b082018-01-18 16:14:27 +0000314
Svetoslav683914b2015-01-15 14:22:26 -0800315 synchronized (mLock) {
Xiaohui Chen43765b72015-08-31 10:57:33 -0700316 mUserManager = UserManager.get(getContext());
317 mPackageManager = AppGlobals.getPackageManager();
Svet Ganova8f90262016-05-10 08:44:48 -0700318 mHandlerThread = new HandlerThread(LOG_TAG,
319 Process.THREAD_PRIORITY_BACKGROUND);
320 mHandlerThread.start();
Makoto Onuki73360ab2017-03-17 11:50:13 -0700321 mHandler = new Handler(mHandlerThread.getLooper());
Svetoslav683914b2015-01-15 14:22:26 -0800322 mSettingsRegistry = new SettingsRegistry();
323 }
Makoto Onuki73360ab2017-03-17 11:50:13 -0700324 mHandler.post(() -> {
325 registerBroadcastReceivers();
326 startWatchingUserRestrictionChanges();
327 });
Dianne Hackborn32f40ee2016-10-20 15:54:14 -0700328 ServiceManager.addService("settings", new SettingsService(this));
Matt Papeabb67892018-12-07 09:13:26 -0800329 ServiceManager.addService("device_config", new DeviceConfigService(this));
The Android Open Source Project54b6cfa2008-10-21 07:00:00 -0700330 return true;
331 }
332
Svetoslav683914b2015-01-15 14:22:26 -0800333 @Override
334 public Bundle call(String method, String name, Bundle args) {
Svetoslav7ec28e82015-05-20 17:01:10 -0700335 final int requestingUserId = getRequestingUserId(args);
336 switch (method) {
Matt Pape1b31a332018-10-17 09:58:28 -0700337 case Settings.CALL_METHOD_GET_CONFIG: {
338 Setting setting = getConfigSetting(name);
339 return packageValueForCallResult(setting, isTrackingGeneration(args));
340 }
341
Svetoslav7ec28e82015-05-20 17:01:10 -0700342 case Settings.CALL_METHOD_GET_GLOBAL: {
343 Setting setting = getGlobalSetting(name);
Svet Ganov53a441c2016-04-19 19:38:00 -0700344 return packageValueForCallResult(setting, isTrackingGeneration(args));
Svetoslav683914b2015-01-15 14:22:26 -0800345 }
Svetoslav7ec28e82015-05-20 17:01:10 -0700346
347 case Settings.CALL_METHOD_GET_SECURE: {
Makoto Onuki0000d322017-11-28 16:31:47 -0800348 Setting setting = getSecureSetting(name, requestingUserId,
349 /*enableOverride=*/ true);
Svet Ganov53a441c2016-04-19 19:38:00 -0700350 return packageValueForCallResult(setting, isTrackingGeneration(args));
Svetoslav7ec28e82015-05-20 17:01:10 -0700351 }
352
353 case Settings.CALL_METHOD_GET_SYSTEM: {
354 Setting setting = getSystemSetting(name, requestingUserId);
Svet Ganov53a441c2016-04-19 19:38:00 -0700355 return packageValueForCallResult(setting, isTrackingGeneration(args));
Svetoslav7ec28e82015-05-20 17:01:10 -0700356 }
357
Matt Pape1b31a332018-10-17 09:58:28 -0700358 case Settings.CALL_METHOD_PUT_CONFIG: {
359 String value = getSettingValue(args);
Matt Pape1b31a332018-10-17 09:58:28 -0700360 final boolean makeDefault = getSettingMakeDefault(args);
Matt Papec1323dc2018-12-11 12:32:42 -0800361 insertConfigSetting(name, value, makeDefault);
Matt Pape1b31a332018-10-17 09:58:28 -0700362 break;
363 }
364
Svetoslav7ec28e82015-05-20 17:01:10 -0700365 case Settings.CALL_METHOD_PUT_GLOBAL: {
366 String value = getSettingValue(args);
Svetoslav Ganove080da92016-12-21 17:10:35 -0800367 String tag = getSettingTag(args);
368 final boolean makeDefault = getSettingMakeDefault(args);
369 insertGlobalSetting(name, value, tag, makeDefault, requestingUserId, false);
Svetoslav7ec28e82015-05-20 17:01:10 -0700370 break;
371 }
372
373 case Settings.CALL_METHOD_PUT_SECURE: {
374 String value = getSettingValue(args);
Svetoslav Ganove080da92016-12-21 17:10:35 -0800375 String tag = getSettingTag(args);
376 final boolean makeDefault = getSettingMakeDefault(args);
377 insertSecureSetting(name, value, tag, makeDefault, requestingUserId, false);
Svetoslav7ec28e82015-05-20 17:01:10 -0700378 break;
379 }
380
381 case Settings.CALL_METHOD_PUT_SYSTEM: {
382 String value = getSettingValue(args);
383 insertSystemSetting(name, value, requestingUserId);
384 break;
385 }
386
Matt Pape1b31a332018-10-17 09:58:28 -0700387 case Settings.CALL_METHOD_RESET_CONFIG: {
388 final int mode = getResetModeEnforcingPermission(args);
Matt Pape6bfc62e2018-11-28 13:16:03 -0800389 String prefix = getSettingPrefix(args);
Matt Papec1323dc2018-12-11 12:32:42 -0800390 resetConfigSetting(mode, prefix);
Matt Pape1b31a332018-10-17 09:58:28 -0700391 break;
392 }
393
Svetoslav Ganove080da92016-12-21 17:10:35 -0800394 case Settings.CALL_METHOD_RESET_GLOBAL: {
395 final int mode = getResetModeEnforcingPermission(args);
396 String tag = getSettingTag(args);
397 resetGlobalSetting(requestingUserId, mode, tag);
398 break;
399 }
400
401 case Settings.CALL_METHOD_RESET_SECURE: {
402 final int mode = getResetModeEnforcingPermission(args);
403 String tag = getSettingTag(args);
404 resetSecureSetting(requestingUserId, mode, tag);
405 break;
406 }
407
Matt Pape6bfc62e2018-11-28 13:16:03 -0800408 case Settings.CALL_METHOD_DELETE_CONFIG: {
Matt Papec1323dc2018-12-11 12:32:42 -0800409 int rows = deleteConfigSetting(name) ? 1 : 0;
Nicholas Sauer3d87d1e2018-11-06 08:38:39 -0800410 Bundle result = new Bundle();
411 result.putInt(RESULT_ROWS_DELETED, rows);
412 return result;
413 }
414
415 case Settings.CALL_METHOD_DELETE_GLOBAL: {
416 int rows = deleteGlobalSetting(name, requestingUserId, false) ? 1 : 0;
417 Bundle result = new Bundle();
418 result.putInt(RESULT_ROWS_DELETED, rows);
419 return result;
420 }
421
Matt Pape6bfc62e2018-11-28 13:16:03 -0800422 case Settings.CALL_METHOD_DELETE_SECURE: {
423 int rows = deleteSecureSetting(name, requestingUserId, false) ? 1 : 0;
424 Bundle result = new Bundle();
425 result.putInt(RESULT_ROWS_DELETED, rows);
426 return result;
427 }
428
429 case Settings.CALL_METHOD_DELETE_SYSTEM: {
430 int rows = deleteSystemSetting(name, requestingUserId) ? 1 : 0;
431 Bundle result = new Bundle();
432 result.putInt(RESULT_ROWS_DELETED, rows);
433 return result;
434 }
435
436 case Settings.CALL_METHOD_LIST_CONFIG: {
437 String prefix = getSettingPrefix(args);
Matt Pape793b15c2019-10-07 13:17:20 -0700438 return packageValuesForCallResult(getAllConfigFlags(prefix),
439 isTrackingGeneration(args));
Matt Pape6bfc62e2018-11-28 13:16:03 -0800440 }
441
442 case Settings.CALL_METHOD_LIST_GLOBAL: {
Nicholas Sauer72500532018-11-21 10:30:58 -0800443 Bundle result = new Bundle();
444 result.putStringArrayList(RESULT_SETTINGS_LIST,
Matt Pape6bfc62e2018-11-28 13:16:03 -0800445 buildSettingsList(getAllGlobalSettings(null)));
Nicholas Sauer72500532018-11-21 10:30:58 -0800446 return result;
447 }
448
449 case Settings.CALL_METHOD_LIST_SECURE: {
450 Bundle result = new Bundle();
451 result.putStringArrayList(RESULT_SETTINGS_LIST,
452 buildSettingsList(getAllSecureSettings(requestingUserId, null)));
453 return result;
454 }
455
Matt Pape6bfc62e2018-11-28 13:16:03 -0800456 case Settings.CALL_METHOD_LIST_SYSTEM: {
Nicholas Sauer72500532018-11-21 10:30:58 -0800457 Bundle result = new Bundle();
458 result.putStringArrayList(RESULT_SETTINGS_LIST,
Matt Pape6bfc62e2018-11-28 13:16:03 -0800459 buildSettingsList(getAllSystemSettings(requestingUserId, null)));
Nicholas Sauer72500532018-11-21 10:30:58 -0800460 return result;
461 }
462
Svetoslav7ec28e82015-05-20 17:01:10 -0700463 default: {
464 Slog.w(LOG_TAG, "call() with invalid method: " + method);
465 } break;
Christopher Tate06efb532012-08-24 15:29:27 -0700466 }
Svetoslav7ec28e82015-05-20 17:01:10 -0700467
Christopher Tate06efb532012-08-24 15:29:27 -0700468 return null;
469 }
470
Brad Fitzpatrick1877d012010-03-04 17:48:13 -0800471 @Override
Svetoslav683914b2015-01-15 14:22:26 -0800472 public String getType(Uri uri) {
473 Arguments args = new Arguments(uri, null, null, true);
474 if (TextUtils.isEmpty(args.name)) {
The Android Open Source Project54b6cfa2008-10-21 07:00:00 -0700475 return "vnd.android.cursor.dir/" + args.table;
476 } else {
Svetoslav7ec28e82015-05-20 17:01:10 -0700477 return "vnd.android.cursor.item/" + args.table;
The Android Open Source Project54b6cfa2008-10-21 07:00:00 -0700478 }
479 }
480
481 @Override
Svetoslav683914b2015-01-15 14:22:26 -0800482 public Cursor query(Uri uri, String[] projection, String where, String[] whereArgs,
483 String order) {
484 if (DEBUG) {
485 Slog.v(LOG_TAG, "query() for user: " + UserHandle.getCallingUserId());
The Android Open Source Project54b6cfa2008-10-21 07:00:00 -0700486 }
487
Svetoslav683914b2015-01-15 14:22:26 -0800488 Arguments args = new Arguments(uri, where, whereArgs, true);
489 String[] normalizedProjection = normalizeProjection(projection);
The Android Open Source Project54b6cfa2008-10-21 07:00:00 -0700490
Svetoslav683914b2015-01-15 14:22:26 -0800491 // If a legacy table that is gone, done.
492 if (REMOVED_LEGACY_TABLES.contains(args.table)) {
493 return new MatrixCursor(normalizedProjection, 0);
494 }
Mike Lockwoodbd2a7122009-04-02 23:41:33 -0700495
Svetoslav7ec28e82015-05-20 17:01:10 -0700496 switch (args.table) {
497 case TABLE_GLOBAL: {
498 if (args.name != null) {
499 Setting setting = getGlobalSetting(args.name);
500 return packageSettingForQuery(setting, normalizedProjection);
501 } else {
502 return getAllGlobalSettings(projection);
Mike Lockwoodbd2a7122009-04-02 23:41:33 -0700503 }
Svetoslav7ec28e82015-05-20 17:01:10 -0700504 }
Mike Lockwoodbd2a7122009-04-02 23:41:33 -0700505
Svetoslav7ec28e82015-05-20 17:01:10 -0700506 case TABLE_SECURE: {
507 final int userId = UserHandle.getCallingUserId();
508 if (args.name != null) {
509 Setting setting = getSecureSetting(args.name, userId);
510 return packageSettingForQuery(setting, normalizedProjection);
511 } else {
512 return getAllSecureSettings(userId, projection);
Svetoslav683914b2015-01-15 14:22:26 -0800513 }
Svetoslav7ec28e82015-05-20 17:01:10 -0700514 }
Svetoslav683914b2015-01-15 14:22:26 -0800515
Svetoslav7ec28e82015-05-20 17:01:10 -0700516 case TABLE_SYSTEM: {
517 final int userId = UserHandle.getCallingUserId();
518 if (args.name != null) {
519 Setting setting = getSystemSetting(args.name, userId);
520 return packageSettingForQuery(setting, normalizedProjection);
521 } else {
522 return getAllSystemSettings(userId, projection);
Svetoslav683914b2015-01-15 14:22:26 -0800523 }
Svetoslav7ec28e82015-05-20 17:01:10 -0700524 }
Svetoslav683914b2015-01-15 14:22:26 -0800525
Svetoslav7ec28e82015-05-20 17:01:10 -0700526 default: {
527 throw new IllegalArgumentException("Invalid Uri path:" + uri);
Mike Lockwoodbd2a7122009-04-02 23:41:33 -0700528 }
529 }
Mike Lockwoodbd2a7122009-04-02 23:41:33 -0700530 }
531
Nicholas Sauer72500532018-11-21 10:30:58 -0800532 private ArrayList<String> buildSettingsList(Cursor cursor) {
533 final ArrayList<String> lines = new ArrayList<String>();
534 try {
535 while (cursor != null && cursor.moveToNext()) {
536 lines.add(cursor.getString(1) + "=" + cursor.getString(2));
537 }
538 } finally {
539 if (cursor != null) {
540 cursor.close();
541 }
542 }
543 return lines;
544 }
545
The Android Open Source Project54b6cfa2008-10-21 07:00:00 -0700546 @Override
Svetoslav683914b2015-01-15 14:22:26 -0800547 public Uri insert(Uri uri, ContentValues values) {
548 if (DEBUG) {
549 Slog.v(LOG_TAG, "insert() for user: " + UserHandle.getCallingUserId());
Christopher Tate06efb532012-08-24 15:29:27 -0700550 }
551
Svetoslav683914b2015-01-15 14:22:26 -0800552 String table = getValidTableOrThrow(uri);
Christopher Tate06efb532012-08-24 15:29:27 -0700553
Svetoslav683914b2015-01-15 14:22:26 -0800554 // If a legacy table that is gone, done.
555 if (REMOVED_LEGACY_TABLES.contains(table)) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800556 return null;
557 }
The Android Open Source Project54b6cfa2008-10-21 07:00:00 -0700558
Svetoslav683914b2015-01-15 14:22:26 -0800559 String name = values.getAsString(Settings.Secure.NAME);
Makoto Onuki3a2c35782015-06-18 11:21:58 -0700560 if (!isKeyValid(name)) {
Svetoslav683914b2015-01-15 14:22:26 -0800561 return null;
Mike Lockwoodbd2a7122009-04-02 23:41:33 -0700562 }
563
Svetoslav683914b2015-01-15 14:22:26 -0800564 String value = values.getAsString(Settings.Secure.VALUE);
565
Svetoslav7ec28e82015-05-20 17:01:10 -0700566 switch (table) {
567 case TABLE_GLOBAL: {
Svetoslav Ganove080da92016-12-21 17:10:35 -0800568 if (insertGlobalSetting(name, value, null, false,
569 UserHandle.getCallingUserId(), false)) {
Svetoslav7ec28e82015-05-20 17:01:10 -0700570 return Uri.withAppendedPath(Settings.Global.CONTENT_URI, name);
Christopher Tatec221d2b2012-10-03 18:33:52 -0700571 }
Svetoslav7ec28e82015-05-20 17:01:10 -0700572 } break;
573
574 case TABLE_SECURE: {
Svetoslav Ganove080da92016-12-21 17:10:35 -0800575 if (insertSecureSetting(name, value, null, false,
576 UserHandle.getCallingUserId(), false)) {
Svetoslav7ec28e82015-05-20 17:01:10 -0700577 return Uri.withAppendedPath(Settings.Secure.CONTENT_URI, name);
578 }
579 } break;
580
581 case TABLE_SYSTEM: {
582 if (insertSystemSetting(name, value, UserHandle.getCallingUserId())) {
583 return Uri.withAppendedPath(Settings.System.CONTENT_URI, name);
584 }
585 } break;
586
587 default: {
588 throw new IllegalArgumentException("Bad Uri path:" + uri);
Christopher Tatec221d2b2012-10-03 18:33:52 -0700589 }
590 }
591
Svetoslav683914b2015-01-15 14:22:26 -0800592 return null;
The Android Open Source Project54b6cfa2008-10-21 07:00:00 -0700593 }
594
595 @Override
Svetoslav683914b2015-01-15 14:22:26 -0800596 public int bulkInsert(Uri uri, ContentValues[] allValues) {
597 if (DEBUG) {
598 Slog.v(LOG_TAG, "bulkInsert() for user: " + UserHandle.getCallingUserId());
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800599 }
The Android Open Source Project54b6cfa2008-10-21 07:00:00 -0700600
Svetoslav683914b2015-01-15 14:22:26 -0800601 int insertionCount = 0;
602 final int valuesCount = allValues.length;
603 for (int i = 0; i < valuesCount; i++) {
604 ContentValues values = allValues[i];
605 if (insert(uri, values) != null) {
606 insertionCount++;
607 }
Dianne Hackborn8d051722014-10-01 14:59:58 -0700608 }
Svetoslav683914b2015-01-15 14:22:26 -0800609
610 return insertionCount;
The Android Open Source Project54b6cfa2008-10-21 07:00:00 -0700611 }
612
613 @Override
Svetoslav683914b2015-01-15 14:22:26 -0800614 public int delete(Uri uri, String where, String[] whereArgs) {
615 if (DEBUG) {
616 Slog.v(LOG_TAG, "delete() for user: " + UserHandle.getCallingUserId());
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800617 }
The Android Open Source Project54b6cfa2008-10-21 07:00:00 -0700618
Svetoslav683914b2015-01-15 14:22:26 -0800619 Arguments args = new Arguments(uri, where, whereArgs, false);
620
621 // If a legacy table that is gone, done.
622 if (REMOVED_LEGACY_TABLES.contains(args.table)) {
623 return 0;
Dianne Hackborn8d051722014-10-01 14:59:58 -0700624 }
Svetoslav683914b2015-01-15 14:22:26 -0800625
Makoto Onuki3a2c35782015-06-18 11:21:58 -0700626 if (!isKeyValid(args.name)) {
Svetoslav683914b2015-01-15 14:22:26 -0800627 return 0;
Dianne Hackborn8d051722014-10-01 14:59:58 -0700628 }
Svetoslav683914b2015-01-15 14:22:26 -0800629
Svetoslav7ec28e82015-05-20 17:01:10 -0700630 switch (args.table) {
631 case TABLE_GLOBAL: {
632 final int userId = UserHandle.getCallingUserId();
Svet Ganov53a441c2016-04-19 19:38:00 -0700633 return deleteGlobalSetting(args.name, userId, false) ? 1 : 0;
Svetoslav7ec28e82015-05-20 17:01:10 -0700634 }
Svetoslav683914b2015-01-15 14:22:26 -0800635
Svetoslav7ec28e82015-05-20 17:01:10 -0700636 case TABLE_SECURE: {
637 final int userId = UserHandle.getCallingUserId();
Svet Ganov53a441c2016-04-19 19:38:00 -0700638 return deleteSecureSetting(args.name, userId, false) ? 1 : 0;
Svetoslav7ec28e82015-05-20 17:01:10 -0700639 }
Svetoslav683914b2015-01-15 14:22:26 -0800640
Svetoslav7ec28e82015-05-20 17:01:10 -0700641 case TABLE_SYSTEM: {
642 final int userId = UserHandle.getCallingUserId();
643 return deleteSystemSetting(args.name, userId) ? 1 : 0;
644 }
645
646 default: {
647 throw new IllegalArgumentException("Bad Uri path:" + uri);
Svetoslav683914b2015-01-15 14:22:26 -0800648 }
Dianne Hackborn8d051722014-10-01 14:59:58 -0700649 }
Svetoslav683914b2015-01-15 14:22:26 -0800650 }
651
652 @Override
653 public int update(Uri uri, ContentValues values, String where, String[] whereArgs) {
654 if (DEBUG) {
655 Slog.v(LOG_TAG, "update() for user: " + UserHandle.getCallingUserId());
Christopher Tate06efb532012-08-24 15:29:27 -0700656 }
Svetoslav683914b2015-01-15 14:22:26 -0800657
658 Arguments args = new Arguments(uri, where, whereArgs, false);
659
660 // If a legacy table that is gone, done.
661 if (REMOVED_LEGACY_TABLES.contains(args.table)) {
662 return 0;
663 }
664
Makoto Onuki3a2c35782015-06-18 11:21:58 -0700665 String name = values.getAsString(Settings.Secure.NAME);
666 if (!isKeyValid(name)) {
Svetoslav683914b2015-01-15 14:22:26 -0800667 return 0;
668 }
Makoto Onuki3a2c35782015-06-18 11:21:58 -0700669 String value = values.getAsString(Settings.Secure.VALUE);
Svetoslav683914b2015-01-15 14:22:26 -0800670
Svetoslav7ec28e82015-05-20 17:01:10 -0700671 switch (args.table) {
672 case TABLE_GLOBAL: {
673 final int userId = UserHandle.getCallingUserId();
Svetoslav Ganove080da92016-12-21 17:10:35 -0800674 return updateGlobalSetting(args.name, value, null, false,
675 userId, false) ? 1 : 0;
Svetoslav7ec28e82015-05-20 17:01:10 -0700676 }
Svetoslav683914b2015-01-15 14:22:26 -0800677
Svetoslav7ec28e82015-05-20 17:01:10 -0700678 case TABLE_SECURE: {
679 final int userId = UserHandle.getCallingUserId();
Svetoslav Ganove080da92016-12-21 17:10:35 -0800680 return updateSecureSetting(args.name, value, null, false,
681 userId, false) ? 1 : 0;
Svetoslav7ec28e82015-05-20 17:01:10 -0700682 }
Svetoslav683914b2015-01-15 14:22:26 -0800683
Svetoslav7ec28e82015-05-20 17:01:10 -0700684 case TABLE_SYSTEM: {
685 final int userId = UserHandle.getCallingUserId();
686 return updateSystemSetting(args.name, value, userId) ? 1 : 0;
687 }
Svetoslav683914b2015-01-15 14:22:26 -0800688
Svetoslav7ec28e82015-05-20 17:01:10 -0700689 default: {
690 throw new IllegalArgumentException("Invalid Uri path:" + uri);
Svetoslav683914b2015-01-15 14:22:26 -0800691 }
692 }
The Android Open Source Project54b6cfa2008-10-21 07:00:00 -0700693 }
694
695 @Override
696 public ParcelFileDescriptor openFile(Uri uri, String mode) throws FileNotFoundException {
Robin Lee2ab02e22016-07-28 18:41:23 +0100697 final int userId = getUserIdFromUri(uri, UserHandle.getCallingUserId());
698 if (userId != UserHandle.getCallingUserId()) {
699 getContext().enforceCallingPermission(Manifest.permission.INTERACT_ACROSS_USERS,
700 "Access files from the settings of another user");
701 }
702 uri = ContentProvider.getUriWithoutUserId(uri);
703
Andre Lago3fa139c2016-08-04 13:53:44 +0100704 final String cacheRingtoneSetting;
Jeff Sharkey413573a2016-02-22 17:52:45 -0700705 final String cacheName;
706 if (Settings.System.RINGTONE_CACHE_URI.equals(uri)) {
Andre Lago3fa139c2016-08-04 13:53:44 +0100707 cacheRingtoneSetting = Settings.System.RINGTONE;
Jeff Sharkey413573a2016-02-22 17:52:45 -0700708 cacheName = Settings.System.RINGTONE_CACHE;
709 } else if (Settings.System.NOTIFICATION_SOUND_CACHE_URI.equals(uri)) {
Andre Lago3fa139c2016-08-04 13:53:44 +0100710 cacheRingtoneSetting = Settings.System.NOTIFICATION_SOUND;
Jeff Sharkey413573a2016-02-22 17:52:45 -0700711 cacheName = Settings.System.NOTIFICATION_SOUND_CACHE;
712 } else if (Settings.System.ALARM_ALERT_CACHE_URI.equals(uri)) {
Andre Lago3fa139c2016-08-04 13:53:44 +0100713 cacheRingtoneSetting = Settings.System.ALARM_ALERT;
Jeff Sharkey413573a2016-02-22 17:52:45 -0700714 cacheName = Settings.System.ALARM_ALERT_CACHE;
715 } else {
716 throw new FileNotFoundException("Direct file access no longer supported; "
717 + "ringtone playback is available through android.media.Ringtone");
718 }
719
Andre Lago3fa139c2016-08-04 13:53:44 +0100720 int actualCacheOwner;
721 // Redirect cache to parent if ringtone setting is owned by profile parent
722 synchronized (mLock) {
723 actualCacheOwner = resolveOwningUserIdForSystemSettingLocked(userId,
724 cacheRingtoneSetting);
725 }
726 final File cacheFile = new File(getRingtoneCacheDir(actualCacheOwner), cacheName);
Jeff Sharkey413573a2016-02-22 17:52:45 -0700727 return ParcelFileDescriptor.open(cacheFile, ParcelFileDescriptor.parseMode(mode));
728 }
729
730 private File getRingtoneCacheDir(int userId) {
731 final File cacheDir = new File(Environment.getDataSystemDeDirectory(userId), "ringtones");
732 cacheDir.mkdir();
733 SELinux.restorecon(cacheDir);
734 return cacheDir;
Marco Nelissen69f593c2009-07-28 09:55:04 -0700735 }
Brad Fitzpatrick1bd62bd2010-03-08 18:30:52 -0800736
Eugene Suslad72c3972016-12-27 15:49:30 -0800737 /**
738 * Dump all settings as a proto buf.
739 *
740 * @param fd The file to dump to
741 */
742 void dumpProto(@NonNull FileDescriptor fd) {
743 ProtoOutputStream proto = new ProtoOutputStream(fd);
744
745 synchronized (mLock) {
746 SettingsProtoDumpUtil.dumpProtoLocked(mSettingsRegistry, proto);
Eugene Suslad72c3972016-12-27 15:49:30 -0800747 }
748
749 proto.flush();
750 }
751
Dianne Hackborn32f40ee2016-10-20 15:54:14 -0700752 public void dumpInternal(FileDescriptor fd, PrintWriter pw, String[] args) {
Svetoslavb505ccc2015-02-17 12:41:04 -0800753 synchronized (mLock) {
754 final long identity = Binder.clearCallingIdentity();
755 try {
Dianne Hackborn32f40ee2016-10-20 15:54:14 -0700756 SparseBooleanArray users = mSettingsRegistry.getKnownUsersLocked();
Svetoslavb505ccc2015-02-17 12:41:04 -0800757 final int userCount = users.size();
758 for (int i = 0; i < userCount; i++) {
Dianne Hackborn32f40ee2016-10-20 15:54:14 -0700759 dumpForUserLocked(users.keyAt(i), pw);
Svetoslavb505ccc2015-02-17 12:41:04 -0800760 }
761 } finally {
762 Binder.restoreCallingIdentity(identity);
763 }
764 }
765 }
766
Andreas Gampeb58893072018-09-05 16:52:31 -0700767 @GuardedBy("mLock")
Svetoslav Ganova340bfd2016-08-02 18:24:49 -0700768 private void dumpForUserLocked(int userId, PrintWriter pw) {
Xiaohui Chen43765b72015-08-31 10:57:33 -0700769 if (userId == UserHandle.USER_SYSTEM) {
Matt Pape1b31a332018-10-17 09:58:28 -0700770 pw.println("CONFIG SETTINGS (user " + userId + ")");
771 SettingsState configSettings = mSettingsRegistry.getSettingsLocked(
772 SETTINGS_TYPE_CONFIG, UserHandle.USER_SYSTEM);
773 if (configSettings != null) {
774 dumpSettingsLocked(configSettings, pw);
775 pw.println();
776 configSettings.dumpHistoricalOperations(pw);
777 }
778
Svetoslavb505ccc2015-02-17 12:41:04 -0800779 pw.println("GLOBAL SETTINGS (user " + userId + ")");
Svetoslav Ganova340bfd2016-08-02 18:24:49 -0700780 SettingsState globalSettings = mSettingsRegistry.getSettingsLocked(
781 SETTINGS_TYPE_GLOBAL, UserHandle.USER_SYSTEM);
Dianne Hackborn32f40ee2016-10-20 15:54:14 -0700782 if (globalSettings != null) {
783 dumpSettingsLocked(globalSettings, pw);
Svetoslav Ganove080da92016-12-21 17:10:35 -0800784 pw.println();
785 globalSettings.dumpHistoricalOperations(pw);
Dianne Hackborn32f40ee2016-10-20 15:54:14 -0700786 }
Svetoslavb505ccc2015-02-17 12:41:04 -0800787 }
788
789 pw.println("SECURE SETTINGS (user " + userId + ")");
Svetoslav Ganova340bfd2016-08-02 18:24:49 -0700790 SettingsState secureSettings = mSettingsRegistry.getSettingsLocked(
791 SETTINGS_TYPE_SECURE, userId);
Dianne Hackborn32f40ee2016-10-20 15:54:14 -0700792 if (secureSettings != null) {
793 dumpSettingsLocked(secureSettings, pw);
Svetoslav Ganove080da92016-12-21 17:10:35 -0800794 pw.println();
795 secureSettings.dumpHistoricalOperations(pw);
Dianne Hackborn32f40ee2016-10-20 15:54:14 -0700796 }
Svetoslav Ganova340bfd2016-08-02 18:24:49 -0700797
Svetoslavb505ccc2015-02-17 12:41:04 -0800798 pw.println("SYSTEM SETTINGS (user " + userId + ")");
Svetoslav Ganova340bfd2016-08-02 18:24:49 -0700799 SettingsState systemSettings = mSettingsRegistry.getSettingsLocked(
800 SETTINGS_TYPE_SYSTEM, userId);
Dianne Hackborn32f40ee2016-10-20 15:54:14 -0700801 if (systemSettings != null) {
802 dumpSettingsLocked(systemSettings, pw);
Svetoslav Ganove080da92016-12-21 17:10:35 -0800803 pw.println();
804 systemSettings.dumpHistoricalOperations(pw);
Dianne Hackborn32f40ee2016-10-20 15:54:14 -0700805 }
Svetoslavb505ccc2015-02-17 12:41:04 -0800806 }
807
Dianne Hackborn32f40ee2016-10-20 15:54:14 -0700808 private void dumpSettingsLocked(SettingsState settingsState, PrintWriter pw) {
809 List<String> names = settingsState.getSettingNamesLocked();
Svetoslavb505ccc2015-02-17 12:41:04 -0800810
Dianne Hackborn32f40ee2016-10-20 15:54:14 -0700811 final int nameCount = names.size();
Svetoslavb505ccc2015-02-17 12:41:04 -0800812
Dianne Hackborn32f40ee2016-10-20 15:54:14 -0700813 for (int i = 0; i < nameCount; i++) {
814 String name = names.get(i);
815 Setting setting = settingsState.getSettingLocked(name);
816 pw.print("_id:"); pw.print(toDumpString(setting.getId()));
817 pw.print(" name:"); pw.print(toDumpString(name));
818 if (setting.getPackageName() != null) {
Svetoslav Ganove080da92016-12-21 17:10:35 -0800819 pw.print(" pkg:"); pw.print(setting.getPackageName());
Dianne Hackborn32f40ee2016-10-20 15:54:14 -0700820 }
821 pw.print(" value:"); pw.print(toDumpString(setting.getValue()));
Svetoslav Ganove080da92016-12-21 17:10:35 -0800822 if (setting.getDefaultValue() != null) {
823 pw.print(" default:"); pw.print(setting.getDefaultValue());
Eugene Suslad72c3972016-12-27 15:49:30 -0800824 pw.print(" defaultSystemSet:"); pw.print(setting.isDefaultFromSystem());
Svetoslav Ganove080da92016-12-21 17:10:35 -0800825 }
826 if (setting.getTag() != null) {
827 pw.print(" tag:"); pw.print(setting.getTag());
828 }
Svetoslavb505ccc2015-02-17 12:41:04 -0800829 pw.println();
Dianne Hackborn32f40ee2016-10-20 15:54:14 -0700830 }
Svetoslavb505ccc2015-02-17 12:41:04 -0800831 }
832
Svetoslav7e0683b2015-08-03 16:02:52 -0700833 private static String toDumpString(String s) {
Makoto Onuki3a2c35782015-06-18 11:21:58 -0700834 if (s != null) {
835 return s;
836 }
837 return "{null}";
838 }
839
Svetoslav683914b2015-01-15 14:22:26 -0800840 private void registerBroadcastReceivers() {
841 IntentFilter userFilter = new IntentFilter();
842 userFilter.addAction(Intent.ACTION_USER_REMOVED);
843 userFilter.addAction(Intent.ACTION_USER_STOPPED);
844
845 getContext().registerReceiver(new BroadcastReceiver() {
846 @Override
847 public void onReceive(Context context, Intent intent) {
848 final int userId = intent.getIntExtra(Intent.EXTRA_USER_HANDLE,
Xiaohui Chen43765b72015-08-31 10:57:33 -0700849 UserHandle.USER_SYSTEM);
Svetoslav683914b2015-01-15 14:22:26 -0800850
851 switch (intent.getAction()) {
852 case Intent.ACTION_USER_REMOVED: {
Svet Ganov53a441c2016-04-19 19:38:00 -0700853 synchronized (mLock) {
854 mSettingsRegistry.removeUserStateLocked(userId, true);
855 }
Svetoslav683914b2015-01-15 14:22:26 -0800856 } break;
857
858 case Intent.ACTION_USER_STOPPED: {
Svet Ganov53a441c2016-04-19 19:38:00 -0700859 synchronized (mLock) {
860 mSettingsRegistry.removeUserStateLocked(userId, false);
861 }
Svetoslav683914b2015-01-15 14:22:26 -0800862 } break;
863 }
864 }
865 }, userFilter);
866
867 PackageMonitor monitor = new PackageMonitor() {
868 @Override
869 public void onPackageRemoved(String packageName, int uid) {
870 synchronized (mLock) {
Zimuzoc56192c2018-07-25 10:40:01 +0100871 mSettingsRegistry.removeSettingsForPackageLocked(packageName,
Svetoslav683914b2015-01-15 14:22:26 -0800872 UserHandle.getUserId(uid));
873 }
874 }
Mark Rathjend891f012017-01-19 04:10:37 +0000875
876 @Override
877 public void onUidRemoved(int uid) {
878 synchronized (mLock) {
879 mSettingsRegistry.onUidRemovedLocked(uid);
880 }
881 }
Zimuzoc56192c2018-07-25 10:40:01 +0100882
883 @Override
884 public void onPackageDataCleared(String packageName, int uid) {
885 synchronized (mLock) {
886 mSettingsRegistry.removeSettingsForPackageLocked(packageName,
887 UserHandle.getUserId(uid));
888 }
889 }
Svetoslav683914b2015-01-15 14:22:26 -0800890 };
891
892 // package changes
893 monitor.register(getContext(), BackgroundThread.getHandler().getLooper(),
894 UserHandle.ALL, true);
895 }
896
Svet Ganov53a441c2016-04-19 19:38:00 -0700897 private void startWatchingUserRestrictionChanges() {
898 // TODO: The current design of settings looking different based on user restrictions
899 // should be reworked to keep them separate and system code should check the setting
900 // first followed by checking the user restriction before performing an operation.
Christopher Tate65fb2e42019-10-11 17:00:23 -0700901 IUserRestrictionsListener listener = new IUserRestrictionsListener.Stub() {
902 @Override
903 public void onUserRestrictionsChanged(int userId,
904 Bundle newRestrictions, Bundle prevRestrictions) {
905 Set<String> changedRestrictions =
906 getRestrictionDiff(prevRestrictions, newRestrictions);
907 // We are changing the settings affected by restrictions to their current
908 // value with a forced update to ensure that all cross profile dependencies
909 // are taken into account. Also make sure the settings update to.. the same
910 // value passes the security checks, so clear binder calling id.
911 if (changedRestrictions.contains(UserManager.DISALLOW_SHARE_LOCATION)) {
912 final long identity = Binder.clearCallingIdentity();
913 try {
914 synchronized (mLock) {
915 Setting setting = getSecureSetting(
916 Settings.Secure.LOCATION_MODE, userId);
917 updateSecureSetting(Settings.Secure.LOCATION_MODE,
918 setting != null ? setting.getValue() : null, null,
919 true, userId, true);
920 setting = getSecureSetting(
921 Settings.Secure.LOCATION_PROVIDERS_ALLOWED, userId);
922 updateSecureSetting(Settings.Secure.LOCATION_PROVIDERS_ALLOWED,
923 setting != null ? setting.getValue() : null, null,
924 true, userId, true);
925 }
926 } finally {
927 Binder.restoreCallingIdentity(identity);
Svet Ganov53a441c2016-04-19 19:38:00 -0700928 }
Christopher Tate65fb2e42019-10-11 17:00:23 -0700929 }
930 if (changedRestrictions.contains(UserManager.DISALLOW_INSTALL_UNKNOWN_SOURCES)
931 || changedRestrictions.contains(
932 UserManager.DISALLOW_INSTALL_UNKNOWN_SOURCES_GLOBALLY)) {
933 final long identity = Binder.clearCallingIdentity();
934 try {
935 synchronized (mLock) {
936 Setting setting = getGlobalSetting(
937 Settings.Global.INSTALL_NON_MARKET_APPS);
938 String value = setting != null ? setting.getValue() : null;
939 updateGlobalSetting(Settings.Global.INSTALL_NON_MARKET_APPS,
940 value, null, true, userId, true);
941 }
942 } finally {
943 Binder.restoreCallingIdentity(identity);
944 }
945 }
946 if (changedRestrictions.contains(UserManager.DISALLOW_DEBUGGING_FEATURES)) {
947 final long identity = Binder.clearCallingIdentity();
948 try {
949 synchronized (mLock) {
950 Setting setting = getGlobalSetting(Settings.Global.ADB_ENABLED);
951 String value = setting != null ? setting.getValue() : null;
952 updateGlobalSetting(Settings.Global.ADB_ENABLED,
953 value, null, true, userId, true);
954 }
955 } finally {
956 Binder.restoreCallingIdentity(identity);
957 }
958 }
959 if (changedRestrictions.contains(UserManager.ENSURE_VERIFY_APPS)) {
960 final long identity = Binder.clearCallingIdentity();
961 try {
962 synchronized (mLock) {
963 Setting enable = getGlobalSetting(
964 Settings.Global.PACKAGE_VERIFIER_ENABLE);
965 String enableValue = enable != null ? enable.getValue() : null;
966 updateGlobalSetting(Settings.Global.PACKAGE_VERIFIER_ENABLE,
967 enableValue, null, true, userId, true);
968 Setting include = getGlobalSetting(
969 Settings.Global.PACKAGE_VERIFIER_INCLUDE_ADB);
970 String includeValue = include != null ? include.getValue() : null;
971 updateGlobalSetting(Settings.Global.PACKAGE_VERIFIER_INCLUDE_ADB,
972 includeValue, null, true, userId, true);
973 }
974 } finally {
975 Binder.restoreCallingIdentity(identity);
976 }
977 }
978 if (changedRestrictions.contains(UserManager.DISALLOW_CONFIG_MOBILE_NETWORKS)) {
979 final long identity = Binder.clearCallingIdentity();
980 try {
981 synchronized (mLock) {
982 Setting setting = getGlobalSetting(
983 Settings.Global.PREFERRED_NETWORK_MODE);
984 String value = setting != null ? setting.getValue() : null;
985 updateGlobalSetting(Settings.Global.PREFERRED_NETWORK_MODE,
986 value, null, true, userId, true);
987 }
988 } finally {
989 Binder.restoreCallingIdentity(identity);
990 }
Svet Ganov53a441c2016-04-19 19:38:00 -0700991 }
992 }
Christopher Tate65fb2e42019-10-11 17:00:23 -0700993 };
994 mUserManager.addUserRestrictionsListener(listener);
Svet Ganov53a441c2016-04-19 19:38:00 -0700995 }
996
Irina Dumitrescue3696872019-01-09 16:07:59 +0000997 private static Set<String> getRestrictionDiff(Bundle prevRestrictions, Bundle newRestrictions) {
998 Set<String> restrictionNames = Sets.newArraySet();
999 restrictionNames.addAll(prevRestrictions.keySet());
1000 restrictionNames.addAll(newRestrictions.keySet());
1001 Set<String> diff = Sets.newArraySet();
1002 for (String restrictionName : restrictionNames) {
1003 if (prevRestrictions.getBoolean(restrictionName) != newRestrictions.getBoolean(
1004 restrictionName)) {
1005 diff.add(restrictionName);
1006 }
1007 }
1008 return diff;
1009 }
1010
Matt Pape1b31a332018-10-17 09:58:28 -07001011 private Setting getConfigSetting(String name) {
1012 if (DEBUG) {
1013 Slog.v(LOG_TAG, "getConfigSetting(" + name + ")");
1014 }
1015
Stanislav Zholnin55799502019-03-08 14:54:55 +00001016 DeviceConfig.enforceReadPermission(getContext(), /*namespace=*/name.split("/")[0]);
Matt Pape1b31a332018-10-17 09:58:28 -07001017
1018 // Get the value.
1019 synchronized (mLock) {
1020 return mSettingsRegistry.getSettingLocked(SETTINGS_TYPE_CONFIG,
1021 UserHandle.USER_SYSTEM, name);
1022 }
1023 }
1024
Matt Papec1323dc2018-12-11 12:32:42 -08001025 private boolean insertConfigSetting(String name, String value, boolean makeDefault) {
Matt Pape1b31a332018-10-17 09:58:28 -07001026 if (DEBUG) {
1027 Slog.v(LOG_TAG, "insertConfigSetting(" + name + ", " + value + ", "
Matt Papec1323dc2018-12-11 12:32:42 -08001028 + makeDefault + ")");
Matt Pape1b31a332018-10-17 09:58:28 -07001029 }
Matt Papec1323dc2018-12-11 12:32:42 -08001030 return mutateConfigSetting(name, value, null, makeDefault,
1031 MUTATION_OPERATION_INSERT, 0);
Matt Pape1b31a332018-10-17 09:58:28 -07001032 }
1033
Matt Papec1323dc2018-12-11 12:32:42 -08001034 private boolean deleteConfigSetting(String name) {
Matt Pape6bfc62e2018-11-28 13:16:03 -08001035 if (DEBUG) {
Matt Papec1323dc2018-12-11 12:32:42 -08001036 Slog.v(LOG_TAG, "deleteConfigSetting(" + name + ")");
Matt Pape6bfc62e2018-11-28 13:16:03 -08001037 }
Matt Papec1323dc2018-12-11 12:32:42 -08001038 return mutateConfigSetting(name, null, null, false,
1039 MUTATION_OPERATION_DELETE, 0);
Matt Pape6bfc62e2018-11-28 13:16:03 -08001040 }
1041
Matt Papec1323dc2018-12-11 12:32:42 -08001042 private void resetConfigSetting(int mode, String prefix) {
Matt Pape1b31a332018-10-17 09:58:28 -07001043 if (DEBUG) {
Matt Papec1323dc2018-12-11 12:32:42 -08001044 Slog.v(LOG_TAG, "resetConfigSetting(" + mode + ", " + prefix + ")");
Matt Pape1b31a332018-10-17 09:58:28 -07001045 }
Matt Papec1323dc2018-12-11 12:32:42 -08001046 mutateConfigSetting(null, null, prefix, false,
1047 MUTATION_OPERATION_RESET, mode);
Matt Pape1b31a332018-10-17 09:58:28 -07001048 }
1049
Matt Pape6bfc62e2018-11-28 13:16:03 -08001050 private boolean mutateConfigSetting(String name, String value, String prefix,
Matt Papec1323dc2018-12-11 12:32:42 -08001051 boolean makeDefault, int operation, int mode) {
Stanislav Zholnin5a25a842019-03-13 14:43:26 +00001052 enforceWritePermission(Manifest.permission.WRITE_DEVICE_CONFIG);
Matt Pape1b31a332018-10-17 09:58:28 -07001053
Matt Pape1b31a332018-10-17 09:58:28 -07001054 // Perform the mutation.
1055 synchronized (mLock) {
1056 switch (operation) {
1057 case MUTATION_OPERATION_INSERT: {
1058 return mSettingsRegistry.insertSettingLocked(SETTINGS_TYPE_CONFIG,
Matt Papec1323dc2018-12-11 12:32:42 -08001059 UserHandle.USER_SYSTEM, name, value, null, makeDefault, true,
Matt Pape7b1c6cd2019-01-04 08:10:41 -08001060 resolveCallingPackage(), false, null);
Matt Pape1b31a332018-10-17 09:58:28 -07001061 }
1062
Matt Pape6bfc62e2018-11-28 13:16:03 -08001063 case MUTATION_OPERATION_DELETE: {
1064 return mSettingsRegistry.deleteSettingLocked(SETTINGS_TYPE_CONFIG,
Matt Papec1323dc2018-12-11 12:32:42 -08001065 UserHandle.USER_SYSTEM, name, false, null);
Matt Pape6bfc62e2018-11-28 13:16:03 -08001066 }
1067
Matt Pape1b31a332018-10-17 09:58:28 -07001068 case MUTATION_OPERATION_RESET: {
1069 mSettingsRegistry.resetSettingsLocked(SETTINGS_TYPE_CONFIG,
Matt Pape7b1c6cd2019-01-04 08:10:41 -08001070 UserHandle.USER_SYSTEM, resolveCallingPackage(), mode, null, prefix);
Matt Pape1b31a332018-10-17 09:58:28 -07001071 } return true;
1072 }
1073 }
1074
1075 return false;
1076 }
1077
Matt Pape793b15c2019-10-07 13:17:20 -07001078 private HashMap<String, String> getAllConfigFlags(@Nullable String prefix) {
Matt Pape6bfc62e2018-11-28 13:16:03 -08001079 if (DEBUG) {
1080 Slog.v(LOG_TAG, "getAllConfigFlags() for " + prefix);
1081 }
1082
Matt Pape91beb9c2019-10-17 15:20:34 -07001083 DeviceConfig.enforceReadPermission(getContext(),
1084 prefix != null ? prefix.split("/")[0] : null);
1085
Matt Pape6bfc62e2018-11-28 13:16:03 -08001086 synchronized (mLock) {
1087 // Get the settings.
1088 SettingsState settingsState = mSettingsRegistry.getSettingsLocked(
1089 SETTINGS_TYPE_CONFIG, UserHandle.USER_SYSTEM);
Matt Pape6bfc62e2018-11-28 13:16:03 -08001090 List<String> names = getSettingsNamesLocked(SETTINGS_TYPE_CONFIG,
1091 UserHandle.USER_SYSTEM);
1092
1093 final int nameCount = names.size();
Matt Pape793b15c2019-10-07 13:17:20 -07001094 HashMap<String, String> flagsToValues = new HashMap<>(names.size());
Matt Pape6bfc62e2018-11-28 13:16:03 -08001095
1096 for (int i = 0; i < nameCount; i++) {
1097 String name = names.get(i);
1098 Setting setting = settingsState.getSettingLocked(name);
1099 if (prefix == null || setting.getName().startsWith(prefix)) {
1100 flagsToValues.put(setting.getName(), setting.getValue());
1101 }
1102 }
1103
1104 return flagsToValues;
1105 }
1106 }
1107
Svetoslav7ec28e82015-05-20 17:01:10 -07001108 private Cursor getAllGlobalSettings(String[] projection) {
Svetoslav683914b2015-01-15 14:22:26 -08001109 if (DEBUG) {
Svetoslav7ec28e82015-05-20 17:01:10 -07001110 Slog.v(LOG_TAG, "getAllGlobalSettings()");
Svetoslav683914b2015-01-15 14:22:26 -08001111 }
1112
Svetoslav7ec28e82015-05-20 17:01:10 -07001113 synchronized (mLock) {
1114 // Get the settings.
1115 SettingsState settingsState = mSettingsRegistry.getSettingsLocked(
Svet Ganov53a441c2016-04-19 19:38:00 -07001116 SETTINGS_TYPE_GLOBAL, UserHandle.USER_SYSTEM);
Svetoslav683914b2015-01-15 14:22:26 -08001117
Chad Brubaker97bccee2017-01-05 15:51:41 -08001118 List<String> names = getSettingsNamesLocked(SETTINGS_TYPE_GLOBAL,
1119 UserHandle.USER_SYSTEM);
Svetoslav683914b2015-01-15 14:22:26 -08001120
Svetoslav7ec28e82015-05-20 17:01:10 -07001121 final int nameCount = names.size();
Svetoslav683914b2015-01-15 14:22:26 -08001122
Svetoslav7ec28e82015-05-20 17:01:10 -07001123 String[] normalizedProjection = normalizeProjection(projection);
1124 MatrixCursor result = new MatrixCursor(normalizedProjection, nameCount);
Svetoslav683914b2015-01-15 14:22:26 -08001125
Svetoslav7ec28e82015-05-20 17:01:10 -07001126 // Anyone can get the global settings, so no security checks.
1127 for (int i = 0; i < nameCount; i++) {
1128 String name = names.get(i);
1129 Setting setting = settingsState.getSettingLocked(name);
1130 appendSettingToCursor(result, setting);
1131 }
1132
1133 return result;
Svetoslav683914b2015-01-15 14:22:26 -08001134 }
Svetoslav683914b2015-01-15 14:22:26 -08001135 }
1136
Svetoslav7ec28e82015-05-20 17:01:10 -07001137 private Setting getGlobalSetting(String name) {
Svetoslav683914b2015-01-15 14:22:26 -08001138 if (DEBUG) {
1139 Slog.v(LOG_TAG, "getGlobalSetting(" + name + ")");
1140 }
1141
Chad Brubakera6830e72017-04-28 17:34:36 -07001142 // Ensure the caller can access the setting.
1143 enforceSettingReadable(name, SETTINGS_TYPE_GLOBAL, UserHandle.getCallingUserId());
1144
Svetoslav683914b2015-01-15 14:22:26 -08001145 // Get the value.
Svetoslav7ec28e82015-05-20 17:01:10 -07001146 synchronized (mLock) {
Chad Brubakera6830e72017-04-28 17:34:36 -07001147 return mSettingsRegistry.getSettingLocked(SETTINGS_TYPE_GLOBAL,
Xiaohui Chen43765b72015-08-31 10:57:33 -07001148 UserHandle.USER_SYSTEM, name);
Svetoslav683914b2015-01-15 14:22:26 -08001149 }
Svetoslav683914b2015-01-15 14:22:26 -08001150 }
1151
Svetoslav Ganove080da92016-12-21 17:10:35 -08001152 private boolean updateGlobalSetting(String name, String value, String tag,
1153 boolean makeDefault, int requestingUserId, boolean forceNotify) {
Svetoslav683914b2015-01-15 14:22:26 -08001154 if (DEBUG) {
Svetoslav Ganove080da92016-12-21 17:10:35 -08001155 Slog.v(LOG_TAG, "updateGlobalSetting(" + name + ", " + value + ", "
1156 + ", " + tag + ", " + makeDefault + ", " + requestingUserId
1157 + ", " + forceNotify + ")");
Svetoslav683914b2015-01-15 14:22:26 -08001158 }
Svetoslav Ganove080da92016-12-21 17:10:35 -08001159 return mutateGlobalSetting(name, value, tag, makeDefault, requestingUserId,
1160 MUTATION_OPERATION_UPDATE, forceNotify, 0);
Svetoslav683914b2015-01-15 14:22:26 -08001161 }
1162
Svetoslav Ganove080da92016-12-21 17:10:35 -08001163 private boolean insertGlobalSetting(String name, String value, String tag,
1164 boolean makeDefault, int requestingUserId, boolean forceNotify) {
Svetoslav7ec28e82015-05-20 17:01:10 -07001165 if (DEBUG) {
Svetoslav Ganove080da92016-12-21 17:10:35 -08001166 Slog.v(LOG_TAG, "insertGlobalSetting(" + name + ", " + value + ", "
1167 + ", " + tag + ", " + makeDefault + ", " + requestingUserId
1168 + ", " + forceNotify + ")");
Svetoslav7ec28e82015-05-20 17:01:10 -07001169 }
Svetoslav Ganove080da92016-12-21 17:10:35 -08001170 return mutateGlobalSetting(name, value, tag, makeDefault, requestingUserId,
1171 MUTATION_OPERATION_INSERT, forceNotify, 0);
Svetoslav7ec28e82015-05-20 17:01:10 -07001172 }
1173
Svet Ganov53a441c2016-04-19 19:38:00 -07001174 private boolean deleteGlobalSetting(String name, int requestingUserId, boolean forceNotify) {
Svetoslav683914b2015-01-15 14:22:26 -08001175 if (DEBUG) {
Svetoslav Ganove080da92016-12-21 17:10:35 -08001176 Slog.v(LOG_TAG, "deleteGlobalSetting(" + name + ", " + requestingUserId
1177 + ", " + forceNotify + ")");
Svetoslav683914b2015-01-15 14:22:26 -08001178 }
Svetoslav Ganove080da92016-12-21 17:10:35 -08001179 return mutateGlobalSetting(name, null, null, false, requestingUserId,
1180 MUTATION_OPERATION_DELETE, forceNotify, 0);
Svetoslav683914b2015-01-15 14:22:26 -08001181 }
1182
Svetoslav Ganove080da92016-12-21 17:10:35 -08001183 private void resetGlobalSetting(int requestingUserId, int mode, String tag) {
1184 if (DEBUG) {
1185 Slog.v(LOG_TAG, "resetGlobalSetting(" + requestingUserId + ", "
1186 + mode + ", " + tag + ")");
1187 }
1188 mutateGlobalSetting(null, null, tag, false, requestingUserId,
1189 MUTATION_OPERATION_RESET, false, mode);
1190 }
1191
Christopher Tate65fb2e42019-10-11 17:00:23 -07001192 private boolean isSettingRestrictedForUser(String name, int userId,
1193 String value, int callerUid) {
1194 final long oldId = Binder.clearCallingIdentity();
1195 try {
1196 return (name != null
1197 && mUserManager.isSettingRestrictedForUser(name, userId, value, callerUid));
1198 } finally {
1199 Binder.restoreCallingIdentity(oldId);
1200 }
1201 }
1202
Svetoslav Ganove080da92016-12-21 17:10:35 -08001203 private boolean mutateGlobalSetting(String name, String value, String tag,
1204 boolean makeDefault, int requestingUserId, int operation, boolean forceNotify,
1205 int mode) {
Svetoslav683914b2015-01-15 14:22:26 -08001206 // Make sure the caller can change the settings - treated as secure.
1207 enforceWritePermission(Manifest.permission.WRITE_SECURE_SETTINGS);
1208
Svetoslav683914b2015-01-15 14:22:26 -08001209 // Resolve the userId on whose behalf the call is made.
1210 final int callingUserId = resolveCallingUserIdEnforcingPermissionsLocked(requestingUserId);
1211
Makoto Onuki28da2e32015-11-20 11:30:44 -08001212 // If this is a setting that is currently restricted for this user, do not allow
1213 // unrestricting changes.
Christopher Tate65fb2e42019-10-11 17:00:23 -07001214 if (isSettingRestrictedForUser(name, callingUserId, value, Binder.getCallingUid())) {
Svetoslav683914b2015-01-15 14:22:26 -08001215 return false;
1216 }
1217
1218 // Perform the mutation.
Svetoslav7ec28e82015-05-20 17:01:10 -07001219 synchronized (mLock) {
1220 switch (operation) {
1221 case MUTATION_OPERATION_INSERT: {
Svetoslav Ganove080da92016-12-21 17:10:35 -08001222 return mSettingsRegistry.insertSettingLocked(SETTINGS_TYPE_GLOBAL,
1223 UserHandle.USER_SYSTEM, name, value, tag, makeDefault,
Svetoslav Ganov5fb405b2017-01-26 22:43:09 -08001224 getCallingPackage(), forceNotify, CRITICAL_GLOBAL_SETTINGS);
Svetoslav7ec28e82015-05-20 17:01:10 -07001225 }
Svetoslav683914b2015-01-15 14:22:26 -08001226
Svetoslav7ec28e82015-05-20 17:01:10 -07001227 case MUTATION_OPERATION_DELETE: {
Svet Ganov53a441c2016-04-19 19:38:00 -07001228 return mSettingsRegistry.deleteSettingLocked(SETTINGS_TYPE_GLOBAL,
Svetoslav Ganov5fb405b2017-01-26 22:43:09 -08001229 UserHandle.USER_SYSTEM, name, forceNotify, CRITICAL_GLOBAL_SETTINGS);
Svetoslav7ec28e82015-05-20 17:01:10 -07001230 }
Svetoslav683914b2015-01-15 14:22:26 -08001231
Svetoslav7ec28e82015-05-20 17:01:10 -07001232 case MUTATION_OPERATION_UPDATE: {
Svetoslav Ganove080da92016-12-21 17:10:35 -08001233 return mSettingsRegistry.updateSettingLocked(SETTINGS_TYPE_GLOBAL,
1234 UserHandle.USER_SYSTEM, name, value, tag, makeDefault,
Svetoslav Ganov5fb405b2017-01-26 22:43:09 -08001235 getCallingPackage(), forceNotify, CRITICAL_GLOBAL_SETTINGS);
Svetoslav7ec28e82015-05-20 17:01:10 -07001236 }
Svetoslav Ganove080da92016-12-21 17:10:35 -08001237
1238 case MUTATION_OPERATION_RESET: {
1239 mSettingsRegistry.resetSettingsLocked(SETTINGS_TYPE_GLOBAL,
1240 UserHandle.USER_SYSTEM, getCallingPackage(), mode, tag);
1241 } return true;
Svetoslav683914b2015-01-15 14:22:26 -08001242 }
1243 }
1244
1245 return false;
1246 }
1247
Christopher Tateb218e762017-04-05 16:34:07 -07001248 private PackageInfo getCallingPackageInfo(int userId) {
1249 try {
1250 return mPackageManager.getPackageInfo(getCallingPackage(),
1251 PackageManager.GET_SIGNATURES, userId);
1252 } catch (RemoteException e) {
1253 throw new IllegalStateException("Package " + getCallingPackage() + " doesn't exist");
1254 }
1255 }
1256
Svetoslav7ec28e82015-05-20 17:01:10 -07001257 private Cursor getAllSecureSettings(int userId, String[] projection) {
Svetoslav683914b2015-01-15 14:22:26 -08001258 if (DEBUG) {
1259 Slog.v(LOG_TAG, "getAllSecureSettings(" + userId + ")");
1260 }
1261
1262 // Resolve the userId on whose behalf the call is made.
1263 final int callingUserId = resolveCallingUserIdEnforcingPermissionsLocked(userId);
1264
Christopher Tateb218e762017-04-05 16:34:07 -07001265 // The relevant "calling package" userId will be the owning userId for some
1266 // profiles, and we can't do the lookup inside our [lock held] loop, so work out
1267 // up front who the effective "new SSAID" user ID for that settings name will be.
1268 final int ssaidUserId = resolveOwningUserIdForSecureSettingLocked(callingUserId,
1269 Settings.Secure.ANDROID_ID);
1270 final PackageInfo ssaidCallingPkg = getCallingPackageInfo(ssaidUserId);
1271
Svetoslav7ec28e82015-05-20 17:01:10 -07001272 synchronized (mLock) {
Chad Brubaker97bccee2017-01-05 15:51:41 -08001273 List<String> names = getSettingsNamesLocked(SETTINGS_TYPE_SECURE, callingUserId);
Svetoslav683914b2015-01-15 14:22:26 -08001274
Svetoslav7ec28e82015-05-20 17:01:10 -07001275 final int nameCount = names.size();
Svetoslav683914b2015-01-15 14:22:26 -08001276
Svetoslav7ec28e82015-05-20 17:01:10 -07001277 String[] normalizedProjection = normalizeProjection(projection);
1278 MatrixCursor result = new MatrixCursor(normalizedProjection, nameCount);
Svetoslav683914b2015-01-15 14:22:26 -08001279
Svetoslav7ec28e82015-05-20 17:01:10 -07001280 for (int i = 0; i < nameCount; i++) {
1281 String name = names.get(i);
1282 // Determine the owning user as some profile settings are cloned from the parent.
1283 final int owningUserId = resolveOwningUserIdForSecureSettingLocked(callingUserId,
1284 name);
Svetoslav683914b2015-01-15 14:22:26 -08001285
Alex Klyubin1991f572017-03-03 14:08:36 -08001286 if (!isSecureSettingAccessible(name, callingUserId, owningUserId)) {
1287 // This caller is not permitted to access this setting. Pretend the setting
1288 // doesn't exist.
Svetoslav Ganov83a1f7f2016-04-27 13:50:49 -07001289 continue;
Svetoslav7ec28e82015-05-20 17:01:10 -07001290 }
Svetoslav683914b2015-01-15 14:22:26 -08001291
Mark Rathjen7599f132017-01-23 14:15:54 -08001292 // As of Android O, the SSAID is read from an app-specific entry in table
Mark Rathjend891f012017-01-19 04:10:37 +00001293 // SETTINGS_FILE_SSAID, unless accessed by a system process.
1294 final Setting setting;
1295 if (isNewSsaidSetting(name)) {
Christopher Tateb218e762017-04-05 16:34:07 -07001296 setting = getSsaidSettingLocked(ssaidCallingPkg, owningUserId);
Mark Rathjend891f012017-01-19 04:10:37 +00001297 } else {
1298 setting = mSettingsRegistry.getSettingLocked(SETTINGS_TYPE_SECURE, owningUserId,
1299 name);
1300 }
Svetoslav7ec28e82015-05-20 17:01:10 -07001301 appendSettingToCursor(result, setting);
Svetoslav683914b2015-01-15 14:22:26 -08001302 }
1303
Svetoslav7ec28e82015-05-20 17:01:10 -07001304 return result;
Svetoslav683914b2015-01-15 14:22:26 -08001305 }
Svetoslav683914b2015-01-15 14:22:26 -08001306 }
1307
Svetoslav7ec28e82015-05-20 17:01:10 -07001308 private Setting getSecureSetting(String name, int requestingUserId) {
Makoto Onuki0000d322017-11-28 16:31:47 -08001309 return getSecureSetting(name, requestingUserId, /*enableOverride=*/ false);
1310 }
1311
1312 private Setting getSecureSetting(String name, int requestingUserId, boolean enableOverride) {
Svetoslav683914b2015-01-15 14:22:26 -08001313 if (DEBUG) {
1314 Slog.v(LOG_TAG, "getSecureSetting(" + name + ", " + requestingUserId + ")");
1315 }
1316
1317 // Resolve the userId on whose behalf the call is made.
1318 final int callingUserId = resolveCallingUserIdEnforcingPermissionsLocked(requestingUserId);
1319
Chad Brubakera6830e72017-04-28 17:34:36 -07001320 // Ensure the caller can access the setting.
1321 enforceSettingReadable(name, SETTINGS_TYPE_SECURE, UserHandle.getCallingUserId());
1322
Svetoslav683914b2015-01-15 14:22:26 -08001323 // Determine the owning user as some profile settings are cloned from the parent.
1324 final int owningUserId = resolveOwningUserIdForSecureSettingLocked(callingUserId, name);
1325
Alex Klyubin1991f572017-03-03 14:08:36 -08001326 if (!isSecureSettingAccessible(name, callingUserId, owningUserId)) {
1327 // This caller is not permitted to access this setting. Pretend the setting doesn't
1328 // exist.
Dianne Hackborn32f40ee2016-10-20 15:54:14 -07001329 SettingsState settings = mSettingsRegistry.getSettingsLocked(SETTINGS_TYPE_SECURE,
1330 owningUserId);
1331 return settings != null ? settings.getNullSetting() : null;
Svetoslav683914b2015-01-15 14:22:26 -08001332 }
1333
Christopher Tateb218e762017-04-05 16:34:07 -07001334 // As of Android O, the SSAID is read from an app-specific entry in table
1335 // SETTINGS_FILE_SSAID, unless accessed by a system process.
1336 if (isNewSsaidSetting(name)) {
1337 PackageInfo callingPkg = getCallingPackageInfo(owningUserId);
1338 synchronized (mLock) {
1339 return getSsaidSettingLocked(callingPkg, owningUserId);
Mark Rathjend891f012017-01-19 04:10:37 +00001340 }
Christopher Tateb218e762017-04-05 16:34:07 -07001341 }
Makoto Onuki0000d322017-11-28 16:31:47 -08001342 if (enableOverride) {
Kweku Adams5e0052b2019-02-22 15:17:52 -08001343 if (Secure.LOCATION_MODE.equals(name)) {
1344 final Setting overridden = getLocationModeSetting(owningUserId);
Makoto Onuki0000d322017-11-28 16:31:47 -08001345 if (overridden != null) {
1346 return overridden;
1347 }
1348 }
1349 }
Mark Rathjend891f012017-01-19 04:10:37 +00001350
Christopher Tateb218e762017-04-05 16:34:07 -07001351 // Not the SSAID; do a straight lookup
1352 synchronized (mLock) {
Chad Brubakera6830e72017-04-28 17:34:36 -07001353 return mSettingsRegistry.getSettingLocked(SETTINGS_TYPE_SECURE,
Svetoslav7ec28e82015-05-20 17:01:10 -07001354 owningUserId, name);
1355 }
Svetoslav683914b2015-01-15 14:22:26 -08001356 }
1357
Mark Rathjend891f012017-01-19 04:10:37 +00001358 private boolean isNewSsaidSetting(String name) {
1359 return Settings.Secure.ANDROID_ID.equals(name)
1360 && UserHandle.getAppId(Binder.getCallingUid()) >= Process.FIRST_APPLICATION_UID;
1361 }
1362
Andreas Gampeb58893072018-09-05 16:52:31 -07001363 @GuardedBy("mLock")
Christopher Tateb218e762017-04-05 16:34:07 -07001364 private Setting getSsaidSettingLocked(PackageInfo callingPkg, int owningUserId) {
Mark Rathjend891f012017-01-19 04:10:37 +00001365 // Get uid of caller (key) used to store ssaid value
1366 String name = Integer.toString(
1367 UserHandle.getUid(owningUserId, UserHandle.getAppId(Binder.getCallingUid())));
1368
1369 if (DEBUG) {
1370 Slog.v(LOG_TAG, "getSsaidSettingLocked(" + name + "," + owningUserId + ")");
1371 }
1372
1373 // Retrieve the ssaid from the table if present.
1374 final Setting ssaid = mSettingsRegistry.getSettingLocked(SETTINGS_TYPE_SSAID, owningUserId,
1375 name);
Chad Brubaker0d277a72017-04-12 16:56:53 -07001376 // If the app is an Instant App use its stored SSAID instead of our own.
1377 final String instantSsaid;
1378 final long token = Binder.clearCallingIdentity();
1379 try {
1380 instantSsaid = mPackageManager.getInstantAppAndroidId(callingPkg.packageName,
1381 owningUserId);
1382 } catch (RemoteException e) {
1383 Slog.e(LOG_TAG, "Failed to get Instant App Android ID", e);
1384 return null;
1385 } finally {
1386 Binder.restoreCallingIdentity(token);
1387 }
Svet Ganov96c99462017-05-05 14:27:13 -07001388
1389 final SettingsState ssaidSettings = mSettingsRegistry.getSettingsLocked(
1390 SETTINGS_TYPE_SSAID, owningUserId);
1391
Chad Brubaker0d277a72017-04-12 16:56:53 -07001392 if (instantSsaid != null) {
1393 // Use the stored value if it is still valid.
1394 if (ssaid != null && instantSsaid.equals(ssaid.getValue())) {
Svet Ganov96c99462017-05-05 14:27:13 -07001395 return mascaradeSsaidSetting(ssaidSettings, ssaid);
Chad Brubaker0d277a72017-04-12 16:56:53 -07001396 }
1397 // The value has changed, update the stored value.
Chad Brubaker0d277a72017-04-12 16:56:53 -07001398 final boolean success = ssaidSettings.insertSettingLocked(name, instantSsaid, null,
1399 true, callingPkg.packageName);
1400 if (!success) {
1401 throw new IllegalStateException("Failed to update instant app android id");
1402 }
Svet Ganov96c99462017-05-05 14:27:13 -07001403 Setting setting = mSettingsRegistry.getSettingLocked(SETTINGS_TYPE_SSAID,
1404 owningUserId, name);
1405 return mascaradeSsaidSetting(ssaidSettings, setting);
Chad Brubaker0d277a72017-04-12 16:56:53 -07001406 }
Mark Rathjend891f012017-01-19 04:10:37 +00001407
1408 // Lazy initialize ssaid if not yet present in ssaid table.
Mark Rathjenea617592017-01-18 23:03:41 -08001409 if (ssaid == null || ssaid.isNull() || ssaid.getValue() == null) {
Svet Ganov96c99462017-05-05 14:27:13 -07001410 Setting setting = mSettingsRegistry.generateSsaidLocked(callingPkg, owningUserId);
1411 return mascaradeSsaidSetting(ssaidSettings, setting);
Mark Rathjend891f012017-01-19 04:10:37 +00001412 }
1413
Svet Ganov96c99462017-05-05 14:27:13 -07001414 return mascaradeSsaidSetting(ssaidSettings, ssaid);
1415 }
1416
1417 private Setting mascaradeSsaidSetting(SettingsState settingsState, Setting ssaidSetting) {
1418 // SSAID settings are located in a dedicated table for internal bookkeeping
1419 // but for the world they reside in the secure table, so adjust the key here.
1420 // We have a special name when looking it up but want the world to see it as
1421 // "android_id".
1422 if (ssaidSetting != null) {
1423 return settingsState.new Setting(ssaidSetting) {
1424 @Override
1425 public int getKey() {
1426 final int userId = getUserIdFromKey(super.getKey());
1427 return makeKey(SETTINGS_TYPE_SECURE, userId);
1428 }
1429
1430 @Override
1431 public String getName() {
1432 return Settings.Secure.ANDROID_ID;
1433 }
1434 };
1435 }
1436 return null;
Mark Rathjend891f012017-01-19 04:10:37 +00001437 }
1438
Kweku Adams5e0052b2019-02-22 15:17:52 -08001439 private Setting getLocationModeSetting(int owningUserId) {
Makoto Onuki0000d322017-11-28 16:31:47 -08001440 synchronized (mLock) {
1441 final Setting setting = getGlobalSetting(
1442 Global.LOCATION_GLOBAL_KILL_SWITCH);
1443 if (!"1".equals(setting.getValue())) {
1444 return null;
1445 }
1446 // Global kill-switch is enabled. Return an empty value.
1447 final SettingsState settingsState = mSettingsRegistry.getSettingsLocked(
1448 SETTINGS_TYPE_SECURE, owningUserId);
1449 return settingsState.new Setting(
Kweku Adams5e0052b2019-02-22 15:17:52 -08001450 Secure.LOCATION_MODE,
Makoto Onuki0000d322017-11-28 16:31:47 -08001451 "", // value
1452 "", // tag
1453 "", // default value
1454 "", // package name
1455 false, // from system
1456 "0" // id
1457 ) {
1458 @Override
1459 public boolean update(String value, boolean setDefault, String packageName,
1460 String tag, boolean forceNonSystemPackage) {
Kweku Adams5e0052b2019-02-22 15:17:52 -08001461 Slog.wtf(LOG_TAG, "update shouldn't be called on this instance.");
Makoto Onuki0000d322017-11-28 16:31:47 -08001462 return false;
1463 }
1464 };
1465 }
1466 }
1467
Svetoslav Ganove080da92016-12-21 17:10:35 -08001468 private boolean insertSecureSetting(String name, String value, String tag,
1469 boolean makeDefault, int requestingUserId, boolean forceNotify) {
Svetoslav683914b2015-01-15 14:22:26 -08001470 if (DEBUG) {
Svetoslav7ec28e82015-05-20 17:01:10 -07001471 Slog.v(LOG_TAG, "insertSecureSetting(" + name + ", " + value + ", "
Svetoslav Ganove080da92016-12-21 17:10:35 -08001472 + ", " + tag + ", " + makeDefault + ", " + requestingUserId
1473 + ", " + forceNotify + ")");
Svetoslav683914b2015-01-15 14:22:26 -08001474 }
Svetoslav Ganove080da92016-12-21 17:10:35 -08001475 return mutateSecureSetting(name, value, tag, makeDefault, requestingUserId,
1476 MUTATION_OPERATION_INSERT, forceNotify, 0);
Svetoslav683914b2015-01-15 14:22:26 -08001477 }
1478
Svet Ganov53a441c2016-04-19 19:38:00 -07001479 private boolean deleteSecureSetting(String name, int requestingUserId, boolean forceNotify) {
Svetoslav683914b2015-01-15 14:22:26 -08001480 if (DEBUG) {
Svetoslav Ganove080da92016-12-21 17:10:35 -08001481 Slog.v(LOG_TAG, "deleteSecureSetting(" + name + ", " + requestingUserId
1482 + ", " + forceNotify + ")");
Svetoslav683914b2015-01-15 14:22:26 -08001483 }
1484
Svetoslav Ganove080da92016-12-21 17:10:35 -08001485 return mutateSecureSetting(name, null, null, false, requestingUserId,
1486 MUTATION_OPERATION_DELETE, forceNotify, 0);
Svetoslav683914b2015-01-15 14:22:26 -08001487 }
1488
Svetoslav Ganove080da92016-12-21 17:10:35 -08001489 private boolean updateSecureSetting(String name, String value, String tag,
1490 boolean makeDefault, int requestingUserId, boolean forceNotify) {
Svetoslav683914b2015-01-15 14:22:26 -08001491 if (DEBUG) {
Svetoslav7ec28e82015-05-20 17:01:10 -07001492 Slog.v(LOG_TAG, "updateSecureSetting(" + name + ", " + value + ", "
Svetoslav Ganove080da92016-12-21 17:10:35 -08001493 + ", " + tag + ", " + makeDefault + ", " + requestingUserId
1494 + ", " + forceNotify +")");
Svetoslav683914b2015-01-15 14:22:26 -08001495 }
1496
Svetoslav Ganove080da92016-12-21 17:10:35 -08001497 return mutateSecureSetting(name, value, tag, makeDefault, requestingUserId,
1498 MUTATION_OPERATION_UPDATE, forceNotify, 0);
Svetoslav683914b2015-01-15 14:22:26 -08001499 }
1500
Svetoslav Ganove080da92016-12-21 17:10:35 -08001501 private void resetSecureSetting(int requestingUserId, int mode, String tag) {
1502 if (DEBUG) {
1503 Slog.v(LOG_TAG, "resetSecureSetting(" + requestingUserId + ", "
1504 + mode + ", " + tag + ")");
1505 }
1506
1507 mutateSecureSetting(null, null, tag, false, requestingUserId,
1508 MUTATION_OPERATION_RESET, false, mode);
1509 }
1510
1511 private boolean mutateSecureSetting(String name, String value, String tag,
1512 boolean makeDefault, int requestingUserId, int operation, boolean forceNotify,
1513 int mode) {
Svetoslav683914b2015-01-15 14:22:26 -08001514 // Make sure the caller can change the settings.
1515 enforceWritePermission(Manifest.permission.WRITE_SECURE_SETTINGS);
1516
Svetoslav683914b2015-01-15 14:22:26 -08001517 // Resolve the userId on whose behalf the call is made.
1518 final int callingUserId = resolveCallingUserIdEnforcingPermissionsLocked(requestingUserId);
1519
Makoto Onuki28da2e32015-11-20 11:30:44 -08001520 // If this is a setting that is currently restricted for this user, do not allow
1521 // unrestricting changes.
Christopher Tate65fb2e42019-10-11 17:00:23 -07001522 if (isSettingRestrictedForUser(name, callingUserId, value, Binder.getCallingUid())) {
Svetoslav683914b2015-01-15 14:22:26 -08001523 return false;
1524 }
1525
1526 // Determine the owning user as some profile settings are cloned from the parent.
1527 final int owningUserId = resolveOwningUserIdForSecureSettingLocked(callingUserId, name);
1528
1529 // Only the owning user can change the setting.
1530 if (owningUserId != callingUserId) {
1531 return false;
1532 }
1533
Svetoslav683914b2015-01-15 14:22:26 -08001534 // Mutate the value.
Svetoslav7ec28e82015-05-20 17:01:10 -07001535 synchronized (mLock) {
Soonil Nagarkar10b19602019-09-10 15:46:32 -07001536 // Special cases for location providers (sigh).
1537 if (Settings.Secure.LOCATION_PROVIDERS_ALLOWED.equals(name)) {
1538 return updateLocationProvidersAllowedLocked(value, tag, owningUserId, makeDefault,
1539 forceNotify);
1540 }
1541
Svetoslav7ec28e82015-05-20 17:01:10 -07001542 switch (operation) {
1543 case MUTATION_OPERATION_INSERT: {
Svet Ganov53a441c2016-04-19 19:38:00 -07001544 return mSettingsRegistry.insertSettingLocked(SETTINGS_TYPE_SECURE,
Svetoslav Ganove080da92016-12-21 17:10:35 -08001545 owningUserId, name, value, tag, makeDefault,
Svetoslav Ganov5fb405b2017-01-26 22:43:09 -08001546 getCallingPackage(), forceNotify, CRITICAL_SECURE_SETTINGS);
Svetoslav7ec28e82015-05-20 17:01:10 -07001547 }
Svetoslav683914b2015-01-15 14:22:26 -08001548
Svetoslav7ec28e82015-05-20 17:01:10 -07001549 case MUTATION_OPERATION_DELETE: {
Svet Ganov53a441c2016-04-19 19:38:00 -07001550 return mSettingsRegistry.deleteSettingLocked(SETTINGS_TYPE_SECURE,
Svetoslav Ganov5fb405b2017-01-26 22:43:09 -08001551 owningUserId, name, forceNotify, CRITICAL_SECURE_SETTINGS);
Svetoslav7ec28e82015-05-20 17:01:10 -07001552 }
Svetoslav683914b2015-01-15 14:22:26 -08001553
Svetoslav7ec28e82015-05-20 17:01:10 -07001554 case MUTATION_OPERATION_UPDATE: {
Svet Ganov53a441c2016-04-19 19:38:00 -07001555 return mSettingsRegistry.updateSettingLocked(SETTINGS_TYPE_SECURE,
Svetoslav Ganove080da92016-12-21 17:10:35 -08001556 owningUserId, name, value, tag, makeDefault,
Svetoslav Ganov5fb405b2017-01-26 22:43:09 -08001557 getCallingPackage(), forceNotify, CRITICAL_SECURE_SETTINGS);
Svetoslav7ec28e82015-05-20 17:01:10 -07001558 }
Svetoslav Ganove080da92016-12-21 17:10:35 -08001559
1560 case MUTATION_OPERATION_RESET: {
1561 mSettingsRegistry.resetSettingsLocked(SETTINGS_TYPE_SECURE,
1562 UserHandle.USER_SYSTEM, getCallingPackage(), mode, tag);
1563 } return true;
Svetoslav683914b2015-01-15 14:22:26 -08001564 }
1565 }
1566
1567 return false;
1568 }
1569
Svetoslav7ec28e82015-05-20 17:01:10 -07001570 private Cursor getAllSystemSettings(int userId, String[] projection) {
Svetoslav683914b2015-01-15 14:22:26 -08001571 if (DEBUG) {
Svetoslav7ec28e82015-05-20 17:01:10 -07001572 Slog.v(LOG_TAG, "getAllSecureSystem(" + userId + ")");
Svetoslav683914b2015-01-15 14:22:26 -08001573 }
1574
1575 // Resolve the userId on whose behalf the call is made.
1576 final int callingUserId = resolveCallingUserIdEnforcingPermissionsLocked(userId);
1577
Svetoslav7ec28e82015-05-20 17:01:10 -07001578 synchronized (mLock) {
Chad Brubaker97bccee2017-01-05 15:51:41 -08001579 List<String> names = getSettingsNamesLocked(SETTINGS_TYPE_SYSTEM, callingUserId);
Svetoslav683914b2015-01-15 14:22:26 -08001580
Svetoslav7ec28e82015-05-20 17:01:10 -07001581 final int nameCount = names.size();
Svetoslav683914b2015-01-15 14:22:26 -08001582
Svetoslav7ec28e82015-05-20 17:01:10 -07001583 String[] normalizedProjection = normalizeProjection(projection);
1584 MatrixCursor result = new MatrixCursor(normalizedProjection, nameCount);
Svetoslav683914b2015-01-15 14:22:26 -08001585
Svetoslav7ec28e82015-05-20 17:01:10 -07001586 for (int i = 0; i < nameCount; i++) {
1587 String name = names.get(i);
Svetoslav683914b2015-01-15 14:22:26 -08001588
Svetoslav7ec28e82015-05-20 17:01:10 -07001589 // Determine the owning user as some profile settings are cloned from the parent.
1590 final int owningUserId = resolveOwningUserIdForSystemSettingLocked(callingUserId,
1591 name);
Svetoslav683914b2015-01-15 14:22:26 -08001592
Svetoslav7ec28e82015-05-20 17:01:10 -07001593 Setting setting = mSettingsRegistry.getSettingLocked(
Svet Ganov53a441c2016-04-19 19:38:00 -07001594 SETTINGS_TYPE_SYSTEM, owningUserId, name);
Svetoslav7ec28e82015-05-20 17:01:10 -07001595 appendSettingToCursor(result, setting);
1596 }
1597
1598 return result;
Svetoslav683914b2015-01-15 14:22:26 -08001599 }
Svetoslav683914b2015-01-15 14:22:26 -08001600 }
1601
Svetoslav7ec28e82015-05-20 17:01:10 -07001602 private Setting getSystemSetting(String name, int requestingUserId) {
Svetoslav683914b2015-01-15 14:22:26 -08001603 if (DEBUG) {
1604 Slog.v(LOG_TAG, "getSystemSetting(" + name + ", " + requestingUserId + ")");
1605 }
1606
1607 // Resolve the userId on whose behalf the call is made.
1608 final int callingUserId = resolveCallingUserIdEnforcingPermissionsLocked(requestingUserId);
1609
Chad Brubakera6830e72017-04-28 17:34:36 -07001610 // Ensure the caller can access the setting.
1611 enforceSettingReadable(name, SETTINGS_TYPE_SYSTEM, UserHandle.getCallingUserId());
Chad Brubaker97bccee2017-01-05 15:51:41 -08001612
Svetoslav683914b2015-01-15 14:22:26 -08001613 // Determine the owning user as some profile settings are cloned from the parent.
1614 final int owningUserId = resolveOwningUserIdForSystemSettingLocked(callingUserId, name);
1615
1616 // Get the value.
Svetoslav7ec28e82015-05-20 17:01:10 -07001617 synchronized (mLock) {
Chad Brubakera6830e72017-04-28 17:34:36 -07001618 return mSettingsRegistry.getSettingLocked(SETTINGS_TYPE_SYSTEM, owningUserId, name);
Svetoslav7ec28e82015-05-20 17:01:10 -07001619 }
Svetoslav683914b2015-01-15 14:22:26 -08001620 }
1621
Svetoslav7ec28e82015-05-20 17:01:10 -07001622 private boolean insertSystemSetting(String name, String value, int requestingUserId) {
Svetoslav683914b2015-01-15 14:22:26 -08001623 if (DEBUG) {
Svetoslav7ec28e82015-05-20 17:01:10 -07001624 Slog.v(LOG_TAG, "insertSystemSetting(" + name + ", " + value + ", "
Svetoslav683914b2015-01-15 14:22:26 -08001625 + requestingUserId + ")");
1626 }
1627
Svetoslav7ec28e82015-05-20 17:01:10 -07001628 return mutateSystemSetting(name, value, requestingUserId, MUTATION_OPERATION_INSERT);
Svetoslav683914b2015-01-15 14:22:26 -08001629 }
1630
Svetoslav7ec28e82015-05-20 17:01:10 -07001631 private boolean deleteSystemSetting(String name, int requestingUserId) {
Svetoslav683914b2015-01-15 14:22:26 -08001632 if (DEBUG) {
Svetoslav7ec28e82015-05-20 17:01:10 -07001633 Slog.v(LOG_TAG, "deleteSystemSetting(" + name + ", " + requestingUserId + ")");
Svetoslav683914b2015-01-15 14:22:26 -08001634 }
1635
Svetoslav7ec28e82015-05-20 17:01:10 -07001636 return mutateSystemSetting(name, null, requestingUserId, MUTATION_OPERATION_DELETE);
Svetoslav683914b2015-01-15 14:22:26 -08001637 }
1638
Svetoslav7ec28e82015-05-20 17:01:10 -07001639 private boolean updateSystemSetting(String name, String value, int requestingUserId) {
Svetoslav683914b2015-01-15 14:22:26 -08001640 if (DEBUG) {
Svetoslav7ec28e82015-05-20 17:01:10 -07001641 Slog.v(LOG_TAG, "updateSystemSetting(" + name + ", " + value + ", "
Svetoslav683914b2015-01-15 14:22:26 -08001642 + requestingUserId + ")");
1643 }
1644
Svetoslav7ec28e82015-05-20 17:01:10 -07001645 return mutateSystemSetting(name, value, requestingUserId, MUTATION_OPERATION_UPDATE);
Svetoslav683914b2015-01-15 14:22:26 -08001646 }
1647
Svetoslav7ec28e82015-05-20 17:01:10 -07001648 private boolean mutateSystemSetting(String name, String value, int runAsUserId,
Svetoslav683914b2015-01-15 14:22:26 -08001649 int operation) {
Billy Lau6ad2d662015-07-18 00:26:58 +01001650 if (!hasWriteSecureSettingsPermission()) {
1651 // If the caller doesn't hold WRITE_SECURE_SETTINGS, we verify whether this
1652 // operation is allowed for the calling package through appops.
1653 if (!Settings.checkAndNoteWriteSettingsOperation(getContext(),
1654 Binder.getCallingUid(), getCallingPackage(), true)) {
1655 return false;
1656 }
Svetoslav683914b2015-01-15 14:22:26 -08001657 }
1658
Svetoslav683914b2015-01-15 14:22:26 -08001659 // Resolve the userId on whose behalf the call is made.
1660 final int callingUserId = resolveCallingUserIdEnforcingPermissionsLocked(runAsUserId);
1661
Christopher Tate65fb2e42019-10-11 17:00:23 -07001662 if (isSettingRestrictedForUser(name, callingUserId, value, Binder.getCallingUid())) {
yuemingw1d13eae2018-01-30 17:27:54 +00001663 return false;
1664 }
1665
Svetoslavd8d25e02015-11-20 13:09:26 -08001666 // Enforce what the calling package can mutate the system settings.
1667 enforceRestrictedSystemSettingsMutationForCallingPackage(operation, name, callingUserId);
1668
Svetoslav683914b2015-01-15 14:22:26 -08001669 // Determine the owning user as some profile settings are cloned from the parent.
1670 final int owningUserId = resolveOwningUserIdForSystemSettingLocked(callingUserId, name);
1671
1672 // Only the owning user id can change the setting.
1673 if (owningUserId != callingUserId) {
1674 return false;
1675 }
1676
Jeff Sharkey413573a2016-02-22 17:52:45 -07001677 // Invalidate any relevant cache files
1678 String cacheName = null;
1679 if (Settings.System.RINGTONE.equals(name)) {
1680 cacheName = Settings.System.RINGTONE_CACHE;
1681 } else if (Settings.System.NOTIFICATION_SOUND.equals(name)) {
1682 cacheName = Settings.System.NOTIFICATION_SOUND_CACHE;
1683 } else if (Settings.System.ALARM_ALERT.equals(name)) {
1684 cacheName = Settings.System.ALARM_ALERT_CACHE;
1685 }
1686 if (cacheName != null) {
1687 final File cacheFile = new File(
Andre Lago3fa139c2016-08-04 13:53:44 +01001688 getRingtoneCacheDir(owningUserId), cacheName);
Jeff Sharkey413573a2016-02-22 17:52:45 -07001689 cacheFile.delete();
1690 }
1691
Svetoslav683914b2015-01-15 14:22:26 -08001692 // Mutate the value.
Svetoslav7ec28e82015-05-20 17:01:10 -07001693 synchronized (mLock) {
1694 switch (operation) {
1695 case MUTATION_OPERATION_INSERT: {
1696 validateSystemSettingValue(name, value);
Svet Ganov53a441c2016-04-19 19:38:00 -07001697 return mSettingsRegistry.insertSettingLocked(SETTINGS_TYPE_SYSTEM,
Svetoslav Ganov5fb405b2017-01-26 22:43:09 -08001698 owningUserId, name, value, null, false, getCallingPackage(),
1699 false, null);
Svetoslav7ec28e82015-05-20 17:01:10 -07001700 }
1701
1702 case MUTATION_OPERATION_DELETE: {
Svet Ganov53a441c2016-04-19 19:38:00 -07001703 return mSettingsRegistry.deleteSettingLocked(SETTINGS_TYPE_SYSTEM,
Svetoslav Ganov5fb405b2017-01-26 22:43:09 -08001704 owningUserId, name, false, null);
Svetoslav7ec28e82015-05-20 17:01:10 -07001705 }
1706
1707 case MUTATION_OPERATION_UPDATE: {
1708 validateSystemSettingValue(name, value);
Svet Ganov53a441c2016-04-19 19:38:00 -07001709 return mSettingsRegistry.updateSettingLocked(SETTINGS_TYPE_SYSTEM,
Svetoslav Ganov5fb405b2017-01-26 22:43:09 -08001710 owningUserId, name, value, null, false, getCallingPackage(),
1711 false, null);
Svetoslav7ec28e82015-05-20 17:01:10 -07001712 }
Svetoslav683914b2015-01-15 14:22:26 -08001713 }
1714
Svetoslav7ec28e82015-05-20 17:01:10 -07001715 return false;
Svetoslav683914b2015-01-15 14:22:26 -08001716 }
Svetoslav683914b2015-01-15 14:22:26 -08001717 }
1718
Billy Lau6ad2d662015-07-18 00:26:58 +01001719 private boolean hasWriteSecureSettingsPermission() {
Svetoslavf41334b2015-06-23 12:06:03 -07001720 // Write secure settings is a more protected permission. If caller has it we are good.
1721 if (getContext().checkCallingOrSelfPermission(Manifest.permission.WRITE_SECURE_SETTINGS)
1722 == PackageManager.PERMISSION_GRANTED) {
1723 return true;
1724 }
1725
Svetoslavf41334b2015-06-23 12:06:03 -07001726 return false;
1727 }
1728
Svetoslav683914b2015-01-15 14:22:26 -08001729 private void validateSystemSettingValue(String name, String value) {
Al Sutton91f89d02019-08-16 12:56:57 +01001730 Validator validator = SystemSettingsValidators.VALIDATORS.get(name);
Svetoslav683914b2015-01-15 14:22:26 -08001731 if (validator != null && !validator.validate(value)) {
1732 throw new IllegalArgumentException("Invalid value: " + value
1733 + " for setting: " + name);
1734 }
1735 }
1736
Alex Klyubin1991f572017-03-03 14:08:36 -08001737 /**
1738 * Returns {@code true} if the specified secure setting should be accessible to the caller.
1739 */
1740 private boolean isSecureSettingAccessible(String name, int callingUserId,
1741 int owningUserId) {
1742 // Special case for location (sigh).
1743 // This check is not inside the name-based checks below because this method performs checks
1744 // only if the calling user ID is not the same as the owning user ID.
1745 if (isLocationProvidersAllowedRestricted(name, callingUserId, owningUserId)) {
1746 return false;
1747 }
1748
1749 switch (name) {
1750 case "bluetooth_address":
1751 // BluetoothManagerService for some reason stores the Android's Bluetooth MAC
1752 // address in this secure setting. Secure settings can normally be read by any app,
1753 // which thus enables them to bypass the recently introduced restrictions on access
1754 // to device identifiers.
1755 // To mitigate this we make this setting available only to callers privileged to see
1756 // this device's MAC addresses, same as through public API
1757 // BluetoothAdapter.getAddress() (see BluetoothManagerService for details).
1758 return getContext().checkCallingOrSelfPermission(
1759 Manifest.permission.LOCAL_MAC_ADDRESS) == PackageManager.PERMISSION_GRANTED;
1760 default:
1761 return true;
1762 }
1763 }
1764
Svetoslav683914b2015-01-15 14:22:26 -08001765 private boolean isLocationProvidersAllowedRestricted(String name, int callingUserId,
1766 int owningUserId) {
1767 // Optimization - location providers are restricted only for managed profiles.
1768 if (callingUserId == owningUserId) {
1769 return false;
1770 }
1771 if (Settings.Secure.LOCATION_PROVIDERS_ALLOWED.equals(name)
1772 && mUserManager.hasUserRestriction(UserManager.DISALLOW_SHARE_LOCATION,
1773 new UserHandle(callingUserId))) {
1774 return true;
1775 }
1776 return false;
1777 }
1778
Svetoslav683914b2015-01-15 14:22:26 -08001779 private int resolveOwningUserIdForSecureSettingLocked(int userId, String setting) {
1780 return resolveOwningUserIdLocked(userId, sSecureCloneToManagedSettings, setting);
1781 }
1782
1783 private int resolveOwningUserIdForSystemSettingLocked(int userId, String setting) {
Andre Lago3fa139c2016-08-04 13:53:44 +01001784 final int parentId;
1785 // Resolves dependency if setting has a dependency and the calling user has a parent
1786 if (sSystemCloneFromParentOnDependency.containsKey(setting)
1787 && (parentId = getGroupParentLocked(userId)) != userId) {
1788 // The setting has a dependency and the profile has a parent
1789 String dependency = sSystemCloneFromParentOnDependency.get(setting);
Chad Brubaker97bccee2017-01-05 15:51:41 -08001790 // Lookup the dependency setting as ourselves, some callers may not have access to it.
1791 final long token = Binder.clearCallingIdentity();
1792 try {
1793 Setting settingObj = getSecureSetting(dependency, userId);
1794 if (settingObj != null && settingObj.getValue().equals("1")) {
1795 return parentId;
1796 }
1797 } finally {
1798 Binder.restoreCallingIdentity(token);
Andre Lago3fa139c2016-08-04 13:53:44 +01001799 }
1800 }
Svetoslav683914b2015-01-15 14:22:26 -08001801 return resolveOwningUserIdLocked(userId, sSystemCloneToManagedSettings, setting);
1802 }
1803
1804 private int resolveOwningUserIdLocked(int userId, Set<String> keys, String name) {
1805 final int parentId = getGroupParentLocked(userId);
1806 if (parentId != userId && keys.contains(name)) {
1807 return parentId;
1808 }
1809 return userId;
1810 }
1811
Svetoslavf41334b2015-06-23 12:06:03 -07001812 private void enforceRestrictedSystemSettingsMutationForCallingPackage(int operation,
Xiaohui Chen43765b72015-08-31 10:57:33 -07001813 String name, int userId) {
Svetoslav683914b2015-01-15 14:22:26 -08001814 // System/root/shell can mutate whatever secure settings they want.
1815 final int callingUid = Binder.getCallingUid();
Svetoslav Ganove080da92016-12-21 17:10:35 -08001816 final int appId = UserHandle.getAppId(callingUid);
1817 if (appId == android.os.Process.SYSTEM_UID
1818 || appId == Process.SHELL_UID
1819 || appId == Process.ROOT_UID) {
Svetoslav683914b2015-01-15 14:22:26 -08001820 return;
1821 }
1822
1823 switch (operation) {
1824 case MUTATION_OPERATION_INSERT:
1825 // Insert updates.
1826 case MUTATION_OPERATION_UPDATE: {
1827 if (Settings.System.PUBLIC_SETTINGS.contains(name)) {
1828 return;
1829 }
1830
1831 // The calling package is already verified.
Xiaohui Chen43765b72015-08-31 10:57:33 -07001832 PackageInfo packageInfo = getCallingPackageInfoOrThrow(userId);
Svetoslav683914b2015-01-15 14:22:26 -08001833
1834 // Privileged apps can do whatever they want.
1835 if ((packageInfo.applicationInfo.privateFlags
1836 & ApplicationInfo.PRIVATE_FLAG_PRIVILEGED) != 0) {
1837 return;
1838 }
1839
1840 warnOrThrowForUndesiredSecureSettingsMutationForTargetSdk(
1841 packageInfo.applicationInfo.targetSdkVersion, name);
1842 } break;
1843
1844 case MUTATION_OPERATION_DELETE: {
1845 if (Settings.System.PUBLIC_SETTINGS.contains(name)
1846 || Settings.System.PRIVATE_SETTINGS.contains(name)) {
1847 throw new IllegalArgumentException("You cannot delete system defined"
1848 + " secure settings.");
1849 }
1850
1851 // The calling package is already verified.
Xiaohui Chen43765b72015-08-31 10:57:33 -07001852 PackageInfo packageInfo = getCallingPackageInfoOrThrow(userId);
Svetoslav683914b2015-01-15 14:22:26 -08001853
1854 // Privileged apps can do whatever they want.
1855 if ((packageInfo.applicationInfo.privateFlags &
1856 ApplicationInfo.PRIVATE_FLAG_PRIVILEGED) != 0) {
1857 return;
1858 }
1859
1860 warnOrThrowForUndesiredSecureSettingsMutationForTargetSdk(
1861 packageInfo.applicationInfo.targetSdkVersion, name);
1862 } break;
1863 }
1864 }
1865
Todd Kennedybe0b8892017-02-15 14:13:52 -08001866 private Set<String> getInstantAppAccessibleSettings(int settingsType) {
Chad Brubaker97bccee2017-01-05 15:51:41 -08001867 switch (settingsType) {
1868 case SETTINGS_TYPE_GLOBAL:
Todd Kennedybe0b8892017-02-15 14:13:52 -08001869 return Settings.Global.INSTANT_APP_SETTINGS;
Chad Brubaker97bccee2017-01-05 15:51:41 -08001870 case SETTINGS_TYPE_SECURE:
Todd Kennedybe0b8892017-02-15 14:13:52 -08001871 return Settings.Secure.INSTANT_APP_SETTINGS;
Chad Brubaker97bccee2017-01-05 15:51:41 -08001872 case SETTINGS_TYPE_SYSTEM:
Todd Kennedybe0b8892017-02-15 14:13:52 -08001873 return Settings.System.INSTANT_APP_SETTINGS;
Chad Brubaker97bccee2017-01-05 15:51:41 -08001874 default:
1875 throw new IllegalArgumentException("Invalid settings type: " + settingsType);
1876 }
1877 }
1878
Chad Brubaker20e0dc32017-04-28 18:24:55 -07001879 private Set<String> getOverlayInstantAppAccessibleSettings(int settingsType) {
1880 switch (settingsType) {
1881 case SETTINGS_TYPE_GLOBAL:
1882 return OVERLAY_ALLOWED_GLOBAL_INSTANT_APP_SETTINGS;
1883 case SETTINGS_TYPE_SYSTEM:
1884 return OVERLAY_ALLOWED_SYSTEM_INSTANT_APP_SETTINGS;
1885 case SETTINGS_TYPE_SECURE:
1886 return OVERLAY_ALLOWED_SECURE_INSTANT_APP_SETTINGS;
1887 default:
1888 throw new IllegalArgumentException("Invalid settings type: " + settingsType);
1889 }
1890 }
1891
Andreas Gampeb58893072018-09-05 16:52:31 -07001892 @GuardedBy("mLock")
Chad Brubaker97bccee2017-01-05 15:51:41 -08001893 private List<String> getSettingsNamesLocked(int settingsType, int userId) {
Chad Brubakerb6108d62017-12-23 20:06:44 -08001894 // Don't enforce the instant app whitelist for now -- its too prone to unintended breakage
1895 // in the current form.
1896 return mSettingsRegistry.getSettingsNamesLocked(settingsType, userId);
Chad Brubaker97bccee2017-01-05 15:51:41 -08001897 }
1898
Chad Brubakera6830e72017-04-28 17:34:36 -07001899 private void enforceSettingReadable(String settingName, int settingsType, int userId) {
Chad Brubaker97bccee2017-01-05 15:51:41 -08001900 if (UserHandle.getAppId(Binder.getCallingUid()) < Process.FIRST_APPLICATION_UID) {
1901 return;
1902 }
Chad Brubakerf0fa8532017-02-23 10:45:20 -08001903 ApplicationInfo ai = getCallingApplicationInfoOrThrow();
Svetoslav Ganov096d3042017-01-30 16:34:13 -08001904 if (!ai.isInstantApp()) {
Chad Brubaker97bccee2017-01-05 15:51:41 -08001905 return;
1906 }
Chad Brubaker20e0dc32017-04-28 18:24:55 -07001907 if (!getInstantAppAccessibleSettings(settingsType).contains(settingName)
1908 && !getOverlayInstantAppAccessibleSettings(settingsType).contains(settingName)) {
Chad Brubakerb6108d62017-12-23 20:06:44 -08001909 // Don't enforce the instant app whitelist for now -- its too prone to unintended
1910 // breakage in the current form.
1911 Slog.w(LOG_TAG, "Instant App " + ai.packageName
1912 + " trying to access unexposed setting, this will be an error in the future.");
Chad Brubaker97bccee2017-01-05 15:51:41 -08001913 }
1914 }
1915
Chad Brubakerf0fa8532017-02-23 10:45:20 -08001916 private ApplicationInfo getCallingApplicationInfoOrThrow() {
1917 // We always use the callingUid for this lookup. This means that if hypothetically an
1918 // app was installed in user A with cross user and in user B as an Instant App
1919 // the app in A would be able to see all the settings in user B. However since cross
1920 // user is a system permission and the app must be uninstalled in B and then installed as
1921 // an Instant App that situation is not realistic or supported.
Chad Brubaker97bccee2017-01-05 15:51:41 -08001922 ApplicationInfo ai = null;
1923 try {
Chad Brubakerf0fa8532017-02-23 10:45:20 -08001924 ai = mPackageManager.getApplicationInfo(getCallingPackage(), 0
1925 , UserHandle.getCallingUserId());
Chad Brubaker97bccee2017-01-05 15:51:41 -08001926 } catch (RemoteException ignored) {
1927 }
1928 if (ai == null) {
1929 throw new IllegalStateException("Failed to lookup info for package "
1930 + getCallingPackage());
1931 }
1932 return ai;
1933 }
1934
Xiaohui Chen43765b72015-08-31 10:57:33 -07001935 private PackageInfo getCallingPackageInfoOrThrow(int userId) {
Svetoslav683914b2015-01-15 14:22:26 -08001936 try {
Svetoslav Ganov67a8d352016-03-02 13:26:40 -08001937 PackageInfo packageInfo = mPackageManager.getPackageInfo(
1938 getCallingPackage(), 0, userId);
1939 if (packageInfo != null) {
1940 return packageInfo;
1941 }
Xiaohui Chen43765b72015-08-31 10:57:33 -07001942 } catch (RemoteException e) {
Svetoslav Ganov67a8d352016-03-02 13:26:40 -08001943 /* ignore */
Svetoslav683914b2015-01-15 14:22:26 -08001944 }
Svetoslav Ganov67a8d352016-03-02 13:26:40 -08001945 throw new IllegalStateException("Calling package doesn't exist");
Svetoslav683914b2015-01-15 14:22:26 -08001946 }
1947
1948 private int getGroupParentLocked(int userId) {
1949 // Most frequent use case.
Xiaohui Chen43765b72015-08-31 10:57:33 -07001950 if (userId == UserHandle.USER_SYSTEM) {
Svetoslav683914b2015-01-15 14:22:26 -08001951 return userId;
1952 }
1953 // We are in the same process with the user manager and the returned
1954 // user info is a cached instance, so just look up instead of cache.
1955 final long identity = Binder.clearCallingIdentity();
1956 try {
Svetoslav7ec28e82015-05-20 17:01:10 -07001957 // Just a lookup and not reentrant, so holding a lock is fine.
Svetoslav683914b2015-01-15 14:22:26 -08001958 UserInfo userInfo = mUserManager.getProfileParent(userId);
1959 return (userInfo != null) ? userInfo.id : userId;
1960 } finally {
1961 Binder.restoreCallingIdentity(identity);
1962 }
1963 }
1964
Svetoslav683914b2015-01-15 14:22:26 -08001965 private void enforceWritePermission(String permission) {
1966 if (getContext().checkCallingOrSelfPermission(permission)
1967 != PackageManager.PERMISSION_GRANTED) {
1968 throw new SecurityException("Permission denial: writing to settings requires:"
1969 + permission);
1970 }
1971 }
1972
1973 /*
1974 * Used to parse changes to the value of Settings.Secure.LOCATION_PROVIDERS_ALLOWED.
1975 * This setting contains a list of the currently enabled location providers.
1976 * But helper functions in android.providers.Settings can enable or disable
1977 * a single provider by using a "+" or "-" prefix before the provider name.
1978 *
yuemingw1d13eae2018-01-30 17:27:54 +00001979 * <p>See also {@link com.android.server.pm.UserRestrictionsUtils#isSettingRestrictedForUser()}.
1980 * If DISALLOW_SHARE_LOCATION is set, the said method will only allow values with
1981 * the "-" prefix.
Makoto Onuki28da2e32015-11-20 11:30:44 -08001982 *
Svetoslav683914b2015-01-15 14:22:26 -08001983 * @returns whether the enabled location providers changed.
Brad Fitzpatrick1bd62bd2010-03-08 18:30:52 -08001984 */
Andreas Gampeb58893072018-09-05 16:52:31 -07001985 @GuardedBy("mLock")
Svetoslav Ganove080da92016-12-21 17:10:35 -08001986 private boolean updateLocationProvidersAllowedLocked(String value, String tag,
1987 int owningUserId, boolean makeDefault, boolean forceNotify) {
Svetoslav683914b2015-01-15 14:22:26 -08001988 if (TextUtils.isEmpty(value)) {
1989 return false;
Brad Fitzpatrickf366a9b2010-08-24 16:14:07 -07001990 }
Maggie83e03f52018-03-16 12:22:20 -07001991 Setting oldSetting = getSecureSetting(
1992 Settings.Secure.LOCATION_PROVIDERS_ALLOWED, owningUserId);
1993 if (oldSetting == null) {
Svetoslav683914b2015-01-15 14:22:26 -08001994 return false;
1995 }
Maggie83e03f52018-03-16 12:22:20 -07001996 String oldProviders = oldSetting.getValue();
1997 List<String> oldProvidersList = TextUtils.isEmpty(oldProviders)
1998 ? new ArrayList<>() : new ArrayList<>(Arrays.asList(oldProviders.split(",")));
1999 Set<String> newProvidersSet = new ArraySet<>();
2000 newProvidersSet.addAll(oldProvidersList);
Svetoslav683914b2015-01-15 14:22:26 -08002001
Maggie83e03f52018-03-16 12:22:20 -07002002 String[] providerUpdates = value.split(",");
2003 boolean inputError = false;
2004 for (String provider : providerUpdates) {
2005 // do not update location_providers_allowed when input is invalid
2006 if (TextUtils.isEmpty(provider)) {
2007 inputError = true;
2008 break;
Svetoslav683914b2015-01-15 14:22:26 -08002009 }
Maggie83e03f52018-03-16 12:22:20 -07002010 final char prefix = provider.charAt(0);
2011 // do not update location_providers_allowed when input is invalid
2012 if (prefix != '+' && prefix != '-') {
2013 inputError = true;
2014 break;
Svetoslav683914b2015-01-15 14:22:26 -08002015 }
Maggie83e03f52018-03-16 12:22:20 -07002016 // skip prefix
2017 provider = provider.substring(1);
2018 if (prefix == '+') {
2019 newProvidersSet.add(provider);
2020 } else if (prefix == '-') {
2021 newProvidersSet.remove(provider);
Svetoslav683914b2015-01-15 14:22:26 -08002022 }
Maggie83e03f52018-03-16 12:22:20 -07002023 }
2024 String newProviders = TextUtils.join(",", newProvidersSet.toArray());
2025 if (inputError == true || newProviders.equals(oldProviders)) {
Svetoslav683914b2015-01-15 14:22:26 -08002026 // nothing changed, so no need to update the database
Svet Ganov53a441c2016-04-19 19:38:00 -07002027 if (forceNotify) {
Maggie83e03f52018-03-16 12:22:20 -07002028 mSettingsRegistry.notifyForSettingsChange(
2029 makeKey(SETTINGS_TYPE_SECURE, owningUserId),
Svet Ganov53a441c2016-04-19 19:38:00 -07002030 Settings.Secure.LOCATION_PROVIDERS_ALLOWED);
2031 }
Svetoslav683914b2015-01-15 14:22:26 -08002032 return false;
2033 }
Svet Ganov53a441c2016-04-19 19:38:00 -07002034 return mSettingsRegistry.insertSettingLocked(SETTINGS_TYPE_SECURE,
Maggie83e03f52018-03-16 12:22:20 -07002035 owningUserId, Settings.Secure.LOCATION_PROVIDERS_ALLOWED, newProviders, tag,
2036 makeDefault, getCallingPackage(), forceNotify, CRITICAL_SECURE_SETTINGS);
Svetoslav683914b2015-01-15 14:22:26 -08002037 }
2038
Svetoslav683914b2015-01-15 14:22:26 -08002039 private static void warnOrThrowForUndesiredSecureSettingsMutationForTargetSdk(
2040 int targetSdkVersion, String name) {
2041 // If the app targets Lollipop MR1 or older SDK we warn, otherwise crash.
2042 if (targetSdkVersion <= Build.VERSION_CODES.LOLLIPOP_MR1) {
2043 if (Settings.System.PRIVATE_SETTINGS.contains(name)) {
2044 Slog.w(LOG_TAG, "You shouldn't not change private system settings."
2045 + " This will soon become an error.");
2046 } else {
2047 Slog.w(LOG_TAG, "You shouldn't keep your settings in the secure settings."
2048 + " This will soon become an error.");
2049 }
2050 } else {
2051 if (Settings.System.PRIVATE_SETTINGS.contains(name)) {
2052 throw new IllegalArgumentException("You cannot change private secure settings.");
2053 } else {
2054 throw new IllegalArgumentException("You cannot keep your settings in"
2055 + " the secure settings.");
2056 }
2057 }
2058 }
2059
2060 private static int resolveCallingUserIdEnforcingPermissionsLocked(int requestingUserId) {
2061 if (requestingUserId == UserHandle.getCallingUserId()) {
2062 return requestingUserId;
2063 }
2064 return ActivityManager.handleIncomingUser(Binder.getCallingPid(),
2065 Binder.getCallingUid(), requestingUserId, false, true,
2066 "get/set setting for user", null);
2067 }
2068
Matt Pape793b15c2019-10-07 13:17:20 -07002069 private Bundle packageValueForCallResult(Setting setting, boolean trackingGeneration) {
Svet Ganov53a441c2016-04-19 19:38:00 -07002070 if (!trackingGeneration) {
Dianne Hackborn32f40ee2016-10-20 15:54:14 -07002071 if (setting == null || setting.isNull()) {
Svet Ganov53a441c2016-04-19 19:38:00 -07002072 return NULL_SETTING_BUNDLE;
2073 }
2074 return Bundle.forPair(Settings.NameValueTable.VALUE, setting.getValue());
Svetoslav683914b2015-01-15 14:22:26 -08002075 }
Svet Ganov53a441c2016-04-19 19:38:00 -07002076 Bundle result = new Bundle();
2077 result.putString(Settings.NameValueTable.VALUE,
Svetoslav Ganove080da92016-12-21 17:10:35 -08002078 !setting.isNull() ? setting.getValue() : null);
Svet Ganov96c99462017-05-05 14:27:13 -07002079
Svetoslav Ganove080da92016-12-21 17:10:35 -08002080 mSettingsRegistry.mGenerationRegistry.addGenerationData(result, setting.getKey());
Svet Ganov53a441c2016-04-19 19:38:00 -07002081 return result;
Svetoslav683914b2015-01-15 14:22:26 -08002082 }
2083
Matt Pape793b15c2019-10-07 13:17:20 -07002084 private Bundle packageValuesForCallResult(HashMap<String, String> keyValues,
2085 boolean trackingGeneration) {
2086 Bundle result = new Bundle();
2087 result.putSerializable(Settings.NameValueTable.VALUE, keyValues);
2088 if (trackingGeneration) {
2089 synchronized (mLock) {
2090 mSettingsRegistry.mGenerationRegistry.addGenerationData(result,
2091 mSettingsRegistry.getSettingsLocked(
2092 SETTINGS_TYPE_CONFIG, UserHandle.USER_SYSTEM).mKey);
2093 }
2094 }
2095
2096 return result;
2097 }
2098
Svetoslav683914b2015-01-15 14:22:26 -08002099 private static int getRequestingUserId(Bundle args) {
2100 final int callingUserId = UserHandle.getCallingUserId();
2101 return (args != null) ? args.getInt(Settings.CALL_METHOD_USER_KEY, callingUserId)
2102 : callingUserId;
2103 }
2104
Svet Ganov53a441c2016-04-19 19:38:00 -07002105 private boolean isTrackingGeneration(Bundle args) {
2106 return args != null && args.containsKey(Settings.CALL_METHOD_TRACK_GENERATION_KEY);
2107 }
2108
Svetoslav683914b2015-01-15 14:22:26 -08002109 private static String getSettingValue(Bundle args) {
2110 return (args != null) ? args.getString(Settings.NameValueTable.VALUE) : null;
2111 }
2112
Svetoslav Ganove080da92016-12-21 17:10:35 -08002113 private static String getSettingTag(Bundle args) {
2114 return (args != null) ? args.getString(Settings.CALL_METHOD_TAG_KEY) : null;
2115 }
2116
Matt Pape6bfc62e2018-11-28 13:16:03 -08002117 private static String getSettingPrefix(Bundle args) {
2118 String prefix = (args != null) ? args.getString(Settings.CALL_METHOD_PREFIX_KEY) : null;
2119 // Append '/' to ensure we only match properties with this exact prefix.
2120 // i.e. "foo" should match "foo/property" but not "foobar/property"
2121 return prefix != null ? prefix + "/" : null;
2122 }
2123
Svetoslav Ganove080da92016-12-21 17:10:35 -08002124 private static boolean getSettingMakeDefault(Bundle args) {
2125 return (args != null) && args.getBoolean(Settings.CALL_METHOD_MAKE_DEFAULT_KEY);
2126 }
2127
2128 private static int getResetModeEnforcingPermission(Bundle args) {
2129 final int mode = (args != null) ? args.getInt(Settings.CALL_METHOD_RESET_MODE_KEY) : 0;
2130 switch (mode) {
2131 case Settings.RESET_MODE_UNTRUSTED_DEFAULTS: {
2132 if (!isCallerSystemOrShellOrRootOnDebuggableBuild()) {
2133 throw new SecurityException("Only system, shell/root on a "
2134 + "debuggable build can reset to untrusted defaults");
2135 }
2136 return mode;
2137 }
2138 case Settings.RESET_MODE_UNTRUSTED_CHANGES: {
2139 if (!isCallerSystemOrShellOrRootOnDebuggableBuild()) {
2140 throw new SecurityException("Only system, shell/root on a "
2141 + "debuggable build can reset untrusted changes");
2142 }
2143 return mode;
2144 }
2145 case Settings.RESET_MODE_TRUSTED_DEFAULTS: {
2146 if (!isCallerSystemOrShellOrRootOnDebuggableBuild()) {
2147 throw new SecurityException("Only system, shell/root on a "
2148 + "debuggable build can reset to trusted defaults");
2149 }
2150 return mode;
2151 }
2152 case Settings.RESET_MODE_PACKAGE_DEFAULTS: {
2153 return mode;
2154 }
2155 }
2156 throw new IllegalArgumentException("Invalid reset mode: " + mode);
2157 }
2158
2159 private static boolean isCallerSystemOrShellOrRootOnDebuggableBuild() {
2160 final int appId = UserHandle.getAppId(Binder.getCallingUid());
2161 return appId == SYSTEM_UID || (Build.IS_DEBUGGABLE
2162 && (appId == SHELL_UID || appId == ROOT_UID));
2163 }
2164
Svetoslav683914b2015-01-15 14:22:26 -08002165 private static String getValidTableOrThrow(Uri uri) {
2166 if (uri.getPathSegments().size() > 0) {
2167 String table = uri.getPathSegments().get(0);
2168 if (DatabaseHelper.isValidTable(table)) {
2169 return table;
2170 }
2171 throw new IllegalArgumentException("Bad root path: " + table);
2172 }
2173 throw new IllegalArgumentException("Invalid URI:" + uri);
2174 }
2175
2176 private static MatrixCursor packageSettingForQuery(Setting setting, String[] projection) {
Svetoslav Ganovfedb2302016-04-26 18:36:42 -07002177 if (setting.isNull()) {
Svetoslav683914b2015-01-15 14:22:26 -08002178 return new MatrixCursor(projection, 0);
2179 }
2180 MatrixCursor cursor = new MatrixCursor(projection, 1);
2181 appendSettingToCursor(cursor, setting);
2182 return cursor;
2183 }
2184
2185 private static String[] normalizeProjection(String[] projection) {
2186 if (projection == null) {
2187 return ALL_COLUMNS;
2188 }
2189
2190 final int columnCount = projection.length;
2191 for (int i = 0; i < columnCount; i++) {
2192 String column = projection[i];
2193 if (!ArrayUtils.contains(ALL_COLUMNS, column)) {
2194 throw new IllegalArgumentException("Invalid column: " + column);
Brad Fitzpatrickf366a9b2010-08-24 16:14:07 -07002195 }
2196 }
2197
Svetoslav683914b2015-01-15 14:22:26 -08002198 return projection;
2199 }
2200
2201 private static void appendSettingToCursor(MatrixCursor cursor, Setting setting) {
Dianne Hackborn32f40ee2016-10-20 15:54:14 -07002202 if (setting == null || setting.isNull()) {
Suprabh Shuklac9d064a2016-04-12 18:45:34 -07002203 return;
2204 }
Svetoslav683914b2015-01-15 14:22:26 -08002205 final int columnCount = cursor.getColumnCount();
2206
2207 String[] values = new String[columnCount];
2208
2209 for (int i = 0; i < columnCount; i++) {
2210 String column = cursor.getColumnName(i);
2211
2212 switch (column) {
2213 case Settings.NameValueTable._ID: {
2214 values[i] = setting.getId();
2215 } break;
2216
2217 case Settings.NameValueTable.NAME: {
2218 values[i] = setting.getName();
2219 } break;
2220
2221 case Settings.NameValueTable.VALUE: {
2222 values[i] = setting.getValue();
2223 } break;
Brad Fitzpatrickf366a9b2010-08-24 16:14:07 -07002224 }
Brad Fitzpatrick1bd62bd2010-03-08 18:30:52 -08002225 }
2226
Svetoslav683914b2015-01-15 14:22:26 -08002227 cursor.addRow(values);
2228 }
Brad Fitzpatrick1bd62bd2010-03-08 18:30:52 -08002229
Makoto Onuki3a2c35782015-06-18 11:21:58 -07002230 private static boolean isKeyValid(String key) {
2231 return !(TextUtils.isEmpty(key) || SettingsState.isBinary(key));
2232 }
2233
Matt Pape7b1c6cd2019-01-04 08:10:41 -08002234 private String resolveCallingPackage() {
2235 switch (Binder.getCallingUid()) {
2236 case Process.ROOT_UID: {
2237 return "root";
2238 }
2239
2240 case Process.SHELL_UID: {
2241 return "com.android.shell";
2242 }
2243
2244 default: {
2245 return getCallingPackage();
2246 }
2247 }
2248 }
2249
Svetoslav683914b2015-01-15 14:22:26 -08002250 private static final class Arguments {
2251 private static final Pattern WHERE_PATTERN_WITH_PARAM_NO_BRACKETS =
2252 Pattern.compile("[\\s]*name[\\s]*=[\\s]*\\?[\\s]*");
2253
2254 private static final Pattern WHERE_PATTERN_WITH_PARAM_IN_BRACKETS =
2255 Pattern.compile("[\\s]*\\([\\s]*name[\\s]*=[\\s]*\\?[\\s]*\\)[\\s]*");
2256
2257 private static final Pattern WHERE_PATTERN_NO_PARAM_IN_BRACKETS =
2258 Pattern.compile("[\\s]*\\([\\s]*name[\\s]*=[\\s]*['\"].*['\"][\\s]*\\)[\\s]*");
2259
2260 private static final Pattern WHERE_PATTERN_NO_PARAM_NO_BRACKETS =
2261 Pattern.compile("[\\s]*name[\\s]*=[\\s]*['\"].*['\"][\\s]*");
2262
2263 public final String table;
2264 public final String name;
2265
2266 public Arguments(Uri uri, String where, String[] whereArgs, boolean supportAll) {
2267 final int segmentSize = uri.getPathSegments().size();
2268 switch (segmentSize) {
2269 case 1: {
2270 if (where != null
2271 && (WHERE_PATTERN_WITH_PARAM_NO_BRACKETS.matcher(where).matches()
2272 || WHERE_PATTERN_WITH_PARAM_IN_BRACKETS.matcher(where).matches())
2273 && whereArgs.length == 1) {
2274 name = whereArgs[0];
2275 table = computeTableForSetting(uri, name);
Svetoslav28494652015-02-12 14:11:42 -08002276 return;
Svetoslav683914b2015-01-15 14:22:26 -08002277 } else if (where != null
2278 && (WHERE_PATTERN_NO_PARAM_NO_BRACKETS.matcher(where).matches()
2279 || WHERE_PATTERN_NO_PARAM_IN_BRACKETS.matcher(where).matches())) {
2280 final int startIndex = Math.max(where.indexOf("'"),
2281 where.indexOf("\"")) + 1;
2282 final int endIndex = Math.max(where.lastIndexOf("'"),
2283 where.lastIndexOf("\""));
2284 name = where.substring(startIndex, endIndex);
2285 table = computeTableForSetting(uri, name);
Svetoslav28494652015-02-12 14:11:42 -08002286 return;
Svetoslav683914b2015-01-15 14:22:26 -08002287 } else if (supportAll && where == null && whereArgs == null) {
2288 name = null;
2289 table = computeTableForSetting(uri, null);
Svetoslav28494652015-02-12 14:11:42 -08002290 return;
Brad Fitzpatrick342984a2010-03-09 16:59:30 -08002291 }
Svetoslav683914b2015-01-15 14:22:26 -08002292 } break;
2293
Svetoslav28494652015-02-12 14:11:42 -08002294 case 2: {
2295 if (where == null && whereArgs == null) {
2296 name = uri.getPathSegments().get(1);
2297 table = computeTableForSetting(uri, name);
2298 return;
2299 }
2300 } break;
Brad Fitzpatrick1bd62bd2010-03-08 18:30:52 -08002301 }
Svetoslav28494652015-02-12 14:11:42 -08002302
2303 EventLogTags.writeUnsupportedSettingsQuery(
2304 uri.toSafeString(), where, Arrays.toString(whereArgs));
2305 String message = String.format( "Supported SQL:\n"
2306 + " uri content://some_table/some_property with null where and where args\n"
2307 + " uri content://some_table with query name=? and single name as arg\n"
2308 + " uri content://some_table with query name=some_name and null args\n"
2309 + " but got - uri:%1s, where:%2s whereArgs:%3s", uri, where,
2310 Arrays.toString(whereArgs));
2311 throw new IllegalArgumentException(message);
Brad Fitzpatrick1bd62bd2010-03-08 18:30:52 -08002312 }
2313
Svetoslav28494652015-02-12 14:11:42 -08002314 private static String computeTableForSetting(Uri uri, String name) {
Svetoslav683914b2015-01-15 14:22:26 -08002315 String table = getValidTableOrThrow(uri);
2316
2317 if (name != null) {
2318 if (sSystemMovedToSecureSettings.contains(name)) {
2319 table = TABLE_SECURE;
2320 }
2321
2322 if (sSystemMovedToGlobalSettings.contains(name)) {
2323 table = TABLE_GLOBAL;
2324 }
2325
2326 if (sSecureMovedToGlobalSettings.contains(name)) {
2327 table = TABLE_GLOBAL;
2328 }
2329
2330 if (sGlobalMovedToSecureSettings.contains(name)) {
2331 table = TABLE_SECURE;
2332 }
Brad Fitzpatrick1bd62bd2010-03-08 18:30:52 -08002333 }
Svetoslav683914b2015-01-15 14:22:26 -08002334
2335 return table;
2336 }
2337 }
2338
2339 final class SettingsRegistry {
2340 private static final String DROPBOX_TAG_USERLOG = "restricted_profile_ssaid";
2341
Svetoslav683914b2015-01-15 14:22:26 -08002342 private static final String SETTINGS_FILE_GLOBAL = "settings_global.xml";
2343 private static final String SETTINGS_FILE_SYSTEM = "settings_system.xml";
2344 private static final String SETTINGS_FILE_SECURE = "settings_secure.xml";
Mark Rathjend891f012017-01-19 04:10:37 +00002345 private static final String SETTINGS_FILE_SSAID = "settings_ssaid.xml";
Matt Pape1b31a332018-10-17 09:58:28 -07002346 private static final String SETTINGS_FILE_CONFIG = "settings_config.xml";
Mark Rathjend891f012017-01-19 04:10:37 +00002347
2348 private static final String SSAID_USER_KEY = "userkey";
Svetoslav683914b2015-01-15 14:22:26 -08002349
2350 private final SparseArray<SettingsState> mSettingsStates = new SparseArray<>();
2351
Svet Ganov53a441c2016-04-19 19:38:00 -07002352 private GenerationRegistry mGenerationRegistry;
Svetoslav683914b2015-01-15 14:22:26 -08002353
Svetoslav7e0683b2015-08-03 16:02:52 -07002354 private final Handler mHandler;
2355
Svet Ganov53a441c2016-04-19 19:38:00 -07002356 private final BackupManager mBackupManager;
2357
Amith Yamasani39452022017-03-21 15:23:47 -07002358 private String mSettingsCreationBuildId;
2359
Svetoslav683914b2015-01-15 14:22:26 -08002360 public SettingsRegistry() {
Svetoslav7e0683b2015-08-03 16:02:52 -07002361 mHandler = new MyHandler(getContext().getMainLooper());
Svet Ganov53a441c2016-04-19 19:38:00 -07002362 mGenerationRegistry = new GenerationRegistry(mLock);
2363 mBackupManager = new BackupManager(getContext());
Svetoslav683914b2015-01-15 14:22:26 -08002364 migrateAllLegacySettingsIfNeeded();
Mark Rathjend891f012017-01-19 04:10:37 +00002365 syncSsaidTableOnStart();
2366 }
2367
2368 private void generateUserKeyLocked(int userId) {
2369 // Generate a random key for each user used for creating a new ssaid.
Mark Rathjen7599f132017-01-23 14:15:54 -08002370 final byte[] keyBytes = new byte[32];
Mark Rathjend891f012017-01-19 04:10:37 +00002371 final SecureRandom rand = new SecureRandom();
2372 rand.nextBytes(keyBytes);
2373
2374 // Convert to string for storage in settings table.
Neil Fuller3447fb42019-04-08 22:03:14 +01002375 final String userKey = HexEncoding.encodeToString(keyBytes, true /* upperCase */);
Mark Rathjend891f012017-01-19 04:10:37 +00002376
2377 // Store the key in the ssaid table.
2378 final SettingsState ssaidSettings = getSettingsLocked(SETTINGS_TYPE_SSAID, userId);
2379 final boolean success = ssaidSettings.insertSettingLocked(SSAID_USER_KEY, userKey, null,
2380 true, SettingsState.SYSTEM_PACKAGE_NAME);
2381
2382 if (!success) {
2383 throw new IllegalStateException("Ssaid settings not accessible");
2384 }
2385 }
2386
Mark Rathjen7599f132017-01-23 14:15:54 -08002387 private byte[] getLengthPrefix(byte[] data) {
2388 return ByteBuffer.allocate(4).putInt(data.length).array();
2389 }
2390
Christopher Tateb218e762017-04-05 16:34:07 -07002391 public Setting generateSsaidLocked(PackageInfo callingPkg, int userId) {
Mark Rathjend891f012017-01-19 04:10:37 +00002392 // Read the user's key from the ssaid table.
2393 Setting userKeySetting = getSettingLocked(SETTINGS_TYPE_SSAID, userId, SSAID_USER_KEY);
Mark Rathjenea617592017-01-18 23:03:41 -08002394 if (userKeySetting == null || userKeySetting.isNull()
2395 || userKeySetting.getValue() == null) {
Mark Rathjend891f012017-01-19 04:10:37 +00002396 // Lazy initialize and store the user key.
2397 generateUserKeyLocked(userId);
2398 userKeySetting = getSettingLocked(SETTINGS_TYPE_SSAID, userId, SSAID_USER_KEY);
Mark Rathjenea617592017-01-18 23:03:41 -08002399 if (userKeySetting == null || userKeySetting.isNull()
2400 || userKeySetting.getValue() == null) {
Mark Rathjend891f012017-01-19 04:10:37 +00002401 throw new IllegalStateException("User key not accessible");
2402 }
2403 }
2404 final String userKey = userKeySetting.getValue();
Neil Fuller3447fb42019-04-08 22:03:14 +01002405 if (userKey == null || userKey.length() % 2 != 0) {
2406 throw new IllegalStateException("User key invalid");
2407 }
Mark Rathjend891f012017-01-19 04:10:37 +00002408
2409 // Convert the user's key back to a byte array.
Neil Fuller3447fb42019-04-08 22:03:14 +01002410 final byte[] keyBytes = HexEncoding.decode(userKey);
Mark Rathjen7599f132017-01-23 14:15:54 -08002411
2412 // Validate that the key is of expected length.
2413 // Keys are currently 32 bytes, but were once 16 bytes during Android O development.
Neil Fuller3447fb42019-04-08 22:03:14 +01002414 if (keyBytes.length != 16 && keyBytes.length != 32) {
Mark Rathjend891f012017-01-19 04:10:37 +00002415 throw new IllegalStateException("User key invalid");
2416 }
2417
Mark Rathjen7599f132017-01-23 14:15:54 -08002418 final Mac m;
Mark Rathjend891f012017-01-19 04:10:37 +00002419 try {
Mark Rathjen7599f132017-01-23 14:15:54 -08002420 m = Mac.getInstance("HmacSHA256");
2421 m.init(new SecretKeySpec(keyBytes, m.getAlgorithm()));
Mark Rathjend891f012017-01-19 04:10:37 +00002422 } catch (NoSuchAlgorithmException e) {
Mark Rathjen7599f132017-01-23 14:15:54 -08002423 throw new IllegalStateException("HmacSHA256 is not available", e);
2424 } catch (InvalidKeyException e) {
2425 throw new IllegalStateException("Key is corrupted", e);
Mark Rathjend891f012017-01-19 04:10:37 +00002426 }
Mark Rathjen7599f132017-01-23 14:15:54 -08002427
Mark Rathjenf42dd912017-06-05 19:04:34 -07002428 // Mac each of the developer signatures.
Christopher Tateb218e762017-04-05 16:34:07 -07002429 for (int i = 0; i < callingPkg.signatures.length; i++) {
2430 byte[] sig = callingPkg.signatures[i].toByteArray();
Mark Rathjen7599f132017-01-23 14:15:54 -08002431 m.update(getLengthPrefix(sig), 0, 4);
2432 m.update(sig);
2433 }
Mark Rathjend891f012017-01-19 04:10:37 +00002434
2435 // Convert result to a string for storage in settings table. Only want first 64 bits.
Neil Fuller3447fb42019-04-08 22:03:14 +01002436 final String ssaid = HexEncoding.encodeToString(m.doFinal(), false /* upperCase */)
2437 .substring(0, 16);
Mark Rathjend891f012017-01-19 04:10:37 +00002438
2439 // Save the ssaid in the ssaid table.
Christopher Tateb218e762017-04-05 16:34:07 -07002440 final String uid = Integer.toString(callingPkg.applicationInfo.uid);
Mark Rathjend891f012017-01-19 04:10:37 +00002441 final SettingsState ssaidSettings = getSettingsLocked(SETTINGS_TYPE_SSAID, userId);
2442 final boolean success = ssaidSettings.insertSettingLocked(uid, ssaid, null, true,
Mark Rathjenf42dd912017-06-05 19:04:34 -07002443 callingPkg.packageName);
Mark Rathjend891f012017-01-19 04:10:37 +00002444
2445 if (!success) {
2446 throw new IllegalStateException("Ssaid settings not accessible");
2447 }
2448
2449 return getSettingLocked(SETTINGS_TYPE_SSAID, userId, uid);
2450 }
2451
2452 public void syncSsaidTableOnStart() {
2453 synchronized (mLock) {
2454 // Verify that each user's packages and ssaid's are in sync.
2455 for (UserInfo user : mUserManager.getUsers(true)) {
2456 // Get all uids for the user's packages.
2457 final List<PackageInfo> packages;
2458 try {
Tetsutoki Shiozawaebe0e5f2018-01-17 11:07:09 +09002459 packages = mPackageManager.getInstalledPackages(
2460 PackageManager.MATCH_UNINSTALLED_PACKAGES,
2461 user.id).getList();
Mark Rathjend891f012017-01-19 04:10:37 +00002462 } catch (RemoteException e) {
2463 throw new IllegalStateException("Package manager not available");
2464 }
2465 final Set<String> appUids = new HashSet<>();
2466 for (PackageInfo info : packages) {
2467 appUids.add(Integer.toString(info.applicationInfo.uid));
2468 }
2469
2470 // Get all uids currently stored in the user's ssaid table.
2471 final Set<String> ssaidUids = new HashSet<>(
2472 getSettingsNamesLocked(SETTINGS_TYPE_SSAID, user.id));
2473 ssaidUids.remove(SSAID_USER_KEY);
2474
2475 // Perform a set difference for the appUids and ssaidUids.
2476 ssaidUids.removeAll(appUids);
2477
2478 // If there are ssaidUids left over they need to be removed from the table.
2479 final SettingsState ssaidSettings = getSettingsLocked(SETTINGS_TYPE_SSAID,
2480 user.id);
2481 for (String uid : ssaidUids) {
2482 ssaidSettings.deleteSettingLocked(uid);
2483 }
2484 }
2485 }
Brad Fitzpatrickf366a9b2010-08-24 16:14:07 -07002486 }
2487
Svetoslav683914b2015-01-15 14:22:26 -08002488 public List<String> getSettingsNamesLocked(int type, int userId) {
2489 final int key = makeKey(type, userId);
2490 SettingsState settingsState = peekSettingsStateLocked(key);
Dianne Hackborn32f40ee2016-10-20 15:54:14 -07002491 if (settingsState == null) {
2492 return new ArrayList<String>();
2493 }
Svetoslav683914b2015-01-15 14:22:26 -08002494 return settingsState.getSettingNamesLocked();
2495 }
2496
Dianne Hackborn32f40ee2016-10-20 15:54:14 -07002497 public SparseBooleanArray getKnownUsersLocked() {
2498 SparseBooleanArray users = new SparseBooleanArray();
2499 for (int i = mSettingsStates.size()-1; i >= 0; i--) {
2500 users.put(getUserIdFromKey(mSettingsStates.keyAt(i)), true);
2501 }
2502 return users;
2503 }
2504
Kweku Adamsb0886f32017-10-31 15:32:09 -07002505 @Nullable
Svetoslav683914b2015-01-15 14:22:26 -08002506 public SettingsState getSettingsLocked(int type, int userId) {
2507 final int key = makeKey(type, userId);
2508 return peekSettingsStateLocked(key);
2509 }
2510
Dianne Hackborn32f40ee2016-10-20 15:54:14 -07002511 public boolean ensureSettingsForUserLocked(int userId) {
2512 // First make sure this user actually exists.
2513 if (mUserManager.getUserInfo(userId) == null) {
2514 Slog.wtf(LOG_TAG, "Requested user " + userId + " does not exist");
2515 return false;
2516 }
2517
Svetoslav683914b2015-01-15 14:22:26 -08002518 // Migrate the setting for this user if needed.
2519 migrateLegacySettingsForUserIfNeededLocked(userId);
2520
Matt Pape1b31a332018-10-17 09:58:28 -07002521 // Ensure config settings loaded if owner.
2522 if (userId == UserHandle.USER_SYSTEM) {
2523 final int configKey
2524 = makeKey(SETTINGS_TYPE_CONFIG, UserHandle.USER_SYSTEM);
2525 ensureSettingsStateLocked(configKey);
2526 }
2527
Svetoslav683914b2015-01-15 14:22:26 -08002528 // Ensure global settings loaded if owner.
Xiaohui Chen43765b72015-08-31 10:57:33 -07002529 if (userId == UserHandle.USER_SYSTEM) {
2530 final int globalKey = makeKey(SETTINGS_TYPE_GLOBAL, UserHandle.USER_SYSTEM);
Svetoslav683914b2015-01-15 14:22:26 -08002531 ensureSettingsStateLocked(globalKey);
2532 }
2533
2534 // Ensure secure settings loaded.
2535 final int secureKey = makeKey(SETTINGS_TYPE_SECURE, userId);
2536 ensureSettingsStateLocked(secureKey);
2537
2538 // Make sure the secure settings have an Android id set.
2539 SettingsState secureSettings = getSettingsLocked(SETTINGS_TYPE_SECURE, userId);
2540 ensureSecureSettingAndroidIdSetLocked(secureSettings);
2541
2542 // Ensure system settings loaded.
2543 final int systemKey = makeKey(SETTINGS_TYPE_SYSTEM, userId);
2544 ensureSettingsStateLocked(systemKey);
2545
Mark Rathjend891f012017-01-19 04:10:37 +00002546 // Ensure secure settings loaded.
2547 final int ssaidKey = makeKey(SETTINGS_TYPE_SSAID, userId);
2548 ensureSettingsStateLocked(ssaidKey);
2549
Svetoslav683914b2015-01-15 14:22:26 -08002550 // Upgrade the settings to the latest version.
2551 UpgradeController upgrader = new UpgradeController(userId);
2552 upgrader.upgradeIfNeededLocked();
Dianne Hackborn32f40ee2016-10-20 15:54:14 -07002553 return true;
Svetoslav683914b2015-01-15 14:22:26 -08002554 }
2555
2556 private void ensureSettingsStateLocked(int key) {
2557 if (mSettingsStates.get(key) == null) {
2558 final int maxBytesPerPackage = getMaxBytesPerPackageForType(getTypeFromKey(key));
Svetoslav Ganove080da92016-12-21 17:10:35 -08002559 SettingsState settingsState = new SettingsState(getContext(), mLock,
2560 getSettingsFile(key), key, maxBytesPerPackage, mHandlerThread.getLooper());
Svetoslav683914b2015-01-15 14:22:26 -08002561 mSettingsStates.put(key, settingsState);
2562 }
2563 }
2564
2565 public void removeUserStateLocked(int userId, boolean permanently) {
2566 // We always keep the global settings in memory.
2567
2568 // Nuke system settings.
2569 final int systemKey = makeKey(SETTINGS_TYPE_SYSTEM, userId);
2570 final SettingsState systemSettingsState = mSettingsStates.get(systemKey);
2571 if (systemSettingsState != null) {
2572 if (permanently) {
2573 mSettingsStates.remove(systemKey);
2574 systemSettingsState.destroyLocked(null);
Brad Fitzpatrick342984a2010-03-09 16:59:30 -08002575 } else {
Svetoslav683914b2015-01-15 14:22:26 -08002576 systemSettingsState.destroyLocked(new Runnable() {
2577 @Override
2578 public void run() {
2579 mSettingsStates.remove(systemKey);
2580 }
2581 });
2582 }
2583 }
2584
2585 // Nuke secure settings.
2586 final int secureKey = makeKey(SETTINGS_TYPE_SECURE, userId);
2587 final SettingsState secureSettingsState = mSettingsStates.get(secureKey);
2588 if (secureSettingsState != null) {
2589 if (permanently) {
2590 mSettingsStates.remove(secureKey);
2591 secureSettingsState.destroyLocked(null);
2592 } else {
2593 secureSettingsState.destroyLocked(new Runnable() {
2594 @Override
2595 public void run() {
2596 mSettingsStates.remove(secureKey);
2597 }
2598 });
Brad Fitzpatrick342984a2010-03-09 16:59:30 -08002599 }
Brad Fitzpatrick1bd62bd2010-03-08 18:30:52 -08002600 }
Svet Ganov53a441c2016-04-19 19:38:00 -07002601
Mark Rathjend891f012017-01-19 04:10:37 +00002602 // Nuke ssaid settings.
2603 final int ssaidKey = makeKey(SETTINGS_TYPE_SSAID, userId);
2604 final SettingsState ssaidSettingsState = mSettingsStates.get(ssaidKey);
2605 if (ssaidSettingsState != null) {
2606 if (permanently) {
2607 mSettingsStates.remove(ssaidKey);
2608 ssaidSettingsState.destroyLocked(null);
2609 } else {
2610 ssaidSettingsState.destroyLocked(new Runnable() {
2611 @Override
2612 public void run() {
2613 mSettingsStates.remove(ssaidKey);
2614 }
2615 });
2616 }
2617 }
2618
Svet Ganov53a441c2016-04-19 19:38:00 -07002619 // Nuke generation tracking data
2620 mGenerationRegistry.onUserRemoved(userId);
Brad Fitzpatrick1bd62bd2010-03-08 18:30:52 -08002621 }
2622
Svetoslav683914b2015-01-15 14:22:26 -08002623 public boolean insertSettingLocked(int type, int userId, String name, String value,
Svetoslav Ganov5fb405b2017-01-26 22:43:09 -08002624 String tag, boolean makeDefault, String packageName, boolean forceNotify,
2625 Set<String> criticalSettings) {
Matt Papec1323dc2018-12-11 12:32:42 -08002626 return insertSettingLocked(type, userId, name, value, tag, makeDefault, false,
2627 packageName, forceNotify, criticalSettings);
2628 }
2629
2630 public boolean insertSettingLocked(int type, int userId, String name, String value,
2631 String tag, boolean makeDefault, boolean forceNonSystemPackage, String packageName,
2632 boolean forceNotify, Set<String> criticalSettings) {
Svetoslav683914b2015-01-15 14:22:26 -08002633 final int key = makeKey(type, userId);
2634
Svetoslav Ganove080da92016-12-21 17:10:35 -08002635 boolean success = false;
Svetoslav683914b2015-01-15 14:22:26 -08002636 SettingsState settingsState = peekSettingsStateLocked(key);
Svetoslav Ganove080da92016-12-21 17:10:35 -08002637 if (settingsState != null) {
2638 success = settingsState.insertSettingLocked(name, value,
Matt Papec1323dc2018-12-11 12:32:42 -08002639 tag, makeDefault, forceNonSystemPackage, packageName);
Svetoslav Ganove080da92016-12-21 17:10:35 -08002640 }
Svetoslav683914b2015-01-15 14:22:26 -08002641
Svetoslav Ganov5fb405b2017-01-26 22:43:09 -08002642 if (success && criticalSettings != null && criticalSettings.contains(name)) {
2643 settingsState.persistSyncLocked();
2644 }
2645
Svet Ganov53a441c2016-04-19 19:38:00 -07002646 if (forceNotify || success) {
Svetoslav683914b2015-01-15 14:22:26 -08002647 notifyForSettingsChange(key, name);
2648 }
2649 return success;
2650 }
2651
Svetoslav Ganov5fb405b2017-01-26 22:43:09 -08002652 public boolean deleteSettingLocked(int type, int userId, String name, boolean forceNotify,
2653 Set<String> criticalSettings) {
Svetoslav683914b2015-01-15 14:22:26 -08002654 final int key = makeKey(type, userId);
2655
Svetoslav Ganove080da92016-12-21 17:10:35 -08002656 boolean success = false;
Svetoslav683914b2015-01-15 14:22:26 -08002657 SettingsState settingsState = peekSettingsStateLocked(key);
Svetoslav Ganove080da92016-12-21 17:10:35 -08002658 if (settingsState != null) {
2659 success = settingsState.deleteSettingLocked(name);
Dianne Hackborn32f40ee2016-10-20 15:54:14 -07002660 }
Svetoslav683914b2015-01-15 14:22:26 -08002661
Svetoslav Ganov5fb405b2017-01-26 22:43:09 -08002662 if (success && criticalSettings != null && criticalSettings.contains(name)) {
2663 settingsState.persistSyncLocked();
2664 }
2665
Svet Ganov53a441c2016-04-19 19:38:00 -07002666 if (forceNotify || success) {
Svetoslav683914b2015-01-15 14:22:26 -08002667 notifyForSettingsChange(key, name);
2668 }
2669 return success;
2670 }
2671
Svetoslav Ganov5fb405b2017-01-26 22:43:09 -08002672 public boolean updateSettingLocked(int type, int userId, String name, String value,
2673 String tag, boolean makeDefault, String packageName, boolean forceNotify,
2674 Set<String> criticalSettings) {
2675 final int key = makeKey(type, userId);
2676
2677 boolean success = false;
2678 SettingsState settingsState = peekSettingsStateLocked(key);
2679 if (settingsState != null) {
2680 success = settingsState.updateSettingLocked(name, value, tag,
2681 makeDefault, packageName);
2682 }
2683
2684 if (success && criticalSettings != null && criticalSettings.contains(name)) {
2685 settingsState.persistSyncLocked();
2686 }
2687
2688 if (forceNotify || success) {
2689 notifyForSettingsChange(key, name);
2690 }
2691
2692 return success;
2693 }
2694
Svetoslav683914b2015-01-15 14:22:26 -08002695 public Setting getSettingLocked(int type, int userId, String name) {
2696 final int key = makeKey(type, userId);
2697
2698 SettingsState settingsState = peekSettingsStateLocked(key);
Dianne Hackborn32f40ee2016-10-20 15:54:14 -07002699 if (settingsState == null) {
Mark Rathjenea617592017-01-18 23:03:41 -08002700 return null;
Dianne Hackborn32f40ee2016-10-20 15:54:14 -07002701 }
Mark Rathjend891f012017-01-19 04:10:37 +00002702
2703 // getSettingLocked will return non-null result
Svetoslav683914b2015-01-15 14:22:26 -08002704 return settingsState.getSettingLocked(name);
2705 }
2706
Svetoslav Ganove080da92016-12-21 17:10:35 -08002707 public void resetSettingsLocked(int type, int userId, String packageName, int mode,
2708 String tag) {
Matt Pape6bfc62e2018-11-28 13:16:03 -08002709 resetSettingsLocked(type, userId, packageName, mode, tag, null);
2710 }
2711
2712 public void resetSettingsLocked(int type, int userId, String packageName, int mode,
2713 String tag, @Nullable String prefix) {
Svetoslav Ganove080da92016-12-21 17:10:35 -08002714 final int key = makeKey(type, userId);
2715 SettingsState settingsState = peekSettingsStateLocked(key);
2716 if (settingsState == null) {
2717 return;
2718 }
2719
2720 switch (mode) {
2721 case Settings.RESET_MODE_PACKAGE_DEFAULTS: {
2722 for (String name : settingsState.getSettingNamesLocked()) {
Svetoslav Ganov5fb405b2017-01-26 22:43:09 -08002723 boolean someSettingChanged = false;
Svetoslav Ganove080da92016-12-21 17:10:35 -08002724 Setting setting = settingsState.getSettingLocked(name);
2725 if (packageName.equals(setting.getPackageName())) {
Matt Pape6bfc62e2018-11-28 13:16:03 -08002726 if ((tag != null && !tag.equals(setting.getTag()))
2727 || (prefix != null && !setting.getName().startsWith(prefix))) {
Svetoslav Ganove080da92016-12-21 17:10:35 -08002728 continue;
2729 }
Svetoslav Ganov5fb405b2017-01-26 22:43:09 -08002730 if (settingsState.resetSettingLocked(name)) {
2731 someSettingChanged = true;
Svetoslav Ganove080da92016-12-21 17:10:35 -08002732 notifyForSettingsChange(key, name);
2733 }
2734 }
Svetoslav Ganov5fb405b2017-01-26 22:43:09 -08002735 if (someSettingChanged) {
2736 settingsState.persistSyncLocked();
2737 }
Svetoslav Ganove080da92016-12-21 17:10:35 -08002738 }
2739 } break;
2740
2741 case Settings.RESET_MODE_UNTRUSTED_DEFAULTS: {
2742 for (String name : settingsState.getSettingNamesLocked()) {
Svetoslav Ganov5fb405b2017-01-26 22:43:09 -08002743 boolean someSettingChanged = false;
Svetoslav Ganove080da92016-12-21 17:10:35 -08002744 Setting setting = settingsState.getSettingLocked(name);
2745 if (!SettingsState.isSystemPackage(getContext(),
Matt Pape25c940d2019-03-26 12:14:33 -07002746 setting.getPackageName(), INVALID_UID, userId)) {
Matt Pape6bfc62e2018-11-28 13:16:03 -08002747 if (prefix != null && !setting.getName().startsWith(prefix)) {
2748 continue;
2749 }
Svetoslav Ganov5fb405b2017-01-26 22:43:09 -08002750 if (settingsState.resetSettingLocked(name)) {
2751 someSettingChanged = true;
Svetoslav Ganove080da92016-12-21 17:10:35 -08002752 notifyForSettingsChange(key, name);
2753 }
2754 }
Svetoslav Ganov5fb405b2017-01-26 22:43:09 -08002755 if (someSettingChanged) {
2756 settingsState.persistSyncLocked();
2757 }
Svetoslav Ganove080da92016-12-21 17:10:35 -08002758 }
2759 } break;
2760
2761 case Settings.RESET_MODE_UNTRUSTED_CHANGES: {
2762 for (String name : settingsState.getSettingNamesLocked()) {
Svetoslav Ganov5fb405b2017-01-26 22:43:09 -08002763 boolean someSettingChanged = false;
Svetoslav Ganove080da92016-12-21 17:10:35 -08002764 Setting setting = settingsState.getSettingLocked(name);
2765 if (!SettingsState.isSystemPackage(getContext(),
Matt Pape25c940d2019-03-26 12:14:33 -07002766 setting.getPackageName(), INVALID_UID, userId)) {
Matt Pape6bfc62e2018-11-28 13:16:03 -08002767 if (prefix != null && !setting.getName().startsWith(prefix)) {
2768 continue;
2769 }
Eugene Suslad72c3972016-12-27 15:49:30 -08002770 if (setting.isDefaultFromSystem()) {
Svetoslav Ganov5fb405b2017-01-26 22:43:09 -08002771 if (settingsState.resetSettingLocked(name)) {
2772 someSettingChanged = true;
Svetoslav Ganove080da92016-12-21 17:10:35 -08002773 notifyForSettingsChange(key, name);
2774 }
2775 } else if (settingsState.deleteSettingLocked(name)) {
Svetoslav Ganov5fb405b2017-01-26 22:43:09 -08002776 someSettingChanged = true;
Svetoslav Ganove080da92016-12-21 17:10:35 -08002777 notifyForSettingsChange(key, name);
2778 }
2779 }
Svetoslav Ganov5fb405b2017-01-26 22:43:09 -08002780 if (someSettingChanged) {
2781 settingsState.persistSyncLocked();
2782 }
Svetoslav Ganove080da92016-12-21 17:10:35 -08002783 }
2784 } break;
2785
2786 case Settings.RESET_MODE_TRUSTED_DEFAULTS: {
2787 for (String name : settingsState.getSettingNamesLocked()) {
2788 Setting setting = settingsState.getSettingLocked(name);
Svetoslav Ganov5fb405b2017-01-26 22:43:09 -08002789 boolean someSettingChanged = false;
Matt Pape6bfc62e2018-11-28 13:16:03 -08002790 if (prefix != null && !setting.getName().startsWith(prefix)) {
2791 continue;
2792 }
Eugene Suslad72c3972016-12-27 15:49:30 -08002793 if (setting.isDefaultFromSystem()) {
Svetoslav Ganov5fb405b2017-01-26 22:43:09 -08002794 if (settingsState.resetSettingLocked(name)) {
2795 someSettingChanged = true;
Svetoslav Ganove080da92016-12-21 17:10:35 -08002796 notifyForSettingsChange(key, name);
2797 }
2798 } else if (settingsState.deleteSettingLocked(name)) {
Svetoslav Ganov5fb405b2017-01-26 22:43:09 -08002799 someSettingChanged = true;
Svetoslav Ganove080da92016-12-21 17:10:35 -08002800 notifyForSettingsChange(key, name);
2801 }
Svetoslav Ganov5fb405b2017-01-26 22:43:09 -08002802 if (someSettingChanged) {
2803 settingsState.persistSyncLocked();
2804 }
Svetoslav Ganove080da92016-12-21 17:10:35 -08002805 }
2806 } break;
2807 }
2808 }
2809
Zimuzoc56192c2018-07-25 10:40:01 +01002810 public void removeSettingsForPackageLocked(String packageName, int userId) {
Svet Ganov8de34802015-04-27 09:33:40 -07002811 // Global and secure settings are signature protected. Apps signed
2812 // by the platform certificate are generally not uninstalled and
2813 // the main exception is tests. We trust components signed
2814 // by the platform certificate and do not do a clean up after them.
Svetoslav683914b2015-01-15 14:22:26 -08002815
2816 final int systemKey = makeKey(SETTINGS_TYPE_SYSTEM, userId);
2817 SettingsState systemSettings = mSettingsStates.get(systemKey);
Svet Ganov8de34802015-04-27 09:33:40 -07002818 if (systemSettings != null) {
Zimuzoc56192c2018-07-25 10:40:01 +01002819 systemSettings.removeSettingsForPackageLocked(packageName);
Svet Ganov8de34802015-04-27 09:33:40 -07002820 }
Svetoslav683914b2015-01-15 14:22:26 -08002821 }
2822
Mark Rathjend891f012017-01-19 04:10:37 +00002823 public void onUidRemovedLocked(int uid) {
2824 final SettingsState ssaidSettings = getSettingsLocked(SETTINGS_TYPE_SSAID,
2825 UserHandle.getUserId(uid));
Tony Mak24c6ab42018-01-08 14:35:34 +00002826 if (ssaidSettings != null) {
2827 ssaidSettings.deleteSettingLocked(Integer.toString(uid));
2828 }
Mark Rathjend891f012017-01-19 04:10:37 +00002829 }
2830
Kweku Adamsb0886f32017-10-31 15:32:09 -07002831 @Nullable
Svetoslav683914b2015-01-15 14:22:26 -08002832 private SettingsState peekSettingsStateLocked(int key) {
2833 SettingsState settingsState = mSettingsStates.get(key);
2834 if (settingsState != null) {
2835 return settingsState;
2836 }
2837
Dianne Hackborn32f40ee2016-10-20 15:54:14 -07002838 if (!ensureSettingsForUserLocked(getUserIdFromKey(key))) {
2839 return null;
2840 }
Svetoslav683914b2015-01-15 14:22:26 -08002841 return mSettingsStates.get(key);
2842 }
2843
2844 private void migrateAllLegacySettingsIfNeeded() {
2845 synchronized (mLock) {
Xiaohui Chen43765b72015-08-31 10:57:33 -07002846 final int key = makeKey(SETTINGS_TYPE_GLOBAL, UserHandle.USER_SYSTEM);
Svetoslav683914b2015-01-15 14:22:26 -08002847 File globalFile = getSettingsFile(key);
Amith Yamasani74bf71b2017-07-19 16:49:52 -07002848 if (SettingsState.stateFileExists(globalFile)) {
Svetoslav683914b2015-01-15 14:22:26 -08002849 return;
2850 }
2851
Amith Yamasani39452022017-03-21 15:23:47 -07002852 mSettingsCreationBuildId = Build.ID;
2853
Svetoslav683914b2015-01-15 14:22:26 -08002854 final long identity = Binder.clearCallingIdentity();
2855 try {
2856 List<UserInfo> users = mUserManager.getUsers(true);
2857
2858 final int userCount = users.size();
2859 for (int i = 0; i < userCount; i++) {
2860 final int userId = users.get(i).id;
2861
2862 DatabaseHelper dbHelper = new DatabaseHelper(getContext(), userId);
2863 SQLiteDatabase database = dbHelper.getWritableDatabase();
2864 migrateLegacySettingsForUserLocked(dbHelper, database, userId);
2865
2866 // Upgrade to the latest version.
2867 UpgradeController upgrader = new UpgradeController(userId);
2868 upgrader.upgradeIfNeededLocked();
2869
2870 // Drop from memory if not a running user.
2871 if (!mUserManager.isUserRunning(new UserHandle(userId))) {
2872 removeUserStateLocked(userId, false);
2873 }
2874 }
2875 } finally {
2876 Binder.restoreCallingIdentity(identity);
2877 }
2878 }
2879 }
2880
2881 private void migrateLegacySettingsForUserIfNeededLocked(int userId) {
2882 // Every user has secure settings and if no file we need to migrate.
2883 final int secureKey = makeKey(SETTINGS_TYPE_SECURE, userId);
2884 File secureFile = getSettingsFile(secureKey);
Amith Yamasani74bf71b2017-07-19 16:49:52 -07002885 if (SettingsState.stateFileExists(secureFile)) {
Svetoslav683914b2015-01-15 14:22:26 -08002886 return;
2887 }
2888
2889 DatabaseHelper dbHelper = new DatabaseHelper(getContext(), userId);
2890 SQLiteDatabase database = dbHelper.getWritableDatabase();
2891
2892 migrateLegacySettingsForUserLocked(dbHelper, database, userId);
2893 }
2894
2895 private void migrateLegacySettingsForUserLocked(DatabaseHelper dbHelper,
2896 SQLiteDatabase database, int userId) {
Amith Yamasanibf2ef612016-03-07 16:37:18 -08002897 // Move over the system settings.
2898 final int systemKey = makeKey(SETTINGS_TYPE_SYSTEM, userId);
2899 ensureSettingsStateLocked(systemKey);
2900 SettingsState systemSettings = mSettingsStates.get(systemKey);
2901 migrateLegacySettingsLocked(systemSettings, database, TABLE_SYSTEM);
2902 systemSettings.persistSyncLocked();
Svetoslav683914b2015-01-15 14:22:26 -08002903
2904 // Move over the secure settings.
Amith Yamasanibf2ef612016-03-07 16:37:18 -08002905 // Do this after System settings, since this is the first thing we check when deciding
2906 // to skip over migration from db to xml for a secondary user.
Svetoslav683914b2015-01-15 14:22:26 -08002907 final int secureKey = makeKey(SETTINGS_TYPE_SECURE, userId);
2908 ensureSettingsStateLocked(secureKey);
2909 SettingsState secureSettings = mSettingsStates.get(secureKey);
2910 migrateLegacySettingsLocked(secureSettings, database, TABLE_SECURE);
2911 ensureSecureSettingAndroidIdSetLocked(secureSettings);
2912 secureSettings.persistSyncLocked();
2913
Amith Yamasanibf2ef612016-03-07 16:37:18 -08002914 // Move over the global settings if owner.
2915 // Do this last, since this is the first thing we check when deciding
2916 // to skip over migration from db to xml for owner user.
2917 if (userId == UserHandle.USER_SYSTEM) {
2918 final int globalKey = makeKey(SETTINGS_TYPE_GLOBAL, userId);
2919 ensureSettingsStateLocked(globalKey);
2920 SettingsState globalSettings = mSettingsStates.get(globalKey);
2921 migrateLegacySettingsLocked(globalSettings, database, TABLE_GLOBAL);
Amith Yamasani39452022017-03-21 15:23:47 -07002922 // If this was just created
2923 if (mSettingsCreationBuildId != null) {
2924 globalSettings.insertSettingLocked(Settings.Global.DATABASE_CREATION_BUILDID,
2925 mSettingsCreationBuildId, null, true,
2926 SettingsState.SYSTEM_PACKAGE_NAME);
2927 }
Amith Yamasanibf2ef612016-03-07 16:37:18 -08002928 globalSettings.persistSyncLocked();
2929 }
Svetoslav683914b2015-01-15 14:22:26 -08002930
2931 // Drop the database as now all is moved and persisted.
2932 if (DROP_DATABASE_ON_MIGRATION) {
2933 dbHelper.dropDatabase();
2934 } else {
2935 dbHelper.backupDatabase();
2936 }
2937 }
2938
2939 private void migrateLegacySettingsLocked(SettingsState settingsState,
2940 SQLiteDatabase database, String table) {
2941 SQLiteQueryBuilder queryBuilder = new SQLiteQueryBuilder();
2942 queryBuilder.setTables(table);
2943
2944 Cursor cursor = queryBuilder.query(database, ALL_COLUMNS,
2945 null, null, null, null, null);
2946
2947 if (cursor == null) {
2948 return;
2949 }
2950
2951 try {
2952 if (!cursor.moveToFirst()) {
2953 return;
2954 }
2955
2956 final int nameColumnIdx = cursor.getColumnIndex(Settings.NameValueTable.NAME);
2957 final int valueColumnIdx = cursor.getColumnIndex(Settings.NameValueTable.VALUE);
2958
2959 settingsState.setVersionLocked(database.getVersion());
2960
2961 while (!cursor.isAfterLast()) {
2962 String name = cursor.getString(nameColumnIdx);
2963 String value = cursor.getString(valueColumnIdx);
Svetoslav Ganove080da92016-12-21 17:10:35 -08002964 settingsState.insertSettingLocked(name, value, null, true,
Svetoslav683914b2015-01-15 14:22:26 -08002965 SettingsState.SYSTEM_PACKAGE_NAME);
2966 cursor.moveToNext();
2967 }
2968 } finally {
2969 cursor.close();
2970 }
2971 }
2972
Andreas Gampeb58893072018-09-05 16:52:31 -07002973 @GuardedBy("secureSettings.mLock")
Svetoslav683914b2015-01-15 14:22:26 -08002974 private void ensureSecureSettingAndroidIdSetLocked(SettingsState secureSettings) {
2975 Setting value = secureSettings.getSettingLocked(Settings.Secure.ANDROID_ID);
2976
Seigo Nonaka6e5b6022016-04-27 16:32:44 +09002977 if (!value.isNull()) {
Svetoslav683914b2015-01-15 14:22:26 -08002978 return;
2979 }
2980
2981 final int userId = getUserIdFromKey(secureSettings.mKey);
2982
2983 final UserInfo user;
2984 final long identity = Binder.clearCallingIdentity();
2985 try {
2986 user = mUserManager.getUserInfo(userId);
2987 } finally {
2988 Binder.restoreCallingIdentity(identity);
2989 }
2990 if (user == null) {
2991 // Can happen due to races when deleting users - treat as benign.
2992 return;
2993 }
2994
2995 String androidId = Long.toHexString(new SecureRandom().nextLong());
2996 secureSettings.insertSettingLocked(Settings.Secure.ANDROID_ID, androidId,
Svetoslav Ganove080da92016-12-21 17:10:35 -08002997 null, true, SettingsState.SYSTEM_PACKAGE_NAME);
Svetoslav683914b2015-01-15 14:22:26 -08002998
2999 Slog.d(LOG_TAG, "Generated and saved new ANDROID_ID [" + androidId
3000 + "] for user " + userId);
3001
3002 // Write a drop box entry if it's a restricted profile
3003 if (user.isRestricted()) {
3004 DropBoxManager dbm = (DropBoxManager) getContext().getSystemService(
3005 Context.DROPBOX_SERVICE);
3006 if (dbm != null && dbm.isTagEnabled(DROPBOX_TAG_USERLOG)) {
3007 dbm.addText(DROPBOX_TAG_USERLOG, System.currentTimeMillis()
3008 + "," + DROPBOX_TAG_USERLOG + "," + androidId + "\n");
3009 }
3010 }
3011 }
3012
3013 private void notifyForSettingsChange(int key, String name) {
Svet Ganov945864c2018-03-22 21:49:10 -07003014 // Increment the generation first, so observers always see the new value
Phil Weaver83fec002016-05-11 10:55:29 -07003015 mGenerationRegistry.incrementGeneration(key);
3016
Linus Tufvesson93c38552019-05-30 12:47:39 +01003017 if (isGlobalSettingsKey(key) || isConfigSettingsKey(key)) {
Jeff Sharkey308093f2018-03-25 22:53:29 -06003018 final long token = Binder.clearCallingIdentity();
3019 try {
Linus Tufvesson93c38552019-05-30 12:47:39 +01003020 if (Global.LOCATION_GLOBAL_KILL_SWITCH.equals(name)
3021 && isGlobalSettingsKey(key)) {
Jeff Sharkey308093f2018-03-25 22:53:29 -06003022 // When the global kill switch is updated, send the
3023 // change notification for the location setting.
3024 notifyLocationChangeForRunningUsers();
3025 }
Linus Tufvesson93c38552019-05-30 12:47:39 +01003026 notifySettingChangeForRunningUsers(key, name);
Jeff Sharkey308093f2018-03-25 22:53:29 -06003027 } finally {
3028 Binder.restoreCallingIdentity(token);
Svet Ganov945864c2018-03-22 21:49:10 -07003029 }
Svet Ganov945864c2018-03-22 21:49:10 -07003030 } else {
3031 final int userId = getUserIdFromKey(key);
3032 final Uri uri = getNotificationUriFor(key, name);
3033 mHandler.obtainMessage(MyHandler.MSG_NOTIFY_URI_CHANGED,
3034 userId, 0, uri).sendToTarget();
3035 if (isSecureSettingsKey(key)) {
3036 maybeNotifyProfiles(getTypeFromKey(key), userId, uri, name,
3037 sSecureCloneToManagedSettings);
3038 maybeNotifyProfiles(SETTINGS_TYPE_SYSTEM, userId, uri, name,
3039 sSystemCloneFromParentOnDependency.values());
3040 } else if (isSystemSettingsKey(key)) {
3041 maybeNotifyProfiles(getTypeFromKey(key), userId, uri, name,
3042 sSystemCloneToManagedSettings);
3043 }
Nicolas Prevot310e1ee2015-07-02 14:03:06 +01003044 }
Svet Ganov53a441c2016-04-19 19:38:00 -07003045
Svet Ganov945864c2018-03-22 21:49:10 -07003046 // Always notify that our data changed
Svet Ganov53a441c2016-04-19 19:38:00 -07003047 mHandler.obtainMessage(MyHandler.MSG_NOTIFY_DATA_CHANGED).sendToTarget();
Nicolas Prevot310e1ee2015-07-02 14:03:06 +01003048 }
3049
Svet Ganov53a441c2016-04-19 19:38:00 -07003050 private void maybeNotifyProfiles(int type, int userId, Uri uri, String name,
Robin Lee7af9a742017-02-20 14:47:30 +00003051 Collection<String> keysCloned) {
Nicolas Prevot310e1ee2015-07-02 14:03:06 +01003052 if (keysCloned.contains(name)) {
Fyodor Kupolov7f98aa42016-04-07 14:56:25 -07003053 for (int profileId : mUserManager.getProfileIdsWithDisabled(userId)) {
Nicolas Prevot310e1ee2015-07-02 14:03:06 +01003054 // the notification for userId has already been sent.
Fyodor Kupolov7f98aa42016-04-07 14:56:25 -07003055 if (profileId != userId) {
Svet Ganov945864c2018-03-22 21:49:10 -07003056 final int key = makeKey(type, profileId);
3057 // Increment the generation first, so observers always see the new value
3058 mGenerationRegistry.incrementGeneration(key);
Svetoslav7e0683b2015-08-03 16:02:52 -07003059 mHandler.obtainMessage(MyHandler.MSG_NOTIFY_URI_CHANGED,
Fyodor Kupolov7f98aa42016-04-07 14:56:25 -07003060 profileId, 0, uri).sendToTarget();
Nicolas Prevot310e1ee2015-07-02 14:03:06 +01003061 }
3062 }
3063 }
Svetoslav683914b2015-01-15 14:22:26 -08003064 }
3065
Linus Tufvesson93c38552019-05-30 12:47:39 +01003066 private void notifySettingChangeForRunningUsers(int key, String name) {
Svet Ganov945864c2018-03-22 21:49:10 -07003067 // Important: No need to update generation for each user as there
3068 // is a singleton generation entry for the global settings which
3069 // is already incremented be the caller.
3070 final Uri uri = getNotificationUriFor(key, name);
3071 final List<UserInfo> users = mUserManager.getUsers(/*excludeDying*/ true);
3072 for (int i = 0; i < users.size(); i++) {
3073 final int userId = users.get(i).id;
3074 if (mUserManager.isUserRunning(UserHandle.of(userId))) {
3075 mHandler.obtainMessage(MyHandler.MSG_NOTIFY_URI_CHANGED,
3076 userId, 0, uri).sendToTarget();
3077 }
3078 }
3079 }
3080
Makoto Onuki0000d322017-11-28 16:31:47 -08003081 private void notifyLocationChangeForRunningUsers() {
3082 final List<UserInfo> users = mUserManager.getUsers(/*excludeDying=*/ true);
3083
3084 for (int i = 0; i < users.size(); i++) {
3085 final int userId = users.get(i).id;
3086
3087 if (!mUserManager.isUserRunning(UserHandle.of(userId))) {
3088 continue;
3089 }
Makoto Onuki0000d322017-11-28 16:31:47 -08003090
Svet Ganov945864c2018-03-22 21:49:10 -07003091 // Increment the generation first, so observers always see the new value
3092 final int key = makeKey(SETTINGS_TYPE_SECURE, userId);
3093 mGenerationRegistry.incrementGeneration(key);
3094
Kweku Adams5e0052b2019-02-22 15:17:52 -08003095 final Uri uri = getNotificationUriFor(key, Secure.LOCATION_MODE);
Makoto Onuki0000d322017-11-28 16:31:47 -08003096 mHandler.obtainMessage(MyHandler.MSG_NOTIFY_URI_CHANGED,
3097 userId, 0, uri).sendToTarget();
3098 }
3099 }
3100
Matt Pape1b31a332018-10-17 09:58:28 -07003101 private boolean isConfigSettingsKey(int key) {
3102 return getTypeFromKey(key) == SETTINGS_TYPE_CONFIG;
3103 }
3104
Svetoslav683914b2015-01-15 14:22:26 -08003105 private boolean isGlobalSettingsKey(int key) {
3106 return getTypeFromKey(key) == SETTINGS_TYPE_GLOBAL;
3107 }
3108
3109 private boolean isSystemSettingsKey(int key) {
3110 return getTypeFromKey(key) == SETTINGS_TYPE_SYSTEM;
3111 }
3112
3113 private boolean isSecureSettingsKey(int key) {
3114 return getTypeFromKey(key) == SETTINGS_TYPE_SECURE;
3115 }
3116
Mark Rathjend891f012017-01-19 04:10:37 +00003117 private boolean isSsaidSettingsKey(int key) {
3118 return getTypeFromKey(key) == SETTINGS_TYPE_SSAID;
3119 }
3120
Svetoslav683914b2015-01-15 14:22:26 -08003121 private File getSettingsFile(int key) {
Matt Pape1b31a332018-10-17 09:58:28 -07003122 if (isConfigSettingsKey(key)) {
3123 final int userId = getUserIdFromKey(key);
3124 return new File(Environment.getUserSystemDirectory(userId),
3125 SETTINGS_FILE_CONFIG);
3126 } else if (isGlobalSettingsKey(key)) {
Svetoslav683914b2015-01-15 14:22:26 -08003127 final int userId = getUserIdFromKey(key);
3128 return new File(Environment.getUserSystemDirectory(userId),
3129 SETTINGS_FILE_GLOBAL);
3130 } else if (isSystemSettingsKey(key)) {
3131 final int userId = getUserIdFromKey(key);
3132 return new File(Environment.getUserSystemDirectory(userId),
3133 SETTINGS_FILE_SYSTEM);
3134 } else if (isSecureSettingsKey(key)) {
3135 final int userId = getUserIdFromKey(key);
3136 return new File(Environment.getUserSystemDirectory(userId),
3137 SETTINGS_FILE_SECURE);
Mark Rathjend891f012017-01-19 04:10:37 +00003138 } else if (isSsaidSettingsKey(key)) {
3139 final int userId = getUserIdFromKey(key);
3140 return new File(Environment.getUserSystemDirectory(userId),
3141 SETTINGS_FILE_SSAID);
Svetoslav683914b2015-01-15 14:22:26 -08003142 } else {
3143 throw new IllegalArgumentException("Invalid settings key:" + key);
3144 }
3145 }
3146
3147 private Uri getNotificationUriFor(int key, String name) {
Matt Pape1b31a332018-10-17 09:58:28 -07003148 if (isConfigSettingsKey(key)) {
Matt Pape1278d1c2018-12-11 13:03:49 -08003149 return (name != null) ? Uri.withAppendedPath(DeviceConfig.CONTENT_URI, name)
3150 : DeviceConfig.CONTENT_URI;
Matt Pape1b31a332018-10-17 09:58:28 -07003151 } else if (isGlobalSettingsKey(key)) {
Svetoslav683914b2015-01-15 14:22:26 -08003152 return (name != null) ? Uri.withAppendedPath(Settings.Global.CONTENT_URI, name)
3153 : Settings.Global.CONTENT_URI;
3154 } else if (isSecureSettingsKey(key)) {
3155 return (name != null) ? Uri.withAppendedPath(Settings.Secure.CONTENT_URI, name)
3156 : Settings.Secure.CONTENT_URI;
3157 } else if (isSystemSettingsKey(key)) {
3158 return (name != null) ? Uri.withAppendedPath(Settings.System.CONTENT_URI, name)
3159 : Settings.System.CONTENT_URI;
3160 } else {
3161 throw new IllegalArgumentException("Invalid settings key:" + key);
3162 }
3163 }
3164
3165 private int getMaxBytesPerPackageForType(int type) {
3166 switch (type) {
Matt Pape1b31a332018-10-17 09:58:28 -07003167 case SETTINGS_TYPE_CONFIG:
Svetoslav683914b2015-01-15 14:22:26 -08003168 case SETTINGS_TYPE_GLOBAL:
Mark Rathjend891f012017-01-19 04:10:37 +00003169 case SETTINGS_TYPE_SECURE:
3170 case SETTINGS_TYPE_SSAID: {
Svetoslav683914b2015-01-15 14:22:26 -08003171 return SettingsState.MAX_BYTES_PER_APP_PACKAGE_UNLIMITED;
3172 }
3173
3174 default: {
3175 return SettingsState.MAX_BYTES_PER_APP_PACKAGE_LIMITED;
3176 }
3177 }
3178 }
3179
Svetoslav7e0683b2015-08-03 16:02:52 -07003180 private final class MyHandler extends Handler {
3181 private static final int MSG_NOTIFY_URI_CHANGED = 1;
3182 private static final int MSG_NOTIFY_DATA_CHANGED = 2;
3183
3184 public MyHandler(Looper looper) {
3185 super(looper);
3186 }
3187
3188 @Override
3189 public void handleMessage(Message msg) {
3190 switch (msg.what) {
3191 case MSG_NOTIFY_URI_CHANGED: {
3192 final int userId = msg.arg1;
3193 Uri uri = (Uri) msg.obj;
Jeff Sharkey88f9d0b2017-08-11 15:29:40 -06003194 try {
3195 getContext().getContentResolver().notifyChange(uri, null, true, userId);
3196 } catch (SecurityException e) {
3197 Slog.w(LOG_TAG, "Failed to notify for " + userId + ": " + uri, e);
3198 }
Varun Shah2ecf7ad2019-10-16 12:30:57 -07003199 if (DEBUG) {
Svetoslav7e0683b2015-08-03 16:02:52 -07003200 Slog.v(LOG_TAG, "Notifying for " + userId + ": " + uri);
3201 }
3202 } break;
3203
3204 case MSG_NOTIFY_DATA_CHANGED: {
3205 mBackupManager.dataChanged();
3206 } break;
3207 }
3208 }
3209 }
3210
Svetoslav683914b2015-01-15 14:22:26 -08003211 private final class UpgradeController {
Beverlyf364d7c2019-10-10 16:44:43 -04003212 private static final int SETTINGS_VERSION = 184;
Svetoslav683914b2015-01-15 14:22:26 -08003213
3214 private final int mUserId;
3215
3216 public UpgradeController(int userId) {
3217 mUserId = userId;
3218 }
3219
3220 public void upgradeIfNeededLocked() {
3221 // The version of all settings for a user is the same (all users have secure).
3222 SettingsState secureSettings = getSettingsLocked(
Svet Ganov53a441c2016-04-19 19:38:00 -07003223 SETTINGS_TYPE_SECURE, mUserId);
Svetoslav683914b2015-01-15 14:22:26 -08003224
3225 // Try an update from the current state.
3226 final int oldVersion = secureSettings.getVersionLocked();
3227 final int newVersion = SETTINGS_VERSION;
3228
Svet Ganovc9755bc2015-03-28 13:21:22 -07003229 // If up do date - done.
Svetoslav683914b2015-01-15 14:22:26 -08003230 if (oldVersion == newVersion) {
3231 return;
3232 }
3233
3234 // Try to upgrade.
3235 final int curVersion = onUpgradeLocked(mUserId, oldVersion, newVersion);
3236
3237 // If upgrade failed start from scratch and upgrade.
3238 if (curVersion != newVersion) {
3239 // Drop state we have for this user.
3240 removeUserStateLocked(mUserId, true);
3241
3242 // Recreate the database.
3243 DatabaseHelper dbHelper = new DatabaseHelper(getContext(), mUserId);
3244 SQLiteDatabase database = dbHelper.getWritableDatabase();
3245 dbHelper.recreateDatabase(database, newVersion, curVersion, oldVersion);
3246
3247 // Migrate the settings for this user.
3248 migrateLegacySettingsForUserLocked(dbHelper, database, mUserId);
3249
3250 // Now upgrade should work fine.
3251 onUpgradeLocked(mUserId, oldVersion, newVersion);
Svetoslav Ganov264c7a92016-08-24 17:31:14 -07003252
3253 // Make a note what happened, so we don't wonder why data was lost
3254 String reason = "Settings rebuilt! Current version: "
3255 + curVersion + " while expected: " + newVersion;
3256 getGlobalSettingsLocked().insertSettingLocked(
Svetoslav Ganove080da92016-12-21 17:10:35 -08003257 Settings.Global.DATABASE_DOWNGRADE_REASON,
3258 reason, null, true, SettingsState.SYSTEM_PACKAGE_NAME);
Svetoslav683914b2015-01-15 14:22:26 -08003259 }
3260
3261 // Set the global settings version if owner.
Xiaohui Chen43765b72015-08-31 10:57:33 -07003262 if (mUserId == UserHandle.USER_SYSTEM) {
Svetoslav683914b2015-01-15 14:22:26 -08003263 SettingsState globalSettings = getSettingsLocked(
Svet Ganov53a441c2016-04-19 19:38:00 -07003264 SETTINGS_TYPE_GLOBAL, mUserId);
Svetoslav683914b2015-01-15 14:22:26 -08003265 globalSettings.setVersionLocked(newVersion);
3266 }
3267
3268 // Set the secure settings version.
3269 secureSettings.setVersionLocked(newVersion);
3270
3271 // Set the system settings version.
3272 SettingsState systemSettings = getSettingsLocked(
Svet Ganov53a441c2016-04-19 19:38:00 -07003273 SETTINGS_TYPE_SYSTEM, mUserId);
Svetoslav683914b2015-01-15 14:22:26 -08003274 systemSettings.setVersionLocked(newVersion);
3275 }
3276
3277 private SettingsState getGlobalSettingsLocked() {
Xiaohui Chen43765b72015-08-31 10:57:33 -07003278 return getSettingsLocked(SETTINGS_TYPE_GLOBAL, UserHandle.USER_SYSTEM);
Svetoslav683914b2015-01-15 14:22:26 -08003279 }
3280
3281 private SettingsState getSecureSettingsLocked(int userId) {
3282 return getSettingsLocked(SETTINGS_TYPE_SECURE, userId);
3283 }
3284
Mark Rathjend891f012017-01-19 04:10:37 +00003285 private SettingsState getSsaidSettingsLocked(int userId) {
3286 return getSettingsLocked(SETTINGS_TYPE_SSAID, userId);
3287 }
3288
Svetoslav683914b2015-01-15 14:22:26 -08003289 private SettingsState getSystemSettingsLocked(int userId) {
3290 return getSettingsLocked(SETTINGS_TYPE_SYSTEM, userId);
3291 }
3292
Jeff Brown503cffc2015-03-26 18:08:51 -07003293 /**
3294 * You must perform all necessary mutations to bring the settings
3295 * for this user from the old to the new version. When you add a new
3296 * upgrade step you *must* update SETTINGS_VERSION.
3297 *
3298 * This is an example of moving a setting from secure to global.
3299 *
3300 * // v119: Example settings changes.
3301 * if (currentVersion == 118) {
3302 * if (userId == UserHandle.USER_OWNER) {
3303 * // Remove from the secure settings.
3304 * SettingsState secureSettings = getSecureSettingsLocked(userId);
3305 * String name = "example_setting_to_move";
3306 * String value = secureSettings.getSetting(name);
3307 * secureSettings.deleteSetting(name);
3308 *
3309 * // Add to the global settings.
3310 * SettingsState globalSettings = getGlobalSettingsLocked();
3311 * globalSettings.insertSetting(name, value, SettingsState.SYSTEM_PACKAGE_NAME);
3312 * }
3313 *
3314 * // Update the current version.
3315 * currentVersion = 119;
3316 * }
3317 */
Svetoslav683914b2015-01-15 14:22:26 -08003318 private int onUpgradeLocked(int userId, int oldVersion, int newVersion) {
3319 if (DEBUG) {
3320 Slog.w(LOG_TAG, "Upgrading settings for user: " + userId + " from version: "
3321 + oldVersion + " to version: " + newVersion);
3322 }
3323
Jeff Brown503cffc2015-03-26 18:08:51 -07003324 int currentVersion = oldVersion;
Svetoslav683914b2015-01-15 14:22:26 -08003325
John Spurlocke11ae112015-05-11 16:09:03 -04003326 // v119: Reset zen + ringer mode.
3327 if (currentVersion == 118) {
Xiaohui Chen43765b72015-08-31 10:57:33 -07003328 if (userId == UserHandle.USER_SYSTEM) {
John Spurlocke11ae112015-05-11 16:09:03 -04003329 final SettingsState globalSettings = getGlobalSettingsLocked();
3330 globalSettings.updateSettingLocked(Settings.Global.ZEN_MODE,
Svetoslav Ganove080da92016-12-21 17:10:35 -08003331 Integer.toString(Settings.Global.ZEN_MODE_OFF), null,
3332 true, SettingsState.SYSTEM_PACKAGE_NAME);
John Spurlocke11ae112015-05-11 16:09:03 -04003333 globalSettings.updateSettingLocked(Settings.Global.MODE_RINGER,
Svetoslav Ganove080da92016-12-21 17:10:35 -08003334 Integer.toString(AudioManager.RINGER_MODE_NORMAL), null,
3335 true, SettingsState.SYSTEM_PACKAGE_NAME);
John Spurlocke11ae112015-05-11 16:09:03 -04003336 }
3337 currentVersion = 119;
3338 }
3339
Jason Monk27bbb2d2015-03-31 16:46:39 -04003340 // v120: Add double tap to wake setting.
3341 if (currentVersion == 119) {
3342 SettingsState secureSettings = getSecureSettingsLocked(userId);
3343 secureSettings.insertSettingLocked(Settings.Secure.DOUBLE_TAP_TO_WAKE,
3344 getContext().getResources().getBoolean(
Svetoslav Ganove080da92016-12-21 17:10:35 -08003345 R.bool.def_double_tap_to_wake) ? "1" : "0", null, true,
Jason Monk27bbb2d2015-03-31 16:46:39 -04003346 SettingsState.SYSTEM_PACKAGE_NAME);
3347
3348 currentVersion = 120;
3349 }
3350
Svetoslav7e0683b2015-08-03 16:02:52 -07003351 if (currentVersion == 120) {
3352 // Before 121, we used a different string encoding logic. We just bump the
3353 // version here; SettingsState knows how to handle pre-version 120 files.
3354 currentVersion = 121;
3355 }
Makoto Onuki3a2c35782015-06-18 11:21:58 -07003356
Martijn Coenen7ab4b7f2015-07-27 15:58:32 +02003357 if (currentVersion == 121) {
3358 // Version 122: allow OEMs to set a default payment component in resources.
3359 // Note that we only write the default if no default has been set;
3360 // if there is, we just leave the default at whatever it currently is.
3361 final SettingsState secureSettings = getSecureSettingsLocked(userId);
3362 String defaultComponent = (getContext().getResources().getString(
3363 R.string.def_nfc_payment_component));
3364 Setting currentSetting = secureSettings.getSettingLocked(
3365 Settings.Secure.NFC_PAYMENT_DEFAULT_COMPONENT);
3366 if (defaultComponent != null && !defaultComponent.isEmpty() &&
Svetoslav Ganovfedb2302016-04-26 18:36:42 -07003367 currentSetting.isNull()) {
Martijn Coenen7ab4b7f2015-07-27 15:58:32 +02003368 secureSettings.insertSettingLocked(
3369 Settings.Secure.NFC_PAYMENT_DEFAULT_COMPONENT,
Svetoslav Ganove080da92016-12-21 17:10:35 -08003370 defaultComponent, null, true, SettingsState.SYSTEM_PACKAGE_NAME);
Martijn Coenen7ab4b7f2015-07-27 15:58:32 +02003371 }
3372 currentVersion = 122;
3373 }
Suprabh Shukla269c11e2015-12-02 16:51:16 -08003374
3375 if (currentVersion == 122) {
3376 // Version 123: Adding a default value for the ability to add a user from
3377 // the lock screen.
3378 if (userId == UserHandle.USER_SYSTEM) {
3379 final SettingsState globalSettings = getGlobalSettingsLocked();
3380 Setting currentSetting = globalSettings.getSettingLocked(
3381 Settings.Global.ADD_USERS_WHEN_LOCKED);
Svetoslav Ganovfedb2302016-04-26 18:36:42 -07003382 if (currentSetting.isNull()) {
Suprabh Shukla269c11e2015-12-02 16:51:16 -08003383 globalSettings.insertSettingLocked(
3384 Settings.Global.ADD_USERS_WHEN_LOCKED,
3385 getContext().getResources().getBoolean(
3386 R.bool.def_add_users_from_lockscreen) ? "1" : "0",
Svetoslav Ganove080da92016-12-21 17:10:35 -08003387 null, true, SettingsState.SYSTEM_PACKAGE_NAME);
Suprabh Shukla269c11e2015-12-02 16:51:16 -08003388 }
3389 }
3390 currentVersion = 123;
3391 }
Bryce Leebd179282015-12-17 19:01:37 -08003392
3393 if (currentVersion == 123) {
Bryce Leeec85f342015-12-16 13:32:28 -08003394 final SettingsState globalSettings = getGlobalSettingsLocked();
3395 String defaultDisabledProfiles = (getContext().getResources().getString(
3396 R.string.def_bluetooth_disabled_profiles));
3397 globalSettings.insertSettingLocked(Settings.Global.BLUETOOTH_DISABLED_PROFILES,
Svetoslav Ganove080da92016-12-21 17:10:35 -08003398 defaultDisabledProfiles, null, true, SettingsState.SYSTEM_PACKAGE_NAME);
Bryce Leebd179282015-12-17 19:01:37 -08003399 currentVersion = 124;
Bryce Leeec85f342015-12-16 13:32:28 -08003400 }
3401
Prathmesh Prabhude16b862016-03-04 15:22:24 -08003402 if (currentVersion == 124) {
3403 // Version 124: allow OEMs to set a default value for whether IME should be
3404 // shown when a physical keyboard is connected.
3405 final SettingsState secureSettings = getSecureSettingsLocked(userId);
3406 Setting currentSetting = secureSettings.getSettingLocked(
3407 Settings.Secure.SHOW_IME_WITH_HARD_KEYBOARD);
Svetoslav Ganovfedb2302016-04-26 18:36:42 -07003408 if (currentSetting.isNull()) {
Prathmesh Prabhude16b862016-03-04 15:22:24 -08003409 secureSettings.insertSettingLocked(
3410 Settings.Secure.SHOW_IME_WITH_HARD_KEYBOARD,
3411 getContext().getResources().getBoolean(
3412 R.bool.def_show_ime_with_hard_keyboard) ? "1" : "0",
Svetoslav Ganove080da92016-12-21 17:10:35 -08003413 null, true, SettingsState.SYSTEM_PACKAGE_NAME);
Prathmesh Prabhude16b862016-03-04 15:22:24 -08003414 }
3415 currentVersion = 125;
3416 }
3417
Ruben Brunk98576cf2016-03-07 18:54:28 -08003418 if (currentVersion == 125) {
3419 // Version 125: Allow OEMs to set the default VR service.
3420 final SettingsState secureSettings = getSecureSettingsLocked(userId);
3421
3422 Setting currentSetting = secureSettings.getSettingLocked(
3423 Settings.Secure.ENABLED_VR_LISTENERS);
Svetoslav Ganovfedb2302016-04-26 18:36:42 -07003424 if (currentSetting.isNull()) {
Ruben Brunk98576cf2016-03-07 18:54:28 -08003425 ArraySet<ComponentName> l =
3426 SystemConfig.getInstance().getDefaultVrComponents();
3427
3428 if (l != null && !l.isEmpty()) {
3429 StringBuilder b = new StringBuilder();
3430 boolean start = true;
3431 for (ComponentName c : l) {
3432 if (!start) {
3433 b.append(':');
3434 }
3435 b.append(c.flattenToString());
3436 start = false;
3437 }
3438 secureSettings.insertSettingLocked(
3439 Settings.Secure.ENABLED_VR_LISTENERS, b.toString(),
Svetoslav Ganove080da92016-12-21 17:10:35 -08003440 null, true, SettingsState.SYSTEM_PACKAGE_NAME);
Ruben Brunk98576cf2016-03-07 18:54:28 -08003441 }
3442
3443 }
3444 currentVersion = 126;
3445 }
3446
Daniel U02ba6122016-04-01 18:41:42 +01003447 if (currentVersion == 126) {
3448 // Version 126: copy the primary values of LOCK_SCREEN_SHOW_NOTIFICATIONS and
3449 // LOCK_SCREEN_ALLOW_PRIVATE_NOTIFICATIONS into managed profile.
3450 if (mUserManager.isManagedProfile(userId)) {
3451 final SettingsState systemSecureSettings =
3452 getSecureSettingsLocked(UserHandle.USER_SYSTEM);
3453
3454 final Setting showNotifications = systemSecureSettings.getSettingLocked(
3455 Settings.Secure.LOCK_SCREEN_SHOW_NOTIFICATIONS);
Seigo Nonaka6e5b6022016-04-27 16:32:44 +09003456 if (!showNotifications.isNull()) {
Daniel U02ba6122016-04-01 18:41:42 +01003457 final SettingsState secureSettings = getSecureSettingsLocked(userId);
3458 secureSettings.insertSettingLocked(
3459 Settings.Secure.LOCK_SCREEN_SHOW_NOTIFICATIONS,
Svetoslav Ganove080da92016-12-21 17:10:35 -08003460 showNotifications.getValue(), null, true,
Daniel U02ba6122016-04-01 18:41:42 +01003461 SettingsState.SYSTEM_PACKAGE_NAME);
3462 }
3463
3464 final Setting allowPrivate = systemSecureSettings.getSettingLocked(
3465 Settings.Secure.LOCK_SCREEN_ALLOW_PRIVATE_NOTIFICATIONS);
Seigo Nonaka6e5b6022016-04-27 16:32:44 +09003466 if (!allowPrivate.isNull()) {
Daniel U02ba6122016-04-01 18:41:42 +01003467 final SettingsState secureSettings = getSecureSettingsLocked(userId);
3468 secureSettings.insertSettingLocked(
3469 Settings.Secure.LOCK_SCREEN_ALLOW_PRIVATE_NOTIFICATIONS,
Svetoslav Ganove080da92016-12-21 17:10:35 -08003470 allowPrivate.getValue(), null, true,
Daniel U02ba6122016-04-01 18:41:42 +01003471 SettingsState.SYSTEM_PACKAGE_NAME);
3472 }
3473 }
3474 currentVersion = 127;
3475 }
3476
Steven Ngdc20ba62016-04-26 18:19:04 +01003477 if (currentVersion == 127) {
Mahaver Chopra3d9805d2016-07-07 16:25:05 +01003478 // version 127 is no longer used.
Steven Ngdc20ba62016-04-26 18:19:04 +01003479 currentVersion = 128;
3480 }
3481
Julia Reynolds1f721e12016-07-11 08:50:58 -04003482 if (currentVersion == 128) {
Julia Reynoldsb852e562017-06-06 16:14:18 -04003483 // Version 128: Removed
Julia Reynolds1f721e12016-07-11 08:50:58 -04003484 currentVersion = 129;
3485 }
3486
Dan Sandler71f85e92016-07-20 13:46:05 -04003487 if (currentVersion == 129) {
3488 // default longpress timeout changed from 500 to 400. If unchanged from the old
3489 // default, update to the new default.
3490 final SettingsState systemSecureSettings =
3491 getSecureSettingsLocked(userId);
3492 final String oldValue = systemSecureSettings.getSettingLocked(
3493 Settings.Secure.LONG_PRESS_TIMEOUT).getValue();
3494 if (TextUtils.equals("500", oldValue)) {
3495 systemSecureSettings.insertSettingLocked(
3496 Settings.Secure.LONG_PRESS_TIMEOUT,
3497 String.valueOf(getContext().getResources().getInteger(
3498 R.integer.def_long_press_timeout_millis)),
Svetoslav Ganove080da92016-12-21 17:10:35 -08003499 null, true, SettingsState.SYSTEM_PACKAGE_NAME);
Dan Sandler71f85e92016-07-20 13:46:05 -04003500 }
3501 currentVersion = 130;
3502 }
3503
Anthony Hugh96e9cc52016-07-12 15:17:24 -07003504 if (currentVersion == 130) {
Adrian Roos69741a22016-10-21 14:49:17 -07003505 // Split Ambient settings
3506 final SettingsState secureSettings = getSecureSettingsLocked(userId);
3507 boolean dozeExplicitlyDisabled = "0".equals(secureSettings.
3508 getSettingLocked(Settings.Secure.DOZE_ENABLED).getValue());
3509
3510 if (dozeExplicitlyDisabled) {
Lucas Dupin4359b552018-08-09 15:07:54 -07003511 secureSettings.insertSettingLocked(Settings.Secure.DOZE_PICK_UP_GESTURE,
Svetoslav Ganove080da92016-12-21 17:10:35 -08003512 "0", null, true, SettingsState.SYSTEM_PACKAGE_NAME);
Lucas Dupin4359b552018-08-09 15:07:54 -07003513 secureSettings.insertSettingLocked(Settings.Secure.DOZE_DOUBLE_TAP_GESTURE,
Svetoslav Ganove080da92016-12-21 17:10:35 -08003514 "0", null, true, SettingsState.SYSTEM_PACKAGE_NAME);
Adrian Roos69741a22016-10-21 14:49:17 -07003515 }
3516 currentVersion = 131;
3517 }
3518
3519 if (currentVersion == 131) {
Anthony Hugh96e9cc52016-07-12 15:17:24 -07003520 // Initialize new multi-press timeout to default value
3521 final SettingsState systemSecureSettings = getSecureSettingsLocked(userId);
3522 final String oldValue = systemSecureSettings.getSettingLocked(
3523 Settings.Secure.MULTI_PRESS_TIMEOUT).getValue();
3524 if (TextUtils.equals(null, oldValue)) {
3525 systemSecureSettings.insertSettingLocked(
3526 Settings.Secure.MULTI_PRESS_TIMEOUT,
3527 String.valueOf(getContext().getResources().getInteger(
3528 R.integer.def_multi_press_timeout_millis)),
Svetoslav Ganove080da92016-12-21 17:10:35 -08003529 null, true, SettingsState.SYSTEM_PACKAGE_NAME);
Anthony Hugh96e9cc52016-07-12 15:17:24 -07003530 }
3531
Adrian Roos69741a22016-10-21 14:49:17 -07003532 currentVersion = 132;
Anthony Hugh96e9cc52016-07-12 15:17:24 -07003533 }
3534
Adrian Roos69741a22016-10-21 14:49:17 -07003535 if (currentVersion == 132) {
3536 // Version 132: Allow managed profile to optionally use the parent's ringtones
Andre Lagoea35e072016-08-04 13:41:13 +01003537 final SettingsState systemSecureSettings = getSecureSettingsLocked(userId);
3538 String defaultSyncParentSounds = (getContext().getResources()
3539 .getBoolean(R.bool.def_sync_parent_sounds) ? "1" : "0");
3540 systemSecureSettings.insertSettingLocked(
Svetoslav Ganove080da92016-12-21 17:10:35 -08003541 Settings.Secure.SYNC_PARENT_SOUNDS, defaultSyncParentSounds,
3542 null, true, SettingsState.SYSTEM_PACKAGE_NAME);
Adrian Roos69741a22016-10-21 14:49:17 -07003543 currentVersion = 133;
Andre Lagoea35e072016-08-04 13:41:13 +01003544 }
3545
Adrian Roos69741a22016-10-21 14:49:17 -07003546 if (currentVersion == 133) {
3547 // Version 133: Add default end button behavior
Keun-young Parkec7a1182016-10-18 11:52:38 -07003548 final SettingsState systemSettings = getSystemSettingsLocked(userId);
davidlnedb31e12018-09-25 10:21:20 -07003549 if (systemSettings.getSettingLocked(Settings.System.END_BUTTON_BEHAVIOR)
3550 .isNull()) {
Keun-young Parkec7a1182016-10-18 11:52:38 -07003551 String defaultEndButtonBehavior = Integer.toString(getContext()
3552 .getResources().getInteger(R.integer.def_end_button_behavior));
3553 systemSettings.insertSettingLocked(Settings.System.END_BUTTON_BEHAVIOR,
Svetoslav Ganove080da92016-12-21 17:10:35 -08003554 defaultEndButtonBehavior, null, true,
3555 SettingsState.SYSTEM_PACKAGE_NAME);
Keun-young Parkec7a1182016-10-18 11:52:38 -07003556 }
Adrian Roos69741a22016-10-21 14:49:17 -07003557 currentVersion = 134;
Keun-young Parkec7a1182016-10-18 11:52:38 -07003558 }
3559
Phil Weaver89e3ffc2016-09-19 13:51:10 -07003560 if (currentVersion == 134) {
3561 // Remove setting that specifies if magnification values should be preserved.
3562 // This setting defaulted to true and never has a UI.
3563 getSecureSettingsLocked(userId).deleteSettingLocked(
3564 Settings.Secure.ACCESSIBILITY_DISPLAY_MAGNIFICATION_AUTO_UPDATE);
3565 currentVersion = 135;
3566 }
3567
Jeremy Joslin8bdad342016-12-14 11:46:47 -08003568 if (currentVersion == 135) {
Jeremy Joslinc9eb3c42017-02-08 10:45:30 -08003569 // Version 135 no longer used.
Jeremy Joslin8bdad342016-12-14 11:46:47 -08003570 currentVersion = 136;
3571 }
3572
Mark Rathjend891f012017-01-19 04:10:37 +00003573 if (currentVersion == 136) {
3574 // Version 136: Store legacy SSAID for all apps currently installed on the
3575 // device as first step in migrating SSAID to be unique per application.
3576
3577 final boolean isUpgrade;
3578 try {
Svet Ganovd8eb8b22019-04-05 18:52:08 -07003579 isUpgrade = mPackageManager.isDeviceUpgrading();
Mark Rathjend891f012017-01-19 04:10:37 +00003580 } catch (RemoteException e) {
3581 throw new IllegalStateException("Package manager not available");
3582 }
3583 // Only retain legacy ssaid if the device is performing an OTA. After wiping
3584 // user data or first boot on a new device should use new ssaid generation.
3585 if (isUpgrade) {
3586 // Retrieve the legacy ssaid from the secure settings table.
Mark Rathjenea617592017-01-18 23:03:41 -08003587 final Setting legacySsaidSetting = getSettingLocked(SETTINGS_TYPE_SECURE,
3588 userId, Settings.Secure.ANDROID_ID);
3589 if (legacySsaidSetting == null || legacySsaidSetting.isNull()
3590 || legacySsaidSetting.getValue() == null) {
3591 throw new IllegalStateException("Legacy ssaid not accessible");
3592 }
3593 final String legacySsaid = legacySsaidSetting.getValue();
Mark Rathjend891f012017-01-19 04:10:37 +00003594
3595 // Fill each uid with the legacy ssaid to be backwards compatible.
3596 final List<PackageInfo> packages;
3597 try {
Tetsutoki Shiozawaebe0e5f2018-01-17 11:07:09 +09003598 packages = mPackageManager.getInstalledPackages(
3599 PackageManager.MATCH_UNINSTALLED_PACKAGES,
3600 userId).getList();
Mark Rathjend891f012017-01-19 04:10:37 +00003601 } catch (RemoteException e) {
3602 throw new IllegalStateException("Package manager not available");
3603 }
3604
3605 final SettingsState ssaidSettings = getSsaidSettingsLocked(userId);
3606 for (PackageInfo info : packages) {
3607 // Check if the UID already has an entry in the table.
3608 final String uid = Integer.toString(info.applicationInfo.uid);
3609 final Setting ssaid = ssaidSettings.getSettingLocked(uid);
3610
3611 if (ssaid.isNull() || ssaid.getValue() == null) {
3612 // Android Id doesn't exist for this package so create it.
3613 ssaidSettings.insertSettingLocked(uid, legacySsaid, null, true,
3614 info.packageName);
Tetsutoki Shiozawaebe0e5f2018-01-17 11:07:09 +09003615 if (DEBUG) {
3616 Slog.d(LOG_TAG, "Keep the legacy ssaid for uid=" + uid);
3617 }
Mark Rathjend891f012017-01-19 04:10:37 +00003618 }
3619 }
3620 }
3621
3622 currentVersion = 137;
3623 }
Suprabh Shuklae3745ee2017-02-02 20:01:11 -08003624 if (currentVersion == 137) {
3625 // Version 138: Settings.Secure#INSTALL_NON_MARKET_APPS is deprecated and its
3626 // default value set to 1. The user can no longer change the value of this
3627 // setting through the UI.
3628 final SettingsState secureSetting = getSecureSettingsLocked(userId);
3629 if (!mUserManager.hasUserRestriction(
Suprabh Shukla0b1356f2017-02-21 14:33:50 -08003630 UserManager.DISALLOW_INSTALL_UNKNOWN_SOURCES, UserHandle.of(userId))
3631 && secureSetting.getSettingLocked(
3632 Settings.Secure.INSTALL_NON_MARKET_APPS).getValue().equals("0")) {
3633
Suprabh Shuklae3745ee2017-02-02 20:01:11 -08003634 secureSetting.insertSettingLocked(Settings.Secure.INSTALL_NON_MARKET_APPS,
3635 "1", null, true, SettingsState.SYSTEM_PACKAGE_NAME);
Suprabh Shukla0b1356f2017-02-21 14:33:50 -08003636 // For managed profiles with profile owners, DevicePolicyManagerService
3637 // may want to set the user restriction in this case
3638 secureSetting.insertSettingLocked(
3639 Settings.Secure.UNKNOWN_SOURCES_DEFAULT_REVERSED, "1", null, true,
3640 SettingsState.SYSTEM_PACKAGE_NAME);
Suprabh Shuklae3745ee2017-02-02 20:01:11 -08003641 }
3642 currentVersion = 138;
3643 }
Mark Rathjend891f012017-01-19 04:10:37 +00003644
Jeremy Joslinc9eb3c42017-02-08 10:45:30 -08003645 if (currentVersion == 138) {
Jeremy Joslin27d14c42017-02-15 12:02:03 -08003646 // Version 139: Removed.
Jeremy Joslinc9eb3c42017-02-08 10:45:30 -08003647 currentVersion = 139;
3648 }
3649
Phil Weaver385912e2017-02-10 10:06:56 -08003650 if (currentVersion == 139) {
3651 // Version 140: Settings.Secure#ACCESSIBILITY_SPEAK_PASSWORD is deprecated and
3652 // the user can no longer change the value of this setting through the UI.
3653 // Force to true.
3654 final SettingsState secureSettings = getSecureSettingsLocked(userId);
3655 secureSettings.updateSettingLocked(Settings.Secure.ACCESSIBILITY_SPEAK_PASSWORD,
3656 "1", null, true, SettingsState.SYSTEM_PACKAGE_NAME);
3657 currentVersion = 140;
3658 }
3659
Julia Reynoldsad0d9e02017-02-15 08:41:48 -05003660 if (currentVersion == 140) {
Julia Reynoldsb852e562017-06-06 16:14:18 -04003661 // Version 141: Removed
Julia Reynoldsad0d9e02017-02-15 08:41:48 -05003662 currentVersion = 141;
3663 }
3664
Svet Ganov13701552017-02-23 12:45:17 -08003665 if (currentVersion == 141) {
Svetoslav Ganovf7654c52017-08-16 17:33:22 -07003666 // This implementation was incorrectly setting the current value of
3667 // settings changed by non-system packages as the default which default
3668 // is set by the system. We add a new upgrade step at the end to properly
3669 // handle this case which would also fix incorrect changes made by the
3670 // old implementation of this step.
Svet Ganov13701552017-02-23 12:45:17 -08003671 currentVersion = 142;
3672 }
3673
Stephen Chen5d0922f2017-03-27 10:28:04 -07003674 if (currentVersion == 142) {
Felipe Lemeff355092017-04-03 12:55:02 -07003675 // Version 143: Set a default value for Wi-Fi wakeup feature.
Stephen Chen5d0922f2017-03-27 10:28:04 -07003676 if (userId == UserHandle.USER_SYSTEM) {
3677 final SettingsState globalSettings = getGlobalSettingsLocked();
3678 Setting currentSetting = globalSettings.getSettingLocked(
3679 Settings.Global.WIFI_WAKEUP_ENABLED);
3680 if (currentSetting.isNull()) {
3681 globalSettings.insertSettingLocked(
3682 Settings.Global.WIFI_WAKEUP_ENABLED,
3683 getContext().getResources().getBoolean(
3684 R.bool.def_wifi_wakeup_enabled) ? "1" : "0",
3685 null, true, SettingsState.SYSTEM_PACKAGE_NAME);
3686 }
3687 }
3688
3689 currentVersion = 143;
3690 }
3691
Felipe Lemeff355092017-04-03 12:55:02 -07003692 if (currentVersion == 143) {
3693 // Version 144: Set a default value for Autofill service.
3694 final SettingsState secureSettings = getSecureSettingsLocked(userId);
3695 final Setting currentSetting = secureSettings
3696 .getSettingLocked(Settings.Secure.AUTOFILL_SERVICE);
3697 if (currentSetting.isNull()) {
3698 final String defaultValue = getContext().getResources().getString(
3699 com.android.internal.R.string.config_defaultAutofillService);
3700 if (defaultValue != null) {
3701 Slog.d(LOG_TAG, "Setting [" + defaultValue + "] as Autofill Service "
3702 + "for user " + userId);
3703 secureSettings.insertSettingLocked(Settings.Secure.AUTOFILL_SERVICE,
3704 defaultValue, null, true, SettingsState.SYSTEM_PACKAGE_NAME);
3705 }
3706 }
3707
3708 currentVersion = 144;
3709 }
3710
Jeremy Joslin45caa252017-05-04 11:22:46 -07003711 if (currentVersion == 144) {
Amin Shaikh86367962017-06-07 08:58:22 -07003712 // Version 145: Removed
3713 currentVersion = 145;
3714 }
3715
3716 if (currentVersion == 145) {
Svetoslav Ganovf7654c52017-08-16 17:33:22 -07003717 // Version 146: In step 142 we had a bug where incorrectly
3718 // some settings were considered system set and as a result
3719 // made the default and marked as the default being set by
3720 // the system. Here reevaluate the default and default system
3721 // set flags. This would both fix corruption by the old impl
3722 // of step 142 and also properly handle devices which never
3723 // run 142.
Jeremy Joslin45caa252017-05-04 11:22:46 -07003724 if (userId == UserHandle.USER_SYSTEM) {
Svetoslav Ganovf7654c52017-08-16 17:33:22 -07003725 SettingsState globalSettings = getGlobalSettingsLocked();
3726 ensureLegacyDefaultValueAndSystemSetUpdatedLocked(globalSettings, userId);
3727 globalSettings.persistSyncLocked();
Jeremy Joslin45caa252017-05-04 11:22:46 -07003728 }
3729
Svetoslav Ganovf7654c52017-08-16 17:33:22 -07003730 SettingsState secureSettings = getSecureSettingsLocked(mUserId);
3731 ensureLegacyDefaultValueAndSystemSetUpdatedLocked(secureSettings, userId);
3732 secureSettings.persistSyncLocked();
3733
3734 SettingsState systemSettings = getSystemSettingsLocked(mUserId);
3735 ensureLegacyDefaultValueAndSystemSetUpdatedLocked(systemSettings, userId);
3736 systemSettings.persistSyncLocked();
3737
Amin Shaikh86367962017-06-07 08:58:22 -07003738 currentVersion = 146;
Jeremy Joslin45caa252017-05-04 11:22:46 -07003739 }
3740
Narayan Kamath94bcdbc2017-07-17 15:32:53 +01003741 if (currentVersion == 146) {
Joe LaPenna250d7842018-01-25 10:19:42 -08003742 // Version 147: Removed. (This version previously allowed showing the
3743 // "wifi_wakeup_available" setting).
3744 // The setting that was added here is deleted in 153.
Svetoslav Ganovf7654c52017-08-16 17:33:22 -07003745 currentVersion = 147;
3746 }
3747
3748 if (currentVersion == 147) {
3749 // Version 148: Set the default value for DEFAULT_RESTRICT_BACKGROUND_DATA.
Narayan Kamath94bcdbc2017-07-17 15:32:53 +01003750 if (userId == UserHandle.USER_SYSTEM) {
3751 final SettingsState globalSettings = getGlobalSettingsLocked();
3752 final Setting currentSetting = globalSettings.getSettingLocked(
3753 Global.DEFAULT_RESTRICT_BACKGROUND_DATA);
3754 if (currentSetting.isNull()) {
3755 globalSettings.insertSettingLocked(
3756 Global.DEFAULT_RESTRICT_BACKGROUND_DATA,
3757 getContext().getResources().getBoolean(
3758 R.bool.def_restrict_background_data) ? "1" : "0",
3759 null, true, SettingsState.SYSTEM_PACKAGE_NAME);
3760 }
3761 }
Svetoslav Ganovf7654c52017-08-16 17:33:22 -07003762 currentVersion = 148;
Narayan Kamath94bcdbc2017-07-17 15:32:53 +01003763 }
3764
Tim Zhengcc1e76a2017-08-30 17:46:19 -07003765 if (currentVersion == 148) {
3766 // Version 149: Set the default value for BACKUP_MANAGER_CONSTANTS.
3767 final SettingsState systemSecureSettings = getSecureSettingsLocked(userId);
3768 final String oldValue = systemSecureSettings.getSettingLocked(
3769 Settings.Secure.BACKUP_MANAGER_CONSTANTS).getValue();
3770 if (TextUtils.equals(null, oldValue)) {
3771 final String defaultValue = getContext().getResources().getString(
3772 R.string.def_backup_manager_constants);
3773 if (!TextUtils.isEmpty(defaultValue)) {
3774 systemSecureSettings.insertSettingLocked(
3775 Settings.Secure.BACKUP_MANAGER_CONSTANTS, defaultValue, null,
3776 true, SettingsState.SYSTEM_PACKAGE_NAME);
3777 }
3778 }
Tim Zhengcc1e76a2017-08-30 17:46:19 -07003779 currentVersion = 149;
3780 }
Jacky Cheung7076a312017-10-02 10:40:48 -07003781
3782 if (currentVersion == 149) {
3783 // Version 150: Set a default value for mobile data always on
3784 final SettingsState globalSettings = getGlobalSettingsLocked();
3785 final Setting currentSetting = globalSettings.getSettingLocked(
3786 Settings.Global.MOBILE_DATA_ALWAYS_ON);
3787 if (currentSetting.isNull()) {
3788 globalSettings.insertSettingLocked(
3789 Settings.Global.MOBILE_DATA_ALWAYS_ON,
3790 getContext().getResources().getBoolean(
3791 R.bool.def_mobile_data_always_on) ? "1" : "0",
3792 null, true, SettingsState.SYSTEM_PACKAGE_NAME);
3793 }
3794
3795 currentVersion = 150;
3796 }
3797
Mike Digman4af4a6f2018-01-16 14:49:38 -08003798 if (currentVersion == 150) {
Mike Digman32e03312018-05-16 16:43:23 -07003799 // Version 151: Removed.
Mike Digman4af4a6f2018-01-16 14:49:38 -08003800 currentVersion = 151;
3801 }
3802
Joe LaPenna4f50ed42018-01-22 14:54:45 -08003803 if (currentVersion == 151) {
Joe LaPenna250d7842018-01-25 10:19:42 -08003804 // Version 152: Removed. (This version made the setting for wifi_wakeup enabled
3805 // by default but it is now no longer configurable).
3806 // The setting updated here is deleted in 153.
Joe LaPenna4f50ed42018-01-22 14:54:45 -08003807 currentVersion = 152;
3808 }
3809
Joe LaPenna250d7842018-01-25 10:19:42 -08003810 if (currentVersion == 152) {
3811 getGlobalSettingsLocked().deleteSettingLocked("wifi_wakeup_available");
3812 currentVersion = 153;
3813 }
3814
Ben Linb4df8bc2018-01-29 11:48:20 -08003815 if (currentVersion == 153) {
3816 // Version 154: Read notification badge configuration from config.
3817 // If user has already set the value, don't do anything.
3818 final SettingsState systemSecureSettings = getSecureSettingsLocked(userId);
3819 final Setting showNotificationBadges = systemSecureSettings.getSettingLocked(
3820 Settings.Secure.NOTIFICATION_BADGING);
3821 if (showNotificationBadges.isNull()) {
3822 final boolean defaultValue = getContext().getResources().getBoolean(
3823 com.android.internal.R.bool.config_notificationBadging);
3824 systemSecureSettings.insertSettingLocked(
3825 Secure.NOTIFICATION_BADGING,
3826 defaultValue ? "1" : "0",
3827 null, true, SettingsState.SYSTEM_PACKAGE_NAME);
3828 }
3829 currentVersion = 154;
3830 }
3831
Bernardo Rufinoeaa78b92018-01-26 11:25:37 +00003832 if (currentVersion == 154) {
3833 // Version 155: Set the default value for BACKUP_LOCAL_TRANSPORT_PARAMETERS.
3834 final SettingsState systemSecureSettings = getSecureSettingsLocked(userId);
3835 final String oldValue = systemSecureSettings.getSettingLocked(
3836 Settings.Secure.BACKUP_LOCAL_TRANSPORT_PARAMETERS).getValue();
3837 if (TextUtils.equals(null, oldValue)) {
3838 final String defaultValue = getContext().getResources().getString(
3839 R.string.def_backup_local_transport_parameters);
3840 if (!TextUtils.isEmpty(defaultValue)) {
3841 systemSecureSettings.insertSettingLocked(
3842 Settings.Secure.BACKUP_LOCAL_TRANSPORT_PARAMETERS, defaultValue,
3843 null, true, SettingsState.SYSTEM_PACKAGE_NAME);
3844 }
3845
3846 }
3847 currentVersion = 155;
3848 }
3849
Beverlyda904812018-03-02 09:55:30 -05003850 if (currentVersion == 155) {
Beverlyf364d7c2019-10-10 16:44:43 -04003851 // Version 156: migrated to version 184
Beverlyda904812018-03-02 09:55:30 -05003852 currentVersion = 156;
3853 }
3854
Beverly09da25f2018-02-26 09:17:07 -05003855 if (currentVersion == 156) {
Beverly91d0a632018-07-02 16:45:00 -04003856 // Version 157: Set a default value for zen duration,
3857 // in version 169, zen duration is moved to secure settings
Beverly09da25f2018-02-26 09:17:07 -05003858 final SettingsState globalSettings = getGlobalSettingsLocked();
3859 final Setting currentSetting = globalSettings.getSettingLocked(
3860 Global.ZEN_DURATION);
3861 if (currentSetting.isNull()) {
3862 String defaultZenDuration = Integer.toString(getContext()
3863 .getResources().getInteger(R.integer.def_zen_duration));
3864 globalSettings.insertSettingLocked(
3865 Global.ZEN_DURATION, defaultZenDuration,
3866 null, true, SettingsState.SYSTEM_PACKAGE_NAME);
3867 }
Beverly09da25f2018-02-26 09:17:07 -05003868 currentVersion = 157;
3869 }
Annie Mengd069a882018-03-13 15:31:40 +00003870
3871 if (currentVersion == 157) {
3872 // Version 158: Set default value for BACKUP_AGENT_TIMEOUT_PARAMETERS.
3873 final SettingsState globalSettings = getGlobalSettingsLocked();
3874 final String oldValue = globalSettings.getSettingLocked(
3875 Settings.Global.BACKUP_AGENT_TIMEOUT_PARAMETERS).getValue();
3876 if (TextUtils.equals(null, oldValue)) {
3877 final String defaultValue = getContext().getResources().getString(
3878 R.string.def_backup_agent_timeout_parameters);
3879 if (!TextUtils.isEmpty(defaultValue)) {
3880 globalSettings.insertSettingLocked(
3881 Settings.Global.BACKUP_AGENT_TIMEOUT_PARAMETERS, defaultValue,
3882 null, true,
3883 SettingsState.SYSTEM_PACKAGE_NAME);
3884 }
3885 }
3886 currentVersion = 158;
3887 }
Roshan Pius9c396672018-03-02 14:54:13 -08003888
3889 if (currentVersion == 158) {
3890 // Remove setting that specifies wifi bgscan throttling params
3891 getGlobalSettingsLocked().deleteSettingLocked(
3892 "wifi_scan_background_throttle_interval_ms");
3893 getGlobalSettingsLocked().deleteSettingLocked(
3894 "wifi_scan_background_throttle_package_whitelist");
3895 currentVersion = 159;
3896 }
3897
Pavel Grafovc5c97302018-03-19 13:37:15 +00003898 if (currentVersion == 159) {
3899 // Version 160: Hiding notifications from the lockscreen is only available as
3900 // primary user option, profiles can only make them redacted. If a profile was
3901 // configured to not show lockscreen notifications, ensure that at the very
3902 // least these will be come hidden.
3903 if (mUserManager.isManagedProfile(userId)) {
3904 final SettingsState secureSettings = getSecureSettingsLocked(userId);
3905 Setting showNotifications = secureSettings.getSettingLocked(
3906 Settings.Secure.LOCK_SCREEN_SHOW_NOTIFICATIONS);
3907 // The default value is "1", check if user has turned it off.
3908 if ("0".equals(showNotifications.getValue())) {
3909 secureSettings.insertSettingLocked(
3910 Secure.LOCK_SCREEN_ALLOW_PRIVATE_NOTIFICATIONS, "0",
3911 null /* tag */, false /* makeDefault */,
3912 SettingsState.SYSTEM_PACKAGE_NAME);
3913 }
3914 // The setting is no longer valid for managed profiles, it should be
3915 // treated as if it was set to "1".
3916 secureSettings.deleteSettingLocked(Secure.LOCK_SCREEN_SHOW_NOTIFICATIONS);
3917 }
3918 currentVersion = 160;
3919 }
Philip P. Moltmann18e3eb82018-03-09 16:55:55 -08003920
3921 if (currentVersion == 160) {
3922 // Version 161: Set the default value for
Philip P. Moltmann7e25b3d2018-03-09 20:22:58 -08003923 // MAX_SOUND_TRIGGER_DETECTION_SERVICE_OPS_PER_DAY and
Philip P. Moltmann18e3eb82018-03-09 16:55:55 -08003924 // SOUND_TRIGGER_DETECTION_SERVICE_OP_TIMEOUT
3925 final SettingsState globalSettings = getGlobalSettingsLocked();
3926
3927 String oldValue = globalSettings.getSettingLocked(
Philip P. Moltmann7e25b3d2018-03-09 20:22:58 -08003928 Global.MAX_SOUND_TRIGGER_DETECTION_SERVICE_OPS_PER_DAY).getValue();
3929 if (TextUtils.equals(null, oldValue)) {
3930 globalSettings.insertSettingLocked(
3931 Settings.Global.MAX_SOUND_TRIGGER_DETECTION_SERVICE_OPS_PER_DAY,
3932 Integer.toString(getContext().getResources().getInteger(
3933 R.integer.def_max_sound_trigger_detection_service_ops_per_day)),
3934 null, true, SettingsState.SYSTEM_PACKAGE_NAME);
3935 }
3936
3937 oldValue = globalSettings.getSettingLocked(
Philip P. Moltmann18e3eb82018-03-09 16:55:55 -08003938 Global.SOUND_TRIGGER_DETECTION_SERVICE_OP_TIMEOUT).getValue();
3939 if (TextUtils.equals(null, oldValue)) {
3940 globalSettings.insertSettingLocked(
3941 Settings.Global.SOUND_TRIGGER_DETECTION_SERVICE_OP_TIMEOUT,
3942 Integer.toString(getContext().getResources().getInteger(
3943 R.integer.def_sound_trigger_detection_service_op_timeout)),
3944 null, true, SettingsState.SYSTEM_PACKAGE_NAME);
3945 }
3946 currentVersion = 161;
3947 }
3948
Mike Digman55272862018-02-20 14:35:17 -08003949 if (currentVersion == 161) {
3950 // Version 161: Add a gesture for silencing phones
3951 final SettingsState secureSettings = getSecureSettingsLocked(userId);
3952 final Setting currentSetting = secureSettings.getSettingLocked(
3953 Secure.VOLUME_HUSH_GESTURE);
3954 if (currentSetting.isNull()) {
3955 secureSettings.insertSettingLocked(
3956 Secure.VOLUME_HUSH_GESTURE,
3957 Integer.toString(Secure.VOLUME_HUSH_VIBRATE),
3958 null, true, SettingsState.SYSTEM_PACKAGE_NAME);
3959 }
3960
3961 currentVersion = 162;
3962 }
3963
Julia Reynoldsc4e5ecf2018-04-11 11:33:32 -04003964 if (currentVersion == 162) {
Julia Reynolds76bfa602018-04-23 09:38:47 -04003965 // Version 162: REMOVED: Add a gesture for silencing phones
Julia Reynoldsc4e5ecf2018-04-11 11:33:32 -04003966 currentVersion = 163;
3967 }
3968
Philip P. Moltmanncb58a832018-04-16 09:19:42 -07003969 if (currentVersion == 163) {
3970 // Version 163: Update default value of
3971 // MAX_SOUND_TRIGGER_DETECTION_SERVICE_OPS_PER_DAY from old to new default
3972 final SettingsState settings = getGlobalSettingsLocked();
3973 final Setting currentSetting = settings.getSettingLocked(
3974 Global.MAX_SOUND_TRIGGER_DETECTION_SERVICE_OPS_PER_DAY);
3975 if (currentSetting.isDefaultFromSystem()) {
3976 settings.insertSettingLocked(
3977 Settings.Global.MAX_SOUND_TRIGGER_DETECTION_SERVICE_OPS_PER_DAY,
3978 Integer.toString(getContext().getResources().getInteger(
3979 R.integer
3980 .def_max_sound_trigger_detection_service_ops_per_day)),
3981 null, true, SettingsState.SYSTEM_PACKAGE_NAME);
3982 }
3983
3984 currentVersion = 164;
3985 }
3986
Julia Reynolds76bfa602018-04-23 09:38:47 -04003987 if (currentVersion == 164) {
Julia Reynolds24836c52018-06-06 14:36:03 -04003988 // Version 164: REMOVED: show zen upgrade notification
Julia Reynolds76bfa602018-04-23 09:38:47 -04003989 currentVersion = 165;
3990 }
3991
Beverly301e92a2018-04-27 09:43:05 -04003992 if (currentVersion == 165) {
Beverly91d0a632018-07-02 16:45:00 -04003993 // Version 165: MOVED: Show zen settings suggestion and zen updated settings
3994 // moved to secure settings and are set in version 169
Beverly301e92a2018-04-27 09:43:05 -04003995 currentVersion = 166;
3996 }
3997
Beverly38fcfd02018-05-18 17:33:40 -04003998 if (currentVersion == 166) {
3999 // Version 166: add default values for hush gesture used and manual ringer
4000 // toggle
4001 final SettingsState secureSettings = getSecureSettingsLocked(userId);
4002 Setting currentHushUsedSetting = secureSettings.getSettingLocked(
4003 Secure.HUSH_GESTURE_USED);
4004 if (currentHushUsedSetting.isNull()) {
4005 secureSettings.insertSettingLocked(
4006 Settings.Secure.HUSH_GESTURE_USED, "0", null, true,
4007 SettingsState.SYSTEM_PACKAGE_NAME);
4008 }
4009
4010 Setting currentRingerToggleCountSetting = secureSettings.getSettingLocked(
4011 Secure.MANUAL_RINGER_TOGGLE_COUNT);
4012 if (currentRingerToggleCountSetting.isNull()) {
4013 secureSettings.insertSettingLocked(
4014 Settings.Secure.MANUAL_RINGER_TOGGLE_COUNT, "0", null, true,
4015 SettingsState.SYSTEM_PACKAGE_NAME);
4016 }
4017 currentVersion = 167;
4018 }
4019
Beverly155c9d22018-05-23 18:03:23 -04004020 if (currentVersion == 167) {
Beverly91d0a632018-07-02 16:45:00 -04004021 // Version 167: MOVED - Settings.Global.CHARGING_VIBRATION_ENABLED moved to
4022 // Settings.Secure.CHARGING_VIBRATION_ENABLED, set in version 170
Beverly155c9d22018-05-23 18:03:23 -04004023 currentVersion = 168;
4024 }
4025
Michael Wright0e9eeee2018-05-26 00:31:20 +01004026 if (currentVersion == 168) {
4027 // Version 168: by default, vibrate for phone calls
4028 final SettingsState systemSettings = getSystemSettingsLocked(userId);
4029 final Setting currentSetting = systemSettings.getSettingLocked(
4030 Settings.System.VIBRATE_WHEN_RINGING);
4031 if (currentSetting.isNull()) {
4032 systemSettings.insertSettingLocked(
4033 Settings.System.VIBRATE_WHEN_RINGING,
4034 getContext().getResources().getBoolean(
4035 R.bool.def_vibrate_when_ringing) ? "1" : "0",
4036 null, true, SettingsState.SYSTEM_PACKAGE_NAME);
4037 }
4038 currentVersion = 169;
4039 }
4040
Nadav Barf9f115d2018-06-24 10:06:50 +03004041 if (currentVersion == 169) {
Beverly91d0a632018-07-02 16:45:00 -04004042 // Version 169: Set the default value for Secure Settings ZEN_DURATION,
4043 // SHOW_ZEN_SETTINGS_SUGGESTION, ZEN_SETTINGS_UPDATE and
4044 // ZEN_SETTINGS_SUGGESTION_VIEWED
Nadav Barf9f115d2018-06-24 10:06:50 +03004045
Beverly91d0a632018-07-02 16:45:00 -04004046 final SettingsState globalSettings = getGlobalSettingsLocked();
4047 final Setting globalZenDuration = globalSettings.getSettingLocked(
4048 Global.ZEN_DURATION);
4049
4050 final SettingsState secureSettings = getSecureSettingsLocked(userId);
4051 final Setting secureZenDuration = secureSettings.getSettingLocked(
4052 Secure.ZEN_DURATION);
4053
4054 // ZEN_DURATION
4055 if (!globalZenDuration.isNull()) {
4056 secureSettings.insertSettingLocked(
4057 Secure.ZEN_DURATION, globalZenDuration.getValue(), null, false,
4058 SettingsState.SYSTEM_PACKAGE_NAME);
4059
4060 // set global zen duration setting to null since it's deprecated
4061 globalSettings.insertSettingLocked(
4062 Global.ZEN_DURATION, null, null, true,
4063 SettingsState.SYSTEM_PACKAGE_NAME);
4064 } else if (secureZenDuration.isNull()) {
4065 String defaultZenDuration = Integer.toString(getContext()
4066 .getResources().getInteger(R.integer.def_zen_duration));
4067 secureSettings.insertSettingLocked(
4068 Secure.ZEN_DURATION, defaultZenDuration, null, true,
4069 SettingsState.SYSTEM_PACKAGE_NAME);
Nadav Barf9f115d2018-06-24 10:06:50 +03004070 }
Beverly91d0a632018-07-02 16:45:00 -04004071
4072 // SHOW_ZEN_SETTINGS_SUGGESTION
4073 final Setting currentShowZenSettingSuggestion = secureSettings.getSettingLocked(
4074 Secure.SHOW_ZEN_SETTINGS_SUGGESTION);
4075 if (currentShowZenSettingSuggestion.isNull()) {
4076 secureSettings.insertSettingLocked(
4077 Secure.SHOW_ZEN_SETTINGS_SUGGESTION, "1",
4078 null, true, SettingsState.SYSTEM_PACKAGE_NAME);
4079 }
4080
4081 // ZEN_SETTINGS_UPDATED
4082 final Setting currentUpdatedSetting = secureSettings.getSettingLocked(
4083 Secure.ZEN_SETTINGS_UPDATED);
4084 if (currentUpdatedSetting.isNull()) {
4085 secureSettings.insertSettingLocked(
4086 Secure.ZEN_SETTINGS_UPDATED, "0",
4087 null, true, SettingsState.SYSTEM_PACKAGE_NAME);
4088 }
4089
4090 // ZEN_SETTINGS_SUGGESTION_VIEWED
4091 final Setting currentSettingSuggestionViewed = secureSettings.getSettingLocked(
4092 Secure.ZEN_SETTINGS_SUGGESTION_VIEWED);
4093 if (currentSettingSuggestionViewed.isNull()) {
4094 secureSettings.insertSettingLocked(
4095 Secure.ZEN_SETTINGS_SUGGESTION_VIEWED, "0",
4096 null, true, SettingsState.SYSTEM_PACKAGE_NAME);
4097 }
4098
Nadav Barf9f115d2018-06-24 10:06:50 +03004099 currentVersion = 170;
4100 }
4101
Beverly91d0a632018-07-02 16:45:00 -04004102 if (currentVersion == 170) {
4103 // Version 170: Set the default value for Secure Settings:
4104 // CHARGING_SOUNDS_ENABLED and CHARGING_VIBRATION_ENABLED
4105
4106 final SettingsState globalSettings = getGlobalSettingsLocked();
4107 final SettingsState secureSettings = getSecureSettingsLocked(userId);
4108
4109 // CHARGING_SOUNDS_ENABLED
4110 final Setting globalChargingSoundEnabled = globalSettings.getSettingLocked(
4111 Global.CHARGING_SOUNDS_ENABLED);
4112 final Setting secureChargingSoundsEnabled = secureSettings.getSettingLocked(
4113 Secure.CHARGING_SOUNDS_ENABLED);
4114
4115 if (!globalChargingSoundEnabled.isNull()) {
Beverlyff9c5872019-01-02 15:44:00 -05004116 if (secureChargingSoundsEnabled.isNull()) {
4117 secureSettings.insertSettingLocked(
4118 Secure.CHARGING_SOUNDS_ENABLED,
4119 globalChargingSoundEnabled.getValue(), null, false,
4120 SettingsState.SYSTEM_PACKAGE_NAME);
4121 }
Beverly91d0a632018-07-02 16:45:00 -04004122
4123 // set global charging_sounds_enabled setting to null since it's deprecated
4124 globalSettings.insertSettingLocked(
4125 Global.CHARGING_SOUNDS_ENABLED, null, null, true,
4126 SettingsState.SYSTEM_PACKAGE_NAME);
4127 } else if (secureChargingSoundsEnabled.isNull()) {
4128 String defChargingSoundsEnabled = getContext().getResources()
4129 .getBoolean(R.bool.def_charging_sounds_enabled) ? "1" : "0";
4130 secureSettings.insertSettingLocked(
4131 Secure.CHARGING_SOUNDS_ENABLED, defChargingSoundsEnabled, null,
4132 true, SettingsState.SYSTEM_PACKAGE_NAME);
4133 }
4134
4135 // CHARGING_VIBRATION_ENABLED
4136 final Setting secureChargingVibrationEnabled = secureSettings.getSettingLocked(
4137 Secure.CHARGING_VIBRATION_ENABLED);
4138
4139 if (secureChargingVibrationEnabled.isNull()) {
4140 String defChargingVibrationEnabled = getContext().getResources()
4141 .getBoolean(R.bool.def_charging_vibration_enabled) ? "1" : "0";
4142 secureSettings.insertSettingLocked(
4143 Secure.CHARGING_VIBRATION_ENABLED, defChargingVibrationEnabled,
4144 null, true, SettingsState.SYSTEM_PACKAGE_NAME);
4145 }
4146
4147 currentVersion = 171;
4148 }
4149
Nadav Bar8bc8c9e2018-09-12 15:41:51 +03004150 if (currentVersion == 171) {
4151 // Version 171: by default, add STREAM_VOICE_CALL to list of streams that can
4152 // be muted.
4153 final SettingsState systemSettings = getSystemSettingsLocked(userId);
4154 final Setting currentSetting = systemSettings.getSettingLocked(
4155 Settings.System.MUTE_STREAMS_AFFECTED);
4156 if (!currentSetting.isNull()) {
4157 try {
4158 int currentSettingIntegerValue = Integer.parseInt(
4159 currentSetting.getValue());
4160 if ((currentSettingIntegerValue
4161 & (1 << AudioManager.STREAM_VOICE_CALL)) == 0) {
4162 systemSettings.insertSettingLocked(
4163 Settings.System.MUTE_STREAMS_AFFECTED,
4164 Integer.toString(
4165 currentSettingIntegerValue
4166 | (1 << AudioManager.STREAM_VOICE_CALL)),
4167 null, true, SettingsState.SYSTEM_PACKAGE_NAME);
4168 }
4169 } catch (NumberFormatException e) {
4170 // remove the setting in case it is not a valid integer
4171 Slog.w("Failed to parse integer value of MUTE_STREAMS_AFFECTED"
4172 + "setting, removing setting", e);
4173 systemSettings.deleteSettingLocked(
4174 Settings.System.MUTE_STREAMS_AFFECTED);
4175 }
4176
4177 }
4178 currentVersion = 172;
4179 }
4180
Soonil Nagarkar42da1b12019-01-22 11:29:27 -08004181 if (currentVersion == 172) {
4182 // Version 172: Set the default value for Secure Settings: LOCATION_MODE
4183
4184 final SettingsState secureSettings = getSecureSettingsLocked(userId);
4185
4186 final Setting locationMode = secureSettings.getSettingLocked(
4187 Secure.LOCATION_MODE);
4188
4189 if (locationMode.isNull()) {
4190 final Setting locationProvidersAllowed = secureSettings.getSettingLocked(
4191 Secure.LOCATION_PROVIDERS_ALLOWED);
4192
Soonil Nagarkar4ee3ac22019-02-08 19:19:24 -08004193 final int defLocationMode;
4194 if (locationProvidersAllowed.isNull()) {
4195 defLocationMode = getContext().getResources().getInteger(
4196 R.integer.def_location_mode);
4197 } else {
4198 defLocationMode =
4199 !TextUtils.isEmpty(locationProvidersAllowed.getValue())
4200 ? Secure.LOCATION_MODE_ON
4201 : Secure.LOCATION_MODE_OFF;
4202 }
Soonil Nagarkar42da1b12019-01-22 11:29:27 -08004203 secureSettings.insertSettingLocked(
Soonil Nagarkar4ee3ac22019-02-08 19:19:24 -08004204 Secure.LOCATION_MODE, Integer.toString(defLocationMode),
Soonil Nagarkar42da1b12019-01-22 11:29:27 -08004205 null, true, SettingsState.SYSTEM_PACKAGE_NAME);
4206 }
4207
4208 currentVersion = 173;
4209 }
4210
Beverly4179f992019-02-08 11:34:16 -05004211 if (currentVersion == 173) {
4212 // Version 173: Set the default value for Secure Settings: NOTIFICATION_BUBBLES
Lyn Hanb739fa62019-06-27 18:41:11 -07004213 // Removed. Moved NOTIFICATION_BUBBLES to Global Settings.
Beverly4179f992019-02-08 11:34:16 -05004214 currentVersion = 174;
4215 }
4216
Yiwen Chen0305b572019-03-05 11:26:59 -08004217 if (currentVersion == 174) {
4218 // Version 174: Set the default value for Global Settings: APPLY_RAMPING_RINGER
4219
4220 final SettingsState globalSettings = getGlobalSettingsLocked();
4221
4222 Setting currentRampingRingerSetting = globalSettings.getSettingLocked(
4223 Settings.Global.APPLY_RAMPING_RINGER);
4224 if (currentRampingRingerSetting.isNull()) {
4225 globalSettings.insertSettingLocked(
4226 Settings.Global.APPLY_RAMPING_RINGER,
4227 getContext().getResources().getBoolean(
4228 R.bool.def_apply_ramping_ringer) ? "1" : "0", null,
4229 true, SettingsState.SYSTEM_PACKAGE_NAME);
4230 }
4231
4232 currentVersion = 175;
4233 }
4234
wilsonshih5d999e22019-03-20 11:50:42 +08004235 if (currentVersion == 175) {
4236 // Version 175: Set the default value for System Settings:
4237 // RING_VIBRATION_INTENSITY. If the notification vibration intensity has been
4238 // set and ring vibration intensity hasn't, the ring vibration intensity should
4239 // followed notification vibration intensity.
4240
4241 final SettingsState systemSettings = getSystemSettingsLocked(userId);
4242
4243 Setting notificationVibrationIntensity = systemSettings.getSettingLocked(
4244 Settings.System.NOTIFICATION_VIBRATION_INTENSITY);
4245
4246 Setting ringVibrationIntensity = systemSettings.getSettingLocked(
4247 Settings.System.RING_VIBRATION_INTENSITY);
4248
4249 if (!notificationVibrationIntensity.isNull()
4250 && ringVibrationIntensity.isNull()) {
4251 systemSettings.insertSettingLocked(
4252 Settings.System.RING_VIBRATION_INTENSITY,
4253 notificationVibrationIntensity.getValue(),
4254 null , true, SettingsState.SYSTEM_PACKAGE_NAME);
4255 }
4256
4257 currentVersion = 176;
4258 }
4259
Winson Chungd9f2fb32019-03-05 11:10:12 -08004260 if (currentVersion == 176) {
4261 // Version 176: Migrate the existing swipe up setting into the resource overlay
Winson Chung3d5d3b32019-04-24 16:52:47 -07004262 // for the navigation bar interaction mode. We do so only if the
4263 // setting is set.
Winson Chungd9f2fb32019-03-05 11:10:12 -08004264
Winson Chungd9f2fb32019-03-05 11:10:12 -08004265 final SettingsState secureSettings = getSecureSettingsLocked(userId);
4266 final Setting swipeUpSetting = secureSettings.getSettingLocked(
Winson Chung85e74592019-03-06 11:49:22 -08004267 "swipe_up_to_switch_apps_enabled");
Winson Chung3d5d3b32019-04-24 16:52:47 -07004268 if (swipeUpSetting != null && !swipeUpSetting.isNull()
4269 && swipeUpSetting.getValue().equals("1")) {
4270 final IOverlayManager overlayManager = IOverlayManager.Stub.asInterface(
4271 ServiceManager.getService(Context.OVERLAY_SERVICE));
Winson Chungd9f2fb32019-03-05 11:10:12 -08004272 try {
Winson Chung3d5d3b32019-04-24 16:52:47 -07004273 overlayManager.setEnabledExclusiveInCategory(
4274 NAV_BAR_MODE_2BUTTON_OVERLAY, UserHandle.USER_CURRENT);
Winson Chungd9f2fb32019-03-05 11:10:12 -08004275 } catch (RemoteException e) {
4276 throw new IllegalStateException(
4277 "Failed to set nav bar interaction mode overlay");
4278 }
4279 }
4280
4281 currentVersion = 177;
4282 }
4283
Edgar Wangeb8bddb2019-04-19 17:29:49 +08004284 if (currentVersion == 177) {
4285 // Version 177: Set the default value for Secure Settings: AWARE_ENABLED
4286
4287 final SettingsState secureSettings = getSecureSettingsLocked(userId);
4288
4289 final Setting awareEnabled = secureSettings.getSettingLocked(
4290 Secure.AWARE_ENABLED);
4291
4292 if (awareEnabled.isNull()) {
4293 final boolean defAwareEnabled = getContext().getResources().getBoolean(
4294 R.bool.def_aware_enabled);
4295 secureSettings.insertSettingLocked(
4296 Secure.AWARE_ENABLED, defAwareEnabled ? "1" : "0",
4297 null, true, SettingsState.SYSTEM_PACKAGE_NAME);
4298 }
4299
4300 currentVersion = 178;
4301 }
4302
Edgar Wangdabc41e2019-05-07 18:53:31 +08004303 if (currentVersion == 178) {
4304 // Version 178: Set the default value for Secure Settings:
4305 // SKIP_GESTURE & SILENCE_GESTURE
4306
4307 final SettingsState secureSettings = getSecureSettingsLocked(userId);
4308
4309 final Setting skipGesture = secureSettings.getSettingLocked(
4310 Secure.SKIP_GESTURE);
4311
4312 if (skipGesture.isNull()) {
4313 final boolean defSkipGesture = getContext().getResources().getBoolean(
4314 R.bool.def_skip_gesture);
4315 secureSettings.insertSettingLocked(
4316 Secure.SKIP_GESTURE, defSkipGesture ? "1" : "0",
4317 null, true, SettingsState.SYSTEM_PACKAGE_NAME);
4318 }
4319
4320 final Setting silenceGesture = secureSettings.getSettingLocked(
4321 Secure.SILENCE_GESTURE);
4322
4323 if (silenceGesture.isNull()) {
4324 final boolean defSilenceGesture = getContext().getResources().getBoolean(
4325 R.bool.def_silence_gesture);
4326 secureSettings.insertSettingLocked(
4327 Secure.SILENCE_GESTURE, defSilenceGesture ? "1" : "0",
4328 null, true, SettingsState.SYSTEM_PACKAGE_NAME);
4329 }
4330
4331 currentVersion = 179;
4332 }
4333
Mady Mellor95e879a2019-05-06 08:50:06 -07004334 if (currentVersion == 179) {
4335 // Version 178: Reset the default for Secure Settings: NOTIFICATION_BUBBLES
4336 // This is originally set in version 173, however, the default value changed
Lyn Hanb739fa62019-06-27 18:41:11 -07004337 // so this step is to ensure the value is updated to the correct default.
Mady Mellor95e879a2019-05-06 08:50:06 -07004338
Lyn Hanb739fa62019-06-27 18:41:11 -07004339 // Removed. Moved NOTIFICATION_BUBBLES to Global Settings.
Mady Mellor95e879a2019-05-06 08:50:06 -07004340 currentVersion = 180;
4341 }
Winson Chungd9f2fb32019-03-05 11:10:12 -08004342
Edgar Wang4870e4b2019-05-15 19:14:43 +08004343 if (currentVersion == 180) {
4344 // Version 180: Set the default value for Secure Settings: AWARE_LOCK_ENABLED
4345
4346 final SettingsState secureSettings = getSecureSettingsLocked(userId);
4347
4348 final Setting awareLockEnabled = secureSettings.getSettingLocked(
4349 Secure.AWARE_LOCK_ENABLED);
4350
4351 if (awareLockEnabled.isNull()) {
4352 final boolean defAwareLockEnabled = getContext().getResources().getBoolean(
4353 R.bool.def_aware_lock_enabled);
4354 secureSettings.insertSettingLocked(
4355 Secure.AWARE_LOCK_ENABLED, defAwareLockEnabled ? "1" : "0",
4356 null, true, SettingsState.SYSTEM_PACKAGE_NAME);
4357 }
4358
4359 currentVersion = 181;
4360 }
4361
Eric Laurent02153e62019-06-12 17:20:03 -07004362 if (currentVersion == 181) {
4363 // Version cd : by default, add STREAM_BLUETOOTH_SCO to list of streams that can
4364 // be muted.
4365 final SettingsState systemSettings = getSystemSettingsLocked(userId);
4366 final Setting currentSetting = systemSettings.getSettingLocked(
4367 Settings.System.MUTE_STREAMS_AFFECTED);
4368 if (!currentSetting.isNull()) {
4369 try {
4370 int currentSettingIntegerValue = Integer.parseInt(
4371 currentSetting.getValue());
4372 if ((currentSettingIntegerValue
4373 & (1 << AudioManager.STREAM_BLUETOOTH_SCO)) == 0) {
4374 systemSettings.insertSettingLocked(
4375 Settings.System.MUTE_STREAMS_AFFECTED,
4376 Integer.toString(
4377 currentSettingIntegerValue
4378 | (1 << AudioManager.STREAM_BLUETOOTH_SCO)),
4379 null, true, SettingsState.SYSTEM_PACKAGE_NAME);
4380 }
4381 } catch (NumberFormatException e) {
4382 // remove the setting in case it is not a valid integer
4383 Slog.w("Failed to parse integer value of MUTE_STREAMS_AFFECTED"
4384 + "setting, removing setting", e);
4385 systemSettings.deleteSettingLocked(
4386 Settings.System.MUTE_STREAMS_AFFECTED);
4387 }
4388
4389 }
4390 currentVersion = 182;
4391 }
4392
Lyn Hanb739fa62019-06-27 18:41:11 -07004393 if (currentVersion == 182) {
4394 // Remove secure bubble settings.
Mady Mellorfa9556a2019-09-19 11:10:31 -07004395 getSecureSettingsLocked(userId).deleteSettingLocked("notification_bubbles");
Lyn Hanb739fa62019-06-27 18:41:11 -07004396
4397 // Add global bubble settings.
4398 getGlobalSettingsLocked().insertSettingLocked(Global.NOTIFICATION_BUBBLES,
4399 getContext().getResources().getBoolean(
4400 R.bool.def_notification_bubbles) ? "1" : "0", null /* tag */,
4401 true /* makeDefault */, SettingsState.SYSTEM_PACKAGE_NAME);
4402
4403 currentVersion = 183;
4404 }
4405
Beverlyf364d7c2019-10-10 16:44:43 -04004406 if (currentVersion == 183) {
4407 // Version 184: Set default values for WIRELESS_CHARGING_STARTED_SOUND
4408 // and CHARGING_STARTED_SOUND
4409 final SettingsState globalSettings = getGlobalSettingsLocked();
4410
4411 final String oldValueWireless = globalSettings.getSettingLocked(
4412 Global.WIRELESS_CHARGING_STARTED_SOUND).getValue();
4413 final String oldValueWired = globalSettings.getSettingLocked(
4414 Global.CHARGING_STARTED_SOUND).getValue();
4415
4416 final String defaultValueWireless = getContext().getResources().getString(
4417 R.string.def_wireless_charging_started_sound);
4418 final String defaultValueWired = getContext().getResources().getString(
4419 R.string.def_charging_started_sound);
4420
4421 // wireless charging sound
4422 if (oldValueWireless == null
4423 || TextUtils.equals(oldValueWireless, defaultValueWired)) {
4424 if (!TextUtils.isEmpty(defaultValueWireless)) {
4425 globalSettings.insertSettingLocked(
4426 Global.WIRELESS_CHARGING_STARTED_SOUND, defaultValueWireless,
4427 null /* tag */, true /* makeDefault */,
4428 SettingsState.SYSTEM_PACKAGE_NAME);
4429 } else if (!TextUtils.isEmpty(defaultValueWired)) {
4430 // if the wireless sound is empty, use the wired charging sound
4431 globalSettings.insertSettingLocked(
4432 Global.WIRELESS_CHARGING_STARTED_SOUND, defaultValueWired,
4433 null /* tag */, true /* makeDefault */,
4434 SettingsState.SYSTEM_PACKAGE_NAME);
4435 }
4436 }
4437
4438 // wired charging sound
4439 if (oldValueWired == null && !TextUtils.isEmpty(defaultValueWired)) {
4440 globalSettings.insertSettingLocked(
4441 Global.CHARGING_STARTED_SOUND, defaultValueWired,
4442 null /* tag */, true /* makeDefault */,
4443 SettingsState.SYSTEM_PACKAGE_NAME);
4444 }
4445 currentVersion = 184;
4446 }
4447
Felipe Lemeff355092017-04-03 12:55:02 -07004448 // vXXX: Add new settings above this point.
4449
Dan Sandler71f85e92016-07-20 13:46:05 -04004450 if (currentVersion != newVersion) {
Svetoslav Ganov264c7a92016-08-24 17:31:14 -07004451 Slog.wtf("SettingsProvider", "warning: upgrading settings database to version "
Dan Sandler71f85e92016-07-20 13:46:05 -04004452 + newVersion + " left it at "
Stephen Chen5d0922f2017-03-27 10:28:04 -07004453 + currentVersion +
4454 " instead; this is probably a bug. Did you update SETTINGS_VERSION?",
4455 new Throwable());
Dan Sandler71f85e92016-07-20 13:46:05 -04004456 if (DEBUG) {
4457 throw new RuntimeException("db upgrade error");
4458 }
4459 }
4460
Jeff Brown503cffc2015-03-26 18:08:51 -07004461 // Return the current version.
4462 return currentVersion;
Brad Fitzpatrick547a96b2010-03-09 17:58:53 -08004463 }
4464 }
Svet Ganov13701552017-02-23 12:45:17 -08004465
Svetoslav Ganovf7654c52017-08-16 17:33:22 -07004466 private void ensureLegacyDefaultValueAndSystemSetUpdatedLocked(SettingsState settings,
4467 int userId) {
Svet Ganov13701552017-02-23 12:45:17 -08004468 List<String> names = settings.getSettingNamesLocked();
4469 final int nameCount = names.size();
4470 for (int i = 0; i < nameCount; i++) {
4471 String name = names.get(i);
4472 Setting setting = settings.getSettingLocked(name);
Svetoslav Ganovf7654c52017-08-16 17:33:22 -07004473
4474 // In the upgrade case we pretend the call is made from the app
4475 // that made the last change to the setting to properly determine
4476 // whether the call has been made by a system component.
4477 int callingUid = -1;
4478 try {
4479 callingUid = mPackageManager.getPackageUid(setting.getPackageName(), 0, userId);
4480 } catch (RemoteException e) {
4481 /* ignore - handled below */
4482 }
4483 if (callingUid < 0) {
4484 Slog.e(LOG_TAG, "Unknown package: " + setting.getPackageName());
4485 continue;
4486 }
4487 try {
4488 final boolean systemSet = SettingsState.isSystemPackage(getContext(),
Matt Pape25c940d2019-03-26 12:14:33 -07004489 setting.getPackageName(), callingUid, userId);
Svet Ganov13701552017-02-23 12:45:17 -08004490 if (systemSet) {
4491 settings.insertSettingLocked(name, setting.getValue(),
4492 setting.getTag(), true, setting.getPackageName());
Svetoslav Ganovf7654c52017-08-16 17:33:22 -07004493 } else if (setting.getDefaultValue() != null && setting.isDefaultFromSystem()) {
4494 // We had a bug where changes by non-system packages were marked
4495 // as system made and as a result set as the default. Therefore, if
4496 // the package changed the setting last is not a system one but the
4497 // setting is marked as its default coming from the system we clear
4498 // the default and clear the system set flag.
4499 settings.resetSettingDefaultValueLocked(name);
Svet Ganov13701552017-02-23 12:45:17 -08004500 }
Svetoslav Ganovf7654c52017-08-16 17:33:22 -07004501 } catch (IllegalStateException e) {
4502 // If the package goes over its quota during the upgrade, don't
4503 // crash but just log the error as the system does the upgrade.
4504 Slog.e(LOG_TAG, "Error upgrading setting: " + setting.getName(), e);
4505
Svet Ganov13701552017-02-23 12:45:17 -08004506 }
4507 }
4508 }
Brad Fitzpatrick1bd62bd2010-03-08 18:30:52 -08004509 }
The Android Open Source Project54b6cfa2008-10-21 07:00:00 -07004510}