blob: c86122f2507a6c42d49752cd5472e10d5869f9ae [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 Chopradea471e2015-12-17 11:02:37 +000034import android.telephony.SubscriptionInfo;
35import android.telephony.SubscriptionManager;
Makoto Onuki1a2cd742015-11-16 13:51:27 -080036import android.util.Log;
Makoto Onuki1f1ceef2016-01-28 11:32:32 -080037import android.util.Slog;
Pavel Grafov6a40f092016-10-25 15:46:51 +010038import android.util.SparseArray;
Makoto Onukia4f11972015-10-01 13:19:58 -070039
40import org.xmlpull.v1.XmlPullParser;
41import org.xmlpull.v1.XmlSerializer;
42
43import java.io.IOException;
44import java.io.PrintWriter;
Mahaver Chopradea471e2015-12-17 11:02:37 +000045import java.util.List;
Makoto Onukia4f11972015-10-01 13:19:58 -070046import java.util.Set;
47
Makoto Onukid45a4a22015-11-02 17:17:38 -080048/**
Mahaver Chopradea471e2015-12-17 11:02:37 +000049 * Utility methods for user restrictions.
Makoto Onukid45a4a22015-11-02 17:17:38 -080050 *
51 * <p>See {@link UserManagerService} for the method suffixes.
52 */
Makoto Onukia4f11972015-10-01 13:19:58 -070053public class UserRestrictionsUtils {
Makoto Onuki4f160732015-10-27 17:15:38 -070054 private static final String TAG = "UserRestrictionsUtils";
55
Makoto Onukia4f11972015-10-01 13:19:58 -070056 private UserRestrictionsUtils() {
57 }
58
Makoto Onuki1f1ceef2016-01-28 11:32:32 -080059 private static Set<String> newSetWithUniqueCheck(String[] strings) {
60 final Set<String> ret = Sets.newArraySet(strings);
61
62 // Make sure there's no overlap.
63 Preconditions.checkState(ret.size() == strings.length);
64 return ret;
65 }
66
67 public static final Set<String> USER_RESTRICTIONS = newSetWithUniqueCheck(new String[] {
Makoto Onukia4f11972015-10-01 13:19:58 -070068 UserManager.DISALLOW_CONFIG_WIFI,
69 UserManager.DISALLOW_MODIFY_ACCOUNTS,
70 UserManager.DISALLOW_INSTALL_APPS,
71 UserManager.DISALLOW_UNINSTALL_APPS,
72 UserManager.DISALLOW_SHARE_LOCATION,
73 UserManager.DISALLOW_INSTALL_UNKNOWN_SOURCES,
74 UserManager.DISALLOW_CONFIG_BLUETOOTH,
Lenka Trochtova63d5e4a72016-12-02 12:19:39 +010075 UserManager.DISALLOW_BLUETOOTH,
Pavel Grafov7f4ad752017-03-28 13:44:04 +010076 UserManager.DISALLOW_BLUETOOTH_SHARING,
Makoto Onukia4f11972015-10-01 13:19:58 -070077 UserManager.DISALLOW_USB_FILE_TRANSFER,
78 UserManager.DISALLOW_CONFIG_CREDENTIALS,
79 UserManager.DISALLOW_REMOVE_USER,
Esteban Talavera6c9116a2016-11-24 16:12:44 +000080 UserManager.DISALLOW_REMOVE_MANAGED_PROFILE,
Makoto Onukia4f11972015-10-01 13:19:58 -070081 UserManager.DISALLOW_DEBUGGING_FEATURES,
82 UserManager.DISALLOW_CONFIG_VPN,
yuemingwa9772f362017-10-23 18:34:35 +010083 UserManager.DISALLOW_CONFIG_DATE_TIME,
Makoto Onukia4f11972015-10-01 13:19:58 -070084 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,
Charles He22ff6f9d2017-10-05 21:28:55 +0100100 UserManager.DISALLOW_SYSTEM_ERROR_DIALOGS,
Makoto Onukia4f11972015-10-01 13:19:58 -0700101 UserManager.DISALLOW_CROSS_PROFILE_COPY_PASTE,
102 UserManager.DISALLOW_OUTGOING_BEAM,
103 UserManager.DISALLOW_WALLPAPER,
104 UserManager.DISALLOW_SAFE_BOOT,
105 UserManager.ALLOW_PARENT_PROFILE_APP_LINKING,
106 UserManager.DISALLOW_RECORD_AUDIO,
Fyodor Kupolov9cbfc9e2015-10-07 15:52:33 -0700107 UserManager.DISALLOW_CAMERA,
Mahaver Chopradea471e2015-12-17 11:02:37 +0000108 UserManager.DISALLOW_RUN_IN_BACKGROUND,
Oleksandr Peletskyi7f1f1df2016-01-18 15:40:21 +0100109 UserManager.DISALLOW_DATA_ROAMING,
Oleksandr Peletskyif2519812016-01-26 20:16:06 +0100110 UserManager.DISALLOW_SET_USER_ICON,
Mahaver Chopra3d9805d2016-07-07 16:25:05 +0100111 UserManager.DISALLOW_SET_WALLPAPER,
Tony Makc1205112016-07-22 16:02:59 +0100112 UserManager.DISALLOW_OEM_UNLOCK,
Esteban Talavera492b4722017-02-13 14:59:45 +0000113 UserManager.DISALLOW_UNMUTE_DEVICE,
Felipe Leme24d58932017-03-21 14:13:58 -0700114 UserManager.DISALLOW_AUTOFILL,
Makoto Onuki1f1ceef2016-01-28 11:32:32 -0800115 });
Makoto Onukia4f11972015-10-01 13:19:58 -0700116
117 /**
118 * Set of user restriction which we don't want to persist.
119 */
Makoto Onuki1a2cd742015-11-16 13:51:27 -0800120 private static final Set<String> NON_PERSIST_USER_RESTRICTIONS = Sets.newArraySet(
121 UserManager.DISALLOW_RECORD_AUDIO
122 );
Makoto Onukia4f11972015-10-01 13:19:58 -0700123
Makoto Onuki1a2cd742015-11-16 13:51:27 -0800124 /**
Pavel Grafov6a40f092016-10-25 15:46:51 +0100125 * User restrictions that cannot be set by profile owners of secondary users. When set by DO
126 * they will be applied to all users.
Makoto Onuki1a2cd742015-11-16 13:51:27 -0800127 */
Pavel Grafov6a40f092016-10-25 15:46:51 +0100128 private static final Set<String> PRIMARY_USER_ONLY_RESTRICTIONS = Sets.newArraySet(
Lenka Trochtova63d5e4a72016-12-02 12:19:39 +0100129 UserManager.DISALLOW_BLUETOOTH,
Makoto Onuki1a2cd742015-11-16 13:51:27 -0800130 UserManager.DISALLOW_USB_FILE_TRANSFER,
131 UserManager.DISALLOW_CONFIG_TETHERING,
132 UserManager.DISALLOW_NETWORK_RESET,
133 UserManager.DISALLOW_FACTORY_RESET,
134 UserManager.DISALLOW_ADD_USER,
135 UserManager.DISALLOW_CONFIG_CELL_BROADCASTS,
136 UserManager.DISALLOW_CONFIG_MOBILE_NETWORKS,
137 UserManager.DISALLOW_MOUNT_PHYSICAL_MEDIA,
138 UserManager.DISALLOW_SMS,
139 UserManager.DISALLOW_FUN,
140 UserManager.DISALLOW_SAFE_BOOT,
Mahaver Chopradea471e2015-12-17 11:02:37 +0000141 UserManager.DISALLOW_CREATE_WINDOWS,
142 UserManager.DISALLOW_DATA_ROAMING
Makoto Onuki1a2cd742015-11-16 13:51:27 -0800143 );
144
145 /**
146 * User restrictions that can't be changed by device owner or profile owner.
147 */
148 private static final Set<String> IMMUTABLE_BY_OWNERS = Sets.newArraySet(
149 UserManager.DISALLOW_RECORD_AUDIO,
Mahaver Chopra3d9805d2016-07-07 16:25:05 +0100150 UserManager.DISALLOW_WALLPAPER,
151 UserManager.DISALLOW_OEM_UNLOCK
Makoto Onuki1a2cd742015-11-16 13:51:27 -0800152 );
153
154 /**
155 * Special user restrictions that can be applied to a user as well as to all users globally,
156 * depending on callers. When device owner sets them, they'll be applied to all users.
157 */
158 private static final Set<String> GLOBAL_RESTRICTIONS = Sets.newArraySet(
159 UserManager.DISALLOW_ADJUST_VOLUME,
Pavel Grafov7f4ad752017-03-28 13:44:04 +0100160 UserManager.DISALLOW_BLUETOOTH_SHARING,
yuemingwa9772f362017-10-23 18:34:35 +0100161 UserManager.DISALLOW_CONFIG_DATE_TIME,
Charles He22ff6f9d2017-10-05 21:28:55 +0100162 UserManager.DISALLOW_SYSTEM_ERROR_DIALOGS,
Fyodor Kupolov9cbfc9e2015-10-07 15:52:33 -0700163 UserManager.DISALLOW_RUN_IN_BACKGROUND,
Tony Makc1205112016-07-22 16:02:59 +0100164 UserManager.DISALLOW_UNMUTE_MICROPHONE,
Esteban Talavera492b4722017-02-13 14:59:45 +0000165 UserManager.DISALLOW_UNMUTE_DEVICE
Makoto Onuki1a2cd742015-11-16 13:51:27 -0800166 );
167
Makoto Onuki1f1ceef2016-01-28 11:32:32 -0800168 /**
Esteban Talavera6c9116a2016-11-24 16:12:44 +0000169 * User restrictions that default to {@code true} for device owners.
170 */
171 private static final Set<String> DEFAULT_ENABLED_FOR_DEVICE_OWNERS = Sets.newArraySet(
172 UserManager.DISALLOW_ADD_MANAGED_PROFILE
173 );
174
Pavel Grafov7f4ad752017-03-28 13:44:04 +0100175 /**
176 * User restrictions that default to {@code true} for managed profile owners.
177 *
178 * NB: {@link UserManager#DISALLOW_INSTALL_UNKNOWN_SOURCES} is also set by default but it is
179 * not set to existing profile owners unless they used to have INSTALL_NON_MARKET_APPS disabled
180 * in settings. So it is handled separately.
181 */
182 private static final Set<String> DEFAULT_ENABLED_FOR_MANAGED_PROFILES = Sets.newArraySet(
183 UserManager.DISALLOW_BLUETOOTH_SHARING
184 );
185
Pavel Grafov6a40f092016-10-25 15:46:51 +0100186 /*
187 * Special user restrictions that are always applied to all users no matter who sets them.
188 */
189 private static final Set<String> PROFILE_GLOBAL_RESTRICTIONS = Sets.newArraySet(
190 UserManager.ENSURE_VERIFY_APPS
191 );
192
Esteban Talavera6c9116a2016-11-24 16:12:44 +0000193 /**
Makoto Onuki1f1ceef2016-01-28 11:32:32 -0800194 * Throws {@link IllegalArgumentException} if the given restriction name is invalid.
195 */
196 public static boolean isValidRestriction(@NonNull String restriction) {
197 if (!USER_RESTRICTIONS.contains(restriction)) {
Makoto Onukiad5619d2016-02-10 13:41:15 -0800198 Slog.e(TAG, "Unknown restriction: " + restriction);
Makoto Onuki1f1ceef2016-01-28 11:32:32 -0800199 return false;
200 }
201 return true;
202 }
203
Makoto Onuki1a2cd742015-11-16 13:51:27 -0800204 public static void writeRestrictions(@NonNull XmlSerializer serializer,
205 @Nullable Bundle restrictions, @NonNull String tag) throws IOException {
206 if (restrictions == null) {
207 return;
208 }
209
Makoto Onukia4f11972015-10-01 13:19:58 -0700210 serializer.startTag(null, tag);
Makoto Onukiac65e1e2015-11-20 15:33:17 -0800211 for (String key : restrictions.keySet()) {
212 if (NON_PERSIST_USER_RESTRICTIONS.contains(key)) {
213 continue; // Don't persist.
Makoto Onukia4f11972015-10-01 13:19:58 -0700214 }
Makoto Onukiac65e1e2015-11-20 15:33:17 -0800215 if (USER_RESTRICTIONS.contains(key)) {
216 if (restrictions.getBoolean(key)) {
217 serializer.attribute(null, key, "true");
218 }
219 continue;
220 }
221 Log.w(TAG, "Unknown user restriction detected: " + key);
Makoto Onukia4f11972015-10-01 13:19:58 -0700222 }
223 serializer.endTag(null, tag);
224 }
225
Esteban Talaverac48b20f2016-08-11 11:23:40 +0100226 public static void readRestrictions(XmlPullParser parser, Bundle restrictions) {
Fyodor Kupoloveafee022017-03-15 17:09:04 -0700227 restrictions.clear();
Makoto Onukia4f11972015-10-01 13:19:58 -0700228 for (String key : USER_RESTRICTIONS) {
229 final String value = parser.getAttributeValue(null, key);
230 if (value != null) {
231 restrictions.putBoolean(key, Boolean.parseBoolean(value));
232 }
233 }
234 }
235
Pavel Grafov6a40f092016-10-25 15:46:51 +0100236 public static Bundle readRestrictions(XmlPullParser parser) {
237 final Bundle result = new Bundle();
238 readRestrictions(parser, result);
239 return result;
240 }
241
Makoto Onuki1a2cd742015-11-16 13:51:27 -0800242 /**
243 * @return {@code in} itself when it's not null, or an empty bundle (which can writable).
244 */
245 public static Bundle nonNull(@Nullable Bundle in) {
246 return in != null ? in : new Bundle();
247 }
248
249 public static boolean isEmpty(@Nullable Bundle in) {
250 return (in == null) || (in.size() == 0);
251 }
252
253 /**
Pavel Grafov6a40f092016-10-25 15:46:51 +0100254 * Returns {@code true} if given bundle is not null and contains {@code true} for a given
255 * restriction.
256 */
257 public static boolean contains(@Nullable Bundle in, String restriction) {
258 return in != null && in.getBoolean(restriction);
259 }
260
261 /**
Makoto Onuki1a2cd742015-11-16 13:51:27 -0800262 * Creates a copy of the {@code in} Bundle. If {@code in} is null, it'll return an empty
263 * bundle.
264 *
265 * <p>The resulting {@link Bundle} is always writable. (i.e. it won't return
266 * {@link Bundle#EMPTY})
267 */
268 public static @NonNull Bundle clone(@Nullable Bundle in) {
269 return (in != null) ? new Bundle(in) : new Bundle();
270 }
271
272 public static void merge(@NonNull Bundle dest, @Nullable Bundle in) {
273 Preconditions.checkNotNull(dest);
274 Preconditions.checkArgument(dest != in);
Makoto Onuki068c54a2015-10-13 14:34:03 -0700275 if (in == null) {
276 return;
277 }
278 for (String key : in.keySet()) {
279 if (in.getBoolean(key, false)) {
280 dest.putBoolean(key, true);
281 }
282 }
283 }
284
Makoto Onuki4f160732015-10-27 17:15:38 -0700285 /**
Pavel Grafov6a40f092016-10-25 15:46:51 +0100286 * Merges a sparse array of restrictions bundles into one.
287 */
288 @Nullable
289 public static Bundle mergeAll(SparseArray<Bundle> restrictions) {
290 if (restrictions.size() == 0) {
291 return null;
292 } else {
293 final Bundle result = new Bundle();
294 for (int i = 0; i < restrictions.size(); i++) {
295 merge(result, restrictions.valueAt(i));
296 }
297 return result;
298 }
299 }
300
301 /**
Makoto Onuki1a2cd742015-11-16 13:51:27 -0800302 * @return true if a restriction is settable by device owner.
303 */
304 public static boolean canDeviceOwnerChange(String restriction) {
305 return !IMMUTABLE_BY_OWNERS.contains(restriction);
306 }
307
308 /**
Makoto Onuki5485ed42015-12-09 11:38:23 -0800309 * @return true if a restriction is settable by profile owner. Note it takes a user ID because
310 * some restrictions can be changed by PO only when it's running on the system user.
Makoto Onuki1a2cd742015-11-16 13:51:27 -0800311 */
Makoto Onuki5485ed42015-12-09 11:38:23 -0800312 public static boolean canProfileOwnerChange(String restriction, int userId) {
313 return !IMMUTABLE_BY_OWNERS.contains(restriction)
314 && !(userId != UserHandle.USER_SYSTEM
Pavel Grafov6a40f092016-10-25 15:46:51 +0100315 && PRIMARY_USER_ONLY_RESTRICTIONS.contains(restriction));
Makoto Onuki1a2cd742015-11-16 13:51:27 -0800316 }
317
318 /**
Esteban Talavera6c9116a2016-11-24 16:12:44 +0000319 * Returns the user restrictions that default to {@code true} for device owners.
Nicolas Prevot2ea46fe2017-01-05 10:29:34 +0000320 * These user restrictions are local, though. ie only for the device owner's user id.
Esteban Talavera6c9116a2016-11-24 16:12:44 +0000321 */
322 public static @NonNull Set<String> getDefaultEnabledForDeviceOwner() {
323 return DEFAULT_ENABLED_FOR_DEVICE_OWNERS;
324 }
325
326 /**
Pavel Grafov7f4ad752017-03-28 13:44:04 +0100327 * Returns the user restrictions that default to {@code true} for managed profile owners.
328 */
329 public static @NonNull Set<String> getDefaultEnabledForManagedProfiles() {
330 return DEFAULT_ENABLED_FOR_MANAGED_PROFILES;
331 }
332
333 /**
Makoto Onuki1a2cd742015-11-16 13:51:27 -0800334 * Takes restrictions that can be set by device owner, and sort them into what should be applied
335 * globally and what should be applied only on the current user.
336 */
Pavel Grafov6a40f092016-10-25 15:46:51 +0100337 public static void sortToGlobalAndLocal(@Nullable Bundle in, boolean isDeviceOwner,
338 int cameraRestrictionScope,
339 @NonNull Bundle global, @NonNull Bundle local) {
340 // Camera restriction (as well as all others) goes to at most one bundle.
341 if (cameraRestrictionScope == UserManagerInternal.CAMERA_DISABLED_GLOBALLY) {
342 global.putBoolean(UserManager.DISALLOW_CAMERA, true);
343 } else if (cameraRestrictionScope == UserManagerInternal.CAMERA_DISABLED_LOCALLY) {
344 local.putBoolean(UserManager.DISALLOW_CAMERA, true);
345 }
Makoto Onuki1a2cd742015-11-16 13:51:27 -0800346 if (in == null || in.size() == 0) {
347 return;
348 }
349 for (String key : in.keySet()) {
350 if (!in.getBoolean(key)) {
351 continue;
352 }
Pavel Grafov6a40f092016-10-25 15:46:51 +0100353 if (isGlobal(isDeviceOwner, key)) {
Makoto Onuki1a2cd742015-11-16 13:51:27 -0800354 global.putBoolean(key, true);
355 } else {
356 local.putBoolean(key, true);
357 }
358 }
359 }
360
361 /**
Pavel Grafov6a40f092016-10-25 15:46:51 +0100362 * Whether given user restriction should be enforced globally.
363 */
364 private static boolean isGlobal(boolean isDeviceOwner, String key) {
365 return (isDeviceOwner &&
366 (PRIMARY_USER_ONLY_RESTRICTIONS.contains(key)|| GLOBAL_RESTRICTIONS.contains(key)))
367 || PROFILE_GLOBAL_RESTRICTIONS.contains(key);
368 }
369
370 /**
Makoto Onuki1a2cd742015-11-16 13:51:27 -0800371 * @return true if two Bundles contain the same user restriction.
372 * A null bundle and an empty bundle are considered to be equal.
373 */
374 public static boolean areEqual(@Nullable Bundle a, @Nullable Bundle b) {
375 if (a == b) {
376 return true;
377 }
378 if (isEmpty(a)) {
379 return isEmpty(b);
380 }
381 if (isEmpty(b)) {
382 return false;
383 }
384 for (String key : a.keySet()) {
385 if (a.getBoolean(key) != b.getBoolean(key)) {
386 return false;
387 }
388 }
389 for (String key : b.keySet()) {
390 if (a.getBoolean(key) != b.getBoolean(key)) {
391 return false;
392 }
393 }
394 return true;
395 }
396
397 /**
Makoto Onuki4f160732015-10-27 17:15:38 -0700398 * Takes a new use restriction set and the previous set, and apply the restrictions that have
399 * changed.
Makoto Onukid45a4a22015-11-02 17:17:38 -0800400 *
Fyodor Kupolov9cbfc9e2015-10-07 15:52:33 -0700401 * <p>Note this method is called by {@link UserManagerService} without holding any locks.
Makoto Onuki4f160732015-10-27 17:15:38 -0700402 */
Fyodor Kupolov9cbfc9e2015-10-07 15:52:33 -0700403 public static void applyUserRestrictions(Context context, int userId,
Makoto Onukid45a4a22015-11-02 17:17:38 -0800404 Bundle newRestrictions, Bundle prevRestrictions) {
Makoto Onuki4f160732015-10-27 17:15:38 -0700405 for (String key : USER_RESTRICTIONS) {
406 final boolean newValue = newRestrictions.getBoolean(key);
407 final boolean prevValue = prevRestrictions.getBoolean(key);
408
409 if (newValue != prevValue) {
Fyodor Kupolov9cbfc9e2015-10-07 15:52:33 -0700410 applyUserRestriction(context, userId, key, newValue);
Makoto Onuki4f160732015-10-27 17:15:38 -0700411 }
412 }
413 }
Fyodor Kupolov9cbfc9e2015-10-07 15:52:33 -0700414
Makoto Onukid45a4a22015-11-02 17:17:38 -0800415 /**
416 * Apply each user restriction.
417 *
Makoto Onuki28da2e32015-11-20 11:30:44 -0800418 * <p>See also {@link
419 * com.android.providers.settings.SettingsProvider#isGlobalOrSecureSettingRestrictedForUser},
420 * which should be in sync with this method.
Makoto Onukid45a4a22015-11-02 17:17:38 -0800421 */
Fyodor Kupolov9cbfc9e2015-10-07 15:52:33 -0700422 private static void applyUserRestriction(Context context, int userId, String key,
Makoto Onuki4f160732015-10-27 17:15:38 -0700423 boolean newValue) {
Makoto Onuki1a2cd742015-11-16 13:51:27 -0800424 if (UserManagerService.DBG) {
425 Log.d(TAG, "Applying user restriction: userId=" + userId
426 + " key=" + key + " value=" + newValue);
427 }
Makoto Onuki4f160732015-10-27 17:15:38 -0700428 // When certain restrictions are cleared, we don't update the system settings,
429 // because these settings are changeable on the Settings UI and we don't know the original
430 // value -- for example LOCATION_MODE might have been off already when the restriction was
431 // set, and in that case even if the restriction is lifted, changing it to ON would be
432 // wrong. So just don't do anything in such a case. If the user hopes to enable location
433 // later, they can do it on the Settings UI.
Benjamin Franz0ff13fc2016-07-12 13:42:21 +0100434 // WARNING: Remember that Settings.Global and Settings.Secure are changeable via adb.
435 // To prevent this from happening for a given user restriction, you have to add a check to
436 // SettingsProvider.isGlobalOrSecureSettingRestrictedForUser.
Makoto Onuki4f160732015-10-27 17:15:38 -0700437
438 final ContentResolver cr = context.getContentResolver();
439 final long id = Binder.clearCallingIdentity();
440 try {
441 switch (key) {
Mahaver Chopradea471e2015-12-17 11:02:37 +0000442 case UserManager.DISALLOW_DATA_ROAMING:
443 if (newValue) {
444 // DISALLOW_DATA_ROAMING user restriction is set.
445
446 // Multi sim device.
447 SubscriptionManager subscriptionManager = new SubscriptionManager(context);
448 final List<SubscriptionInfo> subscriptionInfoList =
449 subscriptionManager.getActiveSubscriptionInfoList();
450 if (subscriptionInfoList != null) {
451 for (SubscriptionInfo subInfo : subscriptionInfoList) {
452 android.provider.Settings.Global.putStringForUser(cr,
453 android.provider.Settings.Global.DATA_ROAMING
454 + subInfo.getSubscriptionId(), "0", userId);
455 }
456 }
457
458 // Single sim device.
459 android.provider.Settings.Global.putStringForUser(cr,
460 android.provider.Settings.Global.DATA_ROAMING, "0", userId);
461 }
462 break;
Makoto Onuki4f160732015-10-27 17:15:38 -0700463 case UserManager.DISALLOW_SHARE_LOCATION:
464 if (newValue) {
465 android.provider.Settings.Secure.putIntForUser(cr,
466 android.provider.Settings.Secure.LOCATION_MODE,
467 android.provider.Settings.Secure.LOCATION_MODE_OFF,
468 userId);
Makoto Onuki4f160732015-10-27 17:15:38 -0700469 }
Makoto Onuki4f160732015-10-27 17:15:38 -0700470 break;
471 case UserManager.DISALLOW_DEBUGGING_FEATURES:
472 if (newValue) {
473 // Only disable adb if changing for system user, since it is global
474 // TODO: should this be admin user?
475 if (userId == UserHandle.USER_SYSTEM) {
476 android.provider.Settings.Global.putStringForUser(cr,
477 android.provider.Settings.Global.ADB_ENABLED, "0",
478 userId);
479 }
480 }
481 break;
482 case UserManager.ENSURE_VERIFY_APPS:
483 if (newValue) {
484 android.provider.Settings.Global.putStringForUser(
485 context.getContentResolver(),
486 android.provider.Settings.Global.PACKAGE_VERIFIER_ENABLE, "1",
487 userId);
488 android.provider.Settings.Global.putStringForUser(
489 context.getContentResolver(),
490 android.provider.Settings.Global.PACKAGE_VERIFIER_INCLUDE_ADB, "1",
491 userId);
492 }
493 break;
494 case UserManager.DISALLOW_INSTALL_UNKNOWN_SOURCES:
Suprabh Shuklae3745ee2017-02-02 20:01:11 -0800495 // Since Android O, the secure setting is not available to be changed by the
496 // user. Hence, when the restriction is cleared, we need to reset the state of
497 // the setting to its default value which is now 1.
498 android.provider.Settings.Secure.putIntForUser(cr,
499 android.provider.Settings.Secure.INSTALL_NON_MARKET_APPS,
500 newValue ? 0 : 1, userId);
Makoto Onuki4f160732015-10-27 17:15:38 -0700501 break;
Fyodor Kupolov9cbfc9e2015-10-07 15:52:33 -0700502 case UserManager.DISALLOW_RUN_IN_BACKGROUND:
503 if (newValue) {
504 int currentUser = ActivityManager.getCurrentUser();
505 if (currentUser != userId && userId != UserHandle.USER_SYSTEM) {
506 try {
Sudheer Shankadc589ac2016-11-10 15:30:17 -0800507 ActivityManager.getService().stopUser(userId, false, null);
Fyodor Kupolov9cbfc9e2015-10-07 15:52:33 -0700508 } catch (RemoteException e) {
509 throw e.rethrowAsRuntimeException();
510 }
511 }
512 }
Lenka Trochtova6474f0e2016-03-24 16:43:10 +0100513 break;
514 case UserManager.DISALLOW_SAFE_BOOT:
515 // Unlike with the other restrictions, we want to propagate the new value to
516 // the system settings even if it is false. The other restrictions modify
517 // settings which could be manually changed by the user from the Settings app
518 // after the policies enforcing these restrictions have been revoked, so we
519 // leave re-setting of those settings to the user.
520 android.provider.Settings.Global.putInt(
521 context.getContentResolver(),
522 android.provider.Settings.Global.SAFE_BOOT_DISALLOWED,
523 newValue ? 1 : 0);
524 break;
Makoto Onuki4f160732015-10-27 17:15:38 -0700525 }
Makoto Onuki4f160732015-10-27 17:15:38 -0700526 } finally {
527 Binder.restoreCallingIdentity(id);
528 }
529 }
530
Makoto Onukia4f11972015-10-01 13:19:58 -0700531 public static void dumpRestrictions(PrintWriter pw, String prefix, Bundle restrictions) {
532 boolean noneSet = true;
533 if (restrictions != null) {
534 for (String key : restrictions.keySet()) {
535 if (restrictions.getBoolean(key, false)) {
536 pw.println(prefix + key);
537 noneSet = false;
538 }
539 }
Makoto Onuki068c54a2015-10-13 14:34:03 -0700540 if (noneSet) {
541 pw.println(prefix + "none");
542 }
543 } else {
544 pw.println(prefix + "null");
Makoto Onukia4f11972015-10-01 13:19:58 -0700545 }
546 }
Pavel Grafov6a40f092016-10-25 15:46:51 +0100547
548 /**
549 * Moves a particular restriction from one array of bundles to another, e.g. for all users.
550 */
551 public static void moveRestriction(String restrictionKey, SparseArray<Bundle> srcRestrictions,
552 SparseArray<Bundle> destRestrictions) {
553 for (int i = 0; i < srcRestrictions.size(); i++) {
Pavel Grafov7f4ad752017-03-28 13:44:04 +0100554 final int key = srcRestrictions.keyAt(i);
555 final Bundle from = srcRestrictions.valueAt(i);
Pavel Grafov6a40f092016-10-25 15:46:51 +0100556 if (contains(from, restrictionKey)) {
557 from.remove(restrictionKey);
558 Bundle to = destRestrictions.get(key);
559 if (to == null) {
560 to = new Bundle();
561 destRestrictions.append(key, to);
562 }
563 to.putBoolean(restrictionKey, true);
564 // Don't keep empty bundles.
565 if (from.isEmpty()) {
566 srcRestrictions.removeAt(i);
567 i--;
568 }
569 }
570 }
571 }
Pavel Grafov7f4ad752017-03-28 13:44:04 +0100572
573 /**
574 * Returns whether restrictions differ between two bundles.
575 * @param oldRestrictions old bundle of restrictions.
576 * @param newRestrictions new bundle of restrictions
577 * @param restrictions restrictions of interest, if empty, all restrictions are checked.
578 */
579 public static boolean restrictionsChanged(Bundle oldRestrictions, Bundle newRestrictions,
580 String... restrictions) {
581 if (restrictions.length == 0) {
582 return areEqual(oldRestrictions, newRestrictions);
583 }
584 for (final String restriction : restrictions) {
585 if (oldRestrictions.getBoolean(restriction, false) !=
586 newRestrictions.getBoolean(restriction, false)) {
587 return true;
588 }
589 }
590 return false;
591 }
Makoto Onukia4f11972015-10-01 13:19:58 -0700592}