blob: c6667a702f677a9ed93ec9e69843d21a9aca8550 [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;
Makoto Onuki4f160732015-10-27 17:15:38 -070028import android.os.Binder;
Makoto Onukia4f11972015-10-01 13:19:58 -070029import android.os.Bundle;
Fyodor Kupolov9cbfc9e2015-10-07 15:52:33 -070030import android.os.RemoteException;
Makoto Onuki4f160732015-10-27 17:15:38 -070031import android.os.UserHandle;
Makoto Onukia4f11972015-10-01 13:19:58 -070032import android.os.UserManager;
Pavel Grafov6a40f092016-10-25 15:46:51 +010033import android.os.UserManagerInternal;
Mahaver Chopra830e32c2016-05-17 18:53:09 +010034import android.service.persistentdata.PersistentDataBlockManager;
Mahaver Chopradea471e2015-12-17 11:02:37 +000035import android.telephony.SubscriptionInfo;
36import android.telephony.SubscriptionManager;
Makoto Onuki1a2cd742015-11-16 13:51:27 -080037import android.util.Log;
Makoto Onuki1f1ceef2016-01-28 11:32:32 -080038import android.util.Slog;
Pavel Grafov6a40f092016-10-25 15:46:51 +010039import android.util.SparseArray;
Makoto Onukia4f11972015-10-01 13:19:58 -070040
41import org.xmlpull.v1.XmlPullParser;
42import org.xmlpull.v1.XmlSerializer;
43
44import java.io.IOException;
45import java.io.PrintWriter;
Mahaver Chopradea471e2015-12-17 11:02:37 +000046import java.util.List;
Makoto Onukia4f11972015-10-01 13:19:58 -070047import java.util.Set;
48
Makoto Onukid45a4a22015-11-02 17:17:38 -080049/**
Mahaver Chopradea471e2015-12-17 11:02:37 +000050 * Utility methods for user restrictions.
Makoto Onukid45a4a22015-11-02 17:17:38 -080051 *
52 * <p>See {@link UserManagerService} for the method suffixes.
53 */
Makoto Onukia4f11972015-10-01 13:19:58 -070054public class UserRestrictionsUtils {
Makoto Onuki4f160732015-10-27 17:15:38 -070055 private static final String TAG = "UserRestrictionsUtils";
56
Makoto Onukia4f11972015-10-01 13:19:58 -070057 private UserRestrictionsUtils() {
58 }
59
Makoto Onuki1f1ceef2016-01-28 11:32:32 -080060 private static Set<String> newSetWithUniqueCheck(String[] strings) {
61 final Set<String> ret = Sets.newArraySet(strings);
62
63 // Make sure there's no overlap.
64 Preconditions.checkState(ret.size() == strings.length);
65 return ret;
66 }
67
68 public static final Set<String> USER_RESTRICTIONS = newSetWithUniqueCheck(new String[] {
Makoto Onukia4f11972015-10-01 13:19:58 -070069 UserManager.DISALLOW_CONFIG_WIFI,
70 UserManager.DISALLOW_MODIFY_ACCOUNTS,
71 UserManager.DISALLOW_INSTALL_APPS,
72 UserManager.DISALLOW_UNINSTALL_APPS,
73 UserManager.DISALLOW_SHARE_LOCATION,
74 UserManager.DISALLOW_INSTALL_UNKNOWN_SOURCES,
75 UserManager.DISALLOW_CONFIG_BLUETOOTH,
Lenka Trochtova63d5e4a72016-12-02 12:19:39 +010076 UserManager.DISALLOW_BLUETOOTH,
Pavel Grafov7f4ad752017-03-28 13:44:04 +010077 UserManager.DISALLOW_BLUETOOTH_SHARING,
Makoto Onukia4f11972015-10-01 13:19:58 -070078 UserManager.DISALLOW_USB_FILE_TRANSFER,
79 UserManager.DISALLOW_CONFIG_CREDENTIALS,
80 UserManager.DISALLOW_REMOVE_USER,
Esteban Talavera6c9116a2016-11-24 16:12:44 +000081 UserManager.DISALLOW_REMOVE_MANAGED_PROFILE,
Makoto Onukia4f11972015-10-01 13:19:58 -070082 UserManager.DISALLOW_DEBUGGING_FEATURES,
83 UserManager.DISALLOW_CONFIG_VPN,
84 UserManager.DISALLOW_CONFIG_TETHERING,
85 UserManager.DISALLOW_NETWORK_RESET,
86 UserManager.DISALLOW_FACTORY_RESET,
87 UserManager.DISALLOW_ADD_USER,
Esteban Talavera6c9116a2016-11-24 16:12:44 +000088 UserManager.DISALLOW_ADD_MANAGED_PROFILE,
Makoto Onukia4f11972015-10-01 13:19:58 -070089 UserManager.ENSURE_VERIFY_APPS,
90 UserManager.DISALLOW_CONFIG_CELL_BROADCASTS,
91 UserManager.DISALLOW_CONFIG_MOBILE_NETWORKS,
92 UserManager.DISALLOW_APPS_CONTROL,
93 UserManager.DISALLOW_MOUNT_PHYSICAL_MEDIA,
94 UserManager.DISALLOW_UNMUTE_MICROPHONE,
95 UserManager.DISALLOW_ADJUST_VOLUME,
96 UserManager.DISALLOW_OUTGOING_CALLS,
97 UserManager.DISALLOW_SMS,
98 UserManager.DISALLOW_FUN,
99 UserManager.DISALLOW_CREATE_WINDOWS,
100 UserManager.DISALLOW_CROSS_PROFILE_COPY_PASTE,
101 UserManager.DISALLOW_OUTGOING_BEAM,
102 UserManager.DISALLOW_WALLPAPER,
103 UserManager.DISALLOW_SAFE_BOOT,
104 UserManager.ALLOW_PARENT_PROFILE_APP_LINKING,
105 UserManager.DISALLOW_RECORD_AUDIO,
Fyodor Kupolov9cbfc9e2015-10-07 15:52:33 -0700106 UserManager.DISALLOW_CAMERA,
Mahaver Chopradea471e2015-12-17 11:02:37 +0000107 UserManager.DISALLOW_RUN_IN_BACKGROUND,
Oleksandr Peletskyi7f1f1df2016-01-18 15:40:21 +0100108 UserManager.DISALLOW_DATA_ROAMING,
Oleksandr Peletskyif2519812016-01-26 20:16:06 +0100109 UserManager.DISALLOW_SET_USER_ICON,
Mahaver Chopra3d9805d2016-07-07 16:25:05 +0100110 UserManager.DISALLOW_SET_WALLPAPER,
Tony Makc1205112016-07-22 16:02:59 +0100111 UserManager.DISALLOW_OEM_UNLOCK,
Esteban Talavera492b4722017-02-13 14:59:45 +0000112 UserManager.DISALLOW_UNMUTE_DEVICE,
Felipe Leme24d58932017-03-21 14:13:58 -0700113 UserManager.DISALLOW_AUTOFILL,
Makoto Onuki1f1ceef2016-01-28 11:32:32 -0800114 });
Makoto Onukia4f11972015-10-01 13:19:58 -0700115
116 /**
117 * Set of user restriction which we don't want to persist.
118 */
Makoto Onuki1a2cd742015-11-16 13:51:27 -0800119 private static final Set<String> NON_PERSIST_USER_RESTRICTIONS = Sets.newArraySet(
120 UserManager.DISALLOW_RECORD_AUDIO
121 );
Makoto Onukia4f11972015-10-01 13:19:58 -0700122
Makoto Onuki1a2cd742015-11-16 13:51:27 -0800123 /**
Pavel Grafov6a40f092016-10-25 15:46:51 +0100124 * User restrictions that cannot be set by profile owners of secondary users. When set by DO
125 * they will be applied to all users.
Makoto Onuki1a2cd742015-11-16 13:51:27 -0800126 */
Pavel Grafov6a40f092016-10-25 15:46:51 +0100127 private static final Set<String> PRIMARY_USER_ONLY_RESTRICTIONS = Sets.newArraySet(
Lenka Trochtova63d5e4a72016-12-02 12:19:39 +0100128 UserManager.DISALLOW_BLUETOOTH,
Makoto Onuki1a2cd742015-11-16 13:51:27 -0800129 UserManager.DISALLOW_USB_FILE_TRANSFER,
130 UserManager.DISALLOW_CONFIG_TETHERING,
131 UserManager.DISALLOW_NETWORK_RESET,
132 UserManager.DISALLOW_FACTORY_RESET,
133 UserManager.DISALLOW_ADD_USER,
134 UserManager.DISALLOW_CONFIG_CELL_BROADCASTS,
135 UserManager.DISALLOW_CONFIG_MOBILE_NETWORKS,
136 UserManager.DISALLOW_MOUNT_PHYSICAL_MEDIA,
137 UserManager.DISALLOW_SMS,
138 UserManager.DISALLOW_FUN,
139 UserManager.DISALLOW_SAFE_BOOT,
Mahaver Chopradea471e2015-12-17 11:02:37 +0000140 UserManager.DISALLOW_CREATE_WINDOWS,
141 UserManager.DISALLOW_DATA_ROAMING
Makoto Onuki1a2cd742015-11-16 13:51:27 -0800142 );
143
144 /**
145 * User restrictions that can't be changed by device owner or profile owner.
146 */
147 private static final Set<String> IMMUTABLE_BY_OWNERS = Sets.newArraySet(
148 UserManager.DISALLOW_RECORD_AUDIO,
Mahaver Chopra3d9805d2016-07-07 16:25:05 +0100149 UserManager.DISALLOW_WALLPAPER,
150 UserManager.DISALLOW_OEM_UNLOCK
Makoto Onuki1a2cd742015-11-16 13:51:27 -0800151 );
152
153 /**
154 * Special user restrictions that can be applied to a user as well as to all users globally,
155 * depending on callers. When device owner sets them, they'll be applied to all users.
156 */
157 private static final Set<String> GLOBAL_RESTRICTIONS = Sets.newArraySet(
158 UserManager.DISALLOW_ADJUST_VOLUME,
Pavel Grafov7f4ad752017-03-28 13:44:04 +0100159 UserManager.DISALLOW_BLUETOOTH_SHARING,
Fyodor Kupolov9cbfc9e2015-10-07 15:52:33 -0700160 UserManager.DISALLOW_RUN_IN_BACKGROUND,
Tony Makc1205112016-07-22 16:02:59 +0100161 UserManager.DISALLOW_UNMUTE_MICROPHONE,
Esteban Talavera492b4722017-02-13 14:59:45 +0000162 UserManager.DISALLOW_UNMUTE_DEVICE
Makoto Onuki1a2cd742015-11-16 13:51:27 -0800163 );
164
Makoto Onuki1f1ceef2016-01-28 11:32:32 -0800165 /**
Esteban Talavera6c9116a2016-11-24 16:12:44 +0000166 * User restrictions that default to {@code true} for device owners.
167 */
168 private static final Set<String> DEFAULT_ENABLED_FOR_DEVICE_OWNERS = Sets.newArraySet(
169 UserManager.DISALLOW_ADD_MANAGED_PROFILE
170 );
171
Pavel Grafov7f4ad752017-03-28 13:44:04 +0100172 /**
173 * User restrictions that default to {@code true} for managed profile owners.
174 *
175 * NB: {@link UserManager#DISALLOW_INSTALL_UNKNOWN_SOURCES} is also set by default but it is
176 * not set to existing profile owners unless they used to have INSTALL_NON_MARKET_APPS disabled
177 * in settings. So it is handled separately.
178 */
179 private static final Set<String> DEFAULT_ENABLED_FOR_MANAGED_PROFILES = Sets.newArraySet(
180 UserManager.DISALLOW_BLUETOOTH_SHARING
181 );
182
Pavel Grafov6a40f092016-10-25 15:46:51 +0100183 /*
184 * Special user restrictions that are always applied to all users no matter who sets them.
185 */
186 private static final Set<String> PROFILE_GLOBAL_RESTRICTIONS = Sets.newArraySet(
187 UserManager.ENSURE_VERIFY_APPS
188 );
189
Esteban Talavera6c9116a2016-11-24 16:12:44 +0000190 /**
Makoto Onuki1f1ceef2016-01-28 11:32:32 -0800191 * Throws {@link IllegalArgumentException} if the given restriction name is invalid.
192 */
193 public static boolean isValidRestriction(@NonNull String restriction) {
194 if (!USER_RESTRICTIONS.contains(restriction)) {
Makoto Onukiad5619d2016-02-10 13:41:15 -0800195 Slog.e(TAG, "Unknown restriction: " + restriction);
Makoto Onuki1f1ceef2016-01-28 11:32:32 -0800196 return false;
197 }
198 return true;
199 }
200
Makoto Onuki1a2cd742015-11-16 13:51:27 -0800201 public static void writeRestrictions(@NonNull XmlSerializer serializer,
202 @Nullable Bundle restrictions, @NonNull String tag) throws IOException {
203 if (restrictions == null) {
204 return;
205 }
206
Makoto Onukia4f11972015-10-01 13:19:58 -0700207 serializer.startTag(null, tag);
Makoto Onukiac65e1e2015-11-20 15:33:17 -0800208 for (String key : restrictions.keySet()) {
209 if (NON_PERSIST_USER_RESTRICTIONS.contains(key)) {
210 continue; // Don't persist.
Makoto Onukia4f11972015-10-01 13:19:58 -0700211 }
Makoto Onukiac65e1e2015-11-20 15:33:17 -0800212 if (USER_RESTRICTIONS.contains(key)) {
213 if (restrictions.getBoolean(key)) {
214 serializer.attribute(null, key, "true");
215 }
216 continue;
217 }
218 Log.w(TAG, "Unknown user restriction detected: " + key);
Makoto Onukia4f11972015-10-01 13:19:58 -0700219 }
220 serializer.endTag(null, tag);
221 }
222
Esteban Talaverac48b20f2016-08-11 11:23:40 +0100223 public static void readRestrictions(XmlPullParser parser, Bundle restrictions) {
Fyodor Kupoloveafee022017-03-15 17:09:04 -0700224 restrictions.clear();
Makoto Onukia4f11972015-10-01 13:19:58 -0700225 for (String key : USER_RESTRICTIONS) {
226 final String value = parser.getAttributeValue(null, key);
227 if (value != null) {
228 restrictions.putBoolean(key, Boolean.parseBoolean(value));
229 }
230 }
231 }
232
Pavel Grafov6a40f092016-10-25 15:46:51 +0100233 public static Bundle readRestrictions(XmlPullParser parser) {
234 final Bundle result = new Bundle();
235 readRestrictions(parser, result);
236 return result;
237 }
238
Makoto Onuki1a2cd742015-11-16 13:51:27 -0800239 /**
240 * @return {@code in} itself when it's not null, or an empty bundle (which can writable).
241 */
242 public static Bundle nonNull(@Nullable Bundle in) {
243 return in != null ? in : new Bundle();
244 }
245
246 public static boolean isEmpty(@Nullable Bundle in) {
247 return (in == null) || (in.size() == 0);
248 }
249
250 /**
Pavel Grafov6a40f092016-10-25 15:46:51 +0100251 * Returns {@code true} if given bundle is not null and contains {@code true} for a given
252 * restriction.
253 */
254 public static boolean contains(@Nullable Bundle in, String restriction) {
255 return in != null && in.getBoolean(restriction);
256 }
257
258 /**
Makoto Onuki1a2cd742015-11-16 13:51:27 -0800259 * Creates a copy of the {@code in} Bundle. If {@code in} is null, it'll return an empty
260 * bundle.
261 *
262 * <p>The resulting {@link Bundle} is always writable. (i.e. it won't return
263 * {@link Bundle#EMPTY})
264 */
265 public static @NonNull Bundle clone(@Nullable Bundle in) {
266 return (in != null) ? new Bundle(in) : new Bundle();
267 }
268
269 public static void merge(@NonNull Bundle dest, @Nullable Bundle in) {
270 Preconditions.checkNotNull(dest);
271 Preconditions.checkArgument(dest != in);
Makoto Onuki068c54a2015-10-13 14:34:03 -0700272 if (in == null) {
273 return;
274 }
275 for (String key : in.keySet()) {
276 if (in.getBoolean(key, false)) {
277 dest.putBoolean(key, true);
278 }
279 }
280 }
281
Makoto Onuki4f160732015-10-27 17:15:38 -0700282 /**
Pavel Grafov6a40f092016-10-25 15:46:51 +0100283 * Merges a sparse array of restrictions bundles into one.
284 */
285 @Nullable
286 public static Bundle mergeAll(SparseArray<Bundle> restrictions) {
287 if (restrictions.size() == 0) {
288 return null;
289 } else {
290 final Bundle result = new Bundle();
291 for (int i = 0; i < restrictions.size(); i++) {
292 merge(result, restrictions.valueAt(i));
293 }
294 return result;
295 }
296 }
297
298 /**
Makoto Onuki1a2cd742015-11-16 13:51:27 -0800299 * @return true if a restriction is settable by device owner.
300 */
301 public static boolean canDeviceOwnerChange(String restriction) {
302 return !IMMUTABLE_BY_OWNERS.contains(restriction);
303 }
304
305 /**
Makoto Onuki5485ed42015-12-09 11:38:23 -0800306 * @return true if a restriction is settable by profile owner. Note it takes a user ID because
307 * some restrictions can be changed by PO only when it's running on the system user.
Makoto Onuki1a2cd742015-11-16 13:51:27 -0800308 */
Makoto Onuki5485ed42015-12-09 11:38:23 -0800309 public static boolean canProfileOwnerChange(String restriction, int userId) {
310 return !IMMUTABLE_BY_OWNERS.contains(restriction)
311 && !(userId != UserHandle.USER_SYSTEM
Pavel Grafov6a40f092016-10-25 15:46:51 +0100312 && PRIMARY_USER_ONLY_RESTRICTIONS.contains(restriction));
Makoto Onuki1a2cd742015-11-16 13:51:27 -0800313 }
314
315 /**
Esteban Talavera6c9116a2016-11-24 16:12:44 +0000316 * Returns the user restrictions that default to {@code true} for device owners.
Nicolas Prevot2ea46fe2017-01-05 10:29:34 +0000317 * These user restrictions are local, though. ie only for the device owner's user id.
Esteban Talavera6c9116a2016-11-24 16:12:44 +0000318 */
319 public static @NonNull Set<String> getDefaultEnabledForDeviceOwner() {
320 return DEFAULT_ENABLED_FOR_DEVICE_OWNERS;
321 }
322
323 /**
Pavel Grafov7f4ad752017-03-28 13:44:04 +0100324 * Returns the user restrictions that default to {@code true} for managed profile owners.
325 */
326 public static @NonNull Set<String> getDefaultEnabledForManagedProfiles() {
327 return DEFAULT_ENABLED_FOR_MANAGED_PROFILES;
328 }
329
330 /**
Makoto Onuki1a2cd742015-11-16 13:51:27 -0800331 * Takes restrictions that can be set by device owner, and sort them into what should be applied
332 * globally and what should be applied only on the current user.
333 */
Pavel Grafov6a40f092016-10-25 15:46:51 +0100334 public static void sortToGlobalAndLocal(@Nullable Bundle in, boolean isDeviceOwner,
335 int cameraRestrictionScope,
336 @NonNull Bundle global, @NonNull Bundle local) {
337 // Camera restriction (as well as all others) goes to at most one bundle.
338 if (cameraRestrictionScope == UserManagerInternal.CAMERA_DISABLED_GLOBALLY) {
339 global.putBoolean(UserManager.DISALLOW_CAMERA, true);
340 } else if (cameraRestrictionScope == UserManagerInternal.CAMERA_DISABLED_LOCALLY) {
341 local.putBoolean(UserManager.DISALLOW_CAMERA, true);
342 }
Makoto Onuki1a2cd742015-11-16 13:51:27 -0800343 if (in == null || in.size() == 0) {
344 return;
345 }
346 for (String key : in.keySet()) {
347 if (!in.getBoolean(key)) {
348 continue;
349 }
Pavel Grafov6a40f092016-10-25 15:46:51 +0100350 if (isGlobal(isDeviceOwner, key)) {
Makoto Onuki1a2cd742015-11-16 13:51:27 -0800351 global.putBoolean(key, true);
352 } else {
353 local.putBoolean(key, true);
354 }
355 }
356 }
357
358 /**
Pavel Grafov6a40f092016-10-25 15:46:51 +0100359 * Whether given user restriction should be enforced globally.
360 */
361 private static boolean isGlobal(boolean isDeviceOwner, String key) {
362 return (isDeviceOwner &&
363 (PRIMARY_USER_ONLY_RESTRICTIONS.contains(key)|| GLOBAL_RESTRICTIONS.contains(key)))
364 || PROFILE_GLOBAL_RESTRICTIONS.contains(key);
365 }
366
367 /**
Makoto Onuki1a2cd742015-11-16 13:51:27 -0800368 * @return true if two Bundles contain the same user restriction.
369 * A null bundle and an empty bundle are considered to be equal.
370 */
371 public static boolean areEqual(@Nullable Bundle a, @Nullable Bundle b) {
372 if (a == b) {
373 return true;
374 }
375 if (isEmpty(a)) {
376 return isEmpty(b);
377 }
378 if (isEmpty(b)) {
379 return false;
380 }
381 for (String key : a.keySet()) {
382 if (a.getBoolean(key) != b.getBoolean(key)) {
383 return false;
384 }
385 }
386 for (String key : b.keySet()) {
387 if (a.getBoolean(key) != b.getBoolean(key)) {
388 return false;
389 }
390 }
391 return true;
392 }
393
394 /**
Makoto Onuki4f160732015-10-27 17:15:38 -0700395 * Takes a new use restriction set and the previous set, and apply the restrictions that have
396 * changed.
Makoto Onukid45a4a22015-11-02 17:17:38 -0800397 *
Fyodor Kupolov9cbfc9e2015-10-07 15:52:33 -0700398 * <p>Note this method is called by {@link UserManagerService} without holding any locks.
Makoto Onuki4f160732015-10-27 17:15:38 -0700399 */
Fyodor Kupolov9cbfc9e2015-10-07 15:52:33 -0700400 public static void applyUserRestrictions(Context context, int userId,
Makoto Onukid45a4a22015-11-02 17:17:38 -0800401 Bundle newRestrictions, Bundle prevRestrictions) {
Makoto Onuki4f160732015-10-27 17:15:38 -0700402 for (String key : USER_RESTRICTIONS) {
403 final boolean newValue = newRestrictions.getBoolean(key);
404 final boolean prevValue = prevRestrictions.getBoolean(key);
405
406 if (newValue != prevValue) {
Fyodor Kupolov9cbfc9e2015-10-07 15:52:33 -0700407 applyUserRestriction(context, userId, key, newValue);
Makoto Onuki4f160732015-10-27 17:15:38 -0700408 }
409 }
410 }
Fyodor Kupolov9cbfc9e2015-10-07 15:52:33 -0700411
Makoto Onukid45a4a22015-11-02 17:17:38 -0800412 /**
413 * Apply each user restriction.
414 *
Makoto Onuki28da2e32015-11-20 11:30:44 -0800415 * <p>See also {@link
416 * com.android.providers.settings.SettingsProvider#isGlobalOrSecureSettingRestrictedForUser},
417 * which should be in sync with this method.
Makoto Onukid45a4a22015-11-02 17:17:38 -0800418 */
Fyodor Kupolov9cbfc9e2015-10-07 15:52:33 -0700419 private static void applyUserRestriction(Context context, int userId, String key,
Makoto Onuki4f160732015-10-27 17:15:38 -0700420 boolean newValue) {
Makoto Onuki1a2cd742015-11-16 13:51:27 -0800421 if (UserManagerService.DBG) {
422 Log.d(TAG, "Applying user restriction: userId=" + userId
423 + " key=" + key + " value=" + newValue);
424 }
Makoto Onuki4f160732015-10-27 17:15:38 -0700425 // When certain restrictions are cleared, we don't update the system settings,
426 // because these settings are changeable on the Settings UI and we don't know the original
427 // value -- for example LOCATION_MODE might have been off already when the restriction was
428 // set, and in that case even if the restriction is lifted, changing it to ON would be
429 // wrong. So just don't do anything in such a case. If the user hopes to enable location
430 // later, they can do it on the Settings UI.
Benjamin Franz0ff13fc2016-07-12 13:42:21 +0100431 // WARNING: Remember that Settings.Global and Settings.Secure are changeable via adb.
432 // To prevent this from happening for a given user restriction, you have to add a check to
433 // SettingsProvider.isGlobalOrSecureSettingRestrictedForUser.
Makoto Onuki4f160732015-10-27 17:15:38 -0700434
435 final ContentResolver cr = context.getContentResolver();
436 final long id = Binder.clearCallingIdentity();
437 try {
438 switch (key) {
Mahaver Chopradea471e2015-12-17 11:02:37 +0000439 case UserManager.DISALLOW_DATA_ROAMING:
440 if (newValue) {
441 // DISALLOW_DATA_ROAMING user restriction is set.
442
443 // Multi sim device.
444 SubscriptionManager subscriptionManager = new SubscriptionManager(context);
445 final List<SubscriptionInfo> subscriptionInfoList =
446 subscriptionManager.getActiveSubscriptionInfoList();
447 if (subscriptionInfoList != null) {
448 for (SubscriptionInfo subInfo : subscriptionInfoList) {
449 android.provider.Settings.Global.putStringForUser(cr,
450 android.provider.Settings.Global.DATA_ROAMING
451 + subInfo.getSubscriptionId(), "0", userId);
452 }
453 }
454
455 // Single sim device.
456 android.provider.Settings.Global.putStringForUser(cr,
457 android.provider.Settings.Global.DATA_ROAMING, "0", userId);
458 }
459 break;
Makoto Onuki4f160732015-10-27 17:15:38 -0700460 case UserManager.DISALLOW_SHARE_LOCATION:
461 if (newValue) {
462 android.provider.Settings.Secure.putIntForUser(cr,
463 android.provider.Settings.Secure.LOCATION_MODE,
464 android.provider.Settings.Secure.LOCATION_MODE_OFF,
465 userId);
Makoto Onuki4f160732015-10-27 17:15:38 -0700466 }
Makoto Onuki4f160732015-10-27 17:15:38 -0700467 break;
468 case UserManager.DISALLOW_DEBUGGING_FEATURES:
469 if (newValue) {
470 // Only disable adb if changing for system user, since it is global
471 // TODO: should this be admin user?
472 if (userId == UserHandle.USER_SYSTEM) {
473 android.provider.Settings.Global.putStringForUser(cr,
474 android.provider.Settings.Global.ADB_ENABLED, "0",
475 userId);
476 }
477 }
478 break;
479 case UserManager.ENSURE_VERIFY_APPS:
480 if (newValue) {
481 android.provider.Settings.Global.putStringForUser(
482 context.getContentResolver(),
483 android.provider.Settings.Global.PACKAGE_VERIFIER_ENABLE, "1",
484 userId);
485 android.provider.Settings.Global.putStringForUser(
486 context.getContentResolver(),
487 android.provider.Settings.Global.PACKAGE_VERIFIER_INCLUDE_ADB, "1",
488 userId);
489 }
490 break;
491 case UserManager.DISALLOW_INSTALL_UNKNOWN_SOURCES:
Suprabh Shuklae3745ee2017-02-02 20:01:11 -0800492 // Since Android O, the secure setting is not available to be changed by the
493 // user. Hence, when the restriction is cleared, we need to reset the state of
494 // the setting to its default value which is now 1.
495 android.provider.Settings.Secure.putIntForUser(cr,
496 android.provider.Settings.Secure.INSTALL_NON_MARKET_APPS,
497 newValue ? 0 : 1, userId);
Makoto Onuki4f160732015-10-27 17:15:38 -0700498 break;
Fyodor Kupolov9cbfc9e2015-10-07 15:52:33 -0700499 case UserManager.DISALLOW_RUN_IN_BACKGROUND:
500 if (newValue) {
501 int currentUser = ActivityManager.getCurrentUser();
502 if (currentUser != userId && userId != UserHandle.USER_SYSTEM) {
503 try {
Sudheer Shankadc589ac2016-11-10 15:30:17 -0800504 ActivityManager.getService().stopUser(userId, false, null);
Fyodor Kupolov9cbfc9e2015-10-07 15:52:33 -0700505 } catch (RemoteException e) {
506 throw e.rethrowAsRuntimeException();
507 }
508 }
509 }
Lenka Trochtova6474f0e2016-03-24 16:43:10 +0100510 break;
511 case UserManager.DISALLOW_SAFE_BOOT:
512 // Unlike with the other restrictions, we want to propagate the new value to
513 // the system settings even if it is false. The other restrictions modify
514 // settings which could be manually changed by the user from the Settings app
515 // after the policies enforcing these restrictions have been revoked, so we
516 // leave re-setting of those settings to the user.
517 android.provider.Settings.Global.putInt(
518 context.getContentResolver(),
519 android.provider.Settings.Global.SAFE_BOOT_DISALLOWED,
520 newValue ? 1 : 0);
521 break;
Mahaver Chopra830e32c2016-05-17 18:53:09 +0100522 case UserManager.DISALLOW_FACTORY_RESET:
Mahaver Chopra3d9805d2016-07-07 16:25:05 +0100523 case UserManager.DISALLOW_OEM_UNLOCK:
Mahaver Chopra830e32c2016-05-17 18:53:09 +0100524 if (newValue) {
525 PersistentDataBlockManager manager = (PersistentDataBlockManager) context
526 .getSystemService(Context.PERSISTENT_DATA_BLOCK_SERVICE);
Esteban Talaverac48b20f2016-08-11 11:23:40 +0100527 if (manager != null
528 && manager.getOemUnlockEnabled()
529 && manager.getFlashLockState()
530 != PersistentDataBlockManager.FLASH_LOCK_UNLOCKED) {
531 // Only disable OEM unlock if the bootloader is locked. If it's already
532 // unlocked, setting the OEM unlock enabled flag to false has no effect
533 // (the bootloader would remain unlocked).
Mahaver Chopra830e32c2016-05-17 18:53:09 +0100534 manager.setOemUnlockEnabled(false);
535 }
536 }
Tony Makc1205112016-07-22 16:02:59 +0100537 break;
Makoto Onuki4f160732015-10-27 17:15:38 -0700538 }
Makoto Onuki4f160732015-10-27 17:15:38 -0700539 } finally {
540 Binder.restoreCallingIdentity(id);
541 }
542 }
543
Makoto Onukia4f11972015-10-01 13:19:58 -0700544 public static void dumpRestrictions(PrintWriter pw, String prefix, Bundle restrictions) {
545 boolean noneSet = true;
546 if (restrictions != null) {
547 for (String key : restrictions.keySet()) {
548 if (restrictions.getBoolean(key, false)) {
549 pw.println(prefix + key);
550 noneSet = false;
551 }
552 }
Makoto Onuki068c54a2015-10-13 14:34:03 -0700553 if (noneSet) {
554 pw.println(prefix + "none");
555 }
556 } else {
557 pw.println(prefix + "null");
Makoto Onukia4f11972015-10-01 13:19:58 -0700558 }
559 }
Pavel Grafov6a40f092016-10-25 15:46:51 +0100560
561 /**
562 * Moves a particular restriction from one array of bundles to another, e.g. for all users.
563 */
564 public static void moveRestriction(String restrictionKey, SparseArray<Bundle> srcRestrictions,
565 SparseArray<Bundle> destRestrictions) {
566 for (int i = 0; i < srcRestrictions.size(); i++) {
Pavel Grafov7f4ad752017-03-28 13:44:04 +0100567 final int key = srcRestrictions.keyAt(i);
568 final Bundle from = srcRestrictions.valueAt(i);
Pavel Grafov6a40f092016-10-25 15:46:51 +0100569 if (contains(from, restrictionKey)) {
570 from.remove(restrictionKey);
571 Bundle to = destRestrictions.get(key);
572 if (to == null) {
573 to = new Bundle();
574 destRestrictions.append(key, to);
575 }
576 to.putBoolean(restrictionKey, true);
577 // Don't keep empty bundles.
578 if (from.isEmpty()) {
579 srcRestrictions.removeAt(i);
580 i--;
581 }
582 }
583 }
584 }
Pavel Grafov7f4ad752017-03-28 13:44:04 +0100585
586 /**
587 * Returns whether restrictions differ between two bundles.
588 * @param oldRestrictions old bundle of restrictions.
589 * @param newRestrictions new bundle of restrictions
590 * @param restrictions restrictions of interest, if empty, all restrictions are checked.
591 */
592 public static boolean restrictionsChanged(Bundle oldRestrictions, Bundle newRestrictions,
593 String... restrictions) {
594 if (restrictions.length == 0) {
595 return areEqual(oldRestrictions, newRestrictions);
596 }
597 for (final String restriction : restrictions) {
598 if (oldRestrictions.getBoolean(restriction, false) !=
599 newRestrictions.getBoolean(restriction, false)) {
600 return true;
601 }
602 }
603 return false;
604 }
Makoto Onukia4f11972015-10-01 13:19:58 -0700605}