blob: a42fcbdd94a0fc8db41a58d91a2e28806704e500 [file] [log] [blame]
Makoto Onukia4f11972015-10-01 13:19:58 -07001/*
2 * Copyright (C) 2015 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17package com.android.server.pm;
18
19import com.google.android.collect.Sets;
20
Makoto Onuki1a2cd742015-11-16 13:51:27 -080021import com.android.internal.util.Preconditions;
22
23import android.annotation.NonNull;
24import android.annotation.Nullable;
Fyodor Kupolov9cbfc9e2015-10-07 15:52:33 -070025import android.app.ActivityManager;
Makoto Onuki4f160732015-10-27 17:15:38 -070026import android.content.ContentResolver;
27import android.content.Context;
yuemingw265c6922018-01-11 18:31:14 +000028import android.content.Intent;
Makoto Onuki4f160732015-10-27 17:15:38 -070029import android.os.Binder;
Makoto Onukia4f11972015-10-01 13:19:58 -070030import android.os.Bundle;
Fyodor Kupolov9cbfc9e2015-10-07 15:52:33 -070031import android.os.RemoteException;
Makoto Onuki4f160732015-10-27 17:15:38 -070032import android.os.UserHandle;
Makoto Onukia4f11972015-10-01 13:19:58 -070033import android.os.UserManager;
Pavel Grafov6a40f092016-10-25 15:46:51 +010034import android.os.UserManagerInternal;
yuemingw265c6922018-01-11 18:31:14 +000035import android.provider.Settings;
Mahaver Chopradea471e2015-12-17 11:02:37 +000036import android.telephony.SubscriptionInfo;
37import android.telephony.SubscriptionManager;
Makoto Onuki1a2cd742015-11-16 13:51:27 -080038import android.util.Log;
Makoto Onuki1f1ceef2016-01-28 11:32:32 -080039import android.util.Slog;
Pavel Grafov6a40f092016-10-25 15:46:51 +010040import android.util.SparseArray;
Makoto Onukia4f11972015-10-01 13:19:58 -070041
42import org.xmlpull.v1.XmlPullParser;
43import org.xmlpull.v1.XmlSerializer;
44
45import java.io.IOException;
46import java.io.PrintWriter;
Mahaver Chopradea471e2015-12-17 11:02:37 +000047import java.util.List;
Makoto Onukia4f11972015-10-01 13:19:58 -070048import java.util.Set;
49
Makoto Onukid45a4a22015-11-02 17:17:38 -080050/**
Mahaver Chopradea471e2015-12-17 11:02:37 +000051 * Utility methods for user restrictions.
Makoto Onukid45a4a22015-11-02 17:17:38 -080052 *
53 * <p>See {@link UserManagerService} for the method suffixes.
54 */
Makoto Onukia4f11972015-10-01 13:19:58 -070055public class UserRestrictionsUtils {
Makoto Onuki4f160732015-10-27 17:15:38 -070056 private static final String TAG = "UserRestrictionsUtils";
57
Makoto Onukia4f11972015-10-01 13:19:58 -070058 private UserRestrictionsUtils() {
59 }
60
Makoto Onuki1f1ceef2016-01-28 11:32:32 -080061 private static Set<String> newSetWithUniqueCheck(String[] strings) {
62 final Set<String> ret = Sets.newArraySet(strings);
63
64 // Make sure there's no overlap.
65 Preconditions.checkState(ret.size() == strings.length);
66 return ret;
67 }
68
69 public static final Set<String> USER_RESTRICTIONS = newSetWithUniqueCheck(new String[] {
Makoto Onukia4f11972015-10-01 13:19:58 -070070 UserManager.DISALLOW_CONFIG_WIFI,
Christine Franks1bade5d2017-10-10 15:41:50 -070071 UserManager.DISALLOW_CONFIG_LOCALE,
Makoto Onukia4f11972015-10-01 13:19:58 -070072 UserManager.DISALLOW_MODIFY_ACCOUNTS,
73 UserManager.DISALLOW_INSTALL_APPS,
74 UserManager.DISALLOW_UNINSTALL_APPS,
75 UserManager.DISALLOW_SHARE_LOCATION,
76 UserManager.DISALLOW_INSTALL_UNKNOWN_SOURCES,
77 UserManager.DISALLOW_CONFIG_BLUETOOTH,
Lenka Trochtova63d5e4a72016-12-02 12:19:39 +010078 UserManager.DISALLOW_BLUETOOTH,
Pavel Grafov7f4ad752017-03-28 13:44:04 +010079 UserManager.DISALLOW_BLUETOOTH_SHARING,
Makoto Onukia4f11972015-10-01 13:19:58 -070080 UserManager.DISALLOW_USB_FILE_TRANSFER,
81 UserManager.DISALLOW_CONFIG_CREDENTIALS,
82 UserManager.DISALLOW_REMOVE_USER,
Esteban Talavera6c9116a2016-11-24 16:12:44 +000083 UserManager.DISALLOW_REMOVE_MANAGED_PROFILE,
Makoto Onukia4f11972015-10-01 13:19:58 -070084 UserManager.DISALLOW_DEBUGGING_FEATURES,
85 UserManager.DISALLOW_CONFIG_VPN,
yuemingwa9772f362017-10-23 18:34:35 +010086 UserManager.DISALLOW_CONFIG_DATE_TIME,
Makoto Onukia4f11972015-10-01 13:19:58 -070087 UserManager.DISALLOW_CONFIG_TETHERING,
88 UserManager.DISALLOW_NETWORK_RESET,
89 UserManager.DISALLOW_FACTORY_RESET,
90 UserManager.DISALLOW_ADD_USER,
Esteban Talavera6c9116a2016-11-24 16:12:44 +000091 UserManager.DISALLOW_ADD_MANAGED_PROFILE,
Makoto Onukia4f11972015-10-01 13:19:58 -070092 UserManager.ENSURE_VERIFY_APPS,
93 UserManager.DISALLOW_CONFIG_CELL_BROADCASTS,
94 UserManager.DISALLOW_CONFIG_MOBILE_NETWORKS,
95 UserManager.DISALLOW_APPS_CONTROL,
96 UserManager.DISALLOW_MOUNT_PHYSICAL_MEDIA,
97 UserManager.DISALLOW_UNMUTE_MICROPHONE,
98 UserManager.DISALLOW_ADJUST_VOLUME,
99 UserManager.DISALLOW_OUTGOING_CALLS,
100 UserManager.DISALLOW_SMS,
101 UserManager.DISALLOW_FUN,
102 UserManager.DISALLOW_CREATE_WINDOWS,
Charles He22ff6f9d2017-10-05 21:28:55 +0100103 UserManager.DISALLOW_SYSTEM_ERROR_DIALOGS,
Makoto Onukia4f11972015-10-01 13:19:58 -0700104 UserManager.DISALLOW_CROSS_PROFILE_COPY_PASTE,
105 UserManager.DISALLOW_OUTGOING_BEAM,
106 UserManager.DISALLOW_WALLPAPER,
107 UserManager.DISALLOW_SAFE_BOOT,
108 UserManager.ALLOW_PARENT_PROFILE_APP_LINKING,
109 UserManager.DISALLOW_RECORD_AUDIO,
Fyodor Kupolov9cbfc9e2015-10-07 15:52:33 -0700110 UserManager.DISALLOW_CAMERA,
Mahaver Chopradea471e2015-12-17 11:02:37 +0000111 UserManager.DISALLOW_RUN_IN_BACKGROUND,
Oleksandr Peletskyi7f1f1df2016-01-18 15:40:21 +0100112 UserManager.DISALLOW_DATA_ROAMING,
Oleksandr Peletskyif2519812016-01-26 20:16:06 +0100113 UserManager.DISALLOW_SET_USER_ICON,
Mahaver Chopra3d9805d2016-07-07 16:25:05 +0100114 UserManager.DISALLOW_SET_WALLPAPER,
Tony Makc1205112016-07-22 16:02:59 +0100115 UserManager.DISALLOW_OEM_UNLOCK,
Esteban Talavera492b4722017-02-13 14:59:45 +0000116 UserManager.DISALLOW_UNMUTE_DEVICE,
Felipe Leme24d58932017-03-21 14:13:58 -0700117 UserManager.DISALLOW_AUTOFILL,
Pavel Grafovc4f87e92017-10-26 16:34:25 +0100118 UserManager.DISALLOW_USER_SWITCH,
119 UserManager.DISALLOW_UNIFIED_PASSWORD,
yuemingw5fe75dc2017-11-29 15:52:56 +0000120 UserManager.DISALLOW_CONFIG_LOCATION_MODE,
yuemingwc6ac29d2018-01-10 16:54:08 +0000121 UserManager.DISALLOW_AIRPLANE_MODE,
Rubin Xucc391c22018-01-02 20:37:35 +0000122 UserManager.DISALLOW_CONFIG_BRIGHTNESS,
123 UserManager.DISALLOW_SHARE_INTO_MANAGED_PROFILE,
yuemingw5cda3ae2018-01-15 10:26:19 +0000124 UserManager.DISALLOW_AMBIENT_DISPLAY,
125 UserManager.DISALLOW_CONFIG_SCREEN_TIMEOUT
Makoto Onuki1f1ceef2016-01-28 11:32:32 -0800126 });
Makoto Onukia4f11972015-10-01 13:19:58 -0700127
128 /**
129 * Set of user restriction which we don't want to persist.
130 */
Makoto Onuki1a2cd742015-11-16 13:51:27 -0800131 private static final Set<String> NON_PERSIST_USER_RESTRICTIONS = Sets.newArraySet(
132 UserManager.DISALLOW_RECORD_AUDIO
133 );
Makoto Onukia4f11972015-10-01 13:19:58 -0700134
Makoto Onuki1a2cd742015-11-16 13:51:27 -0800135 /**
Pavel Grafov6a40f092016-10-25 15:46:51 +0100136 * User restrictions that cannot be set by profile owners of secondary users. When set by DO
137 * they will be applied to all users.
Makoto Onuki1a2cd742015-11-16 13:51:27 -0800138 */
Pavel Grafov6a40f092016-10-25 15:46:51 +0100139 private static final Set<String> PRIMARY_USER_ONLY_RESTRICTIONS = Sets.newArraySet(
Lenka Trochtova63d5e4a72016-12-02 12:19:39 +0100140 UserManager.DISALLOW_BLUETOOTH,
Makoto Onuki1a2cd742015-11-16 13:51:27 -0800141 UserManager.DISALLOW_USB_FILE_TRANSFER,
142 UserManager.DISALLOW_CONFIG_TETHERING,
143 UserManager.DISALLOW_NETWORK_RESET,
144 UserManager.DISALLOW_FACTORY_RESET,
145 UserManager.DISALLOW_ADD_USER,
146 UserManager.DISALLOW_CONFIG_CELL_BROADCASTS,
147 UserManager.DISALLOW_CONFIG_MOBILE_NETWORKS,
148 UserManager.DISALLOW_MOUNT_PHYSICAL_MEDIA,
149 UserManager.DISALLOW_SMS,
150 UserManager.DISALLOW_FUN,
151 UserManager.DISALLOW_SAFE_BOOT,
Mahaver Chopradea471e2015-12-17 11:02:37 +0000152 UserManager.DISALLOW_CREATE_WINDOWS,
yuemingw5fe75dc2017-11-29 15:52:56 +0000153 UserManager.DISALLOW_DATA_ROAMING,
154 UserManager.DISALLOW_AIRPLANE_MODE
Makoto Onuki1a2cd742015-11-16 13:51:27 -0800155 );
156
157 /**
Benjamin Franzff66fa92017-08-10 10:39:44 +0100158 * User restrictions that cannot be set by profile owners. Applied to all users.
159 */
160 private static final Set<String> DEVICE_OWNER_ONLY_RESTRICTIONS = Sets.newArraySet(
161 UserManager.DISALLOW_USER_SWITCH
162 );
163
164 /**
Makoto Onuki1a2cd742015-11-16 13:51:27 -0800165 * User restrictions that can't be changed by device owner or profile owner.
166 */
167 private static final Set<String> IMMUTABLE_BY_OWNERS = Sets.newArraySet(
168 UserManager.DISALLOW_RECORD_AUDIO,
Mahaver Chopra3d9805d2016-07-07 16:25:05 +0100169 UserManager.DISALLOW_WALLPAPER,
170 UserManager.DISALLOW_OEM_UNLOCK
Makoto Onuki1a2cd742015-11-16 13:51:27 -0800171 );
172
173 /**
174 * Special user restrictions that can be applied to a user as well as to all users globally,
175 * depending on callers. When device owner sets them, they'll be applied to all users.
176 */
177 private static final Set<String> GLOBAL_RESTRICTIONS = Sets.newArraySet(
178 UserManager.DISALLOW_ADJUST_VOLUME,
Pavel Grafov7f4ad752017-03-28 13:44:04 +0100179 UserManager.DISALLOW_BLUETOOTH_SHARING,
yuemingwa9772f362017-10-23 18:34:35 +0100180 UserManager.DISALLOW_CONFIG_DATE_TIME,
Charles He22ff6f9d2017-10-05 21:28:55 +0100181 UserManager.DISALLOW_SYSTEM_ERROR_DIALOGS,
Fyodor Kupolov9cbfc9e2015-10-07 15:52:33 -0700182 UserManager.DISALLOW_RUN_IN_BACKGROUND,
Tony Makc1205112016-07-22 16:02:59 +0100183 UserManager.DISALLOW_UNMUTE_MICROPHONE,
Esteban Talavera492b4722017-02-13 14:59:45 +0000184 UserManager.DISALLOW_UNMUTE_DEVICE
Makoto Onuki1a2cd742015-11-16 13:51:27 -0800185 );
186
Makoto Onuki1f1ceef2016-01-28 11:32:32 -0800187 /**
Esteban Talavera6c9116a2016-11-24 16:12:44 +0000188 * User restrictions that default to {@code true} for device owners.
189 */
190 private static final Set<String> DEFAULT_ENABLED_FOR_DEVICE_OWNERS = Sets.newArraySet(
191 UserManager.DISALLOW_ADD_MANAGED_PROFILE
192 );
193
Pavel Grafov7f4ad752017-03-28 13:44:04 +0100194 /**
195 * User restrictions that default to {@code true} for managed profile owners.
196 *
197 * NB: {@link UserManager#DISALLOW_INSTALL_UNKNOWN_SOURCES} is also set by default but it is
198 * not set to existing profile owners unless they used to have INSTALL_NON_MARKET_APPS disabled
199 * in settings. So it is handled separately.
200 */
201 private static final Set<String> DEFAULT_ENABLED_FOR_MANAGED_PROFILES = Sets.newArraySet(
202 UserManager.DISALLOW_BLUETOOTH_SHARING
203 );
204
Pavel Grafovc4f87e92017-10-26 16:34:25 +0100205 /**
Pavel Grafov6a40f092016-10-25 15:46:51 +0100206 * Special user restrictions that are always applied to all users no matter who sets them.
207 */
208 private static final Set<String> PROFILE_GLOBAL_RESTRICTIONS = Sets.newArraySet(
yuemingw5fe75dc2017-11-29 15:52:56 +0000209 UserManager.ENSURE_VERIFY_APPS,
210 UserManager.DISALLOW_AIRPLANE_MODE
Pavel Grafov6a40f092016-10-25 15:46:51 +0100211 );
212
Esteban Talavera6c9116a2016-11-24 16:12:44 +0000213 /**
Makoto Onuki1f1ceef2016-01-28 11:32:32 -0800214 * Throws {@link IllegalArgumentException} if the given restriction name is invalid.
215 */
216 public static boolean isValidRestriction(@NonNull String restriction) {
217 if (!USER_RESTRICTIONS.contains(restriction)) {
Makoto Onukiad5619d2016-02-10 13:41:15 -0800218 Slog.e(TAG, "Unknown restriction: " + restriction);
Makoto Onuki1f1ceef2016-01-28 11:32:32 -0800219 return false;
220 }
221 return true;
222 }
223
Makoto Onuki1a2cd742015-11-16 13:51:27 -0800224 public static void writeRestrictions(@NonNull XmlSerializer serializer,
225 @Nullable Bundle restrictions, @NonNull String tag) throws IOException {
226 if (restrictions == null) {
227 return;
228 }
229
Makoto Onukia4f11972015-10-01 13:19:58 -0700230 serializer.startTag(null, tag);
Makoto Onukiac65e1e2015-11-20 15:33:17 -0800231 for (String key : restrictions.keySet()) {
232 if (NON_PERSIST_USER_RESTRICTIONS.contains(key)) {
233 continue; // Don't persist.
Makoto Onukia4f11972015-10-01 13:19:58 -0700234 }
Makoto Onukiac65e1e2015-11-20 15:33:17 -0800235 if (USER_RESTRICTIONS.contains(key)) {
236 if (restrictions.getBoolean(key)) {
237 serializer.attribute(null, key, "true");
238 }
239 continue;
240 }
241 Log.w(TAG, "Unknown user restriction detected: " + key);
Makoto Onukia4f11972015-10-01 13:19:58 -0700242 }
243 serializer.endTag(null, tag);
244 }
245
Esteban Talaverac48b20f2016-08-11 11:23:40 +0100246 public static void readRestrictions(XmlPullParser parser, Bundle restrictions) {
Fyodor Kupoloveafee022017-03-15 17:09:04 -0700247 restrictions.clear();
Makoto Onukia4f11972015-10-01 13:19:58 -0700248 for (String key : USER_RESTRICTIONS) {
249 final String value = parser.getAttributeValue(null, key);
250 if (value != null) {
251 restrictions.putBoolean(key, Boolean.parseBoolean(value));
252 }
253 }
254 }
255
Pavel Grafov6a40f092016-10-25 15:46:51 +0100256 public static Bundle readRestrictions(XmlPullParser parser) {
257 final Bundle result = new Bundle();
258 readRestrictions(parser, result);
259 return result;
260 }
261
Makoto Onuki1a2cd742015-11-16 13:51:27 -0800262 /**
263 * @return {@code in} itself when it's not null, or an empty bundle (which can writable).
264 */
265 public static Bundle nonNull(@Nullable Bundle in) {
266 return in != null ? in : new Bundle();
267 }
268
269 public static boolean isEmpty(@Nullable Bundle in) {
270 return (in == null) || (in.size() == 0);
271 }
272
273 /**
Pavel Grafov6a40f092016-10-25 15:46:51 +0100274 * Returns {@code true} if given bundle is not null and contains {@code true} for a given
275 * restriction.
276 */
277 public static boolean contains(@Nullable Bundle in, String restriction) {
278 return in != null && in.getBoolean(restriction);
279 }
280
281 /**
Makoto Onuki1a2cd742015-11-16 13:51:27 -0800282 * Creates a copy of the {@code in} Bundle. If {@code in} is null, it'll return an empty
283 * bundle.
284 *
285 * <p>The resulting {@link Bundle} is always writable. (i.e. it won't return
286 * {@link Bundle#EMPTY})
287 */
288 public static @NonNull Bundle clone(@Nullable Bundle in) {
289 return (in != null) ? new Bundle(in) : new Bundle();
290 }
291
292 public static void merge(@NonNull Bundle dest, @Nullable Bundle in) {
293 Preconditions.checkNotNull(dest);
294 Preconditions.checkArgument(dest != in);
Makoto Onuki068c54a2015-10-13 14:34:03 -0700295 if (in == null) {
296 return;
297 }
298 for (String key : in.keySet()) {
299 if (in.getBoolean(key, false)) {
300 dest.putBoolean(key, true);
301 }
302 }
303 }
304
Makoto Onuki4f160732015-10-27 17:15:38 -0700305 /**
Pavel Grafov6a40f092016-10-25 15:46:51 +0100306 * Merges a sparse array of restrictions bundles into one.
307 */
308 @Nullable
309 public static Bundle mergeAll(SparseArray<Bundle> restrictions) {
310 if (restrictions.size() == 0) {
311 return null;
312 } else {
313 final Bundle result = new Bundle();
314 for (int i = 0; i < restrictions.size(); i++) {
315 merge(result, restrictions.valueAt(i));
316 }
317 return result;
318 }
319 }
320
321 /**
Makoto Onuki1a2cd742015-11-16 13:51:27 -0800322 * @return true if a restriction is settable by device owner.
323 */
324 public static boolean canDeviceOwnerChange(String restriction) {
325 return !IMMUTABLE_BY_OWNERS.contains(restriction);
326 }
327
328 /**
Makoto Onuki5485ed42015-12-09 11:38:23 -0800329 * @return true if a restriction is settable by profile owner. Note it takes a user ID because
330 * some restrictions can be changed by PO only when it's running on the system user.
Makoto Onuki1a2cd742015-11-16 13:51:27 -0800331 */
Makoto Onuki5485ed42015-12-09 11:38:23 -0800332 public static boolean canProfileOwnerChange(String restriction, int userId) {
333 return !IMMUTABLE_BY_OWNERS.contains(restriction)
Benjamin Franzff66fa92017-08-10 10:39:44 +0100334 && !DEVICE_OWNER_ONLY_RESTRICTIONS.contains(restriction)
Makoto Onuki5485ed42015-12-09 11:38:23 -0800335 && !(userId != UserHandle.USER_SYSTEM
Pavel Grafov6a40f092016-10-25 15:46:51 +0100336 && PRIMARY_USER_ONLY_RESTRICTIONS.contains(restriction));
Makoto Onuki1a2cd742015-11-16 13:51:27 -0800337 }
338
339 /**
Esteban Talavera6c9116a2016-11-24 16:12:44 +0000340 * Returns the user restrictions that default to {@code true} for device owners.
Nicolas Prevot2ea46fe2017-01-05 10:29:34 +0000341 * These user restrictions are local, though. ie only for the device owner's user id.
Esteban Talavera6c9116a2016-11-24 16:12:44 +0000342 */
343 public static @NonNull Set<String> getDefaultEnabledForDeviceOwner() {
344 return DEFAULT_ENABLED_FOR_DEVICE_OWNERS;
345 }
346
347 /**
Pavel Grafov7f4ad752017-03-28 13:44:04 +0100348 * Returns the user restrictions that default to {@code true} for managed profile owners.
349 */
350 public static @NonNull Set<String> getDefaultEnabledForManagedProfiles() {
351 return DEFAULT_ENABLED_FOR_MANAGED_PROFILES;
352 }
353
354 /**
Makoto Onuki1a2cd742015-11-16 13:51:27 -0800355 * Takes restrictions that can be set by device owner, and sort them into what should be applied
356 * globally and what should be applied only on the current user.
357 */
Pavel Grafov6a40f092016-10-25 15:46:51 +0100358 public static void sortToGlobalAndLocal(@Nullable Bundle in, boolean isDeviceOwner,
359 int cameraRestrictionScope,
360 @NonNull Bundle global, @NonNull Bundle local) {
361 // Camera restriction (as well as all others) goes to at most one bundle.
362 if (cameraRestrictionScope == UserManagerInternal.CAMERA_DISABLED_GLOBALLY) {
363 global.putBoolean(UserManager.DISALLOW_CAMERA, true);
364 } else if (cameraRestrictionScope == UserManagerInternal.CAMERA_DISABLED_LOCALLY) {
365 local.putBoolean(UserManager.DISALLOW_CAMERA, true);
366 }
Makoto Onuki1a2cd742015-11-16 13:51:27 -0800367 if (in == null || in.size() == 0) {
368 return;
369 }
370 for (String key : in.keySet()) {
371 if (!in.getBoolean(key)) {
372 continue;
373 }
Pavel Grafov6a40f092016-10-25 15:46:51 +0100374 if (isGlobal(isDeviceOwner, key)) {
Makoto Onuki1a2cd742015-11-16 13:51:27 -0800375 global.putBoolean(key, true);
376 } else {
377 local.putBoolean(key, true);
378 }
379 }
380 }
381
382 /**
Pavel Grafov6a40f092016-10-25 15:46:51 +0100383 * Whether given user restriction should be enforced globally.
384 */
385 private static boolean isGlobal(boolean isDeviceOwner, String key) {
386 return (isDeviceOwner &&
Benjamin Franzff66fa92017-08-10 10:39:44 +0100387 (PRIMARY_USER_ONLY_RESTRICTIONS.contains(key) || GLOBAL_RESTRICTIONS.contains(key)))
388 || PROFILE_GLOBAL_RESTRICTIONS.contains(key)
389 || DEVICE_OWNER_ONLY_RESTRICTIONS.contains(key);
Pavel Grafov6a40f092016-10-25 15:46:51 +0100390 }
391
392 /**
Makoto Onuki1a2cd742015-11-16 13:51:27 -0800393 * @return true if two Bundles contain the same user restriction.
394 * A null bundle and an empty bundle are considered to be equal.
395 */
396 public static boolean areEqual(@Nullable Bundle a, @Nullable Bundle b) {
397 if (a == b) {
398 return true;
399 }
400 if (isEmpty(a)) {
401 return isEmpty(b);
402 }
403 if (isEmpty(b)) {
404 return false;
405 }
406 for (String key : a.keySet()) {
407 if (a.getBoolean(key) != b.getBoolean(key)) {
408 return false;
409 }
410 }
411 for (String key : b.keySet()) {
412 if (a.getBoolean(key) != b.getBoolean(key)) {
413 return false;
414 }
415 }
416 return true;
417 }
418
419 /**
Makoto Onuki4f160732015-10-27 17:15:38 -0700420 * Takes a new use restriction set and the previous set, and apply the restrictions that have
421 * changed.
Makoto Onukid45a4a22015-11-02 17:17:38 -0800422 *
Fyodor Kupolov9cbfc9e2015-10-07 15:52:33 -0700423 * <p>Note this method is called by {@link UserManagerService} without holding any locks.
Makoto Onuki4f160732015-10-27 17:15:38 -0700424 */
Fyodor Kupolov9cbfc9e2015-10-07 15:52:33 -0700425 public static void applyUserRestrictions(Context context, int userId,
Makoto Onukid45a4a22015-11-02 17:17:38 -0800426 Bundle newRestrictions, Bundle prevRestrictions) {
Makoto Onuki4f160732015-10-27 17:15:38 -0700427 for (String key : USER_RESTRICTIONS) {
428 final boolean newValue = newRestrictions.getBoolean(key);
429 final boolean prevValue = prevRestrictions.getBoolean(key);
430
431 if (newValue != prevValue) {
Fyodor Kupolov9cbfc9e2015-10-07 15:52:33 -0700432 applyUserRestriction(context, userId, key, newValue);
Makoto Onuki4f160732015-10-27 17:15:38 -0700433 }
434 }
435 }
Fyodor Kupolov9cbfc9e2015-10-07 15:52:33 -0700436
Makoto Onukid45a4a22015-11-02 17:17:38 -0800437 /**
438 * Apply each user restriction.
439 *
Makoto Onuki28da2e32015-11-20 11:30:44 -0800440 * <p>See also {@link
441 * com.android.providers.settings.SettingsProvider#isGlobalOrSecureSettingRestrictedForUser},
442 * which should be in sync with this method.
Makoto Onukid45a4a22015-11-02 17:17:38 -0800443 */
Fyodor Kupolov9cbfc9e2015-10-07 15:52:33 -0700444 private static void applyUserRestriction(Context context, int userId, String key,
Makoto Onuki4f160732015-10-27 17:15:38 -0700445 boolean newValue) {
Makoto Onuki1a2cd742015-11-16 13:51:27 -0800446 if (UserManagerService.DBG) {
447 Log.d(TAG, "Applying user restriction: userId=" + userId
448 + " key=" + key + " value=" + newValue);
449 }
Makoto Onuki4f160732015-10-27 17:15:38 -0700450 // When certain restrictions are cleared, we don't update the system settings,
451 // because these settings are changeable on the Settings UI and we don't know the original
452 // value -- for example LOCATION_MODE might have been off already when the restriction was
453 // set, and in that case even if the restriction is lifted, changing it to ON would be
454 // wrong. So just don't do anything in such a case. If the user hopes to enable location
455 // later, they can do it on the Settings UI.
Benjamin Franz0ff13fc2016-07-12 13:42:21 +0100456 // WARNING: Remember that Settings.Global and Settings.Secure are changeable via adb.
457 // To prevent this from happening for a given user restriction, you have to add a check to
458 // SettingsProvider.isGlobalOrSecureSettingRestrictedForUser.
Makoto Onuki4f160732015-10-27 17:15:38 -0700459
460 final ContentResolver cr = context.getContentResolver();
461 final long id = Binder.clearCallingIdentity();
462 try {
463 switch (key) {
Mahaver Chopradea471e2015-12-17 11:02:37 +0000464 case UserManager.DISALLOW_DATA_ROAMING:
465 if (newValue) {
466 // DISALLOW_DATA_ROAMING user restriction is set.
467
468 // Multi sim device.
Jeff Sharkey717f52f2018-01-04 16:04:11 -0700469 SubscriptionManager subscriptionManager = context
470 .getSystemService(SubscriptionManager.class);
Mahaver Chopradea471e2015-12-17 11:02:37 +0000471 final List<SubscriptionInfo> subscriptionInfoList =
472 subscriptionManager.getActiveSubscriptionInfoList();
473 if (subscriptionInfoList != null) {
474 for (SubscriptionInfo subInfo : subscriptionInfoList) {
475 android.provider.Settings.Global.putStringForUser(cr,
476 android.provider.Settings.Global.DATA_ROAMING
477 + subInfo.getSubscriptionId(), "0", userId);
478 }
479 }
480
481 // Single sim device.
482 android.provider.Settings.Global.putStringForUser(cr,
483 android.provider.Settings.Global.DATA_ROAMING, "0", userId);
484 }
485 break;
Makoto Onuki4f160732015-10-27 17:15:38 -0700486 case UserManager.DISALLOW_SHARE_LOCATION:
487 if (newValue) {
488 android.provider.Settings.Secure.putIntForUser(cr,
489 android.provider.Settings.Secure.LOCATION_MODE,
490 android.provider.Settings.Secure.LOCATION_MODE_OFF,
491 userId);
Makoto Onuki4f160732015-10-27 17:15:38 -0700492 }
Makoto Onuki4f160732015-10-27 17:15:38 -0700493 break;
494 case UserManager.DISALLOW_DEBUGGING_FEATURES:
495 if (newValue) {
496 // Only disable adb if changing for system user, since it is global
497 // TODO: should this be admin user?
498 if (userId == UserHandle.USER_SYSTEM) {
499 android.provider.Settings.Global.putStringForUser(cr,
500 android.provider.Settings.Global.ADB_ENABLED, "0",
501 userId);
502 }
503 }
504 break;
505 case UserManager.ENSURE_VERIFY_APPS:
506 if (newValue) {
507 android.provider.Settings.Global.putStringForUser(
508 context.getContentResolver(),
509 android.provider.Settings.Global.PACKAGE_VERIFIER_ENABLE, "1",
510 userId);
511 android.provider.Settings.Global.putStringForUser(
512 context.getContentResolver(),
513 android.provider.Settings.Global.PACKAGE_VERIFIER_INCLUDE_ADB, "1",
514 userId);
515 }
516 break;
517 case UserManager.DISALLOW_INSTALL_UNKNOWN_SOURCES:
Suprabh Shuklae3745ee2017-02-02 20:01:11 -0800518 // Since Android O, the secure setting is not available to be changed by the
519 // user. Hence, when the restriction is cleared, we need to reset the state of
520 // the setting to its default value which is now 1.
521 android.provider.Settings.Secure.putIntForUser(cr,
522 android.provider.Settings.Secure.INSTALL_NON_MARKET_APPS,
523 newValue ? 0 : 1, userId);
Makoto Onuki4f160732015-10-27 17:15:38 -0700524 break;
Fyodor Kupolov9cbfc9e2015-10-07 15:52:33 -0700525 case UserManager.DISALLOW_RUN_IN_BACKGROUND:
526 if (newValue) {
527 int currentUser = ActivityManager.getCurrentUser();
528 if (currentUser != userId && userId != UserHandle.USER_SYSTEM) {
529 try {
Sudheer Shankadc589ac2016-11-10 15:30:17 -0800530 ActivityManager.getService().stopUser(userId, false, null);
Fyodor Kupolov9cbfc9e2015-10-07 15:52:33 -0700531 } catch (RemoteException e) {
532 throw e.rethrowAsRuntimeException();
533 }
534 }
535 }
Lenka Trochtova6474f0e2016-03-24 16:43:10 +0100536 break;
537 case UserManager.DISALLOW_SAFE_BOOT:
538 // Unlike with the other restrictions, we want to propagate the new value to
539 // the system settings even if it is false. The other restrictions modify
540 // settings which could be manually changed by the user from the Settings app
541 // after the policies enforcing these restrictions have been revoked, so we
542 // leave re-setting of those settings to the user.
543 android.provider.Settings.Global.putInt(
544 context.getContentResolver(),
545 android.provider.Settings.Global.SAFE_BOOT_DISALLOWED,
546 newValue ? 1 : 0);
547 break;
yuemingw265c6922018-01-11 18:31:14 +0000548 case UserManager.DISALLOW_AIRPLANE_MODE:
549 if (newValue) {
550 final boolean airplaneMode = Settings.Global.getInt(
551 context.getContentResolver(),
552 Settings.Global.AIRPLANE_MODE_ON, 0) == 1;
553 if (airplaneMode) {
554 android.provider.Settings.Global.putInt(
555 context.getContentResolver(),
556 android.provider.Settings.Global.AIRPLANE_MODE_ON, 0);
557 // Post the intent.
558 Intent intent = new Intent(Intent.ACTION_AIRPLANE_MODE_CHANGED);
559 intent.putExtra("state", 0);
560 context.sendBroadcastAsUser(intent, UserHandle.ALL);
561 }
562 }
563 break;
yuemingwc0109512018-01-21 19:21:27 +0000564 case UserManager.DISALLOW_AMBIENT_DISPLAY:
565 if (newValue) {
566 android.provider.Settings.Secure.putString(
567 context.getContentResolver(),
568 Settings.Secure.DOZE_ENABLED, "0");
569 android.provider.Settings.Secure.putString(
570 context.getContentResolver(),
571 Settings.Secure.DOZE_ALWAYS_ON, "0");
572 android.provider.Settings.Secure.putString(
573 context.getContentResolver(),
574 Settings.Secure.DOZE_PULSE_ON_PICK_UP, "0");
575 android.provider.Settings.Secure.putString(
576 context.getContentResolver(),
577 Settings.Secure.DOZE_PULSE_ON_LONG_PRESS, "0");
578 android.provider.Settings.Secure.putString(
579 context.getContentResolver(),
580 Settings.Secure.DOZE_PULSE_ON_DOUBLE_TAP, "0");
581 }
582 break;
Makoto Onuki4f160732015-10-27 17:15:38 -0700583 }
Makoto Onuki4f160732015-10-27 17:15:38 -0700584 } finally {
585 Binder.restoreCallingIdentity(id);
586 }
587 }
588
Makoto Onukia4f11972015-10-01 13:19:58 -0700589 public static void dumpRestrictions(PrintWriter pw, String prefix, Bundle restrictions) {
590 boolean noneSet = true;
591 if (restrictions != null) {
592 for (String key : restrictions.keySet()) {
593 if (restrictions.getBoolean(key, false)) {
594 pw.println(prefix + key);
595 noneSet = false;
596 }
597 }
Makoto Onuki068c54a2015-10-13 14:34:03 -0700598 if (noneSet) {
599 pw.println(prefix + "none");
600 }
601 } else {
602 pw.println(prefix + "null");
Makoto Onukia4f11972015-10-01 13:19:58 -0700603 }
604 }
Pavel Grafov6a40f092016-10-25 15:46:51 +0100605
606 /**
607 * Moves a particular restriction from one array of bundles to another, e.g. for all users.
608 */
609 public static void moveRestriction(String restrictionKey, SparseArray<Bundle> srcRestrictions,
610 SparseArray<Bundle> destRestrictions) {
611 for (int i = 0; i < srcRestrictions.size(); i++) {
Pavel Grafov7f4ad752017-03-28 13:44:04 +0100612 final int key = srcRestrictions.keyAt(i);
613 final Bundle from = srcRestrictions.valueAt(i);
Pavel Grafov6a40f092016-10-25 15:46:51 +0100614 if (contains(from, restrictionKey)) {
615 from.remove(restrictionKey);
616 Bundle to = destRestrictions.get(key);
617 if (to == null) {
618 to = new Bundle();
619 destRestrictions.append(key, to);
620 }
621 to.putBoolean(restrictionKey, true);
622 // Don't keep empty bundles.
623 if (from.isEmpty()) {
624 srcRestrictions.removeAt(i);
625 i--;
626 }
627 }
628 }
629 }
Pavel Grafov7f4ad752017-03-28 13:44:04 +0100630
631 /**
632 * Returns whether restrictions differ between two bundles.
633 * @param oldRestrictions old bundle of restrictions.
634 * @param newRestrictions new bundle of restrictions
635 * @param restrictions restrictions of interest, if empty, all restrictions are checked.
636 */
637 public static boolean restrictionsChanged(Bundle oldRestrictions, Bundle newRestrictions,
638 String... restrictions) {
639 if (restrictions.length == 0) {
640 return areEqual(oldRestrictions, newRestrictions);
641 }
642 for (final String restriction : restrictions) {
643 if (oldRestrictions.getBoolean(restriction, false) !=
644 newRestrictions.getBoolean(restriction, false)) {
645 return true;
646 }
647 }
648 return false;
649 }
Makoto Onukia4f11972015-10-01 13:19:58 -0700650}