blob: 445312168ebaf539b2af6333f6a845c7b225b5df [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(
972 Settings.Secure.LOCATION_PROVIDERS_ALLOWED, userId);
973 updateSecureSetting(Settings.Secure.LOCATION_PROVIDERS_ALLOWED,
Svetoslav Ganove080da92016-12-21 17:10:35 -0800974 setting != null ? setting.getValue() : null, null,
975 true, userId, true);
Svet Ganov53a441c2016-04-19 19:38:00 -0700976 }
977 } finally {
978 Binder.restoreCallingIdentity(identity);
979 }
980 }
Irina Dumitrescue3696872019-01-09 16:07:59 +0000981 if (changedRestrictions.contains(UserManager.DISALLOW_INSTALL_UNKNOWN_SOURCES)
982 || changedRestrictions.contains(
Irina Dumitrescu4638edd2018-09-05 14:08:33 +0100983 UserManager.DISALLOW_INSTALL_UNKNOWN_SOURCES_GLOBALLY)) {
Svet Ganov53a441c2016-04-19 19:38:00 -0700984 final long identity = Binder.clearCallingIdentity();
985 try {
986 synchronized (mLock) {
987 Setting setting = getGlobalSetting(Settings.Global.INSTALL_NON_MARKET_APPS);
Svetoslav Ganove080da92016-12-21 17:10:35 -0800988 String value = setting != null ? setting.getValue() : null;
Svet Ganov53a441c2016-04-19 19:38:00 -0700989 updateGlobalSetting(Settings.Global.INSTALL_NON_MARKET_APPS,
Svetoslav Ganove080da92016-12-21 17:10:35 -0800990 value, null, true, userId, true);
Svet Ganov53a441c2016-04-19 19:38:00 -0700991 }
992 } finally {
993 Binder.restoreCallingIdentity(identity);
994 }
995 }
Irina Dumitrescue3696872019-01-09 16:07:59 +0000996 if (changedRestrictions.contains(UserManager.DISALLOW_DEBUGGING_FEATURES)) {
Svet Ganov53a441c2016-04-19 19:38:00 -0700997 final long identity = Binder.clearCallingIdentity();
998 try {
999 synchronized (mLock) {
1000 Setting setting = getGlobalSetting(Settings.Global.ADB_ENABLED);
Svetoslav Ganove080da92016-12-21 17:10:35 -08001001 String value = setting != null ? setting.getValue() : null;
Svet Ganov53a441c2016-04-19 19:38:00 -07001002 updateGlobalSetting(Settings.Global.ADB_ENABLED,
Svetoslav Ganove080da92016-12-21 17:10:35 -08001003 value, null, true, userId, true);
Svet Ganov53a441c2016-04-19 19:38:00 -07001004 }
1005 } finally {
1006 Binder.restoreCallingIdentity(identity);
1007 }
1008 }
Irina Dumitrescue3696872019-01-09 16:07:59 +00001009 if (changedRestrictions.contains(UserManager.ENSURE_VERIFY_APPS)) {
Svet Ganov53a441c2016-04-19 19:38:00 -07001010 final long identity = Binder.clearCallingIdentity();
1011 try {
1012 synchronized (mLock) {
1013 Setting enable = getGlobalSetting(
1014 Settings.Global.PACKAGE_VERIFIER_ENABLE);
Svetoslav Ganove080da92016-12-21 17:10:35 -08001015 String enableValue = enable != null ? enable.getValue() : null;
Svet Ganov53a441c2016-04-19 19:38:00 -07001016 updateGlobalSetting(Settings.Global.PACKAGE_VERIFIER_ENABLE,
Svetoslav Ganove080da92016-12-21 17:10:35 -08001017 enableValue, null, true, userId, true);
Svet Ganov53a441c2016-04-19 19:38:00 -07001018 Setting include = getGlobalSetting(
1019 Settings.Global.PACKAGE_VERIFIER_INCLUDE_ADB);
Svetoslav Ganove080da92016-12-21 17:10:35 -08001020 String includeValue = include != null ? include.getValue() : null;
Svet Ganov53a441c2016-04-19 19:38:00 -07001021 updateGlobalSetting(Settings.Global.PACKAGE_VERIFIER_INCLUDE_ADB,
Svetoslav Ganove080da92016-12-21 17:10:35 -08001022 includeValue, null, true, userId, true);
Svet Ganov53a441c2016-04-19 19:38:00 -07001023 }
1024 } finally {
1025 Binder.restoreCallingIdentity(identity);
1026 }
1027 }
Irina Dumitrescue3696872019-01-09 16:07:59 +00001028 if (changedRestrictions.contains(UserManager.DISALLOW_CONFIG_MOBILE_NETWORKS)) {
Svet Ganov53a441c2016-04-19 19:38:00 -07001029 final long identity = Binder.clearCallingIdentity();
1030 try {
1031 synchronized (mLock) {
1032 Setting setting = getGlobalSetting(
1033 Settings.Global.PREFERRED_NETWORK_MODE);
Svetoslav Ganove080da92016-12-21 17:10:35 -08001034 String value = setting != null ? setting.getValue() : null;
Svet Ganov53a441c2016-04-19 19:38:00 -07001035 updateGlobalSetting(Settings.Global.PREFERRED_NETWORK_MODE,
Svetoslav Ganove080da92016-12-21 17:10:35 -08001036 value, null, true, userId, true);
Svet Ganov53a441c2016-04-19 19:38:00 -07001037 }
1038 } finally {
1039 Binder.restoreCallingIdentity(identity);
1040 }
1041 }
1042 });
1043 }
1044
Irina Dumitrescue3696872019-01-09 16:07:59 +00001045 private static Set<String> getRestrictionDiff(Bundle prevRestrictions, Bundle newRestrictions) {
1046 Set<String> restrictionNames = Sets.newArraySet();
1047 restrictionNames.addAll(prevRestrictions.keySet());
1048 restrictionNames.addAll(newRestrictions.keySet());
1049 Set<String> diff = Sets.newArraySet();
1050 for (String restrictionName : restrictionNames) {
1051 if (prevRestrictions.getBoolean(restrictionName) != newRestrictions.getBoolean(
1052 restrictionName)) {
1053 diff.add(restrictionName);
1054 }
1055 }
1056 return diff;
1057 }
1058
Matt Pape1b31a332018-10-17 09:58:28 -07001059 private Setting getConfigSetting(String name) {
1060 if (DEBUG) {
1061 Slog.v(LOG_TAG, "getConfigSetting(" + name + ")");
1062 }
1063
1064 // TODO(b/117663715): Ensure the caller can access the setting.
Stanislav Zholnin596437f2018-12-28 15:34:23 +00001065 // enforceReadPermission(READ_DEVICE_CONFIG);
Matt Pape1b31a332018-10-17 09:58:28 -07001066
1067 // Get the value.
1068 synchronized (mLock) {
1069 return mSettingsRegistry.getSettingLocked(SETTINGS_TYPE_CONFIG,
1070 UserHandle.USER_SYSTEM, name);
1071 }
1072 }
1073
Matt Papec1323dc2018-12-11 12:32:42 -08001074 private boolean insertConfigSetting(String name, String value, boolean makeDefault) {
Matt Pape1b31a332018-10-17 09:58:28 -07001075 if (DEBUG) {
1076 Slog.v(LOG_TAG, "insertConfigSetting(" + name + ", " + value + ", "
Matt Papec1323dc2018-12-11 12:32:42 -08001077 + makeDefault + ")");
Matt Pape1b31a332018-10-17 09:58:28 -07001078 }
Matt Papec1323dc2018-12-11 12:32:42 -08001079 return mutateConfigSetting(name, value, null, makeDefault,
1080 MUTATION_OPERATION_INSERT, 0);
Matt Pape1b31a332018-10-17 09:58:28 -07001081 }
1082
Matt Papec1323dc2018-12-11 12:32:42 -08001083 private boolean deleteConfigSetting(String name) {
Matt Pape6bfc62e2018-11-28 13:16:03 -08001084 if (DEBUG) {
Matt Papec1323dc2018-12-11 12:32:42 -08001085 Slog.v(LOG_TAG, "deleteConfigSetting(" + name + ")");
Matt Pape6bfc62e2018-11-28 13:16:03 -08001086 }
Matt Papec1323dc2018-12-11 12:32:42 -08001087 return mutateConfigSetting(name, null, null, false,
1088 MUTATION_OPERATION_DELETE, 0);
Matt Pape6bfc62e2018-11-28 13:16:03 -08001089 }
1090
Matt Papec1323dc2018-12-11 12:32:42 -08001091 private void resetConfigSetting(int mode, String prefix) {
Matt Pape1b31a332018-10-17 09:58:28 -07001092 if (DEBUG) {
Matt Papec1323dc2018-12-11 12:32:42 -08001093 Slog.v(LOG_TAG, "resetConfigSetting(" + mode + ", " + prefix + ")");
Matt Pape1b31a332018-10-17 09:58:28 -07001094 }
Matt Papec1323dc2018-12-11 12:32:42 -08001095 mutateConfigSetting(null, null, prefix, false,
1096 MUTATION_OPERATION_RESET, mode);
Matt Pape1b31a332018-10-17 09:58:28 -07001097 }
1098
Matt Pape6bfc62e2018-11-28 13:16:03 -08001099 private boolean mutateConfigSetting(String name, String value, String prefix,
Matt Papec1323dc2018-12-11 12:32:42 -08001100 boolean makeDefault, int operation, int mode) {
Stanislav Zholnin596437f2018-12-28 15:34:23 +00001101
1102 // TODO(b/117663715): Ensure the caller can access the setting.
1103 // enforceReadPermission(WRITE_DEVICE_CONFIG);
Matt Pape1b31a332018-10-17 09:58:28 -07001104
Matt Pape1b31a332018-10-17 09:58:28 -07001105 // Perform the mutation.
1106 synchronized (mLock) {
1107 switch (operation) {
1108 case MUTATION_OPERATION_INSERT: {
1109 return mSettingsRegistry.insertSettingLocked(SETTINGS_TYPE_CONFIG,
Matt Papec1323dc2018-12-11 12:32:42 -08001110 UserHandle.USER_SYSTEM, name, value, null, makeDefault, true,
Matt Pape7b1c6cd2019-01-04 08:10:41 -08001111 resolveCallingPackage(), false, null);
Matt Pape1b31a332018-10-17 09:58:28 -07001112 }
1113
Matt Pape6bfc62e2018-11-28 13:16:03 -08001114 case MUTATION_OPERATION_DELETE: {
1115 return mSettingsRegistry.deleteSettingLocked(SETTINGS_TYPE_CONFIG,
Matt Papec1323dc2018-12-11 12:32:42 -08001116 UserHandle.USER_SYSTEM, name, false, null);
Matt Pape6bfc62e2018-11-28 13:16:03 -08001117 }
1118
Matt Pape1b31a332018-10-17 09:58:28 -07001119 case MUTATION_OPERATION_RESET: {
1120 mSettingsRegistry.resetSettingsLocked(SETTINGS_TYPE_CONFIG,
Matt Pape7b1c6cd2019-01-04 08:10:41 -08001121 UserHandle.USER_SYSTEM, resolveCallingPackage(), mode, null, prefix);
Matt Pape1b31a332018-10-17 09:58:28 -07001122 } return true;
1123 }
1124 }
1125
1126 return false;
1127 }
1128
Matt Pape6bfc62e2018-11-28 13:16:03 -08001129 private Map<String, String> getAllConfigFlags(@Nullable String prefix) {
1130 if (DEBUG) {
1131 Slog.v(LOG_TAG, "getAllConfigFlags() for " + prefix);
1132 }
1133
1134 synchronized (mLock) {
1135 // Get the settings.
1136 SettingsState settingsState = mSettingsRegistry.getSettingsLocked(
1137 SETTINGS_TYPE_CONFIG, UserHandle.USER_SYSTEM);
1138
1139 List<String> names = getSettingsNamesLocked(SETTINGS_TYPE_CONFIG,
1140 UserHandle.USER_SYSTEM);
1141
1142 final int nameCount = names.size();
1143 Map<String, String> flagsToValues = new HashMap<>(names.size());
1144
1145 for (int i = 0; i < nameCount; i++) {
1146 String name = names.get(i);
1147 Setting setting = settingsState.getSettingLocked(name);
1148 if (prefix == null || setting.getName().startsWith(prefix)) {
1149 flagsToValues.put(setting.getName(), setting.getValue());
1150 }
1151 }
1152
1153 return flagsToValues;
1154 }
1155 }
1156
Svetoslav7ec28e82015-05-20 17:01:10 -07001157 private Cursor getAllGlobalSettings(String[] projection) {
Svetoslav683914b2015-01-15 14:22:26 -08001158 if (DEBUG) {
Svetoslav7ec28e82015-05-20 17:01:10 -07001159 Slog.v(LOG_TAG, "getAllGlobalSettings()");
Svetoslav683914b2015-01-15 14:22:26 -08001160 }
1161
Svetoslav7ec28e82015-05-20 17:01:10 -07001162 synchronized (mLock) {
1163 // Get the settings.
1164 SettingsState settingsState = mSettingsRegistry.getSettingsLocked(
Svet Ganov53a441c2016-04-19 19:38:00 -07001165 SETTINGS_TYPE_GLOBAL, UserHandle.USER_SYSTEM);
Svetoslav683914b2015-01-15 14:22:26 -08001166
Chad Brubaker97bccee2017-01-05 15:51:41 -08001167 List<String> names = getSettingsNamesLocked(SETTINGS_TYPE_GLOBAL,
1168 UserHandle.USER_SYSTEM);
Svetoslav683914b2015-01-15 14:22:26 -08001169
Svetoslav7ec28e82015-05-20 17:01:10 -07001170 final int nameCount = names.size();
Svetoslav683914b2015-01-15 14:22:26 -08001171
Svetoslav7ec28e82015-05-20 17:01:10 -07001172 String[] normalizedProjection = normalizeProjection(projection);
1173 MatrixCursor result = new MatrixCursor(normalizedProjection, nameCount);
Svetoslav683914b2015-01-15 14:22:26 -08001174
Svetoslav7ec28e82015-05-20 17:01:10 -07001175 // Anyone can get the global settings, so no security checks.
1176 for (int i = 0; i < nameCount; i++) {
1177 String name = names.get(i);
1178 Setting setting = settingsState.getSettingLocked(name);
1179 appendSettingToCursor(result, setting);
1180 }
1181
1182 return result;
Svetoslav683914b2015-01-15 14:22:26 -08001183 }
Svetoslav683914b2015-01-15 14:22:26 -08001184 }
1185
Svetoslav7ec28e82015-05-20 17:01:10 -07001186 private Setting getGlobalSetting(String name) {
Svetoslav683914b2015-01-15 14:22:26 -08001187 if (DEBUG) {
1188 Slog.v(LOG_TAG, "getGlobalSetting(" + name + ")");
1189 }
1190
Chad Brubakera6830e72017-04-28 17:34:36 -07001191 // Ensure the caller can access the setting.
1192 enforceSettingReadable(name, SETTINGS_TYPE_GLOBAL, UserHandle.getCallingUserId());
1193
Svetoslav683914b2015-01-15 14:22:26 -08001194 // Get the value.
Svetoslav7ec28e82015-05-20 17:01:10 -07001195 synchronized (mLock) {
Chad Brubakera6830e72017-04-28 17:34:36 -07001196 return mSettingsRegistry.getSettingLocked(SETTINGS_TYPE_GLOBAL,
Xiaohui Chen43765b72015-08-31 10:57:33 -07001197 UserHandle.USER_SYSTEM, name);
Svetoslav683914b2015-01-15 14:22:26 -08001198 }
Svetoslav683914b2015-01-15 14:22:26 -08001199 }
1200
Svetoslav Ganove080da92016-12-21 17:10:35 -08001201 private boolean updateGlobalSetting(String name, String value, String tag,
1202 boolean makeDefault, int requestingUserId, boolean forceNotify) {
Svetoslav683914b2015-01-15 14:22:26 -08001203 if (DEBUG) {
Svetoslav Ganove080da92016-12-21 17:10:35 -08001204 Slog.v(LOG_TAG, "updateGlobalSetting(" + name + ", " + value + ", "
1205 + ", " + tag + ", " + makeDefault + ", " + requestingUserId
1206 + ", " + forceNotify + ")");
Svetoslav683914b2015-01-15 14:22:26 -08001207 }
Svetoslav Ganove080da92016-12-21 17:10:35 -08001208 return mutateGlobalSetting(name, value, tag, makeDefault, requestingUserId,
1209 MUTATION_OPERATION_UPDATE, forceNotify, 0);
Svetoslav683914b2015-01-15 14:22:26 -08001210 }
1211
Svetoslav Ganove080da92016-12-21 17:10:35 -08001212 private boolean insertGlobalSetting(String name, String value, String tag,
1213 boolean makeDefault, int requestingUserId, boolean forceNotify) {
Svetoslav7ec28e82015-05-20 17:01:10 -07001214 if (DEBUG) {
Svetoslav Ganove080da92016-12-21 17:10:35 -08001215 Slog.v(LOG_TAG, "insertGlobalSetting(" + name + ", " + value + ", "
1216 + ", " + tag + ", " + makeDefault + ", " + requestingUserId
1217 + ", " + forceNotify + ")");
Svetoslav7ec28e82015-05-20 17:01:10 -07001218 }
Svetoslav Ganove080da92016-12-21 17:10:35 -08001219 return mutateGlobalSetting(name, value, tag, makeDefault, requestingUserId,
1220 MUTATION_OPERATION_INSERT, forceNotify, 0);
Svetoslav7ec28e82015-05-20 17:01:10 -07001221 }
1222
Svet Ganov53a441c2016-04-19 19:38:00 -07001223 private boolean deleteGlobalSetting(String name, int requestingUserId, boolean forceNotify) {
Svetoslav683914b2015-01-15 14:22:26 -08001224 if (DEBUG) {
Svetoslav Ganove080da92016-12-21 17:10:35 -08001225 Slog.v(LOG_TAG, "deleteGlobalSetting(" + name + ", " + requestingUserId
1226 + ", " + forceNotify + ")");
Svetoslav683914b2015-01-15 14:22:26 -08001227 }
Svetoslav Ganove080da92016-12-21 17:10:35 -08001228 return mutateGlobalSetting(name, null, null, false, requestingUserId,
1229 MUTATION_OPERATION_DELETE, forceNotify, 0);
Svetoslav683914b2015-01-15 14:22:26 -08001230 }
1231
Svetoslav Ganove080da92016-12-21 17:10:35 -08001232 private void resetGlobalSetting(int requestingUserId, int mode, String tag) {
1233 if (DEBUG) {
1234 Slog.v(LOG_TAG, "resetGlobalSetting(" + requestingUserId + ", "
1235 + mode + ", " + tag + ")");
1236 }
1237 mutateGlobalSetting(null, null, tag, false, requestingUserId,
1238 MUTATION_OPERATION_RESET, false, mode);
1239 }
1240
1241 private boolean mutateGlobalSetting(String name, String value, String tag,
1242 boolean makeDefault, int requestingUserId, int operation, boolean forceNotify,
1243 int mode) {
Svetoslav683914b2015-01-15 14:22:26 -08001244 // Make sure the caller can change the settings - treated as secure.
1245 enforceWritePermission(Manifest.permission.WRITE_SECURE_SETTINGS);
1246
Svetoslav683914b2015-01-15 14:22:26 -08001247 // Resolve the userId on whose behalf the call is made.
1248 final int callingUserId = resolveCallingUserIdEnforcingPermissionsLocked(requestingUserId);
1249
Makoto Onuki28da2e32015-11-20 11:30:44 -08001250 // If this is a setting that is currently restricted for this user, do not allow
1251 // unrestricting changes.
yuemingw1d13eae2018-01-30 17:27:54 +00001252 if (name != null && mUserManagerInternal.isSettingRestrictedForUser(
1253 name, callingUserId, value, Binder.getCallingUid())) {
Svetoslav683914b2015-01-15 14:22:26 -08001254 return false;
1255 }
1256
1257 // Perform the mutation.
Svetoslav7ec28e82015-05-20 17:01:10 -07001258 synchronized (mLock) {
1259 switch (operation) {
1260 case MUTATION_OPERATION_INSERT: {
Svetoslav Ganove080da92016-12-21 17:10:35 -08001261 return mSettingsRegistry.insertSettingLocked(SETTINGS_TYPE_GLOBAL,
1262 UserHandle.USER_SYSTEM, name, value, tag, makeDefault,
Svetoslav Ganov5fb405b2017-01-26 22:43:09 -08001263 getCallingPackage(), forceNotify, CRITICAL_GLOBAL_SETTINGS);
Svetoslav7ec28e82015-05-20 17:01:10 -07001264 }
Svetoslav683914b2015-01-15 14:22:26 -08001265
Svetoslav7ec28e82015-05-20 17:01:10 -07001266 case MUTATION_OPERATION_DELETE: {
Svet Ganov53a441c2016-04-19 19:38:00 -07001267 return mSettingsRegistry.deleteSettingLocked(SETTINGS_TYPE_GLOBAL,
Svetoslav Ganov5fb405b2017-01-26 22:43:09 -08001268 UserHandle.USER_SYSTEM, name, 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_UPDATE: {
Svetoslav Ganove080da92016-12-21 17:10:35 -08001272 return mSettingsRegistry.updateSettingLocked(SETTINGS_TYPE_GLOBAL,
1273 UserHandle.USER_SYSTEM, name, value, tag, makeDefault,
Svetoslav Ganov5fb405b2017-01-26 22:43:09 -08001274 getCallingPackage(), forceNotify, CRITICAL_GLOBAL_SETTINGS);
Svetoslav7ec28e82015-05-20 17:01:10 -07001275 }
Svetoslav Ganove080da92016-12-21 17:10:35 -08001276
1277 case MUTATION_OPERATION_RESET: {
1278 mSettingsRegistry.resetSettingsLocked(SETTINGS_TYPE_GLOBAL,
1279 UserHandle.USER_SYSTEM, getCallingPackage(), mode, tag);
1280 } return true;
Svetoslav683914b2015-01-15 14:22:26 -08001281 }
1282 }
1283
1284 return false;
1285 }
1286
Christopher Tateb218e762017-04-05 16:34:07 -07001287 private PackageInfo getCallingPackageInfo(int userId) {
1288 try {
1289 return mPackageManager.getPackageInfo(getCallingPackage(),
1290 PackageManager.GET_SIGNATURES, userId);
1291 } catch (RemoteException e) {
1292 throw new IllegalStateException("Package " + getCallingPackage() + " doesn't exist");
1293 }
1294 }
1295
Svetoslav7ec28e82015-05-20 17:01:10 -07001296 private Cursor getAllSecureSettings(int userId, String[] projection) {
Svetoslav683914b2015-01-15 14:22:26 -08001297 if (DEBUG) {
1298 Slog.v(LOG_TAG, "getAllSecureSettings(" + userId + ")");
1299 }
1300
1301 // Resolve the userId on whose behalf the call is made.
1302 final int callingUserId = resolveCallingUserIdEnforcingPermissionsLocked(userId);
1303
Christopher Tateb218e762017-04-05 16:34:07 -07001304 // The relevant "calling package" userId will be the owning userId for some
1305 // profiles, and we can't do the lookup inside our [lock held] loop, so work out
1306 // up front who the effective "new SSAID" user ID for that settings name will be.
1307 final int ssaidUserId = resolveOwningUserIdForSecureSettingLocked(callingUserId,
1308 Settings.Secure.ANDROID_ID);
1309 final PackageInfo ssaidCallingPkg = getCallingPackageInfo(ssaidUserId);
1310
Svetoslav7ec28e82015-05-20 17:01:10 -07001311 synchronized (mLock) {
Chad Brubaker97bccee2017-01-05 15:51:41 -08001312 List<String> names = getSettingsNamesLocked(SETTINGS_TYPE_SECURE, callingUserId);
Svetoslav683914b2015-01-15 14:22:26 -08001313
Svetoslav7ec28e82015-05-20 17:01:10 -07001314 final int nameCount = names.size();
Svetoslav683914b2015-01-15 14:22:26 -08001315
Svetoslav7ec28e82015-05-20 17:01:10 -07001316 String[] normalizedProjection = normalizeProjection(projection);
1317 MatrixCursor result = new MatrixCursor(normalizedProjection, nameCount);
Svetoslav683914b2015-01-15 14:22:26 -08001318
Svetoslav7ec28e82015-05-20 17:01:10 -07001319 for (int i = 0; i < nameCount; i++) {
1320 String name = names.get(i);
1321 // Determine the owning user as some profile settings are cloned from the parent.
1322 final int owningUserId = resolveOwningUserIdForSecureSettingLocked(callingUserId,
1323 name);
Svetoslav683914b2015-01-15 14:22:26 -08001324
Alex Klyubin1991f572017-03-03 14:08:36 -08001325 if (!isSecureSettingAccessible(name, callingUserId, owningUserId)) {
1326 // This caller is not permitted to access this setting. Pretend the setting
1327 // doesn't exist.
Svetoslav Ganov83a1f7f2016-04-27 13:50:49 -07001328 continue;
Svetoslav7ec28e82015-05-20 17:01:10 -07001329 }
Svetoslav683914b2015-01-15 14:22:26 -08001330
Mark Rathjen7599f132017-01-23 14:15:54 -08001331 // As of Android O, the SSAID is read from an app-specific entry in table
Mark Rathjend891f012017-01-19 04:10:37 +00001332 // SETTINGS_FILE_SSAID, unless accessed by a system process.
1333 final Setting setting;
1334 if (isNewSsaidSetting(name)) {
Christopher Tateb218e762017-04-05 16:34:07 -07001335 setting = getSsaidSettingLocked(ssaidCallingPkg, owningUserId);
Mark Rathjend891f012017-01-19 04:10:37 +00001336 } else {
1337 setting = mSettingsRegistry.getSettingLocked(SETTINGS_TYPE_SECURE, owningUserId,
1338 name);
1339 }
Svetoslav7ec28e82015-05-20 17:01:10 -07001340 appendSettingToCursor(result, setting);
Svetoslav683914b2015-01-15 14:22:26 -08001341 }
1342
Svetoslav7ec28e82015-05-20 17:01:10 -07001343 return result;
Svetoslav683914b2015-01-15 14:22:26 -08001344 }
Svetoslav683914b2015-01-15 14:22:26 -08001345 }
1346
Svetoslav7ec28e82015-05-20 17:01:10 -07001347 private Setting getSecureSetting(String name, int requestingUserId) {
Makoto Onuki0000d322017-11-28 16:31:47 -08001348 return getSecureSetting(name, requestingUserId, /*enableOverride=*/ false);
1349 }
1350
1351 private Setting getSecureSetting(String name, int requestingUserId, boolean enableOverride) {
Svetoslav683914b2015-01-15 14:22:26 -08001352 if (DEBUG) {
1353 Slog.v(LOG_TAG, "getSecureSetting(" + name + ", " + requestingUserId + ")");
1354 }
1355
1356 // Resolve the userId on whose behalf the call is made.
1357 final int callingUserId = resolveCallingUserIdEnforcingPermissionsLocked(requestingUserId);
1358
Chad Brubakera6830e72017-04-28 17:34:36 -07001359 // Ensure the caller can access the setting.
1360 enforceSettingReadable(name, SETTINGS_TYPE_SECURE, UserHandle.getCallingUserId());
1361
Svetoslav683914b2015-01-15 14:22:26 -08001362 // Determine the owning user as some profile settings are cloned from the parent.
1363 final int owningUserId = resolveOwningUserIdForSecureSettingLocked(callingUserId, name);
1364
Alex Klyubin1991f572017-03-03 14:08:36 -08001365 if (!isSecureSettingAccessible(name, callingUserId, owningUserId)) {
1366 // This caller is not permitted to access this setting. Pretend the setting doesn't
1367 // exist.
Dianne Hackborn32f40ee2016-10-20 15:54:14 -07001368 SettingsState settings = mSettingsRegistry.getSettingsLocked(SETTINGS_TYPE_SECURE,
1369 owningUserId);
1370 return settings != null ? settings.getNullSetting() : null;
Svetoslav683914b2015-01-15 14:22:26 -08001371 }
1372
Christopher Tateb218e762017-04-05 16:34:07 -07001373 // As of Android O, the SSAID is read from an app-specific entry in table
1374 // SETTINGS_FILE_SSAID, unless accessed by a system process.
1375 if (isNewSsaidSetting(name)) {
1376 PackageInfo callingPkg = getCallingPackageInfo(owningUserId);
1377 synchronized (mLock) {
1378 return getSsaidSettingLocked(callingPkg, owningUserId);
Mark Rathjend891f012017-01-19 04:10:37 +00001379 }
Christopher Tateb218e762017-04-05 16:34:07 -07001380 }
Makoto Onuki0000d322017-11-28 16:31:47 -08001381 if (enableOverride) {
1382 if (Secure.LOCATION_PROVIDERS_ALLOWED.equals(name)) {
1383 final Setting overridden = getLocationProvidersAllowedSetting(owningUserId);
1384 if (overridden != null) {
1385 return overridden;
1386 }
1387 }
1388 }
Mark Rathjend891f012017-01-19 04:10:37 +00001389
Christopher Tateb218e762017-04-05 16:34:07 -07001390 // Not the SSAID; do a straight lookup
1391 synchronized (mLock) {
Chad Brubakera6830e72017-04-28 17:34:36 -07001392 return mSettingsRegistry.getSettingLocked(SETTINGS_TYPE_SECURE,
Svetoslav7ec28e82015-05-20 17:01:10 -07001393 owningUserId, name);
1394 }
Svetoslav683914b2015-01-15 14:22:26 -08001395 }
1396
Mark Rathjend891f012017-01-19 04:10:37 +00001397 private boolean isNewSsaidSetting(String name) {
1398 return Settings.Secure.ANDROID_ID.equals(name)
1399 && UserHandle.getAppId(Binder.getCallingUid()) >= Process.FIRST_APPLICATION_UID;
1400 }
1401
Andreas Gampeb58893072018-09-05 16:52:31 -07001402 @GuardedBy("mLock")
Christopher Tateb218e762017-04-05 16:34:07 -07001403 private Setting getSsaidSettingLocked(PackageInfo callingPkg, int owningUserId) {
Mark Rathjend891f012017-01-19 04:10:37 +00001404 // Get uid of caller (key) used to store ssaid value
1405 String name = Integer.toString(
1406 UserHandle.getUid(owningUserId, UserHandle.getAppId(Binder.getCallingUid())));
1407
1408 if (DEBUG) {
1409 Slog.v(LOG_TAG, "getSsaidSettingLocked(" + name + "," + owningUserId + ")");
1410 }
1411
1412 // Retrieve the ssaid from the table if present.
1413 final Setting ssaid = mSettingsRegistry.getSettingLocked(SETTINGS_TYPE_SSAID, owningUserId,
1414 name);
Chad Brubaker0d277a72017-04-12 16:56:53 -07001415 // If the app is an Instant App use its stored SSAID instead of our own.
1416 final String instantSsaid;
1417 final long token = Binder.clearCallingIdentity();
1418 try {
1419 instantSsaid = mPackageManager.getInstantAppAndroidId(callingPkg.packageName,
1420 owningUserId);
1421 } catch (RemoteException e) {
1422 Slog.e(LOG_TAG, "Failed to get Instant App Android ID", e);
1423 return null;
1424 } finally {
1425 Binder.restoreCallingIdentity(token);
1426 }
Svet Ganov96c99462017-05-05 14:27:13 -07001427
1428 final SettingsState ssaidSettings = mSettingsRegistry.getSettingsLocked(
1429 SETTINGS_TYPE_SSAID, owningUserId);
1430
Chad Brubaker0d277a72017-04-12 16:56:53 -07001431 if (instantSsaid != null) {
1432 // Use the stored value if it is still valid.
1433 if (ssaid != null && instantSsaid.equals(ssaid.getValue())) {
Svet Ganov96c99462017-05-05 14:27:13 -07001434 return mascaradeSsaidSetting(ssaidSettings, ssaid);
Chad Brubaker0d277a72017-04-12 16:56:53 -07001435 }
1436 // The value has changed, update the stored value.
Chad Brubaker0d277a72017-04-12 16:56:53 -07001437 final boolean success = ssaidSettings.insertSettingLocked(name, instantSsaid, null,
1438 true, callingPkg.packageName);
1439 if (!success) {
1440 throw new IllegalStateException("Failed to update instant app android id");
1441 }
Svet Ganov96c99462017-05-05 14:27:13 -07001442 Setting setting = mSettingsRegistry.getSettingLocked(SETTINGS_TYPE_SSAID,
1443 owningUserId, name);
1444 return mascaradeSsaidSetting(ssaidSettings, setting);
Chad Brubaker0d277a72017-04-12 16:56:53 -07001445 }
Mark Rathjend891f012017-01-19 04:10:37 +00001446
1447 // Lazy initialize ssaid if not yet present in ssaid table.
Mark Rathjenea617592017-01-18 23:03:41 -08001448 if (ssaid == null || ssaid.isNull() || ssaid.getValue() == null) {
Svet Ganov96c99462017-05-05 14:27:13 -07001449 Setting setting = mSettingsRegistry.generateSsaidLocked(callingPkg, owningUserId);
1450 return mascaradeSsaidSetting(ssaidSettings, setting);
Mark Rathjend891f012017-01-19 04:10:37 +00001451 }
1452
Svet Ganov96c99462017-05-05 14:27:13 -07001453 return mascaradeSsaidSetting(ssaidSettings, ssaid);
1454 }
1455
1456 private Setting mascaradeSsaidSetting(SettingsState settingsState, Setting ssaidSetting) {
1457 // SSAID settings are located in a dedicated table for internal bookkeeping
1458 // but for the world they reside in the secure table, so adjust the key here.
1459 // We have a special name when looking it up but want the world to see it as
1460 // "android_id".
1461 if (ssaidSetting != null) {
1462 return settingsState.new Setting(ssaidSetting) {
1463 @Override
1464 public int getKey() {
1465 final int userId = getUserIdFromKey(super.getKey());
1466 return makeKey(SETTINGS_TYPE_SECURE, userId);
1467 }
1468
1469 @Override
1470 public String getName() {
1471 return Settings.Secure.ANDROID_ID;
1472 }
1473 };
1474 }
1475 return null;
Mark Rathjend891f012017-01-19 04:10:37 +00001476 }
1477
Makoto Onuki0000d322017-11-28 16:31:47 -08001478 private Setting getLocationProvidersAllowedSetting(int owningUserId) {
1479 synchronized (mLock) {
1480 final Setting setting = getGlobalSetting(
1481 Global.LOCATION_GLOBAL_KILL_SWITCH);
1482 if (!"1".equals(setting.getValue())) {
1483 return null;
1484 }
1485 // Global kill-switch is enabled. Return an empty value.
1486 final SettingsState settingsState = mSettingsRegistry.getSettingsLocked(
1487 SETTINGS_TYPE_SECURE, owningUserId);
1488 return settingsState.new Setting(
1489 Secure.LOCATION_PROVIDERS_ALLOWED,
1490 "", // value
1491 "", // tag
1492 "", // default value
1493 "", // package name
1494 false, // from system
1495 "0" // id
1496 ) {
1497 @Override
1498 public boolean update(String value, boolean setDefault, String packageName,
1499 String tag, boolean forceNonSystemPackage) {
1500 Slog.wtf(LOG_TAG, "update shoudln't be called on this instance.");
1501 return false;
1502 }
1503 };
1504 }
1505 }
1506
Svetoslav Ganove080da92016-12-21 17:10:35 -08001507 private boolean insertSecureSetting(String name, String value, String tag,
1508 boolean makeDefault, int requestingUserId, boolean forceNotify) {
Svetoslav683914b2015-01-15 14:22:26 -08001509 if (DEBUG) {
Svetoslav7ec28e82015-05-20 17:01:10 -07001510 Slog.v(LOG_TAG, "insertSecureSetting(" + name + ", " + value + ", "
Svetoslav Ganove080da92016-12-21 17:10:35 -08001511 + ", " + tag + ", " + makeDefault + ", " + requestingUserId
1512 + ", " + forceNotify + ")");
Svetoslav683914b2015-01-15 14:22:26 -08001513 }
Svetoslav Ganove080da92016-12-21 17:10:35 -08001514 return mutateSecureSetting(name, value, tag, makeDefault, requestingUserId,
1515 MUTATION_OPERATION_INSERT, forceNotify, 0);
Svetoslav683914b2015-01-15 14:22:26 -08001516 }
1517
Svet Ganov53a441c2016-04-19 19:38:00 -07001518 private boolean deleteSecureSetting(String name, int requestingUserId, boolean forceNotify) {
Svetoslav683914b2015-01-15 14:22:26 -08001519 if (DEBUG) {
Svetoslav Ganove080da92016-12-21 17:10:35 -08001520 Slog.v(LOG_TAG, "deleteSecureSetting(" + name + ", " + requestingUserId
1521 + ", " + forceNotify + ")");
Svetoslav683914b2015-01-15 14:22:26 -08001522 }
1523
Svetoslav Ganove080da92016-12-21 17:10:35 -08001524 return mutateSecureSetting(name, null, null, false, requestingUserId,
1525 MUTATION_OPERATION_DELETE, forceNotify, 0);
Svetoslav683914b2015-01-15 14:22:26 -08001526 }
1527
Svetoslav Ganove080da92016-12-21 17:10:35 -08001528 private boolean updateSecureSetting(String name, String value, String tag,
1529 boolean makeDefault, int requestingUserId, boolean forceNotify) {
Svetoslav683914b2015-01-15 14:22:26 -08001530 if (DEBUG) {
Svetoslav7ec28e82015-05-20 17:01:10 -07001531 Slog.v(LOG_TAG, "updateSecureSetting(" + name + ", " + value + ", "
Svetoslav Ganove080da92016-12-21 17:10:35 -08001532 + ", " + tag + ", " + makeDefault + ", " + requestingUserId
1533 + ", " + forceNotify +")");
Svetoslav683914b2015-01-15 14:22:26 -08001534 }
1535
Svetoslav Ganove080da92016-12-21 17:10:35 -08001536 return mutateSecureSetting(name, value, tag, makeDefault, requestingUserId,
1537 MUTATION_OPERATION_UPDATE, forceNotify, 0);
Svetoslav683914b2015-01-15 14:22:26 -08001538 }
1539
Svetoslav Ganove080da92016-12-21 17:10:35 -08001540 private void resetSecureSetting(int requestingUserId, int mode, String tag) {
1541 if (DEBUG) {
1542 Slog.v(LOG_TAG, "resetSecureSetting(" + requestingUserId + ", "
1543 + mode + ", " + tag + ")");
1544 }
1545
1546 mutateSecureSetting(null, null, tag, false, requestingUserId,
1547 MUTATION_OPERATION_RESET, false, mode);
1548 }
1549
1550 private boolean mutateSecureSetting(String name, String value, String tag,
1551 boolean makeDefault, int requestingUserId, int operation, boolean forceNotify,
1552 int mode) {
Svetoslav683914b2015-01-15 14:22:26 -08001553 // Make sure the caller can change the settings.
1554 enforceWritePermission(Manifest.permission.WRITE_SECURE_SETTINGS);
1555
Svetoslav683914b2015-01-15 14:22:26 -08001556 // Resolve the userId on whose behalf the call is made.
1557 final int callingUserId = resolveCallingUserIdEnforcingPermissionsLocked(requestingUserId);
1558
Makoto Onuki28da2e32015-11-20 11:30:44 -08001559 // If this is a setting that is currently restricted for this user, do not allow
1560 // unrestricting changes.
yuemingw1d13eae2018-01-30 17:27:54 +00001561 if (name != null && mUserManagerInternal.isSettingRestrictedForUser(
1562 name, callingUserId, value, Binder.getCallingUid())) {
Svetoslav683914b2015-01-15 14:22:26 -08001563 return false;
1564 }
1565
1566 // Determine the owning user as some profile settings are cloned from the parent.
1567 final int owningUserId = resolveOwningUserIdForSecureSettingLocked(callingUserId, name);
1568
1569 // Only the owning user can change the setting.
1570 if (owningUserId != callingUserId) {
1571 return false;
1572 }
1573
1574 // Special cases for location providers (sigh).
1575 if (Settings.Secure.LOCATION_PROVIDERS_ALLOWED.equals(name)) {
Svetoslav Ganove080da92016-12-21 17:10:35 -08001576 return updateLocationProvidersAllowedLocked(value, tag, owningUserId, makeDefault,
1577 forceNotify);
Svetoslav683914b2015-01-15 14:22:26 -08001578 }
1579
1580 // Mutate the value.
Svetoslav7ec28e82015-05-20 17:01:10 -07001581 synchronized (mLock) {
1582 switch (operation) {
1583 case MUTATION_OPERATION_INSERT: {
Svet Ganov53a441c2016-04-19 19:38:00 -07001584 return mSettingsRegistry.insertSettingLocked(SETTINGS_TYPE_SECURE,
Svetoslav Ganove080da92016-12-21 17:10:35 -08001585 owningUserId, name, value, tag, makeDefault,
Svetoslav Ganov5fb405b2017-01-26 22:43:09 -08001586 getCallingPackage(), forceNotify, CRITICAL_SECURE_SETTINGS);
Svetoslav7ec28e82015-05-20 17:01:10 -07001587 }
Svetoslav683914b2015-01-15 14:22:26 -08001588
Svetoslav7ec28e82015-05-20 17:01:10 -07001589 case MUTATION_OPERATION_DELETE: {
Svet Ganov53a441c2016-04-19 19:38:00 -07001590 return mSettingsRegistry.deleteSettingLocked(SETTINGS_TYPE_SECURE,
Svetoslav Ganov5fb405b2017-01-26 22:43:09 -08001591 owningUserId, name, 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_UPDATE: {
Svet Ganov53a441c2016-04-19 19:38:00 -07001595 return mSettingsRegistry.updateSettingLocked(SETTINGS_TYPE_SECURE,
Svetoslav Ganove080da92016-12-21 17:10:35 -08001596 owningUserId, name, value, tag, makeDefault,
Svetoslav Ganov5fb405b2017-01-26 22:43:09 -08001597 getCallingPackage(), forceNotify, CRITICAL_SECURE_SETTINGS);
Svetoslav7ec28e82015-05-20 17:01:10 -07001598 }
Svetoslav Ganove080da92016-12-21 17:10:35 -08001599
1600 case MUTATION_OPERATION_RESET: {
1601 mSettingsRegistry.resetSettingsLocked(SETTINGS_TYPE_SECURE,
1602 UserHandle.USER_SYSTEM, getCallingPackage(), mode, tag);
1603 } return true;
Svetoslav683914b2015-01-15 14:22:26 -08001604 }
1605 }
1606
1607 return false;
1608 }
1609
Svetoslav7ec28e82015-05-20 17:01:10 -07001610 private Cursor getAllSystemSettings(int userId, String[] projection) {
Svetoslav683914b2015-01-15 14:22:26 -08001611 if (DEBUG) {
Svetoslav7ec28e82015-05-20 17:01:10 -07001612 Slog.v(LOG_TAG, "getAllSecureSystem(" + userId + ")");
Svetoslav683914b2015-01-15 14:22:26 -08001613 }
1614
1615 // Resolve the userId on whose behalf the call is made.
1616 final int callingUserId = resolveCallingUserIdEnforcingPermissionsLocked(userId);
1617
Svetoslav7ec28e82015-05-20 17:01:10 -07001618 synchronized (mLock) {
Chad Brubaker97bccee2017-01-05 15:51:41 -08001619 List<String> names = getSettingsNamesLocked(SETTINGS_TYPE_SYSTEM, callingUserId);
Svetoslav683914b2015-01-15 14:22:26 -08001620
Svetoslav7ec28e82015-05-20 17:01:10 -07001621 final int nameCount = names.size();
Svetoslav683914b2015-01-15 14:22:26 -08001622
Svetoslav7ec28e82015-05-20 17:01:10 -07001623 String[] normalizedProjection = normalizeProjection(projection);
1624 MatrixCursor result = new MatrixCursor(normalizedProjection, nameCount);
Svetoslav683914b2015-01-15 14:22:26 -08001625
Svetoslav7ec28e82015-05-20 17:01:10 -07001626 for (int i = 0; i < nameCount; i++) {
1627 String name = names.get(i);
Svetoslav683914b2015-01-15 14:22:26 -08001628
Svetoslav7ec28e82015-05-20 17:01:10 -07001629 // Determine the owning user as some profile settings are cloned from the parent.
1630 final int owningUserId = resolveOwningUserIdForSystemSettingLocked(callingUserId,
1631 name);
Svetoslav683914b2015-01-15 14:22:26 -08001632
Svetoslav7ec28e82015-05-20 17:01:10 -07001633 Setting setting = mSettingsRegistry.getSettingLocked(
Svet Ganov53a441c2016-04-19 19:38:00 -07001634 SETTINGS_TYPE_SYSTEM, owningUserId, name);
Svetoslav7ec28e82015-05-20 17:01:10 -07001635 appendSettingToCursor(result, setting);
1636 }
1637
1638 return result;
Svetoslav683914b2015-01-15 14:22:26 -08001639 }
Svetoslav683914b2015-01-15 14:22:26 -08001640 }
1641
Svetoslav7ec28e82015-05-20 17:01:10 -07001642 private Setting getSystemSetting(String name, int requestingUserId) {
Svetoslav683914b2015-01-15 14:22:26 -08001643 if (DEBUG) {
1644 Slog.v(LOG_TAG, "getSystemSetting(" + name + ", " + requestingUserId + ")");
1645 }
1646
1647 // Resolve the userId on whose behalf the call is made.
1648 final int callingUserId = resolveCallingUserIdEnforcingPermissionsLocked(requestingUserId);
1649
Chad Brubakera6830e72017-04-28 17:34:36 -07001650 // Ensure the caller can access the setting.
1651 enforceSettingReadable(name, SETTINGS_TYPE_SYSTEM, UserHandle.getCallingUserId());
Chad Brubaker97bccee2017-01-05 15:51:41 -08001652
Svetoslav683914b2015-01-15 14:22:26 -08001653 // Determine the owning user as some profile settings are cloned from the parent.
1654 final int owningUserId = resolveOwningUserIdForSystemSettingLocked(callingUserId, name);
1655
1656 // Get the value.
Svetoslav7ec28e82015-05-20 17:01:10 -07001657 synchronized (mLock) {
Chad Brubakera6830e72017-04-28 17:34:36 -07001658 return mSettingsRegistry.getSettingLocked(SETTINGS_TYPE_SYSTEM, owningUserId, name);
Svetoslav7ec28e82015-05-20 17:01:10 -07001659 }
Svetoslav683914b2015-01-15 14:22:26 -08001660 }
1661
Svetoslav7ec28e82015-05-20 17:01:10 -07001662 private boolean insertSystemSetting(String name, String value, int requestingUserId) {
Svetoslav683914b2015-01-15 14:22:26 -08001663 if (DEBUG) {
Svetoslav7ec28e82015-05-20 17:01:10 -07001664 Slog.v(LOG_TAG, "insertSystemSetting(" + name + ", " + value + ", "
Svetoslav683914b2015-01-15 14:22:26 -08001665 + requestingUserId + ")");
1666 }
1667
Svetoslav7ec28e82015-05-20 17:01:10 -07001668 return mutateSystemSetting(name, value, requestingUserId, MUTATION_OPERATION_INSERT);
Svetoslav683914b2015-01-15 14:22:26 -08001669 }
1670
Svetoslav7ec28e82015-05-20 17:01:10 -07001671 private boolean deleteSystemSetting(String name, int requestingUserId) {
Svetoslav683914b2015-01-15 14:22:26 -08001672 if (DEBUG) {
Svetoslav7ec28e82015-05-20 17:01:10 -07001673 Slog.v(LOG_TAG, "deleteSystemSetting(" + name + ", " + requestingUserId + ")");
Svetoslav683914b2015-01-15 14:22:26 -08001674 }
1675
Svetoslav7ec28e82015-05-20 17:01:10 -07001676 return mutateSystemSetting(name, null, requestingUserId, MUTATION_OPERATION_DELETE);
Svetoslav683914b2015-01-15 14:22:26 -08001677 }
1678
Svetoslav7ec28e82015-05-20 17:01:10 -07001679 private boolean updateSystemSetting(String name, String value, int requestingUserId) {
Svetoslav683914b2015-01-15 14:22:26 -08001680 if (DEBUG) {
Svetoslav7ec28e82015-05-20 17:01:10 -07001681 Slog.v(LOG_TAG, "updateSystemSetting(" + name + ", " + value + ", "
Svetoslav683914b2015-01-15 14:22:26 -08001682 + requestingUserId + ")");
1683 }
1684
Svetoslav7ec28e82015-05-20 17:01:10 -07001685 return mutateSystemSetting(name, value, requestingUserId, MUTATION_OPERATION_UPDATE);
Svetoslav683914b2015-01-15 14:22:26 -08001686 }
1687
Svetoslav7ec28e82015-05-20 17:01:10 -07001688 private boolean mutateSystemSetting(String name, String value, int runAsUserId,
Svetoslav683914b2015-01-15 14:22:26 -08001689 int operation) {
Billy Lau6ad2d662015-07-18 00:26:58 +01001690 if (!hasWriteSecureSettingsPermission()) {
1691 // If the caller doesn't hold WRITE_SECURE_SETTINGS, we verify whether this
1692 // operation is allowed for the calling package through appops.
1693 if (!Settings.checkAndNoteWriteSettingsOperation(getContext(),
1694 Binder.getCallingUid(), getCallingPackage(), true)) {
1695 return false;
1696 }
Svetoslav683914b2015-01-15 14:22:26 -08001697 }
1698
Svetoslav683914b2015-01-15 14:22:26 -08001699 // Resolve the userId on whose behalf the call is made.
1700 final int callingUserId = resolveCallingUserIdEnforcingPermissionsLocked(runAsUserId);
1701
yuemingw1d13eae2018-01-30 17:27:54 +00001702 if (name != null && mUserManagerInternal.isSettingRestrictedForUser(
1703 name, callingUserId, value, Binder.getCallingUid())) {
1704 return false;
1705 }
1706
Svetoslavd8d25e02015-11-20 13:09:26 -08001707 // Enforce what the calling package can mutate the system settings.
1708 enforceRestrictedSystemSettingsMutationForCallingPackage(operation, name, callingUserId);
1709
Svetoslav683914b2015-01-15 14:22:26 -08001710 // Determine the owning user as some profile settings are cloned from the parent.
1711 final int owningUserId = resolveOwningUserIdForSystemSettingLocked(callingUserId, name);
1712
1713 // Only the owning user id can change the setting.
1714 if (owningUserId != callingUserId) {
1715 return false;
1716 }
1717
Jeff Sharkey413573a2016-02-22 17:52:45 -07001718 // Invalidate any relevant cache files
1719 String cacheName = null;
1720 if (Settings.System.RINGTONE.equals(name)) {
1721 cacheName = Settings.System.RINGTONE_CACHE;
1722 } else if (Settings.System.NOTIFICATION_SOUND.equals(name)) {
1723 cacheName = Settings.System.NOTIFICATION_SOUND_CACHE;
1724 } else if (Settings.System.ALARM_ALERT.equals(name)) {
1725 cacheName = Settings.System.ALARM_ALERT_CACHE;
1726 }
1727 if (cacheName != null) {
1728 final File cacheFile = new File(
Andre Lago3fa139c2016-08-04 13:53:44 +01001729 getRingtoneCacheDir(owningUserId), cacheName);
Jeff Sharkey413573a2016-02-22 17:52:45 -07001730 cacheFile.delete();
1731 }
1732
Svetoslav683914b2015-01-15 14:22:26 -08001733 // Mutate the value.
Svetoslav7ec28e82015-05-20 17:01:10 -07001734 synchronized (mLock) {
1735 switch (operation) {
1736 case MUTATION_OPERATION_INSERT: {
1737 validateSystemSettingValue(name, value);
Svet Ganov53a441c2016-04-19 19:38:00 -07001738 return mSettingsRegistry.insertSettingLocked(SETTINGS_TYPE_SYSTEM,
Svetoslav Ganov5fb405b2017-01-26 22:43:09 -08001739 owningUserId, name, value, null, false, getCallingPackage(),
1740 false, null);
Svetoslav7ec28e82015-05-20 17:01:10 -07001741 }
1742
1743 case MUTATION_OPERATION_DELETE: {
Svet Ganov53a441c2016-04-19 19:38:00 -07001744 return mSettingsRegistry.deleteSettingLocked(SETTINGS_TYPE_SYSTEM,
Svetoslav Ganov5fb405b2017-01-26 22:43:09 -08001745 owningUserId, name, false, null);
Svetoslav7ec28e82015-05-20 17:01:10 -07001746 }
1747
1748 case MUTATION_OPERATION_UPDATE: {
1749 validateSystemSettingValue(name, value);
Svet Ganov53a441c2016-04-19 19:38:00 -07001750 return mSettingsRegistry.updateSettingLocked(SETTINGS_TYPE_SYSTEM,
Svetoslav Ganov5fb405b2017-01-26 22:43:09 -08001751 owningUserId, name, value, null, false, getCallingPackage(),
1752 false, null);
Svetoslav7ec28e82015-05-20 17:01:10 -07001753 }
Svetoslav683914b2015-01-15 14:22:26 -08001754 }
1755
Svetoslav7ec28e82015-05-20 17:01:10 -07001756 return false;
Svetoslav683914b2015-01-15 14:22:26 -08001757 }
Svetoslav683914b2015-01-15 14:22:26 -08001758 }
1759
Billy Lau6ad2d662015-07-18 00:26:58 +01001760 private boolean hasWriteSecureSettingsPermission() {
Svetoslavf41334b2015-06-23 12:06:03 -07001761 // Write secure settings is a more protected permission. If caller has it we are good.
1762 if (getContext().checkCallingOrSelfPermission(Manifest.permission.WRITE_SECURE_SETTINGS)
1763 == PackageManager.PERMISSION_GRANTED) {
1764 return true;
1765 }
1766
Svetoslavf41334b2015-06-23 12:06:03 -07001767 return false;
1768 }
1769
Svetoslav683914b2015-01-15 14:22:26 -08001770 private void validateSystemSettingValue(String name, String value) {
Michal Karpinski2c37b082018-01-18 16:14:27 +00001771 SettingsValidators.Validator validator = Settings.System.VALIDATORS.get(name);
Svetoslav683914b2015-01-15 14:22:26 -08001772 if (validator != null && !validator.validate(value)) {
1773 throw new IllegalArgumentException("Invalid value: " + value
1774 + " for setting: " + name);
1775 }
1776 }
1777
Alex Klyubin1991f572017-03-03 14:08:36 -08001778 /**
1779 * Returns {@code true} if the specified secure setting should be accessible to the caller.
1780 */
1781 private boolean isSecureSettingAccessible(String name, int callingUserId,
1782 int owningUserId) {
1783 // Special case for location (sigh).
1784 // This check is not inside the name-based checks below because this method performs checks
1785 // only if the calling user ID is not the same as the owning user ID.
1786 if (isLocationProvidersAllowedRestricted(name, callingUserId, owningUserId)) {
1787 return false;
1788 }
1789
1790 switch (name) {
1791 case "bluetooth_address":
1792 // BluetoothManagerService for some reason stores the Android's Bluetooth MAC
1793 // address in this secure setting. Secure settings can normally be read by any app,
1794 // which thus enables them to bypass the recently introduced restrictions on access
1795 // to device identifiers.
1796 // To mitigate this we make this setting available only to callers privileged to see
1797 // this device's MAC addresses, same as through public API
1798 // BluetoothAdapter.getAddress() (see BluetoothManagerService for details).
1799 return getContext().checkCallingOrSelfPermission(
1800 Manifest.permission.LOCAL_MAC_ADDRESS) == PackageManager.PERMISSION_GRANTED;
1801 default:
1802 return true;
1803 }
1804 }
1805
Svetoslav683914b2015-01-15 14:22:26 -08001806 private boolean isLocationProvidersAllowedRestricted(String name, int callingUserId,
1807 int owningUserId) {
1808 // Optimization - location providers are restricted only for managed profiles.
1809 if (callingUserId == owningUserId) {
1810 return false;
1811 }
1812 if (Settings.Secure.LOCATION_PROVIDERS_ALLOWED.equals(name)
1813 && mUserManager.hasUserRestriction(UserManager.DISALLOW_SHARE_LOCATION,
1814 new UserHandle(callingUserId))) {
1815 return true;
1816 }
1817 return false;
1818 }
1819
Svetoslav683914b2015-01-15 14:22:26 -08001820 private int resolveOwningUserIdForSecureSettingLocked(int userId, String setting) {
1821 return resolveOwningUserIdLocked(userId, sSecureCloneToManagedSettings, setting);
1822 }
1823
1824 private int resolveOwningUserIdForSystemSettingLocked(int userId, String setting) {
Andre Lago3fa139c2016-08-04 13:53:44 +01001825 final int parentId;
1826 // Resolves dependency if setting has a dependency and the calling user has a parent
1827 if (sSystemCloneFromParentOnDependency.containsKey(setting)
1828 && (parentId = getGroupParentLocked(userId)) != userId) {
1829 // The setting has a dependency and the profile has a parent
1830 String dependency = sSystemCloneFromParentOnDependency.get(setting);
Chad Brubaker97bccee2017-01-05 15:51:41 -08001831 // Lookup the dependency setting as ourselves, some callers may not have access to it.
1832 final long token = Binder.clearCallingIdentity();
1833 try {
1834 Setting settingObj = getSecureSetting(dependency, userId);
1835 if (settingObj != null && settingObj.getValue().equals("1")) {
1836 return parentId;
1837 }
1838 } finally {
1839 Binder.restoreCallingIdentity(token);
Andre Lago3fa139c2016-08-04 13:53:44 +01001840 }
1841 }
Svetoslav683914b2015-01-15 14:22:26 -08001842 return resolveOwningUserIdLocked(userId, sSystemCloneToManagedSettings, setting);
1843 }
1844
1845 private int resolveOwningUserIdLocked(int userId, Set<String> keys, String name) {
1846 final int parentId = getGroupParentLocked(userId);
1847 if (parentId != userId && keys.contains(name)) {
1848 return parentId;
1849 }
1850 return userId;
1851 }
1852
Svetoslavf41334b2015-06-23 12:06:03 -07001853 private void enforceRestrictedSystemSettingsMutationForCallingPackage(int operation,
Xiaohui Chen43765b72015-08-31 10:57:33 -07001854 String name, int userId) {
Svetoslav683914b2015-01-15 14:22:26 -08001855 // System/root/shell can mutate whatever secure settings they want.
1856 final int callingUid = Binder.getCallingUid();
Svetoslav Ganove080da92016-12-21 17:10:35 -08001857 final int appId = UserHandle.getAppId(callingUid);
1858 if (appId == android.os.Process.SYSTEM_UID
1859 || appId == Process.SHELL_UID
1860 || appId == Process.ROOT_UID) {
Svetoslav683914b2015-01-15 14:22:26 -08001861 return;
1862 }
1863
1864 switch (operation) {
1865 case MUTATION_OPERATION_INSERT:
1866 // Insert updates.
1867 case MUTATION_OPERATION_UPDATE: {
1868 if (Settings.System.PUBLIC_SETTINGS.contains(name)) {
1869 return;
1870 }
1871
1872 // The calling package is already verified.
Xiaohui Chen43765b72015-08-31 10:57:33 -07001873 PackageInfo packageInfo = getCallingPackageInfoOrThrow(userId);
Svetoslav683914b2015-01-15 14:22:26 -08001874
1875 // Privileged apps can do whatever they want.
1876 if ((packageInfo.applicationInfo.privateFlags
1877 & ApplicationInfo.PRIVATE_FLAG_PRIVILEGED) != 0) {
1878 return;
1879 }
1880
1881 warnOrThrowForUndesiredSecureSettingsMutationForTargetSdk(
1882 packageInfo.applicationInfo.targetSdkVersion, name);
1883 } break;
1884
1885 case MUTATION_OPERATION_DELETE: {
1886 if (Settings.System.PUBLIC_SETTINGS.contains(name)
1887 || Settings.System.PRIVATE_SETTINGS.contains(name)) {
1888 throw new IllegalArgumentException("You cannot delete system defined"
1889 + " secure settings.");
1890 }
1891
1892 // The calling package is already verified.
Xiaohui Chen43765b72015-08-31 10:57:33 -07001893 PackageInfo packageInfo = getCallingPackageInfoOrThrow(userId);
Svetoslav683914b2015-01-15 14:22:26 -08001894
1895 // Privileged apps can do whatever they want.
1896 if ((packageInfo.applicationInfo.privateFlags &
1897 ApplicationInfo.PRIVATE_FLAG_PRIVILEGED) != 0) {
1898 return;
1899 }
1900
1901 warnOrThrowForUndesiredSecureSettingsMutationForTargetSdk(
1902 packageInfo.applicationInfo.targetSdkVersion, name);
1903 } break;
1904 }
1905 }
1906
Todd Kennedybe0b8892017-02-15 14:13:52 -08001907 private Set<String> getInstantAppAccessibleSettings(int settingsType) {
Chad Brubaker97bccee2017-01-05 15:51:41 -08001908 switch (settingsType) {
1909 case SETTINGS_TYPE_GLOBAL:
Todd Kennedybe0b8892017-02-15 14:13:52 -08001910 return Settings.Global.INSTANT_APP_SETTINGS;
Chad Brubaker97bccee2017-01-05 15:51:41 -08001911 case SETTINGS_TYPE_SECURE:
Todd Kennedybe0b8892017-02-15 14:13:52 -08001912 return Settings.Secure.INSTANT_APP_SETTINGS;
Chad Brubaker97bccee2017-01-05 15:51:41 -08001913 case SETTINGS_TYPE_SYSTEM:
Todd Kennedybe0b8892017-02-15 14:13:52 -08001914 return Settings.System.INSTANT_APP_SETTINGS;
Chad Brubaker97bccee2017-01-05 15:51:41 -08001915 default:
1916 throw new IllegalArgumentException("Invalid settings type: " + settingsType);
1917 }
1918 }
1919
Chad Brubaker20e0dc32017-04-28 18:24:55 -07001920 private Set<String> getOverlayInstantAppAccessibleSettings(int settingsType) {
1921 switch (settingsType) {
1922 case SETTINGS_TYPE_GLOBAL:
1923 return OVERLAY_ALLOWED_GLOBAL_INSTANT_APP_SETTINGS;
1924 case SETTINGS_TYPE_SYSTEM:
1925 return OVERLAY_ALLOWED_SYSTEM_INSTANT_APP_SETTINGS;
1926 case SETTINGS_TYPE_SECURE:
1927 return OVERLAY_ALLOWED_SECURE_INSTANT_APP_SETTINGS;
1928 default:
1929 throw new IllegalArgumentException("Invalid settings type: " + settingsType);
1930 }
1931 }
1932
Andreas Gampeb58893072018-09-05 16:52:31 -07001933 @GuardedBy("mLock")
Chad Brubaker97bccee2017-01-05 15:51:41 -08001934 private List<String> getSettingsNamesLocked(int settingsType, int userId) {
Chad Brubakerb6108d62017-12-23 20:06:44 -08001935 // Don't enforce the instant app whitelist for now -- its too prone to unintended breakage
1936 // in the current form.
1937 return mSettingsRegistry.getSettingsNamesLocked(settingsType, userId);
Chad Brubaker97bccee2017-01-05 15:51:41 -08001938 }
1939
Chad Brubakera6830e72017-04-28 17:34:36 -07001940 private void enforceSettingReadable(String settingName, int settingsType, int userId) {
Chad Brubaker97bccee2017-01-05 15:51:41 -08001941 if (UserHandle.getAppId(Binder.getCallingUid()) < Process.FIRST_APPLICATION_UID) {
1942 return;
1943 }
Chad Brubakerf0fa8532017-02-23 10:45:20 -08001944 ApplicationInfo ai = getCallingApplicationInfoOrThrow();
Svetoslav Ganov096d3042017-01-30 16:34:13 -08001945 if (!ai.isInstantApp()) {
Chad Brubaker97bccee2017-01-05 15:51:41 -08001946 return;
1947 }
Chad Brubaker20e0dc32017-04-28 18:24:55 -07001948 if (!getInstantAppAccessibleSettings(settingsType).contains(settingName)
1949 && !getOverlayInstantAppAccessibleSettings(settingsType).contains(settingName)) {
Chad Brubakerb6108d62017-12-23 20:06:44 -08001950 // Don't enforce the instant app whitelist for now -- its too prone to unintended
1951 // breakage in the current form.
1952 Slog.w(LOG_TAG, "Instant App " + ai.packageName
1953 + " trying to access unexposed setting, this will be an error in the future.");
Chad Brubaker97bccee2017-01-05 15:51:41 -08001954 }
1955 }
1956
Chad Brubakerf0fa8532017-02-23 10:45:20 -08001957 private ApplicationInfo getCallingApplicationInfoOrThrow() {
1958 // We always use the callingUid for this lookup. This means that if hypothetically an
1959 // app was installed in user A with cross user and in user B as an Instant App
1960 // the app in A would be able to see all the settings in user B. However since cross
1961 // user is a system permission and the app must be uninstalled in B and then installed as
1962 // an Instant App that situation is not realistic or supported.
Chad Brubaker97bccee2017-01-05 15:51:41 -08001963 ApplicationInfo ai = null;
1964 try {
Chad Brubakerf0fa8532017-02-23 10:45:20 -08001965 ai = mPackageManager.getApplicationInfo(getCallingPackage(), 0
1966 , UserHandle.getCallingUserId());
Chad Brubaker97bccee2017-01-05 15:51:41 -08001967 } catch (RemoteException ignored) {
1968 }
1969 if (ai == null) {
1970 throw new IllegalStateException("Failed to lookup info for package "
1971 + getCallingPackage());
1972 }
1973 return ai;
1974 }
1975
Xiaohui Chen43765b72015-08-31 10:57:33 -07001976 private PackageInfo getCallingPackageInfoOrThrow(int userId) {
Svetoslav683914b2015-01-15 14:22:26 -08001977 try {
Svetoslav Ganov67a8d352016-03-02 13:26:40 -08001978 PackageInfo packageInfo = mPackageManager.getPackageInfo(
1979 getCallingPackage(), 0, userId);
1980 if (packageInfo != null) {
1981 return packageInfo;
1982 }
Xiaohui Chen43765b72015-08-31 10:57:33 -07001983 } catch (RemoteException e) {
Svetoslav Ganov67a8d352016-03-02 13:26:40 -08001984 /* ignore */
Svetoslav683914b2015-01-15 14:22:26 -08001985 }
Svetoslav Ganov67a8d352016-03-02 13:26:40 -08001986 throw new IllegalStateException("Calling package doesn't exist");
Svetoslav683914b2015-01-15 14:22:26 -08001987 }
1988
1989 private int getGroupParentLocked(int userId) {
1990 // Most frequent use case.
Xiaohui Chen43765b72015-08-31 10:57:33 -07001991 if (userId == UserHandle.USER_SYSTEM) {
Svetoslav683914b2015-01-15 14:22:26 -08001992 return userId;
1993 }
1994 // We are in the same process with the user manager and the returned
1995 // user info is a cached instance, so just look up instead of cache.
1996 final long identity = Binder.clearCallingIdentity();
1997 try {
Svetoslav7ec28e82015-05-20 17:01:10 -07001998 // Just a lookup and not reentrant, so holding a lock is fine.
Svetoslav683914b2015-01-15 14:22:26 -08001999 UserInfo userInfo = mUserManager.getProfileParent(userId);
2000 return (userInfo != null) ? userInfo.id : userId;
2001 } finally {
2002 Binder.restoreCallingIdentity(identity);
2003 }
2004 }
2005
Svetoslav683914b2015-01-15 14:22:26 -08002006 private void enforceWritePermission(String permission) {
2007 if (getContext().checkCallingOrSelfPermission(permission)
2008 != PackageManager.PERMISSION_GRANTED) {
2009 throw new SecurityException("Permission denial: writing to settings requires:"
2010 + permission);
2011 }
2012 }
2013
2014 /*
2015 * Used to parse changes to the value of Settings.Secure.LOCATION_PROVIDERS_ALLOWED.
2016 * This setting contains a list of the currently enabled location providers.
2017 * But helper functions in android.providers.Settings can enable or disable
2018 * a single provider by using a "+" or "-" prefix before the provider name.
2019 *
yuemingw1d13eae2018-01-30 17:27:54 +00002020 * <p>See also {@link com.android.server.pm.UserRestrictionsUtils#isSettingRestrictedForUser()}.
2021 * If DISALLOW_SHARE_LOCATION is set, the said method will only allow values with
2022 * the "-" prefix.
Makoto Onuki28da2e32015-11-20 11:30:44 -08002023 *
Svetoslav683914b2015-01-15 14:22:26 -08002024 * @returns whether the enabled location providers changed.
Brad Fitzpatrick1bd62bd2010-03-08 18:30:52 -08002025 */
Andreas Gampeb58893072018-09-05 16:52:31 -07002026 @GuardedBy("mLock")
Svetoslav Ganove080da92016-12-21 17:10:35 -08002027 private boolean updateLocationProvidersAllowedLocked(String value, String tag,
2028 int owningUserId, boolean makeDefault, boolean forceNotify) {
Svetoslav683914b2015-01-15 14:22:26 -08002029 if (TextUtils.isEmpty(value)) {
2030 return false;
Brad Fitzpatrickf366a9b2010-08-24 16:14:07 -07002031 }
Maggie83e03f52018-03-16 12:22:20 -07002032 Setting oldSetting = getSecureSetting(
2033 Settings.Secure.LOCATION_PROVIDERS_ALLOWED, owningUserId);
2034 if (oldSetting == null) {
Svetoslav683914b2015-01-15 14:22:26 -08002035 return false;
2036 }
Maggie83e03f52018-03-16 12:22:20 -07002037 String oldProviders = oldSetting.getValue();
2038 List<String> oldProvidersList = TextUtils.isEmpty(oldProviders)
2039 ? new ArrayList<>() : new ArrayList<>(Arrays.asList(oldProviders.split(",")));
2040 Set<String> newProvidersSet = new ArraySet<>();
2041 newProvidersSet.addAll(oldProvidersList);
Svetoslav683914b2015-01-15 14:22:26 -08002042
Maggie83e03f52018-03-16 12:22:20 -07002043 String[] providerUpdates = value.split(",");
2044 boolean inputError = false;
2045 for (String provider : providerUpdates) {
2046 // do not update location_providers_allowed when input is invalid
2047 if (TextUtils.isEmpty(provider)) {
2048 inputError = true;
2049 break;
Svetoslav683914b2015-01-15 14:22:26 -08002050 }
Maggie83e03f52018-03-16 12:22:20 -07002051 final char prefix = provider.charAt(0);
2052 // do not update location_providers_allowed when input is invalid
2053 if (prefix != '+' && prefix != '-') {
2054 inputError = true;
2055 break;
Svetoslav683914b2015-01-15 14:22:26 -08002056 }
Maggie83e03f52018-03-16 12:22:20 -07002057 // skip prefix
2058 provider = provider.substring(1);
2059 if (prefix == '+') {
2060 newProvidersSet.add(provider);
2061 } else if (prefix == '-') {
2062 newProvidersSet.remove(provider);
Svetoslav683914b2015-01-15 14:22:26 -08002063 }
Maggie83e03f52018-03-16 12:22:20 -07002064 }
2065 String newProviders = TextUtils.join(",", newProvidersSet.toArray());
2066 if (inputError == true || newProviders.equals(oldProviders)) {
Svetoslav683914b2015-01-15 14:22:26 -08002067 // nothing changed, so no need to update the database
Svet Ganov53a441c2016-04-19 19:38:00 -07002068 if (forceNotify) {
Maggie83e03f52018-03-16 12:22:20 -07002069 mSettingsRegistry.notifyForSettingsChange(
2070 makeKey(SETTINGS_TYPE_SECURE, owningUserId),
Svet Ganov53a441c2016-04-19 19:38:00 -07002071 Settings.Secure.LOCATION_PROVIDERS_ALLOWED);
2072 }
Svetoslav683914b2015-01-15 14:22:26 -08002073 return false;
2074 }
Svet Ganov53a441c2016-04-19 19:38:00 -07002075 return mSettingsRegistry.insertSettingLocked(SETTINGS_TYPE_SECURE,
Maggie83e03f52018-03-16 12:22:20 -07002076 owningUserId, Settings.Secure.LOCATION_PROVIDERS_ALLOWED, newProviders, tag,
2077 makeDefault, getCallingPackage(), forceNotify, CRITICAL_SECURE_SETTINGS);
Svetoslav683914b2015-01-15 14:22:26 -08002078 }
2079
Svetoslav683914b2015-01-15 14:22:26 -08002080 private static void warnOrThrowForUndesiredSecureSettingsMutationForTargetSdk(
2081 int targetSdkVersion, String name) {
2082 // If the app targets Lollipop MR1 or older SDK we warn, otherwise crash.
2083 if (targetSdkVersion <= Build.VERSION_CODES.LOLLIPOP_MR1) {
2084 if (Settings.System.PRIVATE_SETTINGS.contains(name)) {
2085 Slog.w(LOG_TAG, "You shouldn't not change private system settings."
2086 + " This will soon become an error.");
2087 } else {
2088 Slog.w(LOG_TAG, "You shouldn't keep your settings in the secure settings."
2089 + " This will soon become an error.");
2090 }
2091 } else {
2092 if (Settings.System.PRIVATE_SETTINGS.contains(name)) {
2093 throw new IllegalArgumentException("You cannot change private secure settings.");
2094 } else {
2095 throw new IllegalArgumentException("You cannot keep your settings in"
2096 + " the secure settings.");
2097 }
2098 }
2099 }
2100
2101 private static int resolveCallingUserIdEnforcingPermissionsLocked(int requestingUserId) {
2102 if (requestingUserId == UserHandle.getCallingUserId()) {
2103 return requestingUserId;
2104 }
2105 return ActivityManager.handleIncomingUser(Binder.getCallingPid(),
2106 Binder.getCallingUid(), requestingUserId, false, true,
2107 "get/set setting for user", null);
2108 }
2109
Svet Ganov53a441c2016-04-19 19:38:00 -07002110 private Bundle packageValueForCallResult(Setting setting,
2111 boolean trackingGeneration) {
2112 if (!trackingGeneration) {
Dianne Hackborn32f40ee2016-10-20 15:54:14 -07002113 if (setting == null || setting.isNull()) {
Svet Ganov53a441c2016-04-19 19:38:00 -07002114 return NULL_SETTING_BUNDLE;
2115 }
2116 return Bundle.forPair(Settings.NameValueTable.VALUE, setting.getValue());
Svetoslav683914b2015-01-15 14:22:26 -08002117 }
Svet Ganov53a441c2016-04-19 19:38:00 -07002118 Bundle result = new Bundle();
2119 result.putString(Settings.NameValueTable.VALUE,
Svetoslav Ganove080da92016-12-21 17:10:35 -08002120 !setting.isNull() ? setting.getValue() : null);
Svet Ganov96c99462017-05-05 14:27:13 -07002121
Svetoslav Ganove080da92016-12-21 17:10:35 -08002122 mSettingsRegistry.mGenerationRegistry.addGenerationData(result, setting.getKey());
Svet Ganov53a441c2016-04-19 19:38:00 -07002123 return result;
Svetoslav683914b2015-01-15 14:22:26 -08002124 }
2125
2126 private static int getRequestingUserId(Bundle args) {
2127 final int callingUserId = UserHandle.getCallingUserId();
2128 return (args != null) ? args.getInt(Settings.CALL_METHOD_USER_KEY, callingUserId)
2129 : callingUserId;
2130 }
2131
Svet Ganov53a441c2016-04-19 19:38:00 -07002132 private boolean isTrackingGeneration(Bundle args) {
2133 return args != null && args.containsKey(Settings.CALL_METHOD_TRACK_GENERATION_KEY);
2134 }
2135
Svetoslav683914b2015-01-15 14:22:26 -08002136 private static String getSettingValue(Bundle args) {
2137 return (args != null) ? args.getString(Settings.NameValueTable.VALUE) : null;
2138 }
2139
Svetoslav Ganove080da92016-12-21 17:10:35 -08002140 private static String getSettingTag(Bundle args) {
2141 return (args != null) ? args.getString(Settings.CALL_METHOD_TAG_KEY) : null;
2142 }
2143
Matt Pape6bfc62e2018-11-28 13:16:03 -08002144 private static String getSettingPrefix(Bundle args) {
2145 String prefix = (args != null) ? args.getString(Settings.CALL_METHOD_PREFIX_KEY) : null;
2146 // Append '/' to ensure we only match properties with this exact prefix.
2147 // i.e. "foo" should match "foo/property" but not "foobar/property"
2148 return prefix != null ? prefix + "/" : null;
2149 }
2150
Svetoslav Ganove080da92016-12-21 17:10:35 -08002151 private static boolean getSettingMakeDefault(Bundle args) {
2152 return (args != null) && args.getBoolean(Settings.CALL_METHOD_MAKE_DEFAULT_KEY);
2153 }
2154
2155 private static int getResetModeEnforcingPermission(Bundle args) {
2156 final int mode = (args != null) ? args.getInt(Settings.CALL_METHOD_RESET_MODE_KEY) : 0;
2157 switch (mode) {
2158 case Settings.RESET_MODE_UNTRUSTED_DEFAULTS: {
2159 if (!isCallerSystemOrShellOrRootOnDebuggableBuild()) {
2160 throw new SecurityException("Only system, shell/root on a "
2161 + "debuggable build can reset to untrusted defaults");
2162 }
2163 return mode;
2164 }
2165 case Settings.RESET_MODE_UNTRUSTED_CHANGES: {
2166 if (!isCallerSystemOrShellOrRootOnDebuggableBuild()) {
2167 throw new SecurityException("Only system, shell/root on a "
2168 + "debuggable build can reset untrusted changes");
2169 }
2170 return mode;
2171 }
2172 case Settings.RESET_MODE_TRUSTED_DEFAULTS: {
2173 if (!isCallerSystemOrShellOrRootOnDebuggableBuild()) {
2174 throw new SecurityException("Only system, shell/root on a "
2175 + "debuggable build can reset to trusted defaults");
2176 }
2177 return mode;
2178 }
2179 case Settings.RESET_MODE_PACKAGE_DEFAULTS: {
2180 return mode;
2181 }
2182 }
2183 throw new IllegalArgumentException("Invalid reset mode: " + mode);
2184 }
2185
2186 private static boolean isCallerSystemOrShellOrRootOnDebuggableBuild() {
2187 final int appId = UserHandle.getAppId(Binder.getCallingUid());
2188 return appId == SYSTEM_UID || (Build.IS_DEBUGGABLE
2189 && (appId == SHELL_UID || appId == ROOT_UID));
2190 }
2191
Svetoslav683914b2015-01-15 14:22:26 -08002192 private static String getValidTableOrThrow(Uri uri) {
2193 if (uri.getPathSegments().size() > 0) {
2194 String table = uri.getPathSegments().get(0);
2195 if (DatabaseHelper.isValidTable(table)) {
2196 return table;
2197 }
2198 throw new IllegalArgumentException("Bad root path: " + table);
2199 }
2200 throw new IllegalArgumentException("Invalid URI:" + uri);
2201 }
2202
2203 private static MatrixCursor packageSettingForQuery(Setting setting, String[] projection) {
Svetoslav Ganovfedb2302016-04-26 18:36:42 -07002204 if (setting.isNull()) {
Svetoslav683914b2015-01-15 14:22:26 -08002205 return new MatrixCursor(projection, 0);
2206 }
2207 MatrixCursor cursor = new MatrixCursor(projection, 1);
2208 appendSettingToCursor(cursor, setting);
2209 return cursor;
2210 }
2211
2212 private static String[] normalizeProjection(String[] projection) {
2213 if (projection == null) {
2214 return ALL_COLUMNS;
2215 }
2216
2217 final int columnCount = projection.length;
2218 for (int i = 0; i < columnCount; i++) {
2219 String column = projection[i];
2220 if (!ArrayUtils.contains(ALL_COLUMNS, column)) {
2221 throw new IllegalArgumentException("Invalid column: " + column);
Brad Fitzpatrickf366a9b2010-08-24 16:14:07 -07002222 }
2223 }
2224
Svetoslav683914b2015-01-15 14:22:26 -08002225 return projection;
2226 }
2227
2228 private static void appendSettingToCursor(MatrixCursor cursor, Setting setting) {
Dianne Hackborn32f40ee2016-10-20 15:54:14 -07002229 if (setting == null || setting.isNull()) {
Suprabh Shuklac9d064a2016-04-12 18:45:34 -07002230 return;
2231 }
Svetoslav683914b2015-01-15 14:22:26 -08002232 final int columnCount = cursor.getColumnCount();
2233
2234 String[] values = new String[columnCount];
2235
2236 for (int i = 0; i < columnCount; i++) {
2237 String column = cursor.getColumnName(i);
2238
2239 switch (column) {
2240 case Settings.NameValueTable._ID: {
2241 values[i] = setting.getId();
2242 } break;
2243
2244 case Settings.NameValueTable.NAME: {
2245 values[i] = setting.getName();
2246 } break;
2247
2248 case Settings.NameValueTable.VALUE: {
2249 values[i] = setting.getValue();
2250 } break;
Brad Fitzpatrickf366a9b2010-08-24 16:14:07 -07002251 }
Brad Fitzpatrick1bd62bd2010-03-08 18:30:52 -08002252 }
2253
Svetoslav683914b2015-01-15 14:22:26 -08002254 cursor.addRow(values);
2255 }
Brad Fitzpatrick1bd62bd2010-03-08 18:30:52 -08002256
Makoto Onuki3a2c35782015-06-18 11:21:58 -07002257 private static boolean isKeyValid(String key) {
2258 return !(TextUtils.isEmpty(key) || SettingsState.isBinary(key));
2259 }
2260
Matt Pape7b1c6cd2019-01-04 08:10:41 -08002261 private String resolveCallingPackage() {
2262 switch (Binder.getCallingUid()) {
2263 case Process.ROOT_UID: {
2264 return "root";
2265 }
2266
2267 case Process.SHELL_UID: {
2268 return "com.android.shell";
2269 }
2270
2271 default: {
2272 return getCallingPackage();
2273 }
2274 }
2275 }
2276
Svetoslav683914b2015-01-15 14:22:26 -08002277 private static final class Arguments {
2278 private static final Pattern WHERE_PATTERN_WITH_PARAM_NO_BRACKETS =
2279 Pattern.compile("[\\s]*name[\\s]*=[\\s]*\\?[\\s]*");
2280
2281 private static final Pattern WHERE_PATTERN_WITH_PARAM_IN_BRACKETS =
2282 Pattern.compile("[\\s]*\\([\\s]*name[\\s]*=[\\s]*\\?[\\s]*\\)[\\s]*");
2283
2284 private static final Pattern WHERE_PATTERN_NO_PARAM_IN_BRACKETS =
2285 Pattern.compile("[\\s]*\\([\\s]*name[\\s]*=[\\s]*['\"].*['\"][\\s]*\\)[\\s]*");
2286
2287 private static final Pattern WHERE_PATTERN_NO_PARAM_NO_BRACKETS =
2288 Pattern.compile("[\\s]*name[\\s]*=[\\s]*['\"].*['\"][\\s]*");
2289
2290 public final String table;
2291 public final String name;
2292
2293 public Arguments(Uri uri, String where, String[] whereArgs, boolean supportAll) {
2294 final int segmentSize = uri.getPathSegments().size();
2295 switch (segmentSize) {
2296 case 1: {
2297 if (where != null
2298 && (WHERE_PATTERN_WITH_PARAM_NO_BRACKETS.matcher(where).matches()
2299 || WHERE_PATTERN_WITH_PARAM_IN_BRACKETS.matcher(where).matches())
2300 && whereArgs.length == 1) {
2301 name = whereArgs[0];
2302 table = computeTableForSetting(uri, name);
Svetoslav28494652015-02-12 14:11:42 -08002303 return;
Svetoslav683914b2015-01-15 14:22:26 -08002304 } else if (where != null
2305 && (WHERE_PATTERN_NO_PARAM_NO_BRACKETS.matcher(where).matches()
2306 || WHERE_PATTERN_NO_PARAM_IN_BRACKETS.matcher(where).matches())) {
2307 final int startIndex = Math.max(where.indexOf("'"),
2308 where.indexOf("\"")) + 1;
2309 final int endIndex = Math.max(where.lastIndexOf("'"),
2310 where.lastIndexOf("\""));
2311 name = where.substring(startIndex, endIndex);
2312 table = computeTableForSetting(uri, name);
Svetoslav28494652015-02-12 14:11:42 -08002313 return;
Svetoslav683914b2015-01-15 14:22:26 -08002314 } else if (supportAll && where == null && whereArgs == null) {
2315 name = null;
2316 table = computeTableForSetting(uri, null);
Svetoslav28494652015-02-12 14:11:42 -08002317 return;
Brad Fitzpatrick342984a2010-03-09 16:59:30 -08002318 }
Svetoslav683914b2015-01-15 14:22:26 -08002319 } break;
2320
Svetoslav28494652015-02-12 14:11:42 -08002321 case 2: {
2322 if (where == null && whereArgs == null) {
2323 name = uri.getPathSegments().get(1);
2324 table = computeTableForSetting(uri, name);
2325 return;
2326 }
2327 } break;
Brad Fitzpatrick1bd62bd2010-03-08 18:30:52 -08002328 }
Svetoslav28494652015-02-12 14:11:42 -08002329
2330 EventLogTags.writeUnsupportedSettingsQuery(
2331 uri.toSafeString(), where, Arrays.toString(whereArgs));
2332 String message = String.format( "Supported SQL:\n"
2333 + " uri content://some_table/some_property with null where and where args\n"
2334 + " uri content://some_table with query name=? and single name as arg\n"
2335 + " uri content://some_table with query name=some_name and null args\n"
2336 + " but got - uri:%1s, where:%2s whereArgs:%3s", uri, where,
2337 Arrays.toString(whereArgs));
2338 throw new IllegalArgumentException(message);
Brad Fitzpatrick1bd62bd2010-03-08 18:30:52 -08002339 }
2340
Svetoslav28494652015-02-12 14:11:42 -08002341 private static String computeTableForSetting(Uri uri, String name) {
Svetoslav683914b2015-01-15 14:22:26 -08002342 String table = getValidTableOrThrow(uri);
2343
2344 if (name != null) {
2345 if (sSystemMovedToSecureSettings.contains(name)) {
2346 table = TABLE_SECURE;
2347 }
2348
2349 if (sSystemMovedToGlobalSettings.contains(name)) {
2350 table = TABLE_GLOBAL;
2351 }
2352
2353 if (sSecureMovedToGlobalSettings.contains(name)) {
2354 table = TABLE_GLOBAL;
2355 }
2356
2357 if (sGlobalMovedToSecureSettings.contains(name)) {
2358 table = TABLE_SECURE;
2359 }
Brad Fitzpatrick1bd62bd2010-03-08 18:30:52 -08002360 }
Svetoslav683914b2015-01-15 14:22:26 -08002361
2362 return table;
2363 }
2364 }
2365
2366 final class SettingsRegistry {
2367 private static final String DROPBOX_TAG_USERLOG = "restricted_profile_ssaid";
2368
Svetoslav683914b2015-01-15 14:22:26 -08002369 private static final String SETTINGS_FILE_GLOBAL = "settings_global.xml";
2370 private static final String SETTINGS_FILE_SYSTEM = "settings_system.xml";
2371 private static final String SETTINGS_FILE_SECURE = "settings_secure.xml";
Mark Rathjend891f012017-01-19 04:10:37 +00002372 private static final String SETTINGS_FILE_SSAID = "settings_ssaid.xml";
Matt Pape1b31a332018-10-17 09:58:28 -07002373 private static final String SETTINGS_FILE_CONFIG = "settings_config.xml";
Mark Rathjend891f012017-01-19 04:10:37 +00002374
2375 private static final String SSAID_USER_KEY = "userkey";
Svetoslav683914b2015-01-15 14:22:26 -08002376
2377 private final SparseArray<SettingsState> mSettingsStates = new SparseArray<>();
2378
Svet Ganov53a441c2016-04-19 19:38:00 -07002379 private GenerationRegistry mGenerationRegistry;
Svetoslav683914b2015-01-15 14:22:26 -08002380
Svetoslav7e0683b2015-08-03 16:02:52 -07002381 private final Handler mHandler;
2382
Svet Ganov53a441c2016-04-19 19:38:00 -07002383 private final BackupManager mBackupManager;
2384
Amith Yamasani39452022017-03-21 15:23:47 -07002385 private String mSettingsCreationBuildId;
2386
Svetoslav683914b2015-01-15 14:22:26 -08002387 public SettingsRegistry() {
Svetoslav7e0683b2015-08-03 16:02:52 -07002388 mHandler = new MyHandler(getContext().getMainLooper());
Svet Ganov53a441c2016-04-19 19:38:00 -07002389 mGenerationRegistry = new GenerationRegistry(mLock);
2390 mBackupManager = new BackupManager(getContext());
Svetoslav683914b2015-01-15 14:22:26 -08002391 migrateAllLegacySettingsIfNeeded();
Mark Rathjend891f012017-01-19 04:10:37 +00002392 syncSsaidTableOnStart();
2393 }
2394
2395 private void generateUserKeyLocked(int userId) {
2396 // Generate a random key for each user used for creating a new ssaid.
Mark Rathjen7599f132017-01-23 14:15:54 -08002397 final byte[] keyBytes = new byte[32];
Mark Rathjend891f012017-01-19 04:10:37 +00002398 final SecureRandom rand = new SecureRandom();
2399 rand.nextBytes(keyBytes);
2400
2401 // Convert to string for storage in settings table.
Mark Rathjen7599f132017-01-23 14:15:54 -08002402 final String userKey = ByteStringUtils.toHexString(keyBytes);
Mark Rathjend891f012017-01-19 04:10:37 +00002403
2404 // Store the key in the ssaid table.
2405 final SettingsState ssaidSettings = getSettingsLocked(SETTINGS_TYPE_SSAID, userId);
2406 final boolean success = ssaidSettings.insertSettingLocked(SSAID_USER_KEY, userKey, null,
2407 true, SettingsState.SYSTEM_PACKAGE_NAME);
2408
2409 if (!success) {
2410 throw new IllegalStateException("Ssaid settings not accessible");
2411 }
2412 }
2413
Mark Rathjen7599f132017-01-23 14:15:54 -08002414 private byte[] getLengthPrefix(byte[] data) {
2415 return ByteBuffer.allocate(4).putInt(data.length).array();
2416 }
2417
Christopher Tateb218e762017-04-05 16:34:07 -07002418 public Setting generateSsaidLocked(PackageInfo callingPkg, int userId) {
Mark Rathjend891f012017-01-19 04:10:37 +00002419 // Read the user's key from the ssaid table.
2420 Setting userKeySetting = getSettingLocked(SETTINGS_TYPE_SSAID, userId, SSAID_USER_KEY);
Mark Rathjenea617592017-01-18 23:03:41 -08002421 if (userKeySetting == null || userKeySetting.isNull()
2422 || userKeySetting.getValue() == null) {
Mark Rathjend891f012017-01-19 04:10:37 +00002423 // Lazy initialize and store the user key.
2424 generateUserKeyLocked(userId);
2425 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 throw new IllegalStateException("User key not accessible");
2429 }
2430 }
2431 final String userKey = userKeySetting.getValue();
2432
2433 // Convert the user's key back to a byte array.
Mark Rathjen7599f132017-01-23 14:15:54 -08002434 final byte[] keyBytes = ByteStringUtils.fromHexToByteArray(userKey);
2435
2436 // Validate that the key is of expected length.
2437 // Keys are currently 32 bytes, but were once 16 bytes during Android O development.
2438 if (keyBytes == null || (keyBytes.length != 16 && keyBytes.length != 32)) {
Mark Rathjend891f012017-01-19 04:10:37 +00002439 throw new IllegalStateException("User key invalid");
2440 }
2441
Mark Rathjen7599f132017-01-23 14:15:54 -08002442 final Mac m;
Mark Rathjend891f012017-01-19 04:10:37 +00002443 try {
Mark Rathjen7599f132017-01-23 14:15:54 -08002444 m = Mac.getInstance("HmacSHA256");
2445 m.init(new SecretKeySpec(keyBytes, m.getAlgorithm()));
Mark Rathjend891f012017-01-19 04:10:37 +00002446 } catch (NoSuchAlgorithmException e) {
Mark Rathjen7599f132017-01-23 14:15:54 -08002447 throw new IllegalStateException("HmacSHA256 is not available", e);
2448 } catch (InvalidKeyException e) {
2449 throw new IllegalStateException("Key is corrupted", e);
Mark Rathjend891f012017-01-19 04:10:37 +00002450 }
Mark Rathjen7599f132017-01-23 14:15:54 -08002451
Mark Rathjenf42dd912017-06-05 19:04:34 -07002452 // Mac each of the developer signatures.
Christopher Tateb218e762017-04-05 16:34:07 -07002453 for (int i = 0; i < callingPkg.signatures.length; i++) {
2454 byte[] sig = callingPkg.signatures[i].toByteArray();
Mark Rathjen7599f132017-01-23 14:15:54 -08002455 m.update(getLengthPrefix(sig), 0, 4);
2456 m.update(sig);
2457 }
Mark Rathjend891f012017-01-19 04:10:37 +00002458
2459 // Convert result to a string for storage in settings table. Only want first 64 bits.
Mark Rathjen7599f132017-01-23 14:15:54 -08002460 final String ssaid = ByteStringUtils.toHexString(m.doFinal()).substring(0, 16)
2461 .toLowerCase(Locale.US);
Mark Rathjend891f012017-01-19 04:10:37 +00002462
2463 // Save the ssaid in the ssaid table.
Christopher Tateb218e762017-04-05 16:34:07 -07002464 final String uid = Integer.toString(callingPkg.applicationInfo.uid);
Mark Rathjend891f012017-01-19 04:10:37 +00002465 final SettingsState ssaidSettings = getSettingsLocked(SETTINGS_TYPE_SSAID, userId);
2466 final boolean success = ssaidSettings.insertSettingLocked(uid, ssaid, null, true,
Mark Rathjenf42dd912017-06-05 19:04:34 -07002467 callingPkg.packageName);
Mark Rathjend891f012017-01-19 04:10:37 +00002468
2469 if (!success) {
2470 throw new IllegalStateException("Ssaid settings not accessible");
2471 }
2472
2473 return getSettingLocked(SETTINGS_TYPE_SSAID, userId, uid);
2474 }
2475
2476 public void syncSsaidTableOnStart() {
2477 synchronized (mLock) {
2478 // Verify that each user's packages and ssaid's are in sync.
2479 for (UserInfo user : mUserManager.getUsers(true)) {
2480 // Get all uids for the user's packages.
2481 final List<PackageInfo> packages;
2482 try {
Tetsutoki Shiozawaebe0e5f2018-01-17 11:07:09 +09002483 packages = mPackageManager.getInstalledPackages(
2484 PackageManager.MATCH_UNINSTALLED_PACKAGES,
2485 user.id).getList();
Mark Rathjend891f012017-01-19 04:10:37 +00002486 } catch (RemoteException e) {
2487 throw new IllegalStateException("Package manager not available");
2488 }
2489 final Set<String> appUids = new HashSet<>();
2490 for (PackageInfo info : packages) {
2491 appUids.add(Integer.toString(info.applicationInfo.uid));
2492 }
2493
2494 // Get all uids currently stored in the user's ssaid table.
2495 final Set<String> ssaidUids = new HashSet<>(
2496 getSettingsNamesLocked(SETTINGS_TYPE_SSAID, user.id));
2497 ssaidUids.remove(SSAID_USER_KEY);
2498
2499 // Perform a set difference for the appUids and ssaidUids.
2500 ssaidUids.removeAll(appUids);
2501
2502 // If there are ssaidUids left over they need to be removed from the table.
2503 final SettingsState ssaidSettings = getSettingsLocked(SETTINGS_TYPE_SSAID,
2504 user.id);
2505 for (String uid : ssaidUids) {
2506 ssaidSettings.deleteSettingLocked(uid);
2507 }
2508 }
2509 }
Brad Fitzpatrickf366a9b2010-08-24 16:14:07 -07002510 }
2511
Svetoslav683914b2015-01-15 14:22:26 -08002512 public List<String> getSettingsNamesLocked(int type, int userId) {
2513 final int key = makeKey(type, userId);
2514 SettingsState settingsState = peekSettingsStateLocked(key);
Dianne Hackborn32f40ee2016-10-20 15:54:14 -07002515 if (settingsState == null) {
2516 return new ArrayList<String>();
2517 }
Svetoslav683914b2015-01-15 14:22:26 -08002518 return settingsState.getSettingNamesLocked();
2519 }
2520
Dianne Hackborn32f40ee2016-10-20 15:54:14 -07002521 public SparseBooleanArray getKnownUsersLocked() {
2522 SparseBooleanArray users = new SparseBooleanArray();
2523 for (int i = mSettingsStates.size()-1; i >= 0; i--) {
2524 users.put(getUserIdFromKey(mSettingsStates.keyAt(i)), true);
2525 }
2526 return users;
2527 }
2528
Kweku Adamsb0886f32017-10-31 15:32:09 -07002529 @Nullable
Svetoslav683914b2015-01-15 14:22:26 -08002530 public SettingsState getSettingsLocked(int type, int userId) {
2531 final int key = makeKey(type, userId);
2532 return peekSettingsStateLocked(key);
2533 }
2534
Dianne Hackborn32f40ee2016-10-20 15:54:14 -07002535 public boolean ensureSettingsForUserLocked(int userId) {
2536 // First make sure this user actually exists.
2537 if (mUserManager.getUserInfo(userId) == null) {
2538 Slog.wtf(LOG_TAG, "Requested user " + userId + " does not exist");
2539 return false;
2540 }
2541
Svetoslav683914b2015-01-15 14:22:26 -08002542 // Migrate the setting for this user if needed.
2543 migrateLegacySettingsForUserIfNeededLocked(userId);
2544
Matt Pape1b31a332018-10-17 09:58:28 -07002545 // Ensure config settings loaded if owner.
2546 if (userId == UserHandle.USER_SYSTEM) {
2547 final int configKey
2548 = makeKey(SETTINGS_TYPE_CONFIG, UserHandle.USER_SYSTEM);
2549 ensureSettingsStateLocked(configKey);
2550 }
2551
Svetoslav683914b2015-01-15 14:22:26 -08002552 // Ensure global settings loaded if owner.
Xiaohui Chen43765b72015-08-31 10:57:33 -07002553 if (userId == UserHandle.USER_SYSTEM) {
2554 final int globalKey = makeKey(SETTINGS_TYPE_GLOBAL, UserHandle.USER_SYSTEM);
Svetoslav683914b2015-01-15 14:22:26 -08002555 ensureSettingsStateLocked(globalKey);
2556 }
2557
2558 // Ensure secure settings loaded.
2559 final int secureKey = makeKey(SETTINGS_TYPE_SECURE, userId);
2560 ensureSettingsStateLocked(secureKey);
2561
2562 // Make sure the secure settings have an Android id set.
2563 SettingsState secureSettings = getSettingsLocked(SETTINGS_TYPE_SECURE, userId);
2564 ensureSecureSettingAndroidIdSetLocked(secureSettings);
2565
2566 // Ensure system settings loaded.
2567 final int systemKey = makeKey(SETTINGS_TYPE_SYSTEM, userId);
2568 ensureSettingsStateLocked(systemKey);
2569
Mark Rathjend891f012017-01-19 04:10:37 +00002570 // Ensure secure settings loaded.
2571 final int ssaidKey = makeKey(SETTINGS_TYPE_SSAID, userId);
2572 ensureSettingsStateLocked(ssaidKey);
2573
Svetoslav683914b2015-01-15 14:22:26 -08002574 // Upgrade the settings to the latest version.
2575 UpgradeController upgrader = new UpgradeController(userId);
2576 upgrader.upgradeIfNeededLocked();
Dianne Hackborn32f40ee2016-10-20 15:54:14 -07002577 return true;
Svetoslav683914b2015-01-15 14:22:26 -08002578 }
2579
2580 private void ensureSettingsStateLocked(int key) {
2581 if (mSettingsStates.get(key) == null) {
2582 final int maxBytesPerPackage = getMaxBytesPerPackageForType(getTypeFromKey(key));
Svetoslav Ganove080da92016-12-21 17:10:35 -08002583 SettingsState settingsState = new SettingsState(getContext(), mLock,
2584 getSettingsFile(key), key, maxBytesPerPackage, mHandlerThread.getLooper());
Svetoslav683914b2015-01-15 14:22:26 -08002585 mSettingsStates.put(key, settingsState);
2586 }
2587 }
2588
2589 public void removeUserStateLocked(int userId, boolean permanently) {
2590 // We always keep the global settings in memory.
2591
2592 // Nuke system settings.
2593 final int systemKey = makeKey(SETTINGS_TYPE_SYSTEM, userId);
2594 final SettingsState systemSettingsState = mSettingsStates.get(systemKey);
2595 if (systemSettingsState != null) {
2596 if (permanently) {
2597 mSettingsStates.remove(systemKey);
2598 systemSettingsState.destroyLocked(null);
Brad Fitzpatrick342984a2010-03-09 16:59:30 -08002599 } else {
Svetoslav683914b2015-01-15 14:22:26 -08002600 systemSettingsState.destroyLocked(new Runnable() {
2601 @Override
2602 public void run() {
2603 mSettingsStates.remove(systemKey);
2604 }
2605 });
2606 }
2607 }
2608
2609 // Nuke secure settings.
2610 final int secureKey = makeKey(SETTINGS_TYPE_SECURE, userId);
2611 final SettingsState secureSettingsState = mSettingsStates.get(secureKey);
2612 if (secureSettingsState != null) {
2613 if (permanently) {
2614 mSettingsStates.remove(secureKey);
2615 secureSettingsState.destroyLocked(null);
2616 } else {
2617 secureSettingsState.destroyLocked(new Runnable() {
2618 @Override
2619 public void run() {
2620 mSettingsStates.remove(secureKey);
2621 }
2622 });
Brad Fitzpatrick342984a2010-03-09 16:59:30 -08002623 }
Brad Fitzpatrick1bd62bd2010-03-08 18:30:52 -08002624 }
Svet Ganov53a441c2016-04-19 19:38:00 -07002625
Mark Rathjend891f012017-01-19 04:10:37 +00002626 // Nuke ssaid settings.
2627 final int ssaidKey = makeKey(SETTINGS_TYPE_SSAID, userId);
2628 final SettingsState ssaidSettingsState = mSettingsStates.get(ssaidKey);
2629 if (ssaidSettingsState != null) {
2630 if (permanently) {
2631 mSettingsStates.remove(ssaidKey);
2632 ssaidSettingsState.destroyLocked(null);
2633 } else {
2634 ssaidSettingsState.destroyLocked(new Runnable() {
2635 @Override
2636 public void run() {
2637 mSettingsStates.remove(ssaidKey);
2638 }
2639 });
2640 }
2641 }
2642
Svet Ganov53a441c2016-04-19 19:38:00 -07002643 // Nuke generation tracking data
2644 mGenerationRegistry.onUserRemoved(userId);
Brad Fitzpatrick1bd62bd2010-03-08 18:30:52 -08002645 }
2646
Svetoslav683914b2015-01-15 14:22:26 -08002647 public boolean insertSettingLocked(int type, int userId, String name, String value,
Svetoslav Ganov5fb405b2017-01-26 22:43:09 -08002648 String tag, boolean makeDefault, String packageName, boolean forceNotify,
2649 Set<String> criticalSettings) {
Matt Papec1323dc2018-12-11 12:32:42 -08002650 return insertSettingLocked(type, userId, name, value, tag, makeDefault, false,
2651 packageName, forceNotify, criticalSettings);
2652 }
2653
2654 public boolean insertSettingLocked(int type, int userId, String name, String value,
2655 String tag, boolean makeDefault, boolean forceNonSystemPackage, String packageName,
2656 boolean forceNotify, Set<String> criticalSettings) {
Svetoslav683914b2015-01-15 14:22:26 -08002657 final int key = makeKey(type, userId);
2658
Svetoslav Ganove080da92016-12-21 17:10:35 -08002659 boolean success = false;
Svetoslav683914b2015-01-15 14:22:26 -08002660 SettingsState settingsState = peekSettingsStateLocked(key);
Svetoslav Ganove080da92016-12-21 17:10:35 -08002661 if (settingsState != null) {
2662 success = settingsState.insertSettingLocked(name, value,
Matt Papec1323dc2018-12-11 12:32:42 -08002663 tag, makeDefault, forceNonSystemPackage, packageName);
Svetoslav Ganove080da92016-12-21 17:10:35 -08002664 }
Svetoslav683914b2015-01-15 14:22:26 -08002665
Svetoslav Ganov5fb405b2017-01-26 22:43:09 -08002666 if (success && criticalSettings != null && criticalSettings.contains(name)) {
2667 settingsState.persistSyncLocked();
2668 }
2669
Svet Ganov53a441c2016-04-19 19:38:00 -07002670 if (forceNotify || success) {
Svetoslav683914b2015-01-15 14:22:26 -08002671 notifyForSettingsChange(key, name);
2672 }
2673 return success;
2674 }
2675
Svetoslav Ganov5fb405b2017-01-26 22:43:09 -08002676 public boolean deleteSettingLocked(int type, int userId, String name, boolean forceNotify,
2677 Set<String> criticalSettings) {
Svetoslav683914b2015-01-15 14:22:26 -08002678 final int key = makeKey(type, userId);
2679
Svetoslav Ganove080da92016-12-21 17:10:35 -08002680 boolean success = false;
Svetoslav683914b2015-01-15 14:22:26 -08002681 SettingsState settingsState = peekSettingsStateLocked(key);
Svetoslav Ganove080da92016-12-21 17:10:35 -08002682 if (settingsState != null) {
2683 success = settingsState.deleteSettingLocked(name);
Dianne Hackborn32f40ee2016-10-20 15:54:14 -07002684 }
Svetoslav683914b2015-01-15 14:22:26 -08002685
Svetoslav Ganov5fb405b2017-01-26 22:43:09 -08002686 if (success && criticalSettings != null && criticalSettings.contains(name)) {
2687 settingsState.persistSyncLocked();
2688 }
2689
Svet Ganov53a441c2016-04-19 19:38:00 -07002690 if (forceNotify || success) {
Svetoslav683914b2015-01-15 14:22:26 -08002691 notifyForSettingsChange(key, name);
2692 }
2693 return success;
2694 }
2695
Svetoslav Ganov5fb405b2017-01-26 22:43:09 -08002696 public boolean updateSettingLocked(int type, int userId, String name, String value,
2697 String tag, boolean makeDefault, String packageName, boolean forceNotify,
2698 Set<String> criticalSettings) {
2699 final int key = makeKey(type, userId);
2700
2701 boolean success = false;
2702 SettingsState settingsState = peekSettingsStateLocked(key);
2703 if (settingsState != null) {
2704 success = settingsState.updateSettingLocked(name, value, tag,
2705 makeDefault, packageName);
2706 }
2707
2708 if (success && criticalSettings != null && criticalSettings.contains(name)) {
2709 settingsState.persistSyncLocked();
2710 }
2711
2712 if (forceNotify || success) {
2713 notifyForSettingsChange(key, name);
2714 }
2715
2716 return success;
2717 }
2718
Svetoslav683914b2015-01-15 14:22:26 -08002719 public Setting getSettingLocked(int type, int userId, String name) {
2720 final int key = makeKey(type, userId);
2721
2722 SettingsState settingsState = peekSettingsStateLocked(key);
Dianne Hackborn32f40ee2016-10-20 15:54:14 -07002723 if (settingsState == null) {
Mark Rathjenea617592017-01-18 23:03:41 -08002724 return null;
Dianne Hackborn32f40ee2016-10-20 15:54:14 -07002725 }
Mark Rathjend891f012017-01-19 04:10:37 +00002726
2727 // getSettingLocked will return non-null result
Svetoslav683914b2015-01-15 14:22:26 -08002728 return settingsState.getSettingLocked(name);
2729 }
2730
Svetoslav Ganove080da92016-12-21 17:10:35 -08002731 public void resetSettingsLocked(int type, int userId, String packageName, int mode,
2732 String tag) {
Matt Pape6bfc62e2018-11-28 13:16:03 -08002733 resetSettingsLocked(type, userId, packageName, mode, tag, null);
2734 }
2735
2736 public void resetSettingsLocked(int type, int userId, String packageName, int mode,
2737 String tag, @Nullable String prefix) {
Svetoslav Ganove080da92016-12-21 17:10:35 -08002738 final int key = makeKey(type, userId);
2739 SettingsState settingsState = peekSettingsStateLocked(key);
2740 if (settingsState == null) {
2741 return;
2742 }
2743
2744 switch (mode) {
2745 case Settings.RESET_MODE_PACKAGE_DEFAULTS: {
2746 for (String name : settingsState.getSettingNamesLocked()) {
Svetoslav Ganov5fb405b2017-01-26 22:43:09 -08002747 boolean someSettingChanged = false;
Svetoslav Ganove080da92016-12-21 17:10:35 -08002748 Setting setting = settingsState.getSettingLocked(name);
2749 if (packageName.equals(setting.getPackageName())) {
Matt Pape6bfc62e2018-11-28 13:16:03 -08002750 if ((tag != null && !tag.equals(setting.getTag()))
2751 || (prefix != null && !setting.getName().startsWith(prefix))) {
Svetoslav Ganove080da92016-12-21 17:10:35 -08002752 continue;
2753 }
Svetoslav Ganov5fb405b2017-01-26 22:43:09 -08002754 if (settingsState.resetSettingLocked(name)) {
2755 someSettingChanged = true;
Svetoslav Ganove080da92016-12-21 17:10:35 -08002756 notifyForSettingsChange(key, name);
2757 }
2758 }
Svetoslav Ganov5fb405b2017-01-26 22:43:09 -08002759 if (someSettingChanged) {
2760 settingsState.persistSyncLocked();
2761 }
Svetoslav Ganove080da92016-12-21 17:10:35 -08002762 }
2763 } break;
2764
2765 case Settings.RESET_MODE_UNTRUSTED_DEFAULTS: {
2766 for (String name : settingsState.getSettingNamesLocked()) {
Svetoslav Ganov5fb405b2017-01-26 22:43:09 -08002767 boolean someSettingChanged = false;
Svetoslav Ganove080da92016-12-21 17:10:35 -08002768 Setting setting = settingsState.getSettingLocked(name);
2769 if (!SettingsState.isSystemPackage(getContext(),
2770 setting.getPackageName())) {
Matt Pape6bfc62e2018-11-28 13:16:03 -08002771 if (prefix != null && !setting.getName().startsWith(prefix)) {
2772 continue;
2773 }
Svetoslav Ganov5fb405b2017-01-26 22:43:09 -08002774 if (settingsState.resetSettingLocked(name)) {
2775 someSettingChanged = true;
Svetoslav Ganove080da92016-12-21 17:10:35 -08002776 notifyForSettingsChange(key, name);
2777 }
2778 }
Svetoslav Ganov5fb405b2017-01-26 22:43:09 -08002779 if (someSettingChanged) {
2780 settingsState.persistSyncLocked();
2781 }
Svetoslav Ganove080da92016-12-21 17:10:35 -08002782 }
2783 } break;
2784
2785 case Settings.RESET_MODE_UNTRUSTED_CHANGES: {
2786 for (String name : settingsState.getSettingNamesLocked()) {
Svetoslav Ganov5fb405b2017-01-26 22:43:09 -08002787 boolean someSettingChanged = false;
Svetoslav Ganove080da92016-12-21 17:10:35 -08002788 Setting setting = settingsState.getSettingLocked(name);
2789 if (!SettingsState.isSystemPackage(getContext(),
2790 setting.getPackageName())) {
Matt Pape6bfc62e2018-11-28 13:16:03 -08002791 if (prefix != null && !setting.getName().startsWith(prefix)) {
2792 continue;
2793 }
Eugene Suslad72c3972016-12-27 15:49:30 -08002794 if (setting.isDefaultFromSystem()) {
Svetoslav Ganov5fb405b2017-01-26 22:43:09 -08002795 if (settingsState.resetSettingLocked(name)) {
2796 someSettingChanged = true;
Svetoslav Ganove080da92016-12-21 17:10:35 -08002797 notifyForSettingsChange(key, name);
2798 }
2799 } else if (settingsState.deleteSettingLocked(name)) {
Svetoslav Ganov5fb405b2017-01-26 22:43:09 -08002800 someSettingChanged = true;
Svetoslav Ganove080da92016-12-21 17:10:35 -08002801 notifyForSettingsChange(key, name);
2802 }
2803 }
Svetoslav Ganov5fb405b2017-01-26 22:43:09 -08002804 if (someSettingChanged) {
2805 settingsState.persistSyncLocked();
2806 }
Svetoslav Ganove080da92016-12-21 17:10:35 -08002807 }
2808 } break;
2809
2810 case Settings.RESET_MODE_TRUSTED_DEFAULTS: {
2811 for (String name : settingsState.getSettingNamesLocked()) {
2812 Setting setting = settingsState.getSettingLocked(name);
Svetoslav Ganov5fb405b2017-01-26 22:43:09 -08002813 boolean someSettingChanged = false;
Matt Pape6bfc62e2018-11-28 13:16:03 -08002814 if (prefix != null && !setting.getName().startsWith(prefix)) {
2815 continue;
2816 }
Eugene Suslad72c3972016-12-27 15:49:30 -08002817 if (setting.isDefaultFromSystem()) {
Svetoslav Ganov5fb405b2017-01-26 22:43:09 -08002818 if (settingsState.resetSettingLocked(name)) {
2819 someSettingChanged = true;
Svetoslav Ganove080da92016-12-21 17:10:35 -08002820 notifyForSettingsChange(key, name);
2821 }
2822 } else if (settingsState.deleteSettingLocked(name)) {
Svetoslav Ganov5fb405b2017-01-26 22:43:09 -08002823 someSettingChanged = true;
Svetoslav Ganove080da92016-12-21 17:10:35 -08002824 notifyForSettingsChange(key, name);
2825 }
Svetoslav Ganov5fb405b2017-01-26 22:43:09 -08002826 if (someSettingChanged) {
2827 settingsState.persistSyncLocked();
2828 }
Svetoslav Ganove080da92016-12-21 17:10:35 -08002829 }
2830 } break;
2831 }
2832 }
2833
Zimuzoc56192c2018-07-25 10:40:01 +01002834 public void removeSettingsForPackageLocked(String packageName, int userId) {
Svet Ganov8de34802015-04-27 09:33:40 -07002835 // Global and secure settings are signature protected. Apps signed
2836 // by the platform certificate are generally not uninstalled and
2837 // the main exception is tests. We trust components signed
2838 // by the platform certificate and do not do a clean up after them.
Svetoslav683914b2015-01-15 14:22:26 -08002839
2840 final int systemKey = makeKey(SETTINGS_TYPE_SYSTEM, userId);
2841 SettingsState systemSettings = mSettingsStates.get(systemKey);
Svet Ganov8de34802015-04-27 09:33:40 -07002842 if (systemSettings != null) {
Zimuzoc56192c2018-07-25 10:40:01 +01002843 systemSettings.removeSettingsForPackageLocked(packageName);
Svet Ganov8de34802015-04-27 09:33:40 -07002844 }
Svetoslav683914b2015-01-15 14:22:26 -08002845 }
2846
Mark Rathjend891f012017-01-19 04:10:37 +00002847 public void onUidRemovedLocked(int uid) {
2848 final SettingsState ssaidSettings = getSettingsLocked(SETTINGS_TYPE_SSAID,
2849 UserHandle.getUserId(uid));
Tony Mak24c6ab42018-01-08 14:35:34 +00002850 if (ssaidSettings != null) {
2851 ssaidSettings.deleteSettingLocked(Integer.toString(uid));
2852 }
Mark Rathjend891f012017-01-19 04:10:37 +00002853 }
2854
Kweku Adamsb0886f32017-10-31 15:32:09 -07002855 @Nullable
Svetoslav683914b2015-01-15 14:22:26 -08002856 private SettingsState peekSettingsStateLocked(int key) {
2857 SettingsState settingsState = mSettingsStates.get(key);
2858 if (settingsState != null) {
2859 return settingsState;
2860 }
2861
Dianne Hackborn32f40ee2016-10-20 15:54:14 -07002862 if (!ensureSettingsForUserLocked(getUserIdFromKey(key))) {
2863 return null;
2864 }
Svetoslav683914b2015-01-15 14:22:26 -08002865 return mSettingsStates.get(key);
2866 }
2867
2868 private void migrateAllLegacySettingsIfNeeded() {
2869 synchronized (mLock) {
Xiaohui Chen43765b72015-08-31 10:57:33 -07002870 final int key = makeKey(SETTINGS_TYPE_GLOBAL, UserHandle.USER_SYSTEM);
Svetoslav683914b2015-01-15 14:22:26 -08002871 File globalFile = getSettingsFile(key);
Amith Yamasani74bf71b2017-07-19 16:49:52 -07002872 if (SettingsState.stateFileExists(globalFile)) {
Svetoslav683914b2015-01-15 14:22:26 -08002873 return;
2874 }
2875
Amith Yamasani39452022017-03-21 15:23:47 -07002876 mSettingsCreationBuildId = Build.ID;
2877
Svetoslav683914b2015-01-15 14:22:26 -08002878 final long identity = Binder.clearCallingIdentity();
2879 try {
2880 List<UserInfo> users = mUserManager.getUsers(true);
2881
2882 final int userCount = users.size();
2883 for (int i = 0; i < userCount; i++) {
2884 final int userId = users.get(i).id;
2885
2886 DatabaseHelper dbHelper = new DatabaseHelper(getContext(), userId);
2887 SQLiteDatabase database = dbHelper.getWritableDatabase();
2888 migrateLegacySettingsForUserLocked(dbHelper, database, userId);
2889
2890 // Upgrade to the latest version.
2891 UpgradeController upgrader = new UpgradeController(userId);
2892 upgrader.upgradeIfNeededLocked();
2893
2894 // Drop from memory if not a running user.
2895 if (!mUserManager.isUserRunning(new UserHandle(userId))) {
2896 removeUserStateLocked(userId, false);
2897 }
2898 }
2899 } finally {
2900 Binder.restoreCallingIdentity(identity);
2901 }
2902 }
2903 }
2904
2905 private void migrateLegacySettingsForUserIfNeededLocked(int userId) {
2906 // Every user has secure settings and if no file we need to migrate.
2907 final int secureKey = makeKey(SETTINGS_TYPE_SECURE, userId);
2908 File secureFile = getSettingsFile(secureKey);
Amith Yamasani74bf71b2017-07-19 16:49:52 -07002909 if (SettingsState.stateFileExists(secureFile)) {
Svetoslav683914b2015-01-15 14:22:26 -08002910 return;
2911 }
2912
2913 DatabaseHelper dbHelper = new DatabaseHelper(getContext(), userId);
2914 SQLiteDatabase database = dbHelper.getWritableDatabase();
2915
2916 migrateLegacySettingsForUserLocked(dbHelper, database, userId);
2917 }
2918
2919 private void migrateLegacySettingsForUserLocked(DatabaseHelper dbHelper,
2920 SQLiteDatabase database, int userId) {
Amith Yamasanibf2ef612016-03-07 16:37:18 -08002921 // Move over the system settings.
2922 final int systemKey = makeKey(SETTINGS_TYPE_SYSTEM, userId);
2923 ensureSettingsStateLocked(systemKey);
2924 SettingsState systemSettings = mSettingsStates.get(systemKey);
2925 migrateLegacySettingsLocked(systemSettings, database, TABLE_SYSTEM);
2926 systemSettings.persistSyncLocked();
Svetoslav683914b2015-01-15 14:22:26 -08002927
2928 // Move over the secure settings.
Amith Yamasanibf2ef612016-03-07 16:37:18 -08002929 // Do this after System settings, since this is the first thing we check when deciding
2930 // to skip over migration from db to xml for a secondary user.
Svetoslav683914b2015-01-15 14:22:26 -08002931 final int secureKey = makeKey(SETTINGS_TYPE_SECURE, userId);
2932 ensureSettingsStateLocked(secureKey);
2933 SettingsState secureSettings = mSettingsStates.get(secureKey);
2934 migrateLegacySettingsLocked(secureSettings, database, TABLE_SECURE);
2935 ensureSecureSettingAndroidIdSetLocked(secureSettings);
2936 secureSettings.persistSyncLocked();
2937
Amith Yamasanibf2ef612016-03-07 16:37:18 -08002938 // Move over the global settings if owner.
2939 // Do this last, since this is the first thing we check when deciding
2940 // to skip over migration from db to xml for owner user.
2941 if (userId == UserHandle.USER_SYSTEM) {
2942 final int globalKey = makeKey(SETTINGS_TYPE_GLOBAL, userId);
2943 ensureSettingsStateLocked(globalKey);
2944 SettingsState globalSettings = mSettingsStates.get(globalKey);
2945 migrateLegacySettingsLocked(globalSettings, database, TABLE_GLOBAL);
Amith Yamasani39452022017-03-21 15:23:47 -07002946 // If this was just created
2947 if (mSettingsCreationBuildId != null) {
2948 globalSettings.insertSettingLocked(Settings.Global.DATABASE_CREATION_BUILDID,
2949 mSettingsCreationBuildId, null, true,
2950 SettingsState.SYSTEM_PACKAGE_NAME);
2951 }
Amith Yamasanibf2ef612016-03-07 16:37:18 -08002952 globalSettings.persistSyncLocked();
2953 }
Svetoslav683914b2015-01-15 14:22:26 -08002954
2955 // Drop the database as now all is moved and persisted.
2956 if (DROP_DATABASE_ON_MIGRATION) {
2957 dbHelper.dropDatabase();
2958 } else {
2959 dbHelper.backupDatabase();
2960 }
2961 }
2962
2963 private void migrateLegacySettingsLocked(SettingsState settingsState,
2964 SQLiteDatabase database, String table) {
2965 SQLiteQueryBuilder queryBuilder = new SQLiteQueryBuilder();
2966 queryBuilder.setTables(table);
2967
2968 Cursor cursor = queryBuilder.query(database, ALL_COLUMNS,
2969 null, null, null, null, null);
2970
2971 if (cursor == null) {
2972 return;
2973 }
2974
2975 try {
2976 if (!cursor.moveToFirst()) {
2977 return;
2978 }
2979
2980 final int nameColumnIdx = cursor.getColumnIndex(Settings.NameValueTable.NAME);
2981 final int valueColumnIdx = cursor.getColumnIndex(Settings.NameValueTable.VALUE);
2982
2983 settingsState.setVersionLocked(database.getVersion());
2984
2985 while (!cursor.isAfterLast()) {
2986 String name = cursor.getString(nameColumnIdx);
2987 String value = cursor.getString(valueColumnIdx);
Svetoslav Ganove080da92016-12-21 17:10:35 -08002988 settingsState.insertSettingLocked(name, value, null, true,
Svetoslav683914b2015-01-15 14:22:26 -08002989 SettingsState.SYSTEM_PACKAGE_NAME);
2990 cursor.moveToNext();
2991 }
2992 } finally {
2993 cursor.close();
2994 }
2995 }
2996
Andreas Gampeb58893072018-09-05 16:52:31 -07002997 @GuardedBy("secureSettings.mLock")
Svetoslav683914b2015-01-15 14:22:26 -08002998 private void ensureSecureSettingAndroidIdSetLocked(SettingsState secureSettings) {
2999 Setting value = secureSettings.getSettingLocked(Settings.Secure.ANDROID_ID);
3000
Seigo Nonaka6e5b6022016-04-27 16:32:44 +09003001 if (!value.isNull()) {
Svetoslav683914b2015-01-15 14:22:26 -08003002 return;
3003 }
3004
3005 final int userId = getUserIdFromKey(secureSettings.mKey);
3006
3007 final UserInfo user;
3008 final long identity = Binder.clearCallingIdentity();
3009 try {
3010 user = mUserManager.getUserInfo(userId);
3011 } finally {
3012 Binder.restoreCallingIdentity(identity);
3013 }
3014 if (user == null) {
3015 // Can happen due to races when deleting users - treat as benign.
3016 return;
3017 }
3018
3019 String androidId = Long.toHexString(new SecureRandom().nextLong());
3020 secureSettings.insertSettingLocked(Settings.Secure.ANDROID_ID, androidId,
Svetoslav Ganove080da92016-12-21 17:10:35 -08003021 null, true, SettingsState.SYSTEM_PACKAGE_NAME);
Svetoslav683914b2015-01-15 14:22:26 -08003022
3023 Slog.d(LOG_TAG, "Generated and saved new ANDROID_ID [" + androidId
3024 + "] for user " + userId);
3025
3026 // Write a drop box entry if it's a restricted profile
3027 if (user.isRestricted()) {
3028 DropBoxManager dbm = (DropBoxManager) getContext().getSystemService(
3029 Context.DROPBOX_SERVICE);
3030 if (dbm != null && dbm.isTagEnabled(DROPBOX_TAG_USERLOG)) {
3031 dbm.addText(DROPBOX_TAG_USERLOG, System.currentTimeMillis()
3032 + "," + DROPBOX_TAG_USERLOG + "," + androidId + "\n");
3033 }
3034 }
3035 }
3036
3037 private void notifyForSettingsChange(int key, String name) {
Svet Ganov945864c2018-03-22 21:49:10 -07003038 // Increment the generation first, so observers always see the new value
Phil Weaver83fec002016-05-11 10:55:29 -07003039 mGenerationRegistry.incrementGeneration(key);
3040
Svet Ganov945864c2018-03-22 21:49:10 -07003041 if (isGlobalSettingsKey(key)) {
Jeff Sharkey308093f2018-03-25 22:53:29 -06003042 final long token = Binder.clearCallingIdentity();
3043 try {
3044 if (Global.LOCATION_GLOBAL_KILL_SWITCH.equals(name)) {
3045 // When the global kill switch is updated, send the
3046 // change notification for the location setting.
3047 notifyLocationChangeForRunningUsers();
3048 }
3049 notifyGlobalSettingChangeForRunningUsers(key, name);
3050 } finally {
3051 Binder.restoreCallingIdentity(token);
Svet Ganov945864c2018-03-22 21:49:10 -07003052 }
Svet Ganov945864c2018-03-22 21:49:10 -07003053 } else {
3054 final int userId = getUserIdFromKey(key);
3055 final Uri uri = getNotificationUriFor(key, name);
3056 mHandler.obtainMessage(MyHandler.MSG_NOTIFY_URI_CHANGED,
3057 userId, 0, uri).sendToTarget();
3058 if (isSecureSettingsKey(key)) {
3059 maybeNotifyProfiles(getTypeFromKey(key), userId, uri, name,
3060 sSecureCloneToManagedSettings);
3061 maybeNotifyProfiles(SETTINGS_TYPE_SYSTEM, userId, uri, name,
3062 sSystemCloneFromParentOnDependency.values());
3063 } else if (isSystemSettingsKey(key)) {
3064 maybeNotifyProfiles(getTypeFromKey(key), userId, uri, name,
3065 sSystemCloneToManagedSettings);
3066 }
Nicolas Prevot310e1ee2015-07-02 14:03:06 +01003067 }
Svet Ganov53a441c2016-04-19 19:38:00 -07003068
Svet Ganov945864c2018-03-22 21:49:10 -07003069 // Always notify that our data changed
Svet Ganov53a441c2016-04-19 19:38:00 -07003070 mHandler.obtainMessage(MyHandler.MSG_NOTIFY_DATA_CHANGED).sendToTarget();
Nicolas Prevot310e1ee2015-07-02 14:03:06 +01003071 }
3072
Svet Ganov53a441c2016-04-19 19:38:00 -07003073 private void maybeNotifyProfiles(int type, int userId, Uri uri, String name,
Robin Lee7af9a742017-02-20 14:47:30 +00003074 Collection<String> keysCloned) {
Nicolas Prevot310e1ee2015-07-02 14:03:06 +01003075 if (keysCloned.contains(name)) {
Fyodor Kupolov7f98aa42016-04-07 14:56:25 -07003076 for (int profileId : mUserManager.getProfileIdsWithDisabled(userId)) {
Nicolas Prevot310e1ee2015-07-02 14:03:06 +01003077 // the notification for userId has already been sent.
Fyodor Kupolov7f98aa42016-04-07 14:56:25 -07003078 if (profileId != userId) {
Svet Ganov945864c2018-03-22 21:49:10 -07003079 final int key = makeKey(type, profileId);
3080 // Increment the generation first, so observers always see the new value
3081 mGenerationRegistry.incrementGeneration(key);
Svetoslav7e0683b2015-08-03 16:02:52 -07003082 mHandler.obtainMessage(MyHandler.MSG_NOTIFY_URI_CHANGED,
Fyodor Kupolov7f98aa42016-04-07 14:56:25 -07003083 profileId, 0, uri).sendToTarget();
Nicolas Prevot310e1ee2015-07-02 14:03:06 +01003084 }
3085 }
3086 }
Svetoslav683914b2015-01-15 14:22:26 -08003087 }
3088
Svet Ganov945864c2018-03-22 21:49:10 -07003089 private void notifyGlobalSettingChangeForRunningUsers(int key, String name) {
3090 // Important: No need to update generation for each user as there
3091 // is a singleton generation entry for the global settings which
3092 // is already incremented be the caller.
3093 final Uri uri = getNotificationUriFor(key, name);
3094 final List<UserInfo> users = mUserManager.getUsers(/*excludeDying*/ true);
3095 for (int i = 0; i < users.size(); i++) {
3096 final int userId = users.get(i).id;
3097 if (mUserManager.isUserRunning(UserHandle.of(userId))) {
3098 mHandler.obtainMessage(MyHandler.MSG_NOTIFY_URI_CHANGED,
3099 userId, 0, uri).sendToTarget();
3100 }
3101 }
3102 }
3103
Makoto Onuki0000d322017-11-28 16:31:47 -08003104 private void notifyLocationChangeForRunningUsers() {
3105 final List<UserInfo> users = mUserManager.getUsers(/*excludeDying=*/ true);
3106
3107 for (int i = 0; i < users.size(); i++) {
3108 final int userId = users.get(i).id;
3109
3110 if (!mUserManager.isUserRunning(UserHandle.of(userId))) {
3111 continue;
3112 }
Makoto Onuki0000d322017-11-28 16:31:47 -08003113
Svet Ganov945864c2018-03-22 21:49:10 -07003114 // Increment the generation first, so observers always see the new value
3115 final int key = makeKey(SETTINGS_TYPE_SECURE, userId);
3116 mGenerationRegistry.incrementGeneration(key);
3117
3118 final Uri uri = getNotificationUriFor(key, Secure.LOCATION_PROVIDERS_ALLOWED);
Makoto Onuki0000d322017-11-28 16:31:47 -08003119 mHandler.obtainMessage(MyHandler.MSG_NOTIFY_URI_CHANGED,
3120 userId, 0, uri).sendToTarget();
3121 }
3122 }
3123
Matt Pape1b31a332018-10-17 09:58:28 -07003124 private boolean isConfigSettingsKey(int key) {
3125 return getTypeFromKey(key) == SETTINGS_TYPE_CONFIG;
3126 }
3127
Svetoslav683914b2015-01-15 14:22:26 -08003128 private boolean isGlobalSettingsKey(int key) {
3129 return getTypeFromKey(key) == SETTINGS_TYPE_GLOBAL;
3130 }
3131
3132 private boolean isSystemSettingsKey(int key) {
3133 return getTypeFromKey(key) == SETTINGS_TYPE_SYSTEM;
3134 }
3135
3136 private boolean isSecureSettingsKey(int key) {
3137 return getTypeFromKey(key) == SETTINGS_TYPE_SECURE;
3138 }
3139
Mark Rathjend891f012017-01-19 04:10:37 +00003140 private boolean isSsaidSettingsKey(int key) {
3141 return getTypeFromKey(key) == SETTINGS_TYPE_SSAID;
3142 }
3143
Svetoslav683914b2015-01-15 14:22:26 -08003144 private File getSettingsFile(int key) {
Matt Pape1b31a332018-10-17 09:58:28 -07003145 if (isConfigSettingsKey(key)) {
3146 final int userId = getUserIdFromKey(key);
3147 return new File(Environment.getUserSystemDirectory(userId),
3148 SETTINGS_FILE_CONFIG);
3149 } else if (isGlobalSettingsKey(key)) {
Svetoslav683914b2015-01-15 14:22:26 -08003150 final int userId = getUserIdFromKey(key);
3151 return new File(Environment.getUserSystemDirectory(userId),
3152 SETTINGS_FILE_GLOBAL);
3153 } else if (isSystemSettingsKey(key)) {
3154 final int userId = getUserIdFromKey(key);
3155 return new File(Environment.getUserSystemDirectory(userId),
3156 SETTINGS_FILE_SYSTEM);
3157 } else if (isSecureSettingsKey(key)) {
3158 final int userId = getUserIdFromKey(key);
3159 return new File(Environment.getUserSystemDirectory(userId),
3160 SETTINGS_FILE_SECURE);
Mark Rathjend891f012017-01-19 04:10:37 +00003161 } else if (isSsaidSettingsKey(key)) {
3162 final int userId = getUserIdFromKey(key);
3163 return new File(Environment.getUserSystemDirectory(userId),
3164 SETTINGS_FILE_SSAID);
Svetoslav683914b2015-01-15 14:22:26 -08003165 } else {
3166 throw new IllegalArgumentException("Invalid settings key:" + key);
3167 }
3168 }
3169
3170 private Uri getNotificationUriFor(int key, String name) {
Matt Pape1b31a332018-10-17 09:58:28 -07003171 if (isConfigSettingsKey(key)) {
Matt Pape1278d1c2018-12-11 13:03:49 -08003172 return (name != null) ? Uri.withAppendedPath(DeviceConfig.CONTENT_URI, name)
3173 : DeviceConfig.CONTENT_URI;
Matt Pape1b31a332018-10-17 09:58:28 -07003174 } else if (isGlobalSettingsKey(key)) {
Svetoslav683914b2015-01-15 14:22:26 -08003175 return (name != null) ? Uri.withAppendedPath(Settings.Global.CONTENT_URI, name)
3176 : Settings.Global.CONTENT_URI;
3177 } else if (isSecureSettingsKey(key)) {
3178 return (name != null) ? Uri.withAppendedPath(Settings.Secure.CONTENT_URI, name)
3179 : Settings.Secure.CONTENT_URI;
3180 } else if (isSystemSettingsKey(key)) {
3181 return (name != null) ? Uri.withAppendedPath(Settings.System.CONTENT_URI, name)
3182 : Settings.System.CONTENT_URI;
3183 } else {
3184 throw new IllegalArgumentException("Invalid settings key:" + key);
3185 }
3186 }
3187
3188 private int getMaxBytesPerPackageForType(int type) {
3189 switch (type) {
Matt Pape1b31a332018-10-17 09:58:28 -07003190 case SETTINGS_TYPE_CONFIG:
Svetoslav683914b2015-01-15 14:22:26 -08003191 case SETTINGS_TYPE_GLOBAL:
Mark Rathjend891f012017-01-19 04:10:37 +00003192 case SETTINGS_TYPE_SECURE:
3193 case SETTINGS_TYPE_SSAID: {
Svetoslav683914b2015-01-15 14:22:26 -08003194 return SettingsState.MAX_BYTES_PER_APP_PACKAGE_UNLIMITED;
3195 }
3196
3197 default: {
3198 return SettingsState.MAX_BYTES_PER_APP_PACKAGE_LIMITED;
3199 }
3200 }
3201 }
3202
Svetoslav7e0683b2015-08-03 16:02:52 -07003203 private final class MyHandler extends Handler {
3204 private static final int MSG_NOTIFY_URI_CHANGED = 1;
3205 private static final int MSG_NOTIFY_DATA_CHANGED = 2;
3206
3207 public MyHandler(Looper looper) {
3208 super(looper);
3209 }
3210
3211 @Override
3212 public void handleMessage(Message msg) {
3213 switch (msg.what) {
3214 case MSG_NOTIFY_URI_CHANGED: {
3215 final int userId = msg.arg1;
3216 Uri uri = (Uri) msg.obj;
Jeff Sharkey88f9d0b2017-08-11 15:29:40 -06003217 try {
3218 getContext().getContentResolver().notifyChange(uri, null, true, userId);
3219 } catch (SecurityException e) {
3220 Slog.w(LOG_TAG, "Failed to notify for " + userId + ": " + uri, e);
3221 }
Makoto Onuki0000d322017-11-28 16:31:47 -08003222 if (DEBUG || true) {
Svetoslav7e0683b2015-08-03 16:02:52 -07003223 Slog.v(LOG_TAG, "Notifying for " + userId + ": " + uri);
3224 }
3225 } break;
3226
3227 case MSG_NOTIFY_DATA_CHANGED: {
3228 mBackupManager.dataChanged();
3229 } break;
3230 }
3231 }
3232 }
3233
Svetoslav683914b2015-01-15 14:22:26 -08003234 private final class UpgradeController {
Soonil Nagarkar42da1b12019-01-22 11:29:27 -08003235 private static final int SETTINGS_VERSION = 173;
Svetoslav683914b2015-01-15 14:22:26 -08003236
3237 private final int mUserId;
3238
3239 public UpgradeController(int userId) {
3240 mUserId = userId;
3241 }
3242
3243 public void upgradeIfNeededLocked() {
3244 // The version of all settings for a user is the same (all users have secure).
3245 SettingsState secureSettings = getSettingsLocked(
Svet Ganov53a441c2016-04-19 19:38:00 -07003246 SETTINGS_TYPE_SECURE, mUserId);
Svetoslav683914b2015-01-15 14:22:26 -08003247
3248 // Try an update from the current state.
3249 final int oldVersion = secureSettings.getVersionLocked();
3250 final int newVersion = SETTINGS_VERSION;
3251
Svet Ganovc9755bc2015-03-28 13:21:22 -07003252 // If up do date - done.
Svetoslav683914b2015-01-15 14:22:26 -08003253 if (oldVersion == newVersion) {
3254 return;
3255 }
3256
3257 // Try to upgrade.
3258 final int curVersion = onUpgradeLocked(mUserId, oldVersion, newVersion);
3259
3260 // If upgrade failed start from scratch and upgrade.
3261 if (curVersion != newVersion) {
3262 // Drop state we have for this user.
3263 removeUserStateLocked(mUserId, true);
3264
3265 // Recreate the database.
3266 DatabaseHelper dbHelper = new DatabaseHelper(getContext(), mUserId);
3267 SQLiteDatabase database = dbHelper.getWritableDatabase();
3268 dbHelper.recreateDatabase(database, newVersion, curVersion, oldVersion);
3269
3270 // Migrate the settings for this user.
3271 migrateLegacySettingsForUserLocked(dbHelper, database, mUserId);
3272
3273 // Now upgrade should work fine.
3274 onUpgradeLocked(mUserId, oldVersion, newVersion);
Svetoslav Ganov264c7a92016-08-24 17:31:14 -07003275
3276 // Make a note what happened, so we don't wonder why data was lost
3277 String reason = "Settings rebuilt! Current version: "
3278 + curVersion + " while expected: " + newVersion;
3279 getGlobalSettingsLocked().insertSettingLocked(
Svetoslav Ganove080da92016-12-21 17:10:35 -08003280 Settings.Global.DATABASE_DOWNGRADE_REASON,
3281 reason, null, true, SettingsState.SYSTEM_PACKAGE_NAME);
Svetoslav683914b2015-01-15 14:22:26 -08003282 }
3283
3284 // Set the global settings version if owner.
Xiaohui Chen43765b72015-08-31 10:57:33 -07003285 if (mUserId == UserHandle.USER_SYSTEM) {
Svetoslav683914b2015-01-15 14:22:26 -08003286 SettingsState globalSettings = getSettingsLocked(
Svet Ganov53a441c2016-04-19 19:38:00 -07003287 SETTINGS_TYPE_GLOBAL, mUserId);
Svetoslav683914b2015-01-15 14:22:26 -08003288 globalSettings.setVersionLocked(newVersion);
3289 }
3290
3291 // Set the secure settings version.
3292 secureSettings.setVersionLocked(newVersion);
3293
3294 // Set the system settings version.
3295 SettingsState systemSettings = getSettingsLocked(
Svet Ganov53a441c2016-04-19 19:38:00 -07003296 SETTINGS_TYPE_SYSTEM, mUserId);
Svetoslav683914b2015-01-15 14:22:26 -08003297 systemSettings.setVersionLocked(newVersion);
3298 }
3299
3300 private SettingsState getGlobalSettingsLocked() {
Xiaohui Chen43765b72015-08-31 10:57:33 -07003301 return getSettingsLocked(SETTINGS_TYPE_GLOBAL, UserHandle.USER_SYSTEM);
Svetoslav683914b2015-01-15 14:22:26 -08003302 }
3303
3304 private SettingsState getSecureSettingsLocked(int userId) {
3305 return getSettingsLocked(SETTINGS_TYPE_SECURE, userId);
3306 }
3307
Mark Rathjend891f012017-01-19 04:10:37 +00003308 private SettingsState getSsaidSettingsLocked(int userId) {
3309 return getSettingsLocked(SETTINGS_TYPE_SSAID, userId);
3310 }
3311
Svetoslav683914b2015-01-15 14:22:26 -08003312 private SettingsState getSystemSettingsLocked(int userId) {
3313 return getSettingsLocked(SETTINGS_TYPE_SYSTEM, userId);
3314 }
3315
Jeff Brown503cffc2015-03-26 18:08:51 -07003316 /**
3317 * You must perform all necessary mutations to bring the settings
3318 * for this user from the old to the new version. When you add a new
3319 * upgrade step you *must* update SETTINGS_VERSION.
3320 *
3321 * This is an example of moving a setting from secure to global.
3322 *
3323 * // v119: Example settings changes.
3324 * if (currentVersion == 118) {
3325 * if (userId == UserHandle.USER_OWNER) {
3326 * // Remove from the secure settings.
3327 * SettingsState secureSettings = getSecureSettingsLocked(userId);
3328 * String name = "example_setting_to_move";
3329 * String value = secureSettings.getSetting(name);
3330 * secureSettings.deleteSetting(name);
3331 *
3332 * // Add to the global settings.
3333 * SettingsState globalSettings = getGlobalSettingsLocked();
3334 * globalSettings.insertSetting(name, value, SettingsState.SYSTEM_PACKAGE_NAME);
3335 * }
3336 *
3337 * // Update the current version.
3338 * currentVersion = 119;
3339 * }
3340 */
Svetoslav683914b2015-01-15 14:22:26 -08003341 private int onUpgradeLocked(int userId, int oldVersion, int newVersion) {
3342 if (DEBUG) {
3343 Slog.w(LOG_TAG, "Upgrading settings for user: " + userId + " from version: "
3344 + oldVersion + " to version: " + newVersion);
3345 }
3346
Jeff Brown503cffc2015-03-26 18:08:51 -07003347 int currentVersion = oldVersion;
Svetoslav683914b2015-01-15 14:22:26 -08003348
John Spurlocke11ae112015-05-11 16:09:03 -04003349 // v119: Reset zen + ringer mode.
3350 if (currentVersion == 118) {
Xiaohui Chen43765b72015-08-31 10:57:33 -07003351 if (userId == UserHandle.USER_SYSTEM) {
John Spurlocke11ae112015-05-11 16:09:03 -04003352 final SettingsState globalSettings = getGlobalSettingsLocked();
3353 globalSettings.updateSettingLocked(Settings.Global.ZEN_MODE,
Svetoslav Ganove080da92016-12-21 17:10:35 -08003354 Integer.toString(Settings.Global.ZEN_MODE_OFF), null,
3355 true, SettingsState.SYSTEM_PACKAGE_NAME);
John Spurlocke11ae112015-05-11 16:09:03 -04003356 globalSettings.updateSettingLocked(Settings.Global.MODE_RINGER,
Svetoslav Ganove080da92016-12-21 17:10:35 -08003357 Integer.toString(AudioManager.RINGER_MODE_NORMAL), null,
3358 true, SettingsState.SYSTEM_PACKAGE_NAME);
John Spurlocke11ae112015-05-11 16:09:03 -04003359 }
3360 currentVersion = 119;
3361 }
3362
Jason Monk27bbb2d2015-03-31 16:46:39 -04003363 // v120: Add double tap to wake setting.
3364 if (currentVersion == 119) {
3365 SettingsState secureSettings = getSecureSettingsLocked(userId);
3366 secureSettings.insertSettingLocked(Settings.Secure.DOUBLE_TAP_TO_WAKE,
3367 getContext().getResources().getBoolean(
Svetoslav Ganove080da92016-12-21 17:10:35 -08003368 R.bool.def_double_tap_to_wake) ? "1" : "0", null, true,
Jason Monk27bbb2d2015-03-31 16:46:39 -04003369 SettingsState.SYSTEM_PACKAGE_NAME);
3370
3371 currentVersion = 120;
3372 }
3373
Svetoslav7e0683b2015-08-03 16:02:52 -07003374 if (currentVersion == 120) {
3375 // Before 121, we used a different string encoding logic. We just bump the
3376 // version here; SettingsState knows how to handle pre-version 120 files.
3377 currentVersion = 121;
3378 }
Makoto Onuki3a2c35782015-06-18 11:21:58 -07003379
Martijn Coenen7ab4b7f2015-07-27 15:58:32 +02003380 if (currentVersion == 121) {
3381 // Version 122: allow OEMs to set a default payment component in resources.
3382 // Note that we only write the default if no default has been set;
3383 // if there is, we just leave the default at whatever it currently is.
3384 final SettingsState secureSettings = getSecureSettingsLocked(userId);
3385 String defaultComponent = (getContext().getResources().getString(
3386 R.string.def_nfc_payment_component));
3387 Setting currentSetting = secureSettings.getSettingLocked(
3388 Settings.Secure.NFC_PAYMENT_DEFAULT_COMPONENT);
3389 if (defaultComponent != null && !defaultComponent.isEmpty() &&
Svetoslav Ganovfedb2302016-04-26 18:36:42 -07003390 currentSetting.isNull()) {
Martijn Coenen7ab4b7f2015-07-27 15:58:32 +02003391 secureSettings.insertSettingLocked(
3392 Settings.Secure.NFC_PAYMENT_DEFAULT_COMPONENT,
Svetoslav Ganove080da92016-12-21 17:10:35 -08003393 defaultComponent, null, true, SettingsState.SYSTEM_PACKAGE_NAME);
Martijn Coenen7ab4b7f2015-07-27 15:58:32 +02003394 }
3395 currentVersion = 122;
3396 }
Suprabh Shukla269c11e2015-12-02 16:51:16 -08003397
3398 if (currentVersion == 122) {
3399 // Version 123: Adding a default value for the ability to add a user from
3400 // the lock screen.
3401 if (userId == UserHandle.USER_SYSTEM) {
3402 final SettingsState globalSettings = getGlobalSettingsLocked();
3403 Setting currentSetting = globalSettings.getSettingLocked(
3404 Settings.Global.ADD_USERS_WHEN_LOCKED);
Svetoslav Ganovfedb2302016-04-26 18:36:42 -07003405 if (currentSetting.isNull()) {
Suprabh Shukla269c11e2015-12-02 16:51:16 -08003406 globalSettings.insertSettingLocked(
3407 Settings.Global.ADD_USERS_WHEN_LOCKED,
3408 getContext().getResources().getBoolean(
3409 R.bool.def_add_users_from_lockscreen) ? "1" : "0",
Svetoslav Ganove080da92016-12-21 17:10:35 -08003410 null, true, SettingsState.SYSTEM_PACKAGE_NAME);
Suprabh Shukla269c11e2015-12-02 16:51:16 -08003411 }
3412 }
3413 currentVersion = 123;
3414 }
Bryce Leebd179282015-12-17 19:01:37 -08003415
3416 if (currentVersion == 123) {
Bryce Leeec85f342015-12-16 13:32:28 -08003417 final SettingsState globalSettings = getGlobalSettingsLocked();
3418 String defaultDisabledProfiles = (getContext().getResources().getString(
3419 R.string.def_bluetooth_disabled_profiles));
3420 globalSettings.insertSettingLocked(Settings.Global.BLUETOOTH_DISABLED_PROFILES,
Svetoslav Ganove080da92016-12-21 17:10:35 -08003421 defaultDisabledProfiles, null, true, SettingsState.SYSTEM_PACKAGE_NAME);
Bryce Leebd179282015-12-17 19:01:37 -08003422 currentVersion = 124;
Bryce Leeec85f342015-12-16 13:32:28 -08003423 }
3424
Prathmesh Prabhude16b862016-03-04 15:22:24 -08003425 if (currentVersion == 124) {
3426 // Version 124: allow OEMs to set a default value for whether IME should be
3427 // shown when a physical keyboard is connected.
3428 final SettingsState secureSettings = getSecureSettingsLocked(userId);
3429 Setting currentSetting = secureSettings.getSettingLocked(
3430 Settings.Secure.SHOW_IME_WITH_HARD_KEYBOARD);
Svetoslav Ganovfedb2302016-04-26 18:36:42 -07003431 if (currentSetting.isNull()) {
Prathmesh Prabhude16b862016-03-04 15:22:24 -08003432 secureSettings.insertSettingLocked(
3433 Settings.Secure.SHOW_IME_WITH_HARD_KEYBOARD,
3434 getContext().getResources().getBoolean(
3435 R.bool.def_show_ime_with_hard_keyboard) ? "1" : "0",
Svetoslav Ganove080da92016-12-21 17:10:35 -08003436 null, true, SettingsState.SYSTEM_PACKAGE_NAME);
Prathmesh Prabhude16b862016-03-04 15:22:24 -08003437 }
3438 currentVersion = 125;
3439 }
3440
Ruben Brunk98576cf2016-03-07 18:54:28 -08003441 if (currentVersion == 125) {
3442 // Version 125: Allow OEMs to set the default VR service.
3443 final SettingsState secureSettings = getSecureSettingsLocked(userId);
3444
3445 Setting currentSetting = secureSettings.getSettingLocked(
3446 Settings.Secure.ENABLED_VR_LISTENERS);
Svetoslav Ganovfedb2302016-04-26 18:36:42 -07003447 if (currentSetting.isNull()) {
Ruben Brunk98576cf2016-03-07 18:54:28 -08003448 ArraySet<ComponentName> l =
3449 SystemConfig.getInstance().getDefaultVrComponents();
3450
3451 if (l != null && !l.isEmpty()) {
3452 StringBuilder b = new StringBuilder();
3453 boolean start = true;
3454 for (ComponentName c : l) {
3455 if (!start) {
3456 b.append(':');
3457 }
3458 b.append(c.flattenToString());
3459 start = false;
3460 }
3461 secureSettings.insertSettingLocked(
3462 Settings.Secure.ENABLED_VR_LISTENERS, b.toString(),
Svetoslav Ganove080da92016-12-21 17:10:35 -08003463 null, true, SettingsState.SYSTEM_PACKAGE_NAME);
Ruben Brunk98576cf2016-03-07 18:54:28 -08003464 }
3465
3466 }
3467 currentVersion = 126;
3468 }
3469
Daniel U02ba6122016-04-01 18:41:42 +01003470 if (currentVersion == 126) {
3471 // Version 126: copy the primary values of LOCK_SCREEN_SHOW_NOTIFICATIONS and
3472 // LOCK_SCREEN_ALLOW_PRIVATE_NOTIFICATIONS into managed profile.
3473 if (mUserManager.isManagedProfile(userId)) {
3474 final SettingsState systemSecureSettings =
3475 getSecureSettingsLocked(UserHandle.USER_SYSTEM);
3476
3477 final Setting showNotifications = systemSecureSettings.getSettingLocked(
3478 Settings.Secure.LOCK_SCREEN_SHOW_NOTIFICATIONS);
Seigo Nonaka6e5b6022016-04-27 16:32:44 +09003479 if (!showNotifications.isNull()) {
Daniel U02ba6122016-04-01 18:41:42 +01003480 final SettingsState secureSettings = getSecureSettingsLocked(userId);
3481 secureSettings.insertSettingLocked(
3482 Settings.Secure.LOCK_SCREEN_SHOW_NOTIFICATIONS,
Svetoslav Ganove080da92016-12-21 17:10:35 -08003483 showNotifications.getValue(), null, true,
Daniel U02ba6122016-04-01 18:41:42 +01003484 SettingsState.SYSTEM_PACKAGE_NAME);
3485 }
3486
3487 final Setting allowPrivate = systemSecureSettings.getSettingLocked(
3488 Settings.Secure.LOCK_SCREEN_ALLOW_PRIVATE_NOTIFICATIONS);
Seigo Nonaka6e5b6022016-04-27 16:32:44 +09003489 if (!allowPrivate.isNull()) {
Daniel U02ba6122016-04-01 18:41:42 +01003490 final SettingsState secureSettings = getSecureSettingsLocked(userId);
3491 secureSettings.insertSettingLocked(
3492 Settings.Secure.LOCK_SCREEN_ALLOW_PRIVATE_NOTIFICATIONS,
Svetoslav Ganove080da92016-12-21 17:10:35 -08003493 allowPrivate.getValue(), null, true,
Daniel U02ba6122016-04-01 18:41:42 +01003494 SettingsState.SYSTEM_PACKAGE_NAME);
3495 }
3496 }
3497 currentVersion = 127;
3498 }
3499
Steven Ngdc20ba62016-04-26 18:19:04 +01003500 if (currentVersion == 127) {
Mahaver Chopra3d9805d2016-07-07 16:25:05 +01003501 // version 127 is no longer used.
Steven Ngdc20ba62016-04-26 18:19:04 +01003502 currentVersion = 128;
3503 }
3504
Julia Reynolds1f721e12016-07-11 08:50:58 -04003505 if (currentVersion == 128) {
Julia Reynoldsb852e562017-06-06 16:14:18 -04003506 // Version 128: Removed
Julia Reynolds1f721e12016-07-11 08:50:58 -04003507 currentVersion = 129;
3508 }
3509
Dan Sandler71f85e92016-07-20 13:46:05 -04003510 if (currentVersion == 129) {
3511 // default longpress timeout changed from 500 to 400. If unchanged from the old
3512 // default, update to the new default.
3513 final SettingsState systemSecureSettings =
3514 getSecureSettingsLocked(userId);
3515 final String oldValue = systemSecureSettings.getSettingLocked(
3516 Settings.Secure.LONG_PRESS_TIMEOUT).getValue();
3517 if (TextUtils.equals("500", oldValue)) {
3518 systemSecureSettings.insertSettingLocked(
3519 Settings.Secure.LONG_PRESS_TIMEOUT,
3520 String.valueOf(getContext().getResources().getInteger(
3521 R.integer.def_long_press_timeout_millis)),
Svetoslav Ganove080da92016-12-21 17:10:35 -08003522 null, true, SettingsState.SYSTEM_PACKAGE_NAME);
Dan Sandler71f85e92016-07-20 13:46:05 -04003523 }
3524 currentVersion = 130;
3525 }
3526
Anthony Hugh96e9cc52016-07-12 15:17:24 -07003527 if (currentVersion == 130) {
Adrian Roos69741a22016-10-21 14:49:17 -07003528 // Split Ambient settings
3529 final SettingsState secureSettings = getSecureSettingsLocked(userId);
3530 boolean dozeExplicitlyDisabled = "0".equals(secureSettings.
3531 getSettingLocked(Settings.Secure.DOZE_ENABLED).getValue());
3532
3533 if (dozeExplicitlyDisabled) {
Lucas Dupin4359b552018-08-09 15:07:54 -07003534 secureSettings.insertSettingLocked(Settings.Secure.DOZE_PICK_UP_GESTURE,
Svetoslav Ganove080da92016-12-21 17:10:35 -08003535 "0", null, true, SettingsState.SYSTEM_PACKAGE_NAME);
Lucas Dupin4359b552018-08-09 15:07:54 -07003536 secureSettings.insertSettingLocked(Settings.Secure.DOZE_DOUBLE_TAP_GESTURE,
Svetoslav Ganove080da92016-12-21 17:10:35 -08003537 "0", null, true, SettingsState.SYSTEM_PACKAGE_NAME);
Adrian Roos69741a22016-10-21 14:49:17 -07003538 }
3539 currentVersion = 131;
3540 }
3541
3542 if (currentVersion == 131) {
Anthony Hugh96e9cc52016-07-12 15:17:24 -07003543 // Initialize new multi-press timeout to default value
3544 final SettingsState systemSecureSettings = getSecureSettingsLocked(userId);
3545 final String oldValue = systemSecureSettings.getSettingLocked(
3546 Settings.Secure.MULTI_PRESS_TIMEOUT).getValue();
3547 if (TextUtils.equals(null, oldValue)) {
3548 systemSecureSettings.insertSettingLocked(
3549 Settings.Secure.MULTI_PRESS_TIMEOUT,
3550 String.valueOf(getContext().getResources().getInteger(
3551 R.integer.def_multi_press_timeout_millis)),
Svetoslav Ganove080da92016-12-21 17:10:35 -08003552 null, true, SettingsState.SYSTEM_PACKAGE_NAME);
Anthony Hugh96e9cc52016-07-12 15:17:24 -07003553 }
3554
Adrian Roos69741a22016-10-21 14:49:17 -07003555 currentVersion = 132;
Anthony Hugh96e9cc52016-07-12 15:17:24 -07003556 }
3557
Adrian Roos69741a22016-10-21 14:49:17 -07003558 if (currentVersion == 132) {
3559 // Version 132: Allow managed profile to optionally use the parent's ringtones
Andre Lagoea35e072016-08-04 13:41:13 +01003560 final SettingsState systemSecureSettings = getSecureSettingsLocked(userId);
3561 String defaultSyncParentSounds = (getContext().getResources()
3562 .getBoolean(R.bool.def_sync_parent_sounds) ? "1" : "0");
3563 systemSecureSettings.insertSettingLocked(
Svetoslav Ganove080da92016-12-21 17:10:35 -08003564 Settings.Secure.SYNC_PARENT_SOUNDS, defaultSyncParentSounds,
3565 null, true, SettingsState.SYSTEM_PACKAGE_NAME);
Adrian Roos69741a22016-10-21 14:49:17 -07003566 currentVersion = 133;
Andre Lagoea35e072016-08-04 13:41:13 +01003567 }
3568
Adrian Roos69741a22016-10-21 14:49:17 -07003569 if (currentVersion == 133) {
3570 // Version 133: Add default end button behavior
Keun-young Parkec7a1182016-10-18 11:52:38 -07003571 final SettingsState systemSettings = getSystemSettingsLocked(userId);
davidlnedb31e12018-09-25 10:21:20 -07003572 if (systemSettings.getSettingLocked(Settings.System.END_BUTTON_BEHAVIOR)
3573 .isNull()) {
Keun-young Parkec7a1182016-10-18 11:52:38 -07003574 String defaultEndButtonBehavior = Integer.toString(getContext()
3575 .getResources().getInteger(R.integer.def_end_button_behavior));
3576 systemSettings.insertSettingLocked(Settings.System.END_BUTTON_BEHAVIOR,
Svetoslav Ganove080da92016-12-21 17:10:35 -08003577 defaultEndButtonBehavior, null, true,
3578 SettingsState.SYSTEM_PACKAGE_NAME);
Keun-young Parkec7a1182016-10-18 11:52:38 -07003579 }
Adrian Roos69741a22016-10-21 14:49:17 -07003580 currentVersion = 134;
Keun-young Parkec7a1182016-10-18 11:52:38 -07003581 }
3582
Phil Weaver89e3ffc2016-09-19 13:51:10 -07003583 if (currentVersion == 134) {
3584 // Remove setting that specifies if magnification values should be preserved.
3585 // This setting defaulted to true and never has a UI.
3586 getSecureSettingsLocked(userId).deleteSettingLocked(
3587 Settings.Secure.ACCESSIBILITY_DISPLAY_MAGNIFICATION_AUTO_UPDATE);
3588 currentVersion = 135;
3589 }
3590
Jeremy Joslin8bdad342016-12-14 11:46:47 -08003591 if (currentVersion == 135) {
Jeremy Joslinc9eb3c42017-02-08 10:45:30 -08003592 // Version 135 no longer used.
Jeremy Joslin8bdad342016-12-14 11:46:47 -08003593 currentVersion = 136;
3594 }
3595
Mark Rathjend891f012017-01-19 04:10:37 +00003596 if (currentVersion == 136) {
3597 // Version 136: Store legacy SSAID for all apps currently installed on the
3598 // device as first step in migrating SSAID to be unique per application.
3599
3600 final boolean isUpgrade;
3601 try {
3602 isUpgrade = mPackageManager.isUpgrade();
3603 } catch (RemoteException e) {
3604 throw new IllegalStateException("Package manager not available");
3605 }
3606 // Only retain legacy ssaid if the device is performing an OTA. After wiping
3607 // user data or first boot on a new device should use new ssaid generation.
3608 if (isUpgrade) {
3609 // Retrieve the legacy ssaid from the secure settings table.
Mark Rathjenea617592017-01-18 23:03:41 -08003610 final Setting legacySsaidSetting = getSettingLocked(SETTINGS_TYPE_SECURE,
3611 userId, Settings.Secure.ANDROID_ID);
3612 if (legacySsaidSetting == null || legacySsaidSetting.isNull()
3613 || legacySsaidSetting.getValue() == null) {
3614 throw new IllegalStateException("Legacy ssaid not accessible");
3615 }
3616 final String legacySsaid = legacySsaidSetting.getValue();
Mark Rathjend891f012017-01-19 04:10:37 +00003617
3618 // Fill each uid with the legacy ssaid to be backwards compatible.
3619 final List<PackageInfo> packages;
3620 try {
Tetsutoki Shiozawaebe0e5f2018-01-17 11:07:09 +09003621 packages = mPackageManager.getInstalledPackages(
3622 PackageManager.MATCH_UNINSTALLED_PACKAGES,
3623 userId).getList();
Mark Rathjend891f012017-01-19 04:10:37 +00003624 } catch (RemoteException e) {
3625 throw new IllegalStateException("Package manager not available");
3626 }
3627
3628 final SettingsState ssaidSettings = getSsaidSettingsLocked(userId);
3629 for (PackageInfo info : packages) {
3630 // Check if the UID already has an entry in the table.
3631 final String uid = Integer.toString(info.applicationInfo.uid);
3632 final Setting ssaid = ssaidSettings.getSettingLocked(uid);
3633
3634 if (ssaid.isNull() || ssaid.getValue() == null) {
3635 // Android Id doesn't exist for this package so create it.
3636 ssaidSettings.insertSettingLocked(uid, legacySsaid, null, true,
3637 info.packageName);
Tetsutoki Shiozawaebe0e5f2018-01-17 11:07:09 +09003638 if (DEBUG) {
3639 Slog.d(LOG_TAG, "Keep the legacy ssaid for uid=" + uid);
3640 }
Mark Rathjend891f012017-01-19 04:10:37 +00003641 }
3642 }
3643 }
3644
3645 currentVersion = 137;
3646 }
Suprabh Shuklae3745ee2017-02-02 20:01:11 -08003647 if (currentVersion == 137) {
3648 // Version 138: Settings.Secure#INSTALL_NON_MARKET_APPS is deprecated and its
3649 // default value set to 1. The user can no longer change the value of this
3650 // setting through the UI.
3651 final SettingsState secureSetting = getSecureSettingsLocked(userId);
3652 if (!mUserManager.hasUserRestriction(
Suprabh Shukla0b1356f2017-02-21 14:33:50 -08003653 UserManager.DISALLOW_INSTALL_UNKNOWN_SOURCES, UserHandle.of(userId))
3654 && secureSetting.getSettingLocked(
3655 Settings.Secure.INSTALL_NON_MARKET_APPS).getValue().equals("0")) {
3656
Suprabh Shuklae3745ee2017-02-02 20:01:11 -08003657 secureSetting.insertSettingLocked(Settings.Secure.INSTALL_NON_MARKET_APPS,
3658 "1", null, true, SettingsState.SYSTEM_PACKAGE_NAME);
Suprabh Shukla0b1356f2017-02-21 14:33:50 -08003659 // For managed profiles with profile owners, DevicePolicyManagerService
3660 // may want to set the user restriction in this case
3661 secureSetting.insertSettingLocked(
3662 Settings.Secure.UNKNOWN_SOURCES_DEFAULT_REVERSED, "1", null, true,
3663 SettingsState.SYSTEM_PACKAGE_NAME);
Suprabh Shuklae3745ee2017-02-02 20:01:11 -08003664 }
3665 currentVersion = 138;
3666 }
Mark Rathjend891f012017-01-19 04:10:37 +00003667
Jeremy Joslinc9eb3c42017-02-08 10:45:30 -08003668 if (currentVersion == 138) {
Jeremy Joslin27d14c42017-02-15 12:02:03 -08003669 // Version 139: Removed.
Jeremy Joslinc9eb3c42017-02-08 10:45:30 -08003670 currentVersion = 139;
3671 }
3672
Phil Weaver385912e2017-02-10 10:06:56 -08003673 if (currentVersion == 139) {
3674 // Version 140: Settings.Secure#ACCESSIBILITY_SPEAK_PASSWORD is deprecated and
3675 // the user can no longer change the value of this setting through the UI.
3676 // Force to true.
3677 final SettingsState secureSettings = getSecureSettingsLocked(userId);
3678 secureSettings.updateSettingLocked(Settings.Secure.ACCESSIBILITY_SPEAK_PASSWORD,
3679 "1", null, true, SettingsState.SYSTEM_PACKAGE_NAME);
3680 currentVersion = 140;
3681 }
3682
Julia Reynoldsad0d9e02017-02-15 08:41:48 -05003683 if (currentVersion == 140) {
Julia Reynoldsb852e562017-06-06 16:14:18 -04003684 // Version 141: Removed
Julia Reynoldsad0d9e02017-02-15 08:41:48 -05003685 currentVersion = 141;
3686 }
3687
Svet Ganov13701552017-02-23 12:45:17 -08003688 if (currentVersion == 141) {
Svetoslav Ganovf7654c52017-08-16 17:33:22 -07003689 // This implementation was incorrectly setting the current value of
3690 // settings changed by non-system packages as the default which default
3691 // is set by the system. We add a new upgrade step at the end to properly
3692 // handle this case which would also fix incorrect changes made by the
3693 // old implementation of this step.
Svet Ganov13701552017-02-23 12:45:17 -08003694 currentVersion = 142;
3695 }
3696
Stephen Chen5d0922f2017-03-27 10:28:04 -07003697 if (currentVersion == 142) {
Felipe Lemeff355092017-04-03 12:55:02 -07003698 // Version 143: Set a default value for Wi-Fi wakeup feature.
Stephen Chen5d0922f2017-03-27 10:28:04 -07003699 if (userId == UserHandle.USER_SYSTEM) {
3700 final SettingsState globalSettings = getGlobalSettingsLocked();
3701 Setting currentSetting = globalSettings.getSettingLocked(
3702 Settings.Global.WIFI_WAKEUP_ENABLED);
3703 if (currentSetting.isNull()) {
3704 globalSettings.insertSettingLocked(
3705 Settings.Global.WIFI_WAKEUP_ENABLED,
3706 getContext().getResources().getBoolean(
3707 R.bool.def_wifi_wakeup_enabled) ? "1" : "0",
3708 null, true, SettingsState.SYSTEM_PACKAGE_NAME);
3709 }
3710 }
3711
3712 currentVersion = 143;
3713 }
3714
Felipe Lemeff355092017-04-03 12:55:02 -07003715 if (currentVersion == 143) {
3716 // Version 144: Set a default value for Autofill service.
3717 final SettingsState secureSettings = getSecureSettingsLocked(userId);
3718 final Setting currentSetting = secureSettings
3719 .getSettingLocked(Settings.Secure.AUTOFILL_SERVICE);
3720 if (currentSetting.isNull()) {
3721 final String defaultValue = getContext().getResources().getString(
3722 com.android.internal.R.string.config_defaultAutofillService);
3723 if (defaultValue != null) {
3724 Slog.d(LOG_TAG, "Setting [" + defaultValue + "] as Autofill Service "
3725 + "for user " + userId);
3726 secureSettings.insertSettingLocked(Settings.Secure.AUTOFILL_SERVICE,
3727 defaultValue, null, true, SettingsState.SYSTEM_PACKAGE_NAME);
3728 }
3729 }
3730
3731 currentVersion = 144;
3732 }
3733
Jeremy Joslin45caa252017-05-04 11:22:46 -07003734 if (currentVersion == 144) {
Amin Shaikh86367962017-06-07 08:58:22 -07003735 // Version 145: Removed
3736 currentVersion = 145;
3737 }
3738
3739 if (currentVersion == 145) {
Svetoslav Ganovf7654c52017-08-16 17:33:22 -07003740 // Version 146: In step 142 we had a bug where incorrectly
3741 // some settings were considered system set and as a result
3742 // made the default and marked as the default being set by
3743 // the system. Here reevaluate the default and default system
3744 // set flags. This would both fix corruption by the old impl
3745 // of step 142 and also properly handle devices which never
3746 // run 142.
Jeremy Joslin45caa252017-05-04 11:22:46 -07003747 if (userId == UserHandle.USER_SYSTEM) {
Svetoslav Ganovf7654c52017-08-16 17:33:22 -07003748 SettingsState globalSettings = getGlobalSettingsLocked();
3749 ensureLegacyDefaultValueAndSystemSetUpdatedLocked(globalSettings, userId);
3750 globalSettings.persistSyncLocked();
Jeremy Joslin45caa252017-05-04 11:22:46 -07003751 }
3752
Svetoslav Ganovf7654c52017-08-16 17:33:22 -07003753 SettingsState secureSettings = getSecureSettingsLocked(mUserId);
3754 ensureLegacyDefaultValueAndSystemSetUpdatedLocked(secureSettings, userId);
3755 secureSettings.persistSyncLocked();
3756
3757 SettingsState systemSettings = getSystemSettingsLocked(mUserId);
3758 ensureLegacyDefaultValueAndSystemSetUpdatedLocked(systemSettings, userId);
3759 systemSettings.persistSyncLocked();
3760
Amin Shaikh86367962017-06-07 08:58:22 -07003761 currentVersion = 146;
Jeremy Joslin45caa252017-05-04 11:22:46 -07003762 }
3763
Narayan Kamath94bcdbc2017-07-17 15:32:53 +01003764 if (currentVersion == 146) {
Joe LaPenna250d7842018-01-25 10:19:42 -08003765 // Version 147: Removed. (This version previously allowed showing the
3766 // "wifi_wakeup_available" setting).
3767 // The setting that was added here is deleted in 153.
Svetoslav Ganovf7654c52017-08-16 17:33:22 -07003768 currentVersion = 147;
3769 }
3770
3771 if (currentVersion == 147) {
3772 // Version 148: Set the default value for DEFAULT_RESTRICT_BACKGROUND_DATA.
Narayan Kamath94bcdbc2017-07-17 15:32:53 +01003773 if (userId == UserHandle.USER_SYSTEM) {
3774 final SettingsState globalSettings = getGlobalSettingsLocked();
3775 final Setting currentSetting = globalSettings.getSettingLocked(
3776 Global.DEFAULT_RESTRICT_BACKGROUND_DATA);
3777 if (currentSetting.isNull()) {
3778 globalSettings.insertSettingLocked(
3779 Global.DEFAULT_RESTRICT_BACKGROUND_DATA,
3780 getContext().getResources().getBoolean(
3781 R.bool.def_restrict_background_data) ? "1" : "0",
3782 null, true, SettingsState.SYSTEM_PACKAGE_NAME);
3783 }
3784 }
Svetoslav Ganovf7654c52017-08-16 17:33:22 -07003785 currentVersion = 148;
Narayan Kamath94bcdbc2017-07-17 15:32:53 +01003786 }
3787
Tim Zhengcc1e76a2017-08-30 17:46:19 -07003788 if (currentVersion == 148) {
3789 // Version 149: Set the default value for BACKUP_MANAGER_CONSTANTS.
3790 final SettingsState systemSecureSettings = getSecureSettingsLocked(userId);
3791 final String oldValue = systemSecureSettings.getSettingLocked(
3792 Settings.Secure.BACKUP_MANAGER_CONSTANTS).getValue();
3793 if (TextUtils.equals(null, oldValue)) {
3794 final String defaultValue = getContext().getResources().getString(
3795 R.string.def_backup_manager_constants);
3796 if (!TextUtils.isEmpty(defaultValue)) {
3797 systemSecureSettings.insertSettingLocked(
3798 Settings.Secure.BACKUP_MANAGER_CONSTANTS, defaultValue, null,
3799 true, SettingsState.SYSTEM_PACKAGE_NAME);
3800 }
3801 }
Tim Zhengcc1e76a2017-08-30 17:46:19 -07003802 currentVersion = 149;
3803 }
Jacky Cheung7076a312017-10-02 10:40:48 -07003804
3805 if (currentVersion == 149) {
3806 // Version 150: Set a default value for mobile data always on
3807 final SettingsState globalSettings = getGlobalSettingsLocked();
3808 final Setting currentSetting = globalSettings.getSettingLocked(
3809 Settings.Global.MOBILE_DATA_ALWAYS_ON);
3810 if (currentSetting.isNull()) {
3811 globalSettings.insertSettingLocked(
3812 Settings.Global.MOBILE_DATA_ALWAYS_ON,
3813 getContext().getResources().getBoolean(
3814 R.bool.def_mobile_data_always_on) ? "1" : "0",
3815 null, true, SettingsState.SYSTEM_PACKAGE_NAME);
3816 }
3817
3818 currentVersion = 150;
3819 }
3820
Mike Digman4af4a6f2018-01-16 14:49:38 -08003821 if (currentVersion == 150) {
Mike Digman32e03312018-05-16 16:43:23 -07003822 // Version 151: Removed.
Mike Digman4af4a6f2018-01-16 14:49:38 -08003823 currentVersion = 151;
3824 }
3825
Joe LaPenna4f50ed42018-01-22 14:54:45 -08003826 if (currentVersion == 151) {
Joe LaPenna250d7842018-01-25 10:19:42 -08003827 // Version 152: Removed. (This version made the setting for wifi_wakeup enabled
3828 // by default but it is now no longer configurable).
3829 // The setting updated here is deleted in 153.
Joe LaPenna4f50ed42018-01-22 14:54:45 -08003830 currentVersion = 152;
3831 }
3832
Joe LaPenna250d7842018-01-25 10:19:42 -08003833 if (currentVersion == 152) {
3834 getGlobalSettingsLocked().deleteSettingLocked("wifi_wakeup_available");
3835 currentVersion = 153;
3836 }
3837
Ben Linb4df8bc2018-01-29 11:48:20 -08003838 if (currentVersion == 153) {
3839 // Version 154: Read notification badge configuration from config.
3840 // If user has already set the value, don't do anything.
3841 final SettingsState systemSecureSettings = getSecureSettingsLocked(userId);
3842 final Setting showNotificationBadges = systemSecureSettings.getSettingLocked(
3843 Settings.Secure.NOTIFICATION_BADGING);
3844 if (showNotificationBadges.isNull()) {
3845 final boolean defaultValue = getContext().getResources().getBoolean(
3846 com.android.internal.R.bool.config_notificationBadging);
3847 systemSecureSettings.insertSettingLocked(
3848 Secure.NOTIFICATION_BADGING,
3849 defaultValue ? "1" : "0",
3850 null, true, SettingsState.SYSTEM_PACKAGE_NAME);
3851 }
3852 currentVersion = 154;
3853 }
3854
Bernardo Rufinoeaa78b92018-01-26 11:25:37 +00003855 if (currentVersion == 154) {
3856 // Version 155: Set the default value for BACKUP_LOCAL_TRANSPORT_PARAMETERS.
3857 final SettingsState systemSecureSettings = getSecureSettingsLocked(userId);
3858 final String oldValue = systemSecureSettings.getSettingLocked(
3859 Settings.Secure.BACKUP_LOCAL_TRANSPORT_PARAMETERS).getValue();
3860 if (TextUtils.equals(null, oldValue)) {
3861 final String defaultValue = getContext().getResources().getString(
3862 R.string.def_backup_local_transport_parameters);
3863 if (!TextUtils.isEmpty(defaultValue)) {
3864 systemSecureSettings.insertSettingLocked(
3865 Settings.Secure.BACKUP_LOCAL_TRANSPORT_PARAMETERS, defaultValue,
3866 null, true, SettingsState.SYSTEM_PACKAGE_NAME);
3867 }
3868
3869 }
3870 currentVersion = 155;
3871 }
3872
Beverlyda904812018-03-02 09:55:30 -05003873 if (currentVersion == 155) {
Annie Mengd069a882018-03-13 15:31:40 +00003874 // Version 156: Set the default value for CHARGING_STARTED_SOUND.
Beverlyda904812018-03-02 09:55:30 -05003875 final SettingsState globalSettings = getGlobalSettingsLocked();
3876 final String oldValue = globalSettings.getSettingLocked(
3877 Global.CHARGING_STARTED_SOUND).getValue();
3878 final String oldDefault = getContext().getResources().getString(
3879 R.string.def_wireless_charging_started_sound);
3880 if (TextUtils.equals(null, oldValue)
3881 || TextUtils.equals(oldValue, oldDefault)) {
3882 final String defaultValue = getContext().getResources().getString(
3883 R.string.def_charging_started_sound);
3884 if (!TextUtils.isEmpty(defaultValue)) {
3885 globalSettings.insertSettingLocked(
3886 Settings.Global.CHARGING_STARTED_SOUND, defaultValue,
3887 null, true, SettingsState.SYSTEM_PACKAGE_NAME);
3888 }
3889
3890 }
3891 currentVersion = 156;
3892 }
3893
Beverly09da25f2018-02-26 09:17:07 -05003894 if (currentVersion == 156) {
Beverly91d0a632018-07-02 16:45:00 -04003895 // Version 157: Set a default value for zen duration,
3896 // in version 169, zen duration is moved to secure settings
Beverly09da25f2018-02-26 09:17:07 -05003897 final SettingsState globalSettings = getGlobalSettingsLocked();
3898 final Setting currentSetting = globalSettings.getSettingLocked(
3899 Global.ZEN_DURATION);
3900 if (currentSetting.isNull()) {
3901 String defaultZenDuration = Integer.toString(getContext()
3902 .getResources().getInteger(R.integer.def_zen_duration));
3903 globalSettings.insertSettingLocked(
3904 Global.ZEN_DURATION, defaultZenDuration,
3905 null, true, SettingsState.SYSTEM_PACKAGE_NAME);
3906 }
Beverly09da25f2018-02-26 09:17:07 -05003907 currentVersion = 157;
3908 }
Annie Mengd069a882018-03-13 15:31:40 +00003909
3910 if (currentVersion == 157) {
3911 // Version 158: Set default value for BACKUP_AGENT_TIMEOUT_PARAMETERS.
3912 final SettingsState globalSettings = getGlobalSettingsLocked();
3913 final String oldValue = globalSettings.getSettingLocked(
3914 Settings.Global.BACKUP_AGENT_TIMEOUT_PARAMETERS).getValue();
3915 if (TextUtils.equals(null, oldValue)) {
3916 final String defaultValue = getContext().getResources().getString(
3917 R.string.def_backup_agent_timeout_parameters);
3918 if (!TextUtils.isEmpty(defaultValue)) {
3919 globalSettings.insertSettingLocked(
3920 Settings.Global.BACKUP_AGENT_TIMEOUT_PARAMETERS, defaultValue,
3921 null, true,
3922 SettingsState.SYSTEM_PACKAGE_NAME);
3923 }
3924 }
3925 currentVersion = 158;
3926 }
Roshan Pius9c396672018-03-02 14:54:13 -08003927
3928 if (currentVersion == 158) {
3929 // Remove setting that specifies wifi bgscan throttling params
3930 getGlobalSettingsLocked().deleteSettingLocked(
3931 "wifi_scan_background_throttle_interval_ms");
3932 getGlobalSettingsLocked().deleteSettingLocked(
3933 "wifi_scan_background_throttle_package_whitelist");
3934 currentVersion = 159;
3935 }
3936
Pavel Grafovc5c97302018-03-19 13:37:15 +00003937 if (currentVersion == 159) {
3938 // Version 160: Hiding notifications from the lockscreen is only available as
3939 // primary user option, profiles can only make them redacted. If a profile was
3940 // configured to not show lockscreen notifications, ensure that at the very
3941 // least these will be come hidden.
3942 if (mUserManager.isManagedProfile(userId)) {
3943 final SettingsState secureSettings = getSecureSettingsLocked(userId);
3944 Setting showNotifications = secureSettings.getSettingLocked(
3945 Settings.Secure.LOCK_SCREEN_SHOW_NOTIFICATIONS);
3946 // The default value is "1", check if user has turned it off.
3947 if ("0".equals(showNotifications.getValue())) {
3948 secureSettings.insertSettingLocked(
3949 Secure.LOCK_SCREEN_ALLOW_PRIVATE_NOTIFICATIONS, "0",
3950 null /* tag */, false /* makeDefault */,
3951 SettingsState.SYSTEM_PACKAGE_NAME);
3952 }
3953 // The setting is no longer valid for managed profiles, it should be
3954 // treated as if it was set to "1".
3955 secureSettings.deleteSettingLocked(Secure.LOCK_SCREEN_SHOW_NOTIFICATIONS);
3956 }
3957 currentVersion = 160;
3958 }
Philip P. Moltmann18e3eb82018-03-09 16:55:55 -08003959
3960 if (currentVersion == 160) {
3961 // Version 161: Set the default value for
Philip P. Moltmann7e25b3d2018-03-09 20:22:58 -08003962 // MAX_SOUND_TRIGGER_DETECTION_SERVICE_OPS_PER_DAY and
Philip P. Moltmann18e3eb82018-03-09 16:55:55 -08003963 // SOUND_TRIGGER_DETECTION_SERVICE_OP_TIMEOUT
3964 final SettingsState globalSettings = getGlobalSettingsLocked();
3965
3966 String oldValue = globalSettings.getSettingLocked(
Philip P. Moltmann7e25b3d2018-03-09 20:22:58 -08003967 Global.MAX_SOUND_TRIGGER_DETECTION_SERVICE_OPS_PER_DAY).getValue();
3968 if (TextUtils.equals(null, oldValue)) {
3969 globalSettings.insertSettingLocked(
3970 Settings.Global.MAX_SOUND_TRIGGER_DETECTION_SERVICE_OPS_PER_DAY,
3971 Integer.toString(getContext().getResources().getInteger(
3972 R.integer.def_max_sound_trigger_detection_service_ops_per_day)),
3973 null, true, SettingsState.SYSTEM_PACKAGE_NAME);
3974 }
3975
3976 oldValue = globalSettings.getSettingLocked(
Philip P. Moltmann18e3eb82018-03-09 16:55:55 -08003977 Global.SOUND_TRIGGER_DETECTION_SERVICE_OP_TIMEOUT).getValue();
3978 if (TextUtils.equals(null, oldValue)) {
3979 globalSettings.insertSettingLocked(
3980 Settings.Global.SOUND_TRIGGER_DETECTION_SERVICE_OP_TIMEOUT,
3981 Integer.toString(getContext().getResources().getInteger(
3982 R.integer.def_sound_trigger_detection_service_op_timeout)),
3983 null, true, SettingsState.SYSTEM_PACKAGE_NAME);
3984 }
3985 currentVersion = 161;
3986 }
3987
Mike Digman55272862018-02-20 14:35:17 -08003988 if (currentVersion == 161) {
3989 // Version 161: Add a gesture for silencing phones
3990 final SettingsState secureSettings = getSecureSettingsLocked(userId);
3991 final Setting currentSetting = secureSettings.getSettingLocked(
3992 Secure.VOLUME_HUSH_GESTURE);
3993 if (currentSetting.isNull()) {
3994 secureSettings.insertSettingLocked(
3995 Secure.VOLUME_HUSH_GESTURE,
3996 Integer.toString(Secure.VOLUME_HUSH_VIBRATE),
3997 null, true, SettingsState.SYSTEM_PACKAGE_NAME);
3998 }
3999
4000 currentVersion = 162;
4001 }
4002
Julia Reynoldsc4e5ecf2018-04-11 11:33:32 -04004003 if (currentVersion == 162) {
Julia Reynolds76bfa602018-04-23 09:38:47 -04004004 // Version 162: REMOVED: Add a gesture for silencing phones
Julia Reynoldsc4e5ecf2018-04-11 11:33:32 -04004005 currentVersion = 163;
4006 }
4007
Philip P. Moltmanncb58a832018-04-16 09:19:42 -07004008 if (currentVersion == 163) {
4009 // Version 163: Update default value of
4010 // MAX_SOUND_TRIGGER_DETECTION_SERVICE_OPS_PER_DAY from old to new default
4011 final SettingsState settings = getGlobalSettingsLocked();
4012 final Setting currentSetting = settings.getSettingLocked(
4013 Global.MAX_SOUND_TRIGGER_DETECTION_SERVICE_OPS_PER_DAY);
4014 if (currentSetting.isDefaultFromSystem()) {
4015 settings.insertSettingLocked(
4016 Settings.Global.MAX_SOUND_TRIGGER_DETECTION_SERVICE_OPS_PER_DAY,
4017 Integer.toString(getContext().getResources().getInteger(
4018 R.integer
4019 .def_max_sound_trigger_detection_service_ops_per_day)),
4020 null, true, SettingsState.SYSTEM_PACKAGE_NAME);
4021 }
4022
4023 currentVersion = 164;
4024 }
4025
Julia Reynolds76bfa602018-04-23 09:38:47 -04004026 if (currentVersion == 164) {
Julia Reynolds24836c52018-06-06 14:36:03 -04004027 // Version 164: REMOVED: show zen upgrade notification
Julia Reynolds76bfa602018-04-23 09:38:47 -04004028 currentVersion = 165;
4029 }
4030
Beverly301e92a2018-04-27 09:43:05 -04004031 if (currentVersion == 165) {
Beverly91d0a632018-07-02 16:45:00 -04004032 // Version 165: MOVED: Show zen settings suggestion and zen updated settings
4033 // moved to secure settings and are set in version 169
Beverly301e92a2018-04-27 09:43:05 -04004034 currentVersion = 166;
4035 }
4036
Beverly38fcfd02018-05-18 17:33:40 -04004037 if (currentVersion == 166) {
4038 // Version 166: add default values for hush gesture used and manual ringer
4039 // toggle
4040 final SettingsState secureSettings = getSecureSettingsLocked(userId);
4041 Setting currentHushUsedSetting = secureSettings.getSettingLocked(
4042 Secure.HUSH_GESTURE_USED);
4043 if (currentHushUsedSetting.isNull()) {
4044 secureSettings.insertSettingLocked(
4045 Settings.Secure.HUSH_GESTURE_USED, "0", null, true,
4046 SettingsState.SYSTEM_PACKAGE_NAME);
4047 }
4048
4049 Setting currentRingerToggleCountSetting = secureSettings.getSettingLocked(
4050 Secure.MANUAL_RINGER_TOGGLE_COUNT);
4051 if (currentRingerToggleCountSetting.isNull()) {
4052 secureSettings.insertSettingLocked(
4053 Settings.Secure.MANUAL_RINGER_TOGGLE_COUNT, "0", null, true,
4054 SettingsState.SYSTEM_PACKAGE_NAME);
4055 }
4056 currentVersion = 167;
4057 }
4058
Beverly155c9d22018-05-23 18:03:23 -04004059 if (currentVersion == 167) {
Beverly91d0a632018-07-02 16:45:00 -04004060 // Version 167: MOVED - Settings.Global.CHARGING_VIBRATION_ENABLED moved to
4061 // Settings.Secure.CHARGING_VIBRATION_ENABLED, set in version 170
Beverly155c9d22018-05-23 18:03:23 -04004062 currentVersion = 168;
4063 }
4064
Michael Wright0e9eeee2018-05-26 00:31:20 +01004065 if (currentVersion == 168) {
4066 // Version 168: by default, vibrate for phone calls
4067 final SettingsState systemSettings = getSystemSettingsLocked(userId);
4068 final Setting currentSetting = systemSettings.getSettingLocked(
4069 Settings.System.VIBRATE_WHEN_RINGING);
4070 if (currentSetting.isNull()) {
4071 systemSettings.insertSettingLocked(
4072 Settings.System.VIBRATE_WHEN_RINGING,
4073 getContext().getResources().getBoolean(
4074 R.bool.def_vibrate_when_ringing) ? "1" : "0",
4075 null, true, SettingsState.SYSTEM_PACKAGE_NAME);
4076 }
4077 currentVersion = 169;
4078 }
4079
Nadav Barf9f115d2018-06-24 10:06:50 +03004080 if (currentVersion == 169) {
Beverly91d0a632018-07-02 16:45:00 -04004081 // Version 169: Set the default value for Secure Settings ZEN_DURATION,
4082 // SHOW_ZEN_SETTINGS_SUGGESTION, ZEN_SETTINGS_UPDATE and
4083 // ZEN_SETTINGS_SUGGESTION_VIEWED
Nadav Barf9f115d2018-06-24 10:06:50 +03004084
Beverly91d0a632018-07-02 16:45:00 -04004085 final SettingsState globalSettings = getGlobalSettingsLocked();
4086 final Setting globalZenDuration = globalSettings.getSettingLocked(
4087 Global.ZEN_DURATION);
4088
4089 final SettingsState secureSettings = getSecureSettingsLocked(userId);
4090 final Setting secureZenDuration = secureSettings.getSettingLocked(
4091 Secure.ZEN_DURATION);
4092
4093 // ZEN_DURATION
4094 if (!globalZenDuration.isNull()) {
4095 secureSettings.insertSettingLocked(
4096 Secure.ZEN_DURATION, globalZenDuration.getValue(), null, false,
4097 SettingsState.SYSTEM_PACKAGE_NAME);
4098
4099 // set global zen duration setting to null since it's deprecated
4100 globalSettings.insertSettingLocked(
4101 Global.ZEN_DURATION, null, null, true,
4102 SettingsState.SYSTEM_PACKAGE_NAME);
4103 } else if (secureZenDuration.isNull()) {
4104 String defaultZenDuration = Integer.toString(getContext()
4105 .getResources().getInteger(R.integer.def_zen_duration));
4106 secureSettings.insertSettingLocked(
4107 Secure.ZEN_DURATION, defaultZenDuration, null, true,
4108 SettingsState.SYSTEM_PACKAGE_NAME);
Nadav Barf9f115d2018-06-24 10:06:50 +03004109 }
Beverly91d0a632018-07-02 16:45:00 -04004110
4111 // SHOW_ZEN_SETTINGS_SUGGESTION
4112 final Setting currentShowZenSettingSuggestion = secureSettings.getSettingLocked(
4113 Secure.SHOW_ZEN_SETTINGS_SUGGESTION);
4114 if (currentShowZenSettingSuggestion.isNull()) {
4115 secureSettings.insertSettingLocked(
4116 Secure.SHOW_ZEN_SETTINGS_SUGGESTION, "1",
4117 null, true, SettingsState.SYSTEM_PACKAGE_NAME);
4118 }
4119
4120 // ZEN_SETTINGS_UPDATED
4121 final Setting currentUpdatedSetting = secureSettings.getSettingLocked(
4122 Secure.ZEN_SETTINGS_UPDATED);
4123 if (currentUpdatedSetting.isNull()) {
4124 secureSettings.insertSettingLocked(
4125 Secure.ZEN_SETTINGS_UPDATED, "0",
4126 null, true, SettingsState.SYSTEM_PACKAGE_NAME);
4127 }
4128
4129 // ZEN_SETTINGS_SUGGESTION_VIEWED
4130 final Setting currentSettingSuggestionViewed = secureSettings.getSettingLocked(
4131 Secure.ZEN_SETTINGS_SUGGESTION_VIEWED);
4132 if (currentSettingSuggestionViewed.isNull()) {
4133 secureSettings.insertSettingLocked(
4134 Secure.ZEN_SETTINGS_SUGGESTION_VIEWED, "0",
4135 null, true, SettingsState.SYSTEM_PACKAGE_NAME);
4136 }
4137
Nadav Barf9f115d2018-06-24 10:06:50 +03004138 currentVersion = 170;
4139 }
4140
Beverly91d0a632018-07-02 16:45:00 -04004141 if (currentVersion == 170) {
4142 // Version 170: Set the default value for Secure Settings:
4143 // CHARGING_SOUNDS_ENABLED and CHARGING_VIBRATION_ENABLED
4144
4145 final SettingsState globalSettings = getGlobalSettingsLocked();
4146 final SettingsState secureSettings = getSecureSettingsLocked(userId);
4147
4148 // CHARGING_SOUNDS_ENABLED
4149 final Setting globalChargingSoundEnabled = globalSettings.getSettingLocked(
4150 Global.CHARGING_SOUNDS_ENABLED);
4151 final Setting secureChargingSoundsEnabled = secureSettings.getSettingLocked(
4152 Secure.CHARGING_SOUNDS_ENABLED);
4153
4154 if (!globalChargingSoundEnabled.isNull()) {
Beverlyff9c5872019-01-02 15:44:00 -05004155 if (secureChargingSoundsEnabled.isNull()) {
4156 secureSettings.insertSettingLocked(
4157 Secure.CHARGING_SOUNDS_ENABLED,
4158 globalChargingSoundEnabled.getValue(), null, false,
4159 SettingsState.SYSTEM_PACKAGE_NAME);
4160 }
Beverly91d0a632018-07-02 16:45:00 -04004161
4162 // set global charging_sounds_enabled setting to null since it's deprecated
4163 globalSettings.insertSettingLocked(
4164 Global.CHARGING_SOUNDS_ENABLED, null, null, true,
4165 SettingsState.SYSTEM_PACKAGE_NAME);
4166 } else if (secureChargingSoundsEnabled.isNull()) {
4167 String defChargingSoundsEnabled = getContext().getResources()
4168 .getBoolean(R.bool.def_charging_sounds_enabled) ? "1" : "0";
4169 secureSettings.insertSettingLocked(
4170 Secure.CHARGING_SOUNDS_ENABLED, defChargingSoundsEnabled, null,
4171 true, SettingsState.SYSTEM_PACKAGE_NAME);
4172 }
4173
4174 // CHARGING_VIBRATION_ENABLED
4175 final Setting secureChargingVibrationEnabled = secureSettings.getSettingLocked(
4176 Secure.CHARGING_VIBRATION_ENABLED);
4177
4178 if (secureChargingVibrationEnabled.isNull()) {
4179 String defChargingVibrationEnabled = getContext().getResources()
4180 .getBoolean(R.bool.def_charging_vibration_enabled) ? "1" : "0";
4181 secureSettings.insertSettingLocked(
4182 Secure.CHARGING_VIBRATION_ENABLED, defChargingVibrationEnabled,
4183 null, true, SettingsState.SYSTEM_PACKAGE_NAME);
4184 }
4185
4186 currentVersion = 171;
4187 }
4188
Nadav Bar8bc8c9e2018-09-12 15:41:51 +03004189 if (currentVersion == 171) {
4190 // Version 171: by default, add STREAM_VOICE_CALL to list of streams that can
4191 // be muted.
4192 final SettingsState systemSettings = getSystemSettingsLocked(userId);
4193 final Setting currentSetting = systemSettings.getSettingLocked(
4194 Settings.System.MUTE_STREAMS_AFFECTED);
4195 if (!currentSetting.isNull()) {
4196 try {
4197 int currentSettingIntegerValue = Integer.parseInt(
4198 currentSetting.getValue());
4199 if ((currentSettingIntegerValue
4200 & (1 << AudioManager.STREAM_VOICE_CALL)) == 0) {
4201 systemSettings.insertSettingLocked(
4202 Settings.System.MUTE_STREAMS_AFFECTED,
4203 Integer.toString(
4204 currentSettingIntegerValue
4205 | (1 << AudioManager.STREAM_VOICE_CALL)),
4206 null, true, SettingsState.SYSTEM_PACKAGE_NAME);
4207 }
4208 } catch (NumberFormatException e) {
4209 // remove the setting in case it is not a valid integer
4210 Slog.w("Failed to parse integer value of MUTE_STREAMS_AFFECTED"
4211 + "setting, removing setting", e);
4212 systemSettings.deleteSettingLocked(
4213 Settings.System.MUTE_STREAMS_AFFECTED);
4214 }
4215
4216 }
4217 currentVersion = 172;
4218 }
4219
Soonil Nagarkar42da1b12019-01-22 11:29:27 -08004220 if (currentVersion == 172) {
4221 // Version 172: Set the default value for Secure Settings: LOCATION_MODE
4222
4223 final SettingsState secureSettings = getSecureSettingsLocked(userId);
4224
4225 final Setting locationMode = secureSettings.getSettingLocked(
4226 Secure.LOCATION_MODE);
4227
4228 if (locationMode.isNull()) {
4229 final Setting locationProvidersAllowed = secureSettings.getSettingLocked(
4230 Secure.LOCATION_PROVIDERS_ALLOWED);
4231
4232 String defLocationMode = Integer.toString(
4233 !TextUtils.isEmpty(locationProvidersAllowed.getValue())
4234 ? Secure.LOCATION_MODE_HIGH_ACCURACY
4235 : Secure.LOCATION_MODE_OFF);
4236 secureSettings.insertSettingLocked(
4237 Secure.LOCATION_MODE, defLocationMode,
4238 null, true, SettingsState.SYSTEM_PACKAGE_NAME);
4239
4240 // also reset LOCATION_PROVIDERS_ALLOWED back to the default value - this
4241 // setting is now only for debug/test purposes, and will likely be removed
4242 // in a later release. LocationManagerService is responsible for adjusting
4243 // these settings to the proper state.
4244
4245 String defLocationProvidersAllowed = getContext().getResources().getString(
4246 R.string.def_location_providers_allowed);
4247 secureSettings.insertSettingLocked(
4248 Secure.LOCATION_PROVIDERS_ALLOWED, defLocationProvidersAllowed,
4249 null, true, SettingsState.SYSTEM_PACKAGE_NAME);
4250 }
4251
4252 currentVersion = 173;
4253 }
4254
Felipe Lemeff355092017-04-03 12:55:02 -07004255 // vXXX: Add new settings above this point.
4256
Dan Sandler71f85e92016-07-20 13:46:05 -04004257 if (currentVersion != newVersion) {
Svetoslav Ganov264c7a92016-08-24 17:31:14 -07004258 Slog.wtf("SettingsProvider", "warning: upgrading settings database to version "
Dan Sandler71f85e92016-07-20 13:46:05 -04004259 + newVersion + " left it at "
Stephen Chen5d0922f2017-03-27 10:28:04 -07004260 + currentVersion +
4261 " instead; this is probably a bug. Did you update SETTINGS_VERSION?",
4262 new Throwable());
Dan Sandler71f85e92016-07-20 13:46:05 -04004263 if (DEBUG) {
4264 throw new RuntimeException("db upgrade error");
4265 }
4266 }
4267
Jeff Brown503cffc2015-03-26 18:08:51 -07004268 // Return the current version.
4269 return currentVersion;
Brad Fitzpatrick547a96b2010-03-09 17:58:53 -08004270 }
4271 }
Svet Ganov13701552017-02-23 12:45:17 -08004272
Svetoslav Ganovf7654c52017-08-16 17:33:22 -07004273 private void ensureLegacyDefaultValueAndSystemSetUpdatedLocked(SettingsState settings,
4274 int userId) {
Svet Ganov13701552017-02-23 12:45:17 -08004275 List<String> names = settings.getSettingNamesLocked();
4276 final int nameCount = names.size();
4277 for (int i = 0; i < nameCount; i++) {
4278 String name = names.get(i);
4279 Setting setting = settings.getSettingLocked(name);
Svetoslav Ganovf7654c52017-08-16 17:33:22 -07004280
4281 // In the upgrade case we pretend the call is made from the app
4282 // that made the last change to the setting to properly determine
4283 // whether the call has been made by a system component.
4284 int callingUid = -1;
4285 try {
4286 callingUid = mPackageManager.getPackageUid(setting.getPackageName(), 0, userId);
4287 } catch (RemoteException e) {
4288 /* ignore - handled below */
4289 }
4290 if (callingUid < 0) {
4291 Slog.e(LOG_TAG, "Unknown package: " + setting.getPackageName());
4292 continue;
4293 }
4294 try {
4295 final boolean systemSet = SettingsState.isSystemPackage(getContext(),
4296 setting.getPackageName(), callingUid);
Svet Ganov13701552017-02-23 12:45:17 -08004297 if (systemSet) {
4298 settings.insertSettingLocked(name, setting.getValue(),
4299 setting.getTag(), true, setting.getPackageName());
Svetoslav Ganovf7654c52017-08-16 17:33:22 -07004300 } else if (setting.getDefaultValue() != null && setting.isDefaultFromSystem()) {
4301 // We had a bug where changes by non-system packages were marked
4302 // as system made and as a result set as the default. Therefore, if
4303 // the package changed the setting last is not a system one but the
4304 // setting is marked as its default coming from the system we clear
4305 // the default and clear the system set flag.
4306 settings.resetSettingDefaultValueLocked(name);
Svet Ganov13701552017-02-23 12:45:17 -08004307 }
Svetoslav Ganovf7654c52017-08-16 17:33:22 -07004308 } catch (IllegalStateException e) {
4309 // If the package goes over its quota during the upgrade, don't
4310 // crash but just log the error as the system does the upgrade.
4311 Slog.e(LOG_TAG, "Error upgrading setting: " + setting.getName(), e);
4312
Svet Ganov13701552017-02-23 12:45:17 -08004313 }
4314 }
4315 }
Brad Fitzpatrick1bd62bd2010-03-08 18:30:52 -08004316 }
The Android Open Source Project54b6cfa2008-10-21 07:00:00 -07004317}