blob: e91cce11f7df347e44743f3f05cfd4b5757560f4 [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;
Mahaver Chopra830e32c2016-05-17 18:53:09 +010033import android.service.persistentdata.PersistentDataBlockManager;
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;
Makoto Onukia4f11972015-10-01 13:19:58 -070038
39import org.xmlpull.v1.XmlPullParser;
40import org.xmlpull.v1.XmlSerializer;
41
42import java.io.IOException;
43import java.io.PrintWriter;
Mahaver Chopradea471e2015-12-17 11:02:37 +000044import java.util.List;
Makoto Onukia4f11972015-10-01 13:19:58 -070045import java.util.Set;
46
Makoto Onukid45a4a22015-11-02 17:17:38 -080047/**
Mahaver Chopradea471e2015-12-17 11:02:37 +000048 * Utility methods for user restrictions.
Makoto Onukid45a4a22015-11-02 17:17:38 -080049 *
50 * <p>See {@link UserManagerService} for the method suffixes.
51 */
Makoto Onukia4f11972015-10-01 13:19:58 -070052public class UserRestrictionsUtils {
Makoto Onuki4f160732015-10-27 17:15:38 -070053 private static final String TAG = "UserRestrictionsUtils";
54
Makoto Onukia4f11972015-10-01 13:19:58 -070055 private UserRestrictionsUtils() {
56 }
57
Makoto Onuki1f1ceef2016-01-28 11:32:32 -080058 private static Set<String> newSetWithUniqueCheck(String[] strings) {
59 final Set<String> ret = Sets.newArraySet(strings);
60
61 // Make sure there's no overlap.
62 Preconditions.checkState(ret.size() == strings.length);
63 return ret;
64 }
65
66 public static final Set<String> USER_RESTRICTIONS = newSetWithUniqueCheck(new String[] {
Makoto Onukia4f11972015-10-01 13:19:58 -070067 UserManager.DISALLOW_CONFIG_WIFI,
68 UserManager.DISALLOW_MODIFY_ACCOUNTS,
69 UserManager.DISALLOW_INSTALL_APPS,
70 UserManager.DISALLOW_UNINSTALL_APPS,
71 UserManager.DISALLOW_SHARE_LOCATION,
72 UserManager.DISALLOW_INSTALL_UNKNOWN_SOURCES,
73 UserManager.DISALLOW_CONFIG_BLUETOOTH,
Lenka Trochtova63d5e4a72016-12-02 12:19:39 +010074 UserManager.DISALLOW_BLUETOOTH,
Makoto Onukia4f11972015-10-01 13:19:58 -070075 UserManager.DISALLOW_USB_FILE_TRANSFER,
76 UserManager.DISALLOW_CONFIG_CREDENTIALS,
77 UserManager.DISALLOW_REMOVE_USER,
Esteban Talavera6c9116a2016-11-24 16:12:44 +000078 UserManager.DISALLOW_REMOVE_MANAGED_PROFILE,
Makoto Onukia4f11972015-10-01 13:19:58 -070079 UserManager.DISALLOW_DEBUGGING_FEATURES,
80 UserManager.DISALLOW_CONFIG_VPN,
81 UserManager.DISALLOW_CONFIG_TETHERING,
82 UserManager.DISALLOW_NETWORK_RESET,
83 UserManager.DISALLOW_FACTORY_RESET,
84 UserManager.DISALLOW_ADD_USER,
Esteban Talavera6c9116a2016-11-24 16:12:44 +000085 UserManager.DISALLOW_ADD_MANAGED_PROFILE,
Makoto Onukia4f11972015-10-01 13:19:58 -070086 UserManager.ENSURE_VERIFY_APPS,
87 UserManager.DISALLOW_CONFIG_CELL_BROADCASTS,
88 UserManager.DISALLOW_CONFIG_MOBILE_NETWORKS,
89 UserManager.DISALLOW_APPS_CONTROL,
90 UserManager.DISALLOW_MOUNT_PHYSICAL_MEDIA,
91 UserManager.DISALLOW_UNMUTE_MICROPHONE,
92 UserManager.DISALLOW_ADJUST_VOLUME,
93 UserManager.DISALLOW_OUTGOING_CALLS,
94 UserManager.DISALLOW_SMS,
95 UserManager.DISALLOW_FUN,
96 UserManager.DISALLOW_CREATE_WINDOWS,
97 UserManager.DISALLOW_CROSS_PROFILE_COPY_PASTE,
98 UserManager.DISALLOW_OUTGOING_BEAM,
99 UserManager.DISALLOW_WALLPAPER,
100 UserManager.DISALLOW_SAFE_BOOT,
101 UserManager.ALLOW_PARENT_PROFILE_APP_LINKING,
102 UserManager.DISALLOW_RECORD_AUDIO,
Fyodor Kupolov9cbfc9e2015-10-07 15:52:33 -0700103 UserManager.DISALLOW_CAMERA,
Mahaver Chopradea471e2015-12-17 11:02:37 +0000104 UserManager.DISALLOW_RUN_IN_BACKGROUND,
Oleksandr Peletskyi7f1f1df2016-01-18 15:40:21 +0100105 UserManager.DISALLOW_DATA_ROAMING,
Oleksandr Peletskyif2519812016-01-26 20:16:06 +0100106 UserManager.DISALLOW_SET_USER_ICON,
Mahaver Chopra3d9805d2016-07-07 16:25:05 +0100107 UserManager.DISALLOW_SET_WALLPAPER,
Tony Makc1205112016-07-22 16:02:59 +0100108 UserManager.DISALLOW_OEM_UNLOCK,
109 UserManager.DISALLLOW_UNMUTE_DEVICE,
Makoto Onuki1f1ceef2016-01-28 11:32:32 -0800110 });
Makoto Onukia4f11972015-10-01 13:19:58 -0700111
112 /**
113 * Set of user restriction which we don't want to persist.
114 */
Makoto Onuki1a2cd742015-11-16 13:51:27 -0800115 private static final Set<String> NON_PERSIST_USER_RESTRICTIONS = Sets.newArraySet(
116 UserManager.DISALLOW_RECORD_AUDIO
117 );
Makoto Onukia4f11972015-10-01 13:19:58 -0700118
Makoto Onuki1a2cd742015-11-16 13:51:27 -0800119 /**
120 * User restrictions that can not be set by profile owners.
121 */
122 private static final Set<String> DEVICE_OWNER_ONLY_RESTRICTIONS = Sets.newArraySet(
Lenka Trochtova63d5e4a72016-12-02 12:19:39 +0100123 UserManager.DISALLOW_BLUETOOTH,
Makoto Onuki1a2cd742015-11-16 13:51:27 -0800124 UserManager.DISALLOW_USB_FILE_TRANSFER,
125 UserManager.DISALLOW_CONFIG_TETHERING,
126 UserManager.DISALLOW_NETWORK_RESET,
127 UserManager.DISALLOW_FACTORY_RESET,
128 UserManager.DISALLOW_ADD_USER,
Esteban Talavera6c9116a2016-11-24 16:12:44 +0000129 UserManager.DISALLOW_ADD_MANAGED_PROFILE,
130 UserManager.DISALLOW_REMOVE_MANAGED_PROFILE,
Makoto Onuki1a2cd742015-11-16 13:51:27 -0800131 UserManager.DISALLOW_CONFIG_CELL_BROADCASTS,
132 UserManager.DISALLOW_CONFIG_MOBILE_NETWORKS,
133 UserManager.DISALLOW_MOUNT_PHYSICAL_MEDIA,
134 UserManager.DISALLOW_SMS,
135 UserManager.DISALLOW_FUN,
136 UserManager.DISALLOW_SAFE_BOOT,
Mahaver Chopradea471e2015-12-17 11:02:37 +0000137 UserManager.DISALLOW_CREATE_WINDOWS,
138 UserManager.DISALLOW_DATA_ROAMING
Makoto Onuki1a2cd742015-11-16 13:51:27 -0800139 );
140
141 /**
142 * User restrictions that can't be changed by device owner or profile owner.
143 */
144 private static final Set<String> IMMUTABLE_BY_OWNERS = Sets.newArraySet(
145 UserManager.DISALLOW_RECORD_AUDIO,
Mahaver Chopra3d9805d2016-07-07 16:25:05 +0100146 UserManager.DISALLOW_WALLPAPER,
147 UserManager.DISALLOW_OEM_UNLOCK
Makoto Onuki1a2cd742015-11-16 13:51:27 -0800148 );
149
150 /**
151 * Special user restrictions that can be applied to a user as well as to all users globally,
152 * depending on callers. When device owner sets them, they'll be applied to all users.
153 */
154 private static final Set<String> GLOBAL_RESTRICTIONS = Sets.newArraySet(
155 UserManager.DISALLOW_ADJUST_VOLUME,
Fyodor Kupolov9cbfc9e2015-10-07 15:52:33 -0700156 UserManager.DISALLOW_RUN_IN_BACKGROUND,
Tony Makc1205112016-07-22 16:02:59 +0100157 UserManager.DISALLOW_UNMUTE_MICROPHONE,
158 UserManager.DISALLLOW_UNMUTE_DEVICE
Makoto Onuki1a2cd742015-11-16 13:51:27 -0800159 );
160
Makoto Onuki1f1ceef2016-01-28 11:32:32 -0800161 /**
Esteban Talavera6c9116a2016-11-24 16:12:44 +0000162 * User restrictions that default to {@code true} for device owners.
163 */
164 private static final Set<String> DEFAULT_ENABLED_FOR_DEVICE_OWNERS = Sets.newArraySet(
165 UserManager.DISALLOW_ADD_MANAGED_PROFILE
166 );
167
168 /**
Makoto Onuki1f1ceef2016-01-28 11:32:32 -0800169 * Throws {@link IllegalArgumentException} if the given restriction name is invalid.
170 */
171 public static boolean isValidRestriction(@NonNull String restriction) {
172 if (!USER_RESTRICTIONS.contains(restriction)) {
Makoto Onukiad5619d2016-02-10 13:41:15 -0800173 Slog.e(TAG, "Unknown restriction: " + restriction);
Makoto Onuki1f1ceef2016-01-28 11:32:32 -0800174 return false;
175 }
176 return true;
177 }
178
Makoto Onuki1a2cd742015-11-16 13:51:27 -0800179 public static void writeRestrictions(@NonNull XmlSerializer serializer,
180 @Nullable Bundle restrictions, @NonNull String tag) throws IOException {
181 if (restrictions == null) {
182 return;
183 }
184
Makoto Onukia4f11972015-10-01 13:19:58 -0700185 serializer.startTag(null, tag);
Makoto Onukiac65e1e2015-11-20 15:33:17 -0800186 for (String key : restrictions.keySet()) {
187 if (NON_PERSIST_USER_RESTRICTIONS.contains(key)) {
188 continue; // Don't persist.
Makoto Onukia4f11972015-10-01 13:19:58 -0700189 }
Makoto Onukiac65e1e2015-11-20 15:33:17 -0800190 if (USER_RESTRICTIONS.contains(key)) {
191 if (restrictions.getBoolean(key)) {
192 serializer.attribute(null, key, "true");
193 }
194 continue;
195 }
196 Log.w(TAG, "Unknown user restriction detected: " + key);
Makoto Onukia4f11972015-10-01 13:19:58 -0700197 }
198 serializer.endTag(null, tag);
199 }
200
Esteban Talaverac48b20f2016-08-11 11:23:40 +0100201 public static void readRestrictions(XmlPullParser parser, Bundle restrictions) {
Makoto Onukia4f11972015-10-01 13:19:58 -0700202 for (String key : USER_RESTRICTIONS) {
203 final String value = parser.getAttributeValue(null, key);
204 if (value != null) {
205 restrictions.putBoolean(key, Boolean.parseBoolean(value));
206 }
207 }
208 }
209
Makoto Onuki1a2cd742015-11-16 13:51:27 -0800210 /**
211 * @return {@code in} itself when it's not null, or an empty bundle (which can writable).
212 */
213 public static Bundle nonNull(@Nullable Bundle in) {
214 return in != null ? in : new Bundle();
215 }
216
217 public static boolean isEmpty(@Nullable Bundle in) {
218 return (in == null) || (in.size() == 0);
219 }
220
221 /**
222 * Creates a copy of the {@code in} Bundle. If {@code in} is null, it'll return an empty
223 * bundle.
224 *
225 * <p>The resulting {@link Bundle} is always writable. (i.e. it won't return
226 * {@link Bundle#EMPTY})
227 */
228 public static @NonNull Bundle clone(@Nullable Bundle in) {
229 return (in != null) ? new Bundle(in) : new Bundle();
230 }
231
232 public static void merge(@NonNull Bundle dest, @Nullable Bundle in) {
233 Preconditions.checkNotNull(dest);
234 Preconditions.checkArgument(dest != in);
Makoto Onuki068c54a2015-10-13 14:34:03 -0700235 if (in == null) {
236 return;
237 }
238 for (String key : in.keySet()) {
239 if (in.getBoolean(key, false)) {
240 dest.putBoolean(key, true);
241 }
242 }
243 }
244
Makoto Onuki4f160732015-10-27 17:15:38 -0700245 /**
Makoto Onuki1a2cd742015-11-16 13:51:27 -0800246 * @return true if a restriction is settable by device owner.
247 */
248 public static boolean canDeviceOwnerChange(String restriction) {
249 return !IMMUTABLE_BY_OWNERS.contains(restriction);
250 }
251
252 /**
Makoto Onuki5485ed42015-12-09 11:38:23 -0800253 * @return true if a restriction is settable by profile owner. Note it takes a user ID because
254 * some restrictions can be changed by PO only when it's running on the system user.
Makoto Onuki1a2cd742015-11-16 13:51:27 -0800255 */
Makoto Onuki5485ed42015-12-09 11:38:23 -0800256 public static boolean canProfileOwnerChange(String restriction, int userId) {
257 return !IMMUTABLE_BY_OWNERS.contains(restriction)
258 && !(userId != UserHandle.USER_SYSTEM
259 && DEVICE_OWNER_ONLY_RESTRICTIONS.contains(restriction));
Makoto Onuki1a2cd742015-11-16 13:51:27 -0800260 }
261
262 /**
Esteban Talavera6c9116a2016-11-24 16:12:44 +0000263 * Returns the user restrictions that default to {@code true} for device owners.
264 */
265 public static @NonNull Set<String> getDefaultEnabledForDeviceOwner() {
266 return DEFAULT_ENABLED_FOR_DEVICE_OWNERS;
267 }
268
269 /**
Makoto Onuki1a2cd742015-11-16 13:51:27 -0800270 * Takes restrictions that can be set by device owner, and sort them into what should be applied
271 * globally and what should be applied only on the current user.
272 */
273 public static void sortToGlobalAndLocal(@Nullable Bundle in, @NonNull Bundle global,
274 @NonNull Bundle local) {
275 if (in == null || in.size() == 0) {
276 return;
277 }
278 for (String key : in.keySet()) {
279 if (!in.getBoolean(key)) {
280 continue;
281 }
282 if (DEVICE_OWNER_ONLY_RESTRICTIONS.contains(key) || GLOBAL_RESTRICTIONS.contains(key)) {
283 global.putBoolean(key, true);
284 } else {
285 local.putBoolean(key, true);
286 }
287 }
288 }
289
290 /**
291 * @return true if two Bundles contain the same user restriction.
292 * A null bundle and an empty bundle are considered to be equal.
293 */
294 public static boolean areEqual(@Nullable Bundle a, @Nullable Bundle b) {
295 if (a == b) {
296 return true;
297 }
298 if (isEmpty(a)) {
299 return isEmpty(b);
300 }
301 if (isEmpty(b)) {
302 return false;
303 }
304 for (String key : a.keySet()) {
305 if (a.getBoolean(key) != b.getBoolean(key)) {
306 return false;
307 }
308 }
309 for (String key : b.keySet()) {
310 if (a.getBoolean(key) != b.getBoolean(key)) {
311 return false;
312 }
313 }
314 return true;
315 }
316
317 /**
Makoto Onuki4f160732015-10-27 17:15:38 -0700318 * Takes a new use restriction set and the previous set, and apply the restrictions that have
319 * changed.
Makoto Onukid45a4a22015-11-02 17:17:38 -0800320 *
Fyodor Kupolov9cbfc9e2015-10-07 15:52:33 -0700321 * <p>Note this method is called by {@link UserManagerService} without holding any locks.
Makoto Onuki4f160732015-10-27 17:15:38 -0700322 */
Fyodor Kupolov9cbfc9e2015-10-07 15:52:33 -0700323 public static void applyUserRestrictions(Context context, int userId,
Makoto Onukid45a4a22015-11-02 17:17:38 -0800324 Bundle newRestrictions, Bundle prevRestrictions) {
Makoto Onuki4f160732015-10-27 17:15:38 -0700325 for (String key : USER_RESTRICTIONS) {
326 final boolean newValue = newRestrictions.getBoolean(key);
327 final boolean prevValue = prevRestrictions.getBoolean(key);
328
329 if (newValue != prevValue) {
Fyodor Kupolov9cbfc9e2015-10-07 15:52:33 -0700330 applyUserRestriction(context, userId, key, newValue);
Makoto Onuki4f160732015-10-27 17:15:38 -0700331 }
332 }
333 }
Fyodor Kupolov9cbfc9e2015-10-07 15:52:33 -0700334
Makoto Onukid45a4a22015-11-02 17:17:38 -0800335 /**
336 * Apply each user restriction.
337 *
Makoto Onuki28da2e32015-11-20 11:30:44 -0800338 * <p>See also {@link
339 * com.android.providers.settings.SettingsProvider#isGlobalOrSecureSettingRestrictedForUser},
340 * which should be in sync with this method.
Makoto Onukid45a4a22015-11-02 17:17:38 -0800341 */
Fyodor Kupolov9cbfc9e2015-10-07 15:52:33 -0700342 private static void applyUserRestriction(Context context, int userId, String key,
Makoto Onuki4f160732015-10-27 17:15:38 -0700343 boolean newValue) {
Makoto Onuki1a2cd742015-11-16 13:51:27 -0800344 if (UserManagerService.DBG) {
345 Log.d(TAG, "Applying user restriction: userId=" + userId
346 + " key=" + key + " value=" + newValue);
347 }
Makoto Onuki4f160732015-10-27 17:15:38 -0700348 // When certain restrictions are cleared, we don't update the system settings,
349 // because these settings are changeable on the Settings UI and we don't know the original
350 // value -- for example LOCATION_MODE might have been off already when the restriction was
351 // set, and in that case even if the restriction is lifted, changing it to ON would be
352 // wrong. So just don't do anything in such a case. If the user hopes to enable location
353 // later, they can do it on the Settings UI.
Benjamin Franz0ff13fc2016-07-12 13:42:21 +0100354 // WARNING: Remember that Settings.Global and Settings.Secure are changeable via adb.
355 // To prevent this from happening for a given user restriction, you have to add a check to
356 // SettingsProvider.isGlobalOrSecureSettingRestrictedForUser.
Makoto Onuki4f160732015-10-27 17:15:38 -0700357
358 final ContentResolver cr = context.getContentResolver();
359 final long id = Binder.clearCallingIdentity();
360 try {
361 switch (key) {
Makoto Onuki4f160732015-10-27 17:15:38 -0700362 case UserManager.DISALLOW_CONFIG_WIFI:
363 if (newValue) {
364 android.provider.Settings.Secure.putIntForUser(cr,
Makoto Onuki28da2e32015-11-20 11:30:44 -0800365 android.provider.Settings.Global
Makoto Onuki4f160732015-10-27 17:15:38 -0700366 .WIFI_NETWORKS_AVAILABLE_NOTIFICATION_ON, 0, userId);
367 }
368 break;
Mahaver Chopradea471e2015-12-17 11:02:37 +0000369 case UserManager.DISALLOW_DATA_ROAMING:
370 if (newValue) {
371 // DISALLOW_DATA_ROAMING user restriction is set.
372
373 // Multi sim device.
374 SubscriptionManager subscriptionManager = new SubscriptionManager(context);
375 final List<SubscriptionInfo> subscriptionInfoList =
376 subscriptionManager.getActiveSubscriptionInfoList();
377 if (subscriptionInfoList != null) {
378 for (SubscriptionInfo subInfo : subscriptionInfoList) {
379 android.provider.Settings.Global.putStringForUser(cr,
380 android.provider.Settings.Global.DATA_ROAMING
381 + subInfo.getSubscriptionId(), "0", userId);
382 }
383 }
384
385 // Single sim device.
386 android.provider.Settings.Global.putStringForUser(cr,
387 android.provider.Settings.Global.DATA_ROAMING, "0", userId);
388 }
389 break;
Makoto Onuki4f160732015-10-27 17:15:38 -0700390 case UserManager.DISALLOW_SHARE_LOCATION:
391 if (newValue) {
392 android.provider.Settings.Secure.putIntForUser(cr,
393 android.provider.Settings.Secure.LOCATION_MODE,
394 android.provider.Settings.Secure.LOCATION_MODE_OFF,
395 userId);
Makoto Onuki4f160732015-10-27 17:15:38 -0700396 }
Makoto Onuki4f160732015-10-27 17:15:38 -0700397 break;
398 case UserManager.DISALLOW_DEBUGGING_FEATURES:
399 if (newValue) {
400 // Only disable adb if changing for system user, since it is global
401 // TODO: should this be admin user?
402 if (userId == UserHandle.USER_SYSTEM) {
403 android.provider.Settings.Global.putStringForUser(cr,
404 android.provider.Settings.Global.ADB_ENABLED, "0",
405 userId);
406 }
407 }
408 break;
409 case UserManager.ENSURE_VERIFY_APPS:
410 if (newValue) {
411 android.provider.Settings.Global.putStringForUser(
412 context.getContentResolver(),
413 android.provider.Settings.Global.PACKAGE_VERIFIER_ENABLE, "1",
414 userId);
415 android.provider.Settings.Global.putStringForUser(
416 context.getContentResolver(),
417 android.provider.Settings.Global.PACKAGE_VERIFIER_INCLUDE_ADB, "1",
418 userId);
419 }
420 break;
421 case UserManager.DISALLOW_INSTALL_UNKNOWN_SOURCES:
422 if (newValue) {
423 android.provider.Settings.Secure.putIntForUser(cr,
424 android.provider.Settings.Secure.INSTALL_NON_MARKET_APPS, 0,
425 userId);
426 }
427 break;
Fyodor Kupolov9cbfc9e2015-10-07 15:52:33 -0700428 case UserManager.DISALLOW_RUN_IN_BACKGROUND:
429 if (newValue) {
430 int currentUser = ActivityManager.getCurrentUser();
431 if (currentUser != userId && userId != UserHandle.USER_SYSTEM) {
432 try {
Sudheer Shankadc589ac2016-11-10 15:30:17 -0800433 ActivityManager.getService().stopUser(userId, false, null);
Fyodor Kupolov9cbfc9e2015-10-07 15:52:33 -0700434 } catch (RemoteException e) {
435 throw e.rethrowAsRuntimeException();
436 }
437 }
438 }
Lenka Trochtova6474f0e2016-03-24 16:43:10 +0100439 break;
440 case UserManager.DISALLOW_SAFE_BOOT:
441 // Unlike with the other restrictions, we want to propagate the new value to
442 // the system settings even if it is false. The other restrictions modify
443 // settings which could be manually changed by the user from the Settings app
444 // after the policies enforcing these restrictions have been revoked, so we
445 // leave re-setting of those settings to the user.
446 android.provider.Settings.Global.putInt(
447 context.getContentResolver(),
448 android.provider.Settings.Global.SAFE_BOOT_DISALLOWED,
449 newValue ? 1 : 0);
450 break;
Mahaver Chopra830e32c2016-05-17 18:53:09 +0100451 case UserManager.DISALLOW_FACTORY_RESET:
Mahaver Chopra3d9805d2016-07-07 16:25:05 +0100452 case UserManager.DISALLOW_OEM_UNLOCK:
Mahaver Chopra830e32c2016-05-17 18:53:09 +0100453 if (newValue) {
454 PersistentDataBlockManager manager = (PersistentDataBlockManager) context
455 .getSystemService(Context.PERSISTENT_DATA_BLOCK_SERVICE);
Esteban Talaverac48b20f2016-08-11 11:23:40 +0100456 if (manager != null
457 && manager.getOemUnlockEnabled()
458 && manager.getFlashLockState()
459 != PersistentDataBlockManager.FLASH_LOCK_UNLOCKED) {
460 // Only disable OEM unlock if the bootloader is locked. If it's already
461 // unlocked, setting the OEM unlock enabled flag to false has no effect
462 // (the bootloader would remain unlocked).
Mahaver Chopra830e32c2016-05-17 18:53:09 +0100463 manager.setOemUnlockEnabled(false);
464 }
465 }
Tony Makc1205112016-07-22 16:02:59 +0100466 break;
Makoto Onuki4f160732015-10-27 17:15:38 -0700467 }
Makoto Onuki4f160732015-10-27 17:15:38 -0700468 } finally {
469 Binder.restoreCallingIdentity(id);
470 }
471 }
472
Makoto Onukia4f11972015-10-01 13:19:58 -0700473 public static void dumpRestrictions(PrintWriter pw, String prefix, Bundle restrictions) {
474 boolean noneSet = true;
475 if (restrictions != null) {
476 for (String key : restrictions.keySet()) {
477 if (restrictions.getBoolean(key, false)) {
478 pw.println(prefix + key);
479 noneSet = false;
480 }
481 }
Makoto Onuki068c54a2015-10-13 14:34:03 -0700482 if (noneSet) {
483 pw.println(prefix + "none");
484 }
485 } else {
486 pw.println(prefix + "null");
Makoto Onukia4f11972015-10-01 13:19:58 -0700487 }
488 }
489}