blob: d6c33a3b077cb06e847d88f1910cf031e3a1345b [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
yuemingw1d13eae2018-01-30 17:27:54 +000019import static android.os.Process.ROOT_UID;
20import static android.os.Process.SHELL_UID;
21import static android.os.Process.SYSTEM_UID;
22
Svetoslav683914b2015-01-15 14:22:26 -080023import android.Manifest;
Eugene Suslad72c3972016-12-27 15:49:30 -080024import android.annotation.NonNull;
Kweku Adamsb0886f32017-10-31 15:32:09 -070025import android.annotation.Nullable;
Christopher Tated5fe1472012-09-10 15:48:38 -070026import android.app.ActivityManager;
Xiaohui Chen43765b72015-08-31 10:57:33 -070027import android.app.AppGlobals;
Christopher Tate45281862010-03-05 15:46:30 -080028import android.app.backup.BackupManager;
Christopher Tate06efb532012-08-24 15:29:27 -070029import android.content.BroadcastReceiver;
Ruben Brunk98576cf2016-03-07 18:54:28 -080030import android.content.ComponentName;
The Android Open Source Project54b6cfa2008-10-21 07:00:00 -070031import android.content.ContentProvider;
The Android Open Source Project54b6cfa2008-10-21 07:00:00 -070032import android.content.ContentValues;
33import android.content.Context;
Christopher Tate06efb532012-08-24 15:29:27 -070034import android.content.Intent;
35import android.content.IntentFilter;
Svetoslav683914b2015-01-15 14:22:26 -080036import android.content.pm.ApplicationInfo;
Xiaohui Chen43765b72015-08-31 10:57:33 -070037import android.content.pm.IPackageManager;
Svetoslav683914b2015-01-15 14:22:26 -080038import android.content.pm.PackageInfo;
The Android Open Source Project54b6cfa2008-10-21 07:00:00 -070039import android.content.pm.PackageManager;
Christopher Tate38e7a602013-09-03 16:57:34 -070040import android.content.pm.UserInfo;
Chad Brubaker20e0dc32017-04-28 18:24:55 -070041import android.content.res.Resources;
The Android Open Source Project54b6cfa2008-10-21 07:00:00 -070042import android.database.Cursor;
Svetoslav683914b2015-01-15 14:22:26 -080043import android.database.MatrixCursor;
The Android Open Source Project54b6cfa2008-10-21 07:00:00 -070044import android.database.sqlite.SQLiteDatabase;
45import android.database.sqlite.SQLiteQueryBuilder;
Svetoslav683914b2015-01-15 14:22:26 -080046import android.hardware.camera2.utils.ArrayUtils;
John Spurlocke11ae112015-05-11 16:09:03 -040047import android.media.AudioManager;
The Android Open Source Project54b6cfa2008-10-21 07:00:00 -070048import android.net.Uri;
Christopher Tate06efb532012-08-24 15:29:27 -070049import android.os.Binder;
Svetoslav683914b2015-01-15 14:22:26 -080050import android.os.Build;
Brad Fitzpatrick1877d012010-03-04 17:48:13 -080051import android.os.Bundle;
Amith Yamasani5cdf7f52013-06-27 15:12:01 -070052import android.os.DropBoxManager;
Svetoslav683914b2015-01-15 14:22:26 -080053import android.os.Environment;
Svetoslav7e0683b2015-08-03 16:02:52 -070054import android.os.Handler;
Svet Ganova8f90262016-05-10 08:44:48 -070055import android.os.HandlerThread;
Svetoslav7e0683b2015-08-03 16:02:52 -070056import android.os.Looper;
57import android.os.Message;
The Android Open Source Project54b6cfa2008-10-21 07:00:00 -070058import android.os.ParcelFileDescriptor;
Christopher Tate0da13572013-10-13 17:34:49 -070059import android.os.Process;
Xiaohui Chen43765b72015-08-31 10:57:33 -070060import android.os.RemoteException;
Jeff Sharkey413573a2016-02-22 17:52:45 -070061import android.os.SELinux;
Dianne Hackborn32f40ee2016-10-20 15:54:14 -070062import android.os.ServiceManager;
Christopher Tate06efb532012-08-24 15:29:27 -070063import android.os.UserHandle;
64import android.os.UserManager;
Svet Ganov53a441c2016-04-19 19:38:00 -070065import android.os.UserManagerInternal;
Matt Pape1278d1c2018-12-11 13:03:49 -080066import android.provider.DeviceConfig;
The Android Open Source Project54b6cfa2008-10-21 07:00:00 -070067import android.provider.Settings;
Narayan Kamath94bcdbc2017-07-17 15:32:53 +010068import android.provider.Settings.Global;
Makoto Onuki0000d322017-11-28 16:31:47 -080069import android.provider.Settings.Secure;
yuemingw1d13eae2018-01-30 17:27:54 +000070import android.provider.SettingsValidators;
The Android Open Source Project54b6cfa2008-10-21 07:00:00 -070071import android.text.TextUtils;
Andre Lago3fa139c2016-08-04 13:53:44 +010072import android.util.ArrayMap;
Svetoslav683914b2015-01-15 14:22:26 -080073import android.util.ArraySet;
Mark Rathjend891f012017-01-19 04:10:37 +000074import android.util.ByteStringUtils;
Christopher Tate06efb532012-08-24 15:29:27 -070075import android.util.Slog;
76import android.util.SparseArray;
Dianne Hackborn32f40ee2016-10-20 15:54:14 -070077import android.util.SparseBooleanArray;
Eugene Suslad72c3972016-12-27 15:49:30 -080078import android.util.proto.ProtoOutputStream;
John Spurlocke11ae112015-05-11 16:09:03 -040079
Svetoslav683914b2015-01-15 14:22:26 -080080import com.android.internal.annotations.GuardedBy;
81import com.android.internal.content.PackageMonitor;
82import com.android.internal.os.BackgroundThread;
Suprabh Shukla269c11e2015-12-02 16:51:16 -080083import com.android.providers.settings.SettingsState.Setting;
Svet Ganov53a441c2016-04-19 19:38:00 -070084import com.android.server.LocalServices;
Ruben Brunk98576cf2016-03-07 18:54:28 -080085import com.android.server.SystemConfig;
John Spurlocke11ae112015-05-11 16:09:03 -040086
Irina Dumitrescue3696872019-01-09 16:07:59 +000087import com.google.android.collect.Sets;
88
Svetoslav683914b2015-01-15 14:22:26 -080089import java.io.File;
Svetoslavb505ccc2015-02-17 12:41:04 -080090import java.io.FileDescriptor;
Svetoslav683914b2015-01-15 14:22:26 -080091import java.io.FileNotFoundException;
Svetoslavb505ccc2015-02-17 12:41:04 -080092import java.io.PrintWriter;
Mark Rathjen7599f132017-01-23 14:15:54 -080093import java.nio.ByteBuffer;
94import java.security.InvalidKeyException;
Mark Rathjend891f012017-01-19 04:10:37 +000095import java.security.NoSuchAlgorithmException;
Svetoslav683914b2015-01-15 14:22:26 -080096import java.security.SecureRandom;
Dianne Hackborn32f40ee2016-10-20 15:54:14 -070097import java.util.ArrayList;
Svetoslav683914b2015-01-15 14:22:26 -080098import java.util.Arrays;
Robin Lee7af9a742017-02-20 14:47:30 +000099import java.util.Collection;
Matt Pape6bfc62e2018-11-28 13:16:03 -0800100import java.util.HashMap;
Mark Rathjend891f012017-01-19 04:10:37 +0000101import java.util.HashSet;
Svetoslav683914b2015-01-15 14:22:26 -0800102import java.util.List;
Mark Rathjen7599f132017-01-23 14:15:54 -0800103import java.util.Locale;
Andre Lago3fa139c2016-08-04 13:53:44 +0100104import java.util.Map;
Svetoslav683914b2015-01-15 14:22:26 -0800105import java.util.Set;
106import java.util.regex.Pattern;
yuemingw1d13eae2018-01-30 17:27:54 +0000107
Mark Rathjen7599f132017-01-23 14:15:54 -0800108import javax.crypto.Mac;
109import javax.crypto.spec.SecretKeySpec;
The Android Open Source Project54b6cfa2008-10-21 07:00:00 -0700110
Svetoslav Ganove080da92016-12-21 17:10:35 -0800111
Svetoslav683914b2015-01-15 14:22:26 -0800112/**
113 * <p>
114 * This class is a content provider that publishes the system settings.
115 * It can be accessed via the content provider APIs or via custom call
116 * commands. The latter is a bit faster and is the preferred way to access
117 * the platform settings.
118 * </p>
119 * <p>
120 * There are three settings types, global (with signature level protection
121 * and shared across users), secure (with signature permission level
122 * protection and per user), and system (with dangerous permission level
123 * protection and per user). Global settings are stored under the device owner.
124 * Each of these settings is represented by a {@link
125 * com.android.providers.settings.SettingsState} object mapped to an integer
126 * key derived from the setting type in the most significant bits and user
127 * id in the least significant bits. Settings are synchronously loaded on
128 * instantiation of a SettingsState and asynchronously persisted on mutation.
129 * Settings are stored in the user specific system directory.
130 * </p>
131 * <p>
132 * Apps targeting APIs Lollipop MR1 and lower can add custom settings entries
133 * and get a warning. Targeting higher API version prohibits this as the
134 * system settings are not a place for apps to save their state. When a package
135 * is removed the settings it added are deleted. Apps cannot delete system
136 * settings added by the platform. System settings values are validated to
137 * ensure the clients do not put bad values. Global and secure settings are
138 * changed only by trusted parties, therefore no validation is performed. Also
139 * there is a limit on the amount of app specific settings that can be added
140 * to prevent unlimited growth of the system process memory footprint.
141 * </p>
142 */
143@SuppressWarnings("deprecation")
The Android Open Source Project54b6cfa2008-10-21 07:00:00 -0700144public class SettingsProvider extends ContentProvider {
Dianne Hackborn32f40ee2016-10-20 15:54:14 -0700145 static final boolean DEBUG = false;
The Android Open Source Project54b6cfa2008-10-21 07:00:00 -0700146
Svetoslav Ganov264c7a92016-08-24 17:31:14 -0700147 private static final boolean DROP_DATABASE_ON_MIGRATION = true;
Svetoslav683914b2015-01-15 14:22:26 -0800148
149 private static final String LOG_TAG = "SettingsProvider";
Christopher Tate0da13572013-10-13 17:34:49 -0700150
Christopher Tate06efb532012-08-24 15:29:27 -0700151 private static final String TABLE_SYSTEM = "system";
152 private static final String TABLE_SECURE = "secure";
153 private static final String TABLE_GLOBAL = "global";
Matt Pape6bfc62e2018-11-28 13:16:03 -0800154 private static final String TABLE_CONFIG = "config";
Svetoslav683914b2015-01-15 14:22:26 -0800155
156 // Old tables no longer exist.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800157 private static final String TABLE_FAVORITES = "favorites";
158 private static final String TABLE_OLD_FAVORITES = "old_favorites";
Svetoslav683914b2015-01-15 14:22:26 -0800159 private static final String TABLE_BLUETOOTH_DEVICES = "bluetooth_devices";
160 private static final String TABLE_BOOKMARKS = "bookmarks";
161 private static final String TABLE_ANDROID_METADATA = "android_metadata";
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800162
Svetoslav683914b2015-01-15 14:22:26 -0800163 // The set of removed legacy tables.
164 private static final Set<String> REMOVED_LEGACY_TABLES = new ArraySet<>();
Christopher Tate06efb532012-08-24 15:29:27 -0700165 static {
Svetoslav683914b2015-01-15 14:22:26 -0800166 REMOVED_LEGACY_TABLES.add(TABLE_FAVORITES);
167 REMOVED_LEGACY_TABLES.add(TABLE_OLD_FAVORITES);
168 REMOVED_LEGACY_TABLES.add(TABLE_BLUETOOTH_DEVICES);
169 REMOVED_LEGACY_TABLES.add(TABLE_BOOKMARKS);
170 REMOVED_LEGACY_TABLES.add(TABLE_ANDROID_METADATA);
171 }
Christopher Tate06efb532012-08-24 15:29:27 -0700172
Svetoslav683914b2015-01-15 14:22:26 -0800173 private static final int MUTATION_OPERATION_INSERT = 1;
174 private static final int MUTATION_OPERATION_DELETE = 2;
175 private static final int MUTATION_OPERATION_UPDATE = 3;
Svetoslav Ganove080da92016-12-21 17:10:35 -0800176 private static final int MUTATION_OPERATION_RESET = 4;
Julia Reynolds5e458dd2014-07-07 16:07:01 -0400177
Svetoslav683914b2015-01-15 14:22:26 -0800178 private static final String[] ALL_COLUMNS = new String[] {
179 Settings.NameValueTable._ID,
180 Settings.NameValueTable.NAME,
181 Settings.NameValueTable.VALUE
182 };
183
Makoto Onuki53f0e022017-11-29 13:51:01 -0800184 public static final int SETTINGS_TYPE_GLOBAL = SettingsState.SETTINGS_TYPE_GLOBAL;
185 public static final int SETTINGS_TYPE_SYSTEM = SettingsState.SETTINGS_TYPE_SYSTEM;
186 public static final int SETTINGS_TYPE_SECURE = SettingsState.SETTINGS_TYPE_SECURE;
187 public static final int SETTINGS_TYPE_SSAID = SettingsState.SETTINGS_TYPE_SSAID;
Matt Pape1b31a332018-10-17 09:58:28 -0700188 public static final int SETTINGS_TYPE_CONFIG = SettingsState.SETTINGS_TYPE_CONFIG;
Svet Ganov53a441c2016-04-19 19:38:00 -0700189
190 private static final Bundle NULL_SETTING_BUNDLE = Bundle.forPair(
191 Settings.NameValueTable.VALUE, null);
Christopher Tate06efb532012-08-24 15:29:27 -0700192
Nicholas Sauer3d87d1e2018-11-06 08:38:39 -0800193 public static final String RESULT_ROWS_DELETED = "result_rows_deleted";
Nicholas Sauer72500532018-11-21 10:30:58 -0800194 public static final String RESULT_SETTINGS_LIST = "result_settings_list";
Nicholas Sauer3d87d1e2018-11-06 08:38:39 -0800195
Chad Brubaker20e0dc32017-04-28 18:24:55 -0700196 // Overlay specified settings whitelisted for Instant Apps
197 private static final Set<String> OVERLAY_ALLOWED_GLOBAL_INSTANT_APP_SETTINGS = new ArraySet<>();
198 private static final Set<String> OVERLAY_ALLOWED_SYSTEM_INSTANT_APP_SETTINGS = new ArraySet<>();
199 private static final Set<String> OVERLAY_ALLOWED_SECURE_INSTANT_APP_SETTINGS = new ArraySet<>();
200
201 static {
202 for (String name : Resources.getSystem().getStringArray(
203 com.android.internal.R.array.config_allowedGlobalInstantAppSettings)) {
204 OVERLAY_ALLOWED_GLOBAL_INSTANT_APP_SETTINGS.add(name);
205 }
206 for (String name : Resources.getSystem().getStringArray(
207 com.android.internal.R.array.config_allowedSystemInstantAppSettings)) {
208 OVERLAY_ALLOWED_SYSTEM_INSTANT_APP_SETTINGS.add(name);
209 }
210 for (String name : Resources.getSystem().getStringArray(
211 com.android.internal.R.array.config_allowedSecureInstantAppSettings)) {
212 OVERLAY_ALLOWED_SECURE_INSTANT_APP_SETTINGS.add(name);
213 }
214 }
215
Svetoslav Ganov5fb405b2017-01-26 22:43:09 -0800216 // Changes to these global settings are synchronously persisted
217 private static final Set<String> CRITICAL_GLOBAL_SETTINGS = new ArraySet<>();
218 static {
219 CRITICAL_GLOBAL_SETTINGS.add(Settings.Global.DEVICE_PROVISIONED);
220 }
221
222 // Changes to these secure settings are synchronously persisted
223 private static final Set<String> CRITICAL_SECURE_SETTINGS = new ArraySet<>();
224 static {
225 CRITICAL_SECURE_SETTINGS.add(Settings.Secure.USER_SETUP_COMPLETE);
226 }
227
Svetoslav683914b2015-01-15 14:22:26 -0800228 // Per user secure settings that moved to the for all users global settings.
229 static final Set<String> sSecureMovedToGlobalSettings = new ArraySet<>();
230 static {
231 Settings.Secure.getMovedToGlobalSettings(sSecureMovedToGlobalSettings);
Christopher Tate06efb532012-08-24 15:29:27 -0700232 }
233
Svetoslav683914b2015-01-15 14:22:26 -0800234 // Per user system settings that moved to the for all users global settings.
235 static final Set<String> sSystemMovedToGlobalSettings = new ArraySet<>();
236 static {
237 Settings.System.getMovedToGlobalSettings(sSystemMovedToGlobalSettings);
The Android Open Source Project54b6cfa2008-10-21 07:00:00 -0700238 }
239
Svetoslav683914b2015-01-15 14:22:26 -0800240 // Per user system settings that moved to the per user secure settings.
241 static final Set<String> sSystemMovedToSecureSettings = new ArraySet<>();
242 static {
243 Settings.System.getMovedToSecureSettings(sSystemMovedToSecureSettings);
The Android Open Source Project54b6cfa2008-10-21 07:00:00 -0700244 }
245
Svetoslav683914b2015-01-15 14:22:26 -0800246 // Per all users global settings that moved to the per user secure settings.
247 static final Set<String> sGlobalMovedToSecureSettings = new ArraySet<>();
248 static {
249 Settings.Global.getMovedToSecureSettings(sGlobalMovedToSecureSettings);
The Android Open Source Project54b6cfa2008-10-21 07:00:00 -0700250 }
251
Svetoslav683914b2015-01-15 14:22:26 -0800252 // Per user secure settings that are cloned for the managed profiles of the user.
253 private static final Set<String> sSecureCloneToManagedSettings = new ArraySet<>();
254 static {
255 Settings.Secure.getCloneToManagedProfileSettings(sSecureCloneToManagedSettings);
The Android Open Source Project54b6cfa2008-10-21 07:00:00 -0700256 }
257
Svetoslav683914b2015-01-15 14:22:26 -0800258 // Per user system settings that are cloned for the managed profiles of the user.
259 private static final Set<String> sSystemCloneToManagedSettings = new ArraySet<>();
260 static {
261 Settings.System.getCloneToManagedProfileSettings(sSystemCloneToManagedSettings);
Julia Reynolds5e458dd2014-07-07 16:07:01 -0400262 }
263
Andre Lago3fa139c2016-08-04 13:53:44 +0100264 // Per user system settings that are cloned from the profile's parent when a dependency
265 // in {@link Settings.Secure} is set to "1".
266 public static final Map<String, String> sSystemCloneFromParentOnDependency = new ArrayMap<>();
267 static {
268 Settings.System.getCloneFromParentOnValueSettings(sSystemCloneFromParentOnDependency);
269 }
270
Svetoslav683914b2015-01-15 14:22:26 -0800271 private final Object mLock = new Object();
Brad Fitzpatrickf366a9b2010-08-24 16:14:07 -0700272
Svetoslav683914b2015-01-15 14:22:26 -0800273 @GuardedBy("mLock")
274 private SettingsRegistry mSettingsRegistry;
Brad Fitzpatrickf366a9b2010-08-24 16:14:07 -0700275
Svet Ganova8f90262016-05-10 08:44:48 -0700276 @GuardedBy("mLock")
277 private HandlerThread mHandlerThread;
278
Makoto Onuki73360ab2017-03-17 11:50:13 -0700279 @GuardedBy("mLock")
280 private Handler mHandler;
281
Svetoslav7ec28e82015-05-20 17:01:10 -0700282 // We have to call in the user manager with no lock held,
283 private volatile UserManager mUserManager;
Svetoslav683914b2015-01-15 14:22:26 -0800284
yuemingw1d13eae2018-01-30 17:27:54 +0000285 private UserManagerInternal mUserManagerInternal;
286
Svetoslav7ec28e82015-05-20 17:01:10 -0700287 // We have to call in the package manager with no lock held,
Xiaohui Chen43765b72015-08-31 10:57:33 -0700288 private volatile IPackageManager mPackageManager;
Brad Fitzpatrickf366a9b2010-08-24 16:14:07 -0700289
Svet Ganov53a441c2016-04-19 19:38:00 -0700290 public static int makeKey(int type, int userId) {
Makoto Onuki53f0e022017-11-29 13:51:01 -0800291 return SettingsState.makeKey(type, userId);
Svet Ganov53a441c2016-04-19 19:38:00 -0700292 }
293
294 public static int getTypeFromKey(int key) {
Makoto Onuki53f0e022017-11-29 13:51:01 -0800295 return SettingsState.getTypeFromKey(key);
Svet Ganov53a441c2016-04-19 19:38:00 -0700296 }
297
298 public static int getUserIdFromKey(int key) {
Makoto Onuki53f0e022017-11-29 13:51:01 -0800299 return SettingsState.getUserIdFromKey(key);
Svet Ganov53a441c2016-04-19 19:38:00 -0700300 }
301
302 public static String settingTypeToString(int type) {
Makoto Onuki53f0e022017-11-29 13:51:01 -0800303 return SettingsState.settingTypeToString(type);
Svet Ganov53a441c2016-04-19 19:38:00 -0700304 }
305
306 public static String keyToString(int key) {
Makoto Onuki53f0e022017-11-29 13:51:01 -0800307 return SettingsState.keyToString(key);
Svet Ganov53a441c2016-04-19 19:38:00 -0700308 }
309
The Android Open Source Project54b6cfa2008-10-21 07:00:00 -0700310 @Override
311 public boolean onCreate() {
Chad Brubaker97bccee2017-01-05 15:51:41 -0800312 Settings.setInSystemServer();
Michal Karpinski2c37b082018-01-18 16:14:27 +0000313
314 // fail to boot if there're any backed up settings that don't have a non-null validator
315 ensureAllBackedUpSystemSettingsHaveValidators();
Michal Karpinski5db1e432018-01-18 20:10:24 +0000316 ensureAllBackedUpGlobalSettingsHaveValidators();
Michal Karpinski964943a2018-01-19 16:28:26 +0000317 ensureAllBackedUpSecureSettingsHaveValidators();
Michal Karpinski2c37b082018-01-18 16:14:27 +0000318
Svetoslav683914b2015-01-15 14:22:26 -0800319 synchronized (mLock) {
Xiaohui Chen43765b72015-08-31 10:57:33 -0700320 mUserManager = UserManager.get(getContext());
yuemingw1d13eae2018-01-30 17:27:54 +0000321 mUserManagerInternal = LocalServices.getService(UserManagerInternal.class);
Xiaohui Chen43765b72015-08-31 10:57:33 -0700322 mPackageManager = AppGlobals.getPackageManager();
Svet Ganova8f90262016-05-10 08:44:48 -0700323 mHandlerThread = new HandlerThread(LOG_TAG,
324 Process.THREAD_PRIORITY_BACKGROUND);
325 mHandlerThread.start();
Makoto Onuki73360ab2017-03-17 11:50:13 -0700326 mHandler = new Handler(mHandlerThread.getLooper());
Svetoslav683914b2015-01-15 14:22:26 -0800327 mSettingsRegistry = new SettingsRegistry();
328 }
Makoto Onuki73360ab2017-03-17 11:50:13 -0700329 mHandler.post(() -> {
330 registerBroadcastReceivers();
331 startWatchingUserRestrictionChanges();
332 });
Dianne Hackborn32f40ee2016-10-20 15:54:14 -0700333 ServiceManager.addService("settings", new SettingsService(this));
Matt Papeabb67892018-12-07 09:13:26 -0800334 ServiceManager.addService("device_config", new DeviceConfigService(this));
The Android Open Source Project54b6cfa2008-10-21 07:00:00 -0700335 return true;
336 }
337
Michal Karpinski2c37b082018-01-18 16:14:27 +0000338 private void ensureAllBackedUpSystemSettingsHaveValidators() {
Michal Karpinski964943a2018-01-19 16:28:26 +0000339 String offenders = getOffenders(concat(Settings.System.SETTINGS_TO_BACKUP,
340 Settings.System.LEGACY_RESTORE_SETTINGS), Settings.System.VALIDATORS);
Michal Karpinski5db1e432018-01-18 20:10:24 +0000341
342 failToBootIfOffendersPresent(offenders, "Settings.System");
343 }
344
345 private void ensureAllBackedUpGlobalSettingsHaveValidators() {
Michal Karpinski964943a2018-01-19 16:28:26 +0000346 String offenders = getOffenders(concat(Settings.Global.SETTINGS_TO_BACKUP,
347 Settings.Global.LEGACY_RESTORE_SETTINGS), Settings.Global.VALIDATORS);
Michal Karpinski5db1e432018-01-18 20:10:24 +0000348
349 failToBootIfOffendersPresent(offenders, "Settings.Global");
350 }
351
Michal Karpinski964943a2018-01-19 16:28:26 +0000352 private void ensureAllBackedUpSecureSettingsHaveValidators() {
353 String offenders = getOffenders(concat(Settings.Secure.SETTINGS_TO_BACKUP,
354 Settings.Secure.LEGACY_RESTORE_SETTINGS), Settings.Secure.VALIDATORS);
355
356 failToBootIfOffendersPresent(offenders, "Settings.Secure");
357 }
358
Michal Karpinski5db1e432018-01-18 20:10:24 +0000359 private void failToBootIfOffendersPresent(String offenders, String settingsType) {
360 if (offenders.length() > 0) {
361 throw new RuntimeException("All " + settingsType + " settings that are backed up"
362 + " have to have a non-null validator, but those don't: " + offenders);
363 }
364 }
365
366 private String getOffenders(String[] settingsToBackup, Map<String,
367 SettingsValidators.Validator> validators) {
Michal Karpinski2c37b082018-01-18 16:14:27 +0000368 StringBuilder offenders = new StringBuilder();
Michal Karpinski5db1e432018-01-18 20:10:24 +0000369 for (String setting : settingsToBackup) {
370 if (validators.get(setting) == null) {
Michal Karpinski2c37b082018-01-18 16:14:27 +0000371 offenders.append(setting).append(" ");
372 }
373 }
Michal Karpinski5db1e432018-01-18 20:10:24 +0000374 return offenders.toString();
Michal Karpinski2c37b082018-01-18 16:14:27 +0000375 }
376
Michal Karpinski964943a2018-01-19 16:28:26 +0000377 private final String[] concat(String[] first, String[] second) {
378 if (second == null || second.length == 0) {
379 return first;
380 }
381 final int firstLen = first.length;
382 final int secondLen = second.length;
383 String[] both = new String[firstLen + secondLen];
384 System.arraycopy(first, 0, both, 0, firstLen);
385 System.arraycopy(second, 0, both, firstLen, secondLen);
386 return both;
387 }
388
Svetoslav683914b2015-01-15 14:22:26 -0800389 @Override
390 public Bundle call(String method, String name, Bundle args) {
Svetoslav7ec28e82015-05-20 17:01:10 -0700391 final int requestingUserId = getRequestingUserId(args);
392 switch (method) {
Matt Pape1b31a332018-10-17 09:58:28 -0700393 case Settings.CALL_METHOD_GET_CONFIG: {
394 Setting setting = getConfigSetting(name);
395 return packageValueForCallResult(setting, isTrackingGeneration(args));
396 }
397
Svetoslav7ec28e82015-05-20 17:01:10 -0700398 case Settings.CALL_METHOD_GET_GLOBAL: {
399 Setting setting = getGlobalSetting(name);
Svet Ganov53a441c2016-04-19 19:38:00 -0700400 return packageValueForCallResult(setting, isTrackingGeneration(args));
Svetoslav683914b2015-01-15 14:22:26 -0800401 }
Svetoslav7ec28e82015-05-20 17:01:10 -0700402
403 case Settings.CALL_METHOD_GET_SECURE: {
Makoto Onuki0000d322017-11-28 16:31:47 -0800404 Setting setting = getSecureSetting(name, requestingUserId,
405 /*enableOverride=*/ true);
Svet Ganov53a441c2016-04-19 19:38:00 -0700406 return packageValueForCallResult(setting, isTrackingGeneration(args));
Svetoslav7ec28e82015-05-20 17:01:10 -0700407 }
408
409 case Settings.CALL_METHOD_GET_SYSTEM: {
410 Setting setting = getSystemSetting(name, requestingUserId);
Svet Ganov53a441c2016-04-19 19:38:00 -0700411 return packageValueForCallResult(setting, isTrackingGeneration(args));
Svetoslav7ec28e82015-05-20 17:01:10 -0700412 }
413
Matt Pape1b31a332018-10-17 09:58:28 -0700414 case Settings.CALL_METHOD_PUT_CONFIG: {
415 String value = getSettingValue(args);
Matt Pape1b31a332018-10-17 09:58:28 -0700416 final boolean makeDefault = getSettingMakeDefault(args);
Matt Papec1323dc2018-12-11 12:32:42 -0800417 insertConfigSetting(name, value, makeDefault);
Matt Pape1b31a332018-10-17 09:58:28 -0700418 break;
419 }
420
Svetoslav7ec28e82015-05-20 17:01:10 -0700421 case Settings.CALL_METHOD_PUT_GLOBAL: {
422 String value = getSettingValue(args);
Svetoslav Ganove080da92016-12-21 17:10:35 -0800423 String tag = getSettingTag(args);
424 final boolean makeDefault = getSettingMakeDefault(args);
425 insertGlobalSetting(name, value, tag, makeDefault, requestingUserId, false);
Svetoslav7ec28e82015-05-20 17:01:10 -0700426 break;
427 }
428
429 case Settings.CALL_METHOD_PUT_SECURE: {
430 String value = getSettingValue(args);
Svetoslav Ganove080da92016-12-21 17:10:35 -0800431 String tag = getSettingTag(args);
432 final boolean makeDefault = getSettingMakeDefault(args);
433 insertSecureSetting(name, value, tag, makeDefault, requestingUserId, false);
Svetoslav7ec28e82015-05-20 17:01:10 -0700434 break;
435 }
436
437 case Settings.CALL_METHOD_PUT_SYSTEM: {
438 String value = getSettingValue(args);
439 insertSystemSetting(name, value, requestingUserId);
440 break;
441 }
442
Matt Pape1b31a332018-10-17 09:58:28 -0700443 case Settings.CALL_METHOD_RESET_CONFIG: {
444 final int mode = getResetModeEnforcingPermission(args);
Matt Pape6bfc62e2018-11-28 13:16:03 -0800445 String prefix = getSettingPrefix(args);
Matt Papec1323dc2018-12-11 12:32:42 -0800446 resetConfigSetting(mode, prefix);
Matt Pape1b31a332018-10-17 09:58:28 -0700447 break;
448 }
449
Svetoslav Ganove080da92016-12-21 17:10:35 -0800450 case Settings.CALL_METHOD_RESET_GLOBAL: {
451 final int mode = getResetModeEnforcingPermission(args);
452 String tag = getSettingTag(args);
453 resetGlobalSetting(requestingUserId, mode, tag);
454 break;
455 }
456
457 case Settings.CALL_METHOD_RESET_SECURE: {
458 final int mode = getResetModeEnforcingPermission(args);
459 String tag = getSettingTag(args);
460 resetSecureSetting(requestingUserId, mode, tag);
461 break;
462 }
463
Matt Pape6bfc62e2018-11-28 13:16:03 -0800464 case Settings.CALL_METHOD_DELETE_CONFIG: {
Matt Papec1323dc2018-12-11 12:32:42 -0800465 int rows = deleteConfigSetting(name) ? 1 : 0;
Nicholas Sauer3d87d1e2018-11-06 08:38:39 -0800466 Bundle result = new Bundle();
467 result.putInt(RESULT_ROWS_DELETED, rows);
468 return result;
469 }
470
471 case Settings.CALL_METHOD_DELETE_GLOBAL: {
472 int rows = deleteGlobalSetting(name, requestingUserId, false) ? 1 : 0;
473 Bundle result = new Bundle();
474 result.putInt(RESULT_ROWS_DELETED, rows);
475 return result;
476 }
477
Matt Pape6bfc62e2018-11-28 13:16:03 -0800478 case Settings.CALL_METHOD_DELETE_SECURE: {
479 int rows = deleteSecureSetting(name, requestingUserId, false) ? 1 : 0;
480 Bundle result = new Bundle();
481 result.putInt(RESULT_ROWS_DELETED, rows);
482 return result;
483 }
484
485 case Settings.CALL_METHOD_DELETE_SYSTEM: {
486 int rows = deleteSystemSetting(name, requestingUserId) ? 1 : 0;
487 Bundle result = new Bundle();
488 result.putInt(RESULT_ROWS_DELETED, rows);
489 return result;
490 }
491
492 case Settings.CALL_METHOD_LIST_CONFIG: {
493 String prefix = getSettingPrefix(args);
494 Bundle result = new Bundle();
495 result.putSerializable(
496 Settings.NameValueTable.VALUE, (HashMap) getAllConfigFlags(prefix));
497 return result;
498 }
499
500 case Settings.CALL_METHOD_LIST_GLOBAL: {
Nicholas Sauer72500532018-11-21 10:30:58 -0800501 Bundle result = new Bundle();
502 result.putStringArrayList(RESULT_SETTINGS_LIST,
Matt Pape6bfc62e2018-11-28 13:16:03 -0800503 buildSettingsList(getAllGlobalSettings(null)));
Nicholas Sauer72500532018-11-21 10:30:58 -0800504 return result;
505 }
506
507 case Settings.CALL_METHOD_LIST_SECURE: {
508 Bundle result = new Bundle();
509 result.putStringArrayList(RESULT_SETTINGS_LIST,
510 buildSettingsList(getAllSecureSettings(requestingUserId, null)));
511 return result;
512 }
513
Matt Pape6bfc62e2018-11-28 13:16:03 -0800514 case Settings.CALL_METHOD_LIST_SYSTEM: {
Nicholas Sauer72500532018-11-21 10:30:58 -0800515 Bundle result = new Bundle();
516 result.putStringArrayList(RESULT_SETTINGS_LIST,
Matt Pape6bfc62e2018-11-28 13:16:03 -0800517 buildSettingsList(getAllSystemSettings(requestingUserId, null)));
Nicholas Sauer72500532018-11-21 10:30:58 -0800518 return result;
519 }
520
Svetoslav7ec28e82015-05-20 17:01:10 -0700521 default: {
522 Slog.w(LOG_TAG, "call() with invalid method: " + method);
523 } break;
Christopher Tate06efb532012-08-24 15:29:27 -0700524 }
Svetoslav7ec28e82015-05-20 17:01:10 -0700525
Christopher Tate06efb532012-08-24 15:29:27 -0700526 return null;
527 }
528
Brad Fitzpatrick1877d012010-03-04 17:48:13 -0800529 @Override
Svetoslav683914b2015-01-15 14:22:26 -0800530 public String getType(Uri uri) {
531 Arguments args = new Arguments(uri, null, null, true);
532 if (TextUtils.isEmpty(args.name)) {
The Android Open Source Project54b6cfa2008-10-21 07:00:00 -0700533 return "vnd.android.cursor.dir/" + args.table;
534 } else {
Svetoslav7ec28e82015-05-20 17:01:10 -0700535 return "vnd.android.cursor.item/" + args.table;
The Android Open Source Project54b6cfa2008-10-21 07:00:00 -0700536 }
537 }
538
539 @Override
Svetoslav683914b2015-01-15 14:22:26 -0800540 public Cursor query(Uri uri, String[] projection, String where, String[] whereArgs,
541 String order) {
542 if (DEBUG) {
543 Slog.v(LOG_TAG, "query() for user: " + UserHandle.getCallingUserId());
The Android Open Source Project54b6cfa2008-10-21 07:00:00 -0700544 }
545
Svetoslav683914b2015-01-15 14:22:26 -0800546 Arguments args = new Arguments(uri, where, whereArgs, true);
547 String[] normalizedProjection = normalizeProjection(projection);
The Android Open Source Project54b6cfa2008-10-21 07:00:00 -0700548
Svetoslav683914b2015-01-15 14:22:26 -0800549 // If a legacy table that is gone, done.
550 if (REMOVED_LEGACY_TABLES.contains(args.table)) {
551 return new MatrixCursor(normalizedProjection, 0);
552 }
Mike Lockwoodbd2a7122009-04-02 23:41:33 -0700553
Svetoslav7ec28e82015-05-20 17:01:10 -0700554 switch (args.table) {
555 case TABLE_GLOBAL: {
556 if (args.name != null) {
557 Setting setting = getGlobalSetting(args.name);
558 return packageSettingForQuery(setting, normalizedProjection);
559 } else {
560 return getAllGlobalSettings(projection);
Mike Lockwoodbd2a7122009-04-02 23:41:33 -0700561 }
Svetoslav7ec28e82015-05-20 17:01:10 -0700562 }
Mike Lockwoodbd2a7122009-04-02 23:41:33 -0700563
Svetoslav7ec28e82015-05-20 17:01:10 -0700564 case TABLE_SECURE: {
565 final int userId = UserHandle.getCallingUserId();
566 if (args.name != null) {
567 Setting setting = getSecureSetting(args.name, userId);
568 return packageSettingForQuery(setting, normalizedProjection);
569 } else {
570 return getAllSecureSettings(userId, projection);
Svetoslav683914b2015-01-15 14:22:26 -0800571 }
Svetoslav7ec28e82015-05-20 17:01:10 -0700572 }
Svetoslav683914b2015-01-15 14:22:26 -0800573
Svetoslav7ec28e82015-05-20 17:01:10 -0700574 case TABLE_SYSTEM: {
575 final int userId = UserHandle.getCallingUserId();
576 if (args.name != null) {
577 Setting setting = getSystemSetting(args.name, userId);
578 return packageSettingForQuery(setting, normalizedProjection);
579 } else {
580 return getAllSystemSettings(userId, projection);
Svetoslav683914b2015-01-15 14:22:26 -0800581 }
Svetoslav7ec28e82015-05-20 17:01:10 -0700582 }
Svetoslav683914b2015-01-15 14:22:26 -0800583
Svetoslav7ec28e82015-05-20 17:01:10 -0700584 default: {
585 throw new IllegalArgumentException("Invalid Uri path:" + uri);
Mike Lockwoodbd2a7122009-04-02 23:41:33 -0700586 }
587 }
Mike Lockwoodbd2a7122009-04-02 23:41:33 -0700588 }
589
Nicholas Sauer72500532018-11-21 10:30:58 -0800590 private ArrayList<String> buildSettingsList(Cursor cursor) {
591 final ArrayList<String> lines = new ArrayList<String>();
592 try {
593 while (cursor != null && cursor.moveToNext()) {
594 lines.add(cursor.getString(1) + "=" + cursor.getString(2));
595 }
596 } finally {
597 if (cursor != null) {
598 cursor.close();
599 }
600 }
601 return lines;
602 }
603
The Android Open Source Project54b6cfa2008-10-21 07:00:00 -0700604 @Override
Svetoslav683914b2015-01-15 14:22:26 -0800605 public Uri insert(Uri uri, ContentValues values) {
606 if (DEBUG) {
607 Slog.v(LOG_TAG, "insert() for user: " + UserHandle.getCallingUserId());
Christopher Tate06efb532012-08-24 15:29:27 -0700608 }
609
Svetoslav683914b2015-01-15 14:22:26 -0800610 String table = getValidTableOrThrow(uri);
Christopher Tate06efb532012-08-24 15:29:27 -0700611
Svetoslav683914b2015-01-15 14:22:26 -0800612 // If a legacy table that is gone, done.
613 if (REMOVED_LEGACY_TABLES.contains(table)) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800614 return null;
615 }
The Android Open Source Project54b6cfa2008-10-21 07:00:00 -0700616
Svetoslav683914b2015-01-15 14:22:26 -0800617 String name = values.getAsString(Settings.Secure.NAME);
Makoto Onuki3a2c35782015-06-18 11:21:58 -0700618 if (!isKeyValid(name)) {
Svetoslav683914b2015-01-15 14:22:26 -0800619 return null;
Mike Lockwoodbd2a7122009-04-02 23:41:33 -0700620 }
621
Svetoslav683914b2015-01-15 14:22:26 -0800622 String value = values.getAsString(Settings.Secure.VALUE);
623
Svetoslav7ec28e82015-05-20 17:01:10 -0700624 switch (table) {
625 case TABLE_GLOBAL: {
Svetoslav Ganove080da92016-12-21 17:10:35 -0800626 if (insertGlobalSetting(name, value, null, false,
627 UserHandle.getCallingUserId(), false)) {
Svetoslav7ec28e82015-05-20 17:01:10 -0700628 return Uri.withAppendedPath(Settings.Global.CONTENT_URI, name);
Christopher Tatec221d2b2012-10-03 18:33:52 -0700629 }
Svetoslav7ec28e82015-05-20 17:01:10 -0700630 } break;
631
632 case TABLE_SECURE: {
Svetoslav Ganove080da92016-12-21 17:10:35 -0800633 if (insertSecureSetting(name, value, null, false,
634 UserHandle.getCallingUserId(), false)) {
Svetoslav7ec28e82015-05-20 17:01:10 -0700635 return Uri.withAppendedPath(Settings.Secure.CONTENT_URI, name);
636 }
637 } break;
638
639 case TABLE_SYSTEM: {
640 if (insertSystemSetting(name, value, UserHandle.getCallingUserId())) {
641 return Uri.withAppendedPath(Settings.System.CONTENT_URI, name);
642 }
643 } break;
644
645 default: {
646 throw new IllegalArgumentException("Bad Uri path:" + uri);
Christopher Tatec221d2b2012-10-03 18:33:52 -0700647 }
648 }
649
Svetoslav683914b2015-01-15 14:22:26 -0800650 return null;
The Android Open Source Project54b6cfa2008-10-21 07:00:00 -0700651 }
652
653 @Override
Svetoslav683914b2015-01-15 14:22:26 -0800654 public int bulkInsert(Uri uri, ContentValues[] allValues) {
655 if (DEBUG) {
656 Slog.v(LOG_TAG, "bulkInsert() for user: " + UserHandle.getCallingUserId());
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800657 }
The Android Open Source Project54b6cfa2008-10-21 07:00:00 -0700658
Svetoslav683914b2015-01-15 14:22:26 -0800659 int insertionCount = 0;
660 final int valuesCount = allValues.length;
661 for (int i = 0; i < valuesCount; i++) {
662 ContentValues values = allValues[i];
663 if (insert(uri, values) != null) {
664 insertionCount++;
665 }
Dianne Hackborn8d051722014-10-01 14:59:58 -0700666 }
Svetoslav683914b2015-01-15 14:22:26 -0800667
668 return insertionCount;
The Android Open Source Project54b6cfa2008-10-21 07:00:00 -0700669 }
670
671 @Override
Svetoslav683914b2015-01-15 14:22:26 -0800672 public int delete(Uri uri, String where, String[] whereArgs) {
673 if (DEBUG) {
674 Slog.v(LOG_TAG, "delete() for user: " + UserHandle.getCallingUserId());
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800675 }
The Android Open Source Project54b6cfa2008-10-21 07:00:00 -0700676
Svetoslav683914b2015-01-15 14:22:26 -0800677 Arguments args = new Arguments(uri, where, whereArgs, false);
678
679 // If a legacy table that is gone, done.
680 if (REMOVED_LEGACY_TABLES.contains(args.table)) {
681 return 0;
Dianne Hackborn8d051722014-10-01 14:59:58 -0700682 }
Svetoslav683914b2015-01-15 14:22:26 -0800683
Makoto Onuki3a2c35782015-06-18 11:21:58 -0700684 if (!isKeyValid(args.name)) {
Svetoslav683914b2015-01-15 14:22:26 -0800685 return 0;
Dianne Hackborn8d051722014-10-01 14:59:58 -0700686 }
Svetoslav683914b2015-01-15 14:22:26 -0800687
Svetoslav7ec28e82015-05-20 17:01:10 -0700688 switch (args.table) {
689 case TABLE_GLOBAL: {
690 final int userId = UserHandle.getCallingUserId();
Svet Ganov53a441c2016-04-19 19:38:00 -0700691 return deleteGlobalSetting(args.name, userId, false) ? 1 : 0;
Svetoslav7ec28e82015-05-20 17:01:10 -0700692 }
Svetoslav683914b2015-01-15 14:22:26 -0800693
Svetoslav7ec28e82015-05-20 17:01:10 -0700694 case TABLE_SECURE: {
695 final int userId = UserHandle.getCallingUserId();
Svet Ganov53a441c2016-04-19 19:38:00 -0700696 return deleteSecureSetting(args.name, userId, false) ? 1 : 0;
Svetoslav7ec28e82015-05-20 17:01:10 -0700697 }
Svetoslav683914b2015-01-15 14:22:26 -0800698
Svetoslav7ec28e82015-05-20 17:01:10 -0700699 case TABLE_SYSTEM: {
700 final int userId = UserHandle.getCallingUserId();
701 return deleteSystemSetting(args.name, userId) ? 1 : 0;
702 }
703
704 default: {
705 throw new IllegalArgumentException("Bad Uri path:" + uri);
Svetoslav683914b2015-01-15 14:22:26 -0800706 }
Dianne Hackborn8d051722014-10-01 14:59:58 -0700707 }
Svetoslav683914b2015-01-15 14:22:26 -0800708 }
709
710 @Override
711 public int update(Uri uri, ContentValues values, String where, String[] whereArgs) {
712 if (DEBUG) {
713 Slog.v(LOG_TAG, "update() for user: " + UserHandle.getCallingUserId());
Christopher Tate06efb532012-08-24 15:29:27 -0700714 }
Svetoslav683914b2015-01-15 14:22:26 -0800715
716 Arguments args = new Arguments(uri, where, whereArgs, false);
717
718 // If a legacy table that is gone, done.
719 if (REMOVED_LEGACY_TABLES.contains(args.table)) {
720 return 0;
721 }
722
Makoto Onuki3a2c35782015-06-18 11:21:58 -0700723 String name = values.getAsString(Settings.Secure.NAME);
724 if (!isKeyValid(name)) {
Svetoslav683914b2015-01-15 14:22:26 -0800725 return 0;
726 }
Makoto Onuki3a2c35782015-06-18 11:21:58 -0700727 String value = values.getAsString(Settings.Secure.VALUE);
Svetoslav683914b2015-01-15 14:22:26 -0800728
Svetoslav7ec28e82015-05-20 17:01:10 -0700729 switch (args.table) {
730 case TABLE_GLOBAL: {
731 final int userId = UserHandle.getCallingUserId();
Svetoslav Ganove080da92016-12-21 17:10:35 -0800732 return updateGlobalSetting(args.name, value, null, false,
733 userId, false) ? 1 : 0;
Svetoslav7ec28e82015-05-20 17:01:10 -0700734 }
Svetoslav683914b2015-01-15 14:22:26 -0800735
Svetoslav7ec28e82015-05-20 17:01:10 -0700736 case TABLE_SECURE: {
737 final int userId = UserHandle.getCallingUserId();
Svetoslav Ganove080da92016-12-21 17:10:35 -0800738 return updateSecureSetting(args.name, value, null, false,
739 userId, false) ? 1 : 0;
Svetoslav7ec28e82015-05-20 17:01:10 -0700740 }
Svetoslav683914b2015-01-15 14:22:26 -0800741
Svetoslav7ec28e82015-05-20 17:01:10 -0700742 case TABLE_SYSTEM: {
743 final int userId = UserHandle.getCallingUserId();
744 return updateSystemSetting(args.name, value, userId) ? 1 : 0;
745 }
Svetoslav683914b2015-01-15 14:22:26 -0800746
Svetoslav7ec28e82015-05-20 17:01:10 -0700747 default: {
748 throw new IllegalArgumentException("Invalid Uri path:" + uri);
Svetoslav683914b2015-01-15 14:22:26 -0800749 }
750 }
The Android Open Source Project54b6cfa2008-10-21 07:00:00 -0700751 }
752
753 @Override
754 public ParcelFileDescriptor openFile(Uri uri, String mode) throws FileNotFoundException {
Robin Lee2ab02e22016-07-28 18:41:23 +0100755 final int userId = getUserIdFromUri(uri, UserHandle.getCallingUserId());
756 if (userId != UserHandle.getCallingUserId()) {
757 getContext().enforceCallingPermission(Manifest.permission.INTERACT_ACROSS_USERS,
758 "Access files from the settings of another user");
759 }
760 uri = ContentProvider.getUriWithoutUserId(uri);
761
Andre Lago3fa139c2016-08-04 13:53:44 +0100762 final String cacheRingtoneSetting;
Jeff Sharkey413573a2016-02-22 17:52:45 -0700763 final String cacheName;
764 if (Settings.System.RINGTONE_CACHE_URI.equals(uri)) {
Andre Lago3fa139c2016-08-04 13:53:44 +0100765 cacheRingtoneSetting = Settings.System.RINGTONE;
Jeff Sharkey413573a2016-02-22 17:52:45 -0700766 cacheName = Settings.System.RINGTONE_CACHE;
767 } else if (Settings.System.NOTIFICATION_SOUND_CACHE_URI.equals(uri)) {
Andre Lago3fa139c2016-08-04 13:53:44 +0100768 cacheRingtoneSetting = Settings.System.NOTIFICATION_SOUND;
Jeff Sharkey413573a2016-02-22 17:52:45 -0700769 cacheName = Settings.System.NOTIFICATION_SOUND_CACHE;
770 } else if (Settings.System.ALARM_ALERT_CACHE_URI.equals(uri)) {
Andre Lago3fa139c2016-08-04 13:53:44 +0100771 cacheRingtoneSetting = Settings.System.ALARM_ALERT;
Jeff Sharkey413573a2016-02-22 17:52:45 -0700772 cacheName = Settings.System.ALARM_ALERT_CACHE;
773 } else {
774 throw new FileNotFoundException("Direct file access no longer supported; "
775 + "ringtone playback is available through android.media.Ringtone");
776 }
777
Andre Lago3fa139c2016-08-04 13:53:44 +0100778 int actualCacheOwner;
779 // Redirect cache to parent if ringtone setting is owned by profile parent
780 synchronized (mLock) {
781 actualCacheOwner = resolveOwningUserIdForSystemSettingLocked(userId,
782 cacheRingtoneSetting);
783 }
784 final File cacheFile = new File(getRingtoneCacheDir(actualCacheOwner), cacheName);
Jeff Sharkey413573a2016-02-22 17:52:45 -0700785 return ParcelFileDescriptor.open(cacheFile, ParcelFileDescriptor.parseMode(mode));
786 }
787
788 private File getRingtoneCacheDir(int userId) {
789 final File cacheDir = new File(Environment.getDataSystemDeDirectory(userId), "ringtones");
790 cacheDir.mkdir();
791 SELinux.restorecon(cacheDir);
792 return cacheDir;
Marco Nelissen69f593c2009-07-28 09:55:04 -0700793 }
Brad Fitzpatrick1bd62bd2010-03-08 18:30:52 -0800794
Eugene Suslad72c3972016-12-27 15:49:30 -0800795 /**
796 * Dump all settings as a proto buf.
797 *
798 * @param fd The file to dump to
799 */
800 void dumpProto(@NonNull FileDescriptor fd) {
801 ProtoOutputStream proto = new ProtoOutputStream(fd);
802
803 synchronized (mLock) {
804 SettingsProtoDumpUtil.dumpProtoLocked(mSettingsRegistry, proto);
Eugene Suslad72c3972016-12-27 15:49:30 -0800805 }
806
807 proto.flush();
808 }
809
Dianne Hackborn32f40ee2016-10-20 15:54:14 -0700810 public void dumpInternal(FileDescriptor fd, PrintWriter pw, String[] args) {
Svetoslavb505ccc2015-02-17 12:41:04 -0800811 synchronized (mLock) {
812 final long identity = Binder.clearCallingIdentity();
813 try {
Dianne Hackborn32f40ee2016-10-20 15:54:14 -0700814 SparseBooleanArray users = mSettingsRegistry.getKnownUsersLocked();
Svetoslavb505ccc2015-02-17 12:41:04 -0800815 final int userCount = users.size();
816 for (int i = 0; i < userCount; i++) {
Dianne Hackborn32f40ee2016-10-20 15:54:14 -0700817 dumpForUserLocked(users.keyAt(i), pw);
Svetoslavb505ccc2015-02-17 12:41:04 -0800818 }
819 } finally {
820 Binder.restoreCallingIdentity(identity);
821 }
822 }
823 }
824
Andreas Gampeb58893072018-09-05 16:52:31 -0700825 @GuardedBy("mLock")
Svetoslav Ganova340bfd2016-08-02 18:24:49 -0700826 private void dumpForUserLocked(int userId, PrintWriter pw) {
Xiaohui Chen43765b72015-08-31 10:57:33 -0700827 if (userId == UserHandle.USER_SYSTEM) {
Matt Pape1b31a332018-10-17 09:58:28 -0700828 pw.println("CONFIG SETTINGS (user " + userId + ")");
829 SettingsState configSettings = mSettingsRegistry.getSettingsLocked(
830 SETTINGS_TYPE_CONFIG, UserHandle.USER_SYSTEM);
831 if (configSettings != null) {
832 dumpSettingsLocked(configSettings, pw);
833 pw.println();
834 configSettings.dumpHistoricalOperations(pw);
835 }
836
Svetoslavb505ccc2015-02-17 12:41:04 -0800837 pw.println("GLOBAL SETTINGS (user " + userId + ")");
Svetoslav Ganova340bfd2016-08-02 18:24:49 -0700838 SettingsState globalSettings = mSettingsRegistry.getSettingsLocked(
839 SETTINGS_TYPE_GLOBAL, UserHandle.USER_SYSTEM);
Dianne Hackborn32f40ee2016-10-20 15:54:14 -0700840 if (globalSettings != null) {
841 dumpSettingsLocked(globalSettings, pw);
Svetoslav Ganove080da92016-12-21 17:10:35 -0800842 pw.println();
843 globalSettings.dumpHistoricalOperations(pw);
Dianne Hackborn32f40ee2016-10-20 15:54:14 -0700844 }
Svetoslavb505ccc2015-02-17 12:41:04 -0800845 }
846
847 pw.println("SECURE SETTINGS (user " + userId + ")");
Svetoslav Ganova340bfd2016-08-02 18:24:49 -0700848 SettingsState secureSettings = mSettingsRegistry.getSettingsLocked(
849 SETTINGS_TYPE_SECURE, userId);
Dianne Hackborn32f40ee2016-10-20 15:54:14 -0700850 if (secureSettings != null) {
851 dumpSettingsLocked(secureSettings, pw);
Svetoslav Ganove080da92016-12-21 17:10:35 -0800852 pw.println();
853 secureSettings.dumpHistoricalOperations(pw);
Dianne Hackborn32f40ee2016-10-20 15:54:14 -0700854 }
Svetoslav Ganova340bfd2016-08-02 18:24:49 -0700855
Svetoslavb505ccc2015-02-17 12:41:04 -0800856 pw.println("SYSTEM SETTINGS (user " + userId + ")");
Svetoslav Ganova340bfd2016-08-02 18:24:49 -0700857 SettingsState systemSettings = mSettingsRegistry.getSettingsLocked(
858 SETTINGS_TYPE_SYSTEM, userId);
Dianne Hackborn32f40ee2016-10-20 15:54:14 -0700859 if (systemSettings != null) {
860 dumpSettingsLocked(systemSettings, pw);
Svetoslav Ganove080da92016-12-21 17:10:35 -0800861 pw.println();
862 systemSettings.dumpHistoricalOperations(pw);
Dianne Hackborn32f40ee2016-10-20 15:54:14 -0700863 }
Svetoslavb505ccc2015-02-17 12:41:04 -0800864 }
865
Dianne Hackborn32f40ee2016-10-20 15:54:14 -0700866 private void dumpSettingsLocked(SettingsState settingsState, PrintWriter pw) {
867 List<String> names = settingsState.getSettingNamesLocked();
Svetoslavb505ccc2015-02-17 12:41:04 -0800868
Dianne Hackborn32f40ee2016-10-20 15:54:14 -0700869 final int nameCount = names.size();
Svetoslavb505ccc2015-02-17 12:41:04 -0800870
Dianne Hackborn32f40ee2016-10-20 15:54:14 -0700871 for (int i = 0; i < nameCount; i++) {
872 String name = names.get(i);
873 Setting setting = settingsState.getSettingLocked(name);
874 pw.print("_id:"); pw.print(toDumpString(setting.getId()));
875 pw.print(" name:"); pw.print(toDumpString(name));
876 if (setting.getPackageName() != null) {
Svetoslav Ganove080da92016-12-21 17:10:35 -0800877 pw.print(" pkg:"); pw.print(setting.getPackageName());
Dianne Hackborn32f40ee2016-10-20 15:54:14 -0700878 }
879 pw.print(" value:"); pw.print(toDumpString(setting.getValue()));
Svetoslav Ganove080da92016-12-21 17:10:35 -0800880 if (setting.getDefaultValue() != null) {
881 pw.print(" default:"); pw.print(setting.getDefaultValue());
Eugene Suslad72c3972016-12-27 15:49:30 -0800882 pw.print(" defaultSystemSet:"); pw.print(setting.isDefaultFromSystem());
Svetoslav Ganove080da92016-12-21 17:10:35 -0800883 }
884 if (setting.getTag() != null) {
885 pw.print(" tag:"); pw.print(setting.getTag());
886 }
Svetoslavb505ccc2015-02-17 12:41:04 -0800887 pw.println();
Dianne Hackborn32f40ee2016-10-20 15:54:14 -0700888 }
Svetoslavb505ccc2015-02-17 12:41:04 -0800889 }
890
Svetoslav7e0683b2015-08-03 16:02:52 -0700891 private static String toDumpString(String s) {
Makoto Onuki3a2c35782015-06-18 11:21:58 -0700892 if (s != null) {
893 return s;
894 }
895 return "{null}";
896 }
897
Svetoslav683914b2015-01-15 14:22:26 -0800898 private void registerBroadcastReceivers() {
899 IntentFilter userFilter = new IntentFilter();
900 userFilter.addAction(Intent.ACTION_USER_REMOVED);
901 userFilter.addAction(Intent.ACTION_USER_STOPPED);
902
903 getContext().registerReceiver(new BroadcastReceiver() {
904 @Override
905 public void onReceive(Context context, Intent intent) {
906 final int userId = intent.getIntExtra(Intent.EXTRA_USER_HANDLE,
Xiaohui Chen43765b72015-08-31 10:57:33 -0700907 UserHandle.USER_SYSTEM);
Svetoslav683914b2015-01-15 14:22:26 -0800908
909 switch (intent.getAction()) {
910 case Intent.ACTION_USER_REMOVED: {
Svet Ganov53a441c2016-04-19 19:38:00 -0700911 synchronized (mLock) {
912 mSettingsRegistry.removeUserStateLocked(userId, true);
913 }
Svetoslav683914b2015-01-15 14:22:26 -0800914 } break;
915
916 case Intent.ACTION_USER_STOPPED: {
Svet Ganov53a441c2016-04-19 19:38:00 -0700917 synchronized (mLock) {
918 mSettingsRegistry.removeUserStateLocked(userId, false);
919 }
Svetoslav683914b2015-01-15 14:22:26 -0800920 } break;
921 }
922 }
923 }, userFilter);
924
925 PackageMonitor monitor = new PackageMonitor() {
926 @Override
927 public void onPackageRemoved(String packageName, int uid) {
928 synchronized (mLock) {
Zimuzoc56192c2018-07-25 10:40:01 +0100929 mSettingsRegistry.removeSettingsForPackageLocked(packageName,
Svetoslav683914b2015-01-15 14:22:26 -0800930 UserHandle.getUserId(uid));
931 }
932 }
Mark Rathjend891f012017-01-19 04:10:37 +0000933
934 @Override
935 public void onUidRemoved(int uid) {
936 synchronized (mLock) {
937 mSettingsRegistry.onUidRemovedLocked(uid);
938 }
939 }
Zimuzoc56192c2018-07-25 10:40:01 +0100940
941 @Override
942 public void onPackageDataCleared(String packageName, int uid) {
943 synchronized (mLock) {
944 mSettingsRegistry.removeSettingsForPackageLocked(packageName,
945 UserHandle.getUserId(uid));
946 }
947 }
Svetoslav683914b2015-01-15 14:22:26 -0800948 };
949
950 // package changes
951 monitor.register(getContext(), BackgroundThread.getHandler().getLooper(),
952 UserHandle.ALL, true);
953 }
954
Svet Ganov53a441c2016-04-19 19:38:00 -0700955 private void startWatchingUserRestrictionChanges() {
956 // TODO: The current design of settings looking different based on user restrictions
957 // should be reworked to keep them separate and system code should check the setting
958 // first followed by checking the user restriction before performing an operation.
959 UserManagerInternal userManager = LocalServices.getService(UserManagerInternal.class);
960 userManager.addUserRestrictionsListener((int userId, Bundle newRestrictions,
961 Bundle prevRestrictions) -> {
Irina Dumitrescue3696872019-01-09 16:07:59 +0000962 Set<String> changedRestrictions = getRestrictionDiff(prevRestrictions, newRestrictions);
Svet Ganov53a441c2016-04-19 19:38:00 -0700963 // We are changing the settings affected by restrictions to their current
964 // value with a forced update to ensure that all cross profile dependencies
965 // are taken into account. Also make sure the settings update to.. the same
966 // value passes the security checks, so clear binder calling id.
Irina Dumitrescue3696872019-01-09 16:07:59 +0000967 if (changedRestrictions.contains(UserManager.DISALLOW_SHARE_LOCATION)) {
Svet Ganov53a441c2016-04-19 19:38:00 -0700968 final long identity = Binder.clearCallingIdentity();
969 try {
970 synchronized (mLock) {
971 Setting setting = getSecureSetting(
Soonil Nagarkar4ee3ac22019-02-08 19:19:24 -0800972 Settings.Secure.LOCATION_MODE, userId);
973 updateSecureSetting(Settings.Secure.LOCATION_MODE,
974 setting != null ? setting.getValue() : null, null,
975 true, userId, true);
976 setting = getSecureSetting(
Svet Ganov53a441c2016-04-19 19:38:00 -0700977 Settings.Secure.LOCATION_PROVIDERS_ALLOWED, userId);
978 updateSecureSetting(Settings.Secure.LOCATION_PROVIDERS_ALLOWED,
Svetoslav Ganove080da92016-12-21 17:10:35 -0800979 setting != null ? setting.getValue() : null, null,
980 true, userId, true);
Svet Ganov53a441c2016-04-19 19:38:00 -0700981 }
982 } finally {
983 Binder.restoreCallingIdentity(identity);
984 }
985 }
Irina Dumitrescue3696872019-01-09 16:07:59 +0000986 if (changedRestrictions.contains(UserManager.DISALLOW_INSTALL_UNKNOWN_SOURCES)
987 || changedRestrictions.contains(
Irina Dumitrescu4638edd2018-09-05 14:08:33 +0100988 UserManager.DISALLOW_INSTALL_UNKNOWN_SOURCES_GLOBALLY)) {
Svet Ganov53a441c2016-04-19 19:38:00 -0700989 final long identity = Binder.clearCallingIdentity();
990 try {
991 synchronized (mLock) {
992 Setting setting = getGlobalSetting(Settings.Global.INSTALL_NON_MARKET_APPS);
Svetoslav Ganove080da92016-12-21 17:10:35 -0800993 String value = setting != null ? setting.getValue() : null;
Svet Ganov53a441c2016-04-19 19:38:00 -0700994 updateGlobalSetting(Settings.Global.INSTALL_NON_MARKET_APPS,
Svetoslav Ganove080da92016-12-21 17:10:35 -0800995 value, null, true, userId, true);
Svet Ganov53a441c2016-04-19 19:38:00 -0700996 }
997 } finally {
998 Binder.restoreCallingIdentity(identity);
999 }
1000 }
Irina Dumitrescue3696872019-01-09 16:07:59 +00001001 if (changedRestrictions.contains(UserManager.DISALLOW_DEBUGGING_FEATURES)) {
Svet Ganov53a441c2016-04-19 19:38:00 -07001002 final long identity = Binder.clearCallingIdentity();
1003 try {
1004 synchronized (mLock) {
1005 Setting setting = getGlobalSetting(Settings.Global.ADB_ENABLED);
Svetoslav Ganove080da92016-12-21 17:10:35 -08001006 String value = setting != null ? setting.getValue() : null;
Svet Ganov53a441c2016-04-19 19:38:00 -07001007 updateGlobalSetting(Settings.Global.ADB_ENABLED,
Svetoslav Ganove080da92016-12-21 17:10:35 -08001008 value, null, true, userId, true);
Svet Ganov53a441c2016-04-19 19:38:00 -07001009 }
1010 } finally {
1011 Binder.restoreCallingIdentity(identity);
1012 }
1013 }
Irina Dumitrescue3696872019-01-09 16:07:59 +00001014 if (changedRestrictions.contains(UserManager.ENSURE_VERIFY_APPS)) {
Svet Ganov53a441c2016-04-19 19:38:00 -07001015 final long identity = Binder.clearCallingIdentity();
1016 try {
1017 synchronized (mLock) {
1018 Setting enable = getGlobalSetting(
1019 Settings.Global.PACKAGE_VERIFIER_ENABLE);
Svetoslav Ganove080da92016-12-21 17:10:35 -08001020 String enableValue = enable != null ? enable.getValue() : null;
Svet Ganov53a441c2016-04-19 19:38:00 -07001021 updateGlobalSetting(Settings.Global.PACKAGE_VERIFIER_ENABLE,
Svetoslav Ganove080da92016-12-21 17:10:35 -08001022 enableValue, null, true, userId, true);
Svet Ganov53a441c2016-04-19 19:38:00 -07001023 Setting include = getGlobalSetting(
1024 Settings.Global.PACKAGE_VERIFIER_INCLUDE_ADB);
Svetoslav Ganove080da92016-12-21 17:10:35 -08001025 String includeValue = include != null ? include.getValue() : null;
Svet Ganov53a441c2016-04-19 19:38:00 -07001026 updateGlobalSetting(Settings.Global.PACKAGE_VERIFIER_INCLUDE_ADB,
Svetoslav Ganove080da92016-12-21 17:10:35 -08001027 includeValue, null, true, userId, true);
Svet Ganov53a441c2016-04-19 19:38:00 -07001028 }
1029 } finally {
1030 Binder.restoreCallingIdentity(identity);
1031 }
1032 }
Irina Dumitrescue3696872019-01-09 16:07:59 +00001033 if (changedRestrictions.contains(UserManager.DISALLOW_CONFIG_MOBILE_NETWORKS)) {
Svet Ganov53a441c2016-04-19 19:38:00 -07001034 final long identity = Binder.clearCallingIdentity();
1035 try {
1036 synchronized (mLock) {
1037 Setting setting = getGlobalSetting(
1038 Settings.Global.PREFERRED_NETWORK_MODE);
Svetoslav Ganove080da92016-12-21 17:10:35 -08001039 String value = setting != null ? setting.getValue() : null;
Svet Ganov53a441c2016-04-19 19:38:00 -07001040 updateGlobalSetting(Settings.Global.PREFERRED_NETWORK_MODE,
Svetoslav Ganove080da92016-12-21 17:10:35 -08001041 value, null, true, userId, true);
Svet Ganov53a441c2016-04-19 19:38:00 -07001042 }
1043 } finally {
1044 Binder.restoreCallingIdentity(identity);
1045 }
1046 }
1047 });
1048 }
1049
Irina Dumitrescue3696872019-01-09 16:07:59 +00001050 private static Set<String> getRestrictionDiff(Bundle prevRestrictions, Bundle newRestrictions) {
1051 Set<String> restrictionNames = Sets.newArraySet();
1052 restrictionNames.addAll(prevRestrictions.keySet());
1053 restrictionNames.addAll(newRestrictions.keySet());
1054 Set<String> diff = Sets.newArraySet();
1055 for (String restrictionName : restrictionNames) {
1056 if (prevRestrictions.getBoolean(restrictionName) != newRestrictions.getBoolean(
1057 restrictionName)) {
1058 diff.add(restrictionName);
1059 }
1060 }
1061 return diff;
1062 }
1063
Matt Pape1b31a332018-10-17 09:58:28 -07001064 private Setting getConfigSetting(String name) {
1065 if (DEBUG) {
1066 Slog.v(LOG_TAG, "getConfigSetting(" + name + ")");
1067 }
1068
1069 // TODO(b/117663715): Ensure the caller can access the setting.
Stanislav Zholnin596437f2018-12-28 15:34:23 +00001070 // enforceReadPermission(READ_DEVICE_CONFIG);
Matt Pape1b31a332018-10-17 09:58:28 -07001071
1072 // Get the value.
1073 synchronized (mLock) {
1074 return mSettingsRegistry.getSettingLocked(SETTINGS_TYPE_CONFIG,
1075 UserHandle.USER_SYSTEM, name);
1076 }
1077 }
1078
Matt Papec1323dc2018-12-11 12:32:42 -08001079 private boolean insertConfigSetting(String name, String value, boolean makeDefault) {
Matt Pape1b31a332018-10-17 09:58:28 -07001080 if (DEBUG) {
1081 Slog.v(LOG_TAG, "insertConfigSetting(" + name + ", " + value + ", "
Matt Papec1323dc2018-12-11 12:32:42 -08001082 + makeDefault + ")");
Matt Pape1b31a332018-10-17 09:58:28 -07001083 }
Matt Papec1323dc2018-12-11 12:32:42 -08001084 return mutateConfigSetting(name, value, null, makeDefault,
1085 MUTATION_OPERATION_INSERT, 0);
Matt Pape1b31a332018-10-17 09:58:28 -07001086 }
1087
Matt Papec1323dc2018-12-11 12:32:42 -08001088 private boolean deleteConfigSetting(String name) {
Matt Pape6bfc62e2018-11-28 13:16:03 -08001089 if (DEBUG) {
Matt Papec1323dc2018-12-11 12:32:42 -08001090 Slog.v(LOG_TAG, "deleteConfigSetting(" + name + ")");
Matt Pape6bfc62e2018-11-28 13:16:03 -08001091 }
Matt Papec1323dc2018-12-11 12:32:42 -08001092 return mutateConfigSetting(name, null, null, false,
1093 MUTATION_OPERATION_DELETE, 0);
Matt Pape6bfc62e2018-11-28 13:16:03 -08001094 }
1095
Matt Papec1323dc2018-12-11 12:32:42 -08001096 private void resetConfigSetting(int mode, String prefix) {
Matt Pape1b31a332018-10-17 09:58:28 -07001097 if (DEBUG) {
Matt Papec1323dc2018-12-11 12:32:42 -08001098 Slog.v(LOG_TAG, "resetConfigSetting(" + mode + ", " + prefix + ")");
Matt Pape1b31a332018-10-17 09:58:28 -07001099 }
Matt Papec1323dc2018-12-11 12:32:42 -08001100 mutateConfigSetting(null, null, prefix, false,
1101 MUTATION_OPERATION_RESET, mode);
Matt Pape1b31a332018-10-17 09:58:28 -07001102 }
1103
Matt Pape6bfc62e2018-11-28 13:16:03 -08001104 private boolean mutateConfigSetting(String name, String value, String prefix,
Matt Papec1323dc2018-12-11 12:32:42 -08001105 boolean makeDefault, int operation, int mode) {
Stanislav Zholnin596437f2018-12-28 15:34:23 +00001106
1107 // TODO(b/117663715): Ensure the caller can access the setting.
1108 // enforceReadPermission(WRITE_DEVICE_CONFIG);
Matt Pape1b31a332018-10-17 09:58:28 -07001109
Matt Pape1b31a332018-10-17 09:58:28 -07001110 // Perform the mutation.
1111 synchronized (mLock) {
1112 switch (operation) {
1113 case MUTATION_OPERATION_INSERT: {
1114 return mSettingsRegistry.insertSettingLocked(SETTINGS_TYPE_CONFIG,
Matt Papec1323dc2018-12-11 12:32:42 -08001115 UserHandle.USER_SYSTEM, name, value, null, makeDefault, true,
Matt Pape7b1c6cd2019-01-04 08:10:41 -08001116 resolveCallingPackage(), false, null);
Matt Pape1b31a332018-10-17 09:58:28 -07001117 }
1118
Matt Pape6bfc62e2018-11-28 13:16:03 -08001119 case MUTATION_OPERATION_DELETE: {
1120 return mSettingsRegistry.deleteSettingLocked(SETTINGS_TYPE_CONFIG,
Matt Papec1323dc2018-12-11 12:32:42 -08001121 UserHandle.USER_SYSTEM, name, false, null);
Matt Pape6bfc62e2018-11-28 13:16:03 -08001122 }
1123
Matt Pape1b31a332018-10-17 09:58:28 -07001124 case MUTATION_OPERATION_RESET: {
1125 mSettingsRegistry.resetSettingsLocked(SETTINGS_TYPE_CONFIG,
Matt Pape7b1c6cd2019-01-04 08:10:41 -08001126 UserHandle.USER_SYSTEM, resolveCallingPackage(), mode, null, prefix);
Matt Pape1b31a332018-10-17 09:58:28 -07001127 } return true;
1128 }
1129 }
1130
1131 return false;
1132 }
1133
Matt Pape6bfc62e2018-11-28 13:16:03 -08001134 private Map<String, String> getAllConfigFlags(@Nullable String prefix) {
1135 if (DEBUG) {
1136 Slog.v(LOG_TAG, "getAllConfigFlags() for " + prefix);
1137 }
1138
1139 synchronized (mLock) {
1140 // Get the settings.
1141 SettingsState settingsState = mSettingsRegistry.getSettingsLocked(
1142 SETTINGS_TYPE_CONFIG, UserHandle.USER_SYSTEM);
1143
1144 List<String> names = getSettingsNamesLocked(SETTINGS_TYPE_CONFIG,
1145 UserHandle.USER_SYSTEM);
1146
1147 final int nameCount = names.size();
1148 Map<String, String> flagsToValues = new HashMap<>(names.size());
1149
1150 for (int i = 0; i < nameCount; i++) {
1151 String name = names.get(i);
1152 Setting setting = settingsState.getSettingLocked(name);
1153 if (prefix == null || setting.getName().startsWith(prefix)) {
1154 flagsToValues.put(setting.getName(), setting.getValue());
1155 }
1156 }
1157
1158 return flagsToValues;
1159 }
1160 }
1161
Svetoslav7ec28e82015-05-20 17:01:10 -07001162 private Cursor getAllGlobalSettings(String[] projection) {
Svetoslav683914b2015-01-15 14:22:26 -08001163 if (DEBUG) {
Svetoslav7ec28e82015-05-20 17:01:10 -07001164 Slog.v(LOG_TAG, "getAllGlobalSettings()");
Svetoslav683914b2015-01-15 14:22:26 -08001165 }
1166
Svetoslav7ec28e82015-05-20 17:01:10 -07001167 synchronized (mLock) {
1168 // Get the settings.
1169 SettingsState settingsState = mSettingsRegistry.getSettingsLocked(
Svet Ganov53a441c2016-04-19 19:38:00 -07001170 SETTINGS_TYPE_GLOBAL, UserHandle.USER_SYSTEM);
Svetoslav683914b2015-01-15 14:22:26 -08001171
Chad Brubaker97bccee2017-01-05 15:51:41 -08001172 List<String> names = getSettingsNamesLocked(SETTINGS_TYPE_GLOBAL,
1173 UserHandle.USER_SYSTEM);
Svetoslav683914b2015-01-15 14:22:26 -08001174
Svetoslav7ec28e82015-05-20 17:01:10 -07001175 final int nameCount = names.size();
Svetoslav683914b2015-01-15 14:22:26 -08001176
Svetoslav7ec28e82015-05-20 17:01:10 -07001177 String[] normalizedProjection = normalizeProjection(projection);
1178 MatrixCursor result = new MatrixCursor(normalizedProjection, nameCount);
Svetoslav683914b2015-01-15 14:22:26 -08001179
Svetoslav7ec28e82015-05-20 17:01:10 -07001180 // Anyone can get the global settings, so no security checks.
1181 for (int i = 0; i < nameCount; i++) {
1182 String name = names.get(i);
1183 Setting setting = settingsState.getSettingLocked(name);
1184 appendSettingToCursor(result, setting);
1185 }
1186
1187 return result;
Svetoslav683914b2015-01-15 14:22:26 -08001188 }
Svetoslav683914b2015-01-15 14:22:26 -08001189 }
1190
Svetoslav7ec28e82015-05-20 17:01:10 -07001191 private Setting getGlobalSetting(String name) {
Svetoslav683914b2015-01-15 14:22:26 -08001192 if (DEBUG) {
1193 Slog.v(LOG_TAG, "getGlobalSetting(" + name + ")");
1194 }
1195
Chad Brubakera6830e72017-04-28 17:34:36 -07001196 // Ensure the caller can access the setting.
1197 enforceSettingReadable(name, SETTINGS_TYPE_GLOBAL, UserHandle.getCallingUserId());
1198
Svetoslav683914b2015-01-15 14:22:26 -08001199 // Get the value.
Svetoslav7ec28e82015-05-20 17:01:10 -07001200 synchronized (mLock) {
Chad Brubakera6830e72017-04-28 17:34:36 -07001201 return mSettingsRegistry.getSettingLocked(SETTINGS_TYPE_GLOBAL,
Xiaohui Chen43765b72015-08-31 10:57:33 -07001202 UserHandle.USER_SYSTEM, name);
Svetoslav683914b2015-01-15 14:22:26 -08001203 }
Svetoslav683914b2015-01-15 14:22:26 -08001204 }
1205
Svetoslav Ganove080da92016-12-21 17:10:35 -08001206 private boolean updateGlobalSetting(String name, String value, String tag,
1207 boolean makeDefault, int requestingUserId, boolean forceNotify) {
Svetoslav683914b2015-01-15 14:22:26 -08001208 if (DEBUG) {
Svetoslav Ganove080da92016-12-21 17:10:35 -08001209 Slog.v(LOG_TAG, "updateGlobalSetting(" + name + ", " + value + ", "
1210 + ", " + tag + ", " + makeDefault + ", " + requestingUserId
1211 + ", " + forceNotify + ")");
Svetoslav683914b2015-01-15 14:22:26 -08001212 }
Svetoslav Ganove080da92016-12-21 17:10:35 -08001213 return mutateGlobalSetting(name, value, tag, makeDefault, requestingUserId,
1214 MUTATION_OPERATION_UPDATE, forceNotify, 0);
Svetoslav683914b2015-01-15 14:22:26 -08001215 }
1216
Svetoslav Ganove080da92016-12-21 17:10:35 -08001217 private boolean insertGlobalSetting(String name, String value, String tag,
1218 boolean makeDefault, int requestingUserId, boolean forceNotify) {
Svetoslav7ec28e82015-05-20 17:01:10 -07001219 if (DEBUG) {
Svetoslav Ganove080da92016-12-21 17:10:35 -08001220 Slog.v(LOG_TAG, "insertGlobalSetting(" + name + ", " + value + ", "
1221 + ", " + tag + ", " + makeDefault + ", " + requestingUserId
1222 + ", " + forceNotify + ")");
Svetoslav7ec28e82015-05-20 17:01:10 -07001223 }
Svetoslav Ganove080da92016-12-21 17:10:35 -08001224 return mutateGlobalSetting(name, value, tag, makeDefault, requestingUserId,
1225 MUTATION_OPERATION_INSERT, forceNotify, 0);
Svetoslav7ec28e82015-05-20 17:01:10 -07001226 }
1227
Svet Ganov53a441c2016-04-19 19:38:00 -07001228 private boolean deleteGlobalSetting(String name, int requestingUserId, boolean forceNotify) {
Svetoslav683914b2015-01-15 14:22:26 -08001229 if (DEBUG) {
Svetoslav Ganove080da92016-12-21 17:10:35 -08001230 Slog.v(LOG_TAG, "deleteGlobalSetting(" + name + ", " + requestingUserId
1231 + ", " + forceNotify + ")");
Svetoslav683914b2015-01-15 14:22:26 -08001232 }
Svetoslav Ganove080da92016-12-21 17:10:35 -08001233 return mutateGlobalSetting(name, null, null, false, requestingUserId,
1234 MUTATION_OPERATION_DELETE, forceNotify, 0);
Svetoslav683914b2015-01-15 14:22:26 -08001235 }
1236
Svetoslav Ganove080da92016-12-21 17:10:35 -08001237 private void resetGlobalSetting(int requestingUserId, int mode, String tag) {
1238 if (DEBUG) {
1239 Slog.v(LOG_TAG, "resetGlobalSetting(" + requestingUserId + ", "
1240 + mode + ", " + tag + ")");
1241 }
1242 mutateGlobalSetting(null, null, tag, false, requestingUserId,
1243 MUTATION_OPERATION_RESET, false, mode);
1244 }
1245
1246 private boolean mutateGlobalSetting(String name, String value, String tag,
1247 boolean makeDefault, int requestingUserId, int operation, boolean forceNotify,
1248 int mode) {
Svetoslav683914b2015-01-15 14:22:26 -08001249 // Make sure the caller can change the settings - treated as secure.
1250 enforceWritePermission(Manifest.permission.WRITE_SECURE_SETTINGS);
1251
Svetoslav683914b2015-01-15 14:22:26 -08001252 // Resolve the userId on whose behalf the call is made.
1253 final int callingUserId = resolveCallingUserIdEnforcingPermissionsLocked(requestingUserId);
1254
Makoto Onuki28da2e32015-11-20 11:30:44 -08001255 // If this is a setting that is currently restricted for this user, do not allow
1256 // unrestricting changes.
yuemingw1d13eae2018-01-30 17:27:54 +00001257 if (name != null && mUserManagerInternal.isSettingRestrictedForUser(
1258 name, callingUserId, value, Binder.getCallingUid())) {
Svetoslav683914b2015-01-15 14:22:26 -08001259 return false;
1260 }
1261
1262 // Perform the mutation.
Svetoslav7ec28e82015-05-20 17:01:10 -07001263 synchronized (mLock) {
1264 switch (operation) {
1265 case MUTATION_OPERATION_INSERT: {
Svetoslav Ganove080da92016-12-21 17:10:35 -08001266 return mSettingsRegistry.insertSettingLocked(SETTINGS_TYPE_GLOBAL,
1267 UserHandle.USER_SYSTEM, name, value, tag, makeDefault,
Svetoslav Ganov5fb405b2017-01-26 22:43:09 -08001268 getCallingPackage(), forceNotify, CRITICAL_GLOBAL_SETTINGS);
Svetoslav7ec28e82015-05-20 17:01:10 -07001269 }
Svetoslav683914b2015-01-15 14:22:26 -08001270
Svetoslav7ec28e82015-05-20 17:01:10 -07001271 case MUTATION_OPERATION_DELETE: {
Svet Ganov53a441c2016-04-19 19:38:00 -07001272 return mSettingsRegistry.deleteSettingLocked(SETTINGS_TYPE_GLOBAL,
Svetoslav Ganov5fb405b2017-01-26 22:43:09 -08001273 UserHandle.USER_SYSTEM, name, forceNotify, CRITICAL_GLOBAL_SETTINGS);
Svetoslav7ec28e82015-05-20 17:01:10 -07001274 }
Svetoslav683914b2015-01-15 14:22:26 -08001275
Svetoslav7ec28e82015-05-20 17:01:10 -07001276 case MUTATION_OPERATION_UPDATE: {
Svetoslav Ganove080da92016-12-21 17:10:35 -08001277 return mSettingsRegistry.updateSettingLocked(SETTINGS_TYPE_GLOBAL,
1278 UserHandle.USER_SYSTEM, name, value, tag, makeDefault,
Svetoslav Ganov5fb405b2017-01-26 22:43:09 -08001279 getCallingPackage(), forceNotify, CRITICAL_GLOBAL_SETTINGS);
Svetoslav7ec28e82015-05-20 17:01:10 -07001280 }
Svetoslav Ganove080da92016-12-21 17:10:35 -08001281
1282 case MUTATION_OPERATION_RESET: {
1283 mSettingsRegistry.resetSettingsLocked(SETTINGS_TYPE_GLOBAL,
1284 UserHandle.USER_SYSTEM, getCallingPackage(), mode, tag);
1285 } return true;
Svetoslav683914b2015-01-15 14:22:26 -08001286 }
1287 }
1288
1289 return false;
1290 }
1291
Christopher Tateb218e762017-04-05 16:34:07 -07001292 private PackageInfo getCallingPackageInfo(int userId) {
1293 try {
1294 return mPackageManager.getPackageInfo(getCallingPackage(),
1295 PackageManager.GET_SIGNATURES, userId);
1296 } catch (RemoteException e) {
1297 throw new IllegalStateException("Package " + getCallingPackage() + " doesn't exist");
1298 }
1299 }
1300
Svetoslav7ec28e82015-05-20 17:01:10 -07001301 private Cursor getAllSecureSettings(int userId, String[] projection) {
Svetoslav683914b2015-01-15 14:22:26 -08001302 if (DEBUG) {
1303 Slog.v(LOG_TAG, "getAllSecureSettings(" + userId + ")");
1304 }
1305
1306 // Resolve the userId on whose behalf the call is made.
1307 final int callingUserId = resolveCallingUserIdEnforcingPermissionsLocked(userId);
1308
Christopher Tateb218e762017-04-05 16:34:07 -07001309 // The relevant "calling package" userId will be the owning userId for some
1310 // profiles, and we can't do the lookup inside our [lock held] loop, so work out
1311 // up front who the effective "new SSAID" user ID for that settings name will be.
1312 final int ssaidUserId = resolveOwningUserIdForSecureSettingLocked(callingUserId,
1313 Settings.Secure.ANDROID_ID);
1314 final PackageInfo ssaidCallingPkg = getCallingPackageInfo(ssaidUserId);
1315
Svetoslav7ec28e82015-05-20 17:01:10 -07001316 synchronized (mLock) {
Chad Brubaker97bccee2017-01-05 15:51:41 -08001317 List<String> names = getSettingsNamesLocked(SETTINGS_TYPE_SECURE, callingUserId);
Svetoslav683914b2015-01-15 14:22:26 -08001318
Svetoslav7ec28e82015-05-20 17:01:10 -07001319 final int nameCount = names.size();
Svetoslav683914b2015-01-15 14:22:26 -08001320
Svetoslav7ec28e82015-05-20 17:01:10 -07001321 String[] normalizedProjection = normalizeProjection(projection);
1322 MatrixCursor result = new MatrixCursor(normalizedProjection, nameCount);
Svetoslav683914b2015-01-15 14:22:26 -08001323
Svetoslav7ec28e82015-05-20 17:01:10 -07001324 for (int i = 0; i < nameCount; i++) {
1325 String name = names.get(i);
1326 // Determine the owning user as some profile settings are cloned from the parent.
1327 final int owningUserId = resolveOwningUserIdForSecureSettingLocked(callingUserId,
1328 name);
Svetoslav683914b2015-01-15 14:22:26 -08001329
Alex Klyubin1991f572017-03-03 14:08:36 -08001330 if (!isSecureSettingAccessible(name, callingUserId, owningUserId)) {
1331 // This caller is not permitted to access this setting. Pretend the setting
1332 // doesn't exist.
Svetoslav Ganov83a1f7f2016-04-27 13:50:49 -07001333 continue;
Svetoslav7ec28e82015-05-20 17:01:10 -07001334 }
Svetoslav683914b2015-01-15 14:22:26 -08001335
Mark Rathjen7599f132017-01-23 14:15:54 -08001336 // As of Android O, the SSAID is read from an app-specific entry in table
Mark Rathjend891f012017-01-19 04:10:37 +00001337 // SETTINGS_FILE_SSAID, unless accessed by a system process.
1338 final Setting setting;
1339 if (isNewSsaidSetting(name)) {
Christopher Tateb218e762017-04-05 16:34:07 -07001340 setting = getSsaidSettingLocked(ssaidCallingPkg, owningUserId);
Mark Rathjend891f012017-01-19 04:10:37 +00001341 } else {
1342 setting = mSettingsRegistry.getSettingLocked(SETTINGS_TYPE_SECURE, owningUserId,
1343 name);
1344 }
Svetoslav7ec28e82015-05-20 17:01:10 -07001345 appendSettingToCursor(result, setting);
Svetoslav683914b2015-01-15 14:22:26 -08001346 }
1347
Svetoslav7ec28e82015-05-20 17:01:10 -07001348 return result;
Svetoslav683914b2015-01-15 14:22:26 -08001349 }
Svetoslav683914b2015-01-15 14:22:26 -08001350 }
1351
Svetoslav7ec28e82015-05-20 17:01:10 -07001352 private Setting getSecureSetting(String name, int requestingUserId) {
Makoto Onuki0000d322017-11-28 16:31:47 -08001353 return getSecureSetting(name, requestingUserId, /*enableOverride=*/ false);
1354 }
1355
1356 private Setting getSecureSetting(String name, int requestingUserId, boolean enableOverride) {
Svetoslav683914b2015-01-15 14:22:26 -08001357 if (DEBUG) {
1358 Slog.v(LOG_TAG, "getSecureSetting(" + name + ", " + requestingUserId + ")");
1359 }
1360
1361 // Resolve the userId on whose behalf the call is made.
1362 final int callingUserId = resolveCallingUserIdEnforcingPermissionsLocked(requestingUserId);
1363
Chad Brubakera6830e72017-04-28 17:34:36 -07001364 // Ensure the caller can access the setting.
1365 enforceSettingReadable(name, SETTINGS_TYPE_SECURE, UserHandle.getCallingUserId());
1366
Svetoslav683914b2015-01-15 14:22:26 -08001367 // Determine the owning user as some profile settings are cloned from the parent.
1368 final int owningUserId = resolveOwningUserIdForSecureSettingLocked(callingUserId, name);
1369
Alex Klyubin1991f572017-03-03 14:08:36 -08001370 if (!isSecureSettingAccessible(name, callingUserId, owningUserId)) {
1371 // This caller is not permitted to access this setting. Pretend the setting doesn't
1372 // exist.
Dianne Hackborn32f40ee2016-10-20 15:54:14 -07001373 SettingsState settings = mSettingsRegistry.getSettingsLocked(SETTINGS_TYPE_SECURE,
1374 owningUserId);
1375 return settings != null ? settings.getNullSetting() : null;
Svetoslav683914b2015-01-15 14:22:26 -08001376 }
1377
Christopher Tateb218e762017-04-05 16:34:07 -07001378 // As of Android O, the SSAID is read from an app-specific entry in table
1379 // SETTINGS_FILE_SSAID, unless accessed by a system process.
1380 if (isNewSsaidSetting(name)) {
1381 PackageInfo callingPkg = getCallingPackageInfo(owningUserId);
1382 synchronized (mLock) {
1383 return getSsaidSettingLocked(callingPkg, owningUserId);
Mark Rathjend891f012017-01-19 04:10:37 +00001384 }
Christopher Tateb218e762017-04-05 16:34:07 -07001385 }
Makoto Onuki0000d322017-11-28 16:31:47 -08001386 if (enableOverride) {
Kweku Adams5e0052b2019-02-22 15:17:52 -08001387 if (Secure.LOCATION_MODE.equals(name)) {
1388 final Setting overridden = getLocationModeSetting(owningUserId);
Makoto Onuki0000d322017-11-28 16:31:47 -08001389 if (overridden != null) {
1390 return overridden;
1391 }
1392 }
1393 }
Mark Rathjend891f012017-01-19 04:10:37 +00001394
Christopher Tateb218e762017-04-05 16:34:07 -07001395 // Not the SSAID; do a straight lookup
1396 synchronized (mLock) {
Chad Brubakera6830e72017-04-28 17:34:36 -07001397 return mSettingsRegistry.getSettingLocked(SETTINGS_TYPE_SECURE,
Svetoslav7ec28e82015-05-20 17:01:10 -07001398 owningUserId, name);
1399 }
Svetoslav683914b2015-01-15 14:22:26 -08001400 }
1401
Mark Rathjend891f012017-01-19 04:10:37 +00001402 private boolean isNewSsaidSetting(String name) {
1403 return Settings.Secure.ANDROID_ID.equals(name)
1404 && UserHandle.getAppId(Binder.getCallingUid()) >= Process.FIRST_APPLICATION_UID;
1405 }
1406
Andreas Gampeb58893072018-09-05 16:52:31 -07001407 @GuardedBy("mLock")
Christopher Tateb218e762017-04-05 16:34:07 -07001408 private Setting getSsaidSettingLocked(PackageInfo callingPkg, int owningUserId) {
Mark Rathjend891f012017-01-19 04:10:37 +00001409 // Get uid of caller (key) used to store ssaid value
1410 String name = Integer.toString(
1411 UserHandle.getUid(owningUserId, UserHandle.getAppId(Binder.getCallingUid())));
1412
1413 if (DEBUG) {
1414 Slog.v(LOG_TAG, "getSsaidSettingLocked(" + name + "," + owningUserId + ")");
1415 }
1416
1417 // Retrieve the ssaid from the table if present.
1418 final Setting ssaid = mSettingsRegistry.getSettingLocked(SETTINGS_TYPE_SSAID, owningUserId,
1419 name);
Chad Brubaker0d277a72017-04-12 16:56:53 -07001420 // If the app is an Instant App use its stored SSAID instead of our own.
1421 final String instantSsaid;
1422 final long token = Binder.clearCallingIdentity();
1423 try {
1424 instantSsaid = mPackageManager.getInstantAppAndroidId(callingPkg.packageName,
1425 owningUserId);
1426 } catch (RemoteException e) {
1427 Slog.e(LOG_TAG, "Failed to get Instant App Android ID", e);
1428 return null;
1429 } finally {
1430 Binder.restoreCallingIdentity(token);
1431 }
Svet Ganov96c99462017-05-05 14:27:13 -07001432
1433 final SettingsState ssaidSettings = mSettingsRegistry.getSettingsLocked(
1434 SETTINGS_TYPE_SSAID, owningUserId);
1435
Chad Brubaker0d277a72017-04-12 16:56:53 -07001436 if (instantSsaid != null) {
1437 // Use the stored value if it is still valid.
1438 if (ssaid != null && instantSsaid.equals(ssaid.getValue())) {
Svet Ganov96c99462017-05-05 14:27:13 -07001439 return mascaradeSsaidSetting(ssaidSettings, ssaid);
Chad Brubaker0d277a72017-04-12 16:56:53 -07001440 }
1441 // The value has changed, update the stored value.
Chad Brubaker0d277a72017-04-12 16:56:53 -07001442 final boolean success = ssaidSettings.insertSettingLocked(name, instantSsaid, null,
1443 true, callingPkg.packageName);
1444 if (!success) {
1445 throw new IllegalStateException("Failed to update instant app android id");
1446 }
Svet Ganov96c99462017-05-05 14:27:13 -07001447 Setting setting = mSettingsRegistry.getSettingLocked(SETTINGS_TYPE_SSAID,
1448 owningUserId, name);
1449 return mascaradeSsaidSetting(ssaidSettings, setting);
Chad Brubaker0d277a72017-04-12 16:56:53 -07001450 }
Mark Rathjend891f012017-01-19 04:10:37 +00001451
1452 // Lazy initialize ssaid if not yet present in ssaid table.
Mark Rathjenea617592017-01-18 23:03:41 -08001453 if (ssaid == null || ssaid.isNull() || ssaid.getValue() == null) {
Svet Ganov96c99462017-05-05 14:27:13 -07001454 Setting setting = mSettingsRegistry.generateSsaidLocked(callingPkg, owningUserId);
1455 return mascaradeSsaidSetting(ssaidSettings, setting);
Mark Rathjend891f012017-01-19 04:10:37 +00001456 }
1457
Svet Ganov96c99462017-05-05 14:27:13 -07001458 return mascaradeSsaidSetting(ssaidSettings, ssaid);
1459 }
1460
1461 private Setting mascaradeSsaidSetting(SettingsState settingsState, Setting ssaidSetting) {
1462 // SSAID settings are located in a dedicated table for internal bookkeeping
1463 // but for the world they reside in the secure table, so adjust the key here.
1464 // We have a special name when looking it up but want the world to see it as
1465 // "android_id".
1466 if (ssaidSetting != null) {
1467 return settingsState.new Setting(ssaidSetting) {
1468 @Override
1469 public int getKey() {
1470 final int userId = getUserIdFromKey(super.getKey());
1471 return makeKey(SETTINGS_TYPE_SECURE, userId);
1472 }
1473
1474 @Override
1475 public String getName() {
1476 return Settings.Secure.ANDROID_ID;
1477 }
1478 };
1479 }
1480 return null;
Mark Rathjend891f012017-01-19 04:10:37 +00001481 }
1482
Kweku Adams5e0052b2019-02-22 15:17:52 -08001483 private Setting getLocationModeSetting(int owningUserId) {
Makoto Onuki0000d322017-11-28 16:31:47 -08001484 synchronized (mLock) {
1485 final Setting setting = getGlobalSetting(
1486 Global.LOCATION_GLOBAL_KILL_SWITCH);
1487 if (!"1".equals(setting.getValue())) {
1488 return null;
1489 }
1490 // Global kill-switch is enabled. Return an empty value.
1491 final SettingsState settingsState = mSettingsRegistry.getSettingsLocked(
1492 SETTINGS_TYPE_SECURE, owningUserId);
1493 return settingsState.new Setting(
Kweku Adams5e0052b2019-02-22 15:17:52 -08001494 Secure.LOCATION_MODE,
Makoto Onuki0000d322017-11-28 16:31:47 -08001495 "", // value
1496 "", // tag
1497 "", // default value
1498 "", // package name
1499 false, // from system
1500 "0" // id
1501 ) {
1502 @Override
1503 public boolean update(String value, boolean setDefault, String packageName,
1504 String tag, boolean forceNonSystemPackage) {
Kweku Adams5e0052b2019-02-22 15:17:52 -08001505 Slog.wtf(LOG_TAG, "update shouldn't be called on this instance.");
Makoto Onuki0000d322017-11-28 16:31:47 -08001506 return false;
1507 }
1508 };
1509 }
1510 }
1511
Svetoslav Ganove080da92016-12-21 17:10:35 -08001512 private boolean insertSecureSetting(String name, String value, String tag,
1513 boolean makeDefault, int requestingUserId, boolean forceNotify) {
Svetoslav683914b2015-01-15 14:22:26 -08001514 if (DEBUG) {
Svetoslav7ec28e82015-05-20 17:01:10 -07001515 Slog.v(LOG_TAG, "insertSecureSetting(" + name + ", " + value + ", "
Svetoslav Ganove080da92016-12-21 17:10:35 -08001516 + ", " + tag + ", " + makeDefault + ", " + requestingUserId
1517 + ", " + forceNotify + ")");
Svetoslav683914b2015-01-15 14:22:26 -08001518 }
Svetoslav Ganove080da92016-12-21 17:10:35 -08001519 return mutateSecureSetting(name, value, tag, makeDefault, requestingUserId,
1520 MUTATION_OPERATION_INSERT, forceNotify, 0);
Svetoslav683914b2015-01-15 14:22:26 -08001521 }
1522
Svet Ganov53a441c2016-04-19 19:38:00 -07001523 private boolean deleteSecureSetting(String name, int requestingUserId, boolean forceNotify) {
Svetoslav683914b2015-01-15 14:22:26 -08001524 if (DEBUG) {
Svetoslav Ganove080da92016-12-21 17:10:35 -08001525 Slog.v(LOG_TAG, "deleteSecureSetting(" + name + ", " + requestingUserId
1526 + ", " + forceNotify + ")");
Svetoslav683914b2015-01-15 14:22:26 -08001527 }
1528
Svetoslav Ganove080da92016-12-21 17:10:35 -08001529 return mutateSecureSetting(name, null, null, false, requestingUserId,
1530 MUTATION_OPERATION_DELETE, forceNotify, 0);
Svetoslav683914b2015-01-15 14:22:26 -08001531 }
1532
Svetoslav Ganove080da92016-12-21 17:10:35 -08001533 private boolean updateSecureSetting(String name, String value, String tag,
1534 boolean makeDefault, int requestingUserId, boolean forceNotify) {
Svetoslav683914b2015-01-15 14:22:26 -08001535 if (DEBUG) {
Svetoslav7ec28e82015-05-20 17:01:10 -07001536 Slog.v(LOG_TAG, "updateSecureSetting(" + name + ", " + value + ", "
Svetoslav Ganove080da92016-12-21 17:10:35 -08001537 + ", " + tag + ", " + makeDefault + ", " + requestingUserId
1538 + ", " + forceNotify +")");
Svetoslav683914b2015-01-15 14:22:26 -08001539 }
1540
Svetoslav Ganove080da92016-12-21 17:10:35 -08001541 return mutateSecureSetting(name, value, tag, makeDefault, requestingUserId,
1542 MUTATION_OPERATION_UPDATE, forceNotify, 0);
Svetoslav683914b2015-01-15 14:22:26 -08001543 }
1544
Svetoslav Ganove080da92016-12-21 17:10:35 -08001545 private void resetSecureSetting(int requestingUserId, int mode, String tag) {
1546 if (DEBUG) {
1547 Slog.v(LOG_TAG, "resetSecureSetting(" + requestingUserId + ", "
1548 + mode + ", " + tag + ")");
1549 }
1550
1551 mutateSecureSetting(null, null, tag, false, requestingUserId,
1552 MUTATION_OPERATION_RESET, false, mode);
1553 }
1554
1555 private boolean mutateSecureSetting(String name, String value, String tag,
1556 boolean makeDefault, int requestingUserId, int operation, boolean forceNotify,
1557 int mode) {
Svetoslav683914b2015-01-15 14:22:26 -08001558 // Make sure the caller can change the settings.
1559 enforceWritePermission(Manifest.permission.WRITE_SECURE_SETTINGS);
1560
Svetoslav683914b2015-01-15 14:22:26 -08001561 // Resolve the userId on whose behalf the call is made.
1562 final int callingUserId = resolveCallingUserIdEnforcingPermissionsLocked(requestingUserId);
1563
Makoto Onuki28da2e32015-11-20 11:30:44 -08001564 // If this is a setting that is currently restricted for this user, do not allow
1565 // unrestricting changes.
yuemingw1d13eae2018-01-30 17:27:54 +00001566 if (name != null && mUserManagerInternal.isSettingRestrictedForUser(
1567 name, callingUserId, value, Binder.getCallingUid())) {
Svetoslav683914b2015-01-15 14:22:26 -08001568 return false;
1569 }
1570
1571 // Determine the owning user as some profile settings are cloned from the parent.
1572 final int owningUserId = resolveOwningUserIdForSecureSettingLocked(callingUserId, name);
1573
1574 // Only the owning user can change the setting.
1575 if (owningUserId != callingUserId) {
1576 return false;
1577 }
1578
1579 // Special cases for location providers (sigh).
1580 if (Settings.Secure.LOCATION_PROVIDERS_ALLOWED.equals(name)) {
Svetoslav Ganove080da92016-12-21 17:10:35 -08001581 return updateLocationProvidersAllowedLocked(value, tag, owningUserId, makeDefault,
1582 forceNotify);
Svetoslav683914b2015-01-15 14:22:26 -08001583 }
1584
1585 // Mutate the value.
Svetoslav7ec28e82015-05-20 17:01:10 -07001586 synchronized (mLock) {
1587 switch (operation) {
1588 case MUTATION_OPERATION_INSERT: {
Svet Ganov53a441c2016-04-19 19:38:00 -07001589 return mSettingsRegistry.insertSettingLocked(SETTINGS_TYPE_SECURE,
Svetoslav Ganove080da92016-12-21 17:10:35 -08001590 owningUserId, name, value, tag, makeDefault,
Svetoslav Ganov5fb405b2017-01-26 22:43:09 -08001591 getCallingPackage(), forceNotify, CRITICAL_SECURE_SETTINGS);
Svetoslav7ec28e82015-05-20 17:01:10 -07001592 }
Svetoslav683914b2015-01-15 14:22:26 -08001593
Svetoslav7ec28e82015-05-20 17:01:10 -07001594 case MUTATION_OPERATION_DELETE: {
Svet Ganov53a441c2016-04-19 19:38:00 -07001595 return mSettingsRegistry.deleteSettingLocked(SETTINGS_TYPE_SECURE,
Svetoslav Ganov5fb405b2017-01-26 22:43:09 -08001596 owningUserId, name, forceNotify, CRITICAL_SECURE_SETTINGS);
Svetoslav7ec28e82015-05-20 17:01:10 -07001597 }
Svetoslav683914b2015-01-15 14:22:26 -08001598
Svetoslav7ec28e82015-05-20 17:01:10 -07001599 case MUTATION_OPERATION_UPDATE: {
Svet Ganov53a441c2016-04-19 19:38:00 -07001600 return mSettingsRegistry.updateSettingLocked(SETTINGS_TYPE_SECURE,
Svetoslav Ganove080da92016-12-21 17:10:35 -08001601 owningUserId, name, value, tag, makeDefault,
Svetoslav Ganov5fb405b2017-01-26 22:43:09 -08001602 getCallingPackage(), forceNotify, CRITICAL_SECURE_SETTINGS);
Svetoslav7ec28e82015-05-20 17:01:10 -07001603 }
Svetoslav Ganove080da92016-12-21 17:10:35 -08001604
1605 case MUTATION_OPERATION_RESET: {
1606 mSettingsRegistry.resetSettingsLocked(SETTINGS_TYPE_SECURE,
1607 UserHandle.USER_SYSTEM, getCallingPackage(), mode, tag);
1608 } return true;
Svetoslav683914b2015-01-15 14:22:26 -08001609 }
1610 }
1611
1612 return false;
1613 }
1614
Svetoslav7ec28e82015-05-20 17:01:10 -07001615 private Cursor getAllSystemSettings(int userId, String[] projection) {
Svetoslav683914b2015-01-15 14:22:26 -08001616 if (DEBUG) {
Svetoslav7ec28e82015-05-20 17:01:10 -07001617 Slog.v(LOG_TAG, "getAllSecureSystem(" + userId + ")");
Svetoslav683914b2015-01-15 14:22:26 -08001618 }
1619
1620 // Resolve the userId on whose behalf the call is made.
1621 final int callingUserId = resolveCallingUserIdEnforcingPermissionsLocked(userId);
1622
Svetoslav7ec28e82015-05-20 17:01:10 -07001623 synchronized (mLock) {
Chad Brubaker97bccee2017-01-05 15:51:41 -08001624 List<String> names = getSettingsNamesLocked(SETTINGS_TYPE_SYSTEM, callingUserId);
Svetoslav683914b2015-01-15 14:22:26 -08001625
Svetoslav7ec28e82015-05-20 17:01:10 -07001626 final int nameCount = names.size();
Svetoslav683914b2015-01-15 14:22:26 -08001627
Svetoslav7ec28e82015-05-20 17:01:10 -07001628 String[] normalizedProjection = normalizeProjection(projection);
1629 MatrixCursor result = new MatrixCursor(normalizedProjection, nameCount);
Svetoslav683914b2015-01-15 14:22:26 -08001630
Svetoslav7ec28e82015-05-20 17:01:10 -07001631 for (int i = 0; i < nameCount; i++) {
1632 String name = names.get(i);
Svetoslav683914b2015-01-15 14:22:26 -08001633
Svetoslav7ec28e82015-05-20 17:01:10 -07001634 // Determine the owning user as some profile settings are cloned from the parent.
1635 final int owningUserId = resolveOwningUserIdForSystemSettingLocked(callingUserId,
1636 name);
Svetoslav683914b2015-01-15 14:22:26 -08001637
Svetoslav7ec28e82015-05-20 17:01:10 -07001638 Setting setting = mSettingsRegistry.getSettingLocked(
Svet Ganov53a441c2016-04-19 19:38:00 -07001639 SETTINGS_TYPE_SYSTEM, owningUserId, name);
Svetoslav7ec28e82015-05-20 17:01:10 -07001640 appendSettingToCursor(result, setting);
1641 }
1642
1643 return result;
Svetoslav683914b2015-01-15 14:22:26 -08001644 }
Svetoslav683914b2015-01-15 14:22:26 -08001645 }
1646
Svetoslav7ec28e82015-05-20 17:01:10 -07001647 private Setting getSystemSetting(String name, int requestingUserId) {
Svetoslav683914b2015-01-15 14:22:26 -08001648 if (DEBUG) {
1649 Slog.v(LOG_TAG, "getSystemSetting(" + name + ", " + requestingUserId + ")");
1650 }
1651
1652 // Resolve the userId on whose behalf the call is made.
1653 final int callingUserId = resolveCallingUserIdEnforcingPermissionsLocked(requestingUserId);
1654
Chad Brubakera6830e72017-04-28 17:34:36 -07001655 // Ensure the caller can access the setting.
1656 enforceSettingReadable(name, SETTINGS_TYPE_SYSTEM, UserHandle.getCallingUserId());
Chad Brubaker97bccee2017-01-05 15:51:41 -08001657
Svetoslav683914b2015-01-15 14:22:26 -08001658 // Determine the owning user as some profile settings are cloned from the parent.
1659 final int owningUserId = resolveOwningUserIdForSystemSettingLocked(callingUserId, name);
1660
1661 // Get the value.
Svetoslav7ec28e82015-05-20 17:01:10 -07001662 synchronized (mLock) {
Chad Brubakera6830e72017-04-28 17:34:36 -07001663 return mSettingsRegistry.getSettingLocked(SETTINGS_TYPE_SYSTEM, owningUserId, name);
Svetoslav7ec28e82015-05-20 17:01:10 -07001664 }
Svetoslav683914b2015-01-15 14:22:26 -08001665 }
1666
Svetoslav7ec28e82015-05-20 17:01:10 -07001667 private boolean insertSystemSetting(String name, String value, int requestingUserId) {
Svetoslav683914b2015-01-15 14:22:26 -08001668 if (DEBUG) {
Svetoslav7ec28e82015-05-20 17:01:10 -07001669 Slog.v(LOG_TAG, "insertSystemSetting(" + name + ", " + value + ", "
Svetoslav683914b2015-01-15 14:22:26 -08001670 + requestingUserId + ")");
1671 }
1672
Svetoslav7ec28e82015-05-20 17:01:10 -07001673 return mutateSystemSetting(name, value, requestingUserId, MUTATION_OPERATION_INSERT);
Svetoslav683914b2015-01-15 14:22:26 -08001674 }
1675
Svetoslav7ec28e82015-05-20 17:01:10 -07001676 private boolean deleteSystemSetting(String name, int requestingUserId) {
Svetoslav683914b2015-01-15 14:22:26 -08001677 if (DEBUG) {
Svetoslav7ec28e82015-05-20 17:01:10 -07001678 Slog.v(LOG_TAG, "deleteSystemSetting(" + name + ", " + requestingUserId + ")");
Svetoslav683914b2015-01-15 14:22:26 -08001679 }
1680
Svetoslav7ec28e82015-05-20 17:01:10 -07001681 return mutateSystemSetting(name, null, requestingUserId, MUTATION_OPERATION_DELETE);
Svetoslav683914b2015-01-15 14:22:26 -08001682 }
1683
Svetoslav7ec28e82015-05-20 17:01:10 -07001684 private boolean updateSystemSetting(String name, String value, int requestingUserId) {
Svetoslav683914b2015-01-15 14:22:26 -08001685 if (DEBUG) {
Svetoslav7ec28e82015-05-20 17:01:10 -07001686 Slog.v(LOG_TAG, "updateSystemSetting(" + name + ", " + value + ", "
Svetoslav683914b2015-01-15 14:22:26 -08001687 + requestingUserId + ")");
1688 }
1689
Svetoslav7ec28e82015-05-20 17:01:10 -07001690 return mutateSystemSetting(name, value, requestingUserId, MUTATION_OPERATION_UPDATE);
Svetoslav683914b2015-01-15 14:22:26 -08001691 }
1692
Svetoslav7ec28e82015-05-20 17:01:10 -07001693 private boolean mutateSystemSetting(String name, String value, int runAsUserId,
Svetoslav683914b2015-01-15 14:22:26 -08001694 int operation) {
Billy Lau6ad2d662015-07-18 00:26:58 +01001695 if (!hasWriteSecureSettingsPermission()) {
1696 // If the caller doesn't hold WRITE_SECURE_SETTINGS, we verify whether this
1697 // operation is allowed for the calling package through appops.
1698 if (!Settings.checkAndNoteWriteSettingsOperation(getContext(),
1699 Binder.getCallingUid(), getCallingPackage(), true)) {
1700 return false;
1701 }
Svetoslav683914b2015-01-15 14:22:26 -08001702 }
1703
Svetoslav683914b2015-01-15 14:22:26 -08001704 // Resolve the userId on whose behalf the call is made.
1705 final int callingUserId = resolveCallingUserIdEnforcingPermissionsLocked(runAsUserId);
1706
yuemingw1d13eae2018-01-30 17:27:54 +00001707 if (name != null && mUserManagerInternal.isSettingRestrictedForUser(
1708 name, callingUserId, value, Binder.getCallingUid())) {
1709 return false;
1710 }
1711
Svetoslavd8d25e02015-11-20 13:09:26 -08001712 // Enforce what the calling package can mutate the system settings.
1713 enforceRestrictedSystemSettingsMutationForCallingPackage(operation, name, callingUserId);
1714
Svetoslav683914b2015-01-15 14:22:26 -08001715 // Determine the owning user as some profile settings are cloned from the parent.
1716 final int owningUserId = resolveOwningUserIdForSystemSettingLocked(callingUserId, name);
1717
1718 // Only the owning user id can change the setting.
1719 if (owningUserId != callingUserId) {
1720 return false;
1721 }
1722
Jeff Sharkey413573a2016-02-22 17:52:45 -07001723 // Invalidate any relevant cache files
1724 String cacheName = null;
1725 if (Settings.System.RINGTONE.equals(name)) {
1726 cacheName = Settings.System.RINGTONE_CACHE;
1727 } else if (Settings.System.NOTIFICATION_SOUND.equals(name)) {
1728 cacheName = Settings.System.NOTIFICATION_SOUND_CACHE;
1729 } else if (Settings.System.ALARM_ALERT.equals(name)) {
1730 cacheName = Settings.System.ALARM_ALERT_CACHE;
1731 }
1732 if (cacheName != null) {
1733 final File cacheFile = new File(
Andre Lago3fa139c2016-08-04 13:53:44 +01001734 getRingtoneCacheDir(owningUserId), cacheName);
Jeff Sharkey413573a2016-02-22 17:52:45 -07001735 cacheFile.delete();
1736 }
1737
Svetoslav683914b2015-01-15 14:22:26 -08001738 // Mutate the value.
Svetoslav7ec28e82015-05-20 17:01:10 -07001739 synchronized (mLock) {
1740 switch (operation) {
1741 case MUTATION_OPERATION_INSERT: {
1742 validateSystemSettingValue(name, value);
Svet Ganov53a441c2016-04-19 19:38:00 -07001743 return mSettingsRegistry.insertSettingLocked(SETTINGS_TYPE_SYSTEM,
Svetoslav Ganov5fb405b2017-01-26 22:43:09 -08001744 owningUserId, name, value, null, false, getCallingPackage(),
1745 false, null);
Svetoslav7ec28e82015-05-20 17:01:10 -07001746 }
1747
1748 case MUTATION_OPERATION_DELETE: {
Svet Ganov53a441c2016-04-19 19:38:00 -07001749 return mSettingsRegistry.deleteSettingLocked(SETTINGS_TYPE_SYSTEM,
Svetoslav Ganov5fb405b2017-01-26 22:43:09 -08001750 owningUserId, name, false, null);
Svetoslav7ec28e82015-05-20 17:01:10 -07001751 }
1752
1753 case MUTATION_OPERATION_UPDATE: {
1754 validateSystemSettingValue(name, value);
Svet Ganov53a441c2016-04-19 19:38:00 -07001755 return mSettingsRegistry.updateSettingLocked(SETTINGS_TYPE_SYSTEM,
Svetoslav Ganov5fb405b2017-01-26 22:43:09 -08001756 owningUserId, name, value, null, false, getCallingPackage(),
1757 false, null);
Svetoslav7ec28e82015-05-20 17:01:10 -07001758 }
Svetoslav683914b2015-01-15 14:22:26 -08001759 }
1760
Svetoslav7ec28e82015-05-20 17:01:10 -07001761 return false;
Svetoslav683914b2015-01-15 14:22:26 -08001762 }
Svetoslav683914b2015-01-15 14:22:26 -08001763 }
1764
Billy Lau6ad2d662015-07-18 00:26:58 +01001765 private boolean hasWriteSecureSettingsPermission() {
Svetoslavf41334b2015-06-23 12:06:03 -07001766 // Write secure settings is a more protected permission. If caller has it we are good.
1767 if (getContext().checkCallingOrSelfPermission(Manifest.permission.WRITE_SECURE_SETTINGS)
1768 == PackageManager.PERMISSION_GRANTED) {
1769 return true;
1770 }
1771
Svetoslavf41334b2015-06-23 12:06:03 -07001772 return false;
1773 }
1774
Svetoslav683914b2015-01-15 14:22:26 -08001775 private void validateSystemSettingValue(String name, String value) {
Michal Karpinski2c37b082018-01-18 16:14:27 +00001776 SettingsValidators.Validator validator = Settings.System.VALIDATORS.get(name);
Svetoslav683914b2015-01-15 14:22:26 -08001777 if (validator != null && !validator.validate(value)) {
1778 throw new IllegalArgumentException("Invalid value: " + value
1779 + " for setting: " + name);
1780 }
1781 }
1782
Alex Klyubin1991f572017-03-03 14:08:36 -08001783 /**
1784 * Returns {@code true} if the specified secure setting should be accessible to the caller.
1785 */
1786 private boolean isSecureSettingAccessible(String name, int callingUserId,
1787 int owningUserId) {
1788 // Special case for location (sigh).
1789 // This check is not inside the name-based checks below because this method performs checks
1790 // only if the calling user ID is not the same as the owning user ID.
1791 if (isLocationProvidersAllowedRestricted(name, callingUserId, owningUserId)) {
1792 return false;
1793 }
1794
1795 switch (name) {
1796 case "bluetooth_address":
1797 // BluetoothManagerService for some reason stores the Android's Bluetooth MAC
1798 // address in this secure setting. Secure settings can normally be read by any app,
1799 // which thus enables them to bypass the recently introduced restrictions on access
1800 // to device identifiers.
1801 // To mitigate this we make this setting available only to callers privileged to see
1802 // this device's MAC addresses, same as through public API
1803 // BluetoothAdapter.getAddress() (see BluetoothManagerService for details).
1804 return getContext().checkCallingOrSelfPermission(
1805 Manifest.permission.LOCAL_MAC_ADDRESS) == PackageManager.PERMISSION_GRANTED;
1806 default:
1807 return true;
1808 }
1809 }
1810
Svetoslav683914b2015-01-15 14:22:26 -08001811 private boolean isLocationProvidersAllowedRestricted(String name, int callingUserId,
1812 int owningUserId) {
1813 // Optimization - location providers are restricted only for managed profiles.
1814 if (callingUserId == owningUserId) {
1815 return false;
1816 }
1817 if (Settings.Secure.LOCATION_PROVIDERS_ALLOWED.equals(name)
1818 && mUserManager.hasUserRestriction(UserManager.DISALLOW_SHARE_LOCATION,
1819 new UserHandle(callingUserId))) {
1820 return true;
1821 }
1822 return false;
1823 }
1824
Svetoslav683914b2015-01-15 14:22:26 -08001825 private int resolveOwningUserIdForSecureSettingLocked(int userId, String setting) {
1826 return resolveOwningUserIdLocked(userId, sSecureCloneToManagedSettings, setting);
1827 }
1828
1829 private int resolveOwningUserIdForSystemSettingLocked(int userId, String setting) {
Andre Lago3fa139c2016-08-04 13:53:44 +01001830 final int parentId;
1831 // Resolves dependency if setting has a dependency and the calling user has a parent
1832 if (sSystemCloneFromParentOnDependency.containsKey(setting)
1833 && (parentId = getGroupParentLocked(userId)) != userId) {
1834 // The setting has a dependency and the profile has a parent
1835 String dependency = sSystemCloneFromParentOnDependency.get(setting);
Chad Brubaker97bccee2017-01-05 15:51:41 -08001836 // Lookup the dependency setting as ourselves, some callers may not have access to it.
1837 final long token = Binder.clearCallingIdentity();
1838 try {
1839 Setting settingObj = getSecureSetting(dependency, userId);
1840 if (settingObj != null && settingObj.getValue().equals("1")) {
1841 return parentId;
1842 }
1843 } finally {
1844 Binder.restoreCallingIdentity(token);
Andre Lago3fa139c2016-08-04 13:53:44 +01001845 }
1846 }
Svetoslav683914b2015-01-15 14:22:26 -08001847 return resolveOwningUserIdLocked(userId, sSystemCloneToManagedSettings, setting);
1848 }
1849
1850 private int resolveOwningUserIdLocked(int userId, Set<String> keys, String name) {
1851 final int parentId = getGroupParentLocked(userId);
1852 if (parentId != userId && keys.contains(name)) {
1853 return parentId;
1854 }
1855 return userId;
1856 }
1857
Svetoslavf41334b2015-06-23 12:06:03 -07001858 private void enforceRestrictedSystemSettingsMutationForCallingPackage(int operation,
Xiaohui Chen43765b72015-08-31 10:57:33 -07001859 String name, int userId) {
Svetoslav683914b2015-01-15 14:22:26 -08001860 // System/root/shell can mutate whatever secure settings they want.
1861 final int callingUid = Binder.getCallingUid();
Svetoslav Ganove080da92016-12-21 17:10:35 -08001862 final int appId = UserHandle.getAppId(callingUid);
1863 if (appId == android.os.Process.SYSTEM_UID
1864 || appId == Process.SHELL_UID
1865 || appId == Process.ROOT_UID) {
Svetoslav683914b2015-01-15 14:22:26 -08001866 return;
1867 }
1868
1869 switch (operation) {
1870 case MUTATION_OPERATION_INSERT:
1871 // Insert updates.
1872 case MUTATION_OPERATION_UPDATE: {
1873 if (Settings.System.PUBLIC_SETTINGS.contains(name)) {
1874 return;
1875 }
1876
1877 // The calling package is already verified.
Xiaohui Chen43765b72015-08-31 10:57:33 -07001878 PackageInfo packageInfo = getCallingPackageInfoOrThrow(userId);
Svetoslav683914b2015-01-15 14:22:26 -08001879
1880 // Privileged apps can do whatever they want.
1881 if ((packageInfo.applicationInfo.privateFlags
1882 & ApplicationInfo.PRIVATE_FLAG_PRIVILEGED) != 0) {
1883 return;
1884 }
1885
1886 warnOrThrowForUndesiredSecureSettingsMutationForTargetSdk(
1887 packageInfo.applicationInfo.targetSdkVersion, name);
1888 } break;
1889
1890 case MUTATION_OPERATION_DELETE: {
1891 if (Settings.System.PUBLIC_SETTINGS.contains(name)
1892 || Settings.System.PRIVATE_SETTINGS.contains(name)) {
1893 throw new IllegalArgumentException("You cannot delete system defined"
1894 + " secure settings.");
1895 }
1896
1897 // The calling package is already verified.
Xiaohui Chen43765b72015-08-31 10:57:33 -07001898 PackageInfo packageInfo = getCallingPackageInfoOrThrow(userId);
Svetoslav683914b2015-01-15 14:22:26 -08001899
1900 // Privileged apps can do whatever they want.
1901 if ((packageInfo.applicationInfo.privateFlags &
1902 ApplicationInfo.PRIVATE_FLAG_PRIVILEGED) != 0) {
1903 return;
1904 }
1905
1906 warnOrThrowForUndesiredSecureSettingsMutationForTargetSdk(
1907 packageInfo.applicationInfo.targetSdkVersion, name);
1908 } break;
1909 }
1910 }
1911
Todd Kennedybe0b8892017-02-15 14:13:52 -08001912 private Set<String> getInstantAppAccessibleSettings(int settingsType) {
Chad Brubaker97bccee2017-01-05 15:51:41 -08001913 switch (settingsType) {
1914 case SETTINGS_TYPE_GLOBAL:
Todd Kennedybe0b8892017-02-15 14:13:52 -08001915 return Settings.Global.INSTANT_APP_SETTINGS;
Chad Brubaker97bccee2017-01-05 15:51:41 -08001916 case SETTINGS_TYPE_SECURE:
Todd Kennedybe0b8892017-02-15 14:13:52 -08001917 return Settings.Secure.INSTANT_APP_SETTINGS;
Chad Brubaker97bccee2017-01-05 15:51:41 -08001918 case SETTINGS_TYPE_SYSTEM:
Todd Kennedybe0b8892017-02-15 14:13:52 -08001919 return Settings.System.INSTANT_APP_SETTINGS;
Chad Brubaker97bccee2017-01-05 15:51:41 -08001920 default:
1921 throw new IllegalArgumentException("Invalid settings type: " + settingsType);
1922 }
1923 }
1924
Chad Brubaker20e0dc32017-04-28 18:24:55 -07001925 private Set<String> getOverlayInstantAppAccessibleSettings(int settingsType) {
1926 switch (settingsType) {
1927 case SETTINGS_TYPE_GLOBAL:
1928 return OVERLAY_ALLOWED_GLOBAL_INSTANT_APP_SETTINGS;
1929 case SETTINGS_TYPE_SYSTEM:
1930 return OVERLAY_ALLOWED_SYSTEM_INSTANT_APP_SETTINGS;
1931 case SETTINGS_TYPE_SECURE:
1932 return OVERLAY_ALLOWED_SECURE_INSTANT_APP_SETTINGS;
1933 default:
1934 throw new IllegalArgumentException("Invalid settings type: " + settingsType);
1935 }
1936 }
1937
Andreas Gampeb58893072018-09-05 16:52:31 -07001938 @GuardedBy("mLock")
Chad Brubaker97bccee2017-01-05 15:51:41 -08001939 private List<String> getSettingsNamesLocked(int settingsType, int userId) {
Chad Brubakerb6108d62017-12-23 20:06:44 -08001940 // Don't enforce the instant app whitelist for now -- its too prone to unintended breakage
1941 // in the current form.
1942 return mSettingsRegistry.getSettingsNamesLocked(settingsType, userId);
Chad Brubaker97bccee2017-01-05 15:51:41 -08001943 }
1944
Chad Brubakera6830e72017-04-28 17:34:36 -07001945 private void enforceSettingReadable(String settingName, int settingsType, int userId) {
Chad Brubaker97bccee2017-01-05 15:51:41 -08001946 if (UserHandle.getAppId(Binder.getCallingUid()) < Process.FIRST_APPLICATION_UID) {
1947 return;
1948 }
Chad Brubakerf0fa8532017-02-23 10:45:20 -08001949 ApplicationInfo ai = getCallingApplicationInfoOrThrow();
Svetoslav Ganov096d3042017-01-30 16:34:13 -08001950 if (!ai.isInstantApp()) {
Chad Brubaker97bccee2017-01-05 15:51:41 -08001951 return;
1952 }
Chad Brubaker20e0dc32017-04-28 18:24:55 -07001953 if (!getInstantAppAccessibleSettings(settingsType).contains(settingName)
1954 && !getOverlayInstantAppAccessibleSettings(settingsType).contains(settingName)) {
Chad Brubakerb6108d62017-12-23 20:06:44 -08001955 // Don't enforce the instant app whitelist for now -- its too prone to unintended
1956 // breakage in the current form.
1957 Slog.w(LOG_TAG, "Instant App " + ai.packageName
1958 + " trying to access unexposed setting, this will be an error in the future.");
Chad Brubaker97bccee2017-01-05 15:51:41 -08001959 }
1960 }
1961
Chad Brubakerf0fa8532017-02-23 10:45:20 -08001962 private ApplicationInfo getCallingApplicationInfoOrThrow() {
1963 // We always use the callingUid for this lookup. This means that if hypothetically an
1964 // app was installed in user A with cross user and in user B as an Instant App
1965 // the app in A would be able to see all the settings in user B. However since cross
1966 // user is a system permission and the app must be uninstalled in B and then installed as
1967 // an Instant App that situation is not realistic or supported.
Chad Brubaker97bccee2017-01-05 15:51:41 -08001968 ApplicationInfo ai = null;
1969 try {
Chad Brubakerf0fa8532017-02-23 10:45:20 -08001970 ai = mPackageManager.getApplicationInfo(getCallingPackage(), 0
1971 , UserHandle.getCallingUserId());
Chad Brubaker97bccee2017-01-05 15:51:41 -08001972 } catch (RemoteException ignored) {
1973 }
1974 if (ai == null) {
1975 throw new IllegalStateException("Failed to lookup info for package "
1976 + getCallingPackage());
1977 }
1978 return ai;
1979 }
1980
Xiaohui Chen43765b72015-08-31 10:57:33 -07001981 private PackageInfo getCallingPackageInfoOrThrow(int userId) {
Svetoslav683914b2015-01-15 14:22:26 -08001982 try {
Svetoslav Ganov67a8d352016-03-02 13:26:40 -08001983 PackageInfo packageInfo = mPackageManager.getPackageInfo(
1984 getCallingPackage(), 0, userId);
1985 if (packageInfo != null) {
1986 return packageInfo;
1987 }
Xiaohui Chen43765b72015-08-31 10:57:33 -07001988 } catch (RemoteException e) {
Svetoslav Ganov67a8d352016-03-02 13:26:40 -08001989 /* ignore */
Svetoslav683914b2015-01-15 14:22:26 -08001990 }
Svetoslav Ganov67a8d352016-03-02 13:26:40 -08001991 throw new IllegalStateException("Calling package doesn't exist");
Svetoslav683914b2015-01-15 14:22:26 -08001992 }
1993
1994 private int getGroupParentLocked(int userId) {
1995 // Most frequent use case.
Xiaohui Chen43765b72015-08-31 10:57:33 -07001996 if (userId == UserHandle.USER_SYSTEM) {
Svetoslav683914b2015-01-15 14:22:26 -08001997 return userId;
1998 }
1999 // We are in the same process with the user manager and the returned
2000 // user info is a cached instance, so just look up instead of cache.
2001 final long identity = Binder.clearCallingIdentity();
2002 try {
Svetoslav7ec28e82015-05-20 17:01:10 -07002003 // Just a lookup and not reentrant, so holding a lock is fine.
Svetoslav683914b2015-01-15 14:22:26 -08002004 UserInfo userInfo = mUserManager.getProfileParent(userId);
2005 return (userInfo != null) ? userInfo.id : userId;
2006 } finally {
2007 Binder.restoreCallingIdentity(identity);
2008 }
2009 }
2010
Svetoslav683914b2015-01-15 14:22:26 -08002011 private void enforceWritePermission(String permission) {
2012 if (getContext().checkCallingOrSelfPermission(permission)
2013 != PackageManager.PERMISSION_GRANTED) {
2014 throw new SecurityException("Permission denial: writing to settings requires:"
2015 + permission);
2016 }
2017 }
2018
2019 /*
2020 * Used to parse changes to the value of Settings.Secure.LOCATION_PROVIDERS_ALLOWED.
2021 * This setting contains a list of the currently enabled location providers.
2022 * But helper functions in android.providers.Settings can enable or disable
2023 * a single provider by using a "+" or "-" prefix before the provider name.
2024 *
yuemingw1d13eae2018-01-30 17:27:54 +00002025 * <p>See also {@link com.android.server.pm.UserRestrictionsUtils#isSettingRestrictedForUser()}.
2026 * If DISALLOW_SHARE_LOCATION is set, the said method will only allow values with
2027 * the "-" prefix.
Makoto Onuki28da2e32015-11-20 11:30:44 -08002028 *
Svetoslav683914b2015-01-15 14:22:26 -08002029 * @returns whether the enabled location providers changed.
Brad Fitzpatrick1bd62bd2010-03-08 18:30:52 -08002030 */
Andreas Gampeb58893072018-09-05 16:52:31 -07002031 @GuardedBy("mLock")
Svetoslav Ganove080da92016-12-21 17:10:35 -08002032 private boolean updateLocationProvidersAllowedLocked(String value, String tag,
2033 int owningUserId, boolean makeDefault, boolean forceNotify) {
Svetoslav683914b2015-01-15 14:22:26 -08002034 if (TextUtils.isEmpty(value)) {
2035 return false;
Brad Fitzpatrickf366a9b2010-08-24 16:14:07 -07002036 }
Maggie83e03f52018-03-16 12:22:20 -07002037 Setting oldSetting = getSecureSetting(
2038 Settings.Secure.LOCATION_PROVIDERS_ALLOWED, owningUserId);
2039 if (oldSetting == null) {
Svetoslav683914b2015-01-15 14:22:26 -08002040 return false;
2041 }
Maggie83e03f52018-03-16 12:22:20 -07002042 String oldProviders = oldSetting.getValue();
2043 List<String> oldProvidersList = TextUtils.isEmpty(oldProviders)
2044 ? new ArrayList<>() : new ArrayList<>(Arrays.asList(oldProviders.split(",")));
2045 Set<String> newProvidersSet = new ArraySet<>();
2046 newProvidersSet.addAll(oldProvidersList);
Svetoslav683914b2015-01-15 14:22:26 -08002047
Maggie83e03f52018-03-16 12:22:20 -07002048 String[] providerUpdates = value.split(",");
2049 boolean inputError = false;
2050 for (String provider : providerUpdates) {
2051 // do not update location_providers_allowed when input is invalid
2052 if (TextUtils.isEmpty(provider)) {
2053 inputError = true;
2054 break;
Svetoslav683914b2015-01-15 14:22:26 -08002055 }
Maggie83e03f52018-03-16 12:22:20 -07002056 final char prefix = provider.charAt(0);
2057 // do not update location_providers_allowed when input is invalid
2058 if (prefix != '+' && prefix != '-') {
2059 inputError = true;
2060 break;
Svetoslav683914b2015-01-15 14:22:26 -08002061 }
Maggie83e03f52018-03-16 12:22:20 -07002062 // skip prefix
2063 provider = provider.substring(1);
2064 if (prefix == '+') {
2065 newProvidersSet.add(provider);
2066 } else if (prefix == '-') {
2067 newProvidersSet.remove(provider);
Svetoslav683914b2015-01-15 14:22:26 -08002068 }
Maggie83e03f52018-03-16 12:22:20 -07002069 }
2070 String newProviders = TextUtils.join(",", newProvidersSet.toArray());
2071 if (inputError == true || newProviders.equals(oldProviders)) {
Svetoslav683914b2015-01-15 14:22:26 -08002072 // nothing changed, so no need to update the database
Svet Ganov53a441c2016-04-19 19:38:00 -07002073 if (forceNotify) {
Maggie83e03f52018-03-16 12:22:20 -07002074 mSettingsRegistry.notifyForSettingsChange(
2075 makeKey(SETTINGS_TYPE_SECURE, owningUserId),
Svet Ganov53a441c2016-04-19 19:38:00 -07002076 Settings.Secure.LOCATION_PROVIDERS_ALLOWED);
2077 }
Svetoslav683914b2015-01-15 14:22:26 -08002078 return false;
2079 }
Svet Ganov53a441c2016-04-19 19:38:00 -07002080 return mSettingsRegistry.insertSettingLocked(SETTINGS_TYPE_SECURE,
Maggie83e03f52018-03-16 12:22:20 -07002081 owningUserId, Settings.Secure.LOCATION_PROVIDERS_ALLOWED, newProviders, tag,
2082 makeDefault, getCallingPackage(), forceNotify, CRITICAL_SECURE_SETTINGS);
Svetoslav683914b2015-01-15 14:22:26 -08002083 }
2084
Svetoslav683914b2015-01-15 14:22:26 -08002085 private static void warnOrThrowForUndesiredSecureSettingsMutationForTargetSdk(
2086 int targetSdkVersion, String name) {
2087 // If the app targets Lollipop MR1 or older SDK we warn, otherwise crash.
2088 if (targetSdkVersion <= Build.VERSION_CODES.LOLLIPOP_MR1) {
2089 if (Settings.System.PRIVATE_SETTINGS.contains(name)) {
2090 Slog.w(LOG_TAG, "You shouldn't not change private system settings."
2091 + " This will soon become an error.");
2092 } else {
2093 Slog.w(LOG_TAG, "You shouldn't keep your settings in the secure settings."
2094 + " This will soon become an error.");
2095 }
2096 } else {
2097 if (Settings.System.PRIVATE_SETTINGS.contains(name)) {
2098 throw new IllegalArgumentException("You cannot change private secure settings.");
2099 } else {
2100 throw new IllegalArgumentException("You cannot keep your settings in"
2101 + " the secure settings.");
2102 }
2103 }
2104 }
2105
2106 private static int resolveCallingUserIdEnforcingPermissionsLocked(int requestingUserId) {
2107 if (requestingUserId == UserHandle.getCallingUserId()) {
2108 return requestingUserId;
2109 }
2110 return ActivityManager.handleIncomingUser(Binder.getCallingPid(),
2111 Binder.getCallingUid(), requestingUserId, false, true,
2112 "get/set setting for user", null);
2113 }
2114
Svet Ganov53a441c2016-04-19 19:38:00 -07002115 private Bundle packageValueForCallResult(Setting setting,
2116 boolean trackingGeneration) {
2117 if (!trackingGeneration) {
Dianne Hackborn32f40ee2016-10-20 15:54:14 -07002118 if (setting == null || setting.isNull()) {
Svet Ganov53a441c2016-04-19 19:38:00 -07002119 return NULL_SETTING_BUNDLE;
2120 }
2121 return Bundle.forPair(Settings.NameValueTable.VALUE, setting.getValue());
Svetoslav683914b2015-01-15 14:22:26 -08002122 }
Svet Ganov53a441c2016-04-19 19:38:00 -07002123 Bundle result = new Bundle();
2124 result.putString(Settings.NameValueTable.VALUE,
Svetoslav Ganove080da92016-12-21 17:10:35 -08002125 !setting.isNull() ? setting.getValue() : null);
Svet Ganov96c99462017-05-05 14:27:13 -07002126
Svetoslav Ganove080da92016-12-21 17:10:35 -08002127 mSettingsRegistry.mGenerationRegistry.addGenerationData(result, setting.getKey());
Svet Ganov53a441c2016-04-19 19:38:00 -07002128 return result;
Svetoslav683914b2015-01-15 14:22:26 -08002129 }
2130
2131 private static int getRequestingUserId(Bundle args) {
2132 final int callingUserId = UserHandle.getCallingUserId();
2133 return (args != null) ? args.getInt(Settings.CALL_METHOD_USER_KEY, callingUserId)
2134 : callingUserId;
2135 }
2136
Svet Ganov53a441c2016-04-19 19:38:00 -07002137 private boolean isTrackingGeneration(Bundle args) {
2138 return args != null && args.containsKey(Settings.CALL_METHOD_TRACK_GENERATION_KEY);
2139 }
2140
Svetoslav683914b2015-01-15 14:22:26 -08002141 private static String getSettingValue(Bundle args) {
2142 return (args != null) ? args.getString(Settings.NameValueTable.VALUE) : null;
2143 }
2144
Svetoslav Ganove080da92016-12-21 17:10:35 -08002145 private static String getSettingTag(Bundle args) {
2146 return (args != null) ? args.getString(Settings.CALL_METHOD_TAG_KEY) : null;
2147 }
2148
Matt Pape6bfc62e2018-11-28 13:16:03 -08002149 private static String getSettingPrefix(Bundle args) {
2150 String prefix = (args != null) ? args.getString(Settings.CALL_METHOD_PREFIX_KEY) : null;
2151 // Append '/' to ensure we only match properties with this exact prefix.
2152 // i.e. "foo" should match "foo/property" but not "foobar/property"
2153 return prefix != null ? prefix + "/" : null;
2154 }
2155
Svetoslav Ganove080da92016-12-21 17:10:35 -08002156 private static boolean getSettingMakeDefault(Bundle args) {
2157 return (args != null) && args.getBoolean(Settings.CALL_METHOD_MAKE_DEFAULT_KEY);
2158 }
2159
2160 private static int getResetModeEnforcingPermission(Bundle args) {
2161 final int mode = (args != null) ? args.getInt(Settings.CALL_METHOD_RESET_MODE_KEY) : 0;
2162 switch (mode) {
2163 case Settings.RESET_MODE_UNTRUSTED_DEFAULTS: {
2164 if (!isCallerSystemOrShellOrRootOnDebuggableBuild()) {
2165 throw new SecurityException("Only system, shell/root on a "
2166 + "debuggable build can reset to untrusted defaults");
2167 }
2168 return mode;
2169 }
2170 case Settings.RESET_MODE_UNTRUSTED_CHANGES: {
2171 if (!isCallerSystemOrShellOrRootOnDebuggableBuild()) {
2172 throw new SecurityException("Only system, shell/root on a "
2173 + "debuggable build can reset untrusted changes");
2174 }
2175 return mode;
2176 }
2177 case Settings.RESET_MODE_TRUSTED_DEFAULTS: {
2178 if (!isCallerSystemOrShellOrRootOnDebuggableBuild()) {
2179 throw new SecurityException("Only system, shell/root on a "
2180 + "debuggable build can reset to trusted defaults");
2181 }
2182 return mode;
2183 }
2184 case Settings.RESET_MODE_PACKAGE_DEFAULTS: {
2185 return mode;
2186 }
2187 }
2188 throw new IllegalArgumentException("Invalid reset mode: " + mode);
2189 }
2190
2191 private static boolean isCallerSystemOrShellOrRootOnDebuggableBuild() {
2192 final int appId = UserHandle.getAppId(Binder.getCallingUid());
2193 return appId == SYSTEM_UID || (Build.IS_DEBUGGABLE
2194 && (appId == SHELL_UID || appId == ROOT_UID));
2195 }
2196
Svetoslav683914b2015-01-15 14:22:26 -08002197 private static String getValidTableOrThrow(Uri uri) {
2198 if (uri.getPathSegments().size() > 0) {
2199 String table = uri.getPathSegments().get(0);
2200 if (DatabaseHelper.isValidTable(table)) {
2201 return table;
2202 }
2203 throw new IllegalArgumentException("Bad root path: " + table);
2204 }
2205 throw new IllegalArgumentException("Invalid URI:" + uri);
2206 }
2207
2208 private static MatrixCursor packageSettingForQuery(Setting setting, String[] projection) {
Svetoslav Ganovfedb2302016-04-26 18:36:42 -07002209 if (setting.isNull()) {
Svetoslav683914b2015-01-15 14:22:26 -08002210 return new MatrixCursor(projection, 0);
2211 }
2212 MatrixCursor cursor = new MatrixCursor(projection, 1);
2213 appendSettingToCursor(cursor, setting);
2214 return cursor;
2215 }
2216
2217 private static String[] normalizeProjection(String[] projection) {
2218 if (projection == null) {
2219 return ALL_COLUMNS;
2220 }
2221
2222 final int columnCount = projection.length;
2223 for (int i = 0; i < columnCount; i++) {
2224 String column = projection[i];
2225 if (!ArrayUtils.contains(ALL_COLUMNS, column)) {
2226 throw new IllegalArgumentException("Invalid column: " + column);
Brad Fitzpatrickf366a9b2010-08-24 16:14:07 -07002227 }
2228 }
2229
Svetoslav683914b2015-01-15 14:22:26 -08002230 return projection;
2231 }
2232
2233 private static void appendSettingToCursor(MatrixCursor cursor, Setting setting) {
Dianne Hackborn32f40ee2016-10-20 15:54:14 -07002234 if (setting == null || setting.isNull()) {
Suprabh Shuklac9d064a2016-04-12 18:45:34 -07002235 return;
2236 }
Svetoslav683914b2015-01-15 14:22:26 -08002237 final int columnCount = cursor.getColumnCount();
2238
2239 String[] values = new String[columnCount];
2240
2241 for (int i = 0; i < columnCount; i++) {
2242 String column = cursor.getColumnName(i);
2243
2244 switch (column) {
2245 case Settings.NameValueTable._ID: {
2246 values[i] = setting.getId();
2247 } break;
2248
2249 case Settings.NameValueTable.NAME: {
2250 values[i] = setting.getName();
2251 } break;
2252
2253 case Settings.NameValueTable.VALUE: {
2254 values[i] = setting.getValue();
2255 } break;
Brad Fitzpatrickf366a9b2010-08-24 16:14:07 -07002256 }
Brad Fitzpatrick1bd62bd2010-03-08 18:30:52 -08002257 }
2258
Svetoslav683914b2015-01-15 14:22:26 -08002259 cursor.addRow(values);
2260 }
Brad Fitzpatrick1bd62bd2010-03-08 18:30:52 -08002261
Makoto Onuki3a2c35782015-06-18 11:21:58 -07002262 private static boolean isKeyValid(String key) {
2263 return !(TextUtils.isEmpty(key) || SettingsState.isBinary(key));
2264 }
2265
Matt Pape7b1c6cd2019-01-04 08:10:41 -08002266 private String resolveCallingPackage() {
2267 switch (Binder.getCallingUid()) {
2268 case Process.ROOT_UID: {
2269 return "root";
2270 }
2271
2272 case Process.SHELL_UID: {
2273 return "com.android.shell";
2274 }
2275
2276 default: {
2277 return getCallingPackage();
2278 }
2279 }
2280 }
2281
Svetoslav683914b2015-01-15 14:22:26 -08002282 private static final class Arguments {
2283 private static final Pattern WHERE_PATTERN_WITH_PARAM_NO_BRACKETS =
2284 Pattern.compile("[\\s]*name[\\s]*=[\\s]*\\?[\\s]*");
2285
2286 private static final Pattern WHERE_PATTERN_WITH_PARAM_IN_BRACKETS =
2287 Pattern.compile("[\\s]*\\([\\s]*name[\\s]*=[\\s]*\\?[\\s]*\\)[\\s]*");
2288
2289 private static final Pattern WHERE_PATTERN_NO_PARAM_IN_BRACKETS =
2290 Pattern.compile("[\\s]*\\([\\s]*name[\\s]*=[\\s]*['\"].*['\"][\\s]*\\)[\\s]*");
2291
2292 private static final Pattern WHERE_PATTERN_NO_PARAM_NO_BRACKETS =
2293 Pattern.compile("[\\s]*name[\\s]*=[\\s]*['\"].*['\"][\\s]*");
2294
2295 public final String table;
2296 public final String name;
2297
2298 public Arguments(Uri uri, String where, String[] whereArgs, boolean supportAll) {
2299 final int segmentSize = uri.getPathSegments().size();
2300 switch (segmentSize) {
2301 case 1: {
2302 if (where != null
2303 && (WHERE_PATTERN_WITH_PARAM_NO_BRACKETS.matcher(where).matches()
2304 || WHERE_PATTERN_WITH_PARAM_IN_BRACKETS.matcher(where).matches())
2305 && whereArgs.length == 1) {
2306 name = whereArgs[0];
2307 table = computeTableForSetting(uri, name);
Svetoslav28494652015-02-12 14:11:42 -08002308 return;
Svetoslav683914b2015-01-15 14:22:26 -08002309 } else if (where != null
2310 && (WHERE_PATTERN_NO_PARAM_NO_BRACKETS.matcher(where).matches()
2311 || WHERE_PATTERN_NO_PARAM_IN_BRACKETS.matcher(where).matches())) {
2312 final int startIndex = Math.max(where.indexOf("'"),
2313 where.indexOf("\"")) + 1;
2314 final int endIndex = Math.max(where.lastIndexOf("'"),
2315 where.lastIndexOf("\""));
2316 name = where.substring(startIndex, endIndex);
2317 table = computeTableForSetting(uri, name);
Svetoslav28494652015-02-12 14:11:42 -08002318 return;
Svetoslav683914b2015-01-15 14:22:26 -08002319 } else if (supportAll && where == null && whereArgs == null) {
2320 name = null;
2321 table = computeTableForSetting(uri, null);
Svetoslav28494652015-02-12 14:11:42 -08002322 return;
Brad Fitzpatrick342984a2010-03-09 16:59:30 -08002323 }
Svetoslav683914b2015-01-15 14:22:26 -08002324 } break;
2325
Svetoslav28494652015-02-12 14:11:42 -08002326 case 2: {
2327 if (where == null && whereArgs == null) {
2328 name = uri.getPathSegments().get(1);
2329 table = computeTableForSetting(uri, name);
2330 return;
2331 }
2332 } break;
Brad Fitzpatrick1bd62bd2010-03-08 18:30:52 -08002333 }
Svetoslav28494652015-02-12 14:11:42 -08002334
2335 EventLogTags.writeUnsupportedSettingsQuery(
2336 uri.toSafeString(), where, Arrays.toString(whereArgs));
2337 String message = String.format( "Supported SQL:\n"
2338 + " uri content://some_table/some_property with null where and where args\n"
2339 + " uri content://some_table with query name=? and single name as arg\n"
2340 + " uri content://some_table with query name=some_name and null args\n"
2341 + " but got - uri:%1s, where:%2s whereArgs:%3s", uri, where,
2342 Arrays.toString(whereArgs));
2343 throw new IllegalArgumentException(message);
Brad Fitzpatrick1bd62bd2010-03-08 18:30:52 -08002344 }
2345
Svetoslav28494652015-02-12 14:11:42 -08002346 private static String computeTableForSetting(Uri uri, String name) {
Svetoslav683914b2015-01-15 14:22:26 -08002347 String table = getValidTableOrThrow(uri);
2348
2349 if (name != null) {
2350 if (sSystemMovedToSecureSettings.contains(name)) {
2351 table = TABLE_SECURE;
2352 }
2353
2354 if (sSystemMovedToGlobalSettings.contains(name)) {
2355 table = TABLE_GLOBAL;
2356 }
2357
2358 if (sSecureMovedToGlobalSettings.contains(name)) {
2359 table = TABLE_GLOBAL;
2360 }
2361
2362 if (sGlobalMovedToSecureSettings.contains(name)) {
2363 table = TABLE_SECURE;
2364 }
Brad Fitzpatrick1bd62bd2010-03-08 18:30:52 -08002365 }
Svetoslav683914b2015-01-15 14:22:26 -08002366
2367 return table;
2368 }
2369 }
2370
2371 final class SettingsRegistry {
2372 private static final String DROPBOX_TAG_USERLOG = "restricted_profile_ssaid";
2373
Svetoslav683914b2015-01-15 14:22:26 -08002374 private static final String SETTINGS_FILE_GLOBAL = "settings_global.xml";
2375 private static final String SETTINGS_FILE_SYSTEM = "settings_system.xml";
2376 private static final String SETTINGS_FILE_SECURE = "settings_secure.xml";
Mark Rathjend891f012017-01-19 04:10:37 +00002377 private static final String SETTINGS_FILE_SSAID = "settings_ssaid.xml";
Matt Pape1b31a332018-10-17 09:58:28 -07002378 private static final String SETTINGS_FILE_CONFIG = "settings_config.xml";
Mark Rathjend891f012017-01-19 04:10:37 +00002379
2380 private static final String SSAID_USER_KEY = "userkey";
Svetoslav683914b2015-01-15 14:22:26 -08002381
2382 private final SparseArray<SettingsState> mSettingsStates = new SparseArray<>();
2383
Svet Ganov53a441c2016-04-19 19:38:00 -07002384 private GenerationRegistry mGenerationRegistry;
Svetoslav683914b2015-01-15 14:22:26 -08002385
Svetoslav7e0683b2015-08-03 16:02:52 -07002386 private final Handler mHandler;
2387
Svet Ganov53a441c2016-04-19 19:38:00 -07002388 private final BackupManager mBackupManager;
2389
Amith Yamasani39452022017-03-21 15:23:47 -07002390 private String mSettingsCreationBuildId;
2391
Svetoslav683914b2015-01-15 14:22:26 -08002392 public SettingsRegistry() {
Svetoslav7e0683b2015-08-03 16:02:52 -07002393 mHandler = new MyHandler(getContext().getMainLooper());
Svet Ganov53a441c2016-04-19 19:38:00 -07002394 mGenerationRegistry = new GenerationRegistry(mLock);
2395 mBackupManager = new BackupManager(getContext());
Svetoslav683914b2015-01-15 14:22:26 -08002396 migrateAllLegacySettingsIfNeeded();
Mark Rathjend891f012017-01-19 04:10:37 +00002397 syncSsaidTableOnStart();
2398 }
2399
2400 private void generateUserKeyLocked(int userId) {
2401 // Generate a random key for each user used for creating a new ssaid.
Mark Rathjen7599f132017-01-23 14:15:54 -08002402 final byte[] keyBytes = new byte[32];
Mark Rathjend891f012017-01-19 04:10:37 +00002403 final SecureRandom rand = new SecureRandom();
2404 rand.nextBytes(keyBytes);
2405
2406 // Convert to string for storage in settings table.
Mark Rathjen7599f132017-01-23 14:15:54 -08002407 final String userKey = ByteStringUtils.toHexString(keyBytes);
Mark Rathjend891f012017-01-19 04:10:37 +00002408
2409 // Store the key in the ssaid table.
2410 final SettingsState ssaidSettings = getSettingsLocked(SETTINGS_TYPE_SSAID, userId);
2411 final boolean success = ssaidSettings.insertSettingLocked(SSAID_USER_KEY, userKey, null,
2412 true, SettingsState.SYSTEM_PACKAGE_NAME);
2413
2414 if (!success) {
2415 throw new IllegalStateException("Ssaid settings not accessible");
2416 }
2417 }
2418
Mark Rathjen7599f132017-01-23 14:15:54 -08002419 private byte[] getLengthPrefix(byte[] data) {
2420 return ByteBuffer.allocate(4).putInt(data.length).array();
2421 }
2422
Christopher Tateb218e762017-04-05 16:34:07 -07002423 public Setting generateSsaidLocked(PackageInfo callingPkg, int userId) {
Mark Rathjend891f012017-01-19 04:10:37 +00002424 // Read the user's key from the ssaid table.
2425 Setting userKeySetting = getSettingLocked(SETTINGS_TYPE_SSAID, userId, SSAID_USER_KEY);
Mark Rathjenea617592017-01-18 23:03:41 -08002426 if (userKeySetting == null || userKeySetting.isNull()
2427 || userKeySetting.getValue() == null) {
Mark Rathjend891f012017-01-19 04:10:37 +00002428 // Lazy initialize and store the user key.
2429 generateUserKeyLocked(userId);
2430 userKeySetting = getSettingLocked(SETTINGS_TYPE_SSAID, userId, SSAID_USER_KEY);
Mark Rathjenea617592017-01-18 23:03:41 -08002431 if (userKeySetting == null || userKeySetting.isNull()
2432 || userKeySetting.getValue() == null) {
Mark Rathjend891f012017-01-19 04:10:37 +00002433 throw new IllegalStateException("User key not accessible");
2434 }
2435 }
2436 final String userKey = userKeySetting.getValue();
2437
2438 // Convert the user's key back to a byte array.
Mark Rathjen7599f132017-01-23 14:15:54 -08002439 final byte[] keyBytes = ByteStringUtils.fromHexToByteArray(userKey);
2440
2441 // Validate that the key is of expected length.
2442 // Keys are currently 32 bytes, but were once 16 bytes during Android O development.
2443 if (keyBytes == null || (keyBytes.length != 16 && keyBytes.length != 32)) {
Mark Rathjend891f012017-01-19 04:10:37 +00002444 throw new IllegalStateException("User key invalid");
2445 }
2446
Mark Rathjen7599f132017-01-23 14:15:54 -08002447 final Mac m;
Mark Rathjend891f012017-01-19 04:10:37 +00002448 try {
Mark Rathjen7599f132017-01-23 14:15:54 -08002449 m = Mac.getInstance("HmacSHA256");
2450 m.init(new SecretKeySpec(keyBytes, m.getAlgorithm()));
Mark Rathjend891f012017-01-19 04:10:37 +00002451 } catch (NoSuchAlgorithmException e) {
Mark Rathjen7599f132017-01-23 14:15:54 -08002452 throw new IllegalStateException("HmacSHA256 is not available", e);
2453 } catch (InvalidKeyException e) {
2454 throw new IllegalStateException("Key is corrupted", e);
Mark Rathjend891f012017-01-19 04:10:37 +00002455 }
Mark Rathjen7599f132017-01-23 14:15:54 -08002456
Mark Rathjenf42dd912017-06-05 19:04:34 -07002457 // Mac each of the developer signatures.
Christopher Tateb218e762017-04-05 16:34:07 -07002458 for (int i = 0; i < callingPkg.signatures.length; i++) {
2459 byte[] sig = callingPkg.signatures[i].toByteArray();
Mark Rathjen7599f132017-01-23 14:15:54 -08002460 m.update(getLengthPrefix(sig), 0, 4);
2461 m.update(sig);
2462 }
Mark Rathjend891f012017-01-19 04:10:37 +00002463
2464 // Convert result to a string for storage in settings table. Only want first 64 bits.
Mark Rathjen7599f132017-01-23 14:15:54 -08002465 final String ssaid = ByteStringUtils.toHexString(m.doFinal()).substring(0, 16)
2466 .toLowerCase(Locale.US);
Mark Rathjend891f012017-01-19 04:10:37 +00002467
2468 // Save the ssaid in the ssaid table.
Christopher Tateb218e762017-04-05 16:34:07 -07002469 final String uid = Integer.toString(callingPkg.applicationInfo.uid);
Mark Rathjend891f012017-01-19 04:10:37 +00002470 final SettingsState ssaidSettings = getSettingsLocked(SETTINGS_TYPE_SSAID, userId);
2471 final boolean success = ssaidSettings.insertSettingLocked(uid, ssaid, null, true,
Mark Rathjenf42dd912017-06-05 19:04:34 -07002472 callingPkg.packageName);
Mark Rathjend891f012017-01-19 04:10:37 +00002473
2474 if (!success) {
2475 throw new IllegalStateException("Ssaid settings not accessible");
2476 }
2477
2478 return getSettingLocked(SETTINGS_TYPE_SSAID, userId, uid);
2479 }
2480
2481 public void syncSsaidTableOnStart() {
2482 synchronized (mLock) {
2483 // Verify that each user's packages and ssaid's are in sync.
2484 for (UserInfo user : mUserManager.getUsers(true)) {
2485 // Get all uids for the user's packages.
2486 final List<PackageInfo> packages;
2487 try {
Tetsutoki Shiozawaebe0e5f2018-01-17 11:07:09 +09002488 packages = mPackageManager.getInstalledPackages(
2489 PackageManager.MATCH_UNINSTALLED_PACKAGES,
2490 user.id).getList();
Mark Rathjend891f012017-01-19 04:10:37 +00002491 } catch (RemoteException e) {
2492 throw new IllegalStateException("Package manager not available");
2493 }
2494 final Set<String> appUids = new HashSet<>();
2495 for (PackageInfo info : packages) {
2496 appUids.add(Integer.toString(info.applicationInfo.uid));
2497 }
2498
2499 // Get all uids currently stored in the user's ssaid table.
2500 final Set<String> ssaidUids = new HashSet<>(
2501 getSettingsNamesLocked(SETTINGS_TYPE_SSAID, user.id));
2502 ssaidUids.remove(SSAID_USER_KEY);
2503
2504 // Perform a set difference for the appUids and ssaidUids.
2505 ssaidUids.removeAll(appUids);
2506
2507 // If there are ssaidUids left over they need to be removed from the table.
2508 final SettingsState ssaidSettings = getSettingsLocked(SETTINGS_TYPE_SSAID,
2509 user.id);
2510 for (String uid : ssaidUids) {
2511 ssaidSettings.deleteSettingLocked(uid);
2512 }
2513 }
2514 }
Brad Fitzpatrickf366a9b2010-08-24 16:14:07 -07002515 }
2516
Svetoslav683914b2015-01-15 14:22:26 -08002517 public List<String> getSettingsNamesLocked(int type, int userId) {
2518 final int key = makeKey(type, userId);
2519 SettingsState settingsState = peekSettingsStateLocked(key);
Dianne Hackborn32f40ee2016-10-20 15:54:14 -07002520 if (settingsState == null) {
2521 return new ArrayList<String>();
2522 }
Svetoslav683914b2015-01-15 14:22:26 -08002523 return settingsState.getSettingNamesLocked();
2524 }
2525
Dianne Hackborn32f40ee2016-10-20 15:54:14 -07002526 public SparseBooleanArray getKnownUsersLocked() {
2527 SparseBooleanArray users = new SparseBooleanArray();
2528 for (int i = mSettingsStates.size()-1; i >= 0; i--) {
2529 users.put(getUserIdFromKey(mSettingsStates.keyAt(i)), true);
2530 }
2531 return users;
2532 }
2533
Kweku Adamsb0886f32017-10-31 15:32:09 -07002534 @Nullable
Svetoslav683914b2015-01-15 14:22:26 -08002535 public SettingsState getSettingsLocked(int type, int userId) {
2536 final int key = makeKey(type, userId);
2537 return peekSettingsStateLocked(key);
2538 }
2539
Dianne Hackborn32f40ee2016-10-20 15:54:14 -07002540 public boolean ensureSettingsForUserLocked(int userId) {
2541 // First make sure this user actually exists.
2542 if (mUserManager.getUserInfo(userId) == null) {
2543 Slog.wtf(LOG_TAG, "Requested user " + userId + " does not exist");
2544 return false;
2545 }
2546
Svetoslav683914b2015-01-15 14:22:26 -08002547 // Migrate the setting for this user if needed.
2548 migrateLegacySettingsForUserIfNeededLocked(userId);
2549
Matt Pape1b31a332018-10-17 09:58:28 -07002550 // Ensure config settings loaded if owner.
2551 if (userId == UserHandle.USER_SYSTEM) {
2552 final int configKey
2553 = makeKey(SETTINGS_TYPE_CONFIG, UserHandle.USER_SYSTEM);
2554 ensureSettingsStateLocked(configKey);
2555 }
2556
Svetoslav683914b2015-01-15 14:22:26 -08002557 // Ensure global settings loaded if owner.
Xiaohui Chen43765b72015-08-31 10:57:33 -07002558 if (userId == UserHandle.USER_SYSTEM) {
2559 final int globalKey = makeKey(SETTINGS_TYPE_GLOBAL, UserHandle.USER_SYSTEM);
Svetoslav683914b2015-01-15 14:22:26 -08002560 ensureSettingsStateLocked(globalKey);
2561 }
2562
2563 // Ensure secure settings loaded.
2564 final int secureKey = makeKey(SETTINGS_TYPE_SECURE, userId);
2565 ensureSettingsStateLocked(secureKey);
2566
2567 // Make sure the secure settings have an Android id set.
2568 SettingsState secureSettings = getSettingsLocked(SETTINGS_TYPE_SECURE, userId);
2569 ensureSecureSettingAndroidIdSetLocked(secureSettings);
2570
2571 // Ensure system settings loaded.
2572 final int systemKey = makeKey(SETTINGS_TYPE_SYSTEM, userId);
2573 ensureSettingsStateLocked(systemKey);
2574
Mark Rathjend891f012017-01-19 04:10:37 +00002575 // Ensure secure settings loaded.
2576 final int ssaidKey = makeKey(SETTINGS_TYPE_SSAID, userId);
2577 ensureSettingsStateLocked(ssaidKey);
2578
Svetoslav683914b2015-01-15 14:22:26 -08002579 // Upgrade the settings to the latest version.
2580 UpgradeController upgrader = new UpgradeController(userId);
2581 upgrader.upgradeIfNeededLocked();
Dianne Hackborn32f40ee2016-10-20 15:54:14 -07002582 return true;
Svetoslav683914b2015-01-15 14:22:26 -08002583 }
2584
2585 private void ensureSettingsStateLocked(int key) {
2586 if (mSettingsStates.get(key) == null) {
2587 final int maxBytesPerPackage = getMaxBytesPerPackageForType(getTypeFromKey(key));
Svetoslav Ganove080da92016-12-21 17:10:35 -08002588 SettingsState settingsState = new SettingsState(getContext(), mLock,
2589 getSettingsFile(key), key, maxBytesPerPackage, mHandlerThread.getLooper());
Svetoslav683914b2015-01-15 14:22:26 -08002590 mSettingsStates.put(key, settingsState);
2591 }
2592 }
2593
2594 public void removeUserStateLocked(int userId, boolean permanently) {
2595 // We always keep the global settings in memory.
2596
2597 // Nuke system settings.
2598 final int systemKey = makeKey(SETTINGS_TYPE_SYSTEM, userId);
2599 final SettingsState systemSettingsState = mSettingsStates.get(systemKey);
2600 if (systemSettingsState != null) {
2601 if (permanently) {
2602 mSettingsStates.remove(systemKey);
2603 systemSettingsState.destroyLocked(null);
Brad Fitzpatrick342984a2010-03-09 16:59:30 -08002604 } else {
Svetoslav683914b2015-01-15 14:22:26 -08002605 systemSettingsState.destroyLocked(new Runnable() {
2606 @Override
2607 public void run() {
2608 mSettingsStates.remove(systemKey);
2609 }
2610 });
2611 }
2612 }
2613
2614 // Nuke secure settings.
2615 final int secureKey = makeKey(SETTINGS_TYPE_SECURE, userId);
2616 final SettingsState secureSettingsState = mSettingsStates.get(secureKey);
2617 if (secureSettingsState != null) {
2618 if (permanently) {
2619 mSettingsStates.remove(secureKey);
2620 secureSettingsState.destroyLocked(null);
2621 } else {
2622 secureSettingsState.destroyLocked(new Runnable() {
2623 @Override
2624 public void run() {
2625 mSettingsStates.remove(secureKey);
2626 }
2627 });
Brad Fitzpatrick342984a2010-03-09 16:59:30 -08002628 }
Brad Fitzpatrick1bd62bd2010-03-08 18:30:52 -08002629 }
Svet Ganov53a441c2016-04-19 19:38:00 -07002630
Mark Rathjend891f012017-01-19 04:10:37 +00002631 // Nuke ssaid settings.
2632 final int ssaidKey = makeKey(SETTINGS_TYPE_SSAID, userId);
2633 final SettingsState ssaidSettingsState = mSettingsStates.get(ssaidKey);
2634 if (ssaidSettingsState != null) {
2635 if (permanently) {
2636 mSettingsStates.remove(ssaidKey);
2637 ssaidSettingsState.destroyLocked(null);
2638 } else {
2639 ssaidSettingsState.destroyLocked(new Runnable() {
2640 @Override
2641 public void run() {
2642 mSettingsStates.remove(ssaidKey);
2643 }
2644 });
2645 }
2646 }
2647
Svet Ganov53a441c2016-04-19 19:38:00 -07002648 // Nuke generation tracking data
2649 mGenerationRegistry.onUserRemoved(userId);
Brad Fitzpatrick1bd62bd2010-03-08 18:30:52 -08002650 }
2651
Svetoslav683914b2015-01-15 14:22:26 -08002652 public boolean insertSettingLocked(int type, int userId, String name, String value,
Svetoslav Ganov5fb405b2017-01-26 22:43:09 -08002653 String tag, boolean makeDefault, String packageName, boolean forceNotify,
2654 Set<String> criticalSettings) {
Matt Papec1323dc2018-12-11 12:32:42 -08002655 return insertSettingLocked(type, userId, name, value, tag, makeDefault, false,
2656 packageName, forceNotify, criticalSettings);
2657 }
2658
2659 public boolean insertSettingLocked(int type, int userId, String name, String value,
2660 String tag, boolean makeDefault, boolean forceNonSystemPackage, String packageName,
2661 boolean forceNotify, Set<String> criticalSettings) {
Svetoslav683914b2015-01-15 14:22:26 -08002662 final int key = makeKey(type, userId);
2663
Svetoslav Ganove080da92016-12-21 17:10:35 -08002664 boolean success = false;
Svetoslav683914b2015-01-15 14:22:26 -08002665 SettingsState settingsState = peekSettingsStateLocked(key);
Svetoslav Ganove080da92016-12-21 17:10:35 -08002666 if (settingsState != null) {
2667 success = settingsState.insertSettingLocked(name, value,
Matt Papec1323dc2018-12-11 12:32:42 -08002668 tag, makeDefault, forceNonSystemPackage, packageName);
Svetoslav Ganove080da92016-12-21 17:10:35 -08002669 }
Svetoslav683914b2015-01-15 14:22:26 -08002670
Svetoslav Ganov5fb405b2017-01-26 22:43:09 -08002671 if (success && criticalSettings != null && criticalSettings.contains(name)) {
2672 settingsState.persistSyncLocked();
2673 }
2674
Svet Ganov53a441c2016-04-19 19:38:00 -07002675 if (forceNotify || success) {
Svetoslav683914b2015-01-15 14:22:26 -08002676 notifyForSettingsChange(key, name);
2677 }
2678 return success;
2679 }
2680
Svetoslav Ganov5fb405b2017-01-26 22:43:09 -08002681 public boolean deleteSettingLocked(int type, int userId, String name, boolean forceNotify,
2682 Set<String> criticalSettings) {
Svetoslav683914b2015-01-15 14:22:26 -08002683 final int key = makeKey(type, userId);
2684
Svetoslav Ganove080da92016-12-21 17:10:35 -08002685 boolean success = false;
Svetoslav683914b2015-01-15 14:22:26 -08002686 SettingsState settingsState = peekSettingsStateLocked(key);
Svetoslav Ganove080da92016-12-21 17:10:35 -08002687 if (settingsState != null) {
2688 success = settingsState.deleteSettingLocked(name);
Dianne Hackborn32f40ee2016-10-20 15:54:14 -07002689 }
Svetoslav683914b2015-01-15 14:22:26 -08002690
Svetoslav Ganov5fb405b2017-01-26 22:43:09 -08002691 if (success && criticalSettings != null && criticalSettings.contains(name)) {
2692 settingsState.persistSyncLocked();
2693 }
2694
Svet Ganov53a441c2016-04-19 19:38:00 -07002695 if (forceNotify || success) {
Svetoslav683914b2015-01-15 14:22:26 -08002696 notifyForSettingsChange(key, name);
2697 }
2698 return success;
2699 }
2700
Svetoslav Ganov5fb405b2017-01-26 22:43:09 -08002701 public boolean updateSettingLocked(int type, int userId, String name, String value,
2702 String tag, boolean makeDefault, String packageName, boolean forceNotify,
2703 Set<String> criticalSettings) {
2704 final int key = makeKey(type, userId);
2705
2706 boolean success = false;
2707 SettingsState settingsState = peekSettingsStateLocked(key);
2708 if (settingsState != null) {
2709 success = settingsState.updateSettingLocked(name, value, tag,
2710 makeDefault, packageName);
2711 }
2712
2713 if (success && criticalSettings != null && criticalSettings.contains(name)) {
2714 settingsState.persistSyncLocked();
2715 }
2716
2717 if (forceNotify || success) {
2718 notifyForSettingsChange(key, name);
2719 }
2720
2721 return success;
2722 }
2723
Svetoslav683914b2015-01-15 14:22:26 -08002724 public Setting getSettingLocked(int type, int userId, String name) {
2725 final int key = makeKey(type, userId);
2726
2727 SettingsState settingsState = peekSettingsStateLocked(key);
Dianne Hackborn32f40ee2016-10-20 15:54:14 -07002728 if (settingsState == null) {
Mark Rathjenea617592017-01-18 23:03:41 -08002729 return null;
Dianne Hackborn32f40ee2016-10-20 15:54:14 -07002730 }
Mark Rathjend891f012017-01-19 04:10:37 +00002731
2732 // getSettingLocked will return non-null result
Svetoslav683914b2015-01-15 14:22:26 -08002733 return settingsState.getSettingLocked(name);
2734 }
2735
Svetoslav Ganove080da92016-12-21 17:10:35 -08002736 public void resetSettingsLocked(int type, int userId, String packageName, int mode,
2737 String tag) {
Matt Pape6bfc62e2018-11-28 13:16:03 -08002738 resetSettingsLocked(type, userId, packageName, mode, tag, null);
2739 }
2740
2741 public void resetSettingsLocked(int type, int userId, String packageName, int mode,
2742 String tag, @Nullable String prefix) {
Svetoslav Ganove080da92016-12-21 17:10:35 -08002743 final int key = makeKey(type, userId);
2744 SettingsState settingsState = peekSettingsStateLocked(key);
2745 if (settingsState == null) {
2746 return;
2747 }
2748
2749 switch (mode) {
2750 case Settings.RESET_MODE_PACKAGE_DEFAULTS: {
2751 for (String name : settingsState.getSettingNamesLocked()) {
Svetoslav Ganov5fb405b2017-01-26 22:43:09 -08002752 boolean someSettingChanged = false;
Svetoslav Ganove080da92016-12-21 17:10:35 -08002753 Setting setting = settingsState.getSettingLocked(name);
2754 if (packageName.equals(setting.getPackageName())) {
Matt Pape6bfc62e2018-11-28 13:16:03 -08002755 if ((tag != null && !tag.equals(setting.getTag()))
2756 || (prefix != null && !setting.getName().startsWith(prefix))) {
Svetoslav Ganove080da92016-12-21 17:10:35 -08002757 continue;
2758 }
Svetoslav Ganov5fb405b2017-01-26 22:43:09 -08002759 if (settingsState.resetSettingLocked(name)) {
2760 someSettingChanged = true;
Svetoslav Ganove080da92016-12-21 17:10:35 -08002761 notifyForSettingsChange(key, name);
2762 }
2763 }
Svetoslav Ganov5fb405b2017-01-26 22:43:09 -08002764 if (someSettingChanged) {
2765 settingsState.persistSyncLocked();
2766 }
Svetoslav Ganove080da92016-12-21 17:10:35 -08002767 }
2768 } break;
2769
2770 case Settings.RESET_MODE_UNTRUSTED_DEFAULTS: {
2771 for (String name : settingsState.getSettingNamesLocked()) {
Svetoslav Ganov5fb405b2017-01-26 22:43:09 -08002772 boolean someSettingChanged = false;
Svetoslav Ganove080da92016-12-21 17:10:35 -08002773 Setting setting = settingsState.getSettingLocked(name);
2774 if (!SettingsState.isSystemPackage(getContext(),
2775 setting.getPackageName())) {
Matt Pape6bfc62e2018-11-28 13:16:03 -08002776 if (prefix != null && !setting.getName().startsWith(prefix)) {
2777 continue;
2778 }
Svetoslav Ganov5fb405b2017-01-26 22:43:09 -08002779 if (settingsState.resetSettingLocked(name)) {
2780 someSettingChanged = true;
Svetoslav Ganove080da92016-12-21 17:10:35 -08002781 notifyForSettingsChange(key, name);
2782 }
2783 }
Svetoslav Ganov5fb405b2017-01-26 22:43:09 -08002784 if (someSettingChanged) {
2785 settingsState.persistSyncLocked();
2786 }
Svetoslav Ganove080da92016-12-21 17:10:35 -08002787 }
2788 } break;
2789
2790 case Settings.RESET_MODE_UNTRUSTED_CHANGES: {
2791 for (String name : settingsState.getSettingNamesLocked()) {
Svetoslav Ganov5fb405b2017-01-26 22:43:09 -08002792 boolean someSettingChanged = false;
Svetoslav Ganove080da92016-12-21 17:10:35 -08002793 Setting setting = settingsState.getSettingLocked(name);
2794 if (!SettingsState.isSystemPackage(getContext(),
2795 setting.getPackageName())) {
Matt Pape6bfc62e2018-11-28 13:16:03 -08002796 if (prefix != null && !setting.getName().startsWith(prefix)) {
2797 continue;
2798 }
Eugene Suslad72c3972016-12-27 15:49:30 -08002799 if (setting.isDefaultFromSystem()) {
Svetoslav Ganov5fb405b2017-01-26 22:43:09 -08002800 if (settingsState.resetSettingLocked(name)) {
2801 someSettingChanged = true;
Svetoslav Ganove080da92016-12-21 17:10:35 -08002802 notifyForSettingsChange(key, name);
2803 }
2804 } else if (settingsState.deleteSettingLocked(name)) {
Svetoslav Ganov5fb405b2017-01-26 22:43:09 -08002805 someSettingChanged = true;
Svetoslav Ganove080da92016-12-21 17:10:35 -08002806 notifyForSettingsChange(key, name);
2807 }
2808 }
Svetoslav Ganov5fb405b2017-01-26 22:43:09 -08002809 if (someSettingChanged) {
2810 settingsState.persistSyncLocked();
2811 }
Svetoslav Ganove080da92016-12-21 17:10:35 -08002812 }
2813 } break;
2814
2815 case Settings.RESET_MODE_TRUSTED_DEFAULTS: {
2816 for (String name : settingsState.getSettingNamesLocked()) {
2817 Setting setting = settingsState.getSettingLocked(name);
Svetoslav Ganov5fb405b2017-01-26 22:43:09 -08002818 boolean someSettingChanged = false;
Matt Pape6bfc62e2018-11-28 13:16:03 -08002819 if (prefix != null && !setting.getName().startsWith(prefix)) {
2820 continue;
2821 }
Eugene Suslad72c3972016-12-27 15:49:30 -08002822 if (setting.isDefaultFromSystem()) {
Svetoslav Ganov5fb405b2017-01-26 22:43:09 -08002823 if (settingsState.resetSettingLocked(name)) {
2824 someSettingChanged = true;
Svetoslav Ganove080da92016-12-21 17:10:35 -08002825 notifyForSettingsChange(key, name);
2826 }
2827 } else if (settingsState.deleteSettingLocked(name)) {
Svetoslav Ganov5fb405b2017-01-26 22:43:09 -08002828 someSettingChanged = true;
Svetoslav Ganove080da92016-12-21 17:10:35 -08002829 notifyForSettingsChange(key, name);
2830 }
Svetoslav Ganov5fb405b2017-01-26 22:43:09 -08002831 if (someSettingChanged) {
2832 settingsState.persistSyncLocked();
2833 }
Svetoslav Ganove080da92016-12-21 17:10:35 -08002834 }
2835 } break;
2836 }
2837 }
2838
Zimuzoc56192c2018-07-25 10:40:01 +01002839 public void removeSettingsForPackageLocked(String packageName, int userId) {
Svet Ganov8de34802015-04-27 09:33:40 -07002840 // Global and secure settings are signature protected. Apps signed
2841 // by the platform certificate are generally not uninstalled and
2842 // the main exception is tests. We trust components signed
2843 // by the platform certificate and do not do a clean up after them.
Svetoslav683914b2015-01-15 14:22:26 -08002844
2845 final int systemKey = makeKey(SETTINGS_TYPE_SYSTEM, userId);
2846 SettingsState systemSettings = mSettingsStates.get(systemKey);
Svet Ganov8de34802015-04-27 09:33:40 -07002847 if (systemSettings != null) {
Zimuzoc56192c2018-07-25 10:40:01 +01002848 systemSettings.removeSettingsForPackageLocked(packageName);
Svet Ganov8de34802015-04-27 09:33:40 -07002849 }
Svetoslav683914b2015-01-15 14:22:26 -08002850 }
2851
Mark Rathjend891f012017-01-19 04:10:37 +00002852 public void onUidRemovedLocked(int uid) {
2853 final SettingsState ssaidSettings = getSettingsLocked(SETTINGS_TYPE_SSAID,
2854 UserHandle.getUserId(uid));
Tony Mak24c6ab42018-01-08 14:35:34 +00002855 if (ssaidSettings != null) {
2856 ssaidSettings.deleteSettingLocked(Integer.toString(uid));
2857 }
Mark Rathjend891f012017-01-19 04:10:37 +00002858 }
2859
Kweku Adamsb0886f32017-10-31 15:32:09 -07002860 @Nullable
Svetoslav683914b2015-01-15 14:22:26 -08002861 private SettingsState peekSettingsStateLocked(int key) {
2862 SettingsState settingsState = mSettingsStates.get(key);
2863 if (settingsState != null) {
2864 return settingsState;
2865 }
2866
Dianne Hackborn32f40ee2016-10-20 15:54:14 -07002867 if (!ensureSettingsForUserLocked(getUserIdFromKey(key))) {
2868 return null;
2869 }
Svetoslav683914b2015-01-15 14:22:26 -08002870 return mSettingsStates.get(key);
2871 }
2872
2873 private void migrateAllLegacySettingsIfNeeded() {
2874 synchronized (mLock) {
Xiaohui Chen43765b72015-08-31 10:57:33 -07002875 final int key = makeKey(SETTINGS_TYPE_GLOBAL, UserHandle.USER_SYSTEM);
Svetoslav683914b2015-01-15 14:22:26 -08002876 File globalFile = getSettingsFile(key);
Amith Yamasani74bf71b2017-07-19 16:49:52 -07002877 if (SettingsState.stateFileExists(globalFile)) {
Svetoslav683914b2015-01-15 14:22:26 -08002878 return;
2879 }
2880
Amith Yamasani39452022017-03-21 15:23:47 -07002881 mSettingsCreationBuildId = Build.ID;
2882
Svetoslav683914b2015-01-15 14:22:26 -08002883 final long identity = Binder.clearCallingIdentity();
2884 try {
2885 List<UserInfo> users = mUserManager.getUsers(true);
2886
2887 final int userCount = users.size();
2888 for (int i = 0; i < userCount; i++) {
2889 final int userId = users.get(i).id;
2890
2891 DatabaseHelper dbHelper = new DatabaseHelper(getContext(), userId);
2892 SQLiteDatabase database = dbHelper.getWritableDatabase();
2893 migrateLegacySettingsForUserLocked(dbHelper, database, userId);
2894
2895 // Upgrade to the latest version.
2896 UpgradeController upgrader = new UpgradeController(userId);
2897 upgrader.upgradeIfNeededLocked();
2898
2899 // Drop from memory if not a running user.
2900 if (!mUserManager.isUserRunning(new UserHandle(userId))) {
2901 removeUserStateLocked(userId, false);
2902 }
2903 }
2904 } finally {
2905 Binder.restoreCallingIdentity(identity);
2906 }
2907 }
2908 }
2909
2910 private void migrateLegacySettingsForUserIfNeededLocked(int userId) {
2911 // Every user has secure settings and if no file we need to migrate.
2912 final int secureKey = makeKey(SETTINGS_TYPE_SECURE, userId);
2913 File secureFile = getSettingsFile(secureKey);
Amith Yamasani74bf71b2017-07-19 16:49:52 -07002914 if (SettingsState.stateFileExists(secureFile)) {
Svetoslav683914b2015-01-15 14:22:26 -08002915 return;
2916 }
2917
2918 DatabaseHelper dbHelper = new DatabaseHelper(getContext(), userId);
2919 SQLiteDatabase database = dbHelper.getWritableDatabase();
2920
2921 migrateLegacySettingsForUserLocked(dbHelper, database, userId);
2922 }
2923
2924 private void migrateLegacySettingsForUserLocked(DatabaseHelper dbHelper,
2925 SQLiteDatabase database, int userId) {
Amith Yamasanibf2ef612016-03-07 16:37:18 -08002926 // Move over the system settings.
2927 final int systemKey = makeKey(SETTINGS_TYPE_SYSTEM, userId);
2928 ensureSettingsStateLocked(systemKey);
2929 SettingsState systemSettings = mSettingsStates.get(systemKey);
2930 migrateLegacySettingsLocked(systemSettings, database, TABLE_SYSTEM);
2931 systemSettings.persistSyncLocked();
Svetoslav683914b2015-01-15 14:22:26 -08002932
2933 // Move over the secure settings.
Amith Yamasanibf2ef612016-03-07 16:37:18 -08002934 // Do this after System settings, since this is the first thing we check when deciding
2935 // to skip over migration from db to xml for a secondary user.
Svetoslav683914b2015-01-15 14:22:26 -08002936 final int secureKey = makeKey(SETTINGS_TYPE_SECURE, userId);
2937 ensureSettingsStateLocked(secureKey);
2938 SettingsState secureSettings = mSettingsStates.get(secureKey);
2939 migrateLegacySettingsLocked(secureSettings, database, TABLE_SECURE);
2940 ensureSecureSettingAndroidIdSetLocked(secureSettings);
2941 secureSettings.persistSyncLocked();
2942
Amith Yamasanibf2ef612016-03-07 16:37:18 -08002943 // Move over the global settings if owner.
2944 // Do this last, since this is the first thing we check when deciding
2945 // to skip over migration from db to xml for owner user.
2946 if (userId == UserHandle.USER_SYSTEM) {
2947 final int globalKey = makeKey(SETTINGS_TYPE_GLOBAL, userId);
2948 ensureSettingsStateLocked(globalKey);
2949 SettingsState globalSettings = mSettingsStates.get(globalKey);
2950 migrateLegacySettingsLocked(globalSettings, database, TABLE_GLOBAL);
Amith Yamasani39452022017-03-21 15:23:47 -07002951 // If this was just created
2952 if (mSettingsCreationBuildId != null) {
2953 globalSettings.insertSettingLocked(Settings.Global.DATABASE_CREATION_BUILDID,
2954 mSettingsCreationBuildId, null, true,
2955 SettingsState.SYSTEM_PACKAGE_NAME);
2956 }
Amith Yamasanibf2ef612016-03-07 16:37:18 -08002957 globalSettings.persistSyncLocked();
2958 }
Svetoslav683914b2015-01-15 14:22:26 -08002959
2960 // Drop the database as now all is moved and persisted.
2961 if (DROP_DATABASE_ON_MIGRATION) {
2962 dbHelper.dropDatabase();
2963 } else {
2964 dbHelper.backupDatabase();
2965 }
2966 }
2967
2968 private void migrateLegacySettingsLocked(SettingsState settingsState,
2969 SQLiteDatabase database, String table) {
2970 SQLiteQueryBuilder queryBuilder = new SQLiteQueryBuilder();
2971 queryBuilder.setTables(table);
2972
2973 Cursor cursor = queryBuilder.query(database, ALL_COLUMNS,
2974 null, null, null, null, null);
2975
2976 if (cursor == null) {
2977 return;
2978 }
2979
2980 try {
2981 if (!cursor.moveToFirst()) {
2982 return;
2983 }
2984
2985 final int nameColumnIdx = cursor.getColumnIndex(Settings.NameValueTable.NAME);
2986 final int valueColumnIdx = cursor.getColumnIndex(Settings.NameValueTable.VALUE);
2987
2988 settingsState.setVersionLocked(database.getVersion());
2989
2990 while (!cursor.isAfterLast()) {
2991 String name = cursor.getString(nameColumnIdx);
2992 String value = cursor.getString(valueColumnIdx);
Svetoslav Ganove080da92016-12-21 17:10:35 -08002993 settingsState.insertSettingLocked(name, value, null, true,
Svetoslav683914b2015-01-15 14:22:26 -08002994 SettingsState.SYSTEM_PACKAGE_NAME);
2995 cursor.moveToNext();
2996 }
2997 } finally {
2998 cursor.close();
2999 }
3000 }
3001
Andreas Gampeb58893072018-09-05 16:52:31 -07003002 @GuardedBy("secureSettings.mLock")
Svetoslav683914b2015-01-15 14:22:26 -08003003 private void ensureSecureSettingAndroidIdSetLocked(SettingsState secureSettings) {
3004 Setting value = secureSettings.getSettingLocked(Settings.Secure.ANDROID_ID);
3005
Seigo Nonaka6e5b6022016-04-27 16:32:44 +09003006 if (!value.isNull()) {
Svetoslav683914b2015-01-15 14:22:26 -08003007 return;
3008 }
3009
3010 final int userId = getUserIdFromKey(secureSettings.mKey);
3011
3012 final UserInfo user;
3013 final long identity = Binder.clearCallingIdentity();
3014 try {
3015 user = mUserManager.getUserInfo(userId);
3016 } finally {
3017 Binder.restoreCallingIdentity(identity);
3018 }
3019 if (user == null) {
3020 // Can happen due to races when deleting users - treat as benign.
3021 return;
3022 }
3023
3024 String androidId = Long.toHexString(new SecureRandom().nextLong());
3025 secureSettings.insertSettingLocked(Settings.Secure.ANDROID_ID, androidId,
Svetoslav Ganove080da92016-12-21 17:10:35 -08003026 null, true, SettingsState.SYSTEM_PACKAGE_NAME);
Svetoslav683914b2015-01-15 14:22:26 -08003027
3028 Slog.d(LOG_TAG, "Generated and saved new ANDROID_ID [" + androidId
3029 + "] for user " + userId);
3030
3031 // Write a drop box entry if it's a restricted profile
3032 if (user.isRestricted()) {
3033 DropBoxManager dbm = (DropBoxManager) getContext().getSystemService(
3034 Context.DROPBOX_SERVICE);
3035 if (dbm != null && dbm.isTagEnabled(DROPBOX_TAG_USERLOG)) {
3036 dbm.addText(DROPBOX_TAG_USERLOG, System.currentTimeMillis()
3037 + "," + DROPBOX_TAG_USERLOG + "," + androidId + "\n");
3038 }
3039 }
3040 }
3041
3042 private void notifyForSettingsChange(int key, String name) {
Svet Ganov945864c2018-03-22 21:49:10 -07003043 // Increment the generation first, so observers always see the new value
Phil Weaver83fec002016-05-11 10:55:29 -07003044 mGenerationRegistry.incrementGeneration(key);
3045
Svet Ganov945864c2018-03-22 21:49:10 -07003046 if (isGlobalSettingsKey(key)) {
Jeff Sharkey308093f2018-03-25 22:53:29 -06003047 final long token = Binder.clearCallingIdentity();
3048 try {
3049 if (Global.LOCATION_GLOBAL_KILL_SWITCH.equals(name)) {
3050 // When the global kill switch is updated, send the
3051 // change notification for the location setting.
3052 notifyLocationChangeForRunningUsers();
3053 }
3054 notifyGlobalSettingChangeForRunningUsers(key, name);
3055 } finally {
3056 Binder.restoreCallingIdentity(token);
Svet Ganov945864c2018-03-22 21:49:10 -07003057 }
Svet Ganov945864c2018-03-22 21:49:10 -07003058 } else {
3059 final int userId = getUserIdFromKey(key);
3060 final Uri uri = getNotificationUriFor(key, name);
3061 mHandler.obtainMessage(MyHandler.MSG_NOTIFY_URI_CHANGED,
3062 userId, 0, uri).sendToTarget();
3063 if (isSecureSettingsKey(key)) {
3064 maybeNotifyProfiles(getTypeFromKey(key), userId, uri, name,
3065 sSecureCloneToManagedSettings);
3066 maybeNotifyProfiles(SETTINGS_TYPE_SYSTEM, userId, uri, name,
3067 sSystemCloneFromParentOnDependency.values());
3068 } else if (isSystemSettingsKey(key)) {
3069 maybeNotifyProfiles(getTypeFromKey(key), userId, uri, name,
3070 sSystemCloneToManagedSettings);
3071 }
Nicolas Prevot310e1ee2015-07-02 14:03:06 +01003072 }
Svet Ganov53a441c2016-04-19 19:38:00 -07003073
Svet Ganov945864c2018-03-22 21:49:10 -07003074 // Always notify that our data changed
Svet Ganov53a441c2016-04-19 19:38:00 -07003075 mHandler.obtainMessage(MyHandler.MSG_NOTIFY_DATA_CHANGED).sendToTarget();
Nicolas Prevot310e1ee2015-07-02 14:03:06 +01003076 }
3077
Svet Ganov53a441c2016-04-19 19:38:00 -07003078 private void maybeNotifyProfiles(int type, int userId, Uri uri, String name,
Robin Lee7af9a742017-02-20 14:47:30 +00003079 Collection<String> keysCloned) {
Nicolas Prevot310e1ee2015-07-02 14:03:06 +01003080 if (keysCloned.contains(name)) {
Fyodor Kupolov7f98aa42016-04-07 14:56:25 -07003081 for (int profileId : mUserManager.getProfileIdsWithDisabled(userId)) {
Nicolas Prevot310e1ee2015-07-02 14:03:06 +01003082 // the notification for userId has already been sent.
Fyodor Kupolov7f98aa42016-04-07 14:56:25 -07003083 if (profileId != userId) {
Svet Ganov945864c2018-03-22 21:49:10 -07003084 final int key = makeKey(type, profileId);
3085 // Increment the generation first, so observers always see the new value
3086 mGenerationRegistry.incrementGeneration(key);
Svetoslav7e0683b2015-08-03 16:02:52 -07003087 mHandler.obtainMessage(MyHandler.MSG_NOTIFY_URI_CHANGED,
Fyodor Kupolov7f98aa42016-04-07 14:56:25 -07003088 profileId, 0, uri).sendToTarget();
Nicolas Prevot310e1ee2015-07-02 14:03:06 +01003089 }
3090 }
3091 }
Svetoslav683914b2015-01-15 14:22:26 -08003092 }
3093
Svet Ganov945864c2018-03-22 21:49:10 -07003094 private void notifyGlobalSettingChangeForRunningUsers(int key, String name) {
3095 // Important: No need to update generation for each user as there
3096 // is a singleton generation entry for the global settings which
3097 // is already incremented be the caller.
3098 final Uri uri = getNotificationUriFor(key, name);
3099 final List<UserInfo> users = mUserManager.getUsers(/*excludeDying*/ true);
3100 for (int i = 0; i < users.size(); i++) {
3101 final int userId = users.get(i).id;
3102 if (mUserManager.isUserRunning(UserHandle.of(userId))) {
3103 mHandler.obtainMessage(MyHandler.MSG_NOTIFY_URI_CHANGED,
3104 userId, 0, uri).sendToTarget();
3105 }
3106 }
3107 }
3108
Makoto Onuki0000d322017-11-28 16:31:47 -08003109 private void notifyLocationChangeForRunningUsers() {
3110 final List<UserInfo> users = mUserManager.getUsers(/*excludeDying=*/ true);
3111
3112 for (int i = 0; i < users.size(); i++) {
3113 final int userId = users.get(i).id;
3114
3115 if (!mUserManager.isUserRunning(UserHandle.of(userId))) {
3116 continue;
3117 }
Makoto Onuki0000d322017-11-28 16:31:47 -08003118
Svet Ganov945864c2018-03-22 21:49:10 -07003119 // Increment the generation first, so observers always see the new value
3120 final int key = makeKey(SETTINGS_TYPE_SECURE, userId);
3121 mGenerationRegistry.incrementGeneration(key);
3122
Kweku Adams5e0052b2019-02-22 15:17:52 -08003123 final Uri uri = getNotificationUriFor(key, Secure.LOCATION_MODE);
Makoto Onuki0000d322017-11-28 16:31:47 -08003124 mHandler.obtainMessage(MyHandler.MSG_NOTIFY_URI_CHANGED,
3125 userId, 0, uri).sendToTarget();
3126 }
3127 }
3128
Matt Pape1b31a332018-10-17 09:58:28 -07003129 private boolean isConfigSettingsKey(int key) {
3130 return getTypeFromKey(key) == SETTINGS_TYPE_CONFIG;
3131 }
3132
Svetoslav683914b2015-01-15 14:22:26 -08003133 private boolean isGlobalSettingsKey(int key) {
3134 return getTypeFromKey(key) == SETTINGS_TYPE_GLOBAL;
3135 }
3136
3137 private boolean isSystemSettingsKey(int key) {
3138 return getTypeFromKey(key) == SETTINGS_TYPE_SYSTEM;
3139 }
3140
3141 private boolean isSecureSettingsKey(int key) {
3142 return getTypeFromKey(key) == SETTINGS_TYPE_SECURE;
3143 }
3144
Mark Rathjend891f012017-01-19 04:10:37 +00003145 private boolean isSsaidSettingsKey(int key) {
3146 return getTypeFromKey(key) == SETTINGS_TYPE_SSAID;
3147 }
3148
Svetoslav683914b2015-01-15 14:22:26 -08003149 private File getSettingsFile(int key) {
Matt Pape1b31a332018-10-17 09:58:28 -07003150 if (isConfigSettingsKey(key)) {
3151 final int userId = getUserIdFromKey(key);
3152 return new File(Environment.getUserSystemDirectory(userId),
3153 SETTINGS_FILE_CONFIG);
3154 } else if (isGlobalSettingsKey(key)) {
Svetoslav683914b2015-01-15 14:22:26 -08003155 final int userId = getUserIdFromKey(key);
3156 return new File(Environment.getUserSystemDirectory(userId),
3157 SETTINGS_FILE_GLOBAL);
3158 } else if (isSystemSettingsKey(key)) {
3159 final int userId = getUserIdFromKey(key);
3160 return new File(Environment.getUserSystemDirectory(userId),
3161 SETTINGS_FILE_SYSTEM);
3162 } else if (isSecureSettingsKey(key)) {
3163 final int userId = getUserIdFromKey(key);
3164 return new File(Environment.getUserSystemDirectory(userId),
3165 SETTINGS_FILE_SECURE);
Mark Rathjend891f012017-01-19 04:10:37 +00003166 } else if (isSsaidSettingsKey(key)) {
3167 final int userId = getUserIdFromKey(key);
3168 return new File(Environment.getUserSystemDirectory(userId),
3169 SETTINGS_FILE_SSAID);
Svetoslav683914b2015-01-15 14:22:26 -08003170 } else {
3171 throw new IllegalArgumentException("Invalid settings key:" + key);
3172 }
3173 }
3174
3175 private Uri getNotificationUriFor(int key, String name) {
Matt Pape1b31a332018-10-17 09:58:28 -07003176 if (isConfigSettingsKey(key)) {
Matt Pape1278d1c2018-12-11 13:03:49 -08003177 return (name != null) ? Uri.withAppendedPath(DeviceConfig.CONTENT_URI, name)
3178 : DeviceConfig.CONTENT_URI;
Matt Pape1b31a332018-10-17 09:58:28 -07003179 } else if (isGlobalSettingsKey(key)) {
Svetoslav683914b2015-01-15 14:22:26 -08003180 return (name != null) ? Uri.withAppendedPath(Settings.Global.CONTENT_URI, name)
3181 : Settings.Global.CONTENT_URI;
3182 } else if (isSecureSettingsKey(key)) {
3183 return (name != null) ? Uri.withAppendedPath(Settings.Secure.CONTENT_URI, name)
3184 : Settings.Secure.CONTENT_URI;
3185 } else if (isSystemSettingsKey(key)) {
3186 return (name != null) ? Uri.withAppendedPath(Settings.System.CONTENT_URI, name)
3187 : Settings.System.CONTENT_URI;
3188 } else {
3189 throw new IllegalArgumentException("Invalid settings key:" + key);
3190 }
3191 }
3192
3193 private int getMaxBytesPerPackageForType(int type) {
3194 switch (type) {
Matt Pape1b31a332018-10-17 09:58:28 -07003195 case SETTINGS_TYPE_CONFIG:
Svetoslav683914b2015-01-15 14:22:26 -08003196 case SETTINGS_TYPE_GLOBAL:
Mark Rathjend891f012017-01-19 04:10:37 +00003197 case SETTINGS_TYPE_SECURE:
3198 case SETTINGS_TYPE_SSAID: {
Svetoslav683914b2015-01-15 14:22:26 -08003199 return SettingsState.MAX_BYTES_PER_APP_PACKAGE_UNLIMITED;
3200 }
3201
3202 default: {
3203 return SettingsState.MAX_BYTES_PER_APP_PACKAGE_LIMITED;
3204 }
3205 }
3206 }
3207
Svetoslav7e0683b2015-08-03 16:02:52 -07003208 private final class MyHandler extends Handler {
3209 private static final int MSG_NOTIFY_URI_CHANGED = 1;
3210 private static final int MSG_NOTIFY_DATA_CHANGED = 2;
3211
3212 public MyHandler(Looper looper) {
3213 super(looper);
3214 }
3215
3216 @Override
3217 public void handleMessage(Message msg) {
3218 switch (msg.what) {
3219 case MSG_NOTIFY_URI_CHANGED: {
3220 final int userId = msg.arg1;
3221 Uri uri = (Uri) msg.obj;
Jeff Sharkey88f9d0b2017-08-11 15:29:40 -06003222 try {
3223 getContext().getContentResolver().notifyChange(uri, null, true, userId);
3224 } catch (SecurityException e) {
3225 Slog.w(LOG_TAG, "Failed to notify for " + userId + ": " + uri, e);
3226 }
Makoto Onuki0000d322017-11-28 16:31:47 -08003227 if (DEBUG || true) {
Svetoslav7e0683b2015-08-03 16:02:52 -07003228 Slog.v(LOG_TAG, "Notifying for " + userId + ": " + uri);
3229 }
3230 } break;
3231
3232 case MSG_NOTIFY_DATA_CHANGED: {
3233 mBackupManager.dataChanged();
3234 } break;
3235 }
3236 }
3237 }
3238
Svetoslav683914b2015-01-15 14:22:26 -08003239 private final class UpgradeController {
Beverly4179f992019-02-08 11:34:16 -05003240 private static final int SETTINGS_VERSION = 174;
Svetoslav683914b2015-01-15 14:22:26 -08003241
3242 private final int mUserId;
3243
3244 public UpgradeController(int userId) {
3245 mUserId = userId;
3246 }
3247
3248 public void upgradeIfNeededLocked() {
3249 // The version of all settings for a user is the same (all users have secure).
3250 SettingsState secureSettings = getSettingsLocked(
Svet Ganov53a441c2016-04-19 19:38:00 -07003251 SETTINGS_TYPE_SECURE, mUserId);
Svetoslav683914b2015-01-15 14:22:26 -08003252
3253 // Try an update from the current state.
3254 final int oldVersion = secureSettings.getVersionLocked();
3255 final int newVersion = SETTINGS_VERSION;
3256
Svet Ganovc9755bc2015-03-28 13:21:22 -07003257 // If up do date - done.
Svetoslav683914b2015-01-15 14:22:26 -08003258 if (oldVersion == newVersion) {
3259 return;
3260 }
3261
3262 // Try to upgrade.
3263 final int curVersion = onUpgradeLocked(mUserId, oldVersion, newVersion);
3264
3265 // If upgrade failed start from scratch and upgrade.
3266 if (curVersion != newVersion) {
3267 // Drop state we have for this user.
3268 removeUserStateLocked(mUserId, true);
3269
3270 // Recreate the database.
3271 DatabaseHelper dbHelper = new DatabaseHelper(getContext(), mUserId);
3272 SQLiteDatabase database = dbHelper.getWritableDatabase();
3273 dbHelper.recreateDatabase(database, newVersion, curVersion, oldVersion);
3274
3275 // Migrate the settings for this user.
3276 migrateLegacySettingsForUserLocked(dbHelper, database, mUserId);
3277
3278 // Now upgrade should work fine.
3279 onUpgradeLocked(mUserId, oldVersion, newVersion);
Svetoslav Ganov264c7a92016-08-24 17:31:14 -07003280
3281 // Make a note what happened, so we don't wonder why data was lost
3282 String reason = "Settings rebuilt! Current version: "
3283 + curVersion + " while expected: " + newVersion;
3284 getGlobalSettingsLocked().insertSettingLocked(
Svetoslav Ganove080da92016-12-21 17:10:35 -08003285 Settings.Global.DATABASE_DOWNGRADE_REASON,
3286 reason, null, true, SettingsState.SYSTEM_PACKAGE_NAME);
Svetoslav683914b2015-01-15 14:22:26 -08003287 }
3288
3289 // Set the global settings version if owner.
Xiaohui Chen43765b72015-08-31 10:57:33 -07003290 if (mUserId == UserHandle.USER_SYSTEM) {
Svetoslav683914b2015-01-15 14:22:26 -08003291 SettingsState globalSettings = getSettingsLocked(
Svet Ganov53a441c2016-04-19 19:38:00 -07003292 SETTINGS_TYPE_GLOBAL, mUserId);
Svetoslav683914b2015-01-15 14:22:26 -08003293 globalSettings.setVersionLocked(newVersion);
3294 }
3295
3296 // Set the secure settings version.
3297 secureSettings.setVersionLocked(newVersion);
3298
3299 // Set the system settings version.
3300 SettingsState systemSettings = getSettingsLocked(
Svet Ganov53a441c2016-04-19 19:38:00 -07003301 SETTINGS_TYPE_SYSTEM, mUserId);
Svetoslav683914b2015-01-15 14:22:26 -08003302 systemSettings.setVersionLocked(newVersion);
3303 }
3304
3305 private SettingsState getGlobalSettingsLocked() {
Xiaohui Chen43765b72015-08-31 10:57:33 -07003306 return getSettingsLocked(SETTINGS_TYPE_GLOBAL, UserHandle.USER_SYSTEM);
Svetoslav683914b2015-01-15 14:22:26 -08003307 }
3308
3309 private SettingsState getSecureSettingsLocked(int userId) {
3310 return getSettingsLocked(SETTINGS_TYPE_SECURE, userId);
3311 }
3312
Mark Rathjend891f012017-01-19 04:10:37 +00003313 private SettingsState getSsaidSettingsLocked(int userId) {
3314 return getSettingsLocked(SETTINGS_TYPE_SSAID, userId);
3315 }
3316
Svetoslav683914b2015-01-15 14:22:26 -08003317 private SettingsState getSystemSettingsLocked(int userId) {
3318 return getSettingsLocked(SETTINGS_TYPE_SYSTEM, userId);
3319 }
3320
Jeff Brown503cffc2015-03-26 18:08:51 -07003321 /**
3322 * You must perform all necessary mutations to bring the settings
3323 * for this user from the old to the new version. When you add a new
3324 * upgrade step you *must* update SETTINGS_VERSION.
3325 *
3326 * This is an example of moving a setting from secure to global.
3327 *
3328 * // v119: Example settings changes.
3329 * if (currentVersion == 118) {
3330 * if (userId == UserHandle.USER_OWNER) {
3331 * // Remove from the secure settings.
3332 * SettingsState secureSettings = getSecureSettingsLocked(userId);
3333 * String name = "example_setting_to_move";
3334 * String value = secureSettings.getSetting(name);
3335 * secureSettings.deleteSetting(name);
3336 *
3337 * // Add to the global settings.
3338 * SettingsState globalSettings = getGlobalSettingsLocked();
3339 * globalSettings.insertSetting(name, value, SettingsState.SYSTEM_PACKAGE_NAME);
3340 * }
3341 *
3342 * // Update the current version.
3343 * currentVersion = 119;
3344 * }
3345 */
Svetoslav683914b2015-01-15 14:22:26 -08003346 private int onUpgradeLocked(int userId, int oldVersion, int newVersion) {
3347 if (DEBUG) {
3348 Slog.w(LOG_TAG, "Upgrading settings for user: " + userId + " from version: "
3349 + oldVersion + " to version: " + newVersion);
3350 }
3351
Jeff Brown503cffc2015-03-26 18:08:51 -07003352 int currentVersion = oldVersion;
Svetoslav683914b2015-01-15 14:22:26 -08003353
John Spurlocke11ae112015-05-11 16:09:03 -04003354 // v119: Reset zen + ringer mode.
3355 if (currentVersion == 118) {
Xiaohui Chen43765b72015-08-31 10:57:33 -07003356 if (userId == UserHandle.USER_SYSTEM) {
John Spurlocke11ae112015-05-11 16:09:03 -04003357 final SettingsState globalSettings = getGlobalSettingsLocked();
3358 globalSettings.updateSettingLocked(Settings.Global.ZEN_MODE,
Svetoslav Ganove080da92016-12-21 17:10:35 -08003359 Integer.toString(Settings.Global.ZEN_MODE_OFF), null,
3360 true, SettingsState.SYSTEM_PACKAGE_NAME);
John Spurlocke11ae112015-05-11 16:09:03 -04003361 globalSettings.updateSettingLocked(Settings.Global.MODE_RINGER,
Svetoslav Ganove080da92016-12-21 17:10:35 -08003362 Integer.toString(AudioManager.RINGER_MODE_NORMAL), null,
3363 true, SettingsState.SYSTEM_PACKAGE_NAME);
John Spurlocke11ae112015-05-11 16:09:03 -04003364 }
3365 currentVersion = 119;
3366 }
3367
Jason Monk27bbb2d2015-03-31 16:46:39 -04003368 // v120: Add double tap to wake setting.
3369 if (currentVersion == 119) {
3370 SettingsState secureSettings = getSecureSettingsLocked(userId);
3371 secureSettings.insertSettingLocked(Settings.Secure.DOUBLE_TAP_TO_WAKE,
3372 getContext().getResources().getBoolean(
Svetoslav Ganove080da92016-12-21 17:10:35 -08003373 R.bool.def_double_tap_to_wake) ? "1" : "0", null, true,
Jason Monk27bbb2d2015-03-31 16:46:39 -04003374 SettingsState.SYSTEM_PACKAGE_NAME);
3375
3376 currentVersion = 120;
3377 }
3378
Svetoslav7e0683b2015-08-03 16:02:52 -07003379 if (currentVersion == 120) {
3380 // Before 121, we used a different string encoding logic. We just bump the
3381 // version here; SettingsState knows how to handle pre-version 120 files.
3382 currentVersion = 121;
3383 }
Makoto Onuki3a2c35782015-06-18 11:21:58 -07003384
Martijn Coenen7ab4b7f2015-07-27 15:58:32 +02003385 if (currentVersion == 121) {
3386 // Version 122: allow OEMs to set a default payment component in resources.
3387 // Note that we only write the default if no default has been set;
3388 // if there is, we just leave the default at whatever it currently is.
3389 final SettingsState secureSettings = getSecureSettingsLocked(userId);
3390 String defaultComponent = (getContext().getResources().getString(
3391 R.string.def_nfc_payment_component));
3392 Setting currentSetting = secureSettings.getSettingLocked(
3393 Settings.Secure.NFC_PAYMENT_DEFAULT_COMPONENT);
3394 if (defaultComponent != null && !defaultComponent.isEmpty() &&
Svetoslav Ganovfedb2302016-04-26 18:36:42 -07003395 currentSetting.isNull()) {
Martijn Coenen7ab4b7f2015-07-27 15:58:32 +02003396 secureSettings.insertSettingLocked(
3397 Settings.Secure.NFC_PAYMENT_DEFAULT_COMPONENT,
Svetoslav Ganove080da92016-12-21 17:10:35 -08003398 defaultComponent, null, true, SettingsState.SYSTEM_PACKAGE_NAME);
Martijn Coenen7ab4b7f2015-07-27 15:58:32 +02003399 }
3400 currentVersion = 122;
3401 }
Suprabh Shukla269c11e2015-12-02 16:51:16 -08003402
3403 if (currentVersion == 122) {
3404 // Version 123: Adding a default value for the ability to add a user from
3405 // the lock screen.
3406 if (userId == UserHandle.USER_SYSTEM) {
3407 final SettingsState globalSettings = getGlobalSettingsLocked();
3408 Setting currentSetting = globalSettings.getSettingLocked(
3409 Settings.Global.ADD_USERS_WHEN_LOCKED);
Svetoslav Ganovfedb2302016-04-26 18:36:42 -07003410 if (currentSetting.isNull()) {
Suprabh Shukla269c11e2015-12-02 16:51:16 -08003411 globalSettings.insertSettingLocked(
3412 Settings.Global.ADD_USERS_WHEN_LOCKED,
3413 getContext().getResources().getBoolean(
3414 R.bool.def_add_users_from_lockscreen) ? "1" : "0",
Svetoslav Ganove080da92016-12-21 17:10:35 -08003415 null, true, SettingsState.SYSTEM_PACKAGE_NAME);
Suprabh Shukla269c11e2015-12-02 16:51:16 -08003416 }
3417 }
3418 currentVersion = 123;
3419 }
Bryce Leebd179282015-12-17 19:01:37 -08003420
3421 if (currentVersion == 123) {
Bryce Leeec85f342015-12-16 13:32:28 -08003422 final SettingsState globalSettings = getGlobalSettingsLocked();
3423 String defaultDisabledProfiles = (getContext().getResources().getString(
3424 R.string.def_bluetooth_disabled_profiles));
3425 globalSettings.insertSettingLocked(Settings.Global.BLUETOOTH_DISABLED_PROFILES,
Svetoslav Ganove080da92016-12-21 17:10:35 -08003426 defaultDisabledProfiles, null, true, SettingsState.SYSTEM_PACKAGE_NAME);
Bryce Leebd179282015-12-17 19:01:37 -08003427 currentVersion = 124;
Bryce Leeec85f342015-12-16 13:32:28 -08003428 }
3429
Prathmesh Prabhude16b862016-03-04 15:22:24 -08003430 if (currentVersion == 124) {
3431 // Version 124: allow OEMs to set a default value for whether IME should be
3432 // shown when a physical keyboard is connected.
3433 final SettingsState secureSettings = getSecureSettingsLocked(userId);
3434 Setting currentSetting = secureSettings.getSettingLocked(
3435 Settings.Secure.SHOW_IME_WITH_HARD_KEYBOARD);
Svetoslav Ganovfedb2302016-04-26 18:36:42 -07003436 if (currentSetting.isNull()) {
Prathmesh Prabhude16b862016-03-04 15:22:24 -08003437 secureSettings.insertSettingLocked(
3438 Settings.Secure.SHOW_IME_WITH_HARD_KEYBOARD,
3439 getContext().getResources().getBoolean(
3440 R.bool.def_show_ime_with_hard_keyboard) ? "1" : "0",
Svetoslav Ganove080da92016-12-21 17:10:35 -08003441 null, true, SettingsState.SYSTEM_PACKAGE_NAME);
Prathmesh Prabhude16b862016-03-04 15:22:24 -08003442 }
3443 currentVersion = 125;
3444 }
3445
Ruben Brunk98576cf2016-03-07 18:54:28 -08003446 if (currentVersion == 125) {
3447 // Version 125: Allow OEMs to set the default VR service.
3448 final SettingsState secureSettings = getSecureSettingsLocked(userId);
3449
3450 Setting currentSetting = secureSettings.getSettingLocked(
3451 Settings.Secure.ENABLED_VR_LISTENERS);
Svetoslav Ganovfedb2302016-04-26 18:36:42 -07003452 if (currentSetting.isNull()) {
Ruben Brunk98576cf2016-03-07 18:54:28 -08003453 ArraySet<ComponentName> l =
3454 SystemConfig.getInstance().getDefaultVrComponents();
3455
3456 if (l != null && !l.isEmpty()) {
3457 StringBuilder b = new StringBuilder();
3458 boolean start = true;
3459 for (ComponentName c : l) {
3460 if (!start) {
3461 b.append(':');
3462 }
3463 b.append(c.flattenToString());
3464 start = false;
3465 }
3466 secureSettings.insertSettingLocked(
3467 Settings.Secure.ENABLED_VR_LISTENERS, b.toString(),
Svetoslav Ganove080da92016-12-21 17:10:35 -08003468 null, true, SettingsState.SYSTEM_PACKAGE_NAME);
Ruben Brunk98576cf2016-03-07 18:54:28 -08003469 }
3470
3471 }
3472 currentVersion = 126;
3473 }
3474
Daniel U02ba6122016-04-01 18:41:42 +01003475 if (currentVersion == 126) {
3476 // Version 126: copy the primary values of LOCK_SCREEN_SHOW_NOTIFICATIONS and
3477 // LOCK_SCREEN_ALLOW_PRIVATE_NOTIFICATIONS into managed profile.
3478 if (mUserManager.isManagedProfile(userId)) {
3479 final SettingsState systemSecureSettings =
3480 getSecureSettingsLocked(UserHandle.USER_SYSTEM);
3481
3482 final Setting showNotifications = systemSecureSettings.getSettingLocked(
3483 Settings.Secure.LOCK_SCREEN_SHOW_NOTIFICATIONS);
Seigo Nonaka6e5b6022016-04-27 16:32:44 +09003484 if (!showNotifications.isNull()) {
Daniel U02ba6122016-04-01 18:41:42 +01003485 final SettingsState secureSettings = getSecureSettingsLocked(userId);
3486 secureSettings.insertSettingLocked(
3487 Settings.Secure.LOCK_SCREEN_SHOW_NOTIFICATIONS,
Svetoslav Ganove080da92016-12-21 17:10:35 -08003488 showNotifications.getValue(), null, true,
Daniel U02ba6122016-04-01 18:41:42 +01003489 SettingsState.SYSTEM_PACKAGE_NAME);
3490 }
3491
3492 final Setting allowPrivate = systemSecureSettings.getSettingLocked(
3493 Settings.Secure.LOCK_SCREEN_ALLOW_PRIVATE_NOTIFICATIONS);
Seigo Nonaka6e5b6022016-04-27 16:32:44 +09003494 if (!allowPrivate.isNull()) {
Daniel U02ba6122016-04-01 18:41:42 +01003495 final SettingsState secureSettings = getSecureSettingsLocked(userId);
3496 secureSettings.insertSettingLocked(
3497 Settings.Secure.LOCK_SCREEN_ALLOW_PRIVATE_NOTIFICATIONS,
Svetoslav Ganove080da92016-12-21 17:10:35 -08003498 allowPrivate.getValue(), null, true,
Daniel U02ba6122016-04-01 18:41:42 +01003499 SettingsState.SYSTEM_PACKAGE_NAME);
3500 }
3501 }
3502 currentVersion = 127;
3503 }
3504
Steven Ngdc20ba62016-04-26 18:19:04 +01003505 if (currentVersion == 127) {
Mahaver Chopra3d9805d2016-07-07 16:25:05 +01003506 // version 127 is no longer used.
Steven Ngdc20ba62016-04-26 18:19:04 +01003507 currentVersion = 128;
3508 }
3509
Julia Reynolds1f721e12016-07-11 08:50:58 -04003510 if (currentVersion == 128) {
Julia Reynoldsb852e562017-06-06 16:14:18 -04003511 // Version 128: Removed
Julia Reynolds1f721e12016-07-11 08:50:58 -04003512 currentVersion = 129;
3513 }
3514
Dan Sandler71f85e92016-07-20 13:46:05 -04003515 if (currentVersion == 129) {
3516 // default longpress timeout changed from 500 to 400. If unchanged from the old
3517 // default, update to the new default.
3518 final SettingsState systemSecureSettings =
3519 getSecureSettingsLocked(userId);
3520 final String oldValue = systemSecureSettings.getSettingLocked(
3521 Settings.Secure.LONG_PRESS_TIMEOUT).getValue();
3522 if (TextUtils.equals("500", oldValue)) {
3523 systemSecureSettings.insertSettingLocked(
3524 Settings.Secure.LONG_PRESS_TIMEOUT,
3525 String.valueOf(getContext().getResources().getInteger(
3526 R.integer.def_long_press_timeout_millis)),
Svetoslav Ganove080da92016-12-21 17:10:35 -08003527 null, true, SettingsState.SYSTEM_PACKAGE_NAME);
Dan Sandler71f85e92016-07-20 13:46:05 -04003528 }
3529 currentVersion = 130;
3530 }
3531
Anthony Hugh96e9cc52016-07-12 15:17:24 -07003532 if (currentVersion == 130) {
Adrian Roos69741a22016-10-21 14:49:17 -07003533 // Split Ambient settings
3534 final SettingsState secureSettings = getSecureSettingsLocked(userId);
3535 boolean dozeExplicitlyDisabled = "0".equals(secureSettings.
3536 getSettingLocked(Settings.Secure.DOZE_ENABLED).getValue());
3537
3538 if (dozeExplicitlyDisabled) {
Lucas Dupin4359b552018-08-09 15:07:54 -07003539 secureSettings.insertSettingLocked(Settings.Secure.DOZE_PICK_UP_GESTURE,
Svetoslav Ganove080da92016-12-21 17:10:35 -08003540 "0", null, true, SettingsState.SYSTEM_PACKAGE_NAME);
Lucas Dupin4359b552018-08-09 15:07:54 -07003541 secureSettings.insertSettingLocked(Settings.Secure.DOZE_DOUBLE_TAP_GESTURE,
Svetoslav Ganove080da92016-12-21 17:10:35 -08003542 "0", null, true, SettingsState.SYSTEM_PACKAGE_NAME);
Adrian Roos69741a22016-10-21 14:49:17 -07003543 }
3544 currentVersion = 131;
3545 }
3546
3547 if (currentVersion == 131) {
Anthony Hugh96e9cc52016-07-12 15:17:24 -07003548 // Initialize new multi-press timeout to default value
3549 final SettingsState systemSecureSettings = getSecureSettingsLocked(userId);
3550 final String oldValue = systemSecureSettings.getSettingLocked(
3551 Settings.Secure.MULTI_PRESS_TIMEOUT).getValue();
3552 if (TextUtils.equals(null, oldValue)) {
3553 systemSecureSettings.insertSettingLocked(
3554 Settings.Secure.MULTI_PRESS_TIMEOUT,
3555 String.valueOf(getContext().getResources().getInteger(
3556 R.integer.def_multi_press_timeout_millis)),
Svetoslav Ganove080da92016-12-21 17:10:35 -08003557 null, true, SettingsState.SYSTEM_PACKAGE_NAME);
Anthony Hugh96e9cc52016-07-12 15:17:24 -07003558 }
3559
Adrian Roos69741a22016-10-21 14:49:17 -07003560 currentVersion = 132;
Anthony Hugh96e9cc52016-07-12 15:17:24 -07003561 }
3562
Adrian Roos69741a22016-10-21 14:49:17 -07003563 if (currentVersion == 132) {
3564 // Version 132: Allow managed profile to optionally use the parent's ringtones
Andre Lagoea35e072016-08-04 13:41:13 +01003565 final SettingsState systemSecureSettings = getSecureSettingsLocked(userId);
3566 String defaultSyncParentSounds = (getContext().getResources()
3567 .getBoolean(R.bool.def_sync_parent_sounds) ? "1" : "0");
3568 systemSecureSettings.insertSettingLocked(
Svetoslav Ganove080da92016-12-21 17:10:35 -08003569 Settings.Secure.SYNC_PARENT_SOUNDS, defaultSyncParentSounds,
3570 null, true, SettingsState.SYSTEM_PACKAGE_NAME);
Adrian Roos69741a22016-10-21 14:49:17 -07003571 currentVersion = 133;
Andre Lagoea35e072016-08-04 13:41:13 +01003572 }
3573
Adrian Roos69741a22016-10-21 14:49:17 -07003574 if (currentVersion == 133) {
3575 // Version 133: Add default end button behavior
Keun-young Parkec7a1182016-10-18 11:52:38 -07003576 final SettingsState systemSettings = getSystemSettingsLocked(userId);
davidlnedb31e12018-09-25 10:21:20 -07003577 if (systemSettings.getSettingLocked(Settings.System.END_BUTTON_BEHAVIOR)
3578 .isNull()) {
Keun-young Parkec7a1182016-10-18 11:52:38 -07003579 String defaultEndButtonBehavior = Integer.toString(getContext()
3580 .getResources().getInteger(R.integer.def_end_button_behavior));
3581 systemSettings.insertSettingLocked(Settings.System.END_BUTTON_BEHAVIOR,
Svetoslav Ganove080da92016-12-21 17:10:35 -08003582 defaultEndButtonBehavior, null, true,
3583 SettingsState.SYSTEM_PACKAGE_NAME);
Keun-young Parkec7a1182016-10-18 11:52:38 -07003584 }
Adrian Roos69741a22016-10-21 14:49:17 -07003585 currentVersion = 134;
Keun-young Parkec7a1182016-10-18 11:52:38 -07003586 }
3587
Phil Weaver89e3ffc2016-09-19 13:51:10 -07003588 if (currentVersion == 134) {
3589 // Remove setting that specifies if magnification values should be preserved.
3590 // This setting defaulted to true and never has a UI.
3591 getSecureSettingsLocked(userId).deleteSettingLocked(
3592 Settings.Secure.ACCESSIBILITY_DISPLAY_MAGNIFICATION_AUTO_UPDATE);
3593 currentVersion = 135;
3594 }
3595
Jeremy Joslin8bdad342016-12-14 11:46:47 -08003596 if (currentVersion == 135) {
Jeremy Joslinc9eb3c42017-02-08 10:45:30 -08003597 // Version 135 no longer used.
Jeremy Joslin8bdad342016-12-14 11:46:47 -08003598 currentVersion = 136;
3599 }
3600
Mark Rathjend891f012017-01-19 04:10:37 +00003601 if (currentVersion == 136) {
3602 // Version 136: Store legacy SSAID for all apps currently installed on the
3603 // device as first step in migrating SSAID to be unique per application.
3604
3605 final boolean isUpgrade;
3606 try {
3607 isUpgrade = mPackageManager.isUpgrade();
3608 } catch (RemoteException e) {
3609 throw new IllegalStateException("Package manager not available");
3610 }
3611 // Only retain legacy ssaid if the device is performing an OTA. After wiping
3612 // user data or first boot on a new device should use new ssaid generation.
3613 if (isUpgrade) {
3614 // Retrieve the legacy ssaid from the secure settings table.
Mark Rathjenea617592017-01-18 23:03:41 -08003615 final Setting legacySsaidSetting = getSettingLocked(SETTINGS_TYPE_SECURE,
3616 userId, Settings.Secure.ANDROID_ID);
3617 if (legacySsaidSetting == null || legacySsaidSetting.isNull()
3618 || legacySsaidSetting.getValue() == null) {
3619 throw new IllegalStateException("Legacy ssaid not accessible");
3620 }
3621 final String legacySsaid = legacySsaidSetting.getValue();
Mark Rathjend891f012017-01-19 04:10:37 +00003622
3623 // Fill each uid with the legacy ssaid to be backwards compatible.
3624 final List<PackageInfo> packages;
3625 try {
Tetsutoki Shiozawaebe0e5f2018-01-17 11:07:09 +09003626 packages = mPackageManager.getInstalledPackages(
3627 PackageManager.MATCH_UNINSTALLED_PACKAGES,
3628 userId).getList();
Mark Rathjend891f012017-01-19 04:10:37 +00003629 } catch (RemoteException e) {
3630 throw new IllegalStateException("Package manager not available");
3631 }
3632
3633 final SettingsState ssaidSettings = getSsaidSettingsLocked(userId);
3634 for (PackageInfo info : packages) {
3635 // Check if the UID already has an entry in the table.
3636 final String uid = Integer.toString(info.applicationInfo.uid);
3637 final Setting ssaid = ssaidSettings.getSettingLocked(uid);
3638
3639 if (ssaid.isNull() || ssaid.getValue() == null) {
3640 // Android Id doesn't exist for this package so create it.
3641 ssaidSettings.insertSettingLocked(uid, legacySsaid, null, true,
3642 info.packageName);
Tetsutoki Shiozawaebe0e5f2018-01-17 11:07:09 +09003643 if (DEBUG) {
3644 Slog.d(LOG_TAG, "Keep the legacy ssaid for uid=" + uid);
3645 }
Mark Rathjend891f012017-01-19 04:10:37 +00003646 }
3647 }
3648 }
3649
3650 currentVersion = 137;
3651 }
Suprabh Shuklae3745ee2017-02-02 20:01:11 -08003652 if (currentVersion == 137) {
3653 // Version 138: Settings.Secure#INSTALL_NON_MARKET_APPS is deprecated and its
3654 // default value set to 1. The user can no longer change the value of this
3655 // setting through the UI.
3656 final SettingsState secureSetting = getSecureSettingsLocked(userId);
3657 if (!mUserManager.hasUserRestriction(
Suprabh Shukla0b1356f2017-02-21 14:33:50 -08003658 UserManager.DISALLOW_INSTALL_UNKNOWN_SOURCES, UserHandle.of(userId))
3659 && secureSetting.getSettingLocked(
3660 Settings.Secure.INSTALL_NON_MARKET_APPS).getValue().equals("0")) {
3661
Suprabh Shuklae3745ee2017-02-02 20:01:11 -08003662 secureSetting.insertSettingLocked(Settings.Secure.INSTALL_NON_MARKET_APPS,
3663 "1", null, true, SettingsState.SYSTEM_PACKAGE_NAME);
Suprabh Shukla0b1356f2017-02-21 14:33:50 -08003664 // For managed profiles with profile owners, DevicePolicyManagerService
3665 // may want to set the user restriction in this case
3666 secureSetting.insertSettingLocked(
3667 Settings.Secure.UNKNOWN_SOURCES_DEFAULT_REVERSED, "1", null, true,
3668 SettingsState.SYSTEM_PACKAGE_NAME);
Suprabh Shuklae3745ee2017-02-02 20:01:11 -08003669 }
3670 currentVersion = 138;
3671 }
Mark Rathjend891f012017-01-19 04:10:37 +00003672
Jeremy Joslinc9eb3c42017-02-08 10:45:30 -08003673 if (currentVersion == 138) {
Jeremy Joslin27d14c42017-02-15 12:02:03 -08003674 // Version 139: Removed.
Jeremy Joslinc9eb3c42017-02-08 10:45:30 -08003675 currentVersion = 139;
3676 }
3677
Phil Weaver385912e2017-02-10 10:06:56 -08003678 if (currentVersion == 139) {
3679 // Version 140: Settings.Secure#ACCESSIBILITY_SPEAK_PASSWORD is deprecated and
3680 // the user can no longer change the value of this setting through the UI.
3681 // Force to true.
3682 final SettingsState secureSettings = getSecureSettingsLocked(userId);
3683 secureSettings.updateSettingLocked(Settings.Secure.ACCESSIBILITY_SPEAK_PASSWORD,
3684 "1", null, true, SettingsState.SYSTEM_PACKAGE_NAME);
3685 currentVersion = 140;
3686 }
3687
Julia Reynoldsad0d9e02017-02-15 08:41:48 -05003688 if (currentVersion == 140) {
Julia Reynoldsb852e562017-06-06 16:14:18 -04003689 // Version 141: Removed
Julia Reynoldsad0d9e02017-02-15 08:41:48 -05003690 currentVersion = 141;
3691 }
3692
Svet Ganov13701552017-02-23 12:45:17 -08003693 if (currentVersion == 141) {
Svetoslav Ganovf7654c52017-08-16 17:33:22 -07003694 // This implementation was incorrectly setting the current value of
3695 // settings changed by non-system packages as the default which default
3696 // is set by the system. We add a new upgrade step at the end to properly
3697 // handle this case which would also fix incorrect changes made by the
3698 // old implementation of this step.
Svet Ganov13701552017-02-23 12:45:17 -08003699 currentVersion = 142;
3700 }
3701
Stephen Chen5d0922f2017-03-27 10:28:04 -07003702 if (currentVersion == 142) {
Felipe Lemeff355092017-04-03 12:55:02 -07003703 // Version 143: Set a default value for Wi-Fi wakeup feature.
Stephen Chen5d0922f2017-03-27 10:28:04 -07003704 if (userId == UserHandle.USER_SYSTEM) {
3705 final SettingsState globalSettings = getGlobalSettingsLocked();
3706 Setting currentSetting = globalSettings.getSettingLocked(
3707 Settings.Global.WIFI_WAKEUP_ENABLED);
3708 if (currentSetting.isNull()) {
3709 globalSettings.insertSettingLocked(
3710 Settings.Global.WIFI_WAKEUP_ENABLED,
3711 getContext().getResources().getBoolean(
3712 R.bool.def_wifi_wakeup_enabled) ? "1" : "0",
3713 null, true, SettingsState.SYSTEM_PACKAGE_NAME);
3714 }
3715 }
3716
3717 currentVersion = 143;
3718 }
3719
Felipe Lemeff355092017-04-03 12:55:02 -07003720 if (currentVersion == 143) {
3721 // Version 144: Set a default value for Autofill service.
3722 final SettingsState secureSettings = getSecureSettingsLocked(userId);
3723 final Setting currentSetting = secureSettings
3724 .getSettingLocked(Settings.Secure.AUTOFILL_SERVICE);
3725 if (currentSetting.isNull()) {
3726 final String defaultValue = getContext().getResources().getString(
3727 com.android.internal.R.string.config_defaultAutofillService);
3728 if (defaultValue != null) {
3729 Slog.d(LOG_TAG, "Setting [" + defaultValue + "] as Autofill Service "
3730 + "for user " + userId);
3731 secureSettings.insertSettingLocked(Settings.Secure.AUTOFILL_SERVICE,
3732 defaultValue, null, true, SettingsState.SYSTEM_PACKAGE_NAME);
3733 }
3734 }
3735
3736 currentVersion = 144;
3737 }
3738
Jeremy Joslin45caa252017-05-04 11:22:46 -07003739 if (currentVersion == 144) {
Amin Shaikh86367962017-06-07 08:58:22 -07003740 // Version 145: Removed
3741 currentVersion = 145;
3742 }
3743
3744 if (currentVersion == 145) {
Svetoslav Ganovf7654c52017-08-16 17:33:22 -07003745 // Version 146: In step 142 we had a bug where incorrectly
3746 // some settings were considered system set and as a result
3747 // made the default and marked as the default being set by
3748 // the system. Here reevaluate the default and default system
3749 // set flags. This would both fix corruption by the old impl
3750 // of step 142 and also properly handle devices which never
3751 // run 142.
Jeremy Joslin45caa252017-05-04 11:22:46 -07003752 if (userId == UserHandle.USER_SYSTEM) {
Svetoslav Ganovf7654c52017-08-16 17:33:22 -07003753 SettingsState globalSettings = getGlobalSettingsLocked();
3754 ensureLegacyDefaultValueAndSystemSetUpdatedLocked(globalSettings, userId);
3755 globalSettings.persistSyncLocked();
Jeremy Joslin45caa252017-05-04 11:22:46 -07003756 }
3757
Svetoslav Ganovf7654c52017-08-16 17:33:22 -07003758 SettingsState secureSettings = getSecureSettingsLocked(mUserId);
3759 ensureLegacyDefaultValueAndSystemSetUpdatedLocked(secureSettings, userId);
3760 secureSettings.persistSyncLocked();
3761
3762 SettingsState systemSettings = getSystemSettingsLocked(mUserId);
3763 ensureLegacyDefaultValueAndSystemSetUpdatedLocked(systemSettings, userId);
3764 systemSettings.persistSyncLocked();
3765
Amin Shaikh86367962017-06-07 08:58:22 -07003766 currentVersion = 146;
Jeremy Joslin45caa252017-05-04 11:22:46 -07003767 }
3768
Narayan Kamath94bcdbc2017-07-17 15:32:53 +01003769 if (currentVersion == 146) {
Joe LaPenna250d7842018-01-25 10:19:42 -08003770 // Version 147: Removed. (This version previously allowed showing the
3771 // "wifi_wakeup_available" setting).
3772 // The setting that was added here is deleted in 153.
Svetoslav Ganovf7654c52017-08-16 17:33:22 -07003773 currentVersion = 147;
3774 }
3775
3776 if (currentVersion == 147) {
3777 // Version 148: Set the default value for DEFAULT_RESTRICT_BACKGROUND_DATA.
Narayan Kamath94bcdbc2017-07-17 15:32:53 +01003778 if (userId == UserHandle.USER_SYSTEM) {
3779 final SettingsState globalSettings = getGlobalSettingsLocked();
3780 final Setting currentSetting = globalSettings.getSettingLocked(
3781 Global.DEFAULT_RESTRICT_BACKGROUND_DATA);
3782 if (currentSetting.isNull()) {
3783 globalSettings.insertSettingLocked(
3784 Global.DEFAULT_RESTRICT_BACKGROUND_DATA,
3785 getContext().getResources().getBoolean(
3786 R.bool.def_restrict_background_data) ? "1" : "0",
3787 null, true, SettingsState.SYSTEM_PACKAGE_NAME);
3788 }
3789 }
Svetoslav Ganovf7654c52017-08-16 17:33:22 -07003790 currentVersion = 148;
Narayan Kamath94bcdbc2017-07-17 15:32:53 +01003791 }
3792
Tim Zhengcc1e76a2017-08-30 17:46:19 -07003793 if (currentVersion == 148) {
3794 // Version 149: Set the default value for BACKUP_MANAGER_CONSTANTS.
3795 final SettingsState systemSecureSettings = getSecureSettingsLocked(userId);
3796 final String oldValue = systemSecureSettings.getSettingLocked(
3797 Settings.Secure.BACKUP_MANAGER_CONSTANTS).getValue();
3798 if (TextUtils.equals(null, oldValue)) {
3799 final String defaultValue = getContext().getResources().getString(
3800 R.string.def_backup_manager_constants);
3801 if (!TextUtils.isEmpty(defaultValue)) {
3802 systemSecureSettings.insertSettingLocked(
3803 Settings.Secure.BACKUP_MANAGER_CONSTANTS, defaultValue, null,
3804 true, SettingsState.SYSTEM_PACKAGE_NAME);
3805 }
3806 }
Tim Zhengcc1e76a2017-08-30 17:46:19 -07003807 currentVersion = 149;
3808 }
Jacky Cheung7076a312017-10-02 10:40:48 -07003809
3810 if (currentVersion == 149) {
3811 // Version 150: Set a default value for mobile data always on
3812 final SettingsState globalSettings = getGlobalSettingsLocked();
3813 final Setting currentSetting = globalSettings.getSettingLocked(
3814 Settings.Global.MOBILE_DATA_ALWAYS_ON);
3815 if (currentSetting.isNull()) {
3816 globalSettings.insertSettingLocked(
3817 Settings.Global.MOBILE_DATA_ALWAYS_ON,
3818 getContext().getResources().getBoolean(
3819 R.bool.def_mobile_data_always_on) ? "1" : "0",
3820 null, true, SettingsState.SYSTEM_PACKAGE_NAME);
3821 }
3822
3823 currentVersion = 150;
3824 }
3825
Mike Digman4af4a6f2018-01-16 14:49:38 -08003826 if (currentVersion == 150) {
Mike Digman32e03312018-05-16 16:43:23 -07003827 // Version 151: Removed.
Mike Digman4af4a6f2018-01-16 14:49:38 -08003828 currentVersion = 151;
3829 }
3830
Joe LaPenna4f50ed42018-01-22 14:54:45 -08003831 if (currentVersion == 151) {
Joe LaPenna250d7842018-01-25 10:19:42 -08003832 // Version 152: Removed. (This version made the setting for wifi_wakeup enabled
3833 // by default but it is now no longer configurable).
3834 // The setting updated here is deleted in 153.
Joe LaPenna4f50ed42018-01-22 14:54:45 -08003835 currentVersion = 152;
3836 }
3837
Joe LaPenna250d7842018-01-25 10:19:42 -08003838 if (currentVersion == 152) {
3839 getGlobalSettingsLocked().deleteSettingLocked("wifi_wakeup_available");
3840 currentVersion = 153;
3841 }
3842
Ben Linb4df8bc2018-01-29 11:48:20 -08003843 if (currentVersion == 153) {
3844 // Version 154: Read notification badge configuration from config.
3845 // If user has already set the value, don't do anything.
3846 final SettingsState systemSecureSettings = getSecureSettingsLocked(userId);
3847 final Setting showNotificationBadges = systemSecureSettings.getSettingLocked(
3848 Settings.Secure.NOTIFICATION_BADGING);
3849 if (showNotificationBadges.isNull()) {
3850 final boolean defaultValue = getContext().getResources().getBoolean(
3851 com.android.internal.R.bool.config_notificationBadging);
3852 systemSecureSettings.insertSettingLocked(
3853 Secure.NOTIFICATION_BADGING,
3854 defaultValue ? "1" : "0",
3855 null, true, SettingsState.SYSTEM_PACKAGE_NAME);
3856 }
3857 currentVersion = 154;
3858 }
3859
Bernardo Rufinoeaa78b92018-01-26 11:25:37 +00003860 if (currentVersion == 154) {
3861 // Version 155: Set the default value for BACKUP_LOCAL_TRANSPORT_PARAMETERS.
3862 final SettingsState systemSecureSettings = getSecureSettingsLocked(userId);
3863 final String oldValue = systemSecureSettings.getSettingLocked(
3864 Settings.Secure.BACKUP_LOCAL_TRANSPORT_PARAMETERS).getValue();
3865 if (TextUtils.equals(null, oldValue)) {
3866 final String defaultValue = getContext().getResources().getString(
3867 R.string.def_backup_local_transport_parameters);
3868 if (!TextUtils.isEmpty(defaultValue)) {
3869 systemSecureSettings.insertSettingLocked(
3870 Settings.Secure.BACKUP_LOCAL_TRANSPORT_PARAMETERS, defaultValue,
3871 null, true, SettingsState.SYSTEM_PACKAGE_NAME);
3872 }
3873
3874 }
3875 currentVersion = 155;
3876 }
3877
Beverlyda904812018-03-02 09:55:30 -05003878 if (currentVersion == 155) {
Annie Mengd069a882018-03-13 15:31:40 +00003879 // Version 156: Set the default value for CHARGING_STARTED_SOUND.
Beverlyda904812018-03-02 09:55:30 -05003880 final SettingsState globalSettings = getGlobalSettingsLocked();
3881 final String oldValue = globalSettings.getSettingLocked(
3882 Global.CHARGING_STARTED_SOUND).getValue();
3883 final String oldDefault = getContext().getResources().getString(
3884 R.string.def_wireless_charging_started_sound);
3885 if (TextUtils.equals(null, oldValue)
3886 || TextUtils.equals(oldValue, oldDefault)) {
3887 final String defaultValue = getContext().getResources().getString(
3888 R.string.def_charging_started_sound);
3889 if (!TextUtils.isEmpty(defaultValue)) {
3890 globalSettings.insertSettingLocked(
3891 Settings.Global.CHARGING_STARTED_SOUND, defaultValue,
3892 null, true, SettingsState.SYSTEM_PACKAGE_NAME);
3893 }
3894
3895 }
3896 currentVersion = 156;
3897 }
3898
Beverly09da25f2018-02-26 09:17:07 -05003899 if (currentVersion == 156) {
Beverly91d0a632018-07-02 16:45:00 -04003900 // Version 157: Set a default value for zen duration,
3901 // in version 169, zen duration is moved to secure settings
Beverly09da25f2018-02-26 09:17:07 -05003902 final SettingsState globalSettings = getGlobalSettingsLocked();
3903 final Setting currentSetting = globalSettings.getSettingLocked(
3904 Global.ZEN_DURATION);
3905 if (currentSetting.isNull()) {
3906 String defaultZenDuration = Integer.toString(getContext()
3907 .getResources().getInteger(R.integer.def_zen_duration));
3908 globalSettings.insertSettingLocked(
3909 Global.ZEN_DURATION, defaultZenDuration,
3910 null, true, SettingsState.SYSTEM_PACKAGE_NAME);
3911 }
Beverly09da25f2018-02-26 09:17:07 -05003912 currentVersion = 157;
3913 }
Annie Mengd069a882018-03-13 15:31:40 +00003914
3915 if (currentVersion == 157) {
3916 // Version 158: Set default value for BACKUP_AGENT_TIMEOUT_PARAMETERS.
3917 final SettingsState globalSettings = getGlobalSettingsLocked();
3918 final String oldValue = globalSettings.getSettingLocked(
3919 Settings.Global.BACKUP_AGENT_TIMEOUT_PARAMETERS).getValue();
3920 if (TextUtils.equals(null, oldValue)) {
3921 final String defaultValue = getContext().getResources().getString(
3922 R.string.def_backup_agent_timeout_parameters);
3923 if (!TextUtils.isEmpty(defaultValue)) {
3924 globalSettings.insertSettingLocked(
3925 Settings.Global.BACKUP_AGENT_TIMEOUT_PARAMETERS, defaultValue,
3926 null, true,
3927 SettingsState.SYSTEM_PACKAGE_NAME);
3928 }
3929 }
3930 currentVersion = 158;
3931 }
Roshan Pius9c396672018-03-02 14:54:13 -08003932
3933 if (currentVersion == 158) {
3934 // Remove setting that specifies wifi bgscan throttling params
3935 getGlobalSettingsLocked().deleteSettingLocked(
3936 "wifi_scan_background_throttle_interval_ms");
3937 getGlobalSettingsLocked().deleteSettingLocked(
3938 "wifi_scan_background_throttle_package_whitelist");
3939 currentVersion = 159;
3940 }
3941
Pavel Grafovc5c97302018-03-19 13:37:15 +00003942 if (currentVersion == 159) {
3943 // Version 160: Hiding notifications from the lockscreen is only available as
3944 // primary user option, profiles can only make them redacted. If a profile was
3945 // configured to not show lockscreen notifications, ensure that at the very
3946 // least these will be come hidden.
3947 if (mUserManager.isManagedProfile(userId)) {
3948 final SettingsState secureSettings = getSecureSettingsLocked(userId);
3949 Setting showNotifications = secureSettings.getSettingLocked(
3950 Settings.Secure.LOCK_SCREEN_SHOW_NOTIFICATIONS);
3951 // The default value is "1", check if user has turned it off.
3952 if ("0".equals(showNotifications.getValue())) {
3953 secureSettings.insertSettingLocked(
3954 Secure.LOCK_SCREEN_ALLOW_PRIVATE_NOTIFICATIONS, "0",
3955 null /* tag */, false /* makeDefault */,
3956 SettingsState.SYSTEM_PACKAGE_NAME);
3957 }
3958 // The setting is no longer valid for managed profiles, it should be
3959 // treated as if it was set to "1".
3960 secureSettings.deleteSettingLocked(Secure.LOCK_SCREEN_SHOW_NOTIFICATIONS);
3961 }
3962 currentVersion = 160;
3963 }
Philip P. Moltmann18e3eb82018-03-09 16:55:55 -08003964
3965 if (currentVersion == 160) {
3966 // Version 161: Set the default value for
Philip P. Moltmann7e25b3d2018-03-09 20:22:58 -08003967 // MAX_SOUND_TRIGGER_DETECTION_SERVICE_OPS_PER_DAY and
Philip P. Moltmann18e3eb82018-03-09 16:55:55 -08003968 // SOUND_TRIGGER_DETECTION_SERVICE_OP_TIMEOUT
3969 final SettingsState globalSettings = getGlobalSettingsLocked();
3970
3971 String oldValue = globalSettings.getSettingLocked(
Philip P. Moltmann7e25b3d2018-03-09 20:22:58 -08003972 Global.MAX_SOUND_TRIGGER_DETECTION_SERVICE_OPS_PER_DAY).getValue();
3973 if (TextUtils.equals(null, oldValue)) {
3974 globalSettings.insertSettingLocked(
3975 Settings.Global.MAX_SOUND_TRIGGER_DETECTION_SERVICE_OPS_PER_DAY,
3976 Integer.toString(getContext().getResources().getInteger(
3977 R.integer.def_max_sound_trigger_detection_service_ops_per_day)),
3978 null, true, SettingsState.SYSTEM_PACKAGE_NAME);
3979 }
3980
3981 oldValue = globalSettings.getSettingLocked(
Philip P. Moltmann18e3eb82018-03-09 16:55:55 -08003982 Global.SOUND_TRIGGER_DETECTION_SERVICE_OP_TIMEOUT).getValue();
3983 if (TextUtils.equals(null, oldValue)) {
3984 globalSettings.insertSettingLocked(
3985 Settings.Global.SOUND_TRIGGER_DETECTION_SERVICE_OP_TIMEOUT,
3986 Integer.toString(getContext().getResources().getInteger(
3987 R.integer.def_sound_trigger_detection_service_op_timeout)),
3988 null, true, SettingsState.SYSTEM_PACKAGE_NAME);
3989 }
3990 currentVersion = 161;
3991 }
3992
Mike Digman55272862018-02-20 14:35:17 -08003993 if (currentVersion == 161) {
3994 // Version 161: Add a gesture for silencing phones
3995 final SettingsState secureSettings = getSecureSettingsLocked(userId);
3996 final Setting currentSetting = secureSettings.getSettingLocked(
3997 Secure.VOLUME_HUSH_GESTURE);
3998 if (currentSetting.isNull()) {
3999 secureSettings.insertSettingLocked(
4000 Secure.VOLUME_HUSH_GESTURE,
4001 Integer.toString(Secure.VOLUME_HUSH_VIBRATE),
4002 null, true, SettingsState.SYSTEM_PACKAGE_NAME);
4003 }
4004
4005 currentVersion = 162;
4006 }
4007
Julia Reynoldsc4e5ecf2018-04-11 11:33:32 -04004008 if (currentVersion == 162) {
Julia Reynolds76bfa602018-04-23 09:38:47 -04004009 // Version 162: REMOVED: Add a gesture for silencing phones
Julia Reynoldsc4e5ecf2018-04-11 11:33:32 -04004010 currentVersion = 163;
4011 }
4012
Philip P. Moltmanncb58a832018-04-16 09:19:42 -07004013 if (currentVersion == 163) {
4014 // Version 163: Update default value of
4015 // MAX_SOUND_TRIGGER_DETECTION_SERVICE_OPS_PER_DAY from old to new default
4016 final SettingsState settings = getGlobalSettingsLocked();
4017 final Setting currentSetting = settings.getSettingLocked(
4018 Global.MAX_SOUND_TRIGGER_DETECTION_SERVICE_OPS_PER_DAY);
4019 if (currentSetting.isDefaultFromSystem()) {
4020 settings.insertSettingLocked(
4021 Settings.Global.MAX_SOUND_TRIGGER_DETECTION_SERVICE_OPS_PER_DAY,
4022 Integer.toString(getContext().getResources().getInteger(
4023 R.integer
4024 .def_max_sound_trigger_detection_service_ops_per_day)),
4025 null, true, SettingsState.SYSTEM_PACKAGE_NAME);
4026 }
4027
4028 currentVersion = 164;
4029 }
4030
Julia Reynolds76bfa602018-04-23 09:38:47 -04004031 if (currentVersion == 164) {
Julia Reynolds24836c52018-06-06 14:36:03 -04004032 // Version 164: REMOVED: show zen upgrade notification
Julia Reynolds76bfa602018-04-23 09:38:47 -04004033 currentVersion = 165;
4034 }
4035
Beverly301e92a2018-04-27 09:43:05 -04004036 if (currentVersion == 165) {
Beverly91d0a632018-07-02 16:45:00 -04004037 // Version 165: MOVED: Show zen settings suggestion and zen updated settings
4038 // moved to secure settings and are set in version 169
Beverly301e92a2018-04-27 09:43:05 -04004039 currentVersion = 166;
4040 }
4041
Beverly38fcfd02018-05-18 17:33:40 -04004042 if (currentVersion == 166) {
4043 // Version 166: add default values for hush gesture used and manual ringer
4044 // toggle
4045 final SettingsState secureSettings = getSecureSettingsLocked(userId);
4046 Setting currentHushUsedSetting = secureSettings.getSettingLocked(
4047 Secure.HUSH_GESTURE_USED);
4048 if (currentHushUsedSetting.isNull()) {
4049 secureSettings.insertSettingLocked(
4050 Settings.Secure.HUSH_GESTURE_USED, "0", null, true,
4051 SettingsState.SYSTEM_PACKAGE_NAME);
4052 }
4053
4054 Setting currentRingerToggleCountSetting = secureSettings.getSettingLocked(
4055 Secure.MANUAL_RINGER_TOGGLE_COUNT);
4056 if (currentRingerToggleCountSetting.isNull()) {
4057 secureSettings.insertSettingLocked(
4058 Settings.Secure.MANUAL_RINGER_TOGGLE_COUNT, "0", null, true,
4059 SettingsState.SYSTEM_PACKAGE_NAME);
4060 }
4061 currentVersion = 167;
4062 }
4063
Beverly155c9d22018-05-23 18:03:23 -04004064 if (currentVersion == 167) {
Beverly91d0a632018-07-02 16:45:00 -04004065 // Version 167: MOVED - Settings.Global.CHARGING_VIBRATION_ENABLED moved to
4066 // Settings.Secure.CHARGING_VIBRATION_ENABLED, set in version 170
Beverly155c9d22018-05-23 18:03:23 -04004067 currentVersion = 168;
4068 }
4069
Michael Wright0e9eeee2018-05-26 00:31:20 +01004070 if (currentVersion == 168) {
4071 // Version 168: by default, vibrate for phone calls
4072 final SettingsState systemSettings = getSystemSettingsLocked(userId);
4073 final Setting currentSetting = systemSettings.getSettingLocked(
4074 Settings.System.VIBRATE_WHEN_RINGING);
4075 if (currentSetting.isNull()) {
4076 systemSettings.insertSettingLocked(
4077 Settings.System.VIBRATE_WHEN_RINGING,
4078 getContext().getResources().getBoolean(
4079 R.bool.def_vibrate_when_ringing) ? "1" : "0",
4080 null, true, SettingsState.SYSTEM_PACKAGE_NAME);
4081 }
4082 currentVersion = 169;
4083 }
4084
Nadav Barf9f115d2018-06-24 10:06:50 +03004085 if (currentVersion == 169) {
Beverly91d0a632018-07-02 16:45:00 -04004086 // Version 169: Set the default value for Secure Settings ZEN_DURATION,
4087 // SHOW_ZEN_SETTINGS_SUGGESTION, ZEN_SETTINGS_UPDATE and
4088 // ZEN_SETTINGS_SUGGESTION_VIEWED
Nadav Barf9f115d2018-06-24 10:06:50 +03004089
Beverly91d0a632018-07-02 16:45:00 -04004090 final SettingsState globalSettings = getGlobalSettingsLocked();
4091 final Setting globalZenDuration = globalSettings.getSettingLocked(
4092 Global.ZEN_DURATION);
4093
4094 final SettingsState secureSettings = getSecureSettingsLocked(userId);
4095 final Setting secureZenDuration = secureSettings.getSettingLocked(
4096 Secure.ZEN_DURATION);
4097
4098 // ZEN_DURATION
4099 if (!globalZenDuration.isNull()) {
4100 secureSettings.insertSettingLocked(
4101 Secure.ZEN_DURATION, globalZenDuration.getValue(), null, false,
4102 SettingsState.SYSTEM_PACKAGE_NAME);
4103
4104 // set global zen duration setting to null since it's deprecated
4105 globalSettings.insertSettingLocked(
4106 Global.ZEN_DURATION, null, null, true,
4107 SettingsState.SYSTEM_PACKAGE_NAME);
4108 } else if (secureZenDuration.isNull()) {
4109 String defaultZenDuration = Integer.toString(getContext()
4110 .getResources().getInteger(R.integer.def_zen_duration));
4111 secureSettings.insertSettingLocked(
4112 Secure.ZEN_DURATION, defaultZenDuration, null, true,
4113 SettingsState.SYSTEM_PACKAGE_NAME);
Nadav Barf9f115d2018-06-24 10:06:50 +03004114 }
Beverly91d0a632018-07-02 16:45:00 -04004115
4116 // SHOW_ZEN_SETTINGS_SUGGESTION
4117 final Setting currentShowZenSettingSuggestion = secureSettings.getSettingLocked(
4118 Secure.SHOW_ZEN_SETTINGS_SUGGESTION);
4119 if (currentShowZenSettingSuggestion.isNull()) {
4120 secureSettings.insertSettingLocked(
4121 Secure.SHOW_ZEN_SETTINGS_SUGGESTION, "1",
4122 null, true, SettingsState.SYSTEM_PACKAGE_NAME);
4123 }
4124
4125 // ZEN_SETTINGS_UPDATED
4126 final Setting currentUpdatedSetting = secureSettings.getSettingLocked(
4127 Secure.ZEN_SETTINGS_UPDATED);
4128 if (currentUpdatedSetting.isNull()) {
4129 secureSettings.insertSettingLocked(
4130 Secure.ZEN_SETTINGS_UPDATED, "0",
4131 null, true, SettingsState.SYSTEM_PACKAGE_NAME);
4132 }
4133
4134 // ZEN_SETTINGS_SUGGESTION_VIEWED
4135 final Setting currentSettingSuggestionViewed = secureSettings.getSettingLocked(
4136 Secure.ZEN_SETTINGS_SUGGESTION_VIEWED);
4137 if (currentSettingSuggestionViewed.isNull()) {
4138 secureSettings.insertSettingLocked(
4139 Secure.ZEN_SETTINGS_SUGGESTION_VIEWED, "0",
4140 null, true, SettingsState.SYSTEM_PACKAGE_NAME);
4141 }
4142
Nadav Barf9f115d2018-06-24 10:06:50 +03004143 currentVersion = 170;
4144 }
4145
Beverly91d0a632018-07-02 16:45:00 -04004146 if (currentVersion == 170) {
4147 // Version 170: Set the default value for Secure Settings:
4148 // CHARGING_SOUNDS_ENABLED and CHARGING_VIBRATION_ENABLED
4149
4150 final SettingsState globalSettings = getGlobalSettingsLocked();
4151 final SettingsState secureSettings = getSecureSettingsLocked(userId);
4152
4153 // CHARGING_SOUNDS_ENABLED
4154 final Setting globalChargingSoundEnabled = globalSettings.getSettingLocked(
4155 Global.CHARGING_SOUNDS_ENABLED);
4156 final Setting secureChargingSoundsEnabled = secureSettings.getSettingLocked(
4157 Secure.CHARGING_SOUNDS_ENABLED);
4158
4159 if (!globalChargingSoundEnabled.isNull()) {
Beverlyff9c5872019-01-02 15:44:00 -05004160 if (secureChargingSoundsEnabled.isNull()) {
4161 secureSettings.insertSettingLocked(
4162 Secure.CHARGING_SOUNDS_ENABLED,
4163 globalChargingSoundEnabled.getValue(), null, false,
4164 SettingsState.SYSTEM_PACKAGE_NAME);
4165 }
Beverly91d0a632018-07-02 16:45:00 -04004166
4167 // set global charging_sounds_enabled setting to null since it's deprecated
4168 globalSettings.insertSettingLocked(
4169 Global.CHARGING_SOUNDS_ENABLED, null, null, true,
4170 SettingsState.SYSTEM_PACKAGE_NAME);
4171 } else if (secureChargingSoundsEnabled.isNull()) {
4172 String defChargingSoundsEnabled = getContext().getResources()
4173 .getBoolean(R.bool.def_charging_sounds_enabled) ? "1" : "0";
4174 secureSettings.insertSettingLocked(
4175 Secure.CHARGING_SOUNDS_ENABLED, defChargingSoundsEnabled, null,
4176 true, SettingsState.SYSTEM_PACKAGE_NAME);
4177 }
4178
4179 // CHARGING_VIBRATION_ENABLED
4180 final Setting secureChargingVibrationEnabled = secureSettings.getSettingLocked(
4181 Secure.CHARGING_VIBRATION_ENABLED);
4182
4183 if (secureChargingVibrationEnabled.isNull()) {
4184 String defChargingVibrationEnabled = getContext().getResources()
4185 .getBoolean(R.bool.def_charging_vibration_enabled) ? "1" : "0";
4186 secureSettings.insertSettingLocked(
4187 Secure.CHARGING_VIBRATION_ENABLED, defChargingVibrationEnabled,
4188 null, true, SettingsState.SYSTEM_PACKAGE_NAME);
4189 }
4190
4191 currentVersion = 171;
4192 }
4193
Nadav Bar8bc8c9e2018-09-12 15:41:51 +03004194 if (currentVersion == 171) {
4195 // Version 171: by default, add STREAM_VOICE_CALL to list of streams that can
4196 // be muted.
4197 final SettingsState systemSettings = getSystemSettingsLocked(userId);
4198 final Setting currentSetting = systemSettings.getSettingLocked(
4199 Settings.System.MUTE_STREAMS_AFFECTED);
4200 if (!currentSetting.isNull()) {
4201 try {
4202 int currentSettingIntegerValue = Integer.parseInt(
4203 currentSetting.getValue());
4204 if ((currentSettingIntegerValue
4205 & (1 << AudioManager.STREAM_VOICE_CALL)) == 0) {
4206 systemSettings.insertSettingLocked(
4207 Settings.System.MUTE_STREAMS_AFFECTED,
4208 Integer.toString(
4209 currentSettingIntegerValue
4210 | (1 << AudioManager.STREAM_VOICE_CALL)),
4211 null, true, SettingsState.SYSTEM_PACKAGE_NAME);
4212 }
4213 } catch (NumberFormatException e) {
4214 // remove the setting in case it is not a valid integer
4215 Slog.w("Failed to parse integer value of MUTE_STREAMS_AFFECTED"
4216 + "setting, removing setting", e);
4217 systemSettings.deleteSettingLocked(
4218 Settings.System.MUTE_STREAMS_AFFECTED);
4219 }
4220
4221 }
4222 currentVersion = 172;
4223 }
4224
Soonil Nagarkar42da1b12019-01-22 11:29:27 -08004225 if (currentVersion == 172) {
4226 // Version 172: Set the default value for Secure Settings: LOCATION_MODE
4227
4228 final SettingsState secureSettings = getSecureSettingsLocked(userId);
4229
4230 final Setting locationMode = secureSettings.getSettingLocked(
4231 Secure.LOCATION_MODE);
4232
4233 if (locationMode.isNull()) {
4234 final Setting locationProvidersAllowed = secureSettings.getSettingLocked(
4235 Secure.LOCATION_PROVIDERS_ALLOWED);
4236
Soonil Nagarkar4ee3ac22019-02-08 19:19:24 -08004237 final int defLocationMode;
4238 if (locationProvidersAllowed.isNull()) {
4239 defLocationMode = getContext().getResources().getInteger(
4240 R.integer.def_location_mode);
4241 } else {
4242 defLocationMode =
4243 !TextUtils.isEmpty(locationProvidersAllowed.getValue())
4244 ? Secure.LOCATION_MODE_ON
4245 : Secure.LOCATION_MODE_OFF;
4246 }
Soonil Nagarkar42da1b12019-01-22 11:29:27 -08004247 secureSettings.insertSettingLocked(
Soonil Nagarkar4ee3ac22019-02-08 19:19:24 -08004248 Secure.LOCATION_MODE, Integer.toString(defLocationMode),
Soonil Nagarkar42da1b12019-01-22 11:29:27 -08004249 null, true, SettingsState.SYSTEM_PACKAGE_NAME);
4250 }
4251
4252 currentVersion = 173;
4253 }
4254
Beverly4179f992019-02-08 11:34:16 -05004255 if (currentVersion == 173) {
4256 // Version 173: Set the default value for Secure Settings: NOTIFICATION_BUBBLES
4257
4258 final SettingsState secureSettings = getSecureSettingsLocked(userId);
4259
4260 final Setting bubblesSetting = secureSettings.getSettingLocked(
4261 Secure.NOTIFICATION_BUBBLES);
4262
4263 if (bubblesSetting.isNull()) {
4264 secureSettings.insertSettingLocked(Secure.NOTIFICATION_BUBBLES,
4265 getContext().getResources().getBoolean(
4266 R.bool.def_notification_bubbles) ? "1" : "0", null,
4267 true, SettingsState.SYSTEM_PACKAGE_NAME);
4268 }
4269
4270 currentVersion = 174;
4271 }
4272
Felipe Lemeff355092017-04-03 12:55:02 -07004273 // vXXX: Add new settings above this point.
4274
Dan Sandler71f85e92016-07-20 13:46:05 -04004275 if (currentVersion != newVersion) {
Svetoslav Ganov264c7a92016-08-24 17:31:14 -07004276 Slog.wtf("SettingsProvider", "warning: upgrading settings database to version "
Dan Sandler71f85e92016-07-20 13:46:05 -04004277 + newVersion + " left it at "
Stephen Chen5d0922f2017-03-27 10:28:04 -07004278 + currentVersion +
4279 " instead; this is probably a bug. Did you update SETTINGS_VERSION?",
4280 new Throwable());
Dan Sandler71f85e92016-07-20 13:46:05 -04004281 if (DEBUG) {
4282 throw new RuntimeException("db upgrade error");
4283 }
4284 }
4285
Jeff Brown503cffc2015-03-26 18:08:51 -07004286 // Return the current version.
4287 return currentVersion;
Brad Fitzpatrick547a96b2010-03-09 17:58:53 -08004288 }
4289 }
Svet Ganov13701552017-02-23 12:45:17 -08004290
Svetoslav Ganovf7654c52017-08-16 17:33:22 -07004291 private void ensureLegacyDefaultValueAndSystemSetUpdatedLocked(SettingsState settings,
4292 int userId) {
Svet Ganov13701552017-02-23 12:45:17 -08004293 List<String> names = settings.getSettingNamesLocked();
4294 final int nameCount = names.size();
4295 for (int i = 0; i < nameCount; i++) {
4296 String name = names.get(i);
4297 Setting setting = settings.getSettingLocked(name);
Svetoslav Ganovf7654c52017-08-16 17:33:22 -07004298
4299 // In the upgrade case we pretend the call is made from the app
4300 // that made the last change to the setting to properly determine
4301 // whether the call has been made by a system component.
4302 int callingUid = -1;
4303 try {
4304 callingUid = mPackageManager.getPackageUid(setting.getPackageName(), 0, userId);
4305 } catch (RemoteException e) {
4306 /* ignore - handled below */
4307 }
4308 if (callingUid < 0) {
4309 Slog.e(LOG_TAG, "Unknown package: " + setting.getPackageName());
4310 continue;
4311 }
4312 try {
4313 final boolean systemSet = SettingsState.isSystemPackage(getContext(),
4314 setting.getPackageName(), callingUid);
Svet Ganov13701552017-02-23 12:45:17 -08004315 if (systemSet) {
4316 settings.insertSettingLocked(name, setting.getValue(),
4317 setting.getTag(), true, setting.getPackageName());
Svetoslav Ganovf7654c52017-08-16 17:33:22 -07004318 } else if (setting.getDefaultValue() != null && setting.isDefaultFromSystem()) {
4319 // We had a bug where changes by non-system packages were marked
4320 // as system made and as a result set as the default. Therefore, if
4321 // the package changed the setting last is not a system one but the
4322 // setting is marked as its default coming from the system we clear
4323 // the default and clear the system set flag.
4324 settings.resetSettingDefaultValueLocked(name);
Svet Ganov13701552017-02-23 12:45:17 -08004325 }
Svetoslav Ganovf7654c52017-08-16 17:33:22 -07004326 } catch (IllegalStateException e) {
4327 // If the package goes over its quota during the upgrade, don't
4328 // crash but just log the error as the system does the upgrade.
4329 Slog.e(LOG_TAG, "Error upgrading setting: " + setting.getName(), e);
4330
Svet Ganov13701552017-02-23 12:45:17 -08004331 }
4332 }
4333 }
Brad Fitzpatrick1bd62bd2010-03-08 18:30:52 -08004334 }
The Android Open Source Project54b6cfa2008-10-21 07:00:00 -07004335}