Dianne Hackborn | d684784 | 2010-01-12 18:14:19 -0800 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (C) 2010 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 | |
Dianne Hackborn | 87bba1e | 2010-02-26 17:25:54 -0800 | [diff] [blame] | 17 | package android.app.admin; |
Dianne Hackborn | d684784 | 2010-01-12 18:14:19 -0800 | [diff] [blame] | 18 | |
Nicolas Prevot | 8f7698a | 2016-02-11 16:05:33 +0000 | [diff] [blame] | 19 | import android.annotation.ColorInt; |
Alan Treadway | afad878 | 2016-01-19 15:15:08 +0000 | [diff] [blame] | 20 | import android.annotation.IntDef; |
Robin Lee | 25e2645 | 2015-06-02 09:56:29 -0700 | [diff] [blame] | 21 | import android.annotation.NonNull; |
| 22 | import android.annotation.Nullable; |
Dianne Hackborn | d684784 | 2010-01-12 18:14:19 -0800 | [diff] [blame] | 23 | import android.annotation.SdkConstant; |
| 24 | import android.annotation.SdkConstant.SdkConstantType; |
Justin Morey | b5deda7 | 2014-07-24 10:53:40 -0500 | [diff] [blame] | 25 | import android.annotation.SystemApi; |
Bartosz Fabianowski | 8d76e72 | 2016-11-25 12:36:20 +0100 | [diff] [blame] | 26 | import android.annotation.TestApi; |
Nicolas Prevot | 8f7698a | 2016-02-11 16:05:33 +0000 | [diff] [blame] | 27 | import android.annotation.UserIdInt; |
Fyodor Kupolov | 4e9af06 | 2016-07-18 16:59:11 -0700 | [diff] [blame] | 28 | import android.annotation.WorkerThread; |
Jason Monk | d7b8621 | 2014-06-16 13:15:38 -0400 | [diff] [blame] | 29 | import android.app.Activity; |
Tony Mak | 46aabe5 | 2016-11-14 12:53:06 +0000 | [diff] [blame] | 30 | import android.app.IServiceConnection; |
Michal Karpinski | 6235a94 | 2016-03-15 12:07:23 +0000 | [diff] [blame] | 31 | import android.app.admin.SecurityLog.SecurityEvent; |
Dianne Hackborn | d684784 | 2010-01-12 18:14:19 -0800 | [diff] [blame] | 32 | import android.content.ComponentName; |
| 33 | import android.content.Context; |
Adam Connors | 010cfd4 | 2014-04-16 12:48:13 +0100 | [diff] [blame] | 34 | import android.content.Intent; |
Sander Alewijnse | f475ca3 | 2014-02-17 15:13:58 +0000 | [diff] [blame] | 35 | import android.content.IntentFilter; |
Tony Mak | 46aabe5 | 2016-11-14 12:53:06 +0000 | [diff] [blame] | 36 | import android.content.ServiceConnection; |
Dianne Hackborn | d684784 | 2010-01-12 18:14:19 -0800 | [diff] [blame] | 37 | import android.content.pm.PackageManager; |
Victor Chang | cd14c0a | 2016-03-16 19:10:15 +0000 | [diff] [blame] | 38 | import android.content.pm.PackageManager.NameNotFoundException; |
Rubin Xu | c3cd05f | 2016-01-11 12:11:35 +0000 | [diff] [blame] | 39 | import android.content.pm.ParceledListSlice; |
Sudheer Shanka | 978fc0d | 2016-01-28 13:51:10 +0000 | [diff] [blame] | 40 | import android.content.pm.UserInfo; |
Julia Reynolds | fca04ca | 2015-02-17 13:39:12 -0500 | [diff] [blame] | 41 | import android.graphics.Bitmap; |
Jason Monk | 03bc991 | 2014-05-13 09:44:57 -0400 | [diff] [blame] | 42 | import android.net.ProxyInfo; |
Nicolas Prevot | 8b7991c | 2015-11-12 17:40:12 +0000 | [diff] [blame] | 43 | import android.net.Uri; |
Robin Lee | 66e5d96 | 2014-04-09 16:44:21 +0100 | [diff] [blame] | 44 | import android.os.Bundle; |
Victor Chang | c10f669 | 2016-12-09 15:24:00 +0000 | [diff] [blame] | 45 | import android.os.Parcelable; |
Jim Miller | e303bf4 | 2014-08-26 17:12:29 -0700 | [diff] [blame] | 46 | import android.os.PersistableBundle; |
Adam Connors | 776c555 | 2014-01-09 10:42:56 +0000 | [diff] [blame] | 47 | import android.os.Process; |
Dianne Hackborn | 8ea138c | 2010-01-26 18:01:04 -0800 | [diff] [blame] | 48 | import android.os.RemoteCallback; |
Dianne Hackborn | d684784 | 2010-01-12 18:14:19 -0800 | [diff] [blame] | 49 | import android.os.RemoteException; |
Amith Yamasani | 599dd7c | 2012-09-14 23:20:08 -0700 | [diff] [blame] | 50 | import android.os.UserHandle; |
Julia Reynolds | 1e95839 | 2014-05-16 14:25:21 -0400 | [diff] [blame] | 51 | import android.os.UserManager; |
Ricky Wai | 494b95d | 2015-11-20 16:07:15 +0000 | [diff] [blame] | 52 | import android.provider.ContactsContract.Directory; |
Mahaver Chopra | 1ce53bc | 2015-12-14 13:35:14 +0000 | [diff] [blame] | 53 | import android.provider.Settings; |
Bernhard Bauer | 26408cc | 2014-09-08 14:07:31 +0100 | [diff] [blame] | 54 | import android.security.Credentials; |
Amith Yamasani | d1d7c02 | 2014-08-19 17:03:41 -0700 | [diff] [blame] | 55 | import android.service.restrictions.RestrictionsReceiver; |
Mahaver Chopra | 1216ae5 | 2016-03-11 15:39:48 +0000 | [diff] [blame] | 56 | import android.telephony.TelephonyManager; |
Dianne Hackborn | d684784 | 2010-01-12 18:14:19 -0800 | [diff] [blame] | 57 | import android.util.Log; |
| 58 | |
Makoto Onuki | cc4bbeb | 2015-09-17 10:28:24 -0700 | [diff] [blame] | 59 | import com.android.internal.annotations.VisibleForTesting; |
Maggie Benthall | da51e68 | 2013-08-08 22:35:44 -0400 | [diff] [blame] | 60 | import com.android.org.conscrypt.TrustedCertificateStore; |
| 61 | |
| 62 | import java.io.ByteArrayInputStream; |
Dianne Hackborn | d684784 | 2010-01-12 18:14:19 -0800 | [diff] [blame] | 63 | import java.io.IOException; |
Alan Treadway | afad878 | 2016-01-19 15:15:08 +0000 | [diff] [blame] | 64 | import java.lang.annotation.Retention; |
| 65 | import java.lang.annotation.RetentionPolicy; |
Oscar Montemayor | 69238c6 | 2010-08-03 10:51:06 -0700 | [diff] [blame] | 66 | import java.net.InetSocketAddress; |
| 67 | import java.net.Proxy; |
Robin Lee | 0d5ccb7 | 2014-09-12 17:41:44 +0100 | [diff] [blame] | 68 | import java.security.KeyFactory; |
Mahaver Chopra | 1ce53bc | 2015-12-14 13:35:14 +0000 | [diff] [blame] | 69 | import java.security.NoSuchAlgorithmException; |
Bernhard Bauer | 26408cc | 2014-09-08 14:07:31 +0100 | [diff] [blame] | 70 | import java.security.PrivateKey; |
| 71 | import java.security.cert.Certificate; |
Maggie Benthall | da51e68 | 2013-08-08 22:35:44 -0400 | [diff] [blame] | 72 | import java.security.cert.CertificateException; |
| 73 | import java.security.cert.CertificateFactory; |
| 74 | import java.security.cert.X509Certificate; |
Robin Lee | 0d5ccb7 | 2014-09-12 17:41:44 +0100 | [diff] [blame] | 75 | import java.security.spec.InvalidKeySpecException; |
Mahaver Chopra | 1ce53bc | 2015-12-14 13:35:14 +0000 | [diff] [blame] | 76 | import java.security.spec.PKCS8EncodedKeySpec; |
Jim Miller | 604e755 | 2014-07-18 19:00:02 -0700 | [diff] [blame] | 77 | import java.util.ArrayList; |
Rubin Xu | b436591 | 2016-03-23 12:13:22 +0000 | [diff] [blame] | 78 | import java.util.Arrays; |
Svetoslav | 976e8bd | 2014-07-16 15:12:03 -0700 | [diff] [blame] | 79 | import java.util.Collections; |
Dianne Hackborn | d47c6ed | 2010-01-27 16:21:20 -0800 | [diff] [blame] | 80 | import java.util.List; |
Dianne Hackborn | d684784 | 2010-01-12 18:14:19 -0800 | [diff] [blame] | 81 | |
| 82 | /** |
Alexandra Gherghina | 541afcd | 2014-11-07 11:18:12 +0000 | [diff] [blame] | 83 | * Public interface for managing policies enforced on a device. Most clients of this class must be |
Suprabh Shukla | 34d92ef | 2016-03-14 13:49:37 -0700 | [diff] [blame] | 84 | * registered with the system as a <a href="{@docRoot}guide/topics/admin/device-admin.html">device |
| 85 | * administrator</a>. Additionally, a device administrator may be registered as either a profile or |
| 86 | * device owner. A given method is accessible to all device administrators unless the documentation |
| 87 | * for that method specifies that it is restricted to either device or profile owners. Any |
| 88 | * application calling an api may only pass as an argument a device administrator component it |
| 89 | * owns. Otherwise, a {@link SecurityException} will be thrown. |
Joe Fernandez | 3aef8e1d | 2011-12-20 10:38:34 -0800 | [diff] [blame] | 90 | * <div class="special reference"> |
| 91 | * <h3>Developer Guides</h3> |
Suprabh Shukla | 34d92ef | 2016-03-14 13:49:37 -0700 | [diff] [blame] | 92 | * <p> |
| 93 | * For more information about managing policies for device administration, read the <a href= |
| 94 | * "{@docRoot}guide/topics/admin/device-admin.html">Device Administration</a> developer |
| 95 | * guide. </div> |
Dianne Hackborn | d684784 | 2010-01-12 18:14:19 -0800 | [diff] [blame] | 96 | */ |
| 97 | public class DevicePolicyManager { |
| 98 | private static String TAG = "DevicePolicyManager"; |
Dianne Hackborn | d684784 | 2010-01-12 18:14:19 -0800 | [diff] [blame] | 99 | |
| 100 | private final Context mContext; |
Dianne Hackborn | d684784 | 2010-01-12 18:14:19 -0800 | [diff] [blame] | 101 | private final IDevicePolicyManager mService; |
Esteban Talavera | 6239991 | 2016-01-11 15:37:55 +0000 | [diff] [blame] | 102 | private final boolean mParentInstance; |
Konstantin Lopyrev | 3255823 | 2010-05-20 16:18:05 -0700 | [diff] [blame] | 103 | |
Jeff Sharkey | 49ca529 | 2016-05-10 12:54:45 -0600 | [diff] [blame] | 104 | /** @hide */ |
| 105 | public DevicePolicyManager(Context context, IDevicePolicyManager service) { |
| 106 | this(context, service, false); |
Dianne Hackborn | d684784 | 2010-01-12 18:14:19 -0800 | [diff] [blame] | 107 | } |
| 108 | |
Dianne Hackborn | 87bba1e | 2010-02-26 17:25:54 -0800 | [diff] [blame] | 109 | /** @hide */ |
Makoto Onuki | cc4bbeb | 2015-09-17 10:28:24 -0700 | [diff] [blame] | 110 | @VisibleForTesting |
Jeff Sharkey | 49ca529 | 2016-05-10 12:54:45 -0600 | [diff] [blame] | 111 | protected DevicePolicyManager(Context context, IDevicePolicyManager service, |
| 112 | boolean parentInstance) { |
Makoto Onuki | cc4bbeb | 2015-09-17 10:28:24 -0700 | [diff] [blame] | 113 | mContext = context; |
| 114 | mService = service; |
Esteban Talavera | 6239991 | 2016-01-11 15:37:55 +0000 | [diff] [blame] | 115 | mParentInstance = parentInstance; |
Makoto Onuki | cc4bbeb | 2015-09-17 10:28:24 -0700 | [diff] [blame] | 116 | } |
| 117 | |
Makoto Onuki | cc4bbeb | 2015-09-17 10:28:24 -0700 | [diff] [blame] | 118 | /** @hide test will override it. */ |
| 119 | @VisibleForTesting |
| 120 | protected int myUserId() { |
| 121 | return UserHandle.myUserId(); |
| 122 | } |
| 123 | |
Dianne Hackborn | d684784 | 2010-01-12 18:14:19 -0800 | [diff] [blame] | 124 | /** |
Jessica Hummel | f72078b | 2014-03-06 16:13:12 +0000 | [diff] [blame] | 125 | * Activity action: Starts the provisioning flow which sets up a managed profile. |
Jessica Hummel | f72078b | 2014-03-06 16:13:12 +0000 | [diff] [blame] | 126 | * |
Jessica Hummel | 9da6039 | 2014-05-21 12:32:57 +0100 | [diff] [blame] | 127 | * <p>A managed profile allows data separation for example for the usage of a |
| 128 | * device as a personal and corporate device. The user which provisioning is started from and |
| 129 | * the managed profile share a launcher. |
| 130 | * |
Andrew Solovay | 27f5337 | 2015-03-02 16:37:59 -0800 | [diff] [blame] | 131 | * <p>This intent will typically be sent by a mobile device management application (MDM). |
| 132 | * Provisioning adds a managed profile and sets the MDM as the profile owner who has full |
| 133 | * control over the profile. |
Jessica Hummel | 9da6039 | 2014-05-21 12:32:57 +0100 | [diff] [blame] | 134 | * |
Alan Treadway | 46dd449 | 2015-11-09 13:57:19 +0000 | [diff] [blame] | 135 | * <p>It is possible to check if provisioning is allowed or not by querying the method |
| 136 | * {@link #isProvisioningAllowed(String)}. |
| 137 | * |
| 138 | * <p>In version {@link android.os.Build.VERSION_CODES#LOLLIPOP}, this intent must contain the |
Nicolas Prevot | 1844025 | 2015-03-09 14:07:17 +0000 | [diff] [blame] | 139 | * extra {@link #EXTRA_PROVISIONING_DEVICE_ADMIN_PACKAGE_NAME}. |
Dianne Hackborn | 0e3de6c | 2015-07-29 15:20:21 -0700 | [diff] [blame] | 140 | * As of {@link android.os.Build.VERSION_CODES#M}, it should contain the extra |
Nicolas Prevot | 1844025 | 2015-03-09 14:07:17 +0000 | [diff] [blame] | 141 | * {@link #EXTRA_PROVISIONING_DEVICE_ADMIN_COMPONENT_NAME} instead, although specifying only |
| 142 | * {@link #EXTRA_PROVISIONING_DEVICE_ADMIN_PACKAGE_NAME} is still supported. |
Nicolas Prevot | caf11cd | 2015-11-19 10:58:35 +0000 | [diff] [blame] | 143 | * |
Benjamin Franz | ea95624 | 2016-03-21 15:45:56 +0000 | [diff] [blame] | 144 | * <p>The intent may also contain the following extras: |
Nicolas Prevot | caf11cd | 2015-11-19 10:58:35 +0000 | [diff] [blame] | 145 | * <ul> |
Benjamin Franz | ea95624 | 2016-03-21 15:45:56 +0000 | [diff] [blame] | 146 | * <li>{@link #EXTRA_PROVISIONING_ACCOUNT_TO_MIGRATE}, optional </li> |
| 147 | * <li>{@link #EXTRA_PROVISIONING_SKIP_ENCRYPTION}, optional, supported from |
| 148 | * {@link android.os.Build.VERSION_CODES#N}</li> |
| 149 | * <li>{@link #EXTRA_PROVISIONING_ADMIN_EXTRAS_BUNDLE}, optional</li> |
| 150 | * <li>{@link #EXTRA_PROVISIONING_LOGO_URI}, optional</li> |
| 151 | * <li>{@link #EXTRA_PROVISIONING_MAIN_COLOR}, optional</li> |
Victor Chang | 51d84f9 | 2016-11-16 12:22:56 +0000 | [diff] [blame] | 152 | * <li>{@link #EXTRA_PROVISIONING_SKIP_USER_CONSENT}, optional</li> |
Victor Chang | 89ee279 | 2016-11-23 12:10:55 +0000 | [diff] [blame] | 153 | * <li>{@link #EXTRA_PROVISIONING_KEEP_ACCOUNT_ON_MIGRATION}, optional</li> |
Victor Chang | c10f669 | 2016-12-09 15:24:00 +0000 | [diff] [blame] | 154 | * <li>{@link #EXTRA_PROVISIONING_DISCLAIMERS}, optional</li> |
Nicolas Prevot | caf11cd | 2015-11-19 10:58:35 +0000 | [diff] [blame] | 155 | * </ul> |
Jessica Hummel | f72078b | 2014-03-06 16:13:12 +0000 | [diff] [blame] | 156 | * |
Benjamin Franz | ea95624 | 2016-03-21 15:45:56 +0000 | [diff] [blame] | 157 | * <p>When managed provisioning has completed, broadcasts are sent to the application specified |
Alexandra Gherghina | db4bc57 | 2015-01-08 12:17:40 +0000 | [diff] [blame] | 158 | * in the provisioning intent. The |
| 159 | * {@link DeviceAdminReceiver#ACTION_PROFILE_PROVISIONING_COMPLETE} broadcast is sent in the |
| 160 | * managed profile and the {@link #ACTION_MANAGED_PROFILE_PROVISIONED} broadcast is sent in |
| 161 | * the primary profile. |
Jessica Hummel | 9da6039 | 2014-05-21 12:32:57 +0100 | [diff] [blame] | 162 | * |
Mahaver Chopra | 3c58cfe | 2016-11-01 21:25:59 +0000 | [diff] [blame] | 163 | * <p>From version {@link android.os.Build.VERSION_CODES#O}, when managed provisioning has |
| 164 | * completed, along with the above broadcast, activity intent |
| 165 | * {@link #ACTION_PROVISIONING_SUCCESSFUL} will also be sent to the application specified in |
| 166 | * the provisioning intent. |
| 167 | * |
Benjamin Franz | ea95624 | 2016-03-21 15:45:56 +0000 | [diff] [blame] | 168 | * <p>If provisioning fails, the managedProfile is removed so the device returns to its |
Sander Alewijnse | 1cc4ecc | 2014-06-23 19:56:52 +0100 | [diff] [blame] | 169 | * previous state. |
Alan Treadway | 4582f81 | 2015-07-28 11:49:35 +0100 | [diff] [blame] | 170 | * |
| 171 | * <p>If launched with {@link android.app.Activity#startActivityForResult(Intent, int)} a |
| 172 | * result code of {@link android.app.Activity#RESULT_OK} implies that the synchronous part of |
| 173 | * the provisioning flow was successful, although this doesn't guarantee the full flow will |
| 174 | * succeed. Conversely a result code of {@link android.app.Activity#RESULT_CANCELED} implies |
| 175 | * that the user backed-out of provisioning, or some precondition for provisioning wasn't met. |
Jessica Hummel | f72078b | 2014-03-06 16:13:12 +0000 | [diff] [blame] | 176 | */ |
| 177 | @SdkConstant(SdkConstantType.ACTIVITY_INTENT_ACTION) |
| 178 | public static final String ACTION_PROVISION_MANAGED_PROFILE |
Esteban Talavera | ef9c523 | 2014-09-08 13:51:18 +0100 | [diff] [blame] | 179 | = "android.app.action.PROVISION_MANAGED_PROFILE"; |
Jessica Hummel | f72078b | 2014-03-06 16:13:12 +0000 | [diff] [blame] | 180 | |
| 181 | /** |
Mahaver Chopra | 7830daa | 2015-11-10 18:12:43 +0000 | [diff] [blame] | 182 | * Activity action: Starts the provisioning flow which sets up a managed user. |
| 183 | * |
| 184 | * <p>This intent will typically be sent by a mobile device management application (MDM). |
Makoto Onuki | 32b3057 | 2015-12-11 14:29:51 -0800 | [diff] [blame] | 185 | * Provisioning configures the user as managed user and sets the MDM as the profile |
Mahaver Chopra | 7830daa | 2015-11-10 18:12:43 +0000 | [diff] [blame] | 186 | * owner who has full control over the user. Provisioning can only happen before user setup has |
| 187 | * been completed. Use {@link #isProvisioningAllowed(String)} to check if provisioning is |
| 188 | * allowed. |
| 189 | * |
Benjamin Franz | ea95624 | 2016-03-21 15:45:56 +0000 | [diff] [blame] | 190 | * <p>The intent contains the following extras: |
| 191 | * <ul> |
| 192 | * <li>{@link #EXTRA_PROVISIONING_DEVICE_ADMIN_COMPONENT_NAME}</li> |
| 193 | * <li>{@link #EXTRA_PROVISIONING_SKIP_ENCRYPTION}, optional</li> |
| 194 | * <li>{@link #EXTRA_PROVISIONING_ADMIN_EXTRAS_BUNDLE}, optional</li> |
| 195 | * <li>{@link #EXTRA_PROVISIONING_LOGO_URI}, optional</li> |
| 196 | * <li>{@link #EXTRA_PROVISIONING_MAIN_COLOR}, optional</li> |
| 197 | * </ul> |
Mahaver Chopra | 7830daa | 2015-11-10 18:12:43 +0000 | [diff] [blame] | 198 | * |
Benjamin Franz | ea95624 | 2016-03-21 15:45:56 +0000 | [diff] [blame] | 199 | * <p>If provisioning fails, the device returns to its previous state. |
Mahaver Chopra | 7830daa | 2015-11-10 18:12:43 +0000 | [diff] [blame] | 200 | * |
| 201 | * <p>If launched with {@link android.app.Activity#startActivityForResult(Intent, int)} a |
| 202 | * result code of {@link android.app.Activity#RESULT_OK} implies that the synchronous part of |
| 203 | * the provisioning flow was successful, although this doesn't guarantee the full flow will |
| 204 | * succeed. Conversely a result code of {@link android.app.Activity#RESULT_CANCELED} implies |
| 205 | * that the user backed-out of provisioning, or some precondition for provisioning wasn't met. |
Benjamin Franz | ea95624 | 2016-03-21 15:45:56 +0000 | [diff] [blame] | 206 | * |
| 207 | * @hide |
Mahaver Chopra | 5e73256 | 2015-11-05 11:55:12 +0000 | [diff] [blame] | 208 | */ |
| 209 | @SdkConstant(SdkConstantType.ACTIVITY_INTENT_ACTION) |
| 210 | public static final String ACTION_PROVISION_MANAGED_USER |
| 211 | = "android.app.action.PROVISION_MANAGED_USER"; |
| 212 | |
| 213 | /** |
Nicolas Prevot | 64bf7b2 | 2015-04-29 14:43:49 +0100 | [diff] [blame] | 214 | * Activity action: Starts the provisioning flow which sets up a managed device. |
| 215 | * Must be started with {@link android.app.Activity#startActivityForResult(Intent, int)}. |
| 216 | * |
| 217 | * <p> During device owner provisioning a device admin app is set as the owner of the device. |
| 218 | * A device owner has full control over the device. The device owner can not be modified by the |
| 219 | * user. |
| 220 | * |
| 221 | * <p> A typical use case would be a device that is owned by a company, but used by either an |
| 222 | * employee or client. |
| 223 | * |
| 224 | * <p> An intent with this action can be sent only on an unprovisioned device. |
Alan Treadway | 46dd449 | 2015-11-09 13:57:19 +0000 | [diff] [blame] | 225 | * It is possible to check if provisioning is allowed or not by querying the method |
| 226 | * {@link #isProvisioningAllowed(String)}. |
Nicolas Prevot | 64bf7b2 | 2015-04-29 14:43:49 +0100 | [diff] [blame] | 227 | * |
Alan Treadway | 46dd449 | 2015-11-09 13:57:19 +0000 | [diff] [blame] | 228 | * <p>The intent contains the following extras: |
Nicolas Prevot | 64bf7b2 | 2015-04-29 14:43:49 +0100 | [diff] [blame] | 229 | * <ul> |
| 230 | * <li>{@link #EXTRA_PROVISIONING_DEVICE_ADMIN_COMPONENT_NAME}</li> |
| 231 | * <li>{@link #EXTRA_PROVISIONING_SKIP_ENCRYPTION}, optional</li> |
| 232 | * <li>{@link #EXTRA_PROVISIONING_LEAVE_ALL_SYSTEM_APPS_ENABLED}, optional</li> |
Rubin Xu | a4f9dc1 | 2015-06-12 13:27:59 +0100 | [diff] [blame] | 233 | * <li>{@link #EXTRA_PROVISIONING_ADMIN_EXTRAS_BUNDLE}, optional</li> |
Nicolas Prevot | 8b7991c | 2015-11-12 17:40:12 +0000 | [diff] [blame] | 234 | * <li>{@link #EXTRA_PROVISIONING_LOGO_URI}, optional</li> |
Nicolas Prevot | caf11cd | 2015-11-19 10:58:35 +0000 | [diff] [blame] | 235 | * <li>{@link #EXTRA_PROVISIONING_MAIN_COLOR}, optional</li> |
Victor Chang | c10f669 | 2016-12-09 15:24:00 +0000 | [diff] [blame] | 236 | * <li>{@link #EXTRA_PROVISIONING_DISCLAIMERS}, optional</li> |
Nicolas Prevot | 64bf7b2 | 2015-04-29 14:43:49 +0100 | [diff] [blame] | 237 | * </ul> |
| 238 | * |
Benjamin Franz | ea95624 | 2016-03-21 15:45:56 +0000 | [diff] [blame] | 239 | * <p>When device owner provisioning has completed, an intent of the type |
Nicolas Prevot | 64bf7b2 | 2015-04-29 14:43:49 +0100 | [diff] [blame] | 240 | * {@link DeviceAdminReceiver#ACTION_PROFILE_PROVISIONING_COMPLETE} is broadcast to the |
| 241 | * device owner. |
| 242 | * |
Mahaver Chopra | 3c58cfe | 2016-11-01 21:25:59 +0000 | [diff] [blame] | 243 | * <p>From version {@link android.os.Build.VERSION_CODES#O}, when device owner provisioning has |
| 244 | * completed, along with the above broadcast, activity intent |
| 245 | * {@link #ACTION_PROVISIONING_SUCCESSFUL} will also be sent to the device owner. |
| 246 | * |
Benjamin Franz | ea95624 | 2016-03-21 15:45:56 +0000 | [diff] [blame] | 247 | * <p>If provisioning fails, the device is factory reset. |
Nicolas Prevot | 64bf7b2 | 2015-04-29 14:43:49 +0100 | [diff] [blame] | 248 | * |
Alan Treadway | 4582f81 | 2015-07-28 11:49:35 +0100 | [diff] [blame] | 249 | * <p>A result code of {@link android.app.Activity#RESULT_OK} implies that the synchronous part |
| 250 | * of the provisioning flow was successful, although this doesn't guarantee the full flow will |
| 251 | * succeed. Conversely a result code of {@link android.app.Activity#RESULT_CANCELED} implies |
| 252 | * that the user backed-out of provisioning, or some precondition for provisioning wasn't met. |
Nicolas Prevot | 64bf7b2 | 2015-04-29 14:43:49 +0100 | [diff] [blame] | 253 | */ |
| 254 | @SdkConstant(SdkConstantType.ACTIVITY_INTENT_ACTION) |
| 255 | public static final String ACTION_PROVISION_MANAGED_DEVICE |
| 256 | = "android.app.action.PROVISION_MANAGED_DEVICE"; |
| 257 | |
| 258 | /** |
Alan Treadway | 46dd449 | 2015-11-09 13:57:19 +0000 | [diff] [blame] | 259 | * Activity action: Starts the provisioning flow which sets up a managed device. |
Steven Ng | 980a1b6 | 2016-02-02 17:43:18 +0000 | [diff] [blame] | 260 | * |
| 261 | * <p>During device owner provisioning, a device admin app is downloaded and set as the owner of |
| 262 | * the device. A device owner has full control over the device. The device owner can not be |
| 263 | * modified by the user and the only way of resetting the device is via factory reset. |
| 264 | * |
| 265 | * <p>A typical use case would be a device that is owned by a company, but used by either an |
| 266 | * employee or client. |
| 267 | * |
| 268 | * <p>The provisioning message should be sent to an unprovisioned device. |
| 269 | * |
| 270 | * <p>Unlike {@link #ACTION_PROVISION_MANAGED_DEVICE}, the provisioning message can only be sent |
| 271 | * by a privileged app with the permission |
| 272 | * {@link android.Manifest.permission#DISPATCH_PROVISIONING_MESSAGE}. |
| 273 | * |
| 274 | * <p>The provisioning intent contains the following properties: |
| 275 | * <ul> |
| 276 | * <li>{@link #EXTRA_PROVISIONING_DEVICE_ADMIN_COMPONENT_NAME}</li> |
| 277 | * <li>{@link #EXTRA_PROVISIONING_DEVICE_ADMIN_PACKAGE_DOWNLOAD_LOCATION}, optional</li> |
| 278 | * <li>{@link #EXTRA_PROVISIONING_DEVICE_ADMIN_PACKAGE_DOWNLOAD_COOKIE_HEADER}, optional</li> |
| 279 | * <li>{@link #EXTRA_PROVISIONING_DEVICE_ADMIN_PACKAGE_CHECKSUM}, optional</li> |
Victor Chang | 38cfd9c | 2017-01-04 17:41:11 +0000 | [diff] [blame] | 280 | * <li>{@link #EXTRA_PROVISIONING_DEVICE_ADMIN_PACKAGE_LABEL}, optional</li> |
| 281 | * <li>{@link #EXTRA_PROVISIONING_DEVICE_ADMIN_PACKAGE_ICON_URI}, optional</li> |
Steven Ng | 980a1b6 | 2016-02-02 17:43:18 +0000 | [diff] [blame] | 282 | * <li>{@link #EXTRA_PROVISIONING_LOCAL_TIME} (convert to String), optional</li> |
| 283 | * <li>{@link #EXTRA_PROVISIONING_TIME_ZONE}, optional</li> |
| 284 | * <li>{@link #EXTRA_PROVISIONING_LOCALE}, optional</li> |
| 285 | * <li>{@link #EXTRA_PROVISIONING_WIFI_SSID}, optional</li> |
| 286 | * <li>{@link #EXTRA_PROVISIONING_WIFI_HIDDEN} (convert to String), optional</li> |
| 287 | * <li>{@link #EXTRA_PROVISIONING_WIFI_SECURITY_TYPE}, optional</li> |
| 288 | * <li>{@link #EXTRA_PROVISIONING_WIFI_PASSWORD}, optional</li> |
| 289 | * <li>{@link #EXTRA_PROVISIONING_WIFI_PROXY_HOST}, optional</li> |
| 290 | * <li>{@link #EXTRA_PROVISIONING_WIFI_PROXY_PORT} (convert to String), optional</li> |
| 291 | * <li>{@link #EXTRA_PROVISIONING_WIFI_PROXY_BYPASS}, optional</li> |
| 292 | * <li>{@link #EXTRA_PROVISIONING_WIFI_PAC_URL}, optional</li> |
Victor Chang | 38cfd9c | 2017-01-04 17:41:11 +0000 | [diff] [blame] | 293 | * <li>{@link #EXTRA_PROVISIONING_SUPPORT_URL}, optional</li> |
| 294 | * <li>{@link #EXTRA_PROVISIONING_ORGANIZATION_NAME}, optional</li> |
Steven Ng | 980a1b6 | 2016-02-02 17:43:18 +0000 | [diff] [blame] | 295 | * <li>{@link #EXTRA_PROVISIONING_ADMIN_EXTRAS_BUNDLE}, optional</li></ul> |
| 296 | * |
| 297 | * @hide |
| 298 | */ |
| 299 | @SdkConstant(SdkConstantType.ACTIVITY_INTENT_ACTION) |
| 300 | @SystemApi |
| 301 | public static final String ACTION_PROVISION_MANAGED_DEVICE_FROM_TRUSTED_SOURCE = |
| 302 | "android.app.action.PROVISION_MANAGED_DEVICE_FROM_TRUSTED_SOURCE"; |
| 303 | |
| 304 | /** |
| 305 | * Activity action: Starts the provisioning flow which sets up a managed device. |
Alan Treadway | 46dd449 | 2015-11-09 13:57:19 +0000 | [diff] [blame] | 306 | * Must be started with {@link android.app.Activity#startActivityForResult(Intent, int)}. |
| 307 | * |
| 308 | * <p>NOTE: This is only supported on split system user devices, and puts the device into a |
| 309 | * management state that is distinct from that reached by |
| 310 | * {@link #ACTION_PROVISION_MANAGED_DEVICE} - specifically the device owner runs on the system |
| 311 | * user, and only has control over device-wide policies, not individual users and their data. |
| 312 | * The primary benefit is that multiple non-system users are supported when provisioning using |
| 313 | * this form of device management. |
| 314 | * |
Benjamin Franz | ea95624 | 2016-03-21 15:45:56 +0000 | [diff] [blame] | 315 | * <p>During device owner provisioning a device admin app is set as the owner of the device. |
Alan Treadway | 46dd449 | 2015-11-09 13:57:19 +0000 | [diff] [blame] | 316 | * A device owner has full control over the device. The device owner can not be modified by the |
| 317 | * user. |
| 318 | * |
Benjamin Franz | ea95624 | 2016-03-21 15:45:56 +0000 | [diff] [blame] | 319 | * <p>A typical use case would be a device that is owned by a company, but used by either an |
Alan Treadway | 46dd449 | 2015-11-09 13:57:19 +0000 | [diff] [blame] | 320 | * employee or client. |
| 321 | * |
Benjamin Franz | ea95624 | 2016-03-21 15:45:56 +0000 | [diff] [blame] | 322 | * <p>An intent with this action can be sent only on an unprovisioned device. |
Alan Treadway | 46dd449 | 2015-11-09 13:57:19 +0000 | [diff] [blame] | 323 | * It is possible to check if provisioning is allowed or not by querying the method |
| 324 | * {@link #isProvisioningAllowed(String)}. |
| 325 | * |
| 326 | * <p>The intent contains the following extras: |
| 327 | * <ul> |
| 328 | * <li>{@link #EXTRA_PROVISIONING_DEVICE_ADMIN_COMPONENT_NAME}</li> |
| 329 | * <li>{@link #EXTRA_PROVISIONING_SKIP_ENCRYPTION}, optional</li> |
| 330 | * <li>{@link #EXTRA_PROVISIONING_LEAVE_ALL_SYSTEM_APPS_ENABLED}, optional</li> |
| 331 | * <li>{@link #EXTRA_PROVISIONING_ADMIN_EXTRAS_BUNDLE}, optional</li> |
Benjamin Franz | ea95624 | 2016-03-21 15:45:56 +0000 | [diff] [blame] | 332 | * <li>{@link #EXTRA_PROVISIONING_LOGO_URI}, optional</li> |
| 333 | * <li>{@link #EXTRA_PROVISIONING_MAIN_COLOR}, optional</li> |
Alan Treadway | 46dd449 | 2015-11-09 13:57:19 +0000 | [diff] [blame] | 334 | * </ul> |
| 335 | * |
Benjamin Franz | ea95624 | 2016-03-21 15:45:56 +0000 | [diff] [blame] | 336 | * <p>When device owner provisioning has completed, an intent of the type |
Alan Treadway | 46dd449 | 2015-11-09 13:57:19 +0000 | [diff] [blame] | 337 | * {@link DeviceAdminReceiver#ACTION_PROFILE_PROVISIONING_COMPLETE} is broadcast to the |
| 338 | * device owner. |
| 339 | * |
Mahaver Chopra | 3c58cfe | 2016-11-01 21:25:59 +0000 | [diff] [blame] | 340 | * <p>From version {@link android.os.Build.VERSION_CODES#O}, when device owner provisioning has |
| 341 | * completed, along with the above broadcast, activity intent |
| 342 | * {@link #ACTION_PROVISIONING_SUCCESSFUL} will also be sent to the device owner. |
| 343 | * |
Benjamin Franz | ea95624 | 2016-03-21 15:45:56 +0000 | [diff] [blame] | 344 | * <p>If provisioning fails, the device is factory reset. |
Alan Treadway | 46dd449 | 2015-11-09 13:57:19 +0000 | [diff] [blame] | 345 | * |
| 346 | * <p>A result code of {@link android.app.Activity#RESULT_OK} implies that the synchronous part |
| 347 | * of the provisioning flow was successful, although this doesn't guarantee the full flow will |
| 348 | * succeed. Conversely a result code of {@link android.app.Activity#RESULT_CANCELED} implies |
| 349 | * that the user backed-out of provisioning, or some precondition for provisioning wasn't met. |
| 350 | * |
| 351 | * @hide |
| 352 | */ |
| 353 | @SdkConstant(SdkConstantType.ACTIVITY_INTENT_ACTION) |
| 354 | public static final String ACTION_PROVISION_MANAGED_SHAREABLE_DEVICE |
| 355 | = "android.app.action.PROVISION_MANAGED_SHAREABLE_DEVICE"; |
| 356 | |
| 357 | /** |
Alan Treadway | afad878 | 2016-01-19 15:15:08 +0000 | [diff] [blame] | 358 | * Activity action: Finalizes management provisioning, should be used after user-setup |
| 359 | * has been completed and {@link #getUserProvisioningState()} returns one of: |
| 360 | * <ul> |
| 361 | * <li>{@link #STATE_USER_SETUP_INCOMPLETE}</li> |
| 362 | * <li>{@link #STATE_USER_SETUP_COMPLETE}</li> |
| 363 | * <li>{@link #STATE_USER_PROFILE_COMPLETE}</li> |
| 364 | * </ul> |
| 365 | * |
| 366 | * @hide |
| 367 | */ |
Benjamin Franz | eed2a8e | 2016-02-19 14:19:05 +0000 | [diff] [blame] | 368 | @SystemApi |
Alan Treadway | afad878 | 2016-01-19 15:15:08 +0000 | [diff] [blame] | 369 | @SdkConstant(SdkConstantType.ACTIVITY_INTENT_ACTION) |
| 370 | public static final String ACTION_PROVISION_FINALIZATION |
| 371 | = "android.app.action.PROVISION_FINALIZATION"; |
| 372 | |
| 373 | /** |
Michal Karpinski | ba24409 | 2016-02-25 17:28:24 +0000 | [diff] [blame] | 374 | * Action: Bugreport sharing with device owner has been accepted by the user. |
| 375 | * |
| 376 | * @hide |
| 377 | */ |
| 378 | public static final String ACTION_BUGREPORT_SHARING_ACCEPTED = |
| 379 | "com.android.server.action.BUGREPORT_SHARING_ACCEPTED"; |
| 380 | |
| 381 | /** |
| 382 | * Action: Bugreport sharing with device owner has been declined by the user. |
| 383 | * |
| 384 | * @hide |
| 385 | */ |
| 386 | public static final String ACTION_BUGREPORT_SHARING_DECLINED = |
| 387 | "com.android.server.action.BUGREPORT_SHARING_DECLINED"; |
| 388 | |
| 389 | /** |
Esteban Talavera | 0157686 | 2016-12-15 11:16:44 +0000 | [diff] [blame] | 390 | * Action: Bugreport has been collected and is dispatched to {@code DevicePolicyManagerService}. |
Michal Karpinski | ba24409 | 2016-02-25 17:28:24 +0000 | [diff] [blame] | 391 | * |
| 392 | * @hide |
| 393 | */ |
| 394 | public static final String ACTION_REMOTE_BUGREPORT_DISPATCH = |
| 395 | "android.intent.action.REMOTE_BUGREPORT_DISPATCH"; |
| 396 | |
| 397 | /** |
| 398 | * Extra for shared bugreport's SHA-256 hash. |
| 399 | * |
| 400 | * @hide |
| 401 | */ |
| 402 | public static final String EXTRA_REMOTE_BUGREPORT_HASH = |
| 403 | "android.intent.extra.REMOTE_BUGREPORT_HASH"; |
| 404 | |
| 405 | /** |
| 406 | * Extra for remote bugreport notification shown type. |
| 407 | * |
| 408 | * @hide |
| 409 | */ |
| 410 | public static final String EXTRA_BUGREPORT_NOTIFICATION_TYPE = |
| 411 | "android.app.extra.bugreport_notification_type"; |
| 412 | |
| 413 | /** |
| 414 | * Notification type for a started remote bugreport flow. |
| 415 | * |
| 416 | * @hide |
| 417 | */ |
| 418 | public static final int NOTIFICATION_BUGREPORT_STARTED = 1; |
| 419 | |
| 420 | /** |
| 421 | * Notification type for a bugreport that has already been accepted to be shared, but is still |
| 422 | * being taken. |
| 423 | * |
| 424 | * @hide |
| 425 | */ |
| 426 | public static final int NOTIFICATION_BUGREPORT_ACCEPTED_NOT_FINISHED = 2; |
| 427 | |
| 428 | /** |
| 429 | * Notification type for a bugreport that has been taken and can be shared or declined. |
| 430 | * |
| 431 | * @hide |
| 432 | */ |
| 433 | public static final int NOTIFICATION_BUGREPORT_FINISHED_NOT_ACCEPTED = 3; |
| 434 | |
| 435 | /** |
Michal Karpinski | 8f010dd | 2016-06-21 15:05:53 +0100 | [diff] [blame] | 436 | * Default and maximum timeout in milliseconds after which unlocking with weak auth times out, |
| 437 | * i.e. the user has to use a strong authentication method like password, PIN or pattern. |
| 438 | * |
| 439 | * @hide |
| 440 | */ |
| 441 | public static final long DEFAULT_STRONG_AUTH_TIMEOUT_MS = 72 * 60 * 60 * 1000; // 72h |
| 442 | |
| 443 | /** |
Rubin Xu | a4f9dc1 | 2015-06-12 13:27:59 +0100 | [diff] [blame] | 444 | * A {@link android.os.Parcelable} extra of type {@link android.os.PersistableBundle} that |
Rubin Xu | 41f2ccb9 | 2015-08-05 16:29:13 +0100 | [diff] [blame] | 445 | * allows a mobile device management application or NFC programmer application which starts |
| 446 | * managed provisioning to pass data to the management application instance after provisioning. |
Rubin Xu | a4f9dc1 | 2015-06-12 13:27:59 +0100 | [diff] [blame] | 447 | * <p> |
| 448 | * If used with {@link #ACTION_PROVISION_MANAGED_PROFILE} it can be used by the application that |
| 449 | * sends the intent to pass data to itself on the newly created profile. |
| 450 | * If used with {@link #ACTION_PROVISION_MANAGED_DEVICE} it allows passing data to the same |
| 451 | * instance of the app on the primary user. |
Rubin Xu | 41f2ccb9 | 2015-08-05 16:29:13 +0100 | [diff] [blame] | 452 | * Starting from {@link android.os.Build.VERSION_CODES#M}, if used with |
| 453 | * {@link #MIME_TYPE_PROVISIONING_NFC} as part of NFC managed device provisioning, the NFC |
| 454 | * message should contain a stringified {@link java.util.Properties} instance, whose string |
| 455 | * properties will be converted into a {@link android.os.PersistableBundle} and passed to the |
| 456 | * management application after provisioning. |
| 457 | * |
Rubin Xu | a4f9dc1 | 2015-06-12 13:27:59 +0100 | [diff] [blame] | 458 | * <p> |
| 459 | * In both cases the application receives the data in |
Brian Carlstrom | f1fe51b | 2014-09-03 08:55:05 -0700 | [diff] [blame] | 460 | * {@link DeviceAdminReceiver#onProfileProvisioningComplete} via an intent with the action |
| 461 | * {@link DeviceAdminReceiver#ACTION_PROFILE_PROVISIONING_COMPLETE}. The bundle is not changed |
Rubin Xu | a4f9dc1 | 2015-06-12 13:27:59 +0100 | [diff] [blame] | 462 | * during the managed provisioning. |
Sander Alewijnse | 90f14bf | 2014-08-20 16:22:44 +0100 | [diff] [blame] | 463 | */ |
| 464 | public static final String EXTRA_PROVISIONING_ADMIN_EXTRAS_BUNDLE = |
Esteban Talavera | 37f0184 | 2014-09-05 10:50:57 +0100 | [diff] [blame] | 465 | "android.app.extra.PROVISIONING_ADMIN_EXTRAS_BUNDLE"; |
Sander Alewijnse | 90f14bf | 2014-08-20 16:22:44 +0100 | [diff] [blame] | 466 | |
| 467 | /** |
Sander Alewijnse | 1cc4ecc | 2014-06-23 19:56:52 +0100 | [diff] [blame] | 468 | * A String extra holding the package name of the mobile device management application that |
| 469 | * will be set as the profile owner or device owner. |
| 470 | * |
| 471 | * <p>If an application starts provisioning directly via an intent with action |
| 472 | * {@link #ACTION_PROVISION_MANAGED_PROFILE} this package has to match the package name of the |
| 473 | * application that started provisioning. The package will be set as profile owner in that case. |
| 474 | * |
Sander Alewijnse | 8c41156 | 2014-11-12 18:03:11 +0000 | [diff] [blame] | 475 | * <p>This package is set as device owner when device owner provisioning is started by an NFC |
| 476 | * message containing an NFC record with MIME type {@link #MIME_TYPE_PROVISIONING_NFC}. |
Nicolas Prevot | 1844025 | 2015-03-09 14:07:17 +0000 | [diff] [blame] | 477 | * |
| 478 | * <p> When this extra is set, the application must have exactly one device admin receiver. |
Robin Lee | 25e2645 | 2015-06-02 09:56:29 -0700 | [diff] [blame] | 479 | * This receiver will be set as the profile or device owner and active admin. |
Benjamin Franz | ea95624 | 2016-03-21 15:45:56 +0000 | [diff] [blame] | 480 | * |
Nicolas Prevot | 1844025 | 2015-03-09 14:07:17 +0000 | [diff] [blame] | 481 | * @see DeviceAdminReceiver |
| 482 | * @deprecated Use {@link #EXTRA_PROVISIONING_DEVICE_ADMIN_COMPONENT_NAME}. This extra is still |
Nicolas Prevot | 8f78d6a8 | 2015-08-21 11:06:31 +0100 | [diff] [blame] | 483 | * supported, but only if there is only one device admin receiver in the package that requires |
| 484 | * the permission {@link android.Manifest.permission#BIND_DEVICE_ADMIN}. |
Jessica Hummel | f72078b | 2014-03-06 16:13:12 +0000 | [diff] [blame] | 485 | */ |
Nicolas Prevot | 1844025 | 2015-03-09 14:07:17 +0000 | [diff] [blame] | 486 | @Deprecated |
Jessica Hummel | f72078b | 2014-03-06 16:13:12 +0000 | [diff] [blame] | 487 | public static final String EXTRA_PROVISIONING_DEVICE_ADMIN_PACKAGE_NAME |
Esteban Talavera | ef9c523 | 2014-09-08 13:51:18 +0100 | [diff] [blame] | 488 | = "android.app.extra.PROVISIONING_DEVICE_ADMIN_PACKAGE_NAME"; |
Jessica Hummel | f72078b | 2014-03-06 16:13:12 +0000 | [diff] [blame] | 489 | |
| 490 | /** |
Nicolas Prevot | 1844025 | 2015-03-09 14:07:17 +0000 | [diff] [blame] | 491 | * A ComponentName extra indicating the device admin receiver of the mobile device management |
| 492 | * application that will be set as the profile owner or device owner and active admin. |
| 493 | * |
| 494 | * <p>If an application starts provisioning directly via an intent with action |
Nicolas Prevot | 64bf7b2 | 2015-04-29 14:43:49 +0100 | [diff] [blame] | 495 | * {@link #ACTION_PROVISION_MANAGED_PROFILE} or |
| 496 | * {@link #ACTION_PROVISION_MANAGED_DEVICE} the package name of this |
| 497 | * component has to match the package name of the application that started provisioning. |
Nicolas Prevot | 1844025 | 2015-03-09 14:07:17 +0000 | [diff] [blame] | 498 | * |
| 499 | * <p>This component is set as device owner and active admin when device owner provisioning is |
Nicolas Prevot | 64bf7b2 | 2015-04-29 14:43:49 +0100 | [diff] [blame] | 500 | * started by an intent with action {@link #ACTION_PROVISION_MANAGED_DEVICE} or by an NFC |
| 501 | * message containing an NFC record with MIME type |
Benjamin Franz | ea95624 | 2016-03-21 15:45:56 +0000 | [diff] [blame] | 502 | * {@link #MIME_TYPE_PROVISIONING_NFC}. For the NFC record, the component name must be |
Rubin Xu | 44ef750b | 2015-03-23 16:51:33 +0000 | [diff] [blame] | 503 | * flattened to a string, via {@link ComponentName#flattenToShortString()}. |
Nicolas Prevot | 1844025 | 2015-03-09 14:07:17 +0000 | [diff] [blame] | 504 | * |
| 505 | * @see DeviceAdminReceiver |
| 506 | */ |
| 507 | public static final String EXTRA_PROVISIONING_DEVICE_ADMIN_COMPONENT_NAME |
| 508 | = "android.app.extra.PROVISIONING_DEVICE_ADMIN_COMPONENT_NAME"; |
| 509 | |
| 510 | /** |
Alexandra Gherghina | aaf2f3e | 2014-11-13 12:46:15 +0000 | [diff] [blame] | 511 | * An {@link android.accounts.Account} extra holding the account to migrate during managed |
| 512 | * profile provisioning. If the account supplied is present in the primary user, it will be |
| 513 | * copied, along with its credentials to the managed profile and removed from the primary user. |
| 514 | * |
| 515 | * Use with {@link #ACTION_PROVISION_MANAGED_PROFILE}. |
| 516 | */ |
| 517 | |
| 518 | public static final String EXTRA_PROVISIONING_ACCOUNT_TO_MIGRATE |
| 519 | = "android.app.extra.PROVISIONING_ACCOUNT_TO_MIGRATE"; |
| 520 | |
| 521 | /** |
Victor Chang | aa9cbc0 | 2016-12-05 20:50:57 +0000 | [diff] [blame] | 522 | * Boolean extra to indicate that the migrated account should be kept. This is used in |
| 523 | * conjunction with {@link #EXTRA_PROVISIONING_ACCOUNT_TO_MIGRATE}. If it's set to {@code true}, |
| 524 | * the account will not be removed from the primary user after it is migrated to the newly |
| 525 | * created user or profile. |
Victor Chang | 89ee279 | 2016-11-23 12:10:55 +0000 | [diff] [blame] | 526 | * |
| 527 | * <p> Defaults to {@code false} |
| 528 | * |
Victor Chang | aa9cbc0 | 2016-12-05 20:50:57 +0000 | [diff] [blame] | 529 | * <p> Use with {@link #ACTION_PROVISION_MANAGED_PROFILE} and |
| 530 | * {@link #EXTRA_PROVISIONING_ACCOUNT_TO_MIGRATE} |
Victor Chang | 89ee279 | 2016-11-23 12:10:55 +0000 | [diff] [blame] | 531 | */ |
| 532 | public static final String EXTRA_PROVISIONING_KEEP_ACCOUNT_ON_MIGRATION |
| 533 | = "android.app.extra.PROVISIONING_KEEP_ACCOUNT_ON_MIGRATION"; |
| 534 | |
| 535 | /** |
Jessica Hummel | e3da790 | 2014-08-20 15:20:11 +0100 | [diff] [blame] | 536 | * A String extra that, holds the email address of the account which a managed profile is |
| 537 | * created for. Used with {@link #ACTION_PROVISION_MANAGED_PROFILE} and |
| 538 | * {@link DeviceAdminReceiver#ACTION_PROFILE_PROVISIONING_COMPLETE}. |
Sander Alewijnse | 1cc4ecc | 2014-06-23 19:56:52 +0100 | [diff] [blame] | 539 | * |
Sander Alewijnse | 2b338a2 | 2014-09-12 12:28:40 +0100 | [diff] [blame] | 540 | * <p> This extra is part of the {@link #EXTRA_PROVISIONING_ADMIN_EXTRAS_BUNDLE}. |
| 541 | * |
Jessica Hummel | e3da790 | 2014-08-20 15:20:11 +0100 | [diff] [blame] | 542 | * <p> If the {@link #ACTION_PROVISION_MANAGED_PROFILE} intent that starts managed provisioning |
| 543 | * contains this extra, it is forwarded in the |
| 544 | * {@link DeviceAdminReceiver#ACTION_PROFILE_PROVISIONING_COMPLETE} intent to the mobile |
| 545 | * device management application that was set as the profile owner during provisioning. |
| 546 | * It is usually used to avoid that the user has to enter their email address twice. |
Nicolas Prevot | 07ac20b | 2014-05-27 15:37:45 +0100 | [diff] [blame] | 547 | */ |
Sander Alewijnse | 2b338a2 | 2014-09-12 12:28:40 +0100 | [diff] [blame] | 548 | public static final String EXTRA_PROVISIONING_EMAIL_ADDRESS |
| 549 | = "android.app.extra.PROVISIONING_EMAIL_ADDRESS"; |
Nicolas Prevot | 07ac20b | 2014-05-27 15:37:45 +0100 | [diff] [blame] | 550 | |
| 551 | /** |
Nicolas Prevot | cd2d859 | 2015-11-23 13:27:21 +0000 | [diff] [blame] | 552 | * A integer extra indicating the predominant color to show during the provisioning. |
| 553 | * Refer to {@link android.graphics.Color} for how the color is represented. |
Nicolas Prevot | caf11cd | 2015-11-19 10:58:35 +0000 | [diff] [blame] | 554 | * |
| 555 | * <p>Use with {@link #ACTION_PROVISION_MANAGED_PROFILE} or |
| 556 | * {@link #ACTION_PROVISION_MANAGED_DEVICE}. |
| 557 | */ |
| 558 | public static final String EXTRA_PROVISIONING_MAIN_COLOR = |
| 559 | "android.app.extra.PROVISIONING_MAIN_COLOR"; |
| 560 | |
| 561 | /** |
Sander Alewijnse | 8c41156 | 2014-11-12 18:03:11 +0000 | [diff] [blame] | 562 | * A Boolean extra that can be used by the mobile device management application to skip the |
Robin Lee | 25e2645 | 2015-06-02 09:56:29 -0700 | [diff] [blame] | 563 | * disabling of system apps during provisioning when set to {@code true}. |
Sander Alewijnse | 8c41156 | 2014-11-12 18:03:11 +0000 | [diff] [blame] | 564 | * |
Nicolas Prevot | 64bf7b2 | 2015-04-29 14:43:49 +0100 | [diff] [blame] | 565 | * <p>Use in an NFC record with {@link #MIME_TYPE_PROVISIONING_NFC} or an intent with action |
| 566 | * {@link #ACTION_PROVISION_MANAGED_DEVICE} that starts device owner provisioning. |
Sander Alewijnse | 8c41156 | 2014-11-12 18:03:11 +0000 | [diff] [blame] | 567 | */ |
Sander Alewijnse | 5a14425 | 2014-11-18 13:25:04 +0000 | [diff] [blame] | 568 | public static final String EXTRA_PROVISIONING_LEAVE_ALL_SYSTEM_APPS_ENABLED = |
| 569 | "android.app.extra.PROVISIONING_LEAVE_ALL_SYSTEM_APPS_ENABLED"; |
Sander Alewijnse | 8c41156 | 2014-11-12 18:03:11 +0000 | [diff] [blame] | 570 | |
| 571 | /** |
Sander Alewijnse | 1cc4ecc | 2014-06-23 19:56:52 +0100 | [diff] [blame] | 572 | * A String extra holding the time zone {@link android.app.AlarmManager} that the device |
| 573 | * will be set to. |
| 574 | * |
Sander Alewijnse | 8c41156 | 2014-11-12 18:03:11 +0000 | [diff] [blame] | 575 | * <p>Use in an NFC record with {@link #MIME_TYPE_PROVISIONING_NFC} that starts device owner |
| 576 | * provisioning via an NFC bump. |
Sander Alewijnse | 1cc4ecc | 2014-06-23 19:56:52 +0100 | [diff] [blame] | 577 | */ |
| 578 | public static final String EXTRA_PROVISIONING_TIME_ZONE |
Esteban Talavera | 37f0184 | 2014-09-05 10:50:57 +0100 | [diff] [blame] | 579 | = "android.app.extra.PROVISIONING_TIME_ZONE"; |
Sander Alewijnse | 1cc4ecc | 2014-06-23 19:56:52 +0100 | [diff] [blame] | 580 | |
| 581 | /** |
Esteban Talavera | d469a0b | 2014-08-20 13:54:25 +0100 | [diff] [blame] | 582 | * A Long extra holding the wall clock time (in milliseconds) to be set on the device's |
| 583 | * {@link android.app.AlarmManager}. |
Sander Alewijnse | 1cc4ecc | 2014-06-23 19:56:52 +0100 | [diff] [blame] | 584 | * |
Sander Alewijnse | 8c41156 | 2014-11-12 18:03:11 +0000 | [diff] [blame] | 585 | * <p>Use in an NFC record with {@link #MIME_TYPE_PROVISIONING_NFC} that starts device owner |
| 586 | * provisioning via an NFC bump. |
Sander Alewijnse | 1cc4ecc | 2014-06-23 19:56:52 +0100 | [diff] [blame] | 587 | */ |
| 588 | public static final String EXTRA_PROVISIONING_LOCAL_TIME |
Esteban Talavera | 37f0184 | 2014-09-05 10:50:57 +0100 | [diff] [blame] | 589 | = "android.app.extra.PROVISIONING_LOCAL_TIME"; |
Sander Alewijnse | 1cc4ecc | 2014-06-23 19:56:52 +0100 | [diff] [blame] | 590 | |
| 591 | /** |
| 592 | * A String extra holding the {@link java.util.Locale} that the device will be set to. |
| 593 | * Format: xx_yy, where xx is the language code, and yy the country code. |
| 594 | * |
Sander Alewijnse | 8c41156 | 2014-11-12 18:03:11 +0000 | [diff] [blame] | 595 | * <p>Use in an NFC record with {@link #MIME_TYPE_PROVISIONING_NFC} that starts device owner |
| 596 | * provisioning via an NFC bump. |
Sander Alewijnse | 1cc4ecc | 2014-06-23 19:56:52 +0100 | [diff] [blame] | 597 | */ |
| 598 | public static final String EXTRA_PROVISIONING_LOCALE |
Esteban Talavera | 37f0184 | 2014-09-05 10:50:57 +0100 | [diff] [blame] | 599 | = "android.app.extra.PROVISIONING_LOCALE"; |
Sander Alewijnse | 1cc4ecc | 2014-06-23 19:56:52 +0100 | [diff] [blame] | 600 | |
| 601 | /** |
| 602 | * A String extra holding the ssid of the wifi network that should be used during nfc device |
| 603 | * owner provisioning for downloading the mobile device management application. |
| 604 | * |
Sander Alewijnse | 8c41156 | 2014-11-12 18:03:11 +0000 | [diff] [blame] | 605 | * <p>Use in an NFC record with {@link #MIME_TYPE_PROVISIONING_NFC} that starts device owner |
| 606 | * provisioning via an NFC bump. |
Sander Alewijnse | 1cc4ecc | 2014-06-23 19:56:52 +0100 | [diff] [blame] | 607 | */ |
| 608 | public static final String EXTRA_PROVISIONING_WIFI_SSID |
Esteban Talavera | 37f0184 | 2014-09-05 10:50:57 +0100 | [diff] [blame] | 609 | = "android.app.extra.PROVISIONING_WIFI_SSID"; |
Sander Alewijnse | 1cc4ecc | 2014-06-23 19:56:52 +0100 | [diff] [blame] | 610 | |
| 611 | /** |
| 612 | * A boolean extra indicating whether the wifi network in {@link #EXTRA_PROVISIONING_WIFI_SSID} |
| 613 | * is hidden or not. |
| 614 | * |
Sander Alewijnse | 8c41156 | 2014-11-12 18:03:11 +0000 | [diff] [blame] | 615 | * <p>Use in an NFC record with {@link #MIME_TYPE_PROVISIONING_NFC} that starts device owner |
| 616 | * provisioning via an NFC bump. |
Sander Alewijnse | 1cc4ecc | 2014-06-23 19:56:52 +0100 | [diff] [blame] | 617 | */ |
| 618 | public static final String EXTRA_PROVISIONING_WIFI_HIDDEN |
Esteban Talavera | 37f0184 | 2014-09-05 10:50:57 +0100 | [diff] [blame] | 619 | = "android.app.extra.PROVISIONING_WIFI_HIDDEN"; |
Sander Alewijnse | 1cc4ecc | 2014-06-23 19:56:52 +0100 | [diff] [blame] | 620 | |
| 621 | /** |
| 622 | * A String extra indicating the security type of the wifi network in |
Mahaver Chopra | 76b08a9 | 2015-10-08 17:58:45 +0100 | [diff] [blame] | 623 | * {@link #EXTRA_PROVISIONING_WIFI_SSID} and could be one of {@code NONE}, {@code WPA} or |
| 624 | * {@code WEP}. |
Sander Alewijnse | 1cc4ecc | 2014-06-23 19:56:52 +0100 | [diff] [blame] | 625 | * |
Sander Alewijnse | 8c41156 | 2014-11-12 18:03:11 +0000 | [diff] [blame] | 626 | * <p>Use in an NFC record with {@link #MIME_TYPE_PROVISIONING_NFC} that starts device owner |
| 627 | * provisioning via an NFC bump. |
Sander Alewijnse | 1cc4ecc | 2014-06-23 19:56:52 +0100 | [diff] [blame] | 628 | */ |
| 629 | public static final String EXTRA_PROVISIONING_WIFI_SECURITY_TYPE |
Esteban Talavera | 37f0184 | 2014-09-05 10:50:57 +0100 | [diff] [blame] | 630 | = "android.app.extra.PROVISIONING_WIFI_SECURITY_TYPE"; |
Sander Alewijnse | 1cc4ecc | 2014-06-23 19:56:52 +0100 | [diff] [blame] | 631 | |
| 632 | /** |
| 633 | * A String extra holding the password of the wifi network in |
| 634 | * {@link #EXTRA_PROVISIONING_WIFI_SSID}. |
| 635 | * |
Sander Alewijnse | 8c41156 | 2014-11-12 18:03:11 +0000 | [diff] [blame] | 636 | * <p>Use in an NFC record with {@link #MIME_TYPE_PROVISIONING_NFC} that starts device owner |
| 637 | * provisioning via an NFC bump. |
Sander Alewijnse | 1cc4ecc | 2014-06-23 19:56:52 +0100 | [diff] [blame] | 638 | */ |
| 639 | public static final String EXTRA_PROVISIONING_WIFI_PASSWORD |
Esteban Talavera | 37f0184 | 2014-09-05 10:50:57 +0100 | [diff] [blame] | 640 | = "android.app.extra.PROVISIONING_WIFI_PASSWORD"; |
Sander Alewijnse | 1cc4ecc | 2014-06-23 19:56:52 +0100 | [diff] [blame] | 641 | |
| 642 | /** |
| 643 | * A String extra holding the proxy host for the wifi network in |
| 644 | * {@link #EXTRA_PROVISIONING_WIFI_SSID}. |
| 645 | * |
Sander Alewijnse | 8c41156 | 2014-11-12 18:03:11 +0000 | [diff] [blame] | 646 | * <p>Use in an NFC record with {@link #MIME_TYPE_PROVISIONING_NFC} that starts device owner |
| 647 | * provisioning via an NFC bump. |
Sander Alewijnse | 1cc4ecc | 2014-06-23 19:56:52 +0100 | [diff] [blame] | 648 | */ |
| 649 | public static final String EXTRA_PROVISIONING_WIFI_PROXY_HOST |
Esteban Talavera | 37f0184 | 2014-09-05 10:50:57 +0100 | [diff] [blame] | 650 | = "android.app.extra.PROVISIONING_WIFI_PROXY_HOST"; |
Sander Alewijnse | 1cc4ecc | 2014-06-23 19:56:52 +0100 | [diff] [blame] | 651 | |
| 652 | /** |
| 653 | * An int extra holding the proxy port for the wifi network in |
| 654 | * {@link #EXTRA_PROVISIONING_WIFI_SSID}. |
| 655 | * |
Sander Alewijnse | 8c41156 | 2014-11-12 18:03:11 +0000 | [diff] [blame] | 656 | * <p>Use in an NFC record with {@link #MIME_TYPE_PROVISIONING_NFC} that starts device owner |
| 657 | * provisioning via an NFC bump. |
Sander Alewijnse | 1cc4ecc | 2014-06-23 19:56:52 +0100 | [diff] [blame] | 658 | */ |
| 659 | public static final String EXTRA_PROVISIONING_WIFI_PROXY_PORT |
Esteban Talavera | 37f0184 | 2014-09-05 10:50:57 +0100 | [diff] [blame] | 660 | = "android.app.extra.PROVISIONING_WIFI_PROXY_PORT"; |
Sander Alewijnse | 1cc4ecc | 2014-06-23 19:56:52 +0100 | [diff] [blame] | 661 | |
| 662 | /** |
| 663 | * A String extra holding the proxy bypass for the wifi network in |
| 664 | * {@link #EXTRA_PROVISIONING_WIFI_SSID}. |
| 665 | * |
Sander Alewijnse | 8c41156 | 2014-11-12 18:03:11 +0000 | [diff] [blame] | 666 | * <p>Use in an NFC record with {@link #MIME_TYPE_PROVISIONING_NFC} that starts device owner |
| 667 | * provisioning via an NFC bump. |
Sander Alewijnse | 1cc4ecc | 2014-06-23 19:56:52 +0100 | [diff] [blame] | 668 | */ |
| 669 | public static final String EXTRA_PROVISIONING_WIFI_PROXY_BYPASS |
Esteban Talavera | 37f0184 | 2014-09-05 10:50:57 +0100 | [diff] [blame] | 670 | = "android.app.extra.PROVISIONING_WIFI_PROXY_BYPASS"; |
Sander Alewijnse | 1cc4ecc | 2014-06-23 19:56:52 +0100 | [diff] [blame] | 671 | |
| 672 | /** |
| 673 | * A String extra holding the proxy auto-config (PAC) URL for the wifi network in |
| 674 | * {@link #EXTRA_PROVISIONING_WIFI_SSID}. |
| 675 | * |
Sander Alewijnse | 8c41156 | 2014-11-12 18:03:11 +0000 | [diff] [blame] | 676 | * <p>Use in an NFC record with {@link #MIME_TYPE_PROVISIONING_NFC} that starts device owner |
| 677 | * provisioning via an NFC bump. |
Sander Alewijnse | 1cc4ecc | 2014-06-23 19:56:52 +0100 | [diff] [blame] | 678 | */ |
| 679 | public static final String EXTRA_PROVISIONING_WIFI_PAC_URL |
Esteban Talavera | 37f0184 | 2014-09-05 10:50:57 +0100 | [diff] [blame] | 680 | = "android.app.extra.PROVISIONING_WIFI_PAC_URL"; |
Sander Alewijnse | 1cc4ecc | 2014-06-23 19:56:52 +0100 | [diff] [blame] | 681 | |
| 682 | /** |
| 683 | * A String extra holding a url that specifies the download location of the device admin |
| 684 | * package. When not provided it is assumed that the device admin package is already installed. |
| 685 | * |
Sander Alewijnse | 8c41156 | 2014-11-12 18:03:11 +0000 | [diff] [blame] | 686 | * <p>Use in an NFC record with {@link #MIME_TYPE_PROVISIONING_NFC} that starts device owner |
| 687 | * provisioning via an NFC bump. |
Sander Alewijnse | 1cc4ecc | 2014-06-23 19:56:52 +0100 | [diff] [blame] | 688 | */ |
| 689 | public static final String EXTRA_PROVISIONING_DEVICE_ADMIN_PACKAGE_DOWNLOAD_LOCATION |
Esteban Talavera | 37f0184 | 2014-09-05 10:50:57 +0100 | [diff] [blame] | 690 | = "android.app.extra.PROVISIONING_DEVICE_ADMIN_PACKAGE_DOWNLOAD_LOCATION"; |
Sander Alewijnse | 1cc4ecc | 2014-06-23 19:56:52 +0100 | [diff] [blame] | 691 | |
| 692 | /** |
Victor Chang | 38cfd9c | 2017-01-04 17:41:11 +0000 | [diff] [blame] | 693 | * A String extra holding the localized name of the organization under management. |
| 694 | * |
| 695 | * The name is displayed only during provisioning. |
| 696 | * |
| 697 | * <p>Use in an intent with action {@link #ACTION_PROVISION_MANAGED_DEVICE_FROM_TRUSTED_SOURCE} |
| 698 | * |
| 699 | * @hide |
| 700 | */ |
| 701 | @SystemApi |
| 702 | public static final String EXTRA_PROVISIONING_ORGANIZATION_NAME = |
| 703 | "android.app.extra.PROVISIONING_ORGANIZATION_NAME"; |
| 704 | |
| 705 | /** |
| 706 | * A String extra holding a url to the website of the device's provider. The website can be |
| 707 | * opened in a browser during provisioning. |
| 708 | * |
| 709 | * <p>Use in an intent with action {@link #ACTION_PROVISION_MANAGED_DEVICE_FROM_TRUSTED_SOURCE} |
| 710 | * |
| 711 | * @hide |
| 712 | */ |
| 713 | @SystemApi |
| 714 | public static final String EXTRA_PROVISIONING_SUPPORT_URL = |
| 715 | "android.app.extra.PROVISIONING_SUPPORT_URL"; |
| 716 | |
| 717 | /** |
| 718 | * A String extra holding the localized name of the device admin package. It should be the same |
| 719 | * as the app label of the package. |
| 720 | * |
| 721 | * <p>Use in an intent with action {@link #ACTION_PROVISION_MANAGED_DEVICE_FROM_TRUSTED_SOURCE} |
| 722 | * |
| 723 | * @hide |
| 724 | */ |
| 725 | @SystemApi |
| 726 | public static final String EXTRA_PROVISIONING_DEVICE_ADMIN_PACKAGE_LABEL = |
| 727 | "android.app.extra.PROVISIONING_DEVICE_ADMIN_PACKAGE_LABEL"; |
| 728 | |
| 729 | /** |
| 730 | * A {@link Uri} extra pointing to the app icon of device admin package. This image will be |
| 731 | * shown during the provisioning. |
| 732 | * <h5>The following URI schemes are accepted:</h5> |
| 733 | * <ul> |
| 734 | * <li>content ({@link android.content.ContentResolver#SCHEME_CONTENT})</li> |
| 735 | * <li>android.resource ({@link android.content.ContentResolver#SCHEME_ANDROID_RESOURCE})</li> |
| 736 | * </ul> |
| 737 | * |
| 738 | * <p> It is the responsibility of the caller to provide an image with a reasonable |
| 739 | * pixel density for the device. |
| 740 | * |
| 741 | * <p> If a content: URI is passed, the intent should have the flag |
| 742 | * {@link Intent#FLAG_GRANT_READ_URI_PERMISSION} and the uri should be added to the |
| 743 | * {@link android.content.ClipData} of the intent too. |
| 744 | * |
| 745 | * <p>Use in an intent with action {@link #ACTION_PROVISION_MANAGED_DEVICE_FROM_TRUSTED_SOURCE} |
| 746 | * |
| 747 | * @hide |
| 748 | */ |
| 749 | @SystemApi |
| 750 | public static final String EXTRA_PROVISIONING_DEVICE_ADMIN_PACKAGE_ICON_URI = |
| 751 | "android.app.extra.PROVISIONING_DEVICE_ADMIN_PACKAGE_ICON_URI"; |
| 752 | |
| 753 | /** |
Julia Reynolds | c173174 | 2015-03-19 14:56:28 -0400 | [diff] [blame] | 754 | * An int extra holding a minimum required version code for the device admin package. If the |
| 755 | * device admin is already installed on the device, it will only be re-downloaded from |
| 756 | * {@link #EXTRA_PROVISIONING_DEVICE_ADMIN_PACKAGE_DOWNLOAD_LOCATION} if the version of the |
| 757 | * installed package is less than this version code. |
| 758 | * |
Craig Lafayette | 3cc72ba | 2015-06-26 11:51:04 -0400 | [diff] [blame] | 759 | * <p>Use in an NFC record with {@link #MIME_TYPE_PROVISIONING_NFC} that starts device owner |
Julia Reynolds | c173174 | 2015-03-19 14:56:28 -0400 | [diff] [blame] | 760 | * provisioning via an NFC bump. |
| 761 | */ |
| 762 | public static final String EXTRA_PROVISIONING_DEVICE_ADMIN_MINIMUM_VERSION_CODE |
| 763 | = "android.app.extra.PROVISIONING_DEVICE_ADMIN_MINIMUM_VERSION_CODE"; |
| 764 | |
| 765 | /** |
Sander Alewijnse | 681bce9 | 2014-07-24 16:46:26 +0100 | [diff] [blame] | 766 | * A String extra holding a http cookie header which should be used in the http request to the |
| 767 | * url specified in {@link #EXTRA_PROVISIONING_DEVICE_ADMIN_PACKAGE_DOWNLOAD_LOCATION}. |
| 768 | * |
Sander Alewijnse | 8c41156 | 2014-11-12 18:03:11 +0000 | [diff] [blame] | 769 | * <p>Use in an NFC record with {@link #MIME_TYPE_PROVISIONING_NFC} that starts device owner |
| 770 | * provisioning via an NFC bump. |
Sander Alewijnse | 681bce9 | 2014-07-24 16:46:26 +0100 | [diff] [blame] | 771 | */ |
| 772 | public static final String EXTRA_PROVISIONING_DEVICE_ADMIN_PACKAGE_DOWNLOAD_COOKIE_HEADER |
Esteban Talavera | 37f0184 | 2014-09-05 10:50:57 +0100 | [diff] [blame] | 773 | = "android.app.extra.PROVISIONING_DEVICE_ADMIN_PACKAGE_DOWNLOAD_COOKIE_HEADER"; |
Sander Alewijnse | 681bce9 | 2014-07-24 16:46:26 +0100 | [diff] [blame] | 774 | |
| 775 | /** |
Rubin Xu | d92e757 | 2015-05-18 17:01:13 +0100 | [diff] [blame] | 776 | * A String extra holding the URL-safe base64 encoded SHA-256 or SHA-1 hash (see notes below) of |
| 777 | * the file at download location specified in |
| 778 | * {@link #EXTRA_PROVISIONING_DEVICE_ADMIN_PACKAGE_DOWNLOAD_LOCATION}. |
Sander Alewijnse | e4f878cb | 2015-04-14 10:49:17 +0100 | [diff] [blame] | 779 | * |
Benjamin Franz | ea95624 | 2016-03-21 15:45:56 +0000 | [diff] [blame] | 780 | * <p>Either this extra or {@link #EXTRA_PROVISIONING_DEVICE_ADMIN_SIGNATURE_CHECKSUM} must be |
| 781 | * present. The provided checksum must match the checksum of the file at the download |
Sander Alewijnse | e4f878cb | 2015-04-14 10:49:17 +0100 | [diff] [blame] | 782 | * location. If the checksum doesn't match an error will be shown to the user and the user will |
| 783 | * be asked to factory reset the device. |
Sander Alewijnse | 1cc4ecc | 2014-06-23 19:56:52 +0100 | [diff] [blame] | 784 | * |
Sander Alewijnse | 8c41156 | 2014-11-12 18:03:11 +0000 | [diff] [blame] | 785 | * <p>Use in an NFC record with {@link #MIME_TYPE_PROVISIONING_NFC} that starts device owner |
| 786 | * provisioning via an NFC bump. |
Rubin Xu | d92e757 | 2015-05-18 17:01:13 +0100 | [diff] [blame] | 787 | * |
| 788 | * <p><strong>Note:</strong> for devices running {@link android.os.Build.VERSION_CODES#LOLLIPOP} |
| 789 | * and {@link android.os.Build.VERSION_CODES#LOLLIPOP_MR1} only SHA-1 hash is supported. |
Dianne Hackborn | 0e3de6c | 2015-07-29 15:20:21 -0700 | [diff] [blame] | 790 | * Starting from {@link android.os.Build.VERSION_CODES#M}, this parameter accepts SHA-256 in |
Rubin Xu | d92e757 | 2015-05-18 17:01:13 +0100 | [diff] [blame] | 791 | * addition to SHA-1. Support for SHA-1 is likely to be removed in future OS releases. |
Sander Alewijnse | 1cc4ecc | 2014-06-23 19:56:52 +0100 | [diff] [blame] | 792 | */ |
| 793 | public static final String EXTRA_PROVISIONING_DEVICE_ADMIN_PACKAGE_CHECKSUM |
Esteban Talavera | 37f0184 | 2014-09-05 10:50:57 +0100 | [diff] [blame] | 794 | = "android.app.extra.PROVISIONING_DEVICE_ADMIN_PACKAGE_CHECKSUM"; |
Sander Alewijnse | 1cc4ecc | 2014-06-23 19:56:52 +0100 | [diff] [blame] | 795 | |
| 796 | /** |
Rubin Xu | d92e757 | 2015-05-18 17:01:13 +0100 | [diff] [blame] | 797 | * A String extra holding the URL-safe base64 encoded SHA-256 checksum of any signature of the |
Sander Alewijnse | e4f878cb | 2015-04-14 10:49:17 +0100 | [diff] [blame] | 798 | * android package archive at the download location specified in {@link |
| 799 | * #EXTRA_PROVISIONING_DEVICE_ADMIN_PACKAGE_DOWNLOAD_LOCATION}. |
| 800 | * |
Rubin Xu | 5c82d2c | 2015-06-02 09:29:46 +0100 | [diff] [blame] | 801 | * <p>The signatures of an android package archive can be obtained using |
Sander Alewijnse | e4f878cb | 2015-04-14 10:49:17 +0100 | [diff] [blame] | 802 | * {@link android.content.pm.PackageManager#getPackageArchiveInfo} with flag |
| 803 | * {@link android.content.pm.PackageManager#GET_SIGNATURES}. |
| 804 | * |
Benjamin Franz | ea95624 | 2016-03-21 15:45:56 +0000 | [diff] [blame] | 805 | * <p>Either this extra or {@link #EXTRA_PROVISIONING_DEVICE_ADMIN_PACKAGE_CHECKSUM} must be |
| 806 | * present. The provided checksum must match the checksum of any signature of the file at |
Sander Alewijnse | e4f878cb | 2015-04-14 10:49:17 +0100 | [diff] [blame] | 807 | * the download location. If the checksum does not match an error will be shown to the user and |
| 808 | * the user will be asked to factory reset the device. |
| 809 | * |
| 810 | * <p>Use in an NFC record with {@link #MIME_TYPE_PROVISIONING_NFC} that starts device owner |
| 811 | * provisioning via an NFC bump. |
| 812 | */ |
Rubin Xu | 5c82d2c | 2015-06-02 09:29:46 +0100 | [diff] [blame] | 813 | public static final String EXTRA_PROVISIONING_DEVICE_ADMIN_SIGNATURE_CHECKSUM |
| 814 | = "android.app.extra.PROVISIONING_DEVICE_ADMIN_SIGNATURE_CHECKSUM"; |
Sander Alewijnse | e4f878cb | 2015-04-14 10:49:17 +0100 | [diff] [blame] | 815 | |
| 816 | /** |
Alexandra Gherghina | db4bc57 | 2015-01-08 12:17:40 +0000 | [diff] [blame] | 817 | * Broadcast Action: This broadcast is sent to indicate that provisioning of a managed profile |
| 818 | * has completed successfully. |
| 819 | * |
| 820 | * <p>The broadcast is limited to the primary profile, to the app specified in the provisioning |
Nicolas Prevot | ebe2d99 | 2015-05-12 18:14:53 -0700 | [diff] [blame] | 821 | * intent with action {@link #ACTION_PROVISION_MANAGED_PROFILE}. |
Alexandra Gherghina | db4bc57 | 2015-01-08 12:17:40 +0000 | [diff] [blame] | 822 | * |
Mahaver | 7074caf | 2016-11-29 20:52:18 +0000 | [diff] [blame] | 823 | * <p>This intent will contain the following extras |
| 824 | * <ul> |
| 825 | * <li>{@link Intent#EXTRA_USER}, corresponds to the {@link UserHandle} of the managed |
| 826 | * profile.</li> |
| 827 | * <li>{@link #EXTRA_PROVISIONING_ACCOUNT_TO_MIGRATE}, corresponds to the account requested to |
| 828 | * be migrated at provisioning time, if any.</li> |
| 829 | * </ul> |
Alexandra Gherghina | db4bc57 | 2015-01-08 12:17:40 +0000 | [diff] [blame] | 830 | */ |
| 831 | @SdkConstant(SdkConstantType.ACTIVITY_INTENT_ACTION) |
| 832 | public static final String ACTION_MANAGED_PROFILE_PROVISIONED |
| 833 | = "android.app.action.MANAGED_PROFILE_PROVISIONED"; |
| 834 | |
| 835 | /** |
Mahaver Chopra | 3c58cfe | 2016-11-01 21:25:59 +0000 | [diff] [blame] | 836 | * Activity action: This activity action is sent to indicate that provisioning of a managed |
| 837 | * profile or managed device has completed successfully. It'll be sent at the same time as |
| 838 | * {@link DeviceAdminReceiver#ACTION_PROFILE_PROVISIONING_COMPLETE} broadcast but this will be |
| 839 | * delivered faster as it's an activity intent. |
| 840 | * |
| 841 | * <p>The intent is only sent to the application on the profile that requested provisioning. In |
| 842 | * the device owner case the profile is the primary user. |
| 843 | * |
| 844 | * @see #ACTION_PROVISION_MANAGED_PROFILE |
| 845 | * @see #ACTION_PROVISION_MANAGED_DEVICE |
| 846 | */ |
| 847 | @SdkConstant(SdkConstantType.ACTIVITY_INTENT_ACTION) |
| 848 | public static final String ACTION_PROVISIONING_SUCCESSFUL = |
| 849 | "android.app.action.PROVISIONING_SUCCESSFUL"; |
| 850 | |
| 851 | /** |
Benjamin Franz | ea95624 | 2016-03-21 15:45:56 +0000 | [diff] [blame] | 852 | * A boolean extra indicating whether device encryption can be skipped as part of device owner |
| 853 | * or managed profile provisioning. |
Julia Reynolds | a9ec70b | 2015-02-02 09:54:26 -0500 | [diff] [blame] | 854 | * |
Craig Lafayette | 3cc72ba | 2015-06-26 11:51:04 -0400 | [diff] [blame] | 855 | * <p>Use in an NFC record with {@link #MIME_TYPE_PROVISIONING_NFC} or an intent with action |
Nicolas Prevot | 64bf7b2 | 2015-04-29 14:43:49 +0100 | [diff] [blame] | 856 | * {@link #ACTION_PROVISION_MANAGED_DEVICE} that starts device owner provisioning. |
Benjamin Franz | ea95624 | 2016-03-21 15:45:56 +0000 | [diff] [blame] | 857 | * |
| 858 | * <p>From {@link android.os.Build.VERSION_CODES#N} onwards, this is also supported for an |
| 859 | * intent with action {@link #ACTION_PROVISION_MANAGED_PROFILE}. |
Julia Reynolds | a9ec70b | 2015-02-02 09:54:26 -0500 | [diff] [blame] | 860 | */ |
| 861 | public static final String EXTRA_PROVISIONING_SKIP_ENCRYPTION = |
| 862 | "android.app.extra.PROVISIONING_SKIP_ENCRYPTION"; |
| 863 | |
| 864 | /** |
Nicolas Prevot | 8b7991c | 2015-11-12 17:40:12 +0000 | [diff] [blame] | 865 | * A {@link Uri} extra pointing to a logo image. This image will be shown during the |
| 866 | * provisioning. If this extra is not passed, a default image will be shown. |
| 867 | * <h5>The following URI schemes are accepted:</h5> |
| 868 | * <ul> |
| 869 | * <li>content ({@link android.content.ContentResolver#SCHEME_CONTENT})</li> |
| 870 | * <li>android.resource ({@link android.content.ContentResolver#SCHEME_ANDROID_RESOURCE})</li> |
| 871 | * </ul> |
| 872 | * |
Victor Chang | c10f669 | 2016-12-09 15:24:00 +0000 | [diff] [blame] | 873 | * <p> It is the responsibility of the caller to provide an image with a reasonable |
Victor Chang | 38cfd9c | 2017-01-04 17:41:11 +0000 | [diff] [blame] | 874 | * pixel density for the device. |
Nicolas Prevot | 8b7991c | 2015-11-12 17:40:12 +0000 | [diff] [blame] | 875 | * |
| 876 | * <p> If a content: URI is passed, the intent should have the flag |
| 877 | * {@link Intent#FLAG_GRANT_READ_URI_PERMISSION} and the uri should be added to the |
| 878 | * {@link android.content.ClipData} of the intent too. |
| 879 | * |
| 880 | * <p>Use in an intent with action {@link #ACTION_PROVISION_MANAGED_PROFILE} or |
| 881 | * {@link #ACTION_PROVISION_MANAGED_DEVICE} |
| 882 | */ |
| 883 | public static final String EXTRA_PROVISIONING_LOGO_URI = |
| 884 | "android.app.extra.PROVISIONING_LOGO_URI"; |
| 885 | |
| 886 | /** |
Victor Chang | c10f669 | 2016-12-09 15:24:00 +0000 | [diff] [blame] | 887 | * A {@link Bundle}[] extra consisting of list of disclaimer headers and disclaimer contents. |
| 888 | * Each {@link Bundle} must have both {@link #EXTRA_PROVISIONING_DISCLAIMER_HEADER} |
| 889 | * as disclaimer header, and {@link #EXTRA_PROVISIONING_DISCLAIMER_CONTENT} as disclaimer |
| 890 | * content. |
| 891 | * |
| 892 | * <p> The extra typically contains one disclaimer from the company of mobile device |
| 893 | * management application (MDM), and one disclaimer from the organization. |
| 894 | * |
| 895 | * <p> Call {@link Bundle#putParcelableArray(String, Parcelable[])} to put the {@link Bundle}[] |
| 896 | * |
| 897 | * <p> Maximum 3 key-value pairs can be specified. The rest will be ignored. |
| 898 | * |
| 899 | * <p> Use in an intent with action {@link #ACTION_PROVISION_MANAGED_PROFILE} or |
| 900 | * {@link #ACTION_PROVISION_MANAGED_DEVICE} |
| 901 | */ |
| 902 | public static final String EXTRA_PROVISIONING_DISCLAIMERS = |
| 903 | "android.app.extra.PROVISIONING_DISCLAIMERS"; |
| 904 | |
| 905 | /** |
| 906 | * A String extra of localized disclaimer header. |
| 907 | * |
| 908 | * <p> The extra is typically the company name of mobile device management application (MDM) |
| 909 | * or the organization name. |
| 910 | * |
| 911 | * <p> Use in Bundle {@link #EXTRA_PROVISIONING_DISCLAIMERS} |
| 912 | */ |
| 913 | public static final String EXTRA_PROVISIONING_DISCLAIMER_HEADER = |
| 914 | "android.app.extra.PROVISIONING_DISCLAIMER_HEADER"; |
| 915 | |
| 916 | /** |
| 917 | * A {@link Uri} extra pointing to disclaimer content. |
| 918 | * |
| 919 | * <h5>The following URI schemes are accepted:</h5> |
| 920 | * <ul> |
| 921 | * <li>content ({@link android.content.ContentResolver#SCHEME_CONTENT})</li> |
| 922 | * <li>android.resource ({@link android.content.ContentResolver#SCHEME_ANDROID_RESOURCE})</li> |
| 923 | * </ul> |
| 924 | * |
| 925 | * <p> Styled text is supported in the disclaimer content. The content is parsed by |
| 926 | * {@link android.text.Html#fromHtml(String)} and displayed in a |
| 927 | * {@link android.widget.TextView}. |
| 928 | * |
| 929 | * <p> If a <code>content:</code> URI is passed, URI is passed, the intent should have the flag |
| 930 | * {@link Intent#FLAG_GRANT_READ_URI_PERMISSION} and the uri should be added to the |
| 931 | * {@link android.content.ClipData} of the intent too. |
| 932 | * |
| 933 | * <p> Use in Bundle {@link #EXTRA_PROVISIONING_DISCLAIMERS} |
| 934 | */ |
| 935 | public static final String EXTRA_PROVISIONING_DISCLAIMER_CONTENT = |
| 936 | "android.app.extra.PROVISIONING_DISCLAIMER_CONTENT"; |
| 937 | |
| 938 | /** |
Alan Treadway | 94de8c8 | 2016-01-11 10:25:23 +0000 | [diff] [blame] | 939 | * A boolean extra indicating if user setup should be skipped, for when provisioning is started |
| 940 | * during setup-wizard. |
| 941 | * |
| 942 | * <p>If unspecified, defaults to {@code true} to match the behavior in |
| 943 | * {@link android.os.Build.VERSION_CODES#M} and earlier. |
| 944 | * |
Alan Treadway | 1a538d0 | 2016-01-18 16:42:30 +0000 | [diff] [blame] | 945 | * <p>Use in an intent with action {@link #ACTION_PROVISION_MANAGED_DEVICE} or |
| 946 | * {@link #ACTION_PROVISION_MANAGED_USER}. |
Alan Treadway | 94de8c8 | 2016-01-11 10:25:23 +0000 | [diff] [blame] | 947 | * |
| 948 | * @hide |
| 949 | */ |
| 950 | public static final String EXTRA_PROVISIONING_SKIP_USER_SETUP = |
| 951 | "android.app.extra.PROVISIONING_SKIP_USER_SETUP"; |
| 952 | |
| 953 | /** |
Victor Chang | 51d84f9 | 2016-11-16 12:22:56 +0000 | [diff] [blame] | 954 | * A boolean extra indicating if the user consent steps from the provisioning flow should be |
| 955 | * skipped. If unspecified, defaults to {@code false}. |
| 956 | * |
| 957 | * It can only be used by an existing device owner trying to create a managed profile via |
| 958 | * {@link #ACTION_PROVISION_MANAGED_PROFILE}. Otherwise it is ignored. |
| 959 | */ |
| 960 | public static final String EXTRA_PROVISIONING_SKIP_USER_CONSENT = |
| 961 | "android.app.extra.PROVISIONING_SKIP_USER_CONSENT"; |
| 962 | |
| 963 | /** |
Benjamin Franz | ea95624 | 2016-03-21 15:45:56 +0000 | [diff] [blame] | 964 | * This MIME type is used for starting the device owner provisioning. |
Sander Alewijnse | 1cc4ecc | 2014-06-23 19:56:52 +0100 | [diff] [blame] | 965 | * |
Craig Lafayette | 3cc72ba | 2015-06-26 11:51:04 -0400 | [diff] [blame] | 966 | * <p>During device owner provisioning a device admin app is set as the owner of the device. |
| 967 | * A device owner has full control over the device. The device owner can not be modified by the |
| 968 | * user and the only way of resetting the device is if the device owner app calls a factory |
| 969 | * reset. |
| 970 | * |
| 971 | * <p> A typical use case would be a device that is owned by a company, but used by either an |
| 972 | * employee or client. |
| 973 | * |
Benjamin Franz | ea95624 | 2016-03-21 15:45:56 +0000 | [diff] [blame] | 974 | * <p> The NFC message must be sent to an unprovisioned device. |
Sander Alewijnse | 1cc4ecc | 2014-06-23 19:56:52 +0100 | [diff] [blame] | 975 | * |
Sander Alewijnse | 8c41156 | 2014-11-12 18:03:11 +0000 | [diff] [blame] | 976 | * <p>The NFC record must contain a serialized {@link java.util.Properties} object which |
Sander Alewijnse | 1cc4ecc | 2014-06-23 19:56:52 +0100 | [diff] [blame] | 977 | * contains the following properties: |
| 978 | * <ul> |
Andrei Kapishnikov | 35e71f5 | 2015-03-16 17:24:04 -0400 | [diff] [blame] | 979 | * <li>{@link #EXTRA_PROVISIONING_DEVICE_ADMIN_PACKAGE_NAME}</li> |
| 980 | * <li>{@link #EXTRA_PROVISIONING_DEVICE_ADMIN_PACKAGE_DOWNLOAD_LOCATION}, optional</li> |
Sander Alewijnse | 681bce9 | 2014-07-24 16:46:26 +0100 | [diff] [blame] | 981 | * <li>{@link #EXTRA_PROVISIONING_DEVICE_ADMIN_PACKAGE_DOWNLOAD_COOKIE_HEADER}, optional</li> |
Andrei Kapishnikov | 35e71f5 | 2015-03-16 17:24:04 -0400 | [diff] [blame] | 982 | * <li>{@link #EXTRA_PROVISIONING_DEVICE_ADMIN_PACKAGE_CHECKSUM}, optional</li> |
Sander Alewijnse | 1cc4ecc | 2014-06-23 19:56:52 +0100 | [diff] [blame] | 983 | * <li>{@link #EXTRA_PROVISIONING_LOCAL_TIME} (convert to String), optional</li> |
| 984 | * <li>{@link #EXTRA_PROVISIONING_TIME_ZONE}, optional</li> |
| 985 | * <li>{@link #EXTRA_PROVISIONING_LOCALE}, optional</li> |
| 986 | * <li>{@link #EXTRA_PROVISIONING_WIFI_SSID}, optional</li> |
| 987 | * <li>{@link #EXTRA_PROVISIONING_WIFI_HIDDEN} (convert to String), optional</li> |
| 988 | * <li>{@link #EXTRA_PROVISIONING_WIFI_SECURITY_TYPE}, optional</li> |
| 989 | * <li>{@link #EXTRA_PROVISIONING_WIFI_PASSWORD}, optional</li> |
| 990 | * <li>{@link #EXTRA_PROVISIONING_WIFI_PROXY_HOST}, optional</li> |
| 991 | * <li>{@link #EXTRA_PROVISIONING_WIFI_PROXY_PORT} (convert to String), optional</li> |
| 992 | * <li>{@link #EXTRA_PROVISIONING_WIFI_PROXY_BYPASS}, optional</li> |
Rubin Xu | 41f2ccb9 | 2015-08-05 16:29:13 +0100 | [diff] [blame] | 993 | * <li>{@link #EXTRA_PROVISIONING_WIFI_PAC_URL}, optional</li> |
| 994 | * <li>{@link #EXTRA_PROVISIONING_ADMIN_EXTRAS_BUNDLE}, optional, supported from |
| 995 | * {@link android.os.Build.VERSION_CODES#M} </li></ul> |
Sander Alewijnse | 1cc4ecc | 2014-06-23 19:56:52 +0100 | [diff] [blame] | 996 | * |
Nicolas Prevot | 1844025 | 2015-03-09 14:07:17 +0000 | [diff] [blame] | 997 | * <p> |
Dianne Hackborn | 0e3de6c | 2015-07-29 15:20:21 -0700 | [diff] [blame] | 998 | * As of {@link android.os.Build.VERSION_CODES#M}, the properties should contain |
Andrei Kapishnikov | 35e71f5 | 2015-03-16 17:24:04 -0400 | [diff] [blame] | 999 | * {@link #EXTRA_PROVISIONING_DEVICE_ADMIN_COMPONENT_NAME} instead of |
| 1000 | * {@link #EXTRA_PROVISIONING_DEVICE_ADMIN_PACKAGE_NAME}, (although specifying only |
| 1001 | * {@link #EXTRA_PROVISIONING_DEVICE_ADMIN_PACKAGE_NAME} is still supported). |
Andrei Kapishnikov | 35e71f5 | 2015-03-16 17:24:04 -0400 | [diff] [blame] | 1002 | */ |
| 1003 | public static final String MIME_TYPE_PROVISIONING_NFC |
| 1004 | = "application/com.android.managedprovisioning"; |
| 1005 | |
Sander Alewijnse | 1cc4ecc | 2014-06-23 19:56:52 +0100 | [diff] [blame] | 1006 | /** |
Dianne Hackborn | d684784 | 2010-01-12 18:14:19 -0800 | [diff] [blame] | 1007 | * Activity action: ask the user to add a new device administrator to the system. |
| 1008 | * The desired policy is the ComponentName of the policy in the |
| 1009 | * {@link #EXTRA_DEVICE_ADMIN} extra field. This will invoke a UI to |
| 1010 | * bring the user through adding the device administrator to the system (or |
| 1011 | * allowing them to reject it). |
Konstantin Lopyrev | 3255823 | 2010-05-20 16:18:05 -0700 | [diff] [blame] | 1012 | * |
Dianne Hackborn | 8ea138c | 2010-01-26 18:01:04 -0800 | [diff] [blame] | 1013 | * <p>You can optionally include the {@link #EXTRA_ADD_EXPLANATION} |
| 1014 | * field to provide the user with additional explanation (in addition |
| 1015 | * to your component's description) about what is being added. |
Andy Stadler | c25f70a | 2010-12-08 15:56:45 -0800 | [diff] [blame] | 1016 | * |
| 1017 | * <p>If your administrator is already active, this will ordinarily return immediately (without |
| 1018 | * user intervention). However, if your administrator has been updated and is requesting |
| 1019 | * additional uses-policy flags, the user will be presented with the new list. New policies |
| 1020 | * will not be available to the updated administrator until the user has accepted the new list. |
Dianne Hackborn | d684784 | 2010-01-12 18:14:19 -0800 | [diff] [blame] | 1021 | */ |
| 1022 | @SdkConstant(SdkConstantType.ACTIVITY_INTENT_ACTION) |
| 1023 | public static final String ACTION_ADD_DEVICE_ADMIN |
| 1024 | = "android.app.action.ADD_DEVICE_ADMIN"; |
Konstantin Lopyrev | 3255823 | 2010-05-20 16:18:05 -0700 | [diff] [blame] | 1025 | |
Dianne Hackborn | d684784 | 2010-01-12 18:14:19 -0800 | [diff] [blame] | 1026 | /** |
Amith Yamasani | bf3a946 | 2014-07-28 14:26:42 -0700 | [diff] [blame] | 1027 | * @hide |
| 1028 | * Activity action: ask the user to add a new device administrator as the profile owner |
Amith Yamasani | 814e987 | 2015-03-23 14:04:53 -0700 | [diff] [blame] | 1029 | * for this user. Only system apps can launch this intent. |
Amith Yamasani | bf3a946 | 2014-07-28 14:26:42 -0700 | [diff] [blame] | 1030 | * |
Amith Yamasani | 814e987 | 2015-03-23 14:04:53 -0700 | [diff] [blame] | 1031 | * <p>The ComponentName of the profile owner admin is passed in the {@link #EXTRA_DEVICE_ADMIN} |
| 1032 | * extra field. This will invoke a UI to bring the user through adding the profile owner admin |
Amith Yamasani | bf3a946 | 2014-07-28 14:26:42 -0700 | [diff] [blame] | 1033 | * to remotely control restrictions on the user. |
| 1034 | * |
Makoto Onuki | c8a5a55 | 2015-11-19 14:29:12 -0800 | [diff] [blame] | 1035 | * <p>The intent must be invoked via {@link Activity#startActivityForResult} to receive the |
Amith Yamasani | bf3a946 | 2014-07-28 14:26:42 -0700 | [diff] [blame] | 1036 | * result of whether or not the user approved the action. If approved, the result will |
| 1037 | * be {@link Activity#RESULT_OK} and the component will be set as an active admin as well |
| 1038 | * as a profile owner. |
| 1039 | * |
| 1040 | * <p>You can optionally include the {@link #EXTRA_ADD_EXPLANATION} |
| 1041 | * field to provide the user with additional explanation (in addition |
| 1042 | * to your component's description) about what is being added. |
| 1043 | * |
Amith Yamasani | 814e987 | 2015-03-23 14:04:53 -0700 | [diff] [blame] | 1044 | * <p>If there is already a profile owner active or the caller is not a system app, the |
| 1045 | * operation will return a failure result. |
Amith Yamasani | bf3a946 | 2014-07-28 14:26:42 -0700 | [diff] [blame] | 1046 | */ |
| 1047 | @SystemApi |
| 1048 | public static final String ACTION_SET_PROFILE_OWNER |
| 1049 | = "android.app.action.SET_PROFILE_OWNER"; |
| 1050 | |
| 1051 | /** |
| 1052 | * @hide |
| 1053 | * Name of the profile owner admin that controls the user. |
| 1054 | */ |
| 1055 | @SystemApi |
| 1056 | public static final String EXTRA_PROFILE_OWNER_NAME |
| 1057 | = "android.app.extra.PROFILE_OWNER_NAME"; |
| 1058 | |
| 1059 | /** |
Nicolas Prevot | 0079900 | 2015-07-27 18:15:20 +0100 | [diff] [blame] | 1060 | * Broadcast action: send when any policy admin changes a policy. |
Jim Miller | 284b62e | 2010-06-08 14:27:42 -0700 | [diff] [blame] | 1061 | * This is generally used to find out when a new policy is in effect. |
Jim Miller | 3e5d3fd | 2011-09-02 17:30:35 -0700 | [diff] [blame] | 1062 | * |
Jim Miller | 284b62e | 2010-06-08 14:27:42 -0700 | [diff] [blame] | 1063 | * @hide |
| 1064 | */ |
| 1065 | public static final String ACTION_DEVICE_POLICY_MANAGER_STATE_CHANGED |
| 1066 | = "android.app.action.DEVICE_POLICY_MANAGER_STATE_CHANGED"; |
| 1067 | |
| 1068 | /** |
Tony Mak | 1970f97 | 2016-08-30 17:41:48 +0100 | [diff] [blame] | 1069 | * Broadcast action: sent when the device owner is set, changed or cleared. |
Nicolas Prevot | 0079900 | 2015-07-27 18:15:20 +0100 | [diff] [blame] | 1070 | * |
| 1071 | * This broadcast is sent only to the primary user. |
| 1072 | * @see #ACTION_PROVISION_MANAGED_DEVICE |
| 1073 | */ |
| 1074 | @SdkConstant(SdkConstantType.BROADCAST_INTENT_ACTION) |
| 1075 | public static final String ACTION_DEVICE_OWNER_CHANGED |
| 1076 | = "android.app.action.DEVICE_OWNER_CHANGED"; |
| 1077 | |
| 1078 | /** |
Dianne Hackborn | d684784 | 2010-01-12 18:14:19 -0800 | [diff] [blame] | 1079 | * The ComponentName of the administrator component. |
| 1080 | * |
| 1081 | * @see #ACTION_ADD_DEVICE_ADMIN |
| 1082 | */ |
| 1083 | public static final String EXTRA_DEVICE_ADMIN = "android.app.extra.DEVICE_ADMIN"; |
Konstantin Lopyrev | 3255823 | 2010-05-20 16:18:05 -0700 | [diff] [blame] | 1084 | |
Dianne Hackborn | d684784 | 2010-01-12 18:14:19 -0800 | [diff] [blame] | 1085 | /** |
Dianne Hackborn | 8ea138c | 2010-01-26 18:01:04 -0800 | [diff] [blame] | 1086 | * An optional CharSequence providing additional explanation for why the |
| 1087 | * admin is being added. |
| 1088 | * |
| 1089 | * @see #ACTION_ADD_DEVICE_ADMIN |
| 1090 | */ |
| 1091 | public static final String EXTRA_ADD_EXPLANATION = "android.app.extra.ADD_EXPLANATION"; |
Konstantin Lopyrev | 3255823 | 2010-05-20 16:18:05 -0700 | [diff] [blame] | 1092 | |
Dianne Hackborn | 8ea138c | 2010-01-26 18:01:04 -0800 | [diff] [blame] | 1093 | /** |
Konstantin Lopyrev | 3255823 | 2010-05-20 16:18:05 -0700 | [diff] [blame] | 1094 | * Activity action: have the user enter a new password. This activity should |
| 1095 | * be launched after using {@link #setPasswordQuality(ComponentName, int)}, |
| 1096 | * or {@link #setPasswordMinimumLength(ComponentName, int)} to have the user |
| 1097 | * enter a new password that meets the current requirements. You can use |
| 1098 | * {@link #isActivePasswordSufficient()} to determine whether you need to |
| 1099 | * have the user select a new password in order to meet the current |
| 1100 | * constraints. Upon being resumed from this activity, you can check the new |
| 1101 | * password characteristics to see if they are sufficient. |
Benjamin Franz | c992109 | 2016-01-08 17:17:44 +0000 | [diff] [blame] | 1102 | * |
| 1103 | * If the intent is launched from within a managed profile with a profile |
| 1104 | * owner built against {@link android.os.Build.VERSION_CODES#M} or before, |
| 1105 | * this will trigger entering a new password for the parent of the profile. |
| 1106 | * For all other cases it will trigger entering a new password for the user |
| 1107 | * or profile it is launched from. |
Esteban Talavera | c1c8359 | 2016-02-17 17:56:15 +0000 | [diff] [blame] | 1108 | * |
| 1109 | * @see #ACTION_SET_NEW_PARENT_PROFILE_PASSWORD |
Dianne Hackborn | d684784 | 2010-01-12 18:14:19 -0800 | [diff] [blame] | 1110 | */ |
| 1111 | @SdkConstant(SdkConstantType.ACTIVITY_INTENT_ACTION) |
| 1112 | public static final String ACTION_SET_NEW_PASSWORD |
| 1113 | = "android.app.action.SET_NEW_PASSWORD"; |
Amith Yamasani | bf3a946 | 2014-07-28 14:26:42 -0700 | [diff] [blame] | 1114 | |
Nicolas Prevot | 10fa67c | 2014-03-24 13:44:38 +0000 | [diff] [blame] | 1115 | /** |
Benjamin Franz | c992109 | 2016-01-08 17:17:44 +0000 | [diff] [blame] | 1116 | * Activity action: have the user enter a new password for the parent profile. |
| 1117 | * If the intent is launched from within a managed profile, this will trigger |
| 1118 | * entering a new password for the parent of the profile. In all other cases |
| 1119 | * the behaviour is identical to {@link #ACTION_SET_NEW_PASSWORD}. |
| 1120 | */ |
| 1121 | @SdkConstant(SdkConstantType.ACTIVITY_INTENT_ACTION) |
| 1122 | public static final String ACTION_SET_NEW_PARENT_PROFILE_PASSWORD |
| 1123 | = "android.app.action.SET_NEW_PARENT_PROFILE_PASSWORD"; |
| 1124 | |
| 1125 | /** |
phweiss | a0cb251 | 2016-12-14 21:37:48 +0100 | [diff] [blame] | 1126 | * Broadcast action: Tell the status bar to open the device monitoring dialog, e.g. when |
| 1127 | * Network logging was enabled and the user tapped the notification. |
| 1128 | * <p class="note">This is a protected intent that can only be sent by the system.</p> |
| 1129 | * @hide |
| 1130 | */ |
| 1131 | public static final String ACTION_SHOW_DEVICE_MONITORING_DIALOG |
| 1132 | = "android.app.action.SHOW_DEVICE_MONITORING_DIALOG"; |
| 1133 | |
| 1134 | /** |
Nicolas Prevot | 2c1c5dd | 2015-01-12 12:32:56 +0000 | [diff] [blame] | 1135 | * Flag used by {@link #addCrossProfileIntentFilter} to allow activities in |
| 1136 | * the parent profile to access intents sent from the managed profile. |
| 1137 | * That is, when an app in the managed profile calls |
| 1138 | * {@link Activity#startActivity(Intent)}, the intent can be resolved by a |
| 1139 | * matching activity in the parent profile. |
Nicolas Prevot | 10fa67c | 2014-03-24 13:44:38 +0000 | [diff] [blame] | 1140 | */ |
Nicolas Prevot | 86a9673 | 2014-09-08 12:13:05 +0100 | [diff] [blame] | 1141 | public static final int FLAG_PARENT_CAN_ACCESS_MANAGED = 0x0001; |
Nicolas Prevot | 10fa67c | 2014-03-24 13:44:38 +0000 | [diff] [blame] | 1142 | |
| 1143 | /** |
Nicolas Prevot | 2c1c5dd | 2015-01-12 12:32:56 +0000 | [diff] [blame] | 1144 | * Flag used by {@link #addCrossProfileIntentFilter} to allow activities in |
| 1145 | * the managed profile to access intents sent from the parent profile. |
| 1146 | * That is, when an app in the parent profile calls |
| 1147 | * {@link Activity#startActivity(Intent)}, the intent can be resolved by a |
| 1148 | * matching activity in the managed profile. |
Nicolas Prevot | 10fa67c | 2014-03-24 13:44:38 +0000 | [diff] [blame] | 1149 | */ |
Nicolas Prevot | 86a9673 | 2014-09-08 12:13:05 +0100 | [diff] [blame] | 1150 | public static final int FLAG_MANAGED_CAN_ACCESS_PARENT = 0x0002; |
Konstantin Lopyrev | 3255823 | 2010-05-20 16:18:05 -0700 | [diff] [blame] | 1151 | |
Dianne Hackborn | d684784 | 2010-01-12 18:14:19 -0800 | [diff] [blame] | 1152 | /** |
Rubin Xu | 5faad8e | 2015-04-20 17:43:48 +0100 | [diff] [blame] | 1153 | * Broadcast action: notify that a new local system update policy has been set by the device |
| 1154 | * owner. The new policy can be retrieved by {@link #getSystemUpdatePolicy()}. |
Rubin Xu | 8027a4f | 2015-03-10 17:52:37 +0000 | [diff] [blame] | 1155 | */ |
| 1156 | @SdkConstant(SdkConstantType.BROADCAST_INTENT_ACTION) |
Rubin Xu | 5faad8e | 2015-04-20 17:43:48 +0100 | [diff] [blame] | 1157 | public static final String ACTION_SYSTEM_UPDATE_POLICY_CHANGED |
| 1158 | = "android.app.action.SYSTEM_UPDATE_POLICY_CHANGED"; |
Rubin Xu | 8027a4f | 2015-03-10 17:52:37 +0000 | [diff] [blame] | 1159 | |
Amith Yamasani | d49489b3 | 2015-04-28 14:00:26 -0700 | [diff] [blame] | 1160 | /** |
| 1161 | * Permission policy to prompt user for new permission requests for runtime permissions. |
| 1162 | * Already granted or denied permissions are not affected by this. |
| 1163 | */ |
| 1164 | public static final int PERMISSION_POLICY_PROMPT = 0; |
| 1165 | |
| 1166 | /** |
| 1167 | * Permission policy to always grant new permission requests for runtime permissions. |
| 1168 | * Already granted or denied permissions are not affected by this. |
| 1169 | */ |
| 1170 | public static final int PERMISSION_POLICY_AUTO_GRANT = 1; |
| 1171 | |
| 1172 | /** |
| 1173 | * Permission policy to always deny new permission requests for runtime permissions. |
| 1174 | * Already granted or denied permissions are not affected by this. |
| 1175 | */ |
| 1176 | public static final int PERMISSION_POLICY_AUTO_DENY = 2; |
| 1177 | |
Svet Ganov | d8ecc5a | 2015-05-20 10:45:43 -0700 | [diff] [blame] | 1178 | /** |
| 1179 | * Runtime permission state: The user can manage the permission |
| 1180 | * through the UI. |
| 1181 | */ |
| 1182 | public static final int PERMISSION_GRANT_STATE_DEFAULT = 0; |
| 1183 | |
| 1184 | /** |
| 1185 | * Runtime permission state: The permission is granted to the app |
| 1186 | * and the user cannot manage the permission through the UI. |
| 1187 | */ |
| 1188 | public static final int PERMISSION_GRANT_STATE_GRANTED = 1; |
| 1189 | |
| 1190 | /** |
| 1191 | * Runtime permission state: The permission is denied to the app |
| 1192 | * and the user cannot manage the permission through the UI. |
| 1193 | */ |
| 1194 | public static final int PERMISSION_GRANT_STATE_DENIED = 2; |
Rubin Xu | 8027a4f | 2015-03-10 17:52:37 +0000 | [diff] [blame] | 1195 | |
| 1196 | /** |
Alan Treadway | afad878 | 2016-01-19 15:15:08 +0000 | [diff] [blame] | 1197 | * No management for current user in-effect. This is the default. |
| 1198 | * @hide |
| 1199 | */ |
Benjamin Franz | eed2a8e | 2016-02-19 14:19:05 +0000 | [diff] [blame] | 1200 | @SystemApi |
Alan Treadway | afad878 | 2016-01-19 15:15:08 +0000 | [diff] [blame] | 1201 | public static final int STATE_USER_UNMANAGED = 0; |
| 1202 | |
| 1203 | /** |
| 1204 | * Management partially setup, user setup needs to be completed. |
| 1205 | * @hide |
| 1206 | */ |
Benjamin Franz | eed2a8e | 2016-02-19 14:19:05 +0000 | [diff] [blame] | 1207 | @SystemApi |
Alan Treadway | afad878 | 2016-01-19 15:15:08 +0000 | [diff] [blame] | 1208 | public static final int STATE_USER_SETUP_INCOMPLETE = 1; |
| 1209 | |
| 1210 | /** |
| 1211 | * Management partially setup, user setup completed. |
| 1212 | * @hide |
| 1213 | */ |
Benjamin Franz | eed2a8e | 2016-02-19 14:19:05 +0000 | [diff] [blame] | 1214 | @SystemApi |
Alan Treadway | afad878 | 2016-01-19 15:15:08 +0000 | [diff] [blame] | 1215 | public static final int STATE_USER_SETUP_COMPLETE = 2; |
| 1216 | |
| 1217 | /** |
| 1218 | * Management setup and active on current user. |
| 1219 | * @hide |
| 1220 | */ |
Benjamin Franz | eed2a8e | 2016-02-19 14:19:05 +0000 | [diff] [blame] | 1221 | @SystemApi |
Alan Treadway | afad878 | 2016-01-19 15:15:08 +0000 | [diff] [blame] | 1222 | public static final int STATE_USER_SETUP_FINALIZED = 3; |
| 1223 | |
| 1224 | /** |
| 1225 | * Management partially setup on a managed profile. |
| 1226 | * @hide |
| 1227 | */ |
Benjamin Franz | eed2a8e | 2016-02-19 14:19:05 +0000 | [diff] [blame] | 1228 | @SystemApi |
Alan Treadway | afad878 | 2016-01-19 15:15:08 +0000 | [diff] [blame] | 1229 | public static final int STATE_USER_PROFILE_COMPLETE = 4; |
| 1230 | |
| 1231 | /** |
| 1232 | * @hide |
| 1233 | */ |
| 1234 | @IntDef({STATE_USER_UNMANAGED, STATE_USER_SETUP_INCOMPLETE, STATE_USER_SETUP_COMPLETE, |
| 1235 | STATE_USER_SETUP_FINALIZED, STATE_USER_PROFILE_COMPLETE}) |
| 1236 | @Retention(RetentionPolicy.SOURCE) |
| 1237 | public @interface UserProvisioningState {} |
| 1238 | |
| 1239 | /** |
Esteban Talavera | 0157686 | 2016-12-15 11:16:44 +0000 | [diff] [blame] | 1240 | * Result code for {@link #checkProvisioningPreCondition}. |
Mahaver Chopra | 849fd6f | 2016-11-03 20:28:10 +0000 | [diff] [blame] | 1241 | * |
| 1242 | * <p>Returned for {@link #ACTION_PROVISION_MANAGED_DEVICE}, |
| 1243 | * {@link #ACTION_PROVISION_MANAGED_PROFILE}, {@link #ACTION_PROVISION_MANAGED_USER} and |
| 1244 | * {@link #ACTION_PROVISION_MANAGED_SHAREABLE_DEVICE} when provisioning is allowed. |
| 1245 | * |
| 1246 | * @hide |
| 1247 | */ |
| 1248 | public static final int CODE_OK = 0; |
| 1249 | |
| 1250 | /** |
Esteban Talavera | 0157686 | 2016-12-15 11:16:44 +0000 | [diff] [blame] | 1251 | * Result code for {@link #checkProvisioningPreCondition}. |
Mahaver Chopra | 849fd6f | 2016-11-03 20:28:10 +0000 | [diff] [blame] | 1252 | * |
| 1253 | * <p>Returned for {@link #ACTION_PROVISION_MANAGED_DEVICE} and |
| 1254 | * {@link #ACTION_PROVISION_MANAGED_SHAREABLE_DEVICE} when the device already has a device |
| 1255 | * owner. |
| 1256 | * |
| 1257 | * @hide |
| 1258 | */ |
| 1259 | public static final int CODE_HAS_DEVICE_OWNER = 1; |
| 1260 | |
| 1261 | /** |
Esteban Talavera | 0157686 | 2016-12-15 11:16:44 +0000 | [diff] [blame] | 1262 | * Result code for {@link #checkProvisioningPreCondition}. |
Mahaver Chopra | 849fd6f | 2016-11-03 20:28:10 +0000 | [diff] [blame] | 1263 | * |
| 1264 | * <p>Returned for {@link #ACTION_PROVISION_MANAGED_DEVICE}, |
| 1265 | * {@link #ACTION_PROVISION_MANAGED_SHAREABLE_DEVICE} when the user has a profile owner and for |
| 1266 | * {@link #ACTION_PROVISION_MANAGED_PROFILE} when the profile owner is already set. |
| 1267 | * |
| 1268 | * @hide |
| 1269 | */ |
| 1270 | public static final int CODE_USER_HAS_PROFILE_OWNER = 2; |
| 1271 | |
| 1272 | /** |
Esteban Talavera | 0157686 | 2016-12-15 11:16:44 +0000 | [diff] [blame] | 1273 | * Result code for {@link #checkProvisioningPreCondition}. |
Mahaver Chopra | 849fd6f | 2016-11-03 20:28:10 +0000 | [diff] [blame] | 1274 | * |
| 1275 | * <p>Returned for {@link #ACTION_PROVISION_MANAGED_DEVICE} and |
| 1276 | * {@link #ACTION_PROVISION_MANAGED_SHAREABLE_DEVICE} when the user isn't running. |
| 1277 | * |
| 1278 | * @hide |
| 1279 | */ |
| 1280 | public static final int CODE_USER_NOT_RUNNING = 3; |
| 1281 | |
| 1282 | /** |
Esteban Talavera | 0157686 | 2016-12-15 11:16:44 +0000 | [diff] [blame] | 1283 | * Result code for {@link #checkProvisioningPreCondition}. |
Mahaver Chopra | 849fd6f | 2016-11-03 20:28:10 +0000 | [diff] [blame] | 1284 | * |
| 1285 | * <p>Returned for {@link #ACTION_PROVISION_MANAGED_DEVICE}, |
| 1286 | * {@link #ACTION_PROVISION_MANAGED_SHAREABLE_DEVICE} if the device has already been setup and |
| 1287 | * for {@link #ACTION_PROVISION_MANAGED_USER} if the user has already been setup. |
| 1288 | * |
| 1289 | * @hide |
| 1290 | */ |
| 1291 | public static final int CODE_USER_SETUP_COMPLETED = 4; |
| 1292 | |
| 1293 | /** |
| 1294 | * Code used to indicate that the device also has a user other than the system user. |
| 1295 | * |
| 1296 | * @hide |
| 1297 | */ |
| 1298 | public static final int CODE_NONSYSTEM_USER_EXISTS = 5; |
| 1299 | |
| 1300 | /** |
| 1301 | * Code used to indicate that device has an account that prevents provisioning. |
| 1302 | * |
| 1303 | * @hide |
| 1304 | */ |
| 1305 | public static final int CODE_ACCOUNTS_NOT_EMPTY = 6; |
| 1306 | |
| 1307 | /** |
Esteban Talavera | 0157686 | 2016-12-15 11:16:44 +0000 | [diff] [blame] | 1308 | * Result code for {@link #checkProvisioningPreCondition}. |
Mahaver Chopra | 849fd6f | 2016-11-03 20:28:10 +0000 | [diff] [blame] | 1309 | * |
| 1310 | * <p>Returned for {@link #ACTION_PROVISION_MANAGED_DEVICE} and |
| 1311 | * {@link #ACTION_PROVISION_MANAGED_SHAREABLE_DEVICE} if the user is not a system user. |
| 1312 | * |
| 1313 | * @hide |
| 1314 | */ |
| 1315 | public static final int CODE_NOT_SYSTEM_USER = 7; |
| 1316 | |
| 1317 | /** |
Esteban Talavera | 0157686 | 2016-12-15 11:16:44 +0000 | [diff] [blame] | 1318 | * Result code for {@link #checkProvisioningPreCondition}. |
Mahaver Chopra | 849fd6f | 2016-11-03 20:28:10 +0000 | [diff] [blame] | 1319 | * |
| 1320 | * <p>Returned for {@link #ACTION_PROVISION_MANAGED_DEVICE}, |
| 1321 | * {@link #ACTION_PROVISION_MANAGED_SHAREABLE_DEVICE} and {@link #ACTION_PROVISION_MANAGED_USER} |
| 1322 | * when the device is a watch and is already paired. |
| 1323 | * |
| 1324 | * @hide |
| 1325 | */ |
| 1326 | public static final int CODE_HAS_PAIRED = 8; |
| 1327 | |
| 1328 | /** |
Esteban Talavera | 0157686 | 2016-12-15 11:16:44 +0000 | [diff] [blame] | 1329 | * Result code for {@link #checkProvisioningPreCondition}. |
Mahaver Chopra | 849fd6f | 2016-11-03 20:28:10 +0000 | [diff] [blame] | 1330 | * |
| 1331 | * <p>Returned for {@link #ACTION_PROVISION_MANAGED_PROFILE} and |
| 1332 | * {@link #ACTION_PROVISION_MANAGED_USER} on devices which do not support managed users. |
| 1333 | * |
| 1334 | * @see {@link PackageManager#FEATURE_MANAGED_USERS} |
| 1335 | * @hide |
| 1336 | */ |
| 1337 | public static final int CODE_MANAGED_USERS_NOT_SUPPORTED = 9; |
| 1338 | |
| 1339 | /** |
Esteban Talavera | 0157686 | 2016-12-15 11:16:44 +0000 | [diff] [blame] | 1340 | * Result code for {@link #checkProvisioningPreCondition}. |
Mahaver Chopra | 849fd6f | 2016-11-03 20:28:10 +0000 | [diff] [blame] | 1341 | * |
| 1342 | * <p>Returned for {@link #ACTION_PROVISION_MANAGED_USER} if the user is a system user. |
| 1343 | * |
| 1344 | * @hide |
| 1345 | */ |
| 1346 | public static final int CODE_SYSTEM_USER = 10; |
| 1347 | |
| 1348 | /** |
Esteban Talavera | 0157686 | 2016-12-15 11:16:44 +0000 | [diff] [blame] | 1349 | * Result code for {@link #checkProvisioningPreCondition}. |
Mahaver Chopra | 849fd6f | 2016-11-03 20:28:10 +0000 | [diff] [blame] | 1350 | * |
| 1351 | * <p>Returned for {@link #ACTION_PROVISION_MANAGED_PROFILE} when the user cannot have more |
| 1352 | * managed profiles. |
| 1353 | * |
| 1354 | * @hide |
| 1355 | */ |
| 1356 | public static final int CODE_CANNOT_ADD_MANAGED_PROFILE = 11; |
| 1357 | |
| 1358 | /** |
Esteban Talavera | 0157686 | 2016-12-15 11:16:44 +0000 | [diff] [blame] | 1359 | * Result code for {@link #checkProvisioningPreCondition}. |
Mahaver Chopra | 849fd6f | 2016-11-03 20:28:10 +0000 | [diff] [blame] | 1360 | * |
| 1361 | * <p>Returned for {@link #ACTION_PROVISION_MANAGED_USER} and |
| 1362 | * {@link #ACTION_PROVISION_MANAGED_SHAREABLE_DEVICE} on devices not running with split system |
| 1363 | * user. |
| 1364 | * |
| 1365 | * @hide |
| 1366 | */ |
| 1367 | public static final int CODE_NOT_SYSTEM_USER_SPLIT = 12; |
| 1368 | |
| 1369 | /** |
Esteban Talavera | 0157686 | 2016-12-15 11:16:44 +0000 | [diff] [blame] | 1370 | * Result code for {@link #checkProvisioningPreCondition}. |
Mahaver Chopra | 849fd6f | 2016-11-03 20:28:10 +0000 | [diff] [blame] | 1371 | * |
| 1372 | * <p>Returned for {@link #ACTION_PROVISION_MANAGED_DEVICE}, |
| 1373 | * {@link #ACTION_PROVISION_MANAGED_PROFILE}, {@link #ACTION_PROVISION_MANAGED_USER} and |
| 1374 | * {@link #ACTION_PROVISION_MANAGED_SHAREABLE_DEVICE} on devices which do no support device |
| 1375 | * admins. |
| 1376 | * |
| 1377 | * @hide |
| 1378 | */ |
| 1379 | public static final int CODE_DEVICE_ADMIN_NOT_SUPPORTED = 13; |
| 1380 | |
| 1381 | /** |
Esteban Talavera | 0157686 | 2016-12-15 11:16:44 +0000 | [diff] [blame] | 1382 | * Result code for {@link #checkProvisioningPreCondition}. |
Mahaver Chopra | 849fd6f | 2016-11-03 20:28:10 +0000 | [diff] [blame] | 1383 | * |
Esteban Talavera | 6c9116a | 2016-11-24 16:12:44 +0000 | [diff] [blame] | 1384 | * <p>Returned for {@link #ACTION_PROVISION_MANAGED_PROFILE} when the device the user is a |
| 1385 | * system user on a split system user device. |
Mahaver Chopra | 849fd6f | 2016-11-03 20:28:10 +0000 | [diff] [blame] | 1386 | * |
| 1387 | * @hide |
| 1388 | */ |
| 1389 | public static final int CODE_SPLIT_SYSTEM_USER_DEVICE_SYSTEM_USER = 14; |
| 1390 | |
| 1391 | /** |
Esteban Talavera | 0157686 | 2016-12-15 11:16:44 +0000 | [diff] [blame] | 1392 | * Result code for {@link #checkProvisioningPreCondition}. |
| 1393 | * |
| 1394 | * <p>Returned for {@link #ACTION_PROVISION_MANAGED_PROFILE} when adding a managed profile is |
| 1395 | * disallowed by {@link UserManager#DISALLOW_ADD_MANAGED_PROFILE}. |
| 1396 | * |
| 1397 | * @hide |
| 1398 | */ |
| 1399 | public static final int CODE_ADD_MANAGED_PROFILE_DISALLOWED = 15; |
| 1400 | |
| 1401 | /** |
| 1402 | * Result codes for {@link #checkProvisioningPreCondition} indicating all the provisioning pre |
Mahaver Chopra | 849fd6f | 2016-11-03 20:28:10 +0000 | [diff] [blame] | 1403 | * conditions. |
| 1404 | * |
| 1405 | * @hide |
| 1406 | */ |
| 1407 | @Retention(RetentionPolicy.SOURCE) |
| 1408 | @IntDef({CODE_OK, CODE_HAS_DEVICE_OWNER, CODE_USER_HAS_PROFILE_OWNER, CODE_USER_NOT_RUNNING, |
| 1409 | CODE_USER_SETUP_COMPLETED, CODE_NOT_SYSTEM_USER, CODE_HAS_PAIRED, |
| 1410 | CODE_MANAGED_USERS_NOT_SUPPORTED, CODE_SYSTEM_USER, CODE_CANNOT_ADD_MANAGED_PROFILE, |
| 1411 | CODE_NOT_SYSTEM_USER_SPLIT, CODE_DEVICE_ADMIN_NOT_SUPPORTED, |
Esteban Talavera | 0157686 | 2016-12-15 11:16:44 +0000 | [diff] [blame] | 1412 | CODE_SPLIT_SYSTEM_USER_DEVICE_SYSTEM_USER, CODE_ADD_MANAGED_PROFILE_DISALLOWED}) |
Mahaver Chopra | 849fd6f | 2016-11-03 20:28:10 +0000 | [diff] [blame] | 1413 | public @interface ProvisioningPreCondition {} |
| 1414 | |
| 1415 | /** |
Suprabh Shukla | 34d92ef | 2016-03-14 13:49:37 -0700 | [diff] [blame] | 1416 | * Return true if the given administrator component is currently active (enabled) in the system. |
| 1417 | * |
| 1418 | * @param admin The administrator component to check for. |
| 1419 | * @return {@code true} if {@code admin} is currently enabled in the system, {@code false} |
| 1420 | * otherwise |
Dianne Hackborn | d684784 | 2010-01-12 18:14:19 -0800 | [diff] [blame] | 1421 | */ |
Robin Lee | 25e2645 | 2015-06-02 09:56:29 -0700 | [diff] [blame] | 1422 | public boolean isAdminActive(@NonNull ComponentName admin) { |
Charles He | 8c76056 | 2016-10-25 16:36:53 +0100 | [diff] [blame] | 1423 | throwIfParentInstance("isAdminActive"); |
Makoto Onuki | cc4bbeb | 2015-09-17 10:28:24 -0700 | [diff] [blame] | 1424 | return isAdminActiveAsUser(admin, myUserId()); |
Zoltan Szatmary-Ban | 3f1ddf8 | 2014-07-02 16:42:05 +0100 | [diff] [blame] | 1425 | } |
| 1426 | |
| 1427 | /** |
| 1428 | * @see #isAdminActive(ComponentName) |
| 1429 | * @hide |
| 1430 | */ |
Robin Lee | 25e2645 | 2015-06-02 09:56:29 -0700 | [diff] [blame] | 1431 | public boolean isAdminActiveAsUser(@NonNull ComponentName admin, int userId) { |
Dianne Hackborn | d684784 | 2010-01-12 18:14:19 -0800 | [diff] [blame] | 1432 | if (mService != null) { |
| 1433 | try { |
Robin Lee | 25e2645 | 2015-06-02 09:56:29 -0700 | [diff] [blame] | 1434 | return mService.isAdminActive(admin, userId); |
Dianne Hackborn | d684784 | 2010-01-12 18:14:19 -0800 | [diff] [blame] | 1435 | } catch (RemoteException e) { |
Jeff Sharkey | dbff9ca | 2016-03-01 19:46:25 -0700 | [diff] [blame] | 1436 | throw e.rethrowFromSystemServer(); |
Dianne Hackborn | d684784 | 2010-01-12 18:14:19 -0800 | [diff] [blame] | 1437 | } |
| 1438 | } |
| 1439 | return false; |
| 1440 | } |
Charles He | dea0c3b | 2017-01-13 10:04:12 +0000 | [diff] [blame^] | 1441 | |
Fyodor Kupolov | 96fb932 | 2014-12-01 15:08:09 -0800 | [diff] [blame] | 1442 | /** |
| 1443 | * Return true if the given administrator component is currently being removed |
| 1444 | * for the user. |
| 1445 | * @hide |
| 1446 | */ |
Robin Lee | 25e2645 | 2015-06-02 09:56:29 -0700 | [diff] [blame] | 1447 | public boolean isRemovingAdmin(@NonNull ComponentName admin, int userId) { |
Fyodor Kupolov | 96fb932 | 2014-12-01 15:08:09 -0800 | [diff] [blame] | 1448 | if (mService != null) { |
| 1449 | try { |
Robin Lee | 25e2645 | 2015-06-02 09:56:29 -0700 | [diff] [blame] | 1450 | return mService.isRemovingAdmin(admin, userId); |
Fyodor Kupolov | 96fb932 | 2014-12-01 15:08:09 -0800 | [diff] [blame] | 1451 | } catch (RemoteException e) { |
Jeff Sharkey | dbff9ca | 2016-03-01 19:46:25 -0700 | [diff] [blame] | 1452 | throw e.rethrowFromSystemServer(); |
Fyodor Kupolov | 96fb932 | 2014-12-01 15:08:09 -0800 | [diff] [blame] | 1453 | } |
| 1454 | } |
| 1455 | return false; |
| 1456 | } |
| 1457 | |
Dianne Hackborn | d684784 | 2010-01-12 18:14:19 -0800 | [diff] [blame] | 1458 | /** |
Robin Lee | 25e2645 | 2015-06-02 09:56:29 -0700 | [diff] [blame] | 1459 | * Return a list of all currently active device administrators' component |
| 1460 | * names. If there are no administrators {@code null} may be |
Dianne Hackborn | d47c6ed | 2010-01-27 16:21:20 -0800 | [diff] [blame] | 1461 | * returned. |
| 1462 | */ |
Makoto Onuki | 408e8e4 | 2016-10-25 12:10:27 -0700 | [diff] [blame] | 1463 | public @Nullable List<ComponentName> getActiveAdmins() { |
Benjamin Franz | bc33c82 | 2016-04-15 08:57:52 +0100 | [diff] [blame] | 1464 | throwIfParentInstance("getActiveAdmins"); |
Makoto Onuki | cc4bbeb | 2015-09-17 10:28:24 -0700 | [diff] [blame] | 1465 | return getActiveAdminsAsUser(myUserId()); |
Zoltan Szatmary-Ban | 3f1ddf8 | 2014-07-02 16:42:05 +0100 | [diff] [blame] | 1466 | } |
| 1467 | |
| 1468 | /** |
| 1469 | * @see #getActiveAdmins() |
| 1470 | * @hide |
| 1471 | */ |
Makoto Onuki | 408e8e4 | 2016-10-25 12:10:27 -0700 | [diff] [blame] | 1472 | public @Nullable List<ComponentName> getActiveAdminsAsUser(int userId) { |
Dianne Hackborn | d47c6ed | 2010-01-27 16:21:20 -0800 | [diff] [blame] | 1473 | if (mService != null) { |
| 1474 | try { |
Zoltan Szatmary-Ban | 3f1ddf8 | 2014-07-02 16:42:05 +0100 | [diff] [blame] | 1475 | return mService.getActiveAdmins(userId); |
Dianne Hackborn | d47c6ed | 2010-01-27 16:21:20 -0800 | [diff] [blame] | 1476 | } catch (RemoteException e) { |
Jeff Sharkey | dbff9ca | 2016-03-01 19:46:25 -0700 | [diff] [blame] | 1477 | throw e.rethrowFromSystemServer(); |
Dianne Hackborn | d47c6ed | 2010-01-27 16:21:20 -0800 | [diff] [blame] | 1478 | } |
| 1479 | } |
| 1480 | return null; |
| 1481 | } |
Konstantin Lopyrev | 3255823 | 2010-05-20 16:18:05 -0700 | [diff] [blame] | 1482 | |
Dianne Hackborn | d47c6ed | 2010-01-27 16:21:20 -0800 | [diff] [blame] | 1483 | /** |
Amith Yamasani | 599dd7c | 2012-09-14 23:20:08 -0700 | [diff] [blame] | 1484 | * Used by package administration code to determine if a package can be stopped |
| 1485 | * or uninstalled. |
Dianne Hackborn | 21f1bd1 | 2010-02-19 17:02:21 -0800 | [diff] [blame] | 1486 | * @hide |
| 1487 | */ |
David Ouyang | 3a83a33 | 2017-01-11 16:36:40 -0800 | [diff] [blame] | 1488 | @SystemApi |
Dianne Hackborn | 21f1bd1 | 2010-02-19 17:02:21 -0800 | [diff] [blame] | 1489 | public boolean packageHasActiveAdmins(String packageName) { |
Amith Yamasani | ca5d6d2 | 2016-02-16 13:58:46 -0800 | [diff] [blame] | 1490 | return packageHasActiveAdmins(packageName, myUserId()); |
| 1491 | } |
| 1492 | |
| 1493 | /** |
| 1494 | * Used by package administration code to determine if a package can be stopped |
| 1495 | * or uninstalled. |
| 1496 | * @hide |
| 1497 | */ |
| 1498 | public boolean packageHasActiveAdmins(String packageName, int userId) { |
Dianne Hackborn | 21f1bd1 | 2010-02-19 17:02:21 -0800 | [diff] [blame] | 1499 | if (mService != null) { |
| 1500 | try { |
Amith Yamasani | ca5d6d2 | 2016-02-16 13:58:46 -0800 | [diff] [blame] | 1501 | return mService.packageHasActiveAdmins(packageName, userId); |
Dianne Hackborn | 21f1bd1 | 2010-02-19 17:02:21 -0800 | [diff] [blame] | 1502 | } catch (RemoteException e) { |
Jeff Sharkey | dbff9ca | 2016-03-01 19:46:25 -0700 | [diff] [blame] | 1503 | throw e.rethrowFromSystemServer(); |
Dianne Hackborn | 21f1bd1 | 2010-02-19 17:02:21 -0800 | [diff] [blame] | 1504 | } |
| 1505 | } |
| 1506 | return false; |
| 1507 | } |
Konstantin Lopyrev | 3255823 | 2010-05-20 16:18:05 -0700 | [diff] [blame] | 1508 | |
Dianne Hackborn | 21f1bd1 | 2010-02-19 17:02:21 -0800 | [diff] [blame] | 1509 | /** |
Dianne Hackborn | d684784 | 2010-01-12 18:14:19 -0800 | [diff] [blame] | 1510 | * Remove a current administration component. This can only be called |
| 1511 | * by the application that owns the administration component; if you |
| 1512 | * try to remove someone else's component, a security exception will be |
| 1513 | * thrown. |
Esteban Talavera | 552a561 | 2016-02-19 17:02:24 +0000 | [diff] [blame] | 1514 | * |
| 1515 | * <p>Note that the operation is not synchronous and the admin might still be active (as |
| 1516 | * indicated by {@link #getActiveAdmins()}) by the time this method returns. |
Suprabh Shukla | 34d92ef | 2016-03-14 13:49:37 -0700 | [diff] [blame] | 1517 | * |
| 1518 | * @param admin The administration compononent to remove. |
| 1519 | * @throws SecurityException if the caller is not in the owner application of {@code admin}. |
Dianne Hackborn | d684784 | 2010-01-12 18:14:19 -0800 | [diff] [blame] | 1520 | */ |
Robin Lee | 25e2645 | 2015-06-02 09:56:29 -0700 | [diff] [blame] | 1521 | public void removeActiveAdmin(@NonNull ComponentName admin) { |
Benjamin Franz | bc33c82 | 2016-04-15 08:57:52 +0100 | [diff] [blame] | 1522 | throwIfParentInstance("removeActiveAdmin"); |
Dianne Hackborn | d684784 | 2010-01-12 18:14:19 -0800 | [diff] [blame] | 1523 | if (mService != null) { |
| 1524 | try { |
Makoto Onuki | cc4bbeb | 2015-09-17 10:28:24 -0700 | [diff] [blame] | 1525 | mService.removeActiveAdmin(admin, myUserId()); |
Dianne Hackborn | d684784 | 2010-01-12 18:14:19 -0800 | [diff] [blame] | 1526 | } catch (RemoteException e) { |
Jeff Sharkey | dbff9ca | 2016-03-01 19:46:25 -0700 | [diff] [blame] | 1527 | throw e.rethrowFromSystemServer(); |
Dianne Hackborn | d684784 | 2010-01-12 18:14:19 -0800 | [diff] [blame] | 1528 | } |
| 1529 | } |
| 1530 | } |
Konstantin Lopyrev | 3255823 | 2010-05-20 16:18:05 -0700 | [diff] [blame] | 1531 | |
Dianne Hackborn | d684784 | 2010-01-12 18:14:19 -0800 | [diff] [blame] | 1532 | /** |
Suprabh Shukla | 34d92ef | 2016-03-14 13:49:37 -0700 | [diff] [blame] | 1533 | * Returns true if an administrator has been granted a particular device policy. This can be |
| 1534 | * used to check whether the administrator was activated under an earlier set of policies, but |
| 1535 | * requires additional policies after an upgrade. |
Andy Stadler | c25f70a | 2010-12-08 15:56:45 -0800 | [diff] [blame] | 1536 | * |
Suprabh Shukla | 34d92ef | 2016-03-14 13:49:37 -0700 | [diff] [blame] | 1537 | * @param admin Which {@link DeviceAdminReceiver} this request is associated with. Must be an |
| 1538 | * active administrator, or an exception will be thrown. |
Andy Stadler | c25f70a | 2010-12-08 15:56:45 -0800 | [diff] [blame] | 1539 | * @param usesPolicy Which uses-policy to check, as defined in {@link DeviceAdminInfo}. |
Suprabh Shukla | 34d92ef | 2016-03-14 13:49:37 -0700 | [diff] [blame] | 1540 | * @throws SecurityException if {@code admin} is not an active administrator. |
Andy Stadler | c25f70a | 2010-12-08 15:56:45 -0800 | [diff] [blame] | 1541 | */ |
Robin Lee | 25e2645 | 2015-06-02 09:56:29 -0700 | [diff] [blame] | 1542 | public boolean hasGrantedPolicy(@NonNull ComponentName admin, int usesPolicy) { |
Benjamin Franz | bc33c82 | 2016-04-15 08:57:52 +0100 | [diff] [blame] | 1543 | throwIfParentInstance("hasGrantedPolicy"); |
Andy Stadler | c25f70a | 2010-12-08 15:56:45 -0800 | [diff] [blame] | 1544 | if (mService != null) { |
| 1545 | try { |
Makoto Onuki | cc4bbeb | 2015-09-17 10:28:24 -0700 | [diff] [blame] | 1546 | return mService.hasGrantedPolicy(admin, usesPolicy, myUserId()); |
Andy Stadler | c25f70a | 2010-12-08 15:56:45 -0800 | [diff] [blame] | 1547 | } catch (RemoteException e) { |
Jeff Sharkey | dbff9ca | 2016-03-01 19:46:25 -0700 | [diff] [blame] | 1548 | throw e.rethrowFromSystemServer(); |
Andy Stadler | c25f70a | 2010-12-08 15:56:45 -0800 | [diff] [blame] | 1549 | } |
| 1550 | } |
| 1551 | return false; |
| 1552 | } |
| 1553 | |
| 1554 | /** |
Clara Bayarri | a177111 | 2015-12-18 16:29:18 +0000 | [diff] [blame] | 1555 | * Returns true if the Profile Challenge is available to use for the given profile user. |
| 1556 | * |
| 1557 | * @hide |
| 1558 | */ |
| 1559 | public boolean isSeparateProfileChallengeAllowed(int userHandle) { |
| 1560 | if (mService != null) { |
| 1561 | try { |
| 1562 | return mService.isSeparateProfileChallengeAllowed(userHandle); |
| 1563 | } catch (RemoteException e) { |
Jeff Sharkey | dbff9ca | 2016-03-01 19:46:25 -0700 | [diff] [blame] | 1564 | throw e.rethrowFromSystemServer(); |
Clara Bayarri | a177111 | 2015-12-18 16:29:18 +0000 | [diff] [blame] | 1565 | } |
| 1566 | } |
| 1567 | return false; |
| 1568 | } |
| 1569 | |
| 1570 | /** |
Dianne Hackborn | 9327f4f | 2010-01-29 10:38:29 -0800 | [diff] [blame] | 1571 | * Constant for {@link #setPasswordQuality}: the policy has no requirements |
| 1572 | * for the password. Note that quality constants are ordered so that higher |
Dianne Hackborn | df83afa | 2010-01-20 13:37:26 -0800 | [diff] [blame] | 1573 | * values are more restrictive. |
Dianne Hackborn | d684784 | 2010-01-12 18:14:19 -0800 | [diff] [blame] | 1574 | */ |
Dianne Hackborn | 9327f4f | 2010-01-29 10:38:29 -0800 | [diff] [blame] | 1575 | public static final int PASSWORD_QUALITY_UNSPECIFIED = 0; |
Konstantin Lopyrev | 3255823 | 2010-05-20 16:18:05 -0700 | [diff] [blame] | 1576 | |
Dianne Hackborn | d684784 | 2010-01-12 18:14:19 -0800 | [diff] [blame] | 1577 | /** |
Jim Miller | 3e5d3fd | 2011-09-02 17:30:35 -0700 | [diff] [blame] | 1578 | * Constant for {@link #setPasswordQuality}: the policy allows for low-security biometric |
| 1579 | * recognition technology. This implies technologies that can recognize the identity of |
| 1580 | * an individual to about a 3 digit PIN (false detection is less than 1 in 1,000). |
| 1581 | * Note that quality constants are ordered so that higher values are more restrictive. |
| 1582 | */ |
| 1583 | public static final int PASSWORD_QUALITY_BIOMETRIC_WEAK = 0x8000; |
| 1584 | |
| 1585 | /** |
Dianne Hackborn | 9327f4f | 2010-01-29 10:38:29 -0800 | [diff] [blame] | 1586 | * Constant for {@link #setPasswordQuality}: the policy requires some kind |
Benjamin Franz | c6a9653 | 2015-06-16 11:23:38 +0100 | [diff] [blame] | 1587 | * of password or pattern, but doesn't care what it is. Note that quality constants |
Dianne Hackborn | df83afa | 2010-01-20 13:37:26 -0800 | [diff] [blame] | 1588 | * are ordered so that higher values are more restrictive. |
Dianne Hackborn | d684784 | 2010-01-12 18:14:19 -0800 | [diff] [blame] | 1589 | */ |
Dianne Hackborn | 9327f4f | 2010-01-29 10:38:29 -0800 | [diff] [blame] | 1590 | public static final int PASSWORD_QUALITY_SOMETHING = 0x10000; |
Konstantin Lopyrev | 3255823 | 2010-05-20 16:18:05 -0700 | [diff] [blame] | 1591 | |
Dianne Hackborn | df83afa | 2010-01-20 13:37:26 -0800 | [diff] [blame] | 1592 | /** |
Dianne Hackborn | 9327f4f | 2010-01-29 10:38:29 -0800 | [diff] [blame] | 1593 | * Constant for {@link #setPasswordQuality}: the user must have entered a |
| 1594 | * password containing at least numeric characters. Note that quality |
| 1595 | * constants are ordered so that higher values are more restrictive. |
Dianne Hackborn | df83afa | 2010-01-20 13:37:26 -0800 | [diff] [blame] | 1596 | */ |
Dianne Hackborn | 9327f4f | 2010-01-29 10:38:29 -0800 | [diff] [blame] | 1597 | public static final int PASSWORD_QUALITY_NUMERIC = 0x20000; |
Konstantin Lopyrev | 3255823 | 2010-05-20 16:18:05 -0700 | [diff] [blame] | 1598 | |
Dianne Hackborn | d684784 | 2010-01-12 18:14:19 -0800 | [diff] [blame] | 1599 | /** |
Dianne Hackborn | 9327f4f | 2010-01-29 10:38:29 -0800 | [diff] [blame] | 1600 | * Constant for {@link #setPasswordQuality}: the user must have entered a |
Jim Miller | 85516d0 | 2014-01-31 17:08:37 -0800 | [diff] [blame] | 1601 | * password containing at least numeric characters with no repeating (4444) |
| 1602 | * or ordered (1234, 4321, 2468) sequences. Note that quality |
| 1603 | * constants are ordered so that higher values are more restrictive. |
| 1604 | */ |
| 1605 | public static final int PASSWORD_QUALITY_NUMERIC_COMPLEX = 0x30000; |
| 1606 | |
| 1607 | /** |
| 1608 | * Constant for {@link #setPasswordQuality}: the user must have entered a |
Dianne Hackborn | 85f2c9c | 2010-03-22 11:12:48 -0700 | [diff] [blame] | 1609 | * password containing at least alphabetic (or other symbol) characters. |
| 1610 | * Note that quality constants are ordered so that higher values are more |
| 1611 | * restrictive. |
| 1612 | */ |
| 1613 | public static final int PASSWORD_QUALITY_ALPHABETIC = 0x40000; |
Konstantin Lopyrev | 3255823 | 2010-05-20 16:18:05 -0700 | [diff] [blame] | 1614 | |
Dianne Hackborn | 85f2c9c | 2010-03-22 11:12:48 -0700 | [diff] [blame] | 1615 | /** |
| 1616 | * Constant for {@link #setPasswordQuality}: the user must have entered a |
Dianne Hackborn | 9327f4f | 2010-01-29 10:38:29 -0800 | [diff] [blame] | 1617 | * password containing at least <em>both></em> numeric <em>and</em> |
Dianne Hackborn | 85f2c9c | 2010-03-22 11:12:48 -0700 | [diff] [blame] | 1618 | * alphabetic (or other symbol) characters. Note that quality constants are |
Dianne Hackborn | 9327f4f | 2010-01-29 10:38:29 -0800 | [diff] [blame] | 1619 | * ordered so that higher values are more restrictive. |
Dianne Hackborn | d684784 | 2010-01-12 18:14:19 -0800 | [diff] [blame] | 1620 | */ |
Dianne Hackborn | 85f2c9c | 2010-03-22 11:12:48 -0700 | [diff] [blame] | 1621 | public static final int PASSWORD_QUALITY_ALPHANUMERIC = 0x50000; |
Konstantin Lopyrev | 3255823 | 2010-05-20 16:18:05 -0700 | [diff] [blame] | 1622 | |
Dianne Hackborn | d684784 | 2010-01-12 18:14:19 -0800 | [diff] [blame] | 1623 | /** |
Konstantin Lopyrev | a15dcfa | 2010-05-24 17:10:56 -0700 | [diff] [blame] | 1624 | * Constant for {@link #setPasswordQuality}: the user must have entered a |
Konstantin Lopyrev | c857740 | 2010-06-04 17:15:02 -0700 | [diff] [blame] | 1625 | * password containing at least a letter, a numerical digit and a special |
| 1626 | * symbol, by default. With this password quality, passwords can be |
| 1627 | * restricted to contain various sets of characters, like at least an |
| 1628 | * uppercase letter, etc. These are specified using various methods, |
| 1629 | * like {@link #setPasswordMinimumLowerCase(ComponentName, int)}. Note |
| 1630 | * that quality constants are ordered so that higher values are more |
| 1631 | * restrictive. |
Konstantin Lopyrev | a15dcfa | 2010-05-24 17:10:56 -0700 | [diff] [blame] | 1632 | */ |
| 1633 | public static final int PASSWORD_QUALITY_COMPLEX = 0x60000; |
| 1634 | |
| 1635 | /** |
Oleksandr Peletskyi | 0fdcd3d | 2016-01-13 16:49:56 +0100 | [diff] [blame] | 1636 | * Constant for {@link #setPasswordQuality}: the user is not allowed to |
| 1637 | * modify password. In case this password quality is set, the password is |
| 1638 | * managed by a profile owner. The profile owner can set any password, |
| 1639 | * as if {@link #PASSWORD_QUALITY_UNSPECIFIED} is used. Note |
| 1640 | * that quality constants are ordered so that higher values are more |
| 1641 | * restrictive. The value of {@link #PASSWORD_QUALITY_MANAGED} is |
| 1642 | * the highest. |
| 1643 | * @hide |
| 1644 | */ |
| 1645 | public static final int PASSWORD_QUALITY_MANAGED = 0x80000; |
| 1646 | |
| 1647 | /** |
Makoto Onuki | 5e7e0670 | 2016-09-01 18:02:01 -0700 | [diff] [blame] | 1648 | * @hide |
| 1649 | * |
| 1650 | * adb shell dpm set-{device,profile}-owner will normally not allow installing an owner to |
| 1651 | * a user with accounts. {@link #ACCOUNT_FEATURE_DEVICE_OR_PROFILE_OWNER_ALLOWED} |
| 1652 | * and {@link #ACCOUNT_FEATURE_DEVICE_OR_PROFILE_OWNER_DISALLOWED} are the account features |
| 1653 | * used by authenticator to exempt their accounts from this: |
| 1654 | * |
| 1655 | * <ul> |
| 1656 | * <li>Non-test-only DO/PO still can't be installed when there are accounts. |
| 1657 | * <p>In order to make an apk test-only, add android:testOnly="true" to the |
| 1658 | * <application> tag in the manifest. |
| 1659 | * |
| 1660 | * <li>Test-only DO/PO can be installed even when there are accounts, as long as all the |
| 1661 | * accounts have the {@link #ACCOUNT_FEATURE_DEVICE_OR_PROFILE_OWNER_ALLOWED} feature. |
| 1662 | * Some authenticators claim to have any features, so to detect it, we also check |
| 1663 | * {@link #ACCOUNT_FEATURE_DEVICE_OR_PROFILE_OWNER_DISALLOWED} and disallow installing |
| 1664 | * if any of the accounts have it. |
| 1665 | * </ul> |
| 1666 | */ |
| 1667 | public static final String ACCOUNT_FEATURE_DEVICE_OR_PROFILE_OWNER_ALLOWED = |
| 1668 | "android.account.DEVICE_OR_PROFILE_OWNER_ALLOWED"; |
| 1669 | |
| 1670 | /** @hide See {@link #ACCOUNT_FEATURE_DEVICE_OR_PROFILE_OWNER_ALLOWED} */ |
| 1671 | public static final String ACCOUNT_FEATURE_DEVICE_OR_PROFILE_OWNER_DISALLOWED = |
| 1672 | "android.account.DEVICE_OR_PROFILE_OWNER_DISALLOWED"; |
| 1673 | |
| 1674 | /** |
Suprabh Shukla | 34d92ef | 2016-03-14 13:49:37 -0700 | [diff] [blame] | 1675 | * Called by an application that is administering the device to set the password restrictions it |
| 1676 | * is imposing. After setting this, the user will not be able to enter a new password that is |
| 1677 | * not at least as restrictive as what has been set. Note that the current password will remain |
| 1678 | * until the user has set a new one, so the change does not take place immediately. To prompt |
| 1679 | * the user for a new password, use {@link #ACTION_SET_NEW_PASSWORD} or |
Esteban Talavera | c1c8359 | 2016-02-17 17:56:15 +0000 | [diff] [blame] | 1680 | * {@link #ACTION_SET_NEW_PARENT_PROFILE_PASSWORD} after calling this method. |
Suprabh Shukla | 34d92ef | 2016-03-14 13:49:37 -0700 | [diff] [blame] | 1681 | * <p> |
| 1682 | * Quality constants are ordered so that higher values are more restrictive; thus the highest |
| 1683 | * requested quality constant (between the policy set here, the user's preference, and any other |
| 1684 | * considerations) is the one that is in effect. |
| 1685 | * <p> |
| 1686 | * The calling device admin must have requested |
| 1687 | * {@link DeviceAdminInfo#USES_POLICY_LIMIT_PASSWORD} to be able to call this method; if it has |
| 1688 | * not, a security exception will be thrown. |
| 1689 | * <p> |
| 1690 | * This method can be called on the {@link DevicePolicyManager} instance returned by |
| 1691 | * {@link #getParentProfileInstance(ComponentName)} in order to set restrictions on the parent |
| 1692 | * profile. |
Esteban Talavera | c1c8359 | 2016-02-17 17:56:15 +0000 | [diff] [blame] | 1693 | * |
Dianne Hackborn | ef6b22f | 2010-02-16 20:38:49 -0800 | [diff] [blame] | 1694 | * @param admin Which {@link DeviceAdminReceiver} this request is associated with. |
Suprabh Shukla | 34d92ef | 2016-03-14 13:49:37 -0700 | [diff] [blame] | 1695 | * @param quality The new desired quality. One of {@link #PASSWORD_QUALITY_UNSPECIFIED}, |
| 1696 | * {@link #PASSWORD_QUALITY_SOMETHING}, {@link #PASSWORD_QUALITY_NUMERIC}, |
| 1697 | * {@link #PASSWORD_QUALITY_NUMERIC_COMPLEX}, {@link #PASSWORD_QUALITY_ALPHABETIC}, |
| 1698 | * {@link #PASSWORD_QUALITY_ALPHANUMERIC} or {@link #PASSWORD_QUALITY_COMPLEX}. |
| 1699 | * @throws SecurityException if {@code admin} is not an active administrator or if {@code admin} |
| 1700 | * does not use {@link DeviceAdminInfo#USES_POLICY_LIMIT_PASSWORD} |
Dianne Hackborn | d684784 | 2010-01-12 18:14:19 -0800 | [diff] [blame] | 1701 | */ |
Robin Lee | 25e2645 | 2015-06-02 09:56:29 -0700 | [diff] [blame] | 1702 | public void setPasswordQuality(@NonNull ComponentName admin, int quality) { |
Dianne Hackborn | d684784 | 2010-01-12 18:14:19 -0800 | [diff] [blame] | 1703 | if (mService != null) { |
| 1704 | try { |
Clara Bayarri | 3e826ef | 2015-12-14 17:51:22 +0000 | [diff] [blame] | 1705 | mService.setPasswordQuality(admin, quality, mParentInstance); |
Dianne Hackborn | d684784 | 2010-01-12 18:14:19 -0800 | [diff] [blame] | 1706 | } catch (RemoteException e) { |
Jeff Sharkey | dbff9ca | 2016-03-01 19:46:25 -0700 | [diff] [blame] | 1707 | throw e.rethrowFromSystemServer(); |
Dianne Hackborn | d684784 | 2010-01-12 18:14:19 -0800 | [diff] [blame] | 1708 | } |
| 1709 | } |
| 1710 | } |
Konstantin Lopyrev | 3255823 | 2010-05-20 16:18:05 -0700 | [diff] [blame] | 1711 | |
Dianne Hackborn | d684784 | 2010-01-12 18:14:19 -0800 | [diff] [blame] | 1712 | /** |
Esteban Talavera | c1c8359 | 2016-02-17 17:56:15 +0000 | [diff] [blame] | 1713 | * Retrieve the current minimum password quality for a particular admin or all admins that set |
Rubin Xu | d3609d4 | 2016-07-13 18:32:57 +0100 | [diff] [blame] | 1714 | * restrictions on this user and its participating profiles. Restrictions on profiles that have |
Esteban Talavera | c1c8359 | 2016-02-17 17:56:15 +0000 | [diff] [blame] | 1715 | * a separate challenge are not taken into account. |
| 1716 | * |
| 1717 | * <p>This method can be called on the {@link DevicePolicyManager} instance |
| 1718 | * returned by {@link #getParentProfileInstance(ComponentName)} in order to retrieve |
| 1719 | * restrictions on the parent profile. |
| 1720 | * |
Robin Lee | 25e2645 | 2015-06-02 09:56:29 -0700 | [diff] [blame] | 1721 | * @param admin The name of the admin component to check, or {@code null} to aggregate |
Dianne Hackborn | 254cb44 | 2010-01-27 19:23:59 -0800 | [diff] [blame] | 1722 | * all admins. |
Dianne Hackborn | d684784 | 2010-01-12 18:14:19 -0800 | [diff] [blame] | 1723 | */ |
Robin Lee | 25e2645 | 2015-06-02 09:56:29 -0700 | [diff] [blame] | 1724 | public int getPasswordQuality(@Nullable ComponentName admin) { |
Makoto Onuki | cc4bbeb | 2015-09-17 10:28:24 -0700 | [diff] [blame] | 1725 | return getPasswordQuality(admin, myUserId()); |
Amith Yamasani | 599dd7c | 2012-09-14 23:20:08 -0700 | [diff] [blame] | 1726 | } |
| 1727 | |
| 1728 | /** @hide per-user version */ |
Robin Lee | 25e2645 | 2015-06-02 09:56:29 -0700 | [diff] [blame] | 1729 | public int getPasswordQuality(@Nullable ComponentName admin, int userHandle) { |
Dianne Hackborn | d684784 | 2010-01-12 18:14:19 -0800 | [diff] [blame] | 1730 | if (mService != null) { |
| 1731 | try { |
Clara Bayarri | 3e826ef | 2015-12-14 17:51:22 +0000 | [diff] [blame] | 1732 | return mService.getPasswordQuality(admin, userHandle, mParentInstance); |
Dianne Hackborn | d684784 | 2010-01-12 18:14:19 -0800 | [diff] [blame] | 1733 | } catch (RemoteException e) { |
Jeff Sharkey | dbff9ca | 2016-03-01 19:46:25 -0700 | [diff] [blame] | 1734 | throw e.rethrowFromSystemServer(); |
Dianne Hackborn | d684784 | 2010-01-12 18:14:19 -0800 | [diff] [blame] | 1735 | } |
| 1736 | } |
Dianne Hackborn | 9327f4f | 2010-01-29 10:38:29 -0800 | [diff] [blame] | 1737 | return PASSWORD_QUALITY_UNSPECIFIED; |
Dianne Hackborn | d684784 | 2010-01-12 18:14:19 -0800 | [diff] [blame] | 1738 | } |
Konstantin Lopyrev | 3255823 | 2010-05-20 16:18:05 -0700 | [diff] [blame] | 1739 | |
Dianne Hackborn | d684784 | 2010-01-12 18:14:19 -0800 | [diff] [blame] | 1740 | /** |
Suprabh Shukla | 34d92ef | 2016-03-14 13:49:37 -0700 | [diff] [blame] | 1741 | * Called by an application that is administering the device to set the minimum allowed password |
| 1742 | * length. After setting this, the user will not be able to enter a new password that is not at |
| 1743 | * least as restrictive as what has been set. Note that the current password will remain until |
| 1744 | * the user has set a new one, so the change does not take place immediately. To prompt the user |
| 1745 | * for a new password, use {@link #ACTION_SET_NEW_PASSWORD} or |
| 1746 | * {@link #ACTION_SET_NEW_PARENT_PROFILE_PASSWORD} after setting this value. This constraint is |
| 1747 | * only imposed if the administrator has also requested either {@link #PASSWORD_QUALITY_NUMERIC} |
| 1748 | * , {@link #PASSWORD_QUALITY_NUMERIC_COMPLEX}, {@link #PASSWORD_QUALITY_ALPHABETIC}, |
| 1749 | * {@link #PASSWORD_QUALITY_ALPHANUMERIC}, or {@link #PASSWORD_QUALITY_COMPLEX} with |
| 1750 | * {@link #setPasswordQuality}. |
| 1751 | * <p> |
| 1752 | * The calling device admin must have requested |
| 1753 | * {@link DeviceAdminInfo#USES_POLICY_LIMIT_PASSWORD} to be able to call this method; if it has |
| 1754 | * not, a security exception will be thrown. |
| 1755 | * <p> |
| 1756 | * This method can be called on the {@link DevicePolicyManager} instance returned by |
| 1757 | * {@link #getParentProfileInstance(ComponentName)} in order to set restrictions on the parent |
| 1758 | * profile. |
Esteban Talavera | c1c8359 | 2016-02-17 17:56:15 +0000 | [diff] [blame] | 1759 | * |
Dianne Hackborn | ef6b22f | 2010-02-16 20:38:49 -0800 | [diff] [blame] | 1760 | * @param admin Which {@link DeviceAdminReceiver} this request is associated with. |
Suprabh Shukla | 34d92ef | 2016-03-14 13:49:37 -0700 | [diff] [blame] | 1761 | * @param length The new desired minimum password length. A value of 0 means there is no |
| 1762 | * restriction. |
| 1763 | * @throws SecurityException if {@code admin} is not an active administrator or {@code admin} |
| 1764 | * does not use {@link DeviceAdminInfo#USES_POLICY_LIMIT_PASSWORD} |
Dianne Hackborn | d684784 | 2010-01-12 18:14:19 -0800 | [diff] [blame] | 1765 | */ |
Robin Lee | 25e2645 | 2015-06-02 09:56:29 -0700 | [diff] [blame] | 1766 | public void setPasswordMinimumLength(@NonNull ComponentName admin, int length) { |
Dianne Hackborn | d684784 | 2010-01-12 18:14:19 -0800 | [diff] [blame] | 1767 | if (mService != null) { |
| 1768 | try { |
Esteban Talavera | 6239991 | 2016-01-11 15:37:55 +0000 | [diff] [blame] | 1769 | mService.setPasswordMinimumLength(admin, length, mParentInstance); |
Dianne Hackborn | d684784 | 2010-01-12 18:14:19 -0800 | [diff] [blame] | 1770 | } catch (RemoteException e) { |
Jeff Sharkey | dbff9ca | 2016-03-01 19:46:25 -0700 | [diff] [blame] | 1771 | throw e.rethrowFromSystemServer(); |
Dianne Hackborn | d684784 | 2010-01-12 18:14:19 -0800 | [diff] [blame] | 1772 | } |
| 1773 | } |
| 1774 | } |
Konstantin Lopyrev | 3255823 | 2010-05-20 16:18:05 -0700 | [diff] [blame] | 1775 | |
Dianne Hackborn | d684784 | 2010-01-12 18:14:19 -0800 | [diff] [blame] | 1776 | /** |
Esteban Talavera | c1c8359 | 2016-02-17 17:56:15 +0000 | [diff] [blame] | 1777 | * Retrieve the current minimum password length for a particular admin or all admins that set |
Rubin Xu | d3609d4 | 2016-07-13 18:32:57 +0100 | [diff] [blame] | 1778 | * restrictions on this user and its participating profiles. Restrictions on profiles that have |
Esteban Talavera | c1c8359 | 2016-02-17 17:56:15 +0000 | [diff] [blame] | 1779 | * a separate challenge are not taken into account. |
| 1780 | * |
| 1781 | * <p>This method can be called on the {@link DevicePolicyManager} instance |
| 1782 | * returned by {@link #getParentProfileInstance(ComponentName)} in order to retrieve |
| 1783 | * restrictions on the parent profile. |
| 1784 | * |
Jessica Hummel | 91da58d | 2014-04-10 17:39:43 +0100 | [diff] [blame] | 1785 | * user and its profiles or a particular one. |
Robin Lee | 25e2645 | 2015-06-02 09:56:29 -0700 | [diff] [blame] | 1786 | * @param admin The name of the admin component to check, or {@code null} to aggregate |
Dianne Hackborn | 254cb44 | 2010-01-27 19:23:59 -0800 | [diff] [blame] | 1787 | * all admins. |
Dianne Hackborn | d684784 | 2010-01-12 18:14:19 -0800 | [diff] [blame] | 1788 | */ |
Robin Lee | 25e2645 | 2015-06-02 09:56:29 -0700 | [diff] [blame] | 1789 | public int getPasswordMinimumLength(@Nullable ComponentName admin) { |
Makoto Onuki | cc4bbeb | 2015-09-17 10:28:24 -0700 | [diff] [blame] | 1790 | return getPasswordMinimumLength(admin, myUserId()); |
Amith Yamasani | 599dd7c | 2012-09-14 23:20:08 -0700 | [diff] [blame] | 1791 | } |
| 1792 | |
| 1793 | /** @hide per-user version */ |
Robin Lee | 25e2645 | 2015-06-02 09:56:29 -0700 | [diff] [blame] | 1794 | public int getPasswordMinimumLength(@Nullable ComponentName admin, int userHandle) { |
Dianne Hackborn | d684784 | 2010-01-12 18:14:19 -0800 | [diff] [blame] | 1795 | if (mService != null) { |
| 1796 | try { |
Esteban Talavera | 6239991 | 2016-01-11 15:37:55 +0000 | [diff] [blame] | 1797 | return mService.getPasswordMinimumLength(admin, userHandle, mParentInstance); |
Dianne Hackborn | d684784 | 2010-01-12 18:14:19 -0800 | [diff] [blame] | 1798 | } catch (RemoteException e) { |
Jeff Sharkey | dbff9ca | 2016-03-01 19:46:25 -0700 | [diff] [blame] | 1799 | throw e.rethrowFromSystemServer(); |
Dianne Hackborn | d684784 | 2010-01-12 18:14:19 -0800 | [diff] [blame] | 1800 | } |
| 1801 | } |
| 1802 | return 0; |
| 1803 | } |
Konstantin Lopyrev | 3255823 | 2010-05-20 16:18:05 -0700 | [diff] [blame] | 1804 | |
Konstantin Lopyrev | a15dcfa | 2010-05-24 17:10:56 -0700 | [diff] [blame] | 1805 | /** |
Suprabh Shukla | 34d92ef | 2016-03-14 13:49:37 -0700 | [diff] [blame] | 1806 | * Called by an application that is administering the device to set the minimum number of upper |
| 1807 | * case letters required in the password. After setting this, the user will not be able to enter |
| 1808 | * a new password that is not at least as restrictive as what has been set. Note that the |
| 1809 | * current password will remain until the user has set a new one, so the change does not take |
| 1810 | * place immediately. To prompt the user for a new password, use |
| 1811 | * {@link #ACTION_SET_NEW_PASSWORD} or {@link #ACTION_SET_NEW_PARENT_PROFILE_PASSWORD} after |
| 1812 | * setting this value. This constraint is only imposed if the administrator has also requested |
| 1813 | * {@link #PASSWORD_QUALITY_COMPLEX} with {@link #setPasswordQuality}. The default value is 0. |
Konstantin Lopyrev | a15dcfa | 2010-05-24 17:10:56 -0700 | [diff] [blame] | 1814 | * <p> |
| 1815 | * The calling device admin must have requested |
Suprabh Shukla | 34d92ef | 2016-03-14 13:49:37 -0700 | [diff] [blame] | 1816 | * {@link DeviceAdminInfo#USES_POLICY_LIMIT_PASSWORD} to be able to call this method; if it has |
| 1817 | * not, a security exception will be thrown. |
| 1818 | * <p> |
| 1819 | * This method can be called on the {@link DevicePolicyManager} instance returned by |
| 1820 | * {@link #getParentProfileInstance(ComponentName)} in order to set restrictions on the parent |
| 1821 | * profile. |
Konstantin Lopyrev | a15dcfa | 2010-05-24 17:10:56 -0700 | [diff] [blame] | 1822 | * |
Suprabh Shukla | 34d92ef | 2016-03-14 13:49:37 -0700 | [diff] [blame] | 1823 | * @param admin Which {@link DeviceAdminReceiver} this request is associated with. |
| 1824 | * @param length The new desired minimum number of upper case letters required in the password. |
| 1825 | * A value of 0 means there is no restriction. |
| 1826 | * @throws SecurityException if {@code admin} is not an active administrator or {@code admin} |
| 1827 | * does not use {@link DeviceAdminInfo#USES_POLICY_LIMIT_PASSWORD} |
Konstantin Lopyrev | a15dcfa | 2010-05-24 17:10:56 -0700 | [diff] [blame] | 1828 | */ |
Robin Lee | 25e2645 | 2015-06-02 09:56:29 -0700 | [diff] [blame] | 1829 | public void setPasswordMinimumUpperCase(@NonNull ComponentName admin, int length) { |
Konstantin Lopyrev | a15dcfa | 2010-05-24 17:10:56 -0700 | [diff] [blame] | 1830 | if (mService != null) { |
| 1831 | try { |
Esteban Talavera | 6239991 | 2016-01-11 15:37:55 +0000 | [diff] [blame] | 1832 | mService.setPasswordMinimumUpperCase(admin, length, mParentInstance); |
Konstantin Lopyrev | a15dcfa | 2010-05-24 17:10:56 -0700 | [diff] [blame] | 1833 | } catch (RemoteException e) { |
Jeff Sharkey | dbff9ca | 2016-03-01 19:46:25 -0700 | [diff] [blame] | 1834 | throw e.rethrowFromSystemServer(); |
Konstantin Lopyrev | a15dcfa | 2010-05-24 17:10:56 -0700 | [diff] [blame] | 1835 | } |
| 1836 | } |
| 1837 | } |
| 1838 | |
| 1839 | /** |
Esteban Talavera | c1c8359 | 2016-02-17 17:56:15 +0000 | [diff] [blame] | 1840 | * Retrieve the current number of upper case letters required in the password |
Rubin Xu | d3609d4 | 2016-07-13 18:32:57 +0100 | [diff] [blame] | 1841 | * for a particular admin or all admins that set restrictions on this user and |
Esteban Talavera | c1c8359 | 2016-02-17 17:56:15 +0000 | [diff] [blame] | 1842 | * its participating profiles. Restrictions on profiles that have a separate challenge |
| 1843 | * are not taken into account. |
Jessica Hummel | 91da58d | 2014-04-10 17:39:43 +0100 | [diff] [blame] | 1844 | * This is the same value as set by |
Esteban Talavera | c1c8359 | 2016-02-17 17:56:15 +0000 | [diff] [blame] | 1845 | * {@link #setPasswordMinimumUpperCase(ComponentName, int)} |
Konstantin Lopyrev | c857740 | 2010-06-04 17:15:02 -0700 | [diff] [blame] | 1846 | * and only applies when the password quality is |
| 1847 | * {@link #PASSWORD_QUALITY_COMPLEX}. |
Konstantin Lopyrev | a15dcfa | 2010-05-24 17:10:56 -0700 | [diff] [blame] | 1848 | * |
Esteban Talavera | c1c8359 | 2016-02-17 17:56:15 +0000 | [diff] [blame] | 1849 | * <p>This method can be called on the {@link DevicePolicyManager} instance |
| 1850 | * returned by {@link #getParentProfileInstance(ComponentName)} in order to retrieve |
| 1851 | * restrictions on the parent profile. |
| 1852 | * |
Robin Lee | 25e2645 | 2015-06-02 09:56:29 -0700 | [diff] [blame] | 1853 | * @param admin The name of the admin component to check, or {@code null} to |
Konstantin Lopyrev | a15dcfa | 2010-05-24 17:10:56 -0700 | [diff] [blame] | 1854 | * aggregate all admins. |
| 1855 | * @return The minimum number of upper case letters required in the |
| 1856 | * password. |
| 1857 | */ |
Robin Lee | 25e2645 | 2015-06-02 09:56:29 -0700 | [diff] [blame] | 1858 | public int getPasswordMinimumUpperCase(@Nullable ComponentName admin) { |
Makoto Onuki | cc4bbeb | 2015-09-17 10:28:24 -0700 | [diff] [blame] | 1859 | return getPasswordMinimumUpperCase(admin, myUserId()); |
Amith Yamasani | 599dd7c | 2012-09-14 23:20:08 -0700 | [diff] [blame] | 1860 | } |
| 1861 | |
| 1862 | /** @hide per-user version */ |
Robin Lee | 25e2645 | 2015-06-02 09:56:29 -0700 | [diff] [blame] | 1863 | public int getPasswordMinimumUpperCase(@Nullable ComponentName admin, int userHandle) { |
Konstantin Lopyrev | a15dcfa | 2010-05-24 17:10:56 -0700 | [diff] [blame] | 1864 | if (mService != null) { |
| 1865 | try { |
Esteban Talavera | 6239991 | 2016-01-11 15:37:55 +0000 | [diff] [blame] | 1866 | return mService.getPasswordMinimumUpperCase(admin, userHandle, mParentInstance); |
Konstantin Lopyrev | a15dcfa | 2010-05-24 17:10:56 -0700 | [diff] [blame] | 1867 | } catch (RemoteException e) { |
Jeff Sharkey | dbff9ca | 2016-03-01 19:46:25 -0700 | [diff] [blame] | 1868 | throw e.rethrowFromSystemServer(); |
Konstantin Lopyrev | a15dcfa | 2010-05-24 17:10:56 -0700 | [diff] [blame] | 1869 | } |
| 1870 | } |
| 1871 | return 0; |
| 1872 | } |
| 1873 | |
| 1874 | /** |
Suprabh Shukla | 34d92ef | 2016-03-14 13:49:37 -0700 | [diff] [blame] | 1875 | * Called by an application that is administering the device to set the minimum number of lower |
| 1876 | * case letters required in the password. After setting this, the user will not be able to enter |
| 1877 | * a new password that is not at least as restrictive as what has been set. Note that the |
| 1878 | * current password will remain until the user has set a new one, so the change does not take |
| 1879 | * place immediately. To prompt the user for a new password, use |
| 1880 | * {@link #ACTION_SET_NEW_PASSWORD} or {@link #ACTION_SET_NEW_PARENT_PROFILE_PASSWORD} after |
| 1881 | * setting this value. This constraint is only imposed if the administrator has also requested |
| 1882 | * {@link #PASSWORD_QUALITY_COMPLEX} with {@link #setPasswordQuality}. The default value is 0. |
Konstantin Lopyrev | a15dcfa | 2010-05-24 17:10:56 -0700 | [diff] [blame] | 1883 | * <p> |
| 1884 | * The calling device admin must have requested |
Suprabh Shukla | 34d92ef | 2016-03-14 13:49:37 -0700 | [diff] [blame] | 1885 | * {@link DeviceAdminInfo#USES_POLICY_LIMIT_PASSWORD} to be able to call this method; if it has |
| 1886 | * not, a security exception will be thrown. |
| 1887 | * <p> |
| 1888 | * This method can be called on the {@link DevicePolicyManager} instance returned by |
| 1889 | * {@link #getParentProfileInstance(ComponentName)} in order to set restrictions on the parent |
| 1890 | * profile. |
Konstantin Lopyrev | a15dcfa | 2010-05-24 17:10:56 -0700 | [diff] [blame] | 1891 | * |
Suprabh Shukla | 34d92ef | 2016-03-14 13:49:37 -0700 | [diff] [blame] | 1892 | * @param admin Which {@link DeviceAdminReceiver} this request is associated with. |
| 1893 | * @param length The new desired minimum number of lower case letters required in the password. |
| 1894 | * A value of 0 means there is no restriction. |
| 1895 | * @throws SecurityException if {@code admin} is not an active administrator or {@code admin} |
| 1896 | * does not use {@link DeviceAdminInfo#USES_POLICY_LIMIT_PASSWORD} |
Konstantin Lopyrev | a15dcfa | 2010-05-24 17:10:56 -0700 | [diff] [blame] | 1897 | */ |
Robin Lee | 25e2645 | 2015-06-02 09:56:29 -0700 | [diff] [blame] | 1898 | public void setPasswordMinimumLowerCase(@NonNull ComponentName admin, int length) { |
Konstantin Lopyrev | a15dcfa | 2010-05-24 17:10:56 -0700 | [diff] [blame] | 1899 | if (mService != null) { |
| 1900 | try { |
Esteban Talavera | 6239991 | 2016-01-11 15:37:55 +0000 | [diff] [blame] | 1901 | mService.setPasswordMinimumLowerCase(admin, length, mParentInstance); |
Konstantin Lopyrev | a15dcfa | 2010-05-24 17:10:56 -0700 | [diff] [blame] | 1902 | } catch (RemoteException e) { |
Jeff Sharkey | dbff9ca | 2016-03-01 19:46:25 -0700 | [diff] [blame] | 1903 | throw e.rethrowFromSystemServer(); |
Konstantin Lopyrev | a15dcfa | 2010-05-24 17:10:56 -0700 | [diff] [blame] | 1904 | } |
| 1905 | } |
| 1906 | } |
| 1907 | |
| 1908 | /** |
Esteban Talavera | c1c8359 | 2016-02-17 17:56:15 +0000 | [diff] [blame] | 1909 | * Retrieve the current number of lower case letters required in the password |
Rubin Xu | d3609d4 | 2016-07-13 18:32:57 +0100 | [diff] [blame] | 1910 | * for a particular admin or all admins that set restrictions on this user |
Esteban Talavera | c1c8359 | 2016-02-17 17:56:15 +0000 | [diff] [blame] | 1911 | * and its participating profiles. Restrictions on profiles that have |
| 1912 | * a separate challenge are not taken into account. |
Jessica Hummel | 91da58d | 2014-04-10 17:39:43 +0100 | [diff] [blame] | 1913 | * This is the same value as set by |
Esteban Talavera | c1c8359 | 2016-02-17 17:56:15 +0000 | [diff] [blame] | 1914 | * {@link #setPasswordMinimumLowerCase(ComponentName, int)} |
Konstantin Lopyrev | c857740 | 2010-06-04 17:15:02 -0700 | [diff] [blame] | 1915 | * and only applies when the password quality is |
| 1916 | * {@link #PASSWORD_QUALITY_COMPLEX}. |
Konstantin Lopyrev | a15dcfa | 2010-05-24 17:10:56 -0700 | [diff] [blame] | 1917 | * |
Esteban Talavera | c1c8359 | 2016-02-17 17:56:15 +0000 | [diff] [blame] | 1918 | * <p>This method can be called on the {@link DevicePolicyManager} instance |
| 1919 | * returned by {@link #getParentProfileInstance(ComponentName)} in order to retrieve |
| 1920 | * restrictions on the parent profile. |
| 1921 | * |
Robin Lee | 25e2645 | 2015-06-02 09:56:29 -0700 | [diff] [blame] | 1922 | * @param admin The name of the admin component to check, or {@code null} to |
Konstantin Lopyrev | a15dcfa | 2010-05-24 17:10:56 -0700 | [diff] [blame] | 1923 | * aggregate all admins. |
| 1924 | * @return The minimum number of lower case letters required in the |
| 1925 | * password. |
| 1926 | */ |
Robin Lee | 25e2645 | 2015-06-02 09:56:29 -0700 | [diff] [blame] | 1927 | public int getPasswordMinimumLowerCase(@Nullable ComponentName admin) { |
Makoto Onuki | cc4bbeb | 2015-09-17 10:28:24 -0700 | [diff] [blame] | 1928 | return getPasswordMinimumLowerCase(admin, myUserId()); |
Amith Yamasani | 599dd7c | 2012-09-14 23:20:08 -0700 | [diff] [blame] | 1929 | } |
| 1930 | |
| 1931 | /** @hide per-user version */ |
Robin Lee | 25e2645 | 2015-06-02 09:56:29 -0700 | [diff] [blame] | 1932 | public int getPasswordMinimumLowerCase(@Nullable ComponentName admin, int userHandle) { |
Konstantin Lopyrev | a15dcfa | 2010-05-24 17:10:56 -0700 | [diff] [blame] | 1933 | if (mService != null) { |
| 1934 | try { |
Esteban Talavera | 6239991 | 2016-01-11 15:37:55 +0000 | [diff] [blame] | 1935 | return mService.getPasswordMinimumLowerCase(admin, userHandle, mParentInstance); |
Konstantin Lopyrev | a15dcfa | 2010-05-24 17:10:56 -0700 | [diff] [blame] | 1936 | } catch (RemoteException e) { |
Jeff Sharkey | dbff9ca | 2016-03-01 19:46:25 -0700 | [diff] [blame] | 1937 | throw e.rethrowFromSystemServer(); |
Konstantin Lopyrev | a15dcfa | 2010-05-24 17:10:56 -0700 | [diff] [blame] | 1938 | } |
| 1939 | } |
| 1940 | return 0; |
| 1941 | } |
| 1942 | |
| 1943 | /** |
Suprabh Shukla | 34d92ef | 2016-03-14 13:49:37 -0700 | [diff] [blame] | 1944 | * Called by an application that is administering the device to set the minimum number of |
| 1945 | * letters required in the password. After setting this, the user will not be able to enter a |
| 1946 | * new password that is not at least as restrictive as what has been set. Note that the current |
| 1947 | * password will remain until the user has set a new one, so the change does not take place |
| 1948 | * immediately. To prompt the user for a new password, use {@link #ACTION_SET_NEW_PASSWORD} or |
| 1949 | * {@link #ACTION_SET_NEW_PARENT_PROFILE_PASSWORD} after setting this value. This constraint is |
| 1950 | * only imposed if the administrator has also requested {@link #PASSWORD_QUALITY_COMPLEX} with |
| 1951 | * {@link #setPasswordQuality}. The default value is 1. |
Konstantin Lopyrev | a15dcfa | 2010-05-24 17:10:56 -0700 | [diff] [blame] | 1952 | * <p> |
| 1953 | * The calling device admin must have requested |
Suprabh Shukla | 34d92ef | 2016-03-14 13:49:37 -0700 | [diff] [blame] | 1954 | * {@link DeviceAdminInfo#USES_POLICY_LIMIT_PASSWORD} to be able to call this method; if it has |
| 1955 | * not, a security exception will be thrown. |
| 1956 | * <p> |
| 1957 | * This method can be called on the {@link DevicePolicyManager} instance returned by |
| 1958 | * {@link #getParentProfileInstance(ComponentName)} in order to set restrictions on the parent |
| 1959 | * profile. |
Konstantin Lopyrev | a15dcfa | 2010-05-24 17:10:56 -0700 | [diff] [blame] | 1960 | * |
Suprabh Shukla | 34d92ef | 2016-03-14 13:49:37 -0700 | [diff] [blame] | 1961 | * @param admin Which {@link DeviceAdminReceiver} this request is associated with. |
| 1962 | * @param length The new desired minimum number of letters required in the password. A value of |
| 1963 | * 0 means there is no restriction. |
| 1964 | * @throws SecurityException if {@code admin} is not an active administrator or {@code admin} |
| 1965 | * does not use {@link DeviceAdminInfo#USES_POLICY_LIMIT_PASSWORD} |
Konstantin Lopyrev | a15dcfa | 2010-05-24 17:10:56 -0700 | [diff] [blame] | 1966 | */ |
Robin Lee | 25e2645 | 2015-06-02 09:56:29 -0700 | [diff] [blame] | 1967 | public void setPasswordMinimumLetters(@NonNull ComponentName admin, int length) { |
Konstantin Lopyrev | a15dcfa | 2010-05-24 17:10:56 -0700 | [diff] [blame] | 1968 | if (mService != null) { |
| 1969 | try { |
Esteban Talavera | 6239991 | 2016-01-11 15:37:55 +0000 | [diff] [blame] | 1970 | mService.setPasswordMinimumLetters(admin, length, mParentInstance); |
Konstantin Lopyrev | a15dcfa | 2010-05-24 17:10:56 -0700 | [diff] [blame] | 1971 | } catch (RemoteException e) { |
Jeff Sharkey | dbff9ca | 2016-03-01 19:46:25 -0700 | [diff] [blame] | 1972 | throw e.rethrowFromSystemServer(); |
Konstantin Lopyrev | a15dcfa | 2010-05-24 17:10:56 -0700 | [diff] [blame] | 1973 | } |
| 1974 | } |
| 1975 | } |
| 1976 | |
| 1977 | /** |
Esteban Talavera | c1c8359 | 2016-02-17 17:56:15 +0000 | [diff] [blame] | 1978 | * Retrieve the current number of letters required in the password |
Rubin Xu | d3609d4 | 2016-07-13 18:32:57 +0100 | [diff] [blame] | 1979 | * for a particular admin or all admins that set restrictions on this user |
Esteban Talavera | c1c8359 | 2016-02-17 17:56:15 +0000 | [diff] [blame] | 1980 | * and its participating profiles. Restrictions on profiles that have |
| 1981 | * a separate challenge are not taken into account. |
| 1982 | * This is the same value as set by |
| 1983 | * {@link #setPasswordMinimumLetters(ComponentName, int)} |
Konstantin Lopyrev | c857740 | 2010-06-04 17:15:02 -0700 | [diff] [blame] | 1984 | * and only applies when the password quality is |
| 1985 | * {@link #PASSWORD_QUALITY_COMPLEX}. |
Konstantin Lopyrev | a15dcfa | 2010-05-24 17:10:56 -0700 | [diff] [blame] | 1986 | * |
Esteban Talavera | c1c8359 | 2016-02-17 17:56:15 +0000 | [diff] [blame] | 1987 | * <p>This method can be called on the {@link DevicePolicyManager} instance |
| 1988 | * returned by {@link #getParentProfileInstance(ComponentName)} in order to retrieve |
| 1989 | * restrictions on the parent profile. |
| 1990 | * |
Robin Lee | 25e2645 | 2015-06-02 09:56:29 -0700 | [diff] [blame] | 1991 | * @param admin The name of the admin component to check, or {@code null} to |
Konstantin Lopyrev | a15dcfa | 2010-05-24 17:10:56 -0700 | [diff] [blame] | 1992 | * aggregate all admins. |
| 1993 | * @return The minimum number of letters required in the password. |
| 1994 | */ |
Robin Lee | 25e2645 | 2015-06-02 09:56:29 -0700 | [diff] [blame] | 1995 | public int getPasswordMinimumLetters(@Nullable ComponentName admin) { |
Makoto Onuki | cc4bbeb | 2015-09-17 10:28:24 -0700 | [diff] [blame] | 1996 | return getPasswordMinimumLetters(admin, myUserId()); |
Amith Yamasani | 599dd7c | 2012-09-14 23:20:08 -0700 | [diff] [blame] | 1997 | } |
| 1998 | |
| 1999 | /** @hide per-user version */ |
Robin Lee | 25e2645 | 2015-06-02 09:56:29 -0700 | [diff] [blame] | 2000 | public int getPasswordMinimumLetters(@Nullable ComponentName admin, int userHandle) { |
Konstantin Lopyrev | a15dcfa | 2010-05-24 17:10:56 -0700 | [diff] [blame] | 2001 | if (mService != null) { |
| 2002 | try { |
Esteban Talavera | 6239991 | 2016-01-11 15:37:55 +0000 | [diff] [blame] | 2003 | return mService.getPasswordMinimumLetters(admin, userHandle, mParentInstance); |
Konstantin Lopyrev | a15dcfa | 2010-05-24 17:10:56 -0700 | [diff] [blame] | 2004 | } catch (RemoteException e) { |
Jeff Sharkey | dbff9ca | 2016-03-01 19:46:25 -0700 | [diff] [blame] | 2005 | throw e.rethrowFromSystemServer(); |
Konstantin Lopyrev | a15dcfa | 2010-05-24 17:10:56 -0700 | [diff] [blame] | 2006 | } |
| 2007 | } |
| 2008 | return 0; |
| 2009 | } |
| 2010 | |
| 2011 | /** |
Suprabh Shukla | 34d92ef | 2016-03-14 13:49:37 -0700 | [diff] [blame] | 2012 | * Called by an application that is administering the device to set the minimum number of |
| 2013 | * numerical digits required in the password. After setting this, the user will not be able to |
| 2014 | * enter a new password that is not at least as restrictive as what has been set. Note that the |
| 2015 | * current password will remain until the user has set a new one, so the change does not take |
| 2016 | * place immediately. To prompt the user for a new password, use |
| 2017 | * {@link #ACTION_SET_NEW_PASSWORD} or {@link #ACTION_SET_NEW_PARENT_PROFILE_PASSWORD} after |
| 2018 | * setting this value. This constraint is only imposed if the administrator has also requested |
| 2019 | * {@link #PASSWORD_QUALITY_COMPLEX} with {@link #setPasswordQuality}. The default value is 1. |
Konstantin Lopyrev | a15dcfa | 2010-05-24 17:10:56 -0700 | [diff] [blame] | 2020 | * <p> |
| 2021 | * The calling device admin must have requested |
Suprabh Shukla | 34d92ef | 2016-03-14 13:49:37 -0700 | [diff] [blame] | 2022 | * {@link DeviceAdminInfo#USES_POLICY_LIMIT_PASSWORD} to be able to call this method; if it has |
| 2023 | * not, a security exception will be thrown. |
| 2024 | * <p> |
| 2025 | * This method can be called on the {@link DevicePolicyManager} instance returned by |
| 2026 | * {@link #getParentProfileInstance(ComponentName)} in order to set restrictions on the parent |
| 2027 | * profile. |
Konstantin Lopyrev | a15dcfa | 2010-05-24 17:10:56 -0700 | [diff] [blame] | 2028 | * |
Suprabh Shukla | 34d92ef | 2016-03-14 13:49:37 -0700 | [diff] [blame] | 2029 | * @param admin Which {@link DeviceAdminReceiver} this request is associated with. |
| 2030 | * @param length The new desired minimum number of numerical digits required in the password. A |
| 2031 | * value of 0 means there is no restriction. |
| 2032 | * @throws SecurityException if {@code admin} is not an active administrator or {@code admin} |
| 2033 | * does not use {@link DeviceAdminInfo#USES_POLICY_LIMIT_PASSWORD} |
Konstantin Lopyrev | a15dcfa | 2010-05-24 17:10:56 -0700 | [diff] [blame] | 2034 | */ |
Robin Lee | 25e2645 | 2015-06-02 09:56:29 -0700 | [diff] [blame] | 2035 | public void setPasswordMinimumNumeric(@NonNull ComponentName admin, int length) { |
Konstantin Lopyrev | a15dcfa | 2010-05-24 17:10:56 -0700 | [diff] [blame] | 2036 | if (mService != null) { |
| 2037 | try { |
Esteban Talavera | 6239991 | 2016-01-11 15:37:55 +0000 | [diff] [blame] | 2038 | mService.setPasswordMinimumNumeric(admin, length, mParentInstance); |
Konstantin Lopyrev | a15dcfa | 2010-05-24 17:10:56 -0700 | [diff] [blame] | 2039 | } catch (RemoteException e) { |
Jeff Sharkey | dbff9ca | 2016-03-01 19:46:25 -0700 | [diff] [blame] | 2040 | throw e.rethrowFromSystemServer(); |
Konstantin Lopyrev | a15dcfa | 2010-05-24 17:10:56 -0700 | [diff] [blame] | 2041 | } |
| 2042 | } |
| 2043 | } |
| 2044 | |
| 2045 | /** |
| 2046 | * Retrieve the current number of numerical digits required in the password |
Rubin Xu | d3609d4 | 2016-07-13 18:32:57 +0100 | [diff] [blame] | 2047 | * for a particular admin or all admins that set restrictions on this user |
Esteban Talavera | c1c8359 | 2016-02-17 17:56:15 +0000 | [diff] [blame] | 2048 | * and its participating profiles. Restrictions on profiles that have |
| 2049 | * a separate challenge are not taken into account. |
Jessica Hummel | 91da58d | 2014-04-10 17:39:43 +0100 | [diff] [blame] | 2050 | * This is the same value as set by |
Esteban Talavera | c1c8359 | 2016-02-17 17:56:15 +0000 | [diff] [blame] | 2051 | * {@link #setPasswordMinimumNumeric(ComponentName, int)} |
Konstantin Lopyrev | c857740 | 2010-06-04 17:15:02 -0700 | [diff] [blame] | 2052 | * and only applies when the password quality is |
| 2053 | * {@link #PASSWORD_QUALITY_COMPLEX}. |
Konstantin Lopyrev | a15dcfa | 2010-05-24 17:10:56 -0700 | [diff] [blame] | 2054 | * |
Esteban Talavera | c1c8359 | 2016-02-17 17:56:15 +0000 | [diff] [blame] | 2055 | * <p>This method can be called on the {@link DevicePolicyManager} instance |
| 2056 | * returned by {@link #getParentProfileInstance(ComponentName)} in order to retrieve |
| 2057 | * restrictions on the parent profile. |
| 2058 | * |
Robin Lee | 25e2645 | 2015-06-02 09:56:29 -0700 | [diff] [blame] | 2059 | * @param admin The name of the admin component to check, or {@code null} to |
Konstantin Lopyrev | a15dcfa | 2010-05-24 17:10:56 -0700 | [diff] [blame] | 2060 | * aggregate all admins. |
| 2061 | * @return The minimum number of numerical digits required in the password. |
| 2062 | */ |
Robin Lee | 25e2645 | 2015-06-02 09:56:29 -0700 | [diff] [blame] | 2063 | public int getPasswordMinimumNumeric(@Nullable ComponentName admin) { |
Makoto Onuki | cc4bbeb | 2015-09-17 10:28:24 -0700 | [diff] [blame] | 2064 | return getPasswordMinimumNumeric(admin, myUserId()); |
Amith Yamasani | 599dd7c | 2012-09-14 23:20:08 -0700 | [diff] [blame] | 2065 | } |
| 2066 | |
| 2067 | /** @hide per-user version */ |
Robin Lee | 25e2645 | 2015-06-02 09:56:29 -0700 | [diff] [blame] | 2068 | public int getPasswordMinimumNumeric(@Nullable ComponentName admin, int userHandle) { |
Konstantin Lopyrev | a15dcfa | 2010-05-24 17:10:56 -0700 | [diff] [blame] | 2069 | if (mService != null) { |
| 2070 | try { |
Esteban Talavera | 6239991 | 2016-01-11 15:37:55 +0000 | [diff] [blame] | 2071 | return mService.getPasswordMinimumNumeric(admin, userHandle, mParentInstance); |
Konstantin Lopyrev | a15dcfa | 2010-05-24 17:10:56 -0700 | [diff] [blame] | 2072 | } catch (RemoteException e) { |
Jeff Sharkey | dbff9ca | 2016-03-01 19:46:25 -0700 | [diff] [blame] | 2073 | throw e.rethrowFromSystemServer(); |
Konstantin Lopyrev | a15dcfa | 2010-05-24 17:10:56 -0700 | [diff] [blame] | 2074 | } |
| 2075 | } |
| 2076 | return 0; |
| 2077 | } |
| 2078 | |
| 2079 | /** |
Suprabh Shukla | 34d92ef | 2016-03-14 13:49:37 -0700 | [diff] [blame] | 2080 | * Called by an application that is administering the device to set the minimum number of |
| 2081 | * symbols required in the password. After setting this, the user will not be able to enter a |
| 2082 | * new password that is not at least as restrictive as what has been set. Note that the current |
| 2083 | * password will remain until the user has set a new one, so the change does not take place |
| 2084 | * immediately. To prompt the user for a new password, use {@link #ACTION_SET_NEW_PASSWORD} or |
| 2085 | * {@link #ACTION_SET_NEW_PARENT_PROFILE_PASSWORD} after setting this value. This constraint is |
| 2086 | * only imposed if the administrator has also requested {@link #PASSWORD_QUALITY_COMPLEX} with |
| 2087 | * {@link #setPasswordQuality}. The default value is 1. |
Konstantin Lopyrev | a15dcfa | 2010-05-24 17:10:56 -0700 | [diff] [blame] | 2088 | * <p> |
| 2089 | * The calling device admin must have requested |
Suprabh Shukla | 34d92ef | 2016-03-14 13:49:37 -0700 | [diff] [blame] | 2090 | * {@link DeviceAdminInfo#USES_POLICY_LIMIT_PASSWORD} to be able to call this method; if it has |
| 2091 | * not, a security exception will be thrown. |
| 2092 | * <p> |
| 2093 | * This method can be called on the {@link DevicePolicyManager} instance returned by |
| 2094 | * {@link #getParentProfileInstance(ComponentName)} in order to set restrictions on the parent |
| 2095 | * profile. |
Konstantin Lopyrev | a15dcfa | 2010-05-24 17:10:56 -0700 | [diff] [blame] | 2096 | * |
Suprabh Shukla | 34d92ef | 2016-03-14 13:49:37 -0700 | [diff] [blame] | 2097 | * @param admin Which {@link DeviceAdminReceiver} this request is associated with. |
| 2098 | * @param length The new desired minimum number of symbols required in the password. A value of |
| 2099 | * 0 means there is no restriction. |
| 2100 | * @throws SecurityException if {@code admin} is not an active administrator or {@code admin} |
| 2101 | * does not use {@link DeviceAdminInfo#USES_POLICY_LIMIT_PASSWORD} |
Konstantin Lopyrev | a15dcfa | 2010-05-24 17:10:56 -0700 | [diff] [blame] | 2102 | */ |
Robin Lee | 25e2645 | 2015-06-02 09:56:29 -0700 | [diff] [blame] | 2103 | public void setPasswordMinimumSymbols(@NonNull ComponentName admin, int length) { |
Konstantin Lopyrev | a15dcfa | 2010-05-24 17:10:56 -0700 | [diff] [blame] | 2104 | if (mService != null) { |
| 2105 | try { |
Esteban Talavera | 6239991 | 2016-01-11 15:37:55 +0000 | [diff] [blame] | 2106 | mService.setPasswordMinimumSymbols(admin, length, mParentInstance); |
Konstantin Lopyrev | a15dcfa | 2010-05-24 17:10:56 -0700 | [diff] [blame] | 2107 | } catch (RemoteException e) { |
Jeff Sharkey | dbff9ca | 2016-03-01 19:46:25 -0700 | [diff] [blame] | 2108 | throw e.rethrowFromSystemServer(); |
Konstantin Lopyrev | a15dcfa | 2010-05-24 17:10:56 -0700 | [diff] [blame] | 2109 | } |
| 2110 | } |
| 2111 | } |
| 2112 | |
| 2113 | /** |
Esteban Talavera | c1c8359 | 2016-02-17 17:56:15 +0000 | [diff] [blame] | 2114 | * Retrieve the current number of symbols required in the password |
Rubin Xu | d3609d4 | 2016-07-13 18:32:57 +0100 | [diff] [blame] | 2115 | * for a particular admin or all admins that set restrictions on this user |
Esteban Talavera | c1c8359 | 2016-02-17 17:56:15 +0000 | [diff] [blame] | 2116 | * and its participating profiles. Restrictions on profiles that have |
| 2117 | * a separate challenge are not taken into account. This is the same value as |
| 2118 | * set by {@link #setPasswordMinimumSymbols(ComponentName, int)} |
Konstantin Lopyrev | c857740 | 2010-06-04 17:15:02 -0700 | [diff] [blame] | 2119 | * and only applies when the password quality is |
| 2120 | * {@link #PASSWORD_QUALITY_COMPLEX}. |
Konstantin Lopyrev | a15dcfa | 2010-05-24 17:10:56 -0700 | [diff] [blame] | 2121 | * |
Esteban Talavera | c1c8359 | 2016-02-17 17:56:15 +0000 | [diff] [blame] | 2122 | * <p>This method can be called on the {@link DevicePolicyManager} instance |
| 2123 | * returned by {@link #getParentProfileInstance(ComponentName)} in order to retrieve |
| 2124 | * restrictions on the parent profile. |
| 2125 | * |
Robin Lee | 25e2645 | 2015-06-02 09:56:29 -0700 | [diff] [blame] | 2126 | * @param admin The name of the admin component to check, or {@code null} to |
Konstantin Lopyrev | a15dcfa | 2010-05-24 17:10:56 -0700 | [diff] [blame] | 2127 | * aggregate all admins. |
| 2128 | * @return The minimum number of symbols required in the password. |
| 2129 | */ |
Robin Lee | 25e2645 | 2015-06-02 09:56:29 -0700 | [diff] [blame] | 2130 | public int getPasswordMinimumSymbols(@Nullable ComponentName admin) { |
Makoto Onuki | cc4bbeb | 2015-09-17 10:28:24 -0700 | [diff] [blame] | 2131 | return getPasswordMinimumSymbols(admin, myUserId()); |
Amith Yamasani | 599dd7c | 2012-09-14 23:20:08 -0700 | [diff] [blame] | 2132 | } |
| 2133 | |
| 2134 | /** @hide per-user version */ |
Robin Lee | 25e2645 | 2015-06-02 09:56:29 -0700 | [diff] [blame] | 2135 | public int getPasswordMinimumSymbols(@Nullable ComponentName admin, int userHandle) { |
Konstantin Lopyrev | a15dcfa | 2010-05-24 17:10:56 -0700 | [diff] [blame] | 2136 | if (mService != null) { |
| 2137 | try { |
Esteban Talavera | 6239991 | 2016-01-11 15:37:55 +0000 | [diff] [blame] | 2138 | return mService.getPasswordMinimumSymbols(admin, userHandle, mParentInstance); |
Konstantin Lopyrev | a15dcfa | 2010-05-24 17:10:56 -0700 | [diff] [blame] | 2139 | } catch (RemoteException e) { |
Jeff Sharkey | dbff9ca | 2016-03-01 19:46:25 -0700 | [diff] [blame] | 2140 | throw e.rethrowFromSystemServer(); |
Konstantin Lopyrev | a15dcfa | 2010-05-24 17:10:56 -0700 | [diff] [blame] | 2141 | } |
| 2142 | } |
| 2143 | return 0; |
| 2144 | } |
| 2145 | |
Konstantin Lopyrev | c857740 | 2010-06-04 17:15:02 -0700 | [diff] [blame] | 2146 | /** |
Suprabh Shukla | 34d92ef | 2016-03-14 13:49:37 -0700 | [diff] [blame] | 2147 | * Called by an application that is administering the device to set the minimum number of |
| 2148 | * non-letter characters (numerical digits or symbols) required in the password. After setting |
| 2149 | * this, the user will not be able to enter a new password that is not at least as restrictive |
| 2150 | * as what has been set. Note that the current password will remain until the user has set a new |
| 2151 | * one, so the change does not take place immediately. To prompt the user for a new password, |
| 2152 | * use {@link #ACTION_SET_NEW_PASSWORD} or {@link #ACTION_SET_NEW_PARENT_PROFILE_PASSWORD} after |
| 2153 | * setting this value. This constraint is only imposed if the administrator has also requested |
| 2154 | * {@link #PASSWORD_QUALITY_COMPLEX} with {@link #setPasswordQuality}. The default value is 0. |
Konstantin Lopyrev | c857740 | 2010-06-04 17:15:02 -0700 | [diff] [blame] | 2155 | * <p> |
| 2156 | * The calling device admin must have requested |
Suprabh Shukla | 34d92ef | 2016-03-14 13:49:37 -0700 | [diff] [blame] | 2157 | * {@link DeviceAdminInfo#USES_POLICY_LIMIT_PASSWORD} to be able to call this method; if it has |
| 2158 | * not, a security exception will be thrown. |
| 2159 | * <p> |
| 2160 | * This method can be called on the {@link DevicePolicyManager} instance returned by |
| 2161 | * {@link #getParentProfileInstance(ComponentName)} in order to set restrictions on the parent |
| 2162 | * profile. |
Konstantin Lopyrev | c857740 | 2010-06-04 17:15:02 -0700 | [diff] [blame] | 2163 | * |
Suprabh Shukla | 34d92ef | 2016-03-14 13:49:37 -0700 | [diff] [blame] | 2164 | * @param admin Which {@link DeviceAdminReceiver} this request is associated with. |
| 2165 | * @param length The new desired minimum number of letters required in the password. A value of |
| 2166 | * 0 means there is no restriction. |
| 2167 | * @throws SecurityException if {@code admin} is not an active administrator or {@code admin} |
| 2168 | * does not use {@link DeviceAdminInfo#USES_POLICY_LIMIT_PASSWORD} |
Konstantin Lopyrev | c857740 | 2010-06-04 17:15:02 -0700 | [diff] [blame] | 2169 | */ |
Robin Lee | 25e2645 | 2015-06-02 09:56:29 -0700 | [diff] [blame] | 2170 | public void setPasswordMinimumNonLetter(@NonNull ComponentName admin, int length) { |
Konstantin Lopyrev | c857740 | 2010-06-04 17:15:02 -0700 | [diff] [blame] | 2171 | if (mService != null) { |
| 2172 | try { |
Esteban Talavera | 6239991 | 2016-01-11 15:37:55 +0000 | [diff] [blame] | 2173 | mService.setPasswordMinimumNonLetter(admin, length, mParentInstance); |
Konstantin Lopyrev | c857740 | 2010-06-04 17:15:02 -0700 | [diff] [blame] | 2174 | } catch (RemoteException e) { |
Jeff Sharkey | dbff9ca | 2016-03-01 19:46:25 -0700 | [diff] [blame] | 2175 | throw e.rethrowFromSystemServer(); |
Konstantin Lopyrev | c857740 | 2010-06-04 17:15:02 -0700 | [diff] [blame] | 2176 | } |
| 2177 | } |
| 2178 | } |
| 2179 | |
| 2180 | /** |
Esteban Talavera | c1c8359 | 2016-02-17 17:56:15 +0000 | [diff] [blame] | 2181 | * Retrieve the current number of non-letter characters required in the password |
Rubin Xu | d3609d4 | 2016-07-13 18:32:57 +0100 | [diff] [blame] | 2182 | * for a particular admin or all admins that set restrictions on this user |
Esteban Talavera | c1c8359 | 2016-02-17 17:56:15 +0000 | [diff] [blame] | 2183 | * and its participating profiles. Restrictions on profiles that have |
| 2184 | * a separate challenge are not taken into account. |
Jessica Hummel | 91da58d | 2014-04-10 17:39:43 +0100 | [diff] [blame] | 2185 | * This is the same value as set by |
Esteban Talavera | c1c8359 | 2016-02-17 17:56:15 +0000 | [diff] [blame] | 2186 | * {@link #setPasswordMinimumNonLetter(ComponentName, int)} |
Konstantin Lopyrev | c857740 | 2010-06-04 17:15:02 -0700 | [diff] [blame] | 2187 | * and only applies when the password quality is |
| 2188 | * {@link #PASSWORD_QUALITY_COMPLEX}. |
| 2189 | * |
Esteban Talavera | c1c8359 | 2016-02-17 17:56:15 +0000 | [diff] [blame] | 2190 | * <p>This method can be called on the {@link DevicePolicyManager} instance |
| 2191 | * returned by {@link #getParentProfileInstance(ComponentName)} in order to retrieve |
| 2192 | * restrictions on the parent profile. |
| 2193 | * |
Robin Lee | 25e2645 | 2015-06-02 09:56:29 -0700 | [diff] [blame] | 2194 | * @param admin The name of the admin component to check, or {@code null} to |
Konstantin Lopyrev | c857740 | 2010-06-04 17:15:02 -0700 | [diff] [blame] | 2195 | * aggregate all admins. |
| 2196 | * @return The minimum number of letters required in the password. |
| 2197 | */ |
Robin Lee | 25e2645 | 2015-06-02 09:56:29 -0700 | [diff] [blame] | 2198 | public int getPasswordMinimumNonLetter(@Nullable ComponentName admin) { |
Makoto Onuki | cc4bbeb | 2015-09-17 10:28:24 -0700 | [diff] [blame] | 2199 | return getPasswordMinimumNonLetter(admin, myUserId()); |
Amith Yamasani | 599dd7c | 2012-09-14 23:20:08 -0700 | [diff] [blame] | 2200 | } |
| 2201 | |
| 2202 | /** @hide per-user version */ |
Robin Lee | 25e2645 | 2015-06-02 09:56:29 -0700 | [diff] [blame] | 2203 | public int getPasswordMinimumNonLetter(@Nullable ComponentName admin, int userHandle) { |
Konstantin Lopyrev | c857740 | 2010-06-04 17:15:02 -0700 | [diff] [blame] | 2204 | if (mService != null) { |
| 2205 | try { |
Esteban Talavera | 6239991 | 2016-01-11 15:37:55 +0000 | [diff] [blame] | 2206 | return mService.getPasswordMinimumNonLetter(admin, userHandle, mParentInstance); |
Konstantin Lopyrev | c857740 | 2010-06-04 17:15:02 -0700 | [diff] [blame] | 2207 | } catch (RemoteException e) { |
Jeff Sharkey | dbff9ca | 2016-03-01 19:46:25 -0700 | [diff] [blame] | 2208 | throw e.rethrowFromSystemServer(); |
Konstantin Lopyrev | c857740 | 2010-06-04 17:15:02 -0700 | [diff] [blame] | 2209 | } |
| 2210 | } |
| 2211 | return 0; |
| 2212 | } |
| 2213 | |
Suprabh Shukla | 34d92ef | 2016-03-14 13:49:37 -0700 | [diff] [blame] | 2214 | /** |
| 2215 | * Called by an application that is administering the device to set the length of the password |
| 2216 | * history. After setting this, the user will not be able to enter a new password that is the |
| 2217 | * same as any password in the history. Note that the current password will remain until the |
| 2218 | * user has set a new one, so the change does not take place immediately. To prompt the user for |
| 2219 | * a new password, use {@link #ACTION_SET_NEW_PASSWORD} or |
| 2220 | * {@link #ACTION_SET_NEW_PARENT_PROFILE_PASSWORD} after setting this value. This constraint is |
| 2221 | * only imposed if the administrator has also requested either {@link #PASSWORD_QUALITY_NUMERIC} |
| 2222 | * , {@link #PASSWORD_QUALITY_NUMERIC_COMPLEX} {@link #PASSWORD_QUALITY_ALPHABETIC}, or |
| 2223 | * {@link #PASSWORD_QUALITY_ALPHANUMERIC} with {@link #setPasswordQuality}. |
| 2224 | * <p> |
| 2225 | * The calling device admin must have requested |
| 2226 | * {@link DeviceAdminInfo#USES_POLICY_LIMIT_PASSWORD} to be able to call this method; if it has |
| 2227 | * not, a security exception will be thrown. |
| 2228 | * <p> |
| 2229 | * This method can be called on the {@link DevicePolicyManager} instance returned by |
| 2230 | * {@link #getParentProfileInstance(ComponentName)} in order to set restrictions on the parent |
| 2231 | * profile. |
| 2232 | * |
| 2233 | * @param admin Which {@link DeviceAdminReceiver} this request is associated with. |
| 2234 | * @param length The new desired length of password history. A value of 0 means there is no |
| 2235 | * restriction. |
| 2236 | * @throws SecurityException if {@code admin} is not an active administrator or {@code admin} |
| 2237 | * does not use {@link DeviceAdminInfo#USES_POLICY_LIMIT_PASSWORD} |
| 2238 | */ |
Robin Lee | 25e2645 | 2015-06-02 09:56:29 -0700 | [diff] [blame] | 2239 | public void setPasswordHistoryLength(@NonNull ComponentName admin, int length) { |
Konstantin Lopyrev | 3255823 | 2010-05-20 16:18:05 -0700 | [diff] [blame] | 2240 | if (mService != null) { |
| 2241 | try { |
Esteban Talavera | 6239991 | 2016-01-11 15:37:55 +0000 | [diff] [blame] | 2242 | mService.setPasswordHistoryLength(admin, length, mParentInstance); |
Konstantin Lopyrev | 3255823 | 2010-05-20 16:18:05 -0700 | [diff] [blame] | 2243 | } catch (RemoteException e) { |
Jeff Sharkey | dbff9ca | 2016-03-01 19:46:25 -0700 | [diff] [blame] | 2244 | throw e.rethrowFromSystemServer(); |
Konstantin Lopyrev | 3255823 | 2010-05-20 16:18:05 -0700 | [diff] [blame] | 2245 | } |
| 2246 | } |
| 2247 | } |
| 2248 | |
| 2249 | /** |
Suprabh Shukla | 34d92ef | 2016-03-14 13:49:37 -0700 | [diff] [blame] | 2250 | * Called by a device admin to set the password expiration timeout. Calling this method will |
| 2251 | * restart the countdown for password expiration for the given admin, as will changing the |
| 2252 | * device password (for all admins). |
| 2253 | * <p> |
| 2254 | * The provided timeout is the time delta in ms and will be added to the current time. For |
| 2255 | * example, to have the password expire 5 days from now, timeout would be 5 * 86400 * 1000 = |
| 2256 | * 432000000 ms for timeout. |
| 2257 | * <p> |
| 2258 | * To disable password expiration, a value of 0 may be used for timeout. |
| 2259 | * <p> |
| 2260 | * The calling device admin must have requested |
| 2261 | * {@link DeviceAdminInfo#USES_POLICY_EXPIRE_PASSWORD} to be able to call this method; if it has |
| 2262 | * not, a security exception will be thrown. |
| 2263 | * <p> |
| 2264 | * Note that setting the password will automatically reset the expiration time for all active |
| 2265 | * admins. Active admins do not need to explicitly call this method in that case. |
| 2266 | * <p> |
| 2267 | * This method can be called on the {@link DevicePolicyManager} instance returned by |
| 2268 | * {@link #getParentProfileInstance(ComponentName)} in order to set restrictions on the parent |
| 2269 | * profile. |
Esteban Talavera | c1c8359 | 2016-02-17 17:56:15 +0000 | [diff] [blame] | 2270 | * |
Jim Miller | a4e28d1 | 2010-11-08 16:15:47 -0800 | [diff] [blame] | 2271 | * @param admin Which {@link DeviceAdminReceiver} this request is associated with. |
Suprabh Shukla | 34d92ef | 2016-03-14 13:49:37 -0700 | [diff] [blame] | 2272 | * @param timeout The limit (in ms) that a password can remain in effect. A value of 0 means |
| 2273 | * there is no restriction (unlimited). |
| 2274 | * @throws SecurityException if {@code admin} is not an active administrator or {@code admin} |
| 2275 | * does not use {@link DeviceAdminInfo#USES_POLICY_EXPIRE_PASSWORD} |
Jim Miller | a4e28d1 | 2010-11-08 16:15:47 -0800 | [diff] [blame] | 2276 | */ |
Robin Lee | 25e2645 | 2015-06-02 09:56:29 -0700 | [diff] [blame] | 2277 | public void setPasswordExpirationTimeout(@NonNull ComponentName admin, long timeout) { |
Jim Miller | a4e28d1 | 2010-11-08 16:15:47 -0800 | [diff] [blame] | 2278 | if (mService != null) { |
| 2279 | try { |
Esteban Talavera | 6239991 | 2016-01-11 15:37:55 +0000 | [diff] [blame] | 2280 | mService.setPasswordExpirationTimeout(admin, timeout, mParentInstance); |
Jim Miller | a4e28d1 | 2010-11-08 16:15:47 -0800 | [diff] [blame] | 2281 | } catch (RemoteException e) { |
Jeff Sharkey | dbff9ca | 2016-03-01 19:46:25 -0700 | [diff] [blame] | 2282 | throw e.rethrowFromSystemServer(); |
Jim Miller | a4e28d1 | 2010-11-08 16:15:47 -0800 | [diff] [blame] | 2283 | } |
| 2284 | } |
| 2285 | } |
| 2286 | |
| 2287 | /** |
Jim Miller | 6b85768 | 2011-02-16 16:27:41 -0800 | [diff] [blame] | 2288 | * Get the password expiration timeout for the given admin. The expiration timeout is the |
| 2289 | * recurring expiration timeout provided in the call to |
| 2290 | * {@link #setPasswordExpirationTimeout(ComponentName, long)} for the given admin or the |
Esteban Talavera | c1c8359 | 2016-02-17 17:56:15 +0000 | [diff] [blame] | 2291 | * aggregate of all participating policy administrators if {@code admin} is null. Admins that |
| 2292 | * have set restrictions on profiles that have a separate challenge are not taken into account. |
| 2293 | * |
| 2294 | * <p>This method can be called on the {@link DevicePolicyManager} instance |
| 2295 | * returned by {@link #getParentProfileInstance(ComponentName)} in order to retrieve |
| 2296 | * restrictions on the parent profile. |
Jim Miller | a4e28d1 | 2010-11-08 16:15:47 -0800 | [diff] [blame] | 2297 | * |
Robin Lee | 25e2645 | 2015-06-02 09:56:29 -0700 | [diff] [blame] | 2298 | * @param admin The name of the admin component to check, or {@code null} to aggregate all admins. |
Jim Miller | a4e28d1 | 2010-11-08 16:15:47 -0800 | [diff] [blame] | 2299 | * @return The timeout for the given admin or the minimum of all timeouts |
| 2300 | */ |
Robin Lee | 25e2645 | 2015-06-02 09:56:29 -0700 | [diff] [blame] | 2301 | public long getPasswordExpirationTimeout(@Nullable ComponentName admin) { |
Jim Miller | a4e28d1 | 2010-11-08 16:15:47 -0800 | [diff] [blame] | 2302 | if (mService != null) { |
| 2303 | try { |
Esteban Talavera | 6239991 | 2016-01-11 15:37:55 +0000 | [diff] [blame] | 2304 | return mService.getPasswordExpirationTimeout(admin, myUserId(), mParentInstance); |
Jim Miller | a4e28d1 | 2010-11-08 16:15:47 -0800 | [diff] [blame] | 2305 | } catch (RemoteException e) { |
Jeff Sharkey | dbff9ca | 2016-03-01 19:46:25 -0700 | [diff] [blame] | 2306 | throw e.rethrowFromSystemServer(); |
Jim Miller | a4e28d1 | 2010-11-08 16:15:47 -0800 | [diff] [blame] | 2307 | } |
| 2308 | } |
| 2309 | return 0; |
| 2310 | } |
| 2311 | |
| 2312 | /** |
Esteban Talavera | c1c8359 | 2016-02-17 17:56:15 +0000 | [diff] [blame] | 2313 | * Get the current password expiration time for a particular admin or all admins that set |
Rubin Xu | d3609d4 | 2016-07-13 18:32:57 +0100 | [diff] [blame] | 2314 | * restrictions on this user and its participating profiles. Restrictions on profiles that have |
Esteban Talavera | c1c8359 | 2016-02-17 17:56:15 +0000 | [diff] [blame] | 2315 | * a separate challenge are not taken into account. If admin is {@code null}, then a composite |
| 2316 | * of all expiration times is returned - which will be the minimum of all of them. |
| 2317 | * |
| 2318 | * <p>This method can be called on the {@link DevicePolicyManager} instance |
| 2319 | * returned by {@link #getParentProfileInstance(ComponentName)} in order to retrieve |
| 2320 | * the password expiration for the parent profile. |
Jim Miller | a4e28d1 | 2010-11-08 16:15:47 -0800 | [diff] [blame] | 2321 | * |
Robin Lee | 25e2645 | 2015-06-02 09:56:29 -0700 | [diff] [blame] | 2322 | * @param admin The name of the admin component to check, or {@code null} to aggregate all admins. |
Esteban Talavera | c1c8359 | 2016-02-17 17:56:15 +0000 | [diff] [blame] | 2323 | * @return The password expiration time, in milliseconds since epoch. |
Jim Miller | a4e28d1 | 2010-11-08 16:15:47 -0800 | [diff] [blame] | 2324 | */ |
Robin Lee | 25e2645 | 2015-06-02 09:56:29 -0700 | [diff] [blame] | 2325 | public long getPasswordExpiration(@Nullable ComponentName admin) { |
Jim Miller | a4e28d1 | 2010-11-08 16:15:47 -0800 | [diff] [blame] | 2326 | if (mService != null) { |
| 2327 | try { |
Esteban Talavera | 6239991 | 2016-01-11 15:37:55 +0000 | [diff] [blame] | 2328 | return mService.getPasswordExpiration(admin, myUserId(), mParentInstance); |
Jim Miller | a4e28d1 | 2010-11-08 16:15:47 -0800 | [diff] [blame] | 2329 | } catch (RemoteException e) { |
Jeff Sharkey | dbff9ca | 2016-03-01 19:46:25 -0700 | [diff] [blame] | 2330 | throw e.rethrowFromSystemServer(); |
Jim Miller | a4e28d1 | 2010-11-08 16:15:47 -0800 | [diff] [blame] | 2331 | } |
| 2332 | } |
| 2333 | return 0; |
| 2334 | } |
| 2335 | |
| 2336 | /** |
Esteban Talavera | c1c8359 | 2016-02-17 17:56:15 +0000 | [diff] [blame] | 2337 | * Retrieve the current password history length for a particular admin or all admins that |
Rubin Xu | d3609d4 | 2016-07-13 18:32:57 +0100 | [diff] [blame] | 2338 | * set restrictions on this user and its participating profiles. Restrictions on profiles that |
Esteban Talavera | c1c8359 | 2016-02-17 17:56:15 +0000 | [diff] [blame] | 2339 | * have a separate challenge are not taken into account. |
| 2340 | * |
| 2341 | * <p>This method can be called on the {@link DevicePolicyManager} instance |
| 2342 | * returned by {@link #getParentProfileInstance(ComponentName)} in order to retrieve |
| 2343 | * restrictions on the parent profile. |
| 2344 | * |
Robin Lee | 25e2645 | 2015-06-02 09:56:29 -0700 | [diff] [blame] | 2345 | * @param admin The name of the admin component to check, or {@code null} to aggregate |
Konstantin Lopyrev | 3255823 | 2010-05-20 16:18:05 -0700 | [diff] [blame] | 2346 | * all admins. |
| 2347 | * @return The length of the password history |
| 2348 | */ |
Robin Lee | 25e2645 | 2015-06-02 09:56:29 -0700 | [diff] [blame] | 2349 | public int getPasswordHistoryLength(@Nullable ComponentName admin) { |
Makoto Onuki | cc4bbeb | 2015-09-17 10:28:24 -0700 | [diff] [blame] | 2350 | return getPasswordHistoryLength(admin, myUserId()); |
Amith Yamasani | 599dd7c | 2012-09-14 23:20:08 -0700 | [diff] [blame] | 2351 | } |
| 2352 | |
| 2353 | /** @hide per-user version */ |
Robin Lee | 25e2645 | 2015-06-02 09:56:29 -0700 | [diff] [blame] | 2354 | public int getPasswordHistoryLength(@Nullable ComponentName admin, int userHandle) { |
Konstantin Lopyrev | 3255823 | 2010-05-20 16:18:05 -0700 | [diff] [blame] | 2355 | if (mService != null) { |
| 2356 | try { |
Esteban Talavera | 6239991 | 2016-01-11 15:37:55 +0000 | [diff] [blame] | 2357 | return mService.getPasswordHistoryLength(admin, userHandle, mParentInstance); |
Konstantin Lopyrev | 3255823 | 2010-05-20 16:18:05 -0700 | [diff] [blame] | 2358 | } catch (RemoteException e) { |
Jeff Sharkey | dbff9ca | 2016-03-01 19:46:25 -0700 | [diff] [blame] | 2359 | throw e.rethrowFromSystemServer(); |
Konstantin Lopyrev | 3255823 | 2010-05-20 16:18:05 -0700 | [diff] [blame] | 2360 | } |
| 2361 | } |
| 2362 | return 0; |
| 2363 | } |
| 2364 | |
Dianne Hackborn | d684784 | 2010-01-12 18:14:19 -0800 | [diff] [blame] | 2365 | /** |
Dianne Hackborn | 254cb44 | 2010-01-27 19:23:59 -0800 | [diff] [blame] | 2366 | * Return the maximum password length that the device supports for a |
Dianne Hackborn | 9327f4f | 2010-01-29 10:38:29 -0800 | [diff] [blame] | 2367 | * particular password quality. |
Dianne Hackborn | 364f6e3 | 2010-01-29 17:38:20 -0800 | [diff] [blame] | 2368 | * @param quality The quality being interrogated. |
Dianne Hackborn | 254cb44 | 2010-01-27 19:23:59 -0800 | [diff] [blame] | 2369 | * @return Returns the maximum length that the user can enter. |
| 2370 | */ |
Dianne Hackborn | 9327f4f | 2010-01-29 10:38:29 -0800 | [diff] [blame] | 2371 | public int getPasswordMaximumLength(int quality) { |
Dianne Hackborn | 254cb44 | 2010-01-27 19:23:59 -0800 | [diff] [blame] | 2372 | // Kind-of arbitrary. |
| 2373 | return 16; |
| 2374 | } |
Konstantin Lopyrev | 3255823 | 2010-05-20 16:18:05 -0700 | [diff] [blame] | 2375 | |
Dianne Hackborn | 254cb44 | 2010-01-27 19:23:59 -0800 | [diff] [blame] | 2376 | /** |
Suprabh Shukla | 34d92ef | 2016-03-14 13:49:37 -0700 | [diff] [blame] | 2377 | * Determine whether the current password the user has set is sufficient to meet the policy |
| 2378 | * requirements (e.g. quality, minimum length) that have been requested by the admins of this |
| 2379 | * user and its participating profiles. Restrictions on profiles that have a separate challenge |
Andrew Scull | 5daf273 | 2016-11-14 15:02:45 +0000 | [diff] [blame] | 2380 | * are not taken into account. The user must be unlocked in order to perform the check. |
Suprabh Shukla | 34d92ef | 2016-03-14 13:49:37 -0700 | [diff] [blame] | 2381 | * <p> |
| 2382 | * The calling device admin must have requested |
| 2383 | * {@link DeviceAdminInfo#USES_POLICY_LIMIT_PASSWORD} to be able to call this method; if it has |
| 2384 | * not, a security exception will be thrown. |
| 2385 | * <p> |
| 2386 | * This method can be called on the {@link DevicePolicyManager} instance returned by |
| 2387 | * {@link #getParentProfileInstance(ComponentName)} in order to determine if the password set on |
| 2388 | * the parent profile is sufficient. |
Esteban Talavera | c1c8359 | 2016-02-17 17:56:15 +0000 | [diff] [blame] | 2389 | * |
Jessica Hummel | 91da58d | 2014-04-10 17:39:43 +0100 | [diff] [blame] | 2390 | * @return Returns true if the password meets the current requirements, else false. |
Suprabh Shukla | 34d92ef | 2016-03-14 13:49:37 -0700 | [diff] [blame] | 2391 | * @throws SecurityException if the calling application does not own an active administrator |
| 2392 | * that uses {@link DeviceAdminInfo#USES_POLICY_LIMIT_PASSWORD} |
Andrew Scull | 5daf273 | 2016-11-14 15:02:45 +0000 | [diff] [blame] | 2393 | * @throws InvalidStateException if the user is not unlocked. |
Dianne Hackborn | d684784 | 2010-01-12 18:14:19 -0800 | [diff] [blame] | 2394 | */ |
Dianne Hackborn | df83afa | 2010-01-20 13:37:26 -0800 | [diff] [blame] | 2395 | public boolean isActivePasswordSufficient() { |
Dianne Hackborn | d684784 | 2010-01-12 18:14:19 -0800 | [diff] [blame] | 2396 | if (mService != null) { |
| 2397 | try { |
Clara Bayarri | 3e826ef | 2015-12-14 17:51:22 +0000 | [diff] [blame] | 2398 | return mService.isActivePasswordSufficient(myUserId(), mParentInstance); |
Dianne Hackborn | d684784 | 2010-01-12 18:14:19 -0800 | [diff] [blame] | 2399 | } catch (RemoteException e) { |
Jeff Sharkey | dbff9ca | 2016-03-01 19:46:25 -0700 | [diff] [blame] | 2400 | throw e.rethrowFromSystemServer(); |
Dianne Hackborn | d684784 | 2010-01-12 18:14:19 -0800 | [diff] [blame] | 2401 | } |
| 2402 | } |
Dianne Hackborn | df83afa | 2010-01-20 13:37:26 -0800 | [diff] [blame] | 2403 | return false; |
Dianne Hackborn | d684784 | 2010-01-12 18:14:19 -0800 | [diff] [blame] | 2404 | } |
Konstantin Lopyrev | 3255823 | 2010-05-20 16:18:05 -0700 | [diff] [blame] | 2405 | |
Dianne Hackborn | d684784 | 2010-01-12 18:14:19 -0800 | [diff] [blame] | 2406 | /** |
Clara Bayarri | d769391 | 2016-01-22 17:26:31 +0000 | [diff] [blame] | 2407 | * Determine whether the current profile password the user has set is sufficient |
Esteban Talavera | c1c8359 | 2016-02-17 17:56:15 +0000 | [diff] [blame] | 2408 | * to meet the policy requirements (e.g. quality, minimum length) that have been |
Clara Bayarri | d769391 | 2016-01-22 17:26:31 +0000 | [diff] [blame] | 2409 | * requested by the admins of the parent user and its profiles. |
| 2410 | * |
| 2411 | * @param userHandle the userId of the profile to check the password for. |
| 2412 | * @return Returns true if the password would meet the current requirements, else false. |
Suprabh Shukla | 34d92ef | 2016-03-14 13:49:37 -0700 | [diff] [blame] | 2413 | * @throws SecurityException if {@code userHandle} is not a managed profile. |
Clara Bayarri | d769391 | 2016-01-22 17:26:31 +0000 | [diff] [blame] | 2414 | * @hide |
| 2415 | */ |
| 2416 | public boolean isProfileActivePasswordSufficientForParent(int userHandle) { |
| 2417 | if (mService != null) { |
| 2418 | try { |
| 2419 | return mService.isProfileActivePasswordSufficientForParent(userHandle); |
| 2420 | } catch (RemoteException e) { |
Jeff Sharkey | dbff9ca | 2016-03-01 19:46:25 -0700 | [diff] [blame] | 2421 | throw e.rethrowFromSystemServer(); |
Clara Bayarri | d769391 | 2016-01-22 17:26:31 +0000 | [diff] [blame] | 2422 | } |
| 2423 | } |
| 2424 | return false; |
| 2425 | } |
| 2426 | |
| 2427 | /** |
Suprabh Shukla | 34d92ef | 2016-03-14 13:49:37 -0700 | [diff] [blame] | 2428 | * Retrieve the number of times the user has failed at entering a password since that last |
| 2429 | * successful password entry. |
| 2430 | * <p> |
| 2431 | * This method can be called on the {@link DevicePolicyManager} instance returned by |
| 2432 | * {@link #getParentProfileInstance(ComponentName)} in order to retrieve the number of failed |
| 2433 | * password attemts for the parent user. |
| 2434 | * <p> |
| 2435 | * The calling device admin must have requested {@link DeviceAdminInfo#USES_POLICY_WATCH_LOGIN} |
| 2436 | * to be able to call this method; if it has not, a security exception will be thrown. |
Konstantin Lopyrev | 3255823 | 2010-05-20 16:18:05 -0700 | [diff] [blame] | 2437 | * |
Suprabh Shukla | 34d92ef | 2016-03-14 13:49:37 -0700 | [diff] [blame] | 2438 | * @return The number of times user has entered an incorrect password since the last correct |
| 2439 | * password entry. |
| 2440 | * @throws SecurityException if the calling application does not own an active administrator |
| 2441 | * that uses {@link DeviceAdminInfo#USES_POLICY_WATCH_LOGIN} |
Dianne Hackborn | d684784 | 2010-01-12 18:14:19 -0800 | [diff] [blame] | 2442 | */ |
| 2443 | public int getCurrentFailedPasswordAttempts() { |
Clara Bayarri | 51e41ad | 2016-02-11 17:48:53 +0000 | [diff] [blame] | 2444 | return getCurrentFailedPasswordAttempts(myUserId()); |
| 2445 | } |
| 2446 | |
| 2447 | /** |
| 2448 | * Retrieve the number of times the given user has failed at entering a |
| 2449 | * password since that last successful password entry. |
| 2450 | * |
| 2451 | * <p>The calling device admin must have requested |
| 2452 | * {@link DeviceAdminInfo#USES_POLICY_WATCH_LOGIN} to be able to call this method; if it has |
| 2453 | * not and it is not the system uid, a security exception will be thrown. |
| 2454 | * |
| 2455 | * @hide |
| 2456 | */ |
| 2457 | public int getCurrentFailedPasswordAttempts(int userHandle) { |
Dianne Hackborn | d684784 | 2010-01-12 18:14:19 -0800 | [diff] [blame] | 2458 | if (mService != null) { |
| 2459 | try { |
Clara Bayarri | 51e41ad | 2016-02-11 17:48:53 +0000 | [diff] [blame] | 2460 | return mService.getCurrentFailedPasswordAttempts(userHandle, mParentInstance); |
Dianne Hackborn | d684784 | 2010-01-12 18:14:19 -0800 | [diff] [blame] | 2461 | } catch (RemoteException e) { |
Jeff Sharkey | dbff9ca | 2016-03-01 19:46:25 -0700 | [diff] [blame] | 2462 | throw e.rethrowFromSystemServer(); |
Dianne Hackborn | d684784 | 2010-01-12 18:14:19 -0800 | [diff] [blame] | 2463 | } |
| 2464 | } |
| 2465 | return -1; |
| 2466 | } |
Dianne Hackborn | df83afa | 2010-01-20 13:37:26 -0800 | [diff] [blame] | 2467 | |
| 2468 | /** |
Craig Lafayette | 4e401fa | 2015-05-07 10:24:02 -0400 | [diff] [blame] | 2469 | * Queries whether {@link #RESET_PASSWORD_DO_NOT_ASK_CREDENTIALS_ON_BOOT} flag is set. |
Andrei Kapishnikov | 4eb6a36 | 2015-04-02 15:21:20 -0400 | [diff] [blame] | 2470 | * |
Craig Lafayette | 4e401fa | 2015-05-07 10:24:02 -0400 | [diff] [blame] | 2471 | * @return true if RESET_PASSWORD_DO_NOT_ASK_CREDENTIALS_ON_BOOT flag is set. |
Andrei Kapishnikov | 4eb6a36 | 2015-04-02 15:21:20 -0400 | [diff] [blame] | 2472 | * @hide |
| 2473 | */ |
| 2474 | public boolean getDoNotAskCredentialsOnBoot() { |
| 2475 | if (mService != null) { |
| 2476 | try { |
| 2477 | return mService.getDoNotAskCredentialsOnBoot(); |
| 2478 | } catch (RemoteException e) { |
Jeff Sharkey | dbff9ca | 2016-03-01 19:46:25 -0700 | [diff] [blame] | 2479 | throw e.rethrowFromSystemServer(); |
Andrei Kapishnikov | 4eb6a36 | 2015-04-02 15:21:20 -0400 | [diff] [blame] | 2480 | } |
| 2481 | } |
| 2482 | return false; |
| 2483 | } |
| 2484 | |
| 2485 | /** |
Suprabh Shukla | 34d92ef | 2016-03-14 13:49:37 -0700 | [diff] [blame] | 2486 | * Setting this to a value greater than zero enables a built-in policy that will perform a |
| 2487 | * device or profile wipe after too many incorrect device-unlock passwords have been entered. |
| 2488 | * This built-in policy combines watching for failed passwords and wiping the device, and |
| 2489 | * requires that you request both {@link DeviceAdminInfo#USES_POLICY_WATCH_LOGIN} and |
Dianne Hackborn | 8ea138c | 2010-01-26 18:01:04 -0800 | [diff] [blame] | 2490 | * {@link DeviceAdminInfo#USES_POLICY_WIPE_DATA}}. |
Suprabh Shukla | 34d92ef | 2016-03-14 13:49:37 -0700 | [diff] [blame] | 2491 | * <p> |
| 2492 | * To implement any other policy (e.g. wiping data for a particular application only, erasing or |
| 2493 | * revoking credentials, or reporting the failure to a server), you should implement |
| 2494 | * {@link DeviceAdminReceiver#onPasswordFailed(Context, android.content.Intent)} instead. Do not |
| 2495 | * use this API, because if the maximum count is reached, the device or profile will be wiped |
| 2496 | * immediately, and your callback will not be invoked. |
| 2497 | * <p> |
| 2498 | * This method can be called on the {@link DevicePolicyManager} instance returned by |
| 2499 | * {@link #getParentProfileInstance(ComponentName)} in order to set a value on the parent |
| 2500 | * profile. |
Konstantin Lopyrev | 3255823 | 2010-05-20 16:18:05 -0700 | [diff] [blame] | 2501 | * |
Dianne Hackborn | ef6b22f | 2010-02-16 20:38:49 -0800 | [diff] [blame] | 2502 | * @param admin Which {@link DeviceAdminReceiver} this request is associated with. |
Suprabh Shukla | 34d92ef | 2016-03-14 13:49:37 -0700 | [diff] [blame] | 2503 | * @param num The number of failed password attempts at which point the device or profile will |
| 2504 | * be wiped. |
| 2505 | * @throws SecurityException if {@code admin} is not an active administrator or does not use |
| 2506 | * both {@link DeviceAdminInfo#USES_POLICY_WATCH_LOGIN} and |
| 2507 | * {@link DeviceAdminInfo#USES_POLICY_WIPE_DATA}. |
Dianne Hackborn | 8ea138c | 2010-01-26 18:01:04 -0800 | [diff] [blame] | 2508 | */ |
Robin Lee | 25e2645 | 2015-06-02 09:56:29 -0700 | [diff] [blame] | 2509 | public void setMaximumFailedPasswordsForWipe(@NonNull ComponentName admin, int num) { |
Dianne Hackborn | 8ea138c | 2010-01-26 18:01:04 -0800 | [diff] [blame] | 2510 | if (mService != null) { |
| 2511 | try { |
Esteban Talavera | 6239991 | 2016-01-11 15:37:55 +0000 | [diff] [blame] | 2512 | mService.setMaximumFailedPasswordsForWipe(admin, num, mParentInstance); |
Dianne Hackborn | 8ea138c | 2010-01-26 18:01:04 -0800 | [diff] [blame] | 2513 | } catch (RemoteException e) { |
Jeff Sharkey | dbff9ca | 2016-03-01 19:46:25 -0700 | [diff] [blame] | 2514 | throw e.rethrowFromSystemServer(); |
Dianne Hackborn | 8ea138c | 2010-01-26 18:01:04 -0800 | [diff] [blame] | 2515 | } |
| 2516 | } |
| 2517 | } |
Konstantin Lopyrev | 3255823 | 2010-05-20 16:18:05 -0700 | [diff] [blame] | 2518 | |
Dianne Hackborn | 8ea138c | 2010-01-26 18:01:04 -0800 | [diff] [blame] | 2519 | /** |
Esteban Talavera | c1c8359 | 2016-02-17 17:56:15 +0000 | [diff] [blame] | 2520 | * Retrieve the current maximum number of login attempts that are allowed before the device |
Rubin Xu | d3609d4 | 2016-07-13 18:32:57 +0100 | [diff] [blame] | 2521 | * or profile is wiped, for a particular admin or all admins that set restrictions on this user |
Esteban Talavera | c1c8359 | 2016-02-17 17:56:15 +0000 | [diff] [blame] | 2522 | * and its participating profiles. Restrictions on profiles that have a separate challenge are |
| 2523 | * not taken into account. |
| 2524 | * |
| 2525 | * <p>This method can be called on the {@link DevicePolicyManager} instance |
| 2526 | * returned by {@link #getParentProfileInstance(ComponentName)} in order to retrieve |
| 2527 | * the value for the parent profile. |
| 2528 | * |
Robin Lee | 25e2645 | 2015-06-02 09:56:29 -0700 | [diff] [blame] | 2529 | * @param admin The name of the admin component to check, or {@code null} to aggregate |
Dianne Hackborn | 254cb44 | 2010-01-27 19:23:59 -0800 | [diff] [blame] | 2530 | * all admins. |
| 2531 | */ |
Robin Lee | 25e2645 | 2015-06-02 09:56:29 -0700 | [diff] [blame] | 2532 | public int getMaximumFailedPasswordsForWipe(@Nullable ComponentName admin) { |
Makoto Onuki | cc4bbeb | 2015-09-17 10:28:24 -0700 | [diff] [blame] | 2533 | return getMaximumFailedPasswordsForWipe(admin, myUserId()); |
Amith Yamasani | 599dd7c | 2012-09-14 23:20:08 -0700 | [diff] [blame] | 2534 | } |
| 2535 | |
| 2536 | /** @hide per-user version */ |
Robin Lee | 25e2645 | 2015-06-02 09:56:29 -0700 | [diff] [blame] | 2537 | public int getMaximumFailedPasswordsForWipe(@Nullable ComponentName admin, int userHandle) { |
Dianne Hackborn | 254cb44 | 2010-01-27 19:23:59 -0800 | [diff] [blame] | 2538 | if (mService != null) { |
| 2539 | try { |
Esteban Talavera | 6239991 | 2016-01-11 15:37:55 +0000 | [diff] [blame] | 2540 | return mService.getMaximumFailedPasswordsForWipe( |
| 2541 | admin, userHandle, mParentInstance); |
Dianne Hackborn | 254cb44 | 2010-01-27 19:23:59 -0800 | [diff] [blame] | 2542 | } catch (RemoteException e) { |
Jeff Sharkey | dbff9ca | 2016-03-01 19:46:25 -0700 | [diff] [blame] | 2543 | throw e.rethrowFromSystemServer(); |
Dianne Hackborn | 254cb44 | 2010-01-27 19:23:59 -0800 | [diff] [blame] | 2544 | } |
| 2545 | } |
| 2546 | return 0; |
| 2547 | } |
Konstantin Lopyrev | 3255823 | 2010-05-20 16:18:05 -0700 | [diff] [blame] | 2548 | |
Dianne Hackborn | 254cb44 | 2010-01-27 19:23:59 -0800 | [diff] [blame] | 2549 | /** |
Amith Yamasani | 3a3d212 | 2014-10-29 11:41:31 -0700 | [diff] [blame] | 2550 | * Returns the profile with the smallest maximum failed passwords for wipe, |
| 2551 | * for the given user. So for primary user, it might return the primary or |
| 2552 | * a managed profile. For a secondary user, it would be the same as the |
| 2553 | * user passed in. |
| 2554 | * @hide Used only by Keyguard |
| 2555 | */ |
| 2556 | public int getProfileWithMinimumFailedPasswordsForWipe(int userHandle) { |
| 2557 | if (mService != null) { |
| 2558 | try { |
Esteban Talavera | 6239991 | 2016-01-11 15:37:55 +0000 | [diff] [blame] | 2559 | return mService.getProfileWithMinimumFailedPasswordsForWipe( |
| 2560 | userHandle, mParentInstance); |
Amith Yamasani | 3a3d212 | 2014-10-29 11:41:31 -0700 | [diff] [blame] | 2561 | } catch (RemoteException e) { |
Jeff Sharkey | dbff9ca | 2016-03-01 19:46:25 -0700 | [diff] [blame] | 2562 | throw e.rethrowFromSystemServer(); |
Amith Yamasani | 3a3d212 | 2014-10-29 11:41:31 -0700 | [diff] [blame] | 2563 | } |
| 2564 | } |
| 2565 | return UserHandle.USER_NULL; |
| 2566 | } |
| 2567 | |
| 2568 | /** |
Dianne Hackborn | 87bba1e | 2010-02-26 17:25:54 -0800 | [diff] [blame] | 2569 | * Flag for {@link #resetPassword}: don't allow other admins to change |
| 2570 | * the password again until the user has entered it. |
| 2571 | */ |
| 2572 | public static final int RESET_PASSWORD_REQUIRE_ENTRY = 0x0001; |
Konstantin Lopyrev | 3255823 | 2010-05-20 16:18:05 -0700 | [diff] [blame] | 2573 | |
Dianne Hackborn | 87bba1e | 2010-02-26 17:25:54 -0800 | [diff] [blame] | 2574 | /** |
Andrei Kapishnikov | 4eb6a36 | 2015-04-02 15:21:20 -0400 | [diff] [blame] | 2575 | * Flag for {@link #resetPassword}: don't ask for user credentials on device boot. |
| 2576 | * If the flag is set, the device can be booted without asking for user password. |
| 2577 | * The absence of this flag does not change the current boot requirements. This flag |
| 2578 | * can be set by the device owner only. If the app is not the device owner, the flag |
| 2579 | * is ignored. Once the flag is set, it cannot be reverted back without resetting the |
| 2580 | * device to factory defaults. |
| 2581 | */ |
Craig Lafayette | 4e401fa | 2015-05-07 10:24:02 -0400 | [diff] [blame] | 2582 | public static final int RESET_PASSWORD_DO_NOT_ASK_CREDENTIALS_ON_BOOT = 0x0002; |
Andrei Kapishnikov | 4eb6a36 | 2015-04-02 15:21:20 -0400 | [diff] [blame] | 2583 | |
| 2584 | /** |
Suprabh Shukla | 34d92ef | 2016-03-14 13:49:37 -0700 | [diff] [blame] | 2585 | * Force a new device unlock password (the password needed to access the entire device, not for |
| 2586 | * individual accounts) on the user. This takes effect immediately. |
| 2587 | * <p> |
Suprabh Shukla | 34d92ef | 2016-03-14 13:49:37 -0700 | [diff] [blame] | 2588 | * <em>Note: This API has been limited as of {@link android.os.Build.VERSION_CODES#N} for |
Makoto Onuki | 70f929e | 2015-11-11 12:40:15 -0800 | [diff] [blame] | 2589 | * device admins that are not device owner and not profile owner. |
| 2590 | * The password can now only be changed if there is currently no password set. Device owner |
Ricky Wai | 977ade2 | 2016-05-24 15:02:41 +0100 | [diff] [blame] | 2591 | * and profile owner can still do this when user is unlocked and does not have a managed |
| 2592 | * profile.</em> |
Suprabh Shukla | 34d92ef | 2016-03-14 13:49:37 -0700 | [diff] [blame] | 2593 | * <p> |
| 2594 | * The given password must be sufficient for the current password quality and length constraints |
| 2595 | * as returned by {@link #getPasswordQuality(ComponentName)} and |
| 2596 | * {@link #getPasswordMinimumLength(ComponentName)}; if it does not meet these constraints, then |
| 2597 | * it will be rejected and false returned. Note that the password may be a stronger quality |
| 2598 | * (containing alphanumeric characters when the requested quality is only numeric), in which |
| 2599 | * case the currently active quality will be increased to match. |
| 2600 | * <p> |
| 2601 | * Calling with a null or empty password will clear any existing PIN, pattern or password if the |
Robin Lee | ce5c400 | 2016-03-23 17:05:03 +0000 | [diff] [blame] | 2602 | * current password constraints allow it. <em>Note: This will not work in |
| 2603 | * {@link android.os.Build.VERSION_CODES#N} and later for managed profiles, or for device admins |
| 2604 | * that are not device owner or profile owner. Once set, the password cannot be changed to null |
| 2605 | * or empty except by these admins.</em> |
Suprabh Shukla | 34d92ef | 2016-03-14 13:49:37 -0700 | [diff] [blame] | 2606 | * <p> |
| 2607 | * The calling device admin must have requested |
| 2608 | * {@link DeviceAdminInfo#USES_POLICY_RESET_PASSWORD} to be able to call this method; if it has |
| 2609 | * not, a security exception will be thrown. |
Konstantin Lopyrev | 3255823 | 2010-05-20 16:18:05 -0700 | [diff] [blame] | 2610 | * |
Adrian Roos | f8f56bc | 2014-11-20 23:55:34 +0100 | [diff] [blame] | 2611 | * @param password The new password for the user. Null or empty clears the password. |
Andrei Kapishnikov | 4eb6a36 | 2015-04-02 15:21:20 -0400 | [diff] [blame] | 2612 | * @param flags May be 0 or combination of {@link #RESET_PASSWORD_REQUIRE_ENTRY} and |
Suprabh Shukla | 34d92ef | 2016-03-14 13:49:37 -0700 | [diff] [blame] | 2613 | * {@link #RESET_PASSWORD_DO_NOT_ASK_CREDENTIALS_ON_BOOT}. |
| 2614 | * @return Returns true if the password was applied, or false if it is not acceptable for the |
| 2615 | * current constraints or if the user has not been decrypted yet. |
| 2616 | * @throws SecurityException if the calling application does not own an active administrator |
| 2617 | * that uses {@link DeviceAdminInfo#USES_POLICY_RESET_PASSWORD} |
Ricky Wai | 977ade2 | 2016-05-24 15:02:41 +0100 | [diff] [blame] | 2618 | * @throws IllegalStateException if the calling user is locked or has a managed profile. |
Andrew Scull | 3f81f4e | 2016-07-29 16:29:58 +0100 | [diff] [blame] | 2619 | * @throws IllegalArgumentException if the password does not meet system requirements. |
Dianne Hackborn | df83afa | 2010-01-20 13:37:26 -0800 | [diff] [blame] | 2620 | */ |
Dianne Hackborn | 87bba1e | 2010-02-26 17:25:54 -0800 | [diff] [blame] | 2621 | public boolean resetPassword(String password, int flags) { |
Benjamin Franz | bc33c82 | 2016-04-15 08:57:52 +0100 | [diff] [blame] | 2622 | throwIfParentInstance("resetPassword"); |
Dianne Hackborn | df83afa | 2010-01-20 13:37:26 -0800 | [diff] [blame] | 2623 | if (mService != null) { |
| 2624 | try { |
Fyodor Kupolov | bdc58c6 | 2015-01-29 13:24:03 -0800 | [diff] [blame] | 2625 | return mService.resetPassword(password, flags); |
Dianne Hackborn | df83afa | 2010-01-20 13:37:26 -0800 | [diff] [blame] | 2626 | } catch (RemoteException e) { |
Jeff Sharkey | dbff9ca | 2016-03-01 19:46:25 -0700 | [diff] [blame] | 2627 | throw e.rethrowFromSystemServer(); |
Dianne Hackborn | df83afa | 2010-01-20 13:37:26 -0800 | [diff] [blame] | 2628 | } |
| 2629 | } |
| 2630 | return false; |
| 2631 | } |
Konstantin Lopyrev | 3255823 | 2010-05-20 16:18:05 -0700 | [diff] [blame] | 2632 | |
Dianne Hackborn | d684784 | 2010-01-12 18:14:19 -0800 | [diff] [blame] | 2633 | /** |
Suprabh Shukla | 34d92ef | 2016-03-14 13:49:37 -0700 | [diff] [blame] | 2634 | * Called by an application that is administering the device to set the maximum time for user |
| 2635 | * activity until the device will lock. This limits the length that the user can set. It takes |
| 2636 | * effect immediately. |
| 2637 | * <p> |
| 2638 | * The calling device admin must have requested {@link DeviceAdminInfo#USES_POLICY_FORCE_LOCK} |
| 2639 | * to be able to call this method; if it has not, a security exception will be thrown. |
| 2640 | * <p> |
| 2641 | * This method can be called on the {@link DevicePolicyManager} instance returned by |
| 2642 | * {@link #getParentProfileInstance(ComponentName)} in order to set restrictions on the parent |
| 2643 | * profile. |
Esteban Talavera | c1c8359 | 2016-02-17 17:56:15 +0000 | [diff] [blame] | 2644 | * |
Dianne Hackborn | ef6b22f | 2010-02-16 20:38:49 -0800 | [diff] [blame] | 2645 | * @param admin Which {@link DeviceAdminReceiver} this request is associated with. |
Suprabh Shukla | 34d92ef | 2016-03-14 13:49:37 -0700 | [diff] [blame] | 2646 | * @param timeMs The new desired maximum time to lock in milliseconds. A value of 0 means there |
| 2647 | * is no restriction. |
| 2648 | * @throws SecurityException if {@code admin} is not an active administrator or it does not use |
| 2649 | * {@link DeviceAdminInfo#USES_POLICY_FORCE_LOCK} |
Dianne Hackborn | d684784 | 2010-01-12 18:14:19 -0800 | [diff] [blame] | 2650 | */ |
Robin Lee | 25e2645 | 2015-06-02 09:56:29 -0700 | [diff] [blame] | 2651 | public void setMaximumTimeToLock(@NonNull ComponentName admin, long timeMs) { |
Dianne Hackborn | d684784 | 2010-01-12 18:14:19 -0800 | [diff] [blame] | 2652 | if (mService != null) { |
| 2653 | try { |
Esteban Talavera | 6239991 | 2016-01-11 15:37:55 +0000 | [diff] [blame] | 2654 | mService.setMaximumTimeToLock(admin, timeMs, mParentInstance); |
Dianne Hackborn | d684784 | 2010-01-12 18:14:19 -0800 | [diff] [blame] | 2655 | } catch (RemoteException e) { |
Jeff Sharkey | dbff9ca | 2016-03-01 19:46:25 -0700 | [diff] [blame] | 2656 | throw e.rethrowFromSystemServer(); |
Dianne Hackborn | d684784 | 2010-01-12 18:14:19 -0800 | [diff] [blame] | 2657 | } |
| 2658 | } |
| 2659 | } |
Konstantin Lopyrev | 3255823 | 2010-05-20 16:18:05 -0700 | [diff] [blame] | 2660 | |
Dianne Hackborn | d684784 | 2010-01-12 18:14:19 -0800 | [diff] [blame] | 2661 | /** |
Esteban Talavera | c1c8359 | 2016-02-17 17:56:15 +0000 | [diff] [blame] | 2662 | * Retrieve the current maximum time to unlock for a particular admin or all admins that set |
Rubin Xu | d3609d4 | 2016-07-13 18:32:57 +0100 | [diff] [blame] | 2663 | * restrictions on this user and its participating profiles. Restrictions on profiles that have |
Esteban Talavera | c1c8359 | 2016-02-17 17:56:15 +0000 | [diff] [blame] | 2664 | * a separate challenge are not taken into account. |
| 2665 | * |
| 2666 | * <p>This method can be called on the {@link DevicePolicyManager} instance |
| 2667 | * returned by {@link #getParentProfileInstance(ComponentName)} in order to retrieve |
| 2668 | * restrictions on the parent profile. |
| 2669 | * |
Robin Lee | 25e2645 | 2015-06-02 09:56:29 -0700 | [diff] [blame] | 2670 | * @param admin The name of the admin component to check, or {@code null} to aggregate |
Dianne Hackborn | 254cb44 | 2010-01-27 19:23:59 -0800 | [diff] [blame] | 2671 | * all admins. |
Jim Miller | d4efaac | 2014-08-14 18:02:45 -0700 | [diff] [blame] | 2672 | * @return time in milliseconds for the given admin or the minimum value (strictest) of |
Jim Miller | 76b9b8b | 2014-08-22 17:04:57 -0700 | [diff] [blame] | 2673 | * all admins if admin is null. Returns 0 if there are no restrictions. |
Dianne Hackborn | d684784 | 2010-01-12 18:14:19 -0800 | [diff] [blame] | 2674 | */ |
Robin Lee | 25e2645 | 2015-06-02 09:56:29 -0700 | [diff] [blame] | 2675 | public long getMaximumTimeToLock(@Nullable ComponentName admin) { |
Makoto Onuki | cc4bbeb | 2015-09-17 10:28:24 -0700 | [diff] [blame] | 2676 | return getMaximumTimeToLock(admin, myUserId()); |
Amith Yamasani | 599dd7c | 2012-09-14 23:20:08 -0700 | [diff] [blame] | 2677 | } |
| 2678 | |
| 2679 | /** @hide per-user version */ |
Robin Lee | 25e2645 | 2015-06-02 09:56:29 -0700 | [diff] [blame] | 2680 | public long getMaximumTimeToLock(@Nullable ComponentName admin, int userHandle) { |
Dianne Hackborn | d684784 | 2010-01-12 18:14:19 -0800 | [diff] [blame] | 2681 | if (mService != null) { |
| 2682 | try { |
Esteban Talavera | 6239991 | 2016-01-11 15:37:55 +0000 | [diff] [blame] | 2683 | return mService.getMaximumTimeToLock(admin, userHandle, mParentInstance); |
Dianne Hackborn | d684784 | 2010-01-12 18:14:19 -0800 | [diff] [blame] | 2684 | } catch (RemoteException e) { |
Jeff Sharkey | dbff9ca | 2016-03-01 19:46:25 -0700 | [diff] [blame] | 2685 | throw e.rethrowFromSystemServer(); |
Dianne Hackborn | d684784 | 2010-01-12 18:14:19 -0800 | [diff] [blame] | 2686 | } |
| 2687 | } |
| 2688 | return 0; |
| 2689 | } |
Konstantin Lopyrev | 3255823 | 2010-05-20 16:18:05 -0700 | [diff] [blame] | 2690 | |
Dianne Hackborn | d684784 | 2010-01-12 18:14:19 -0800 | [diff] [blame] | 2691 | /** |
Ricky Wai | 035e924 | 2016-03-18 16:43:31 +0000 | [diff] [blame] | 2692 | * Returns maximum time to lock that applied by all profiles in this user. We do this because we |
| 2693 | * do not have a separate timeout to lock for work challenge only. |
| 2694 | * |
| 2695 | * @hide |
| 2696 | */ |
| 2697 | public long getMaximumTimeToLockForUserAndProfiles(int userHandle) { |
| 2698 | if (mService != null) { |
| 2699 | try { |
| 2700 | return mService.getMaximumTimeToLockForUserAndProfiles(userHandle); |
| 2701 | } catch (RemoteException e) { |
| 2702 | throw e.rethrowFromSystemServer(); |
| 2703 | } |
| 2704 | } |
| 2705 | return 0; |
| 2706 | } |
| 2707 | |
| 2708 | /** |
Michal Karpinski | 8f010dd | 2016-06-21 15:05:53 +0100 | [diff] [blame] | 2709 | * Called by a device/profile owner to set the timeout after which unlocking with secondary, non |
| 2710 | * strong auth (e.g. fingerprint, trust agents) times out, i.e. the user has to use a strong |
| 2711 | * authentication method like password, pin or pattern. |
| 2712 | * |
| 2713 | * <p>This timeout is used internally to reset the timer to require strong auth again after |
| 2714 | * specified timeout each time it has been successfully used. |
| 2715 | * |
| 2716 | * <p>Fingerprint can also be disabled altogether using {@link #KEYGUARD_DISABLE_FINGERPRINT}. |
| 2717 | * |
| 2718 | * <p>Trust agents can also be disabled altogether using {@link #KEYGUARD_DISABLE_TRUST_AGENTS}. |
| 2719 | * |
| 2720 | * <p>The calling device admin must be a device or profile owner. If it is not, |
| 2721 | * a {@link SecurityException} will be thrown. |
| 2722 | * |
Michal Karpinski | 943aabd | 2016-10-06 11:09:25 +0100 | [diff] [blame] | 2723 | * <p>The calling device admin can verify the value it has set by calling |
| 2724 | * {@link #getRequiredStrongAuthTimeout(ComponentName)} and passing in its instance. |
| 2725 | * |
Michal Karpinski | 8f010dd | 2016-06-21 15:05:53 +0100 | [diff] [blame] | 2726 | * <p>This method can be called on the {@link DevicePolicyManager} instance returned by |
| 2727 | * {@link #getParentProfileInstance(ComponentName)} in order to set restrictions on the parent |
| 2728 | * profile. |
| 2729 | * |
| 2730 | * @param admin Which {@link DeviceAdminReceiver} this request is associated with. |
| 2731 | * @param timeoutMs The new timeout, after which the user will have to unlock with strong |
Michal Karpinski | 943aabd | 2016-10-06 11:09:25 +0100 | [diff] [blame] | 2732 | * authentication method. A value of 0 means the admin is not participating in |
| 2733 | * controlling the timeout. |
| 2734 | * The minimum and maximum timeouts are platform-defined and are typically 1 hour and |
| 2735 | * 72 hours, respectively. Though discouraged, the admin may choose to require strong |
| 2736 | * auth at all times using {@link #KEYGUARD_DISABLE_FINGERPRINT} and/or |
| 2737 | * {@link #KEYGUARD_DISABLE_TRUST_AGENTS}. |
Michal Karpinski | 8f010dd | 2016-06-21 15:05:53 +0100 | [diff] [blame] | 2738 | * |
| 2739 | * @throws SecurityException if {@code admin} is not a device or profile owner. |
Michal Karpinski | 8f010dd | 2016-06-21 15:05:53 +0100 | [diff] [blame] | 2740 | */ |
| 2741 | public void setRequiredStrongAuthTimeout(@NonNull ComponentName admin, |
| 2742 | long timeoutMs) { |
| 2743 | if (mService != null) { |
| 2744 | try { |
| 2745 | mService.setRequiredStrongAuthTimeout(admin, timeoutMs, mParentInstance); |
| 2746 | } catch (RemoteException e) { |
| 2747 | throw e.rethrowFromSystemServer(); |
| 2748 | } |
| 2749 | } |
| 2750 | } |
| 2751 | |
| 2752 | /** |
| 2753 | * Determine for how long the user will be able to use secondary, non strong auth for |
| 2754 | * authentication, since last strong method authentication (password, pin or pattern) was used. |
| 2755 | * After the returned timeout the user is required to use strong authentication method. |
| 2756 | * |
| 2757 | * <p>This method can be called on the {@link DevicePolicyManager} instance |
| 2758 | * returned by {@link #getParentProfileInstance(ComponentName)} in order to retrieve |
| 2759 | * restrictions on the parent profile. |
| 2760 | * |
| 2761 | * @param admin The name of the admin component to check, or {@code null} to aggregate |
| 2762 | * accross all participating admins. |
Michal Karpinski | 943aabd | 2016-10-06 11:09:25 +0100 | [diff] [blame] | 2763 | * @return The timeout or 0 if not configured for the provided admin. |
Michal Karpinski | 8f010dd | 2016-06-21 15:05:53 +0100 | [diff] [blame] | 2764 | */ |
| 2765 | public long getRequiredStrongAuthTimeout(@Nullable ComponentName admin) { |
| 2766 | return getRequiredStrongAuthTimeout(admin, myUserId()); |
| 2767 | } |
| 2768 | |
| 2769 | /** @hide per-user version */ |
| 2770 | public long getRequiredStrongAuthTimeout(@Nullable ComponentName admin, @UserIdInt int userId) { |
| 2771 | if (mService != null) { |
| 2772 | try { |
| 2773 | return mService.getRequiredStrongAuthTimeout(admin, userId, mParentInstance); |
| 2774 | } catch (RemoteException e) { |
| 2775 | throw e.rethrowFromSystemServer(); |
| 2776 | } |
| 2777 | } |
| 2778 | return DEFAULT_STRONG_AUTH_TIMEOUT_MS; |
| 2779 | } |
| 2780 | |
| 2781 | /** |
Andrew Scull | 85a63bc | 2016-10-24 13:47:47 +0100 | [diff] [blame] | 2782 | * Flag for {@link #lockNow(int)}: also evict the user's credential encryption key from the |
| 2783 | * keyring. The user's credential will need to be entered again in order to derive the |
| 2784 | * credential encryption key that will be stored back in the keyring for future use. |
| 2785 | * <p> |
| 2786 | * This flag can only be used by a profile owner when locking a managed profile on an FBE |
| 2787 | * device. |
| 2788 | * <p> |
| 2789 | * In order to secure user data, the user will be stopped and restarted so apps should wait |
| 2790 | * until they are next run to perform further actions. |
| 2791 | */ |
| 2792 | public static final int FLAG_EVICT_CE_KEY = 1; |
| 2793 | |
| 2794 | /** @hide */ |
| 2795 | @Retention(RetentionPolicy.SOURCE) |
| 2796 | @IntDef(flag=true, value={FLAG_EVICT_CE_KEY}) |
| 2797 | public @interface LockNowFlag {} |
| 2798 | |
| 2799 | /** |
| 2800 | * Make the device lock immediately, as if the lock screen timeout has expired at the point of |
| 2801 | * this call. |
| 2802 | * <p> |
| 2803 | * The calling device admin must have requested {@link DeviceAdminInfo#USES_POLICY_FORCE_LOCK} |
| 2804 | * to be able to call this method; if it has not, a security exception will be thrown. |
| 2805 | * <p> |
| 2806 | * This method can be called on the {@link DevicePolicyManager} instance returned by |
| 2807 | * {@link #getParentProfileInstance(ComponentName)} in order to lock the parent profile. |
| 2808 | * <p> |
| 2809 | * Equivalent to calling {@link #lockNow(int)} with no flags. |
| 2810 | * |
| 2811 | * @throws SecurityException if the calling application does not own an active administrator |
| 2812 | * that uses {@link DeviceAdminInfo#USES_POLICY_FORCE_LOCK} |
| 2813 | */ |
| 2814 | public void lockNow() { |
| 2815 | lockNow(0); |
| 2816 | } |
| 2817 | |
| 2818 | /** |
Suprabh Shukla | 34d92ef | 2016-03-14 13:49:37 -0700 | [diff] [blame] | 2819 | * Make the device lock immediately, as if the lock screen timeout has expired at the point of |
| 2820 | * this call. |
| 2821 | * <p> |
| 2822 | * The calling device admin must have requested {@link DeviceAdminInfo#USES_POLICY_FORCE_LOCK} |
| 2823 | * to be able to call this method; if it has not, a security exception will be thrown. |
| 2824 | * <p> |
| 2825 | * This method can be called on the {@link DevicePolicyManager} instance returned by |
| 2826 | * {@link #getParentProfileInstance(ComponentName)} in order to lock the parent profile. |
Konstantin Lopyrev | 3255823 | 2010-05-20 16:18:05 -0700 | [diff] [blame] | 2827 | * |
Andrew Scull | 85a63bc | 2016-10-24 13:47:47 +0100 | [diff] [blame] | 2828 | * @param flags May be 0 or {@link #FLAG_EVICT_CE_KEY}. |
Suprabh Shukla | 34d92ef | 2016-03-14 13:49:37 -0700 | [diff] [blame] | 2829 | * @throws SecurityException if the calling application does not own an active administrator |
Andrew Scull | 85a63bc | 2016-10-24 13:47:47 +0100 | [diff] [blame] | 2830 | * that uses {@link DeviceAdminInfo#USES_POLICY_FORCE_LOCK} or the |
| 2831 | * {@link #FLAG_EVICT_CE_KEY} flag is passed by an application that is not a profile |
| 2832 | * owner of a managed profile. |
| 2833 | * @throws IllegalArgumentException if the {@link #FLAG_EVICT_CE_KEY} flag is passed when |
| 2834 | * locking the parent profile. |
| 2835 | * @throws UnsupportedOperationException if the {@link #FLAG_EVICT_CE_KEY} flag is passed on a |
| 2836 | * non-FBE device. |
Dianne Hackborn | d684784 | 2010-01-12 18:14:19 -0800 | [diff] [blame] | 2837 | */ |
Andrew Scull | 85a63bc | 2016-10-24 13:47:47 +0100 | [diff] [blame] | 2838 | public void lockNow(@LockNowFlag int flags) { |
Dianne Hackborn | df83afa | 2010-01-20 13:37:26 -0800 | [diff] [blame] | 2839 | if (mService != null) { |
| 2840 | try { |
Andrew Scull | 85a63bc | 2016-10-24 13:47:47 +0100 | [diff] [blame] | 2841 | mService.lockNow(flags, mParentInstance); |
Dianne Hackborn | df83afa | 2010-01-20 13:37:26 -0800 | [diff] [blame] | 2842 | } catch (RemoteException e) { |
Jeff Sharkey | dbff9ca | 2016-03-01 19:46:25 -0700 | [diff] [blame] | 2843 | throw e.rethrowFromSystemServer(); |
Dianne Hackborn | df83afa | 2010-01-20 13:37:26 -0800 | [diff] [blame] | 2844 | } |
| 2845 | } |
| 2846 | } |
Konstantin Lopyrev | 3255823 | 2010-05-20 16:18:05 -0700 | [diff] [blame] | 2847 | |
Dianne Hackborn | d684784 | 2010-01-12 18:14:19 -0800 | [diff] [blame] | 2848 | /** |
Dianne Hackborn | 4249917 | 2010-10-15 18:45:07 -0700 | [diff] [blame] | 2849 | * Flag for {@link #wipeData(int)}: also erase the device's external |
Paul Crowley | a7e87ac | 2014-11-18 13:50:19 +0000 | [diff] [blame] | 2850 | * storage (such as SD cards). |
Dianne Hackborn | 4249917 | 2010-10-15 18:45:07 -0700 | [diff] [blame] | 2851 | */ |
| 2852 | public static final int WIPE_EXTERNAL_STORAGE = 0x0001; |
| 2853 | |
| 2854 | /** |
Paul Crowley | a7e87ac | 2014-11-18 13:50:19 +0000 | [diff] [blame] | 2855 | * Flag for {@link #wipeData(int)}: also erase the factory reset protection |
| 2856 | * data. |
| 2857 | * |
Paul Crowley | 2934b26 | 2014-12-02 11:21:13 +0000 | [diff] [blame] | 2858 | * <p>This flag may only be set by device owner admins; if it is set by |
| 2859 | * other admins a {@link SecurityException} will be thrown. |
Paul Crowley | a7e87ac | 2014-11-18 13:50:19 +0000 | [diff] [blame] | 2860 | */ |
| 2861 | public static final int WIPE_RESET_PROTECTION_DATA = 0x0002; |
| 2862 | |
| 2863 | /** |
Suprabh Shukla | 556b05a | 2016-08-10 15:49:24 -0700 | [diff] [blame] | 2864 | * Ask that all user data be wiped. If called as a secondary user, the user will be removed and |
| 2865 | * other users will remain unaffected. Calling from the primary user will cause the device to |
| 2866 | * reboot, erasing all device data - including all the secondary users and their data - while |
| 2867 | * booting up. |
Suprabh Shukla | 34d92ef | 2016-03-14 13:49:37 -0700 | [diff] [blame] | 2868 | * <p> |
| 2869 | * The calling device admin must have requested {@link DeviceAdminInfo#USES_POLICY_WIPE_DATA} to |
| 2870 | * be able to call this method; if it has not, a security exception will be thrown. |
Konstantin Lopyrev | 3255823 | 2010-05-20 16:18:05 -0700 | [diff] [blame] | 2871 | * |
Suprabh Shukla | 34d92ef | 2016-03-14 13:49:37 -0700 | [diff] [blame] | 2872 | * @param flags Bit mask of additional options: currently supported flags are |
| 2873 | * {@link #WIPE_EXTERNAL_STORAGE} and {@link #WIPE_RESET_PROTECTION_DATA}. |
| 2874 | * @throws SecurityException if the calling application does not own an active administrator |
| 2875 | * that uses {@link DeviceAdminInfo#USES_POLICY_WIPE_DATA} |
Dianne Hackborn | d684784 | 2010-01-12 18:14:19 -0800 | [diff] [blame] | 2876 | */ |
| 2877 | public void wipeData(int flags) { |
Benjamin Franz | bc33c82 | 2016-04-15 08:57:52 +0100 | [diff] [blame] | 2878 | throwIfParentInstance("wipeData"); |
Dianne Hackborn | d684784 | 2010-01-12 18:14:19 -0800 | [diff] [blame] | 2879 | if (mService != null) { |
| 2880 | try { |
Makoto Onuki | 70f929e | 2015-11-11 12:40:15 -0800 | [diff] [blame] | 2881 | mService.wipeData(flags); |
Dianne Hackborn | d684784 | 2010-01-12 18:14:19 -0800 | [diff] [blame] | 2882 | } catch (RemoteException e) { |
Jeff Sharkey | dbff9ca | 2016-03-01 19:46:25 -0700 | [diff] [blame] | 2883 | throw e.rethrowFromSystemServer(); |
Dianne Hackborn | d684784 | 2010-01-12 18:14:19 -0800 | [diff] [blame] | 2884 | } |
| 2885 | } |
| 2886 | } |
Konstantin Lopyrev | 3255823 | 2010-05-20 16:18:05 -0700 | [diff] [blame] | 2887 | |
Dianne Hackborn | d684784 | 2010-01-12 18:14:19 -0800 | [diff] [blame] | 2888 | /** |
Oscar Montemayor | 69238c6 | 2010-08-03 10:51:06 -0700 | [diff] [blame] | 2889 | * Called by an application that is administering the device to set the |
| 2890 | * global proxy and exclusion list. |
| 2891 | * <p> |
| 2892 | * The calling device admin must have requested |
| 2893 | * {@link DeviceAdminInfo#USES_POLICY_SETS_GLOBAL_PROXY} to be able to call |
| 2894 | * this method; if it has not, a security exception will be thrown. |
| 2895 | * Only the first device admin can set the proxy. If a second admin attempts |
| 2896 | * to set the proxy, the {@link ComponentName} of the admin originally setting the |
Robin Lee | 25e2645 | 2015-06-02 09:56:29 -0700 | [diff] [blame] | 2897 | * proxy will be returned. If successful in setting the proxy, {@code null} will |
Oscar Montemayor | 69238c6 | 2010-08-03 10:51:06 -0700 | [diff] [blame] | 2898 | * be returned. |
| 2899 | * The method can be called repeatedly by the device admin alrady setting the |
| 2900 | * proxy to update the proxy and exclusion list. |
| 2901 | * |
Robin Lee | 25e2645 | 2015-06-02 09:56:29 -0700 | [diff] [blame] | 2902 | * @param admin Which {@link DeviceAdminReceiver} this request is associated with. |
Oscar Montemayor | 69238c6 | 2010-08-03 10:51:06 -0700 | [diff] [blame] | 2903 | * @param proxySpec the global proxy desired. Must be an HTTP Proxy. |
| 2904 | * Pass Proxy.NO_PROXY to reset the proxy. |
| 2905 | * @param exclusionList a list of domains to be excluded from the global proxy. |
Robin Lee | 25e2645 | 2015-06-02 09:56:29 -0700 | [diff] [blame] | 2906 | * @return {@code null} if the proxy was successfully set, or otherwise a {@link ComponentName} |
| 2907 | * of the device admin that sets the proxy. |
Andy Stadler | d267272 | 2011-02-16 10:53:33 -0800 | [diff] [blame] | 2908 | * @hide |
Oscar Montemayor | 69238c6 | 2010-08-03 10:51:06 -0700 | [diff] [blame] | 2909 | */ |
Makoto Onuki | 408e8e4 | 2016-10-25 12:10:27 -0700 | [diff] [blame] | 2910 | public @Nullable ComponentName setGlobalProxy(@NonNull ComponentName admin, Proxy proxySpec, |
Oscar Montemayor | 69238c6 | 2010-08-03 10:51:06 -0700 | [diff] [blame] | 2911 | List<String> exclusionList ) { |
Benjamin Franz | bc33c82 | 2016-04-15 08:57:52 +0100 | [diff] [blame] | 2912 | throwIfParentInstance("setGlobalProxy"); |
Oscar Montemayor | 69238c6 | 2010-08-03 10:51:06 -0700 | [diff] [blame] | 2913 | if (proxySpec == null) { |
| 2914 | throw new NullPointerException(); |
| 2915 | } |
| 2916 | if (mService != null) { |
| 2917 | try { |
| 2918 | String hostSpec; |
| 2919 | String exclSpec; |
| 2920 | if (proxySpec.equals(Proxy.NO_PROXY)) { |
| 2921 | hostSpec = null; |
| 2922 | exclSpec = null; |
| 2923 | } else { |
| 2924 | if (!proxySpec.type().equals(Proxy.Type.HTTP)) { |
| 2925 | throw new IllegalArgumentException(); |
| 2926 | } |
| 2927 | InetSocketAddress sa = (InetSocketAddress)proxySpec.address(); |
| 2928 | String hostName = sa.getHostName(); |
| 2929 | int port = sa.getPort(); |
| 2930 | StringBuilder hostBuilder = new StringBuilder(); |
| 2931 | hostSpec = hostBuilder.append(hostName) |
| 2932 | .append(":").append(Integer.toString(port)).toString(); |
| 2933 | if (exclusionList == null) { |
| 2934 | exclSpec = ""; |
| 2935 | } else { |
| 2936 | StringBuilder listBuilder = new StringBuilder(); |
| 2937 | boolean firstDomain = true; |
| 2938 | for (String exclDomain : exclusionList) { |
| 2939 | if (!firstDomain) { |
| 2940 | listBuilder = listBuilder.append(","); |
| 2941 | } else { |
| 2942 | firstDomain = false; |
| 2943 | } |
| 2944 | listBuilder = listBuilder.append(exclDomain.trim()); |
| 2945 | } |
| 2946 | exclSpec = listBuilder.toString(); |
| 2947 | } |
Yuhao Zheng | 9070484 | 2014-02-28 17:22:45 -0800 | [diff] [blame] | 2948 | if (android.net.Proxy.validate(hostName, Integer.toString(port), exclSpec) |
| 2949 | != android.net.Proxy.PROXY_VALID) |
| 2950 | throw new IllegalArgumentException(); |
Oscar Montemayor | 69238c6 | 2010-08-03 10:51:06 -0700 | [diff] [blame] | 2951 | } |
Fyodor Kupolov | bdc58c6 | 2015-01-29 13:24:03 -0800 | [diff] [blame] | 2952 | return mService.setGlobalProxy(admin, hostSpec, exclSpec); |
Oscar Montemayor | 69238c6 | 2010-08-03 10:51:06 -0700 | [diff] [blame] | 2953 | } catch (RemoteException e) { |
Jeff Sharkey | dbff9ca | 2016-03-01 19:46:25 -0700 | [diff] [blame] | 2954 | throw e.rethrowFromSystemServer(); |
Oscar Montemayor | 69238c6 | 2010-08-03 10:51:06 -0700 | [diff] [blame] | 2955 | } |
| 2956 | } |
| 2957 | return null; |
| 2958 | } |
| 2959 | |
| 2960 | /** |
Suprabh Shukla | 34d92ef | 2016-03-14 13:49:37 -0700 | [diff] [blame] | 2961 | * Set a network-independent global HTTP proxy. This is not normally what you want for typical |
| 2962 | * HTTP proxies - they are generally network dependent. However if you're doing something |
| 2963 | * unusual like general internal filtering this may be useful. On a private network where the |
| 2964 | * proxy is not accessible, you may break HTTP using this. |
| 2965 | * <p> |
| 2966 | * This method requires the caller to be the device owner. |
| 2967 | * <p> |
| 2968 | * This proxy is only a recommendation and it is possible that some apps will ignore it. |
Jason Monk | 03bc991 | 2014-05-13 09:44:57 -0400 | [diff] [blame] | 2969 | * |
Jason Monk | 03bc991 | 2014-05-13 09:44:57 -0400 | [diff] [blame] | 2970 | * @see ProxyInfo |
Suprabh Shukla | 34d92ef | 2016-03-14 13:49:37 -0700 | [diff] [blame] | 2971 | * @param admin Which {@link DeviceAdminReceiver} this request is associated with. |
| 2972 | * @param proxyInfo The a {@link ProxyInfo} object defining the new global HTTP proxy. A |
| 2973 | * {@code null} value will clear the global HTTP proxy. |
| 2974 | * @throws SecurityException if {@code admin} is not the device owner. |
Jason Monk | 03bc991 | 2014-05-13 09:44:57 -0400 | [diff] [blame] | 2975 | */ |
Robin Lee | 25e2645 | 2015-06-02 09:56:29 -0700 | [diff] [blame] | 2976 | public void setRecommendedGlobalProxy(@NonNull ComponentName admin, @Nullable ProxyInfo |
| 2977 | proxyInfo) { |
Benjamin Franz | bc33c82 | 2016-04-15 08:57:52 +0100 | [diff] [blame] | 2978 | throwIfParentInstance("setRecommendedGlobalProxy"); |
Jason Monk | 03bc991 | 2014-05-13 09:44:57 -0400 | [diff] [blame] | 2979 | if (mService != null) { |
| 2980 | try { |
| 2981 | mService.setRecommendedGlobalProxy(admin, proxyInfo); |
| 2982 | } catch (RemoteException e) { |
Jeff Sharkey | dbff9ca | 2016-03-01 19:46:25 -0700 | [diff] [blame] | 2983 | throw e.rethrowFromSystemServer(); |
Jason Monk | 03bc991 | 2014-05-13 09:44:57 -0400 | [diff] [blame] | 2984 | } |
| 2985 | } |
| 2986 | } |
| 2987 | |
| 2988 | /** |
Oscar Montemayor | 69238c6 | 2010-08-03 10:51:06 -0700 | [diff] [blame] | 2989 | * Returns the component name setting the global proxy. |
Robin Lee | 25e2645 | 2015-06-02 09:56:29 -0700 | [diff] [blame] | 2990 | * @return ComponentName object of the device admin that set the global proxy, or {@code null} |
| 2991 | * if no admin has set the proxy. |
Andy Stadler | d267272 | 2011-02-16 10:53:33 -0800 | [diff] [blame] | 2992 | * @hide |
Oscar Montemayor | 69238c6 | 2010-08-03 10:51:06 -0700 | [diff] [blame] | 2993 | */ |
Makoto Onuki | 408e8e4 | 2016-10-25 12:10:27 -0700 | [diff] [blame] | 2994 | public @Nullable ComponentName getGlobalProxyAdmin() { |
Oscar Montemayor | 69238c6 | 2010-08-03 10:51:06 -0700 | [diff] [blame] | 2995 | if (mService != null) { |
| 2996 | try { |
Makoto Onuki | cc4bbeb | 2015-09-17 10:28:24 -0700 | [diff] [blame] | 2997 | return mService.getGlobalProxyAdmin(myUserId()); |
Oscar Montemayor | 69238c6 | 2010-08-03 10:51:06 -0700 | [diff] [blame] | 2998 | } catch (RemoteException e) { |
Jeff Sharkey | dbff9ca | 2016-03-01 19:46:25 -0700 | [diff] [blame] | 2999 | throw e.rethrowFromSystemServer(); |
Oscar Montemayor | 69238c6 | 2010-08-03 10:51:06 -0700 | [diff] [blame] | 3000 | } |
| 3001 | } |
| 3002 | return null; |
| 3003 | } |
| 3004 | |
| 3005 | /** |
Andy Stadler | 22dbfda | 2011-01-17 12:47:31 -0800 | [diff] [blame] | 3006 | * Result code for {@link #setStorageEncryption} and {@link #getStorageEncryptionStatus}: |
Andy Stadler | 7b0f8f0 | 2011-01-12 14:59:52 -0800 | [diff] [blame] | 3007 | * indicating that encryption is not supported. |
| 3008 | */ |
| 3009 | public static final int ENCRYPTION_STATUS_UNSUPPORTED = 0; |
| 3010 | |
| 3011 | /** |
Andy Stadler | 22dbfda | 2011-01-17 12:47:31 -0800 | [diff] [blame] | 3012 | * Result code for {@link #setStorageEncryption} and {@link #getStorageEncryptionStatus}: |
Andy Stadler | 7b0f8f0 | 2011-01-12 14:59:52 -0800 | [diff] [blame] | 3013 | * indicating that encryption is supported, but is not currently active. |
| 3014 | */ |
| 3015 | public static final int ENCRYPTION_STATUS_INACTIVE = 1; |
| 3016 | |
| 3017 | /** |
Robin Lee | 3795fb0 | 2015-02-16 14:17:23 +0000 | [diff] [blame] | 3018 | * Result code for {@link #getStorageEncryptionStatus}: |
Andy Stadler | 7b0f8f0 | 2011-01-12 14:59:52 -0800 | [diff] [blame] | 3019 | * indicating that encryption is not currently active, but is currently |
| 3020 | * being activated. This is only reported by devices that support |
| 3021 | * encryption of data and only when the storage is currently |
| 3022 | * undergoing a process of becoming encrypted. A device that must reboot and/or wipe data |
| 3023 | * to become encrypted will never return this value. |
| 3024 | */ |
Andy Stadler | 22dbfda | 2011-01-17 12:47:31 -0800 | [diff] [blame] | 3025 | public static final int ENCRYPTION_STATUS_ACTIVATING = 2; |
Andy Stadler | 7b0f8f0 | 2011-01-12 14:59:52 -0800 | [diff] [blame] | 3026 | |
| 3027 | /** |
Andy Stadler | 22dbfda | 2011-01-17 12:47:31 -0800 | [diff] [blame] | 3028 | * Result code for {@link #setStorageEncryption} and {@link #getStorageEncryptionStatus}: |
Andy Stadler | 7b0f8f0 | 2011-01-12 14:59:52 -0800 | [diff] [blame] | 3029 | * indicating that encryption is active. |
Amith Yamasani | 75db125 | 2016-07-11 14:41:01 -0700 | [diff] [blame] | 3030 | * <p> |
| 3031 | * Also see {@link #ENCRYPTION_STATUS_ACTIVE_PER_USER}. |
Andy Stadler | 7b0f8f0 | 2011-01-12 14:59:52 -0800 | [diff] [blame] | 3032 | */ |
Andy Stadler | 22dbfda | 2011-01-17 12:47:31 -0800 | [diff] [blame] | 3033 | public static final int ENCRYPTION_STATUS_ACTIVE = 3; |
Andy Stadler | 7b0f8f0 | 2011-01-12 14:59:52 -0800 | [diff] [blame] | 3034 | |
| 3035 | /** |
Robin Lee | 3795fb0 | 2015-02-16 14:17:23 +0000 | [diff] [blame] | 3036 | * Result code for {@link #getStorageEncryptionStatus}: |
| 3037 | * indicating that encryption is active, but an encryption key has not |
| 3038 | * been set by the user. |
| 3039 | */ |
| 3040 | public static final int ENCRYPTION_STATUS_ACTIVE_DEFAULT_KEY = 4; |
| 3041 | |
| 3042 | /** |
Makoto Onuki | d4c9e54 | 2016-02-25 18:17:30 -0800 | [diff] [blame] | 3043 | * Result code for {@link #getStorageEncryptionStatus}: |
Amith Yamasani | 75db125 | 2016-07-11 14:41:01 -0700 | [diff] [blame] | 3044 | * indicating that encryption is active and the encryption key is tied to the user or profile. |
| 3045 | * <p> |
| 3046 | * This value is only returned to apps targeting API level 24 and above. For apps targeting |
| 3047 | * earlier API levels, {@link #ENCRYPTION_STATUS_ACTIVE} is returned, even if the |
| 3048 | * encryption key is specific to the user or profile. |
Makoto Onuki | d4c9e54 | 2016-02-25 18:17:30 -0800 | [diff] [blame] | 3049 | */ |
| 3050 | public static final int ENCRYPTION_STATUS_ACTIVE_PER_USER = 5; |
| 3051 | |
| 3052 | /** |
Andy Stadler | 7b0f8f0 | 2011-01-12 14:59:52 -0800 | [diff] [blame] | 3053 | * Activity action: begin the process of encrypting data on the device. This activity should |
| 3054 | * be launched after using {@link #setStorageEncryption} to request encryption be activated. |
| 3055 | * After resuming from this activity, use {@link #getStorageEncryption} |
| 3056 | * to check encryption status. However, on some devices this activity may never return, as |
| 3057 | * it may trigger a reboot and in some cases a complete data wipe of the device. |
| 3058 | */ |
| 3059 | @SdkConstant(SdkConstantType.ACTIVITY_INTENT_ACTION) |
| 3060 | public static final String ACTION_START_ENCRYPTION |
| 3061 | = "android.app.action.START_ENCRYPTION"; |
Andy Stadler | 7b0f8f0 | 2011-01-12 14:59:52 -0800 | [diff] [blame] | 3062 | /** |
Jim Miller | b8ec470 | 2012-08-31 17:19:10 -0700 | [diff] [blame] | 3063 | * Widgets are enabled in keyguard |
| 3064 | */ |
Jim Miller | 48b9b0d | 2012-09-19 23:16:50 -0700 | [diff] [blame] | 3065 | public static final int KEYGUARD_DISABLE_FEATURES_NONE = 0; |
Jim Miller | b8ec470 | 2012-08-31 17:19:10 -0700 | [diff] [blame] | 3066 | |
| 3067 | /** |
Jim Miller | 50e6218 | 2014-04-23 17:25:00 -0700 | [diff] [blame] | 3068 | * Disable all keyguard widgets. Has no effect. |
Jim Miller | b8ec470 | 2012-08-31 17:19:10 -0700 | [diff] [blame] | 3069 | */ |
Jim Miller | 48b9b0d | 2012-09-19 23:16:50 -0700 | [diff] [blame] | 3070 | public static final int KEYGUARD_DISABLE_WIDGETS_ALL = 1 << 0; |
| 3071 | |
| 3072 | /** |
| 3073 | * Disable the camera on secure keyguard screens (e.g. PIN/Pattern/Password) |
| 3074 | */ |
| 3075 | public static final int KEYGUARD_DISABLE_SECURE_CAMERA = 1 << 1; |
| 3076 | |
| 3077 | /** |
Jim Miller | 50e6218 | 2014-04-23 17:25:00 -0700 | [diff] [blame] | 3078 | * Disable showing all notifications on secure keyguard screens (e.g. PIN/Pattern/Password) |
| 3079 | */ |
| 3080 | public static final int KEYGUARD_DISABLE_SECURE_NOTIFICATIONS = 1 << 2; |
| 3081 | |
| 3082 | /** |
| 3083 | * Only allow redacted notifications on secure keyguard screens (e.g. PIN/Pattern/Password) |
| 3084 | */ |
| 3085 | public static final int KEYGUARD_DISABLE_UNREDACTED_NOTIFICATIONS = 1 << 3; |
| 3086 | |
| 3087 | /** |
Adrian Roos | a06d5ca | 2014-07-28 15:14:21 +0200 | [diff] [blame] | 3088 | * Ignore trust agent state on secure keyguard screens |
Jim Miller | 50e6218 | 2014-04-23 17:25:00 -0700 | [diff] [blame] | 3089 | * (e.g. PIN/Pattern/Password). |
| 3090 | */ |
| 3091 | public static final int KEYGUARD_DISABLE_TRUST_AGENTS = 1 << 4; |
| 3092 | |
| 3093 | /** |
Jim Miller | 06e3450 | 2014-07-17 14:46:05 -0700 | [diff] [blame] | 3094 | * Disable fingerprint sensor on keyguard secure screens (e.g. PIN/Pattern/Password). |
| 3095 | */ |
| 3096 | public static final int KEYGUARD_DISABLE_FINGERPRINT = 1 << 5; |
| 3097 | |
| 3098 | /** |
Adrian Roos | 7f06eed | 2016-02-05 15:21:02 -0800 | [diff] [blame] | 3099 | * Disable text entry into notifications on secure keyguard screens (e.g. PIN/Pattern/Password). |
| 3100 | */ |
| 3101 | public static final int KEYGUARD_DISABLE_REMOTE_INPUT = 1 << 6; |
| 3102 | |
| 3103 | /** |
Jim Miller | 3520774 | 2012-11-02 15:33:20 -0700 | [diff] [blame] | 3104 | * Disable all current and future keyguard customizations. |
Jim Miller | 48b9b0d | 2012-09-19 23:16:50 -0700 | [diff] [blame] | 3105 | */ |
| 3106 | public static final int KEYGUARD_DISABLE_FEATURES_ALL = 0x7fffffff; |
Jim Miller | b8ec470 | 2012-08-31 17:19:10 -0700 | [diff] [blame] | 3107 | |
| 3108 | /** |
Suprabh Shukla | 34d92ef | 2016-03-14 13:49:37 -0700 | [diff] [blame] | 3109 | * Called by an application that is administering the device to request that the storage system |
| 3110 | * be encrypted. |
| 3111 | * <p> |
| 3112 | * When multiple device administrators attempt to control device encryption, the most secure, |
| 3113 | * supported setting will always be used. If any device administrator requests device |
| 3114 | * encryption, it will be enabled; Conversely, if a device administrator attempts to disable |
| 3115 | * device encryption while another device administrator has enabled it, the call to disable will |
Andy Stadler | 7b0f8f0 | 2011-01-12 14:59:52 -0800 | [diff] [blame] | 3116 | * fail (most commonly returning {@link #ENCRYPTION_STATUS_ACTIVE}). |
Suprabh Shukla | 34d92ef | 2016-03-14 13:49:37 -0700 | [diff] [blame] | 3117 | * <p> |
| 3118 | * This policy controls encryption of the secure (application data) storage area. Data written |
| 3119 | * to other storage areas may or may not be encrypted, and this policy does not require or |
| 3120 | * control the encryption of any other storage areas. There is one exception: If |
| 3121 | * {@link android.os.Environment#isExternalStorageEmulated()} is {@code true}, then the |
| 3122 | * directory returned by {@link android.os.Environment#getExternalStorageDirectory()} must be |
| 3123 | * written to disk within the encrypted storage area. |
| 3124 | * <p> |
| 3125 | * Important Note: On some devices, it is possible to encrypt storage without requiring the user |
| 3126 | * to create a device PIN or Password. In this case, the storage is encrypted, but the |
| 3127 | * encryption key may not be fully secured. For maximum security, the administrator should also |
| 3128 | * require (and check for) a pattern, PIN, or password. |
Andy Stadler | 7b0f8f0 | 2011-01-12 14:59:52 -0800 | [diff] [blame] | 3129 | * |
| 3130 | * @param admin Which {@link DeviceAdminReceiver} this request is associated with. |
| 3131 | * @param encrypt true to request encryption, false to release any previous request |
Andy Stadler | 22dbfda | 2011-01-17 12:47:31 -0800 | [diff] [blame] | 3132 | * @return the new request status (for all active admins) - will be one of |
Suprabh Shukla | 34d92ef | 2016-03-14 13:49:37 -0700 | [diff] [blame] | 3133 | * {@link #ENCRYPTION_STATUS_UNSUPPORTED}, {@link #ENCRYPTION_STATUS_INACTIVE}, or |
| 3134 | * {@link #ENCRYPTION_STATUS_ACTIVE}. This is the value of the requests; Use |
| 3135 | * {@link #getStorageEncryptionStatus()} to query the actual device state. |
| 3136 | * @throws SecurityException if {@code admin} is not an active administrator or does not use |
| 3137 | * {@link DeviceAdminInfo#USES_ENCRYPTED_STORAGE} |
Andy Stadler | 7b0f8f0 | 2011-01-12 14:59:52 -0800 | [diff] [blame] | 3138 | */ |
Robin Lee | 25e2645 | 2015-06-02 09:56:29 -0700 | [diff] [blame] | 3139 | public int setStorageEncryption(@NonNull ComponentName admin, boolean encrypt) { |
Benjamin Franz | bc33c82 | 2016-04-15 08:57:52 +0100 | [diff] [blame] | 3140 | throwIfParentInstance("setStorageEncryption"); |
Andy Stadler | 7b0f8f0 | 2011-01-12 14:59:52 -0800 | [diff] [blame] | 3141 | if (mService != null) { |
| 3142 | try { |
Fyodor Kupolov | bdc58c6 | 2015-01-29 13:24:03 -0800 | [diff] [blame] | 3143 | return mService.setStorageEncryption(admin, encrypt); |
Andy Stadler | 7b0f8f0 | 2011-01-12 14:59:52 -0800 | [diff] [blame] | 3144 | } catch (RemoteException e) { |
Jeff Sharkey | dbff9ca | 2016-03-01 19:46:25 -0700 | [diff] [blame] | 3145 | throw e.rethrowFromSystemServer(); |
Andy Stadler | 7b0f8f0 | 2011-01-12 14:59:52 -0800 | [diff] [blame] | 3146 | } |
| 3147 | } |
| 3148 | return ENCRYPTION_STATUS_UNSUPPORTED; |
| 3149 | } |
| 3150 | |
| 3151 | /** |
| 3152 | * Called by an application that is administering the device to |
Andy Stadler | 22dbfda | 2011-01-17 12:47:31 -0800 | [diff] [blame] | 3153 | * determine the requested setting for secure storage. |
Andy Stadler | 7b0f8f0 | 2011-01-12 14:59:52 -0800 | [diff] [blame] | 3154 | * |
Andy Stadler | 22dbfda | 2011-01-17 12:47:31 -0800 | [diff] [blame] | 3155 | * @param admin Which {@link DeviceAdminReceiver} this request is associated with. If null, |
| 3156 | * this will return the requested encryption setting as an aggregate of all active |
| 3157 | * administrators. |
| 3158 | * @return true if the admin(s) are requesting encryption, false if not. |
Andy Stadler | 7b0f8f0 | 2011-01-12 14:59:52 -0800 | [diff] [blame] | 3159 | */ |
Robin Lee | 25e2645 | 2015-06-02 09:56:29 -0700 | [diff] [blame] | 3160 | public boolean getStorageEncryption(@Nullable ComponentName admin) { |
Benjamin Franz | bc33c82 | 2016-04-15 08:57:52 +0100 | [diff] [blame] | 3161 | throwIfParentInstance("getStorageEncryption"); |
Andy Stadler | 7b0f8f0 | 2011-01-12 14:59:52 -0800 | [diff] [blame] | 3162 | if (mService != null) { |
| 3163 | try { |
Makoto Onuki | cc4bbeb | 2015-09-17 10:28:24 -0700 | [diff] [blame] | 3164 | return mService.getStorageEncryption(admin, myUserId()); |
Andy Stadler | 7b0f8f0 | 2011-01-12 14:59:52 -0800 | [diff] [blame] | 3165 | } catch (RemoteException e) { |
Jeff Sharkey | dbff9ca | 2016-03-01 19:46:25 -0700 | [diff] [blame] | 3166 | throw e.rethrowFromSystemServer(); |
Andy Stadler | 7b0f8f0 | 2011-01-12 14:59:52 -0800 | [diff] [blame] | 3167 | } |
| 3168 | } |
Andy Stadler | 22dbfda | 2011-01-17 12:47:31 -0800 | [diff] [blame] | 3169 | return false; |
| 3170 | } |
| 3171 | |
| 3172 | /** |
| 3173 | * Called by an application that is administering the device to |
| 3174 | * determine the current encryption status of the device. |
Amith Yamasani | 75db125 | 2016-07-11 14:41:01 -0700 | [diff] [blame] | 3175 | * <p> |
Andy Stadler | 22dbfda | 2011-01-17 12:47:31 -0800 | [diff] [blame] | 3176 | * Depending on the returned status code, the caller may proceed in different |
| 3177 | * ways. If the result is {@link #ENCRYPTION_STATUS_UNSUPPORTED}, the |
| 3178 | * storage system does not support encryption. If the |
| 3179 | * result is {@link #ENCRYPTION_STATUS_INACTIVE}, use {@link |
| 3180 | * #ACTION_START_ENCRYPTION} to begin the process of encrypting or decrypting the |
Robin Lee | 3795fb0 | 2015-02-16 14:17:23 +0000 | [diff] [blame] | 3181 | * storage. If the result is {@link #ENCRYPTION_STATUS_ACTIVE_DEFAULT_KEY}, the |
| 3182 | * storage system has enabled encryption but no password is set so further action |
Amith Yamasani | 75db125 | 2016-07-11 14:41:01 -0700 | [diff] [blame] | 3183 | * may be required. If the result is {@link #ENCRYPTION_STATUS_ACTIVATING}, |
| 3184 | * {@link #ENCRYPTION_STATUS_ACTIVE} or {@link #ENCRYPTION_STATUS_ACTIVE_PER_USER}, |
| 3185 | * no further action is required. |
Andy Stadler | 22dbfda | 2011-01-17 12:47:31 -0800 | [diff] [blame] | 3186 | * |
Robin Lee | 7e67871 | 2014-07-24 16:41:31 +0100 | [diff] [blame] | 3187 | * @return current status of encryption. The value will be one of |
Andy Stadler | 22dbfda | 2011-01-17 12:47:31 -0800 | [diff] [blame] | 3188 | * {@link #ENCRYPTION_STATUS_UNSUPPORTED}, {@link #ENCRYPTION_STATUS_INACTIVE}, |
Robin Lee | 3795fb0 | 2015-02-16 14:17:23 +0000 | [diff] [blame] | 3189 | * {@link #ENCRYPTION_STATUS_ACTIVATING}, {@link #ENCRYPTION_STATUS_ACTIVE_DEFAULT_KEY}, |
Amith Yamasani | 75db125 | 2016-07-11 14:41:01 -0700 | [diff] [blame] | 3190 | * {@link #ENCRYPTION_STATUS_ACTIVE}, or {@link #ENCRYPTION_STATUS_ACTIVE_PER_USER}. |
Andy Stadler | 22dbfda | 2011-01-17 12:47:31 -0800 | [diff] [blame] | 3191 | */ |
| 3192 | public int getStorageEncryptionStatus() { |
Benjamin Franz | bc33c82 | 2016-04-15 08:57:52 +0100 | [diff] [blame] | 3193 | throwIfParentInstance("getStorageEncryptionStatus"); |
Makoto Onuki | cc4bbeb | 2015-09-17 10:28:24 -0700 | [diff] [blame] | 3194 | return getStorageEncryptionStatus(myUserId()); |
Amith Yamasani | 599dd7c | 2012-09-14 23:20:08 -0700 | [diff] [blame] | 3195 | } |
| 3196 | |
| 3197 | /** @hide per-user version */ |
| 3198 | public int getStorageEncryptionStatus(int userHandle) { |
Andy Stadler | 22dbfda | 2011-01-17 12:47:31 -0800 | [diff] [blame] | 3199 | if (mService != null) { |
| 3200 | try { |
Makoto Onuki | d4c9e54 | 2016-02-25 18:17:30 -0800 | [diff] [blame] | 3201 | return mService.getStorageEncryptionStatus(mContext.getPackageName(), userHandle); |
Andy Stadler | 22dbfda | 2011-01-17 12:47:31 -0800 | [diff] [blame] | 3202 | } catch (RemoteException e) { |
Jeff Sharkey | dbff9ca | 2016-03-01 19:46:25 -0700 | [diff] [blame] | 3203 | throw e.rethrowFromSystemServer(); |
Andy Stadler | 22dbfda | 2011-01-17 12:47:31 -0800 | [diff] [blame] | 3204 | } |
| 3205 | } |
Andy Stadler | 7b0f8f0 | 2011-01-12 14:59:52 -0800 | [diff] [blame] | 3206 | return ENCRYPTION_STATUS_UNSUPPORTED; |
| 3207 | } |
| 3208 | |
| 3209 | /** |
Robin Lee | 2f7e1e4 | 2016-03-21 10:50:01 +0000 | [diff] [blame] | 3210 | * Mark a CA certificate as approved by the device user. This means that they have been notified |
| 3211 | * of the installation, were made aware of the risks, viewed the certificate and still wanted to |
| 3212 | * keep the certificate on the device. |
| 3213 | * |
| 3214 | * Calling with {@param approval} as {@code true} will cancel any ongoing warnings related to |
| 3215 | * this certificate. |
| 3216 | * |
| 3217 | * @hide |
| 3218 | */ |
| 3219 | public boolean approveCaCert(String alias, int userHandle, boolean approval) { |
| 3220 | if (mService != null) { |
| 3221 | try { |
| 3222 | return mService.approveCaCert(alias, userHandle, approval); |
| 3223 | } catch (RemoteException e) { |
| 3224 | throw e.rethrowFromSystemServer(); |
| 3225 | } |
| 3226 | } |
| 3227 | return false; |
| 3228 | } |
| 3229 | |
| 3230 | /** |
| 3231 | * Check whether a CA certificate has been approved by the device user. |
| 3232 | * |
| 3233 | * @hide |
| 3234 | */ |
| 3235 | public boolean isCaCertApproved(String alias, int userHandle) { |
| 3236 | if (mService != null) { |
| 3237 | try { |
| 3238 | return mService.isCaCertApproved(alias, userHandle); |
| 3239 | } catch (RemoteException e) { |
| 3240 | throw e.rethrowFromSystemServer(); |
| 3241 | } |
| 3242 | } |
| 3243 | return false; |
| 3244 | } |
| 3245 | |
| 3246 | /** |
Robin Lee | 7e67871 | 2014-07-24 16:41:31 +0100 | [diff] [blame] | 3247 | * Installs the given certificate as a user CA. |
| 3248 | * |
Robin Lee | 25e2645 | 2015-06-02 09:56:29 -0700 | [diff] [blame] | 3249 | * @param admin Which {@link DeviceAdminReceiver} this request is associated with, or |
| 3250 | * {@code null} if calling from a delegated certificate installer. |
Robin Lee | 7e67871 | 2014-07-24 16:41:31 +0100 | [diff] [blame] | 3251 | * @param certBuffer encoded form of the certificate to install. |
Maggie Benthall | da51e68 | 2013-08-08 22:35:44 -0400 | [diff] [blame] | 3252 | * |
| 3253 | * @return false if the certBuffer cannot be parsed or installation is |
Robin Lee | 7e67871 | 2014-07-24 16:41:31 +0100 | [diff] [blame] | 3254 | * interrupted, true otherwise. |
Suprabh Shukla | 34d92ef | 2016-03-14 13:49:37 -0700 | [diff] [blame] | 3255 | * @throws SecurityException if {@code admin} is not {@code null} and not a device or profile |
| 3256 | * owner. |
Maggie Benthall | da51e68 | 2013-08-08 22:35:44 -0400 | [diff] [blame] | 3257 | */ |
Robin Lee | 25e2645 | 2015-06-02 09:56:29 -0700 | [diff] [blame] | 3258 | public boolean installCaCert(@Nullable ComponentName admin, byte[] certBuffer) { |
Benjamin Franz | bc33c82 | 2016-04-15 08:57:52 +0100 | [diff] [blame] | 3259 | throwIfParentInstance("installCaCert"); |
Maggie Benthall | da51e68 | 2013-08-08 22:35:44 -0400 | [diff] [blame] | 3260 | if (mService != null) { |
| 3261 | try { |
Robin Lee | 7e67871 | 2014-07-24 16:41:31 +0100 | [diff] [blame] | 3262 | return mService.installCaCert(admin, certBuffer); |
Maggie Benthall | da51e68 | 2013-08-08 22:35:44 -0400 | [diff] [blame] | 3263 | } catch (RemoteException e) { |
Jeff Sharkey | dbff9ca | 2016-03-01 19:46:25 -0700 | [diff] [blame] | 3264 | throw e.rethrowFromSystemServer(); |
Maggie Benthall | da51e68 | 2013-08-08 22:35:44 -0400 | [diff] [blame] | 3265 | } |
| 3266 | } |
| 3267 | return false; |
| 3268 | } |
| 3269 | |
| 3270 | /** |
Robin Lee | 7e67871 | 2014-07-24 16:41:31 +0100 | [diff] [blame] | 3271 | * Uninstalls the given certificate from trusted user CAs, if present. |
| 3272 | * |
Robin Lee | 25e2645 | 2015-06-02 09:56:29 -0700 | [diff] [blame] | 3273 | * @param admin Which {@link DeviceAdminReceiver} this request is associated with, or |
| 3274 | * {@code null} if calling from a delegated certificate installer. |
Robin Lee | 7e67871 | 2014-07-24 16:41:31 +0100 | [diff] [blame] | 3275 | * @param certBuffer encoded form of the certificate to remove. |
Suprabh Shukla | 34d92ef | 2016-03-14 13:49:37 -0700 | [diff] [blame] | 3276 | * @throws SecurityException if {@code admin} is not {@code null} and not a device or profile |
| 3277 | * owner. |
Maggie Benthall | da51e68 | 2013-08-08 22:35:44 -0400 | [diff] [blame] | 3278 | */ |
Robin Lee | 25e2645 | 2015-06-02 09:56:29 -0700 | [diff] [blame] | 3279 | public void uninstallCaCert(@Nullable ComponentName admin, byte[] certBuffer) { |
Benjamin Franz | bc33c82 | 2016-04-15 08:57:52 +0100 | [diff] [blame] | 3280 | throwIfParentInstance("uninstallCaCert"); |
Maggie Benthall | da51e68 | 2013-08-08 22:35:44 -0400 | [diff] [blame] | 3281 | if (mService != null) { |
| 3282 | try { |
Robin Lee | 306fe08 | 2014-06-19 14:04:24 +0000 | [diff] [blame] | 3283 | final String alias = getCaCertAlias(certBuffer); |
Robin Lee | 83881bd | 2015-06-09 16:04:38 -0700 | [diff] [blame] | 3284 | mService.uninstallCaCerts(admin, new String[] {alias}); |
Robin Lee | 306fe08 | 2014-06-19 14:04:24 +0000 | [diff] [blame] | 3285 | } catch (CertificateException e) { |
| 3286 | Log.w(TAG, "Unable to parse certificate", e); |
Maggie Benthall | da51e68 | 2013-08-08 22:35:44 -0400 | [diff] [blame] | 3287 | } catch (RemoteException e) { |
Jeff Sharkey | dbff9ca | 2016-03-01 19:46:25 -0700 | [diff] [blame] | 3288 | throw e.rethrowFromSystemServer(); |
Maggie Benthall | da51e68 | 2013-08-08 22:35:44 -0400 | [diff] [blame] | 3289 | } |
| 3290 | } |
| 3291 | } |
| 3292 | |
| 3293 | /** |
Robin Lee | 7e67871 | 2014-07-24 16:41:31 +0100 | [diff] [blame] | 3294 | * Returns all CA certificates that are currently trusted, excluding system CA certificates. |
| 3295 | * If a user has installed any certificates by other means than device policy these will be |
| 3296 | * included too. |
| 3297 | * |
Robin Lee | 25e2645 | 2015-06-02 09:56:29 -0700 | [diff] [blame] | 3298 | * @param admin Which {@link DeviceAdminReceiver} this request is associated with, or |
| 3299 | * {@code null} if calling from a delegated certificate installer. |
Robin Lee | 7e67871 | 2014-07-24 16:41:31 +0100 | [diff] [blame] | 3300 | * @return a List of byte[] arrays, each encoding one user CA certificate. |
Suprabh Shukla | 34d92ef | 2016-03-14 13:49:37 -0700 | [diff] [blame] | 3301 | * @throws SecurityException if {@code admin} is not {@code null} and not a device or profile |
| 3302 | * owner. |
Maggie Benthall | da51e68 | 2013-08-08 22:35:44 -0400 | [diff] [blame] | 3303 | */ |
Makoto Onuki | 408e8e4 | 2016-10-25 12:10:27 -0700 | [diff] [blame] | 3304 | public @NonNull List<byte[]> getInstalledCaCerts(@Nullable ComponentName admin) { |
| 3305 | final List<byte[]> certs = new ArrayList<byte[]>(); |
Benjamin Franz | bc33c82 | 2016-04-15 08:57:52 +0100 | [diff] [blame] | 3306 | throwIfParentInstance("getInstalledCaCerts"); |
Esteban Talavera | 808f6ef | 2014-08-28 17:15:54 +0100 | [diff] [blame] | 3307 | if (mService != null) { |
Robin Lee | 7e67871 | 2014-07-24 16:41:31 +0100 | [diff] [blame] | 3308 | try { |
Esteban Talavera | 808f6ef | 2014-08-28 17:15:54 +0100 | [diff] [blame] | 3309 | mService.enforceCanManageCaCerts(admin); |
| 3310 | final TrustedCertificateStore certStore = new TrustedCertificateStore(); |
| 3311 | for (String alias : certStore.userAliases()) { |
| 3312 | try { |
| 3313 | certs.add(certStore.getCertificate(alias).getEncoded()); |
| 3314 | } catch (CertificateException ce) { |
| 3315 | Log.w(TAG, "Could not encode certificate: " + alias, ce); |
| 3316 | } |
| 3317 | } |
| 3318 | } catch (RemoteException re) { |
Jeff Sharkey | dbff9ca | 2016-03-01 19:46:25 -0700 | [diff] [blame] | 3319 | throw re.rethrowFromSystemServer(); |
Robin Lee | 7e67871 | 2014-07-24 16:41:31 +0100 | [diff] [blame] | 3320 | } |
| 3321 | } |
| 3322 | return certs; |
Maggie Benthall | da51e68 | 2013-08-08 22:35:44 -0400 | [diff] [blame] | 3323 | } |
| 3324 | |
| 3325 | /** |
Robin Lee | 7e67871 | 2014-07-24 16:41:31 +0100 | [diff] [blame] | 3326 | * Uninstalls all custom trusted CA certificates from the profile. Certificates installed by |
| 3327 | * means other than device policy will also be removed, except for system CA certificates. |
| 3328 | * |
Robin Lee | 25e2645 | 2015-06-02 09:56:29 -0700 | [diff] [blame] | 3329 | * @param admin Which {@link DeviceAdminReceiver} this request is associated with, or |
| 3330 | * {@code null} if calling from a delegated certificate installer. |
Suprabh Shukla | 34d92ef | 2016-03-14 13:49:37 -0700 | [diff] [blame] | 3331 | * @throws SecurityException if {@code admin} is not {@code null} and not a device or profile |
| 3332 | * owner. |
Robin Lee | 7e67871 | 2014-07-24 16:41:31 +0100 | [diff] [blame] | 3333 | */ |
Robin Lee | 25e2645 | 2015-06-02 09:56:29 -0700 | [diff] [blame] | 3334 | public void uninstallAllUserCaCerts(@Nullable ComponentName admin) { |
Benjamin Franz | bc33c82 | 2016-04-15 08:57:52 +0100 | [diff] [blame] | 3335 | throwIfParentInstance("uninstallAllUserCaCerts"); |
Robin Lee | 7e67871 | 2014-07-24 16:41:31 +0100 | [diff] [blame] | 3336 | if (mService != null) { |
Robin Lee | 83881bd | 2015-06-09 16:04:38 -0700 | [diff] [blame] | 3337 | try { |
| 3338 | mService.uninstallCaCerts(admin, new TrustedCertificateStore().userAliases() |
| 3339 | .toArray(new String[0])); |
| 3340 | } catch (RemoteException re) { |
Jeff Sharkey | dbff9ca | 2016-03-01 19:46:25 -0700 | [diff] [blame] | 3341 | throw re.rethrowFromSystemServer(); |
Robin Lee | 7e67871 | 2014-07-24 16:41:31 +0100 | [diff] [blame] | 3342 | } |
| 3343 | } |
| 3344 | } |
| 3345 | |
| 3346 | /** |
| 3347 | * Returns whether this certificate is installed as a trusted CA. |
| 3348 | * |
Robin Lee | 25e2645 | 2015-06-02 09:56:29 -0700 | [diff] [blame] | 3349 | * @param admin Which {@link DeviceAdminReceiver} this request is associated with, or |
| 3350 | * {@code null} if calling from a delegated certificate installer. |
Robin Lee | 7e67871 | 2014-07-24 16:41:31 +0100 | [diff] [blame] | 3351 | * @param certBuffer encoded form of the certificate to look up. |
Suprabh Shukla | 34d92ef | 2016-03-14 13:49:37 -0700 | [diff] [blame] | 3352 | * @throws SecurityException if {@code admin} is not {@code null} and not a device or profile |
| 3353 | * owner. |
Maggie Benthall | da51e68 | 2013-08-08 22:35:44 -0400 | [diff] [blame] | 3354 | */ |
Robin Lee | 25e2645 | 2015-06-02 09:56:29 -0700 | [diff] [blame] | 3355 | public boolean hasCaCertInstalled(@Nullable ComponentName admin, byte[] certBuffer) { |
Benjamin Franz | bc33c82 | 2016-04-15 08:57:52 +0100 | [diff] [blame] | 3356 | throwIfParentInstance("hasCaCertInstalled"); |
Esteban Talavera | 808f6ef | 2014-08-28 17:15:54 +0100 | [diff] [blame] | 3357 | if (mService != null) { |
| 3358 | try { |
| 3359 | mService.enforceCanManageCaCerts(admin); |
| 3360 | return getCaCertAlias(certBuffer) != null; |
| 3361 | } catch (RemoteException re) { |
Jeff Sharkey | dbff9ca | 2016-03-01 19:46:25 -0700 | [diff] [blame] | 3362 | throw re.rethrowFromSystemServer(); |
Esteban Talavera | 808f6ef | 2014-08-28 17:15:54 +0100 | [diff] [blame] | 3363 | } catch (CertificateException ce) { |
| 3364 | Log.w(TAG, "Could not parse certificate", ce); |
| 3365 | } |
Maggie Benthall | da51e68 | 2013-08-08 22:35:44 -0400 | [diff] [blame] | 3366 | } |
| 3367 | return false; |
| 3368 | } |
| 3369 | |
| 3370 | /** |
Robin Lee | ce3399f | 2016-02-24 12:08:32 +0000 | [diff] [blame] | 3371 | * Called by a device or profile owner, or delegated certificate installer, to install a |
| 3372 | * certificate and corresponding private key. All apps within the profile will be able to access |
| 3373 | * the certificate and use the private key, given direct user approval. |
| 3374 | * |
| 3375 | * <p>Access to the installed credentials will not be granted to the caller of this API without |
| 3376 | * direct user approval. This is for security - should a certificate installer become |
| 3377 | * compromised, certificates it had already installed will be protected. |
| 3378 | * |
| 3379 | * <p>If the installer must have access to the credentials, call |
Rubin Xu | b436591 | 2016-03-23 12:13:22 +0000 | [diff] [blame] | 3380 | * {@link #installKeyPair(ComponentName, PrivateKey, Certificate[], String, boolean)} instead. |
Bernhard Bauer | 26408cc | 2014-09-08 14:07:31 +0100 | [diff] [blame] | 3381 | * |
Robin Lee | 25e2645 | 2015-06-02 09:56:29 -0700 | [diff] [blame] | 3382 | * @param admin Which {@link DeviceAdminReceiver} this request is associated with, or |
| 3383 | * {@code null} if calling from a delegated certificate installer. |
Bernhard Bauer | 26408cc | 2014-09-08 14:07:31 +0100 | [diff] [blame] | 3384 | * @param privKey The private key to install. |
| 3385 | * @param cert The certificate to install. |
| 3386 | * @param alias The private key alias under which to install the certificate. If a certificate |
| 3387 | * with that alias already exists, it will be overwritten. |
| 3388 | * @return {@code true} if the keys were installed, {@code false} otherwise. |
Suprabh Shukla | 34d92ef | 2016-03-14 13:49:37 -0700 | [diff] [blame] | 3389 | * @throws SecurityException if {@code admin} is not {@code null} and not a device or profile |
| 3390 | * owner. |
Bernhard Bauer | 26408cc | 2014-09-08 14:07:31 +0100 | [diff] [blame] | 3391 | */ |
Robin Lee | fbc6564 | 2015-08-03 16:21:22 +0100 | [diff] [blame] | 3392 | public boolean installKeyPair(@Nullable ComponentName admin, @NonNull PrivateKey privKey, |
| 3393 | @NonNull Certificate cert, @NonNull String alias) { |
Rubin Xu | b436591 | 2016-03-23 12:13:22 +0000 | [diff] [blame] | 3394 | return installKeyPair(admin, privKey, new Certificate[] {cert}, alias, false); |
Robin Lee | ce3399f | 2016-02-24 12:08:32 +0000 | [diff] [blame] | 3395 | } |
| 3396 | |
| 3397 | /** |
| 3398 | * Called by a device or profile owner, or delegated certificate installer, to install a |
Rubin Xu | b436591 | 2016-03-23 12:13:22 +0000 | [diff] [blame] | 3399 | * certificate chain and corresponding private key for the leaf certificate. All apps within the |
| 3400 | * profile will be able to access the certificate chain and use the private key, given direct |
| 3401 | * user approval. |
Robin Lee | ce3399f | 2016-02-24 12:08:32 +0000 | [diff] [blame] | 3402 | * |
Robin Lee | a1b290e | 2016-03-09 14:38:36 +0000 | [diff] [blame] | 3403 | * <p>The caller of this API may grant itself access to the certificate and private key |
| 3404 | * immediately, without user approval. It is a best practice not to request this unless strictly |
| 3405 | * necessary since it opens up additional security vulnerabilities. |
Robin Lee | ce3399f | 2016-02-24 12:08:32 +0000 | [diff] [blame] | 3406 | * |
| 3407 | * @param admin Which {@link DeviceAdminReceiver} this request is associated with, or |
Robin Lee | a1b290e | 2016-03-09 14:38:36 +0000 | [diff] [blame] | 3408 | * {@code null} if calling from a delegated certificate installer. |
Robin Lee | ce3399f | 2016-02-24 12:08:32 +0000 | [diff] [blame] | 3409 | * @param privKey The private key to install. |
Rubin Xu | b436591 | 2016-03-23 12:13:22 +0000 | [diff] [blame] | 3410 | * @param certs The certificate chain to install. The chain should start with the leaf |
| 3411 | * certificate and include the chain of trust in order. This will be returned by |
| 3412 | * {@link android.security.KeyChain#getCertificateChain}. |
Robin Lee | ce3399f | 2016-02-24 12:08:32 +0000 | [diff] [blame] | 3413 | * @param alias The private key alias under which to install the certificate. If a certificate |
Robin Lee | a1b290e | 2016-03-09 14:38:36 +0000 | [diff] [blame] | 3414 | * with that alias already exists, it will be overwritten. |
Robin Lee | ce3399f | 2016-02-24 12:08:32 +0000 | [diff] [blame] | 3415 | * @param requestAccess {@code true} to request that the calling app be granted access to the |
Robin Lee | a1b290e | 2016-03-09 14:38:36 +0000 | [diff] [blame] | 3416 | * credentials immediately. Otherwise, access to the credentials will be gated by user |
| 3417 | * approval. |
Robin Lee | ce3399f | 2016-02-24 12:08:32 +0000 | [diff] [blame] | 3418 | * @return {@code true} if the keys were installed, {@code false} otherwise. |
Suprabh Shukla | 34d92ef | 2016-03-14 13:49:37 -0700 | [diff] [blame] | 3419 | * @throws SecurityException if {@code admin} is not {@code null} and not a device or profile |
| 3420 | * owner. |
Rubin Xu | b436591 | 2016-03-23 12:13:22 +0000 | [diff] [blame] | 3421 | * @see android.security.KeyChain#getCertificateChain |
Robin Lee | ce3399f | 2016-02-24 12:08:32 +0000 | [diff] [blame] | 3422 | */ |
| 3423 | public boolean installKeyPair(@Nullable ComponentName admin, @NonNull PrivateKey privKey, |
Rubin Xu | b436591 | 2016-03-23 12:13:22 +0000 | [diff] [blame] | 3424 | @NonNull Certificate[] certs, @NonNull String alias, boolean requestAccess) { |
Benjamin Franz | bc33c82 | 2016-04-15 08:57:52 +0100 | [diff] [blame] | 3425 | throwIfParentInstance("installKeyPair"); |
Bernhard Bauer | 26408cc | 2014-09-08 14:07:31 +0100 | [diff] [blame] | 3426 | try { |
Rubin Xu | b436591 | 2016-03-23 12:13:22 +0000 | [diff] [blame] | 3427 | final byte[] pemCert = Credentials.convertToPem(certs[0]); |
| 3428 | byte[] pemChain = null; |
| 3429 | if (certs.length > 1) { |
| 3430 | pemChain = Credentials.convertToPem(Arrays.copyOfRange(certs, 1, certs.length)); |
| 3431 | } |
Robin Lee | 0d5ccb7 | 2014-09-12 17:41:44 +0100 | [diff] [blame] | 3432 | final byte[] pkcs8Key = KeyFactory.getInstance(privKey.getAlgorithm()) |
| 3433 | .getKeySpec(privKey, PKCS8EncodedKeySpec.class).getEncoded(); |
Rubin Xu | b436591 | 2016-03-23 12:13:22 +0000 | [diff] [blame] | 3434 | return mService.installKeyPair(admin, pkcs8Key, pemCert, pemChain, alias, |
| 3435 | requestAccess); |
Bernhard Bauer | 26408cc | 2014-09-08 14:07:31 +0100 | [diff] [blame] | 3436 | } catch (RemoteException e) { |
Jeff Sharkey | dbff9ca | 2016-03-01 19:46:25 -0700 | [diff] [blame] | 3437 | throw e.rethrowFromSystemServer(); |
Robin Lee | 0d5ccb7 | 2014-09-12 17:41:44 +0100 | [diff] [blame] | 3438 | } catch (NoSuchAlgorithmException | InvalidKeySpecException e) { |
| 3439 | Log.w(TAG, "Failed to obtain private key material", e); |
| 3440 | } catch (CertificateException | IOException e) { |
| 3441 | Log.w(TAG, "Could not pem-encode certificate", e); |
Bernhard Bauer | 26408cc | 2014-09-08 14:07:31 +0100 | [diff] [blame] | 3442 | } |
| 3443 | return false; |
| 3444 | } |
| 3445 | |
| 3446 | /** |
Robin Lee | a1b290e | 2016-03-09 14:38:36 +0000 | [diff] [blame] | 3447 | * Called by a device or profile owner, or delegated certificate installer, to remove a |
| 3448 | * certificate and private key pair installed under a given alias. |
Robin Lee | fbc6564 | 2015-08-03 16:21:22 +0100 | [diff] [blame] | 3449 | * |
| 3450 | * @param admin Which {@link DeviceAdminReceiver} this request is associated with, or |
Robin Lee | a1b290e | 2016-03-09 14:38:36 +0000 | [diff] [blame] | 3451 | * {@code null} if calling from a delegated certificate installer. |
Robin Lee | fbc6564 | 2015-08-03 16:21:22 +0100 | [diff] [blame] | 3452 | * @param alias The private key alias under which the certificate is installed. |
Robin Lee | a1b290e | 2016-03-09 14:38:36 +0000 | [diff] [blame] | 3453 | * @return {@code true} if the private key alias no longer exists, {@code false} otherwise. |
Suprabh Shukla | 34d92ef | 2016-03-14 13:49:37 -0700 | [diff] [blame] | 3454 | * @throws SecurityException if {@code admin} is not {@code null} and not a device or profile |
| 3455 | * owner. |
Robin Lee | fbc6564 | 2015-08-03 16:21:22 +0100 | [diff] [blame] | 3456 | */ |
| 3457 | public boolean removeKeyPair(@Nullable ComponentName admin, @NonNull String alias) { |
Benjamin Franz | bc33c82 | 2016-04-15 08:57:52 +0100 | [diff] [blame] | 3458 | throwIfParentInstance("removeKeyPair"); |
Robin Lee | fbc6564 | 2015-08-03 16:21:22 +0100 | [diff] [blame] | 3459 | try { |
| 3460 | return mService.removeKeyPair(admin, alias); |
| 3461 | } catch (RemoteException e) { |
Jeff Sharkey | dbff9ca | 2016-03-01 19:46:25 -0700 | [diff] [blame] | 3462 | throw e.rethrowFromSystemServer(); |
Robin Lee | fbc6564 | 2015-08-03 16:21:22 +0100 | [diff] [blame] | 3463 | } |
Robin Lee | fbc6564 | 2015-08-03 16:21:22 +0100 | [diff] [blame] | 3464 | } |
| 3465 | |
| 3466 | /** |
Robin Lee | 25e2645 | 2015-06-02 09:56:29 -0700 | [diff] [blame] | 3467 | * @return the alias of a given CA certificate in the certificate store, or {@code null} if it |
Robin Lee | 306fe08 | 2014-06-19 14:04:24 +0000 | [diff] [blame] | 3468 | * doesn't exist. |
| 3469 | */ |
| 3470 | private static String getCaCertAlias(byte[] certBuffer) throws CertificateException { |
| 3471 | final CertificateFactory certFactory = CertificateFactory.getInstance("X.509"); |
| 3472 | final X509Certificate cert = (X509Certificate) certFactory.generateCertificate( |
| 3473 | new ByteArrayInputStream(certBuffer)); |
| 3474 | return new TrustedCertificateStore().getCertificateAlias(cert); |
| 3475 | } |
| 3476 | |
| 3477 | /** |
Rubin Xu | ec32b56 | 2015-03-03 17:34:05 +0000 | [diff] [blame] | 3478 | * Called by a profile owner or device owner to grant access to privileged certificate |
Rubin Xu | acdc183 | 2015-04-02 12:40:20 +0100 | [diff] [blame] | 3479 | * manipulation APIs to a third-party certificate installer app. Granted APIs include |
Rubin Xu | ec32b56 | 2015-03-03 17:34:05 +0000 | [diff] [blame] | 3480 | * {@link #getInstalledCaCerts}, {@link #hasCaCertInstalled}, {@link #installCaCert}, |
Rubin Xu | acdc183 | 2015-04-02 12:40:20 +0100 | [diff] [blame] | 3481 | * {@link #uninstallCaCert}, {@link #uninstallAllUserCaCerts} and {@link #installKeyPair}. |
Rubin Xu | ec32b56 | 2015-03-03 17:34:05 +0000 | [diff] [blame] | 3482 | * <p> |
| 3483 | * Delegated certificate installer is a per-user state. The delegated access is persistent until |
| 3484 | * it is later cleared by calling this method with a null value or uninstallling the certificate |
| 3485 | * installer. |
Suprabh Shukla | 34d92ef | 2016-03-14 13:49:37 -0700 | [diff] [blame] | 3486 | * <p> |
Rubin Xu | f03d0a6 | 2016-02-10 14:54:15 +0000 | [diff] [blame] | 3487 | * <b>Note:</b>Starting from {@link android.os.Build.VERSION_CODES#N}, if the caller |
| 3488 | * application's target SDK version is {@link android.os.Build.VERSION_CODES#N} or newer, the |
Suprabh Shukla | 34d92ef | 2016-03-14 13:49:37 -0700 | [diff] [blame] | 3489 | * supplied certificate installer package must be installed when calling this API, otherwise an |
| 3490 | * {@link IllegalArgumentException} will be thrown. |
Rubin Xu | ec32b56 | 2015-03-03 17:34:05 +0000 | [diff] [blame] | 3491 | * |
Robin Lee | 25e2645 | 2015-06-02 09:56:29 -0700 | [diff] [blame] | 3492 | * @param admin Which {@link DeviceAdminReceiver} this request is associated with. |
Rubin Xu | ec32b56 | 2015-03-03 17:34:05 +0000 | [diff] [blame] | 3493 | * @param installerPackage The package name of the certificate installer which will be given |
Suprabh Shukla | 34d92ef | 2016-03-14 13:49:37 -0700 | [diff] [blame] | 3494 | * access. If {@code null} is given the current package will be cleared. |
| 3495 | * @throws SecurityException if {@code admin} is not a device or a profile owner. |
Rubin Xu | ec32b56 | 2015-03-03 17:34:05 +0000 | [diff] [blame] | 3496 | */ |
Robin Lee | 25e2645 | 2015-06-02 09:56:29 -0700 | [diff] [blame] | 3497 | public void setCertInstallerPackage(@NonNull ComponentName admin, @Nullable String |
| 3498 | installerPackage) throws SecurityException { |
Benjamin Franz | bc33c82 | 2016-04-15 08:57:52 +0100 | [diff] [blame] | 3499 | throwIfParentInstance("setCertInstallerPackage"); |
Rubin Xu | ec32b56 | 2015-03-03 17:34:05 +0000 | [diff] [blame] | 3500 | if (mService != null) { |
| 3501 | try { |
Robin Lee | 25e2645 | 2015-06-02 09:56:29 -0700 | [diff] [blame] | 3502 | mService.setCertInstallerPackage(admin, installerPackage); |
Rubin Xu | ec32b56 | 2015-03-03 17:34:05 +0000 | [diff] [blame] | 3503 | } catch (RemoteException e) { |
Jeff Sharkey | dbff9ca | 2016-03-01 19:46:25 -0700 | [diff] [blame] | 3504 | throw e.rethrowFromSystemServer(); |
Rubin Xu | ec32b56 | 2015-03-03 17:34:05 +0000 | [diff] [blame] | 3505 | } |
| 3506 | } |
| 3507 | } |
| 3508 | |
| 3509 | /** |
Suprabh Shukla | 34d92ef | 2016-03-14 13:49:37 -0700 | [diff] [blame] | 3510 | * Called by a profile owner or device owner to retrieve the certificate installer for the user. |
| 3511 | * null if none is set. |
Rubin Xu | ec32b56 | 2015-03-03 17:34:05 +0000 | [diff] [blame] | 3512 | * |
Robin Lee | 25e2645 | 2015-06-02 09:56:29 -0700 | [diff] [blame] | 3513 | * @param admin Which {@link DeviceAdminReceiver} this request is associated with. |
Suprabh Shukla | 34d92ef | 2016-03-14 13:49:37 -0700 | [diff] [blame] | 3514 | * @return The package name of the current delegated certificate installer, or {@code null} if |
| 3515 | * none is set. |
| 3516 | * @throws SecurityException if {@code admin} is not a device or a profile owner. |
Rubin Xu | ec32b56 | 2015-03-03 17:34:05 +0000 | [diff] [blame] | 3517 | */ |
Makoto Onuki | 408e8e4 | 2016-10-25 12:10:27 -0700 | [diff] [blame] | 3518 | public @Nullable String getCertInstallerPackage(@NonNull ComponentName admin) |
| 3519 | throws SecurityException { |
Benjamin Franz | bc33c82 | 2016-04-15 08:57:52 +0100 | [diff] [blame] | 3520 | throwIfParentInstance("getCertInstallerPackage"); |
Rubin Xu | ec32b56 | 2015-03-03 17:34:05 +0000 | [diff] [blame] | 3521 | if (mService != null) { |
| 3522 | try { |
Robin Lee | 25e2645 | 2015-06-02 09:56:29 -0700 | [diff] [blame] | 3523 | return mService.getCertInstallerPackage(admin); |
Rubin Xu | ec32b56 | 2015-03-03 17:34:05 +0000 | [diff] [blame] | 3524 | } catch (RemoteException e) { |
Jeff Sharkey | dbff9ca | 2016-03-01 19:46:25 -0700 | [diff] [blame] | 3525 | throw e.rethrowFromSystemServer(); |
Rubin Xu | ec32b56 | 2015-03-03 17:34:05 +0000 | [diff] [blame] | 3526 | } |
| 3527 | } |
| 3528 | return null; |
| 3529 | } |
| 3530 | |
| 3531 | /** |
Robin Lee | 244ce8e | 2016-01-05 18:03:46 +0000 | [diff] [blame] | 3532 | * Called by a device or profile owner to configure an always-on VPN connection through a |
Robin Lee | dc67971 | 2016-05-03 13:23:03 +0100 | [diff] [blame] | 3533 | * specific application for the current user. |
| 3534 | * |
| 3535 | * @deprecated this version only exists for compability with previous developer preview builds. |
| 3536 | * TODO: delete once there are no longer any live references. |
| 3537 | * @hide |
| 3538 | */ |
Aurimas Liutikas | 514c5ef | 2016-05-24 15:22:55 -0700 | [diff] [blame] | 3539 | @Deprecated |
Robin Lee | dc67971 | 2016-05-03 13:23:03 +0100 | [diff] [blame] | 3540 | public void setAlwaysOnVpnPackage(@NonNull ComponentName admin, @Nullable String vpnPackage) |
| 3541 | throws NameNotFoundException, UnsupportedOperationException { |
| 3542 | setAlwaysOnVpnPackage(admin, vpnPackage, /* lockdownEnabled */ true); |
| 3543 | } |
| 3544 | |
| 3545 | /** |
| 3546 | * Called by a device or profile owner to configure an always-on VPN connection through a |
Suprabh Shukla | 34d92ef | 2016-03-14 13:49:37 -0700 | [diff] [blame] | 3547 | * specific application for the current user. This connection is automatically granted and |
| 3548 | * persisted after a reboot. |
| 3549 | * <p> |
| 3550 | * The designated package should declare a {@link android.net.VpnService} in its manifest |
| 3551 | * guarded by {@link android.Manifest.permission#BIND_VPN_SERVICE}, otherwise the call will |
| 3552 | * fail. |
Robin Lee | 244ce8e | 2016-01-05 18:03:46 +0000 | [diff] [blame] | 3553 | * |
Suprabh Shukla | 34d92ef | 2016-03-14 13:49:37 -0700 | [diff] [blame] | 3554 | * @param vpnPackage The package name for an installed VPN app on the device, or {@code null} to |
Robin Lee | dc67971 | 2016-05-03 13:23:03 +0100 | [diff] [blame] | 3555 | * remove an existing always-on VPN configuration. |
| 3556 | * @param lockdownEnabled {@code true} to disallow networking when the VPN is not connected or |
| 3557 | * {@code false} otherwise. This carries the risk that any failure of the VPN provider |
| 3558 | * could break networking for all apps. This has no effect when clearing. |
Suprabh Shukla | 34d92ef | 2016-03-14 13:49:37 -0700 | [diff] [blame] | 3559 | * @throws SecurityException if {@code admin} is not a device or a profile owner. |
Robin Lee | ee5eb93 | 2016-04-05 16:27:15 +0100 | [diff] [blame] | 3560 | * @throws NameNotFoundException if {@code vpnPackage} is not installed. |
| 3561 | * @throws UnsupportedOperationException if {@code vpnPackage} exists but does not support being |
| 3562 | * set as always-on, or if always-on VPN is not available. |
Robin Lee | 244ce8e | 2016-01-05 18:03:46 +0000 | [diff] [blame] | 3563 | */ |
Robin Lee | dc67971 | 2016-05-03 13:23:03 +0100 | [diff] [blame] | 3564 | public void setAlwaysOnVpnPackage(@NonNull ComponentName admin, @Nullable String vpnPackage, |
| 3565 | boolean lockdownEnabled) |
Robin Lee | ee5eb93 | 2016-04-05 16:27:15 +0100 | [diff] [blame] | 3566 | throws NameNotFoundException, UnsupportedOperationException { |
Benjamin Franz | bc33c82 | 2016-04-15 08:57:52 +0100 | [diff] [blame] | 3567 | throwIfParentInstance("setAlwaysOnVpnPackage"); |
Robin Lee | 244ce8e | 2016-01-05 18:03:46 +0000 | [diff] [blame] | 3568 | if (mService != null) { |
| 3569 | try { |
Robin Lee | dc67971 | 2016-05-03 13:23:03 +0100 | [diff] [blame] | 3570 | if (!mService.setAlwaysOnVpnPackage(admin, vpnPackage, lockdownEnabled)) { |
Robin Lee | ee5eb93 | 2016-04-05 16:27:15 +0100 | [diff] [blame] | 3571 | throw new NameNotFoundException(vpnPackage); |
| 3572 | } |
Robin Lee | 244ce8e | 2016-01-05 18:03:46 +0000 | [diff] [blame] | 3573 | } catch (RemoteException e) { |
Jeff Sharkey | dbff9ca | 2016-03-01 19:46:25 -0700 | [diff] [blame] | 3574 | throw e.rethrowFromSystemServer(); |
Robin Lee | 244ce8e | 2016-01-05 18:03:46 +0000 | [diff] [blame] | 3575 | } |
| 3576 | } |
Robin Lee | 244ce8e | 2016-01-05 18:03:46 +0000 | [diff] [blame] | 3577 | } |
| 3578 | |
| 3579 | /** |
| 3580 | * Called by a device or profile owner to read the name of the package administering an |
Suprabh Shukla | 34d92ef | 2016-03-14 13:49:37 -0700 | [diff] [blame] | 3581 | * always-on VPN connection for the current user. If there is no such package, or the always-on |
| 3582 | * VPN is provided by the system instead of by an application, {@code null} will be returned. |
Robin Lee | 244ce8e | 2016-01-05 18:03:46 +0000 | [diff] [blame] | 3583 | * |
Suprabh Shukla | 34d92ef | 2016-03-14 13:49:37 -0700 | [diff] [blame] | 3584 | * @return Package name of VPN controller responsible for always-on VPN, or {@code null} if none |
| 3585 | * is set. |
| 3586 | * @throws SecurityException if {@code admin} is not a device or a profile owner. |
Robin Lee | 244ce8e | 2016-01-05 18:03:46 +0000 | [diff] [blame] | 3587 | */ |
Makoto Onuki | 408e8e4 | 2016-10-25 12:10:27 -0700 | [diff] [blame] | 3588 | public @Nullable String getAlwaysOnVpnPackage(@NonNull ComponentName admin) { |
Benjamin Franz | bc33c82 | 2016-04-15 08:57:52 +0100 | [diff] [blame] | 3589 | throwIfParentInstance("getAlwaysOnVpnPackage"); |
Robin Lee | 244ce8e | 2016-01-05 18:03:46 +0000 | [diff] [blame] | 3590 | if (mService != null) { |
| 3591 | try { |
| 3592 | return mService.getAlwaysOnVpnPackage(admin); |
| 3593 | } catch (RemoteException e) { |
Jeff Sharkey | dbff9ca | 2016-03-01 19:46:25 -0700 | [diff] [blame] | 3594 | throw e.rethrowFromSystemServer(); |
Robin Lee | 244ce8e | 2016-01-05 18:03:46 +0000 | [diff] [blame] | 3595 | } |
| 3596 | } |
| 3597 | return null; |
| 3598 | } |
| 3599 | |
| 3600 | /** |
Suprabh Shukla | 34d92ef | 2016-03-14 13:49:37 -0700 | [diff] [blame] | 3601 | * Called by an application that is administering the device to disable all cameras on the |
| 3602 | * device, for this user. After setting this, no applications running as this user will be able |
| 3603 | * to access any cameras on the device. |
| 3604 | * <p> |
| 3605 | * If the caller is device owner, then the restriction will be applied to all users. |
| 3606 | * <p> |
| 3607 | * The calling device admin must have requested |
| 3608 | * {@link DeviceAdminInfo#USES_POLICY_DISABLE_CAMERA} to be able to call this method; if it has |
| 3609 | * not, a security exception will be thrown. |
Ben Komalo | 2447edd | 2011-05-09 16:05:33 -0700 | [diff] [blame] | 3610 | * |
| 3611 | * @param admin Which {@link DeviceAdminReceiver} this request is associated with. |
| 3612 | * @param disabled Whether or not the camera should be disabled. |
Suprabh Shukla | 34d92ef | 2016-03-14 13:49:37 -0700 | [diff] [blame] | 3613 | * @throws SecurityException if {@code admin} is not an active administrator or does not use |
| 3614 | * {@link DeviceAdminInfo#USES_POLICY_DISABLE_CAMERA}. |
Ben Komalo | 2447edd | 2011-05-09 16:05:33 -0700 | [diff] [blame] | 3615 | */ |
Robin Lee | 25e2645 | 2015-06-02 09:56:29 -0700 | [diff] [blame] | 3616 | public void setCameraDisabled(@NonNull ComponentName admin, boolean disabled) { |
Benjamin Franz | bc33c82 | 2016-04-15 08:57:52 +0100 | [diff] [blame] | 3617 | throwIfParentInstance("setCameraDisabled"); |
Ben Komalo | 2447edd | 2011-05-09 16:05:33 -0700 | [diff] [blame] | 3618 | if (mService != null) { |
| 3619 | try { |
Fyodor Kupolov | bdc58c6 | 2015-01-29 13:24:03 -0800 | [diff] [blame] | 3620 | mService.setCameraDisabled(admin, disabled); |
Ben Komalo | 2447edd | 2011-05-09 16:05:33 -0700 | [diff] [blame] | 3621 | } catch (RemoteException e) { |
Jeff Sharkey | dbff9ca | 2016-03-01 19:46:25 -0700 | [diff] [blame] | 3622 | throw e.rethrowFromSystemServer(); |
Ben Komalo | 2447edd | 2011-05-09 16:05:33 -0700 | [diff] [blame] | 3623 | } |
| 3624 | } |
| 3625 | } |
| 3626 | |
| 3627 | /** |
Amith Yamasani | 242f4b1 | 2014-10-14 16:06:13 -0700 | [diff] [blame] | 3628 | * Determine whether or not the device's cameras have been disabled for this user, |
Makoto Onuki | 32b3057 | 2015-12-11 14:29:51 -0800 | [diff] [blame] | 3629 | * either by the calling admin, if specified, or all admins. |
Robin Lee | 25e2645 | 2015-06-02 09:56:29 -0700 | [diff] [blame] | 3630 | * @param admin The name of the admin component to check, or {@code null} to check whether any admins |
Ben Komalo | 2447edd | 2011-05-09 16:05:33 -0700 | [diff] [blame] | 3631 | * have disabled the camera |
| 3632 | */ |
Robin Lee | 25e2645 | 2015-06-02 09:56:29 -0700 | [diff] [blame] | 3633 | public boolean getCameraDisabled(@Nullable ComponentName admin) { |
Benjamin Franz | bc33c82 | 2016-04-15 08:57:52 +0100 | [diff] [blame] | 3634 | throwIfParentInstance("getCameraDisabled"); |
Makoto Onuki | cc4bbeb | 2015-09-17 10:28:24 -0700 | [diff] [blame] | 3635 | return getCameraDisabled(admin, myUserId()); |
Amith Yamasani | 599dd7c | 2012-09-14 23:20:08 -0700 | [diff] [blame] | 3636 | } |
| 3637 | |
| 3638 | /** @hide per-user version */ |
Robin Lee | 25e2645 | 2015-06-02 09:56:29 -0700 | [diff] [blame] | 3639 | public boolean getCameraDisabled(@Nullable ComponentName admin, int userHandle) { |
Ben Komalo | 2447edd | 2011-05-09 16:05:33 -0700 | [diff] [blame] | 3640 | if (mService != null) { |
| 3641 | try { |
Amith Yamasani | 599dd7c | 2012-09-14 23:20:08 -0700 | [diff] [blame] | 3642 | return mService.getCameraDisabled(admin, userHandle); |
Ben Komalo | 2447edd | 2011-05-09 16:05:33 -0700 | [diff] [blame] | 3643 | } catch (RemoteException e) { |
Jeff Sharkey | dbff9ca | 2016-03-01 19:46:25 -0700 | [diff] [blame] | 3644 | throw e.rethrowFromSystemServer(); |
Ben Komalo | 2447edd | 2011-05-09 16:05:33 -0700 | [diff] [blame] | 3645 | } |
| 3646 | } |
| 3647 | return false; |
| 3648 | } |
| 3649 | |
| 3650 | /** |
Michal Karpinski | 3fc437e | 2015-12-15 10:09:00 +0000 | [diff] [blame] | 3651 | * Called by a device owner to request a bugreport. |
Suprabh Shukla | 34d92ef | 2016-03-14 13:49:37 -0700 | [diff] [blame] | 3652 | * <p> |
Esteban Talavera | d36dd15 | 2016-12-15 08:51:45 +0000 | [diff] [blame] | 3653 | * If the device contains secondary users or profiles, they must be affiliated with the device |
| 3654 | * owner user. Otherwise a {@link SecurityException} will be thrown. See |
| 3655 | * {@link #setAffiliationIds}. |
Michal Karpinski | 3fc437e | 2015-12-15 10:09:00 +0000 | [diff] [blame] | 3656 | * |
| 3657 | * @param admin Which {@link DeviceAdminReceiver} this request is associated with. |
Suprabh Shukla | 34d92ef | 2016-03-14 13:49:37 -0700 | [diff] [blame] | 3658 | * @return {@code true} if the bugreport collection started successfully, or {@code false} if it |
| 3659 | * wasn't triggered because a previous bugreport operation is still active (either the |
| 3660 | * bugreport is still running or waiting for the user to share or decline) |
Esteban Talavera | d36dd15 | 2016-12-15 08:51:45 +0000 | [diff] [blame] | 3661 | * @throws SecurityException if {@code admin} is not a device owner, or there is at least one |
| 3662 | * profile or secondary user that is not affiliated with the device owner user. |
Michal Karpinski | 3fc437e | 2015-12-15 10:09:00 +0000 | [diff] [blame] | 3663 | */ |
| 3664 | public boolean requestBugreport(@NonNull ComponentName admin) { |
Benjamin Franz | bc33c82 | 2016-04-15 08:57:52 +0100 | [diff] [blame] | 3665 | throwIfParentInstance("requestBugreport"); |
Michal Karpinski | 3fc437e | 2015-12-15 10:09:00 +0000 | [diff] [blame] | 3666 | if (mService != null) { |
| 3667 | try { |
| 3668 | return mService.requestBugreport(admin); |
| 3669 | } catch (RemoteException e) { |
Jeff Sharkey | dbff9ca | 2016-03-01 19:46:25 -0700 | [diff] [blame] | 3670 | throw e.rethrowFromSystemServer(); |
Michal Karpinski | 3fc437e | 2015-12-15 10:09:00 +0000 | [diff] [blame] | 3671 | } |
| 3672 | } |
| 3673 | return false; |
| 3674 | } |
| 3675 | |
| 3676 | /** |
Fyodor Kupolov | cd86ebf | 2015-09-29 17:06:50 -0700 | [diff] [blame] | 3677 | * Determine whether or not creating a guest user has been disabled for the device |
| 3678 | * |
| 3679 | * @hide |
| 3680 | */ |
| 3681 | public boolean getGuestUserDisabled(@Nullable ComponentName admin) { |
| 3682 | // Currently guest users can always be created if multi-user is enabled |
| 3683 | // TODO introduce a policy for guest user creation |
| 3684 | return false; |
| 3685 | } |
| 3686 | |
| 3687 | /** |
Esteban Talavera | 1aee98f | 2014-08-21 14:03:55 +0100 | [diff] [blame] | 3688 | * Called by a device/profile owner to set whether the screen capture is disabled. Disabling |
| 3689 | * screen capture also prevents the content from being shown on display devices that do not have |
| 3690 | * a secure video output. See {@link android.view.Display#FLAG_SECURE} for more details about |
| 3691 | * secure surfaces and secure displays. |
Suprabh Shukla | 34d92ef | 2016-03-14 13:49:37 -0700 | [diff] [blame] | 3692 | * <p> |
| 3693 | * The calling device admin must be a device or profile owner. If it is not, a security |
| 3694 | * exception will be thrown. |
| 3695 | * <p> |
| 3696 | * From version {@link android.os.Build.VERSION_CODES#M} disabling screen capture also blocks |
| 3697 | * assist requests for all activities of the relevant user. |
Benjamin Franz | c200f44 | 2015-06-25 18:20:04 +0100 | [diff] [blame] | 3698 | * |
Sander Alewijnse | d2a1eec | 2014-07-09 12:57:05 +0100 | [diff] [blame] | 3699 | * @param admin Which {@link DeviceAdminReceiver} this request is associated with. |
Sander Alewijnse | 0ced627 | 2014-08-26 11:18:26 +0100 | [diff] [blame] | 3700 | * @param disabled Whether screen capture is disabled or not. |
Suprabh Shukla | 34d92ef | 2016-03-14 13:49:37 -0700 | [diff] [blame] | 3701 | * @throws SecurityException if {@code admin} is not a device or profile owner. |
Sander Alewijnse | d2a1eec | 2014-07-09 12:57:05 +0100 | [diff] [blame] | 3702 | */ |
Robin Lee | 25e2645 | 2015-06-02 09:56:29 -0700 | [diff] [blame] | 3703 | public void setScreenCaptureDisabled(@NonNull ComponentName admin, boolean disabled) { |
Benjamin Franz | bc33c82 | 2016-04-15 08:57:52 +0100 | [diff] [blame] | 3704 | throwIfParentInstance("setScreenCaptureDisabled"); |
Sander Alewijnse | d2a1eec | 2014-07-09 12:57:05 +0100 | [diff] [blame] | 3705 | if (mService != null) { |
| 3706 | try { |
Fyodor Kupolov | bdc58c6 | 2015-01-29 13:24:03 -0800 | [diff] [blame] | 3707 | mService.setScreenCaptureDisabled(admin, disabled); |
Sander Alewijnse | d2a1eec | 2014-07-09 12:57:05 +0100 | [diff] [blame] | 3708 | } catch (RemoteException e) { |
Jeff Sharkey | dbff9ca | 2016-03-01 19:46:25 -0700 | [diff] [blame] | 3709 | throw e.rethrowFromSystemServer(); |
Sander Alewijnse | d2a1eec | 2014-07-09 12:57:05 +0100 | [diff] [blame] | 3710 | } |
| 3711 | } |
| 3712 | } |
| 3713 | |
| 3714 | /** |
Makoto Onuki | 32b3057 | 2015-12-11 14:29:51 -0800 | [diff] [blame] | 3715 | * Determine whether or not screen capture has been disabled by the calling |
Sander Alewijnse | d2a1eec | 2014-07-09 12:57:05 +0100 | [diff] [blame] | 3716 | * admin, if specified, or all admins. |
Robin Lee | 25e2645 | 2015-06-02 09:56:29 -0700 | [diff] [blame] | 3717 | * @param admin The name of the admin component to check, or {@code null} to check whether any admins |
Sander Alewijnse | d2a1eec | 2014-07-09 12:57:05 +0100 | [diff] [blame] | 3718 | * have disabled screen capture. |
| 3719 | */ |
Robin Lee | 25e2645 | 2015-06-02 09:56:29 -0700 | [diff] [blame] | 3720 | public boolean getScreenCaptureDisabled(@Nullable ComponentName admin) { |
Benjamin Franz | bc33c82 | 2016-04-15 08:57:52 +0100 | [diff] [blame] | 3721 | throwIfParentInstance("getScreenCaptureDisabled"); |
Makoto Onuki | cc4bbeb | 2015-09-17 10:28:24 -0700 | [diff] [blame] | 3722 | return getScreenCaptureDisabled(admin, myUserId()); |
Sander Alewijnse | d2a1eec | 2014-07-09 12:57:05 +0100 | [diff] [blame] | 3723 | } |
| 3724 | |
| 3725 | /** @hide per-user version */ |
Robin Lee | 25e2645 | 2015-06-02 09:56:29 -0700 | [diff] [blame] | 3726 | public boolean getScreenCaptureDisabled(@Nullable ComponentName admin, int userHandle) { |
Sander Alewijnse | d2a1eec | 2014-07-09 12:57:05 +0100 | [diff] [blame] | 3727 | if (mService != null) { |
| 3728 | try { |
| 3729 | return mService.getScreenCaptureDisabled(admin, userHandle); |
| 3730 | } catch (RemoteException e) { |
Jeff Sharkey | dbff9ca | 2016-03-01 19:46:25 -0700 | [diff] [blame] | 3731 | throw e.rethrowFromSystemServer(); |
Sander Alewijnse | d2a1eec | 2014-07-09 12:57:05 +0100 | [diff] [blame] | 3732 | } |
| 3733 | } |
| 3734 | return false; |
| 3735 | } |
| 3736 | |
| 3737 | /** |
Suprabh Shukla | 34d92ef | 2016-03-14 13:49:37 -0700 | [diff] [blame] | 3738 | * Called by a device owner to set whether auto time is required. If auto time is required the |
| 3739 | * user cannot set the date and time, but has to use network date and time. |
| 3740 | * <p> |
| 3741 | * Note: if auto time is required the user can still manually set the time zone. |
| 3742 | * <p> |
| 3743 | * The calling device admin must be a device owner. If it is not, a security exception will be |
| 3744 | * thrown. |
Sander Alewijnse | 0ced627 | 2014-08-26 11:18:26 +0100 | [diff] [blame] | 3745 | * |
| 3746 | * @param admin Which {@link DeviceAdminReceiver} this request is associated with. |
| 3747 | * @param required Whether auto time is set required or not. |
Suprabh Shukla | 34d92ef | 2016-03-14 13:49:37 -0700 | [diff] [blame] | 3748 | * @throws SecurityException if {@code admin} is not a device owner. |
Sander Alewijnse | 0ced627 | 2014-08-26 11:18:26 +0100 | [diff] [blame] | 3749 | */ |
Robin Lee | 25e2645 | 2015-06-02 09:56:29 -0700 | [diff] [blame] | 3750 | public void setAutoTimeRequired(@NonNull ComponentName admin, boolean required) { |
Benjamin Franz | bc33c82 | 2016-04-15 08:57:52 +0100 | [diff] [blame] | 3751 | throwIfParentInstance("setAutoTimeRequired"); |
Sander Alewijnse | 0ced627 | 2014-08-26 11:18:26 +0100 | [diff] [blame] | 3752 | if (mService != null) { |
| 3753 | try { |
Fyodor Kupolov | bdc58c6 | 2015-01-29 13:24:03 -0800 | [diff] [blame] | 3754 | mService.setAutoTimeRequired(admin, required); |
Sander Alewijnse | 0ced627 | 2014-08-26 11:18:26 +0100 | [diff] [blame] | 3755 | } catch (RemoteException e) { |
Jeff Sharkey | dbff9ca | 2016-03-01 19:46:25 -0700 | [diff] [blame] | 3756 | throw e.rethrowFromSystemServer(); |
Sander Alewijnse | 0ced627 | 2014-08-26 11:18:26 +0100 | [diff] [blame] | 3757 | } |
| 3758 | } |
| 3759 | } |
| 3760 | |
| 3761 | /** |
| 3762 | * @return true if auto time is required. |
| 3763 | */ |
| 3764 | public boolean getAutoTimeRequired() { |
Benjamin Franz | bc33c82 | 2016-04-15 08:57:52 +0100 | [diff] [blame] | 3765 | throwIfParentInstance("getAutoTimeRequired"); |
Sander Alewijnse | 0ced627 | 2014-08-26 11:18:26 +0100 | [diff] [blame] | 3766 | if (mService != null) { |
| 3767 | try { |
| 3768 | return mService.getAutoTimeRequired(); |
| 3769 | } catch (RemoteException e) { |
Jeff Sharkey | dbff9ca | 2016-03-01 19:46:25 -0700 | [diff] [blame] | 3770 | throw e.rethrowFromSystemServer(); |
Sander Alewijnse | 0ced627 | 2014-08-26 11:18:26 +0100 | [diff] [blame] | 3771 | } |
| 3772 | } |
| 3773 | return false; |
| 3774 | } |
| 3775 | |
| 3776 | /** |
Lenka Trochtova | f348e8e | 2016-01-07 17:20:34 +0100 | [diff] [blame] | 3777 | * Called by a device owner to set whether all users created on the device should be ephemeral. |
Suprabh Shukla | 34d92ef | 2016-03-14 13:49:37 -0700 | [diff] [blame] | 3778 | * <p> |
| 3779 | * The system user is exempt from this policy - it is never ephemeral. |
| 3780 | * <p> |
| 3781 | * The calling device admin must be the device owner. If it is not, a security exception will be |
| 3782 | * thrown. |
Lenka Trochtova | f348e8e | 2016-01-07 17:20:34 +0100 | [diff] [blame] | 3783 | * |
| 3784 | * @param admin Which {@link DeviceAdminReceiver} this request is associated with. |
| 3785 | * @param forceEphemeralUsers If true, all the existing users will be deleted and all |
Suprabh Shukla | 34d92ef | 2016-03-14 13:49:37 -0700 | [diff] [blame] | 3786 | * subsequently created users will be ephemeral. |
| 3787 | * @throws SecurityException if {@code admin} is not a device owner. |
Lenka Trochtova | f348e8e | 2016-01-07 17:20:34 +0100 | [diff] [blame] | 3788 | * @hide |
| 3789 | */ |
| 3790 | public void setForceEphemeralUsers( |
| 3791 | @NonNull ComponentName admin, boolean forceEphemeralUsers) { |
Benjamin Franz | bc33c82 | 2016-04-15 08:57:52 +0100 | [diff] [blame] | 3792 | throwIfParentInstance("setForceEphemeralUsers"); |
Lenka Trochtova | f348e8e | 2016-01-07 17:20:34 +0100 | [diff] [blame] | 3793 | if (mService != null) { |
| 3794 | try { |
| 3795 | mService.setForceEphemeralUsers(admin, forceEphemeralUsers); |
| 3796 | } catch (RemoteException e) { |
Jeff Sharkey | dbff9ca | 2016-03-01 19:46:25 -0700 | [diff] [blame] | 3797 | throw e.rethrowFromSystemServer(); |
Lenka Trochtova | f348e8e | 2016-01-07 17:20:34 +0100 | [diff] [blame] | 3798 | } |
| 3799 | } |
| 3800 | } |
| 3801 | |
| 3802 | /** |
| 3803 | * @return true if all users are created ephemeral. |
Suprabh Shukla | 34d92ef | 2016-03-14 13:49:37 -0700 | [diff] [blame] | 3804 | * @throws SecurityException if {@code admin} is not a device owner. |
Lenka Trochtova | f348e8e | 2016-01-07 17:20:34 +0100 | [diff] [blame] | 3805 | * @hide |
| 3806 | */ |
| 3807 | public boolean getForceEphemeralUsers(@NonNull ComponentName admin) { |
Benjamin Franz | bc33c82 | 2016-04-15 08:57:52 +0100 | [diff] [blame] | 3808 | throwIfParentInstance("getForceEphemeralUsers"); |
Lenka Trochtova | f348e8e | 2016-01-07 17:20:34 +0100 | [diff] [blame] | 3809 | if (mService != null) { |
| 3810 | try { |
| 3811 | return mService.getForceEphemeralUsers(admin); |
| 3812 | } catch (RemoteException e) { |
Jeff Sharkey | dbff9ca | 2016-03-01 19:46:25 -0700 | [diff] [blame] | 3813 | throw e.rethrowFromSystemServer(); |
Lenka Trochtova | f348e8e | 2016-01-07 17:20:34 +0100 | [diff] [blame] | 3814 | } |
| 3815 | } |
| 3816 | return false; |
| 3817 | } |
| 3818 | |
| 3819 | /** |
Jim Miller | 48b9b0d | 2012-09-19 23:16:50 -0700 | [diff] [blame] | 3820 | * Called by an application that is administering the device to disable keyguard customizations, |
| 3821 | * such as widgets. After setting this, keyguard features will be disabled according to the |
| 3822 | * provided feature list. |
Suprabh Shukla | 34d92ef | 2016-03-14 13:49:37 -0700 | [diff] [blame] | 3823 | * <p> |
| 3824 | * The calling device admin must have requested |
| 3825 | * {@link DeviceAdminInfo#USES_POLICY_DISABLE_KEYGUARD_FEATURES} to be able to call this method; |
| 3826 | * if it has not, a security exception will be thrown. |
| 3827 | * <p> |
| 3828 | * Calling this from a managed profile before version {@link android.os.Build.VERSION_CODES#M} |
| 3829 | * will throw a security exception. From version {@link android.os.Build.VERSION_CODES#M} the |
| 3830 | * profile owner of a managed profile can set: |
Kenny Guy | 0b7dd1e | 2015-03-12 17:14:38 +0000 | [diff] [blame] | 3831 | * <ul> |
Esteban Talavera | c1c8359 | 2016-02-17 17:56:15 +0000 | [diff] [blame] | 3832 | * <li>{@link #KEYGUARD_DISABLE_TRUST_AGENTS}, which affects the parent user, but only if there |
Suprabh Shukla | 34d92ef | 2016-03-14 13:49:37 -0700 | [diff] [blame] | 3833 | * is no separate challenge set on the managed profile. |
Esteban Talavera | c1c8359 | 2016-02-17 17:56:15 +0000 | [diff] [blame] | 3834 | * <li>{@link #KEYGUARD_DISABLE_FINGERPRINT} which affects the managed profile challenge if |
Suprabh Shukla | 34d92ef | 2016-03-14 13:49:37 -0700 | [diff] [blame] | 3835 | * there is one, or the parent user otherwise. |
| 3836 | * <li>{@link #KEYGUARD_DISABLE_UNREDACTED_NOTIFICATIONS} which affects notifications generated |
| 3837 | * by applications in the managed profile. |
Kenny Guy | 0b7dd1e | 2015-03-12 17:14:38 +0000 | [diff] [blame] | 3838 | * </ul> |
Esteban Talavera | c1c8359 | 2016-02-17 17:56:15 +0000 | [diff] [blame] | 3839 | * {@link #KEYGUARD_DISABLE_TRUST_AGENTS} and {@link #KEYGUARD_DISABLE_FINGERPRINT} can also be |
| 3840 | * set on the {@link DevicePolicyManager} instance returned by |
Suprabh Shukla | 34d92ef | 2016-03-14 13:49:37 -0700 | [diff] [blame] | 3841 | * {@link #getParentProfileInstance(ComponentName)} in order to set restrictions on the parent |
| 3842 | * profile. |
| 3843 | * <p> |
| 3844 | * Requests to disable other features on a managed profile will be ignored. |
| 3845 | * <p> |
| 3846 | * The admin can check which features have been disabled by calling |
Kenny Guy | 0b7dd1e | 2015-03-12 17:14:38 +0000 | [diff] [blame] | 3847 | * {@link #getKeyguardDisabledFeatures(ComponentName)} |
Amith Yamasani | 242f4b1 | 2014-10-14 16:06:13 -0700 | [diff] [blame] | 3848 | * |
Jim Miller | b8ec470 | 2012-08-31 17:19:10 -0700 | [diff] [blame] | 3849 | * @param admin Which {@link DeviceAdminReceiver} this request is associated with. |
Jim Miller | 3520774 | 2012-11-02 15:33:20 -0700 | [diff] [blame] | 3850 | * @param which {@link #KEYGUARD_DISABLE_FEATURES_NONE} (default), |
Suprabh Shukla | 34d92ef | 2016-03-14 13:49:37 -0700 | [diff] [blame] | 3851 | * {@link #KEYGUARD_DISABLE_WIDGETS_ALL}, {@link #KEYGUARD_DISABLE_SECURE_CAMERA}, |
| 3852 | * {@link #KEYGUARD_DISABLE_SECURE_NOTIFICATIONS}, |
| 3853 | * {@link #KEYGUARD_DISABLE_TRUST_AGENTS}, |
| 3854 | * {@link #KEYGUARD_DISABLE_UNREDACTED_NOTIFICATIONS}, |
| 3855 | * {@link #KEYGUARD_DISABLE_FINGERPRINT}, {@link #KEYGUARD_DISABLE_FEATURES_ALL} |
| 3856 | * @throws SecurityException if {@code admin} is not an active administrator or does not user |
| 3857 | * {@link DeviceAdminInfo#USES_POLICY_DISABLE_KEYGUARD_FEATURES} |
Jim Miller | b8ec470 | 2012-08-31 17:19:10 -0700 | [diff] [blame] | 3858 | */ |
Robin Lee | 25e2645 | 2015-06-02 09:56:29 -0700 | [diff] [blame] | 3859 | public void setKeyguardDisabledFeatures(@NonNull ComponentName admin, int which) { |
Jim Miller | b8ec470 | 2012-08-31 17:19:10 -0700 | [diff] [blame] | 3860 | if (mService != null) { |
| 3861 | try { |
Esteban Talavera | 6239991 | 2016-01-11 15:37:55 +0000 | [diff] [blame] | 3862 | mService.setKeyguardDisabledFeatures(admin, which, mParentInstance); |
Jim Miller | b8ec470 | 2012-08-31 17:19:10 -0700 | [diff] [blame] | 3863 | } catch (RemoteException e) { |
Jeff Sharkey | dbff9ca | 2016-03-01 19:46:25 -0700 | [diff] [blame] | 3864 | throw e.rethrowFromSystemServer(); |
Jim Miller | b8ec470 | 2012-08-31 17:19:10 -0700 | [diff] [blame] | 3865 | } |
| 3866 | } |
| 3867 | } |
| 3868 | |
| 3869 | /** |
Makoto Onuki | 32b3057 | 2015-12-11 14:29:51 -0800 | [diff] [blame] | 3870 | * Determine whether or not features have been disabled in keyguard either by the calling |
Rubin Xu | d3609d4 | 2016-07-13 18:32:57 +0100 | [diff] [blame] | 3871 | * admin, if specified, or all admins that set restrictions on this user and its participating |
Esteban Talavera | c1c8359 | 2016-02-17 17:56:15 +0000 | [diff] [blame] | 3872 | * profiles. Restrictions on profiles that have a separate challenge are not taken into account. |
| 3873 | * |
| 3874 | * <p>This method can be called on the {@link DevicePolicyManager} instance |
| 3875 | * returned by {@link #getParentProfileInstance(ComponentName)} in order to retrieve |
| 3876 | * restrictions on the parent profile. |
| 3877 | * |
Esteban Talavera | 6239991 | 2016-01-11 15:37:55 +0000 | [diff] [blame] | 3878 | * @param admin The name of the admin component to check, or {@code null} to check whether any |
| 3879 | * admins have disabled features in keyguard. |
Jim Miller | 3520774 | 2012-11-02 15:33:20 -0700 | [diff] [blame] | 3880 | * @return bitfield of flags. See {@link #setKeyguardDisabledFeatures(ComponentName, int)} |
| 3881 | * for a list. |
Jim Miller | b8ec470 | 2012-08-31 17:19:10 -0700 | [diff] [blame] | 3882 | */ |
Robin Lee | 25e2645 | 2015-06-02 09:56:29 -0700 | [diff] [blame] | 3883 | public int getKeyguardDisabledFeatures(@Nullable ComponentName admin) { |
Makoto Onuki | cc4bbeb | 2015-09-17 10:28:24 -0700 | [diff] [blame] | 3884 | return getKeyguardDisabledFeatures(admin, myUserId()); |
Amith Yamasani | 599dd7c | 2012-09-14 23:20:08 -0700 | [diff] [blame] | 3885 | } |
| 3886 | |
| 3887 | /** @hide per-user version */ |
Robin Lee | 25e2645 | 2015-06-02 09:56:29 -0700 | [diff] [blame] | 3888 | public int getKeyguardDisabledFeatures(@Nullable ComponentName admin, int userHandle) { |
Jim Miller | b8ec470 | 2012-08-31 17:19:10 -0700 | [diff] [blame] | 3889 | if (mService != null) { |
| 3890 | try { |
Esteban Talavera | 6239991 | 2016-01-11 15:37:55 +0000 | [diff] [blame] | 3891 | return mService.getKeyguardDisabledFeatures(admin, userHandle, mParentInstance); |
Jim Miller | b8ec470 | 2012-08-31 17:19:10 -0700 | [diff] [blame] | 3892 | } catch (RemoteException e) { |
Jeff Sharkey | dbff9ca | 2016-03-01 19:46:25 -0700 | [diff] [blame] | 3893 | throw e.rethrowFromSystemServer(); |
Jim Miller | b8ec470 | 2012-08-31 17:19:10 -0700 | [diff] [blame] | 3894 | } |
| 3895 | } |
Jim Miller | 48b9b0d | 2012-09-19 23:16:50 -0700 | [diff] [blame] | 3896 | return KEYGUARD_DISABLE_FEATURES_NONE; |
Jim Miller | b8ec470 | 2012-08-31 17:19:10 -0700 | [diff] [blame] | 3897 | } |
| 3898 | |
| 3899 | /** |
Dianne Hackborn | d684784 | 2010-01-12 18:14:19 -0800 | [diff] [blame] | 3900 | * @hide |
| 3901 | */ |
Robin Lee | 25e2645 | 2015-06-02 09:56:29 -0700 | [diff] [blame] | 3902 | public void setActiveAdmin(@NonNull ComponentName policyReceiver, boolean refreshing, |
| 3903 | int userHandle) { |
Dianne Hackborn | d684784 | 2010-01-12 18:14:19 -0800 | [diff] [blame] | 3904 | if (mService != null) { |
| 3905 | try { |
Jessica Hummel | 6d36b60 | 2014-04-04 12:42:17 +0100 | [diff] [blame] | 3906 | mService.setActiveAdmin(policyReceiver, refreshing, userHandle); |
Dianne Hackborn | d684784 | 2010-01-12 18:14:19 -0800 | [diff] [blame] | 3907 | } catch (RemoteException e) { |
Jeff Sharkey | dbff9ca | 2016-03-01 19:46:25 -0700 | [diff] [blame] | 3908 | throw e.rethrowFromSystemServer(); |
Dianne Hackborn | d684784 | 2010-01-12 18:14:19 -0800 | [diff] [blame] | 3909 | } |
| 3910 | } |
| 3911 | } |
Konstantin Lopyrev | 3255823 | 2010-05-20 16:18:05 -0700 | [diff] [blame] | 3912 | |
Dianne Hackborn | d684784 | 2010-01-12 18:14:19 -0800 | [diff] [blame] | 3913 | /** |
Jessica Hummel | 6d36b60 | 2014-04-04 12:42:17 +0100 | [diff] [blame] | 3914 | * @hide |
| 3915 | */ |
Robin Lee | 25e2645 | 2015-06-02 09:56:29 -0700 | [diff] [blame] | 3916 | public void setActiveAdmin(@NonNull ComponentName policyReceiver, boolean refreshing) { |
Makoto Onuki | cc4bbeb | 2015-09-17 10:28:24 -0700 | [diff] [blame] | 3917 | setActiveAdmin(policyReceiver, refreshing, myUserId()); |
Jessica Hummel | 6d36b60 | 2014-04-04 12:42:17 +0100 | [diff] [blame] | 3918 | } |
| 3919 | |
| 3920 | /** |
Dianne Hackborn | d684784 | 2010-01-12 18:14:19 -0800 | [diff] [blame] | 3921 | * @hide |
| 3922 | */ |
Robin Lee | 25e2645 | 2015-06-02 09:56:29 -0700 | [diff] [blame] | 3923 | public void getRemoveWarning(@Nullable ComponentName admin, RemoteCallback result) { |
Dianne Hackborn | 8ea138c | 2010-01-26 18:01:04 -0800 | [diff] [blame] | 3924 | if (mService != null) { |
| 3925 | try { |
Makoto Onuki | cc4bbeb | 2015-09-17 10:28:24 -0700 | [diff] [blame] | 3926 | mService.getRemoveWarning(admin, result, myUserId()); |
Dianne Hackborn | 8ea138c | 2010-01-26 18:01:04 -0800 | [diff] [blame] | 3927 | } catch (RemoteException e) { |
Jeff Sharkey | dbff9ca | 2016-03-01 19:46:25 -0700 | [diff] [blame] | 3928 | throw e.rethrowFromSystemServer(); |
Dianne Hackborn | 8ea138c | 2010-01-26 18:01:04 -0800 | [diff] [blame] | 3929 | } |
| 3930 | } |
| 3931 | } |
| 3932 | |
| 3933 | /** |
| 3934 | * @hide |
| 3935 | */ |
Andrew Scull | 5f9e6f3 | 2016-08-02 14:22:17 +0100 | [diff] [blame] | 3936 | public void setActivePasswordState(PasswordMetrics metrics, int userHandle) { |
Dianne Hackborn | d684784 | 2010-01-12 18:14:19 -0800 | [diff] [blame] | 3937 | if (mService != null) { |
| 3938 | try { |
Andrew Scull | 5f9e6f3 | 2016-08-02 14:22:17 +0100 | [diff] [blame] | 3939 | mService.setActivePasswordState(metrics, userHandle); |
Dianne Hackborn | d684784 | 2010-01-12 18:14:19 -0800 | [diff] [blame] | 3940 | } catch (RemoteException e) { |
Jeff Sharkey | dbff9ca | 2016-03-01 19:46:25 -0700 | [diff] [blame] | 3941 | throw e.rethrowFromSystemServer(); |
Dianne Hackborn | d684784 | 2010-01-12 18:14:19 -0800 | [diff] [blame] | 3942 | } |
| 3943 | } |
| 3944 | } |
Konstantin Lopyrev | 3255823 | 2010-05-20 16:18:05 -0700 | [diff] [blame] | 3945 | |
Dianne Hackborn | d684784 | 2010-01-12 18:14:19 -0800 | [diff] [blame] | 3946 | /** |
| 3947 | * @hide |
| 3948 | */ |
Andrew Scull | 5daf273 | 2016-11-14 15:02:45 +0000 | [diff] [blame] | 3949 | public void reportPasswordChanged(@UserIdInt int userId) { |
| 3950 | if (mService != null) { |
| 3951 | try { |
| 3952 | mService.reportPasswordChanged(userId); |
| 3953 | } catch (RemoteException e) { |
| 3954 | throw e.rethrowFromSystemServer(); |
| 3955 | } |
| 3956 | } |
| 3957 | } |
| 3958 | |
| 3959 | /** |
| 3960 | * @hide |
| 3961 | */ |
Amith Yamasani | 599dd7c | 2012-09-14 23:20:08 -0700 | [diff] [blame] | 3962 | public void reportFailedPasswordAttempt(int userHandle) { |
Dianne Hackborn | d684784 | 2010-01-12 18:14:19 -0800 | [diff] [blame] | 3963 | if (mService != null) { |
| 3964 | try { |
Amith Yamasani | 599dd7c | 2012-09-14 23:20:08 -0700 | [diff] [blame] | 3965 | mService.reportFailedPasswordAttempt(userHandle); |
Dianne Hackborn | d684784 | 2010-01-12 18:14:19 -0800 | [diff] [blame] | 3966 | } catch (RemoteException e) { |
Jeff Sharkey | dbff9ca | 2016-03-01 19:46:25 -0700 | [diff] [blame] | 3967 | throw e.rethrowFromSystemServer(); |
Dianne Hackborn | d684784 | 2010-01-12 18:14:19 -0800 | [diff] [blame] | 3968 | } |
| 3969 | } |
| 3970 | } |
Konstantin Lopyrev | 3255823 | 2010-05-20 16:18:05 -0700 | [diff] [blame] | 3971 | |
Dianne Hackborn | d684784 | 2010-01-12 18:14:19 -0800 | [diff] [blame] | 3972 | /** |
| 3973 | * @hide |
| 3974 | */ |
Amith Yamasani | 599dd7c | 2012-09-14 23:20:08 -0700 | [diff] [blame] | 3975 | public void reportSuccessfulPasswordAttempt(int userHandle) { |
Dianne Hackborn | d684784 | 2010-01-12 18:14:19 -0800 | [diff] [blame] | 3976 | if (mService != null) { |
| 3977 | try { |
Amith Yamasani | 599dd7c | 2012-09-14 23:20:08 -0700 | [diff] [blame] | 3978 | mService.reportSuccessfulPasswordAttempt(userHandle); |
Dianne Hackborn | d684784 | 2010-01-12 18:14:19 -0800 | [diff] [blame] | 3979 | } catch (RemoteException e) { |
Jeff Sharkey | dbff9ca | 2016-03-01 19:46:25 -0700 | [diff] [blame] | 3980 | throw e.rethrowFromSystemServer(); |
Dianne Hackborn | d684784 | 2010-01-12 18:14:19 -0800 | [diff] [blame] | 3981 | } |
| 3982 | } |
| 3983 | } |
Amith Yamasani | 71e6c69 | 2013-03-24 17:39:28 -0700 | [diff] [blame] | 3984 | |
| 3985 | /** |
Michal Karpinski | ed5c8f0 | 2016-02-09 15:43:41 +0000 | [diff] [blame] | 3986 | * @hide |
| 3987 | */ |
| 3988 | public void reportFailedFingerprintAttempt(int userHandle) { |
| 3989 | if (mService != null) { |
| 3990 | try { |
| 3991 | mService.reportFailedFingerprintAttempt(userHandle); |
| 3992 | } catch (RemoteException e) { |
Jeff Sharkey | dbff9ca | 2016-03-01 19:46:25 -0700 | [diff] [blame] | 3993 | throw e.rethrowFromSystemServer(); |
Michal Karpinski | ed5c8f0 | 2016-02-09 15:43:41 +0000 | [diff] [blame] | 3994 | } |
| 3995 | } |
| 3996 | } |
| 3997 | |
| 3998 | /** |
| 3999 | * @hide |
| 4000 | */ |
| 4001 | public void reportSuccessfulFingerprintAttempt(int userHandle) { |
| 4002 | if (mService != null) { |
| 4003 | try { |
| 4004 | mService.reportSuccessfulFingerprintAttempt(userHandle); |
| 4005 | } catch (RemoteException e) { |
Jeff Sharkey | dbff9ca | 2016-03-01 19:46:25 -0700 | [diff] [blame] | 4006 | throw e.rethrowFromSystemServer(); |
Michal Karpinski | ed5c8f0 | 2016-02-09 15:43:41 +0000 | [diff] [blame] | 4007 | } |
| 4008 | } |
| 4009 | } |
| 4010 | |
| 4011 | /** |
Michal Karpinski | 31502d3 | 2016-01-25 16:43:07 +0000 | [diff] [blame] | 4012 | * Should be called when keyguard has been dismissed. |
| 4013 | * @hide |
| 4014 | */ |
Michal Karpinski | ed5c8f0 | 2016-02-09 15:43:41 +0000 | [diff] [blame] | 4015 | public void reportKeyguardDismissed(int userHandle) { |
Michal Karpinski | 31502d3 | 2016-01-25 16:43:07 +0000 | [diff] [blame] | 4016 | if (mService != null) { |
| 4017 | try { |
Michal Karpinski | ed5c8f0 | 2016-02-09 15:43:41 +0000 | [diff] [blame] | 4018 | mService.reportKeyguardDismissed(userHandle); |
Michal Karpinski | 31502d3 | 2016-01-25 16:43:07 +0000 | [diff] [blame] | 4019 | } catch (RemoteException e) { |
Jeff Sharkey | dbff9ca | 2016-03-01 19:46:25 -0700 | [diff] [blame] | 4020 | throw e.rethrowFromSystemServer(); |
Michal Karpinski | 31502d3 | 2016-01-25 16:43:07 +0000 | [diff] [blame] | 4021 | } |
| 4022 | } |
| 4023 | } |
| 4024 | |
| 4025 | /** |
| 4026 | * Should be called when keyguard view has been shown to the user. |
| 4027 | * @hide |
| 4028 | */ |
Michal Karpinski | ed5c8f0 | 2016-02-09 15:43:41 +0000 | [diff] [blame] | 4029 | public void reportKeyguardSecured(int userHandle) { |
Michal Karpinski | 31502d3 | 2016-01-25 16:43:07 +0000 | [diff] [blame] | 4030 | if (mService != null) { |
| 4031 | try { |
Michal Karpinski | ed5c8f0 | 2016-02-09 15:43:41 +0000 | [diff] [blame] | 4032 | mService.reportKeyguardSecured(userHandle); |
Michal Karpinski | 31502d3 | 2016-01-25 16:43:07 +0000 | [diff] [blame] | 4033 | } catch (RemoteException e) { |
Jeff Sharkey | dbff9ca | 2016-03-01 19:46:25 -0700 | [diff] [blame] | 4034 | throw e.rethrowFromSystemServer(); |
Michal Karpinski | 31502d3 | 2016-01-25 16:43:07 +0000 | [diff] [blame] | 4035 | } |
| 4036 | } |
| 4037 | } |
| 4038 | |
| 4039 | /** |
Amith Yamasani | 71e6c69 | 2013-03-24 17:39:28 -0700 | [diff] [blame] | 4040 | * @hide |
Nicolas Prevot | 2806374 | 2015-01-08 15:37:12 +0000 | [diff] [blame] | 4041 | * Sets the given package as the device owner. |
Makoto Onuki | a52562c | 2015-10-01 16:12:31 -0700 | [diff] [blame] | 4042 | * Same as {@link #setDeviceOwner(ComponentName, String)} but without setting a device owner name. |
| 4043 | * @param who the component name to be registered as device owner. |
Amith Yamasani | 71e6c69 | 2013-03-24 17:39:28 -0700 | [diff] [blame] | 4044 | * @return whether the package was successfully registered as the device owner. |
| 4045 | * @throws IllegalArgumentException if the package name is null or invalid |
Nicolas Prevot | 2806374 | 2015-01-08 15:37:12 +0000 | [diff] [blame] | 4046 | * @throws IllegalStateException If the preconditions mentioned are not met. |
Amith Yamasani | 71e6c69 | 2013-03-24 17:39:28 -0700 | [diff] [blame] | 4047 | */ |
Makoto Onuki | a52562c | 2015-10-01 16:12:31 -0700 | [diff] [blame] | 4048 | public boolean setDeviceOwner(ComponentName who) { |
| 4049 | return setDeviceOwner(who, null); |
Geoffrey Borggaard | 334c7e3 | 2013-08-08 14:31:36 -0400 | [diff] [blame] | 4050 | } |
| 4051 | |
| 4052 | /** |
| 4053 | * @hide |
Makoto Onuki | 58b684f | 2015-09-04 10:48:16 -0700 | [diff] [blame] | 4054 | */ |
Makoto Onuki | a52562c | 2015-10-01 16:12:31 -0700 | [diff] [blame] | 4055 | public boolean setDeviceOwner(ComponentName who, int userId) { |
| 4056 | return setDeviceOwner(who, null, userId); |
Makoto Onuki | 58b684f | 2015-09-04 10:48:16 -0700 | [diff] [blame] | 4057 | } |
| 4058 | |
| 4059 | /** |
| 4060 | * @hide |
| 4061 | */ |
Makoto Onuki | a52562c | 2015-10-01 16:12:31 -0700 | [diff] [blame] | 4062 | public boolean setDeviceOwner(ComponentName who, String ownerName) { |
| 4063 | return setDeviceOwner(who, ownerName, UserHandle.USER_SYSTEM); |
Makoto Onuki | 58b684f | 2015-09-04 10:48:16 -0700 | [diff] [blame] | 4064 | } |
| 4065 | |
| 4066 | /** |
| 4067 | * @hide |
Nicolas Prevot | 2806374 | 2015-01-08 15:37:12 +0000 | [diff] [blame] | 4068 | * Sets the given package as the device owner. The package must already be installed. There |
| 4069 | * must not already be a device owner. |
| 4070 | * Only apps with the MANAGE_PROFILE_AND_DEVICE_OWNERS permission and the shell uid can call |
| 4071 | * this method. |
| 4072 | * Calling this after the setup phase of the primary user has completed is allowed only if |
| 4073 | * the caller is the shell uid, and there are no additional users and no accounts. |
Makoto Onuki | a52562c | 2015-10-01 16:12:31 -0700 | [diff] [blame] | 4074 | * @param who the component name to be registered as device owner. |
Geoffrey Borggaard | 334c7e3 | 2013-08-08 14:31:36 -0400 | [diff] [blame] | 4075 | * @param ownerName the human readable name of the institution that owns this device. |
Makoto Onuki | 58b684f | 2015-09-04 10:48:16 -0700 | [diff] [blame] | 4076 | * @param userId ID of the user on which the device owner runs. |
Geoffrey Borggaard | 334c7e3 | 2013-08-08 14:31:36 -0400 | [diff] [blame] | 4077 | * @return whether the package was successfully registered as the device owner. |
| 4078 | * @throws IllegalArgumentException if the package name is null or invalid |
Nicolas Prevot | 2806374 | 2015-01-08 15:37:12 +0000 | [diff] [blame] | 4079 | * @throws IllegalStateException If the preconditions mentioned are not met. |
Geoffrey Borggaard | 334c7e3 | 2013-08-08 14:31:36 -0400 | [diff] [blame] | 4080 | */ |
Makoto Onuki | a52562c | 2015-10-01 16:12:31 -0700 | [diff] [blame] | 4081 | public boolean setDeviceOwner(ComponentName who, String ownerName, int userId) |
Geoffrey Borggaard | 334c7e3 | 2013-08-08 14:31:36 -0400 | [diff] [blame] | 4082 | throws IllegalArgumentException, IllegalStateException { |
Amith Yamasani | 71e6c69 | 2013-03-24 17:39:28 -0700 | [diff] [blame] | 4083 | if (mService != null) { |
| 4084 | try { |
Makoto Onuki | a52562c | 2015-10-01 16:12:31 -0700 | [diff] [blame] | 4085 | return mService.setDeviceOwner(who, ownerName, userId); |
Amith Yamasani | 71e6c69 | 2013-03-24 17:39:28 -0700 | [diff] [blame] | 4086 | } catch (RemoteException re) { |
Jeff Sharkey | dbff9ca | 2016-03-01 19:46:25 -0700 | [diff] [blame] | 4087 | throw re.rethrowFromSystemServer(); |
Amith Yamasani | 71e6c69 | 2013-03-24 17:39:28 -0700 | [diff] [blame] | 4088 | } |
| 4089 | } |
| 4090 | return false; |
| 4091 | } |
| 4092 | |
| 4093 | /** |
Amith Yamasani | 3b458ad | 2013-04-18 18:40:07 -0700 | [diff] [blame] | 4094 | * Used to determine if a particular package has been registered as a Device Owner app. |
| 4095 | * A device owner app is a special device admin that cannot be deactivated by the user, once |
Robin Lee | 25e2645 | 2015-06-02 09:56:29 -0700 | [diff] [blame] | 4096 | * activated as a device admin. It also cannot be uninstalled. To check whether a particular |
Amith Yamasani | 3b458ad | 2013-04-18 18:40:07 -0700 | [diff] [blame] | 4097 | * package is currently registered as the device owner app, pass in the package name from |
| 4098 | * {@link Context#getPackageName()} to this method.<p/>This is useful for device |
Robin Lee | 25e2645 | 2015-06-02 09:56:29 -0700 | [diff] [blame] | 4099 | * admin apps that want to check whether they are also registered as the device owner app. The |
Amith Yamasani | 3b458ad | 2013-04-18 18:40:07 -0700 | [diff] [blame] | 4100 | * exact mechanism by which a device admin app is registered as a device owner app is defined by |
| 4101 | * the setup process. |
| 4102 | * @param packageName the package name of the app, to compare with the registered device owner |
| 4103 | * app, if any. |
Makoto Onuki | c8a5a55 | 2015-11-19 14:29:12 -0800 | [diff] [blame] | 4104 | * @return whether or not the package is registered as the device owner app. |
Amith Yamasani | 71e6c69 | 2013-03-24 17:39:28 -0700 | [diff] [blame] | 4105 | */ |
Amith Yamasani | 3b458ad | 2013-04-18 18:40:07 -0700 | [diff] [blame] | 4106 | public boolean isDeviceOwnerApp(String packageName) { |
Benjamin Franz | bc33c82 | 2016-04-15 08:57:52 +0100 | [diff] [blame] | 4107 | throwIfParentInstance("isDeviceOwnerApp"); |
Makoto Onuki | c8a5a55 | 2015-11-19 14:29:12 -0800 | [diff] [blame] | 4108 | return isDeviceOwnerAppOnCallingUser(packageName); |
| 4109 | } |
| 4110 | |
| 4111 | /** |
| 4112 | * @return true if a package is registered as device owner, only when it's running on the |
| 4113 | * calling user. |
| 4114 | * |
| 4115 | * <p>Same as {@link #isDeviceOwnerApp}, but bundled code should use it for clarity. |
| 4116 | * @hide |
| 4117 | */ |
| 4118 | public boolean isDeviceOwnerAppOnCallingUser(String packageName) { |
| 4119 | return isDeviceOwnerAppOnAnyUserInner(packageName, /* callingUserOnly =*/ true); |
| 4120 | } |
| 4121 | |
| 4122 | /** |
| 4123 | * @return true if a package is registered as device owner, even if it's running on a different |
| 4124 | * user. |
| 4125 | * |
| 4126 | * <p>Requires the MANAGE_USERS permission. |
| 4127 | * |
| 4128 | * @hide |
| 4129 | */ |
| 4130 | public boolean isDeviceOwnerAppOnAnyUser(String packageName) { |
| 4131 | return isDeviceOwnerAppOnAnyUserInner(packageName, /* callingUserOnly =*/ false); |
| 4132 | } |
| 4133 | |
| 4134 | /** |
| 4135 | * @return device owner component name, only when it's running on the calling user. |
| 4136 | * |
| 4137 | * @hide |
| 4138 | */ |
| 4139 | public ComponentName getDeviceOwnerComponentOnCallingUser() { |
| 4140 | return getDeviceOwnerComponentInner(/* callingUserOnly =*/ true); |
| 4141 | } |
| 4142 | |
| 4143 | /** |
| 4144 | * @return device owner component name, even if it's running on a different user. |
| 4145 | * |
| 4146 | * <p>Requires the MANAGE_USERS permission. |
| 4147 | * |
| 4148 | * @hide |
| 4149 | */ |
Polina Bondarenko | 23561db | 2016-12-16 11:47:28 +0100 | [diff] [blame] | 4150 | @SystemApi |
Makoto Onuki | c8a5a55 | 2015-11-19 14:29:12 -0800 | [diff] [blame] | 4151 | public ComponentName getDeviceOwnerComponentOnAnyUser() { |
| 4152 | return getDeviceOwnerComponentInner(/* callingUserOnly =*/ false); |
| 4153 | } |
| 4154 | |
| 4155 | private boolean isDeviceOwnerAppOnAnyUserInner(String packageName, boolean callingUserOnly) { |
Makoto Onuki | 70f929e | 2015-11-11 12:40:15 -0800 | [diff] [blame] | 4156 | if (packageName == null) { |
| 4157 | return false; |
Amith Yamasani | 71e6c69 | 2013-03-24 17:39:28 -0700 | [diff] [blame] | 4158 | } |
Makoto Onuki | c8a5a55 | 2015-11-19 14:29:12 -0800 | [diff] [blame] | 4159 | final ComponentName deviceOwner = getDeviceOwnerComponentInner(callingUserOnly); |
Makoto Onuki | 70f929e | 2015-11-11 12:40:15 -0800 | [diff] [blame] | 4160 | if (deviceOwner == null) { |
| 4161 | return false; |
| 4162 | } |
| 4163 | return packageName.equals(deviceOwner.getPackageName()); |
Amith Yamasani | 71e6c69 | 2013-03-24 17:39:28 -0700 | [diff] [blame] | 4164 | } |
| 4165 | |
Makoto Onuki | c8a5a55 | 2015-11-19 14:29:12 -0800 | [diff] [blame] | 4166 | private ComponentName getDeviceOwnerComponentInner(boolean callingUserOnly) { |
| 4167 | if (mService != null) { |
| 4168 | try { |
| 4169 | return mService.getDeviceOwnerComponent(callingUserOnly); |
| 4170 | } catch (RemoteException re) { |
Jeff Sharkey | dbff9ca | 2016-03-01 19:46:25 -0700 | [diff] [blame] | 4171 | throw re.rethrowFromSystemServer(); |
Makoto Onuki | c8a5a55 | 2015-11-19 14:29:12 -0800 | [diff] [blame] | 4172 | } |
| 4173 | } |
| 4174 | return null; |
Amith Yamasani | 3b458ad | 2013-04-18 18:40:07 -0700 | [diff] [blame] | 4175 | } |
| 4176 | |
Jason Monk | b0dced8 | 2014-06-06 14:36:20 -0400 | [diff] [blame] | 4177 | /** |
Makoto Onuki | c8a5a55 | 2015-11-19 14:29:12 -0800 | [diff] [blame] | 4178 | * @return ID of the user who runs device owner, or {@link UserHandle#USER_NULL} if there's |
| 4179 | * no device owner. |
| 4180 | * |
| 4181 | * <p>Requires the MANAGE_USERS permission. |
Makoto Onuki | a52562c | 2015-10-01 16:12:31 -0700 | [diff] [blame] | 4182 | * |
| 4183 | * @hide |
| 4184 | */ |
Makoto Onuki | c8a5a55 | 2015-11-19 14:29:12 -0800 | [diff] [blame] | 4185 | public int getDeviceOwnerUserId() { |
| 4186 | if (mService != null) { |
| 4187 | try { |
| 4188 | return mService.getDeviceOwnerUserId(); |
| 4189 | } catch (RemoteException re) { |
Jeff Sharkey | dbff9ca | 2016-03-01 19:46:25 -0700 | [diff] [blame] | 4190 | throw re.rethrowFromSystemServer(); |
Makoto Onuki | c8a5a55 | 2015-11-19 14:29:12 -0800 | [diff] [blame] | 4191 | } |
| 4192 | } |
| 4193 | return UserHandle.USER_NULL; |
Makoto Onuki | a52562c | 2015-10-01 16:12:31 -0700 | [diff] [blame] | 4194 | } |
| 4195 | |
| 4196 | /** |
Suprabh Shukla | 34d92ef | 2016-03-14 13:49:37 -0700 | [diff] [blame] | 4197 | * Clears the current device owner. The caller must be the device owner. This function should be |
| 4198 | * used cautiously as once it is called it cannot be undone. The device owner can only be set as |
| 4199 | * a part of device setup before setup completes. |
Jason Monk | 94d2cf9 | 2014-06-18 09:53:34 -0400 | [diff] [blame] | 4200 | * |
| 4201 | * @param packageName The package name of the device owner. |
Suprabh Shukla | 34d92ef | 2016-03-14 13:49:37 -0700 | [diff] [blame] | 4202 | * @throws SecurityException if the caller is not in {@code packageName} or {@code packageName} |
| 4203 | * does not own the current device owner component. |
Jason Monk | b0dced8 | 2014-06-06 14:36:20 -0400 | [diff] [blame] | 4204 | */ |
Jason Monk | 94d2cf9 | 2014-06-18 09:53:34 -0400 | [diff] [blame] | 4205 | public void clearDeviceOwnerApp(String packageName) { |
Benjamin Franz | bc33c82 | 2016-04-15 08:57:52 +0100 | [diff] [blame] | 4206 | throwIfParentInstance("clearDeviceOwnerApp"); |
Jason Monk | b0dced8 | 2014-06-06 14:36:20 -0400 | [diff] [blame] | 4207 | if (mService != null) { |
| 4208 | try { |
Jason Monk | 94d2cf9 | 2014-06-18 09:53:34 -0400 | [diff] [blame] | 4209 | mService.clearDeviceOwner(packageName); |
Jason Monk | b0dced8 | 2014-06-06 14:36:20 -0400 | [diff] [blame] | 4210 | } catch (RemoteException re) { |
Jeff Sharkey | dbff9ca | 2016-03-01 19:46:25 -0700 | [diff] [blame] | 4211 | throw re.rethrowFromSystemServer(); |
Jason Monk | b0dced8 | 2014-06-06 14:36:20 -0400 | [diff] [blame] | 4212 | } |
| 4213 | } |
| 4214 | } |
| 4215 | |
Makoto Onuki | a52562c | 2015-10-01 16:12:31 -0700 | [diff] [blame] | 4216 | /** |
Makoto Onuki | c8a5a55 | 2015-11-19 14:29:12 -0800 | [diff] [blame] | 4217 | * Returns the device owner package name, only if it's running on the calling user. |
| 4218 | * |
| 4219 | * <p>Bundled components should use {@code getDeviceOwnerComponentOnCallingUser()} for clarity. |
Makoto Onuki | a52562c | 2015-10-01 16:12:31 -0700 | [diff] [blame] | 4220 | * |
| 4221 | * @hide |
| 4222 | */ |
Nicolas Prevot | 465acf3 | 2014-08-06 17:03:25 +0100 | [diff] [blame] | 4223 | @SystemApi |
Makoto Onuki | 408e8e4 | 2016-10-25 12:10:27 -0700 | [diff] [blame] | 4224 | public @Nullable String getDeviceOwner() { |
Benjamin Franz | bc33c82 | 2016-04-15 08:57:52 +0100 | [diff] [blame] | 4225 | throwIfParentInstance("getDeviceOwner"); |
Makoto Onuki | c8a5a55 | 2015-11-19 14:29:12 -0800 | [diff] [blame] | 4226 | final ComponentName name = getDeviceOwnerComponentOnCallingUser(); |
| 4227 | return name != null ? name.getPackageName() : null; |
Makoto Onuki | a52562c | 2015-10-01 16:12:31 -0700 | [diff] [blame] | 4228 | } |
| 4229 | |
| 4230 | /** |
Bartosz Fabianowski | dd7f8da | 2016-11-30 11:09:22 +0100 | [diff] [blame] | 4231 | * Called by the system to find out whether the device is managed by a Device Owner. |
Makoto Onuki | c8a5a55 | 2015-11-19 14:29:12 -0800 | [diff] [blame] | 4232 | * |
Bartosz Fabianowski | dd7f8da | 2016-11-30 11:09:22 +0100 | [diff] [blame] | 4233 | * @return whether the device is managed by a Device Owner. |
| 4234 | * @throws SecurityException if the caller is not the device owner, does not hold the |
| 4235 | * MANAGE_USERS permission and is not the system. |
Makoto Onuki | a52562c | 2015-10-01 16:12:31 -0700 | [diff] [blame] | 4236 | * |
| 4237 | * @hide |
| 4238 | */ |
Bartosz Fabianowski | dd7f8da | 2016-11-30 11:09:22 +0100 | [diff] [blame] | 4239 | @SystemApi |
| 4240 | @TestApi |
Makoto Onuki | c8a5a55 | 2015-11-19 14:29:12 -0800 | [diff] [blame] | 4241 | public boolean isDeviceManaged() { |
Bartosz Fabianowski | dd7f8da | 2016-11-30 11:09:22 +0100 | [diff] [blame] | 4242 | try { |
| 4243 | return mService.hasDeviceOwner(); |
| 4244 | } catch (RemoteException re) { |
| 4245 | throw re.rethrowFromSystemServer(); |
| 4246 | } |
Makoto Onuki | c8a5a55 | 2015-11-19 14:29:12 -0800 | [diff] [blame] | 4247 | } |
| 4248 | |
| 4249 | /** |
| 4250 | * Returns the device owner name. Note this method *will* return the device owner |
| 4251 | * name when it's running on a different user. |
| 4252 | * |
| 4253 | * <p>Requires the MANAGE_USERS permission. |
| 4254 | * |
| 4255 | * @hide |
| 4256 | */ |
Makoto Onuki | a2b274b | 2016-01-19 13:26:02 -0800 | [diff] [blame] | 4257 | @SystemApi |
Makoto Onuki | c8a5a55 | 2015-11-19 14:29:12 -0800 | [diff] [blame] | 4258 | public String getDeviceOwnerNameOnAnyUser() { |
Benjamin Franz | bc33c82 | 2016-04-15 08:57:52 +0100 | [diff] [blame] | 4259 | throwIfParentInstance("getDeviceOwnerNameOnAnyUser"); |
Amith Yamasani | 71e6c69 | 2013-03-24 17:39:28 -0700 | [diff] [blame] | 4260 | if (mService != null) { |
| 4261 | try { |
Makoto Onuki | a52562c | 2015-10-01 16:12:31 -0700 | [diff] [blame] | 4262 | return mService.getDeviceOwnerName(); |
Amith Yamasani | 71e6c69 | 2013-03-24 17:39:28 -0700 | [diff] [blame] | 4263 | } catch (RemoteException re) { |
Jeff Sharkey | dbff9ca | 2016-03-01 19:46:25 -0700 | [diff] [blame] | 4264 | throw re.rethrowFromSystemServer(); |
Geoffrey Borggaard | 334c7e3 | 2013-08-08 14:31:36 -0400 | [diff] [blame] | 4265 | } |
| 4266 | } |
| 4267 | return null; |
| 4268 | } |
Adam Connors | 776c555 | 2014-01-09 10:42:56 +0000 | [diff] [blame] | 4269 | |
| 4270 | /** |
Julia Reynolds | 94e7bf6 | 2015-06-10 14:44:56 -0400 | [diff] [blame] | 4271 | * @hide |
Craig Lafayette | e7ee54e | 2015-09-21 13:48:53 -0400 | [diff] [blame] | 4272 | * @deprecated Do not use |
| 4273 | * @removed |
Julia Reynolds | 20118f1 | 2015-02-11 12:34:08 -0500 | [diff] [blame] | 4274 | */ |
Craig Lafayette | e7ee54e | 2015-09-21 13:48:53 -0400 | [diff] [blame] | 4275 | @Deprecated |
Julia Reynolds | 20118f1 | 2015-02-11 12:34:08 -0500 | [diff] [blame] | 4276 | @SystemApi |
Makoto Onuki | 408e8e4 | 2016-10-25 12:10:27 -0700 | [diff] [blame] | 4277 | public @Nullable String getDeviceInitializerApp() { |
Julia Reynolds | 20118f1 | 2015-02-11 12:34:08 -0500 | [diff] [blame] | 4278 | return null; |
| 4279 | } |
| 4280 | |
| 4281 | /** |
Julia Reynolds | eaafdf72 | 2015-04-02 08:49:47 -0400 | [diff] [blame] | 4282 | * @hide |
Craig Lafayette | e7ee54e | 2015-09-21 13:48:53 -0400 | [diff] [blame] | 4283 | * @deprecated Do not use |
| 4284 | * @removed |
Julia Reynolds | eaafdf72 | 2015-04-02 08:49:47 -0400 | [diff] [blame] | 4285 | */ |
Craig Lafayette | e7ee54e | 2015-09-21 13:48:53 -0400 | [diff] [blame] | 4286 | @Deprecated |
Julia Reynolds | eaafdf72 | 2015-04-02 08:49:47 -0400 | [diff] [blame] | 4287 | @SystemApi |
Makoto Onuki | 408e8e4 | 2016-10-25 12:10:27 -0700 | [diff] [blame] | 4288 | public @Nullable ComponentName getDeviceInitializerComponent() { |
Julia Reynolds | eaafdf72 | 2015-04-02 08:49:47 -0400 | [diff] [blame] | 4289 | return null; |
| 4290 | } |
| 4291 | |
Julia Reynolds | 20118f1 | 2015-02-11 12:34:08 -0500 | [diff] [blame] | 4292 | /** |
Adam Connors | 776c555 | 2014-01-09 10:42:56 +0000 | [diff] [blame] | 4293 | * @hide |
Amith Yamasani | bf3a946 | 2014-07-28 14:26:42 -0700 | [diff] [blame] | 4294 | * @deprecated Use #ACTION_SET_PROFILE_OWNER |
Amith Yamasani | aba4f1b | 2014-07-01 15:36:12 +0530 | [diff] [blame] | 4295 | * Sets the given component as an active admin and registers the package as the profile |
| 4296 | * owner for this user. The package must already be installed and there shouldn't be |
| 4297 | * an existing profile owner registered for this user. Also, this method must be called |
| 4298 | * before the user setup has been completed. |
| 4299 | * <p> |
| 4300 | * This method can only be called by system apps that hold MANAGE_USERS permission and |
| 4301 | * MANAGE_DEVICE_ADMINS permission. |
| 4302 | * @param admin The component to register as an active admin and profile owner. |
| 4303 | * @param ownerName The user-visible name of the entity that is managing this user. |
| 4304 | * @return whether the admin was successfully registered as the profile owner. |
| 4305 | * @throws IllegalArgumentException if packageName is null, the package isn't installed, or |
| 4306 | * the user has already been set up. |
| 4307 | */ |
Aurimas Liutikas | 514c5ef | 2016-05-24 15:22:55 -0700 | [diff] [blame] | 4308 | @Deprecated |
Justin Morey | 80440cc | 2014-07-24 09:16:35 -0500 | [diff] [blame] | 4309 | @SystemApi |
Robin Lee | 25e2645 | 2015-06-02 09:56:29 -0700 | [diff] [blame] | 4310 | public boolean setActiveProfileOwner(@NonNull ComponentName admin, @Deprecated String ownerName) |
Amith Yamasani | aba4f1b | 2014-07-01 15:36:12 +0530 | [diff] [blame] | 4311 | throws IllegalArgumentException { |
Benjamin Franz | bc33c82 | 2016-04-15 08:57:52 +0100 | [diff] [blame] | 4312 | throwIfParentInstance("setActiveProfileOwner"); |
Amith Yamasani | aba4f1b | 2014-07-01 15:36:12 +0530 | [diff] [blame] | 4313 | if (mService != null) { |
| 4314 | try { |
Makoto Onuki | cc4bbeb | 2015-09-17 10:28:24 -0700 | [diff] [blame] | 4315 | final int myUserId = myUserId(); |
Amith Yamasani | aba4f1b | 2014-07-01 15:36:12 +0530 | [diff] [blame] | 4316 | mService.setActiveAdmin(admin, false, myUserId); |
Amith Yamasani | bf3a946 | 2014-07-28 14:26:42 -0700 | [diff] [blame] | 4317 | return mService.setProfileOwner(admin, ownerName, myUserId); |
Amith Yamasani | aba4f1b | 2014-07-01 15:36:12 +0530 | [diff] [blame] | 4318 | } catch (RemoteException re) { |
Jeff Sharkey | dbff9ca | 2016-03-01 19:46:25 -0700 | [diff] [blame] | 4319 | throw re.rethrowFromSystemServer(); |
Amith Yamasani | aba4f1b | 2014-07-01 15:36:12 +0530 | [diff] [blame] | 4320 | } |
| 4321 | } |
| 4322 | return false; |
| 4323 | } |
| 4324 | |
| 4325 | /** |
Suprabh Shukla | 34d92ef | 2016-03-14 13:49:37 -0700 | [diff] [blame] | 4326 | * Clears the active profile owner and removes all user restrictions. The caller must be from |
| 4327 | * the same package as the active profile owner for this user, otherwise a SecurityException |
| 4328 | * will be thrown. |
| 4329 | * <p> |
| 4330 | * This doesn't work for managed profile owners. |
Makoto Onuki | 5bf6802 | 2016-01-27 13:49:19 -0800 | [diff] [blame] | 4331 | * |
Amith Yamasani | bf3a946 | 2014-07-28 14:26:42 -0700 | [diff] [blame] | 4332 | * @param admin The component to remove as the profile owner. |
Suprabh Shukla | 34d92ef | 2016-03-14 13:49:37 -0700 | [diff] [blame] | 4333 | * @throws SecurityException if {@code admin} is not an active profile owner. |
Amith Yamasani | bf3a946 | 2014-07-28 14:26:42 -0700 | [diff] [blame] | 4334 | */ |
Robin Lee | 25e2645 | 2015-06-02 09:56:29 -0700 | [diff] [blame] | 4335 | public void clearProfileOwner(@NonNull ComponentName admin) { |
Benjamin Franz | bc33c82 | 2016-04-15 08:57:52 +0100 | [diff] [blame] | 4336 | throwIfParentInstance("clearProfileOwner"); |
Amith Yamasani | bf3a946 | 2014-07-28 14:26:42 -0700 | [diff] [blame] | 4337 | if (mService != null) { |
| 4338 | try { |
| 4339 | mService.clearProfileOwner(admin); |
| 4340 | } catch (RemoteException re) { |
Jeff Sharkey | dbff9ca | 2016-03-01 19:46:25 -0700 | [diff] [blame] | 4341 | throw re.rethrowFromSystemServer(); |
Amith Yamasani | bf3a946 | 2014-07-28 14:26:42 -0700 | [diff] [blame] | 4342 | } |
| 4343 | } |
| 4344 | } |
| 4345 | |
| 4346 | /** |
Julia Reynolds | e925440 | 2015-02-11 12:34:08 -0500 | [diff] [blame] | 4347 | * @hide |
Robin Lee | 25e2645 | 2015-06-02 09:56:29 -0700 | [diff] [blame] | 4348 | * Checks whether the user was already setup. |
Amith Yamasani | bf3a946 | 2014-07-28 14:26:42 -0700 | [diff] [blame] | 4349 | */ |
| 4350 | public boolean hasUserSetupCompleted() { |
| 4351 | if (mService != null) { |
| 4352 | try { |
| 4353 | return mService.hasUserSetupCompleted(); |
| 4354 | } catch (RemoteException re) { |
Jeff Sharkey | dbff9ca | 2016-03-01 19:46:25 -0700 | [diff] [blame] | 4355 | throw re.rethrowFromSystemServer(); |
Amith Yamasani | bf3a946 | 2014-07-28 14:26:42 -0700 | [diff] [blame] | 4356 | } |
| 4357 | } |
| 4358 | return true; |
| 4359 | } |
| 4360 | |
| 4361 | /** |
Amith Yamasani | bf3a946 | 2014-07-28 14:26:42 -0700 | [diff] [blame] | 4362 | * @hide |
| 4363 | * Sets the given component as the profile owner of the given user profile. The package must |
Nicolas Prevot | 2806374 | 2015-01-08 15:37:12 +0000 | [diff] [blame] | 4364 | * already be installed. There must not already be a profile owner for this user. |
| 4365 | * Only apps with the MANAGE_PROFILE_AND_DEVICE_OWNERS permission and the shell uid can call |
| 4366 | * this method. |
| 4367 | * Calling this after the setup phase of the specified user has completed is allowed only if: |
| 4368 | * - the caller is SYSTEM_UID. |
| 4369 | * - or the caller is the shell uid, and there are no accounts on the specified user. |
Amith Yamasani | bf3a946 | 2014-07-28 14:26:42 -0700 | [diff] [blame] | 4370 | * @param admin the component name to be registered as profile owner. |
| 4371 | * @param ownerName the human readable name of the organisation associated with this DPM. |
| 4372 | * @param userHandle the userId to set the profile owner for. |
| 4373 | * @return whether the component was successfully registered as the profile owner. |
Nicolas Prevot | 2806374 | 2015-01-08 15:37:12 +0000 | [diff] [blame] | 4374 | * @throws IllegalArgumentException if admin is null, the package isn't installed, or the |
| 4375 | * preconditions mentioned are not met. |
Amith Yamasani | bf3a946 | 2014-07-28 14:26:42 -0700 | [diff] [blame] | 4376 | */ |
Robin Lee | 25e2645 | 2015-06-02 09:56:29 -0700 | [diff] [blame] | 4377 | public boolean setProfileOwner(@NonNull ComponentName admin, @Deprecated String ownerName, |
Robin Lee | ddd553f | 2015-04-30 14:18:22 +0100 | [diff] [blame] | 4378 | int userHandle) throws IllegalArgumentException { |
Adam Connors | 776c555 | 2014-01-09 10:42:56 +0000 | [diff] [blame] | 4379 | if (mService != null) { |
| 4380 | try { |
Amith Yamasani | bf3a946 | 2014-07-28 14:26:42 -0700 | [diff] [blame] | 4381 | if (ownerName == null) { |
| 4382 | ownerName = ""; |
| 4383 | } |
| 4384 | return mService.setProfileOwner(admin, ownerName, userHandle); |
Adam Connors | 776c555 | 2014-01-09 10:42:56 +0000 | [diff] [blame] | 4385 | } catch (RemoteException re) { |
Jeff Sharkey | dbff9ca | 2016-03-01 19:46:25 -0700 | [diff] [blame] | 4386 | throw re.rethrowFromSystemServer(); |
Adam Connors | 776c555 | 2014-01-09 10:42:56 +0000 | [diff] [blame] | 4387 | } |
| 4388 | } |
| 4389 | return false; |
| 4390 | } |
| 4391 | |
| 4392 | /** |
Andrei Stingaceanu | 6644cd9 | 2015-11-10 13:03:31 +0000 | [diff] [blame] | 4393 | * Sets the device owner information to be shown on the lock screen. |
Suprabh Shukla | 34d92ef | 2016-03-14 13:49:37 -0700 | [diff] [blame] | 4394 | * <p> |
| 4395 | * If the device owner information is {@code null} or empty then the device owner info is |
Andrei Stingaceanu | 6644cd9 | 2015-11-10 13:03:31 +0000 | [diff] [blame] | 4396 | * cleared and the user owner info is shown on the lock screen if it is set. |
Suprabh Shukla | 34d92ef | 2016-03-14 13:49:37 -0700 | [diff] [blame] | 4397 | * <p> |
| 4398 | * If the device owner information contains only whitespaces then the message on the lock screen |
| 4399 | * will be blank and the user will not be allowed to change it. |
| 4400 | * <p> |
| 4401 | * If the device owner information needs to be localized, it is the responsibility of the |
Benjamin Franz | 3e8a709 | 2016-01-25 16:19:08 +0000 | [diff] [blame] | 4402 | * {@link DeviceAdminReceiver} to listen to the {@link Intent#ACTION_LOCALE_CHANGED} broadcast |
| 4403 | * and set a new version of this string accordingly. |
| 4404 | * |
Andrei Stingaceanu | 6644cd9 | 2015-11-10 13:03:31 +0000 | [diff] [blame] | 4405 | * @param admin The name of the admin component to check. |
Suprabh Shukla | 34d92ef | 2016-03-14 13:49:37 -0700 | [diff] [blame] | 4406 | * @param info Device owner information which will be displayed instead of the user owner info. |
Suprabh Shukla | 34d92ef | 2016-03-14 13:49:37 -0700 | [diff] [blame] | 4407 | * @throws SecurityException if {@code admin} is not a device owner. |
Andrei Stingaceanu | 6644cd9 | 2015-11-10 13:03:31 +0000 | [diff] [blame] | 4408 | */ |
Andrei Stingaceanu | 1618790 | 2016-03-21 15:44:45 +0000 | [diff] [blame] | 4409 | public void setDeviceOwnerLockScreenInfo(@NonNull ComponentName admin, CharSequence info) { |
Benjamin Franz | bc33c82 | 2016-04-15 08:57:52 +0100 | [diff] [blame] | 4410 | throwIfParentInstance("setDeviceOwnerLockScreenInfo"); |
Andrei Stingaceanu | 6644cd9 | 2015-11-10 13:03:31 +0000 | [diff] [blame] | 4411 | if (mService != null) { |
| 4412 | try { |
Andrei Stingaceanu | 1618790 | 2016-03-21 15:44:45 +0000 | [diff] [blame] | 4413 | mService.setDeviceOwnerLockScreenInfo(admin, info); |
Andrei Stingaceanu | 6644cd9 | 2015-11-10 13:03:31 +0000 | [diff] [blame] | 4414 | } catch (RemoteException re) { |
Jeff Sharkey | dbff9ca | 2016-03-01 19:46:25 -0700 | [diff] [blame] | 4415 | throw re.rethrowFromSystemServer(); |
Andrei Stingaceanu | 6644cd9 | 2015-11-10 13:03:31 +0000 | [diff] [blame] | 4416 | } |
| 4417 | } |
Andrei Stingaceanu | 6644cd9 | 2015-11-10 13:03:31 +0000 | [diff] [blame] | 4418 | } |
| 4419 | |
| 4420 | /** |
| 4421 | * @return The device owner information. If it is not set returns {@code null}. |
| 4422 | */ |
Andrei Stingaceanu | 1618790 | 2016-03-21 15:44:45 +0000 | [diff] [blame] | 4423 | public CharSequence getDeviceOwnerLockScreenInfo() { |
Benjamin Franz | bc33c82 | 2016-04-15 08:57:52 +0100 | [diff] [blame] | 4424 | throwIfParentInstance("getDeviceOwnerLockScreenInfo"); |
Andrei Stingaceanu | 6644cd9 | 2015-11-10 13:03:31 +0000 | [diff] [blame] | 4425 | if (mService != null) { |
| 4426 | try { |
| 4427 | return mService.getDeviceOwnerLockScreenInfo(); |
| 4428 | } catch (RemoteException re) { |
Jeff Sharkey | dbff9ca | 2016-03-01 19:46:25 -0700 | [diff] [blame] | 4429 | throw re.rethrowFromSystemServer(); |
Andrei Stingaceanu | 6644cd9 | 2015-11-10 13:03:31 +0000 | [diff] [blame] | 4430 | } |
| 4431 | } |
| 4432 | return null; |
| 4433 | } |
| 4434 | |
| 4435 | /** |
Andrei Stingaceanu | eb84b18 | 2016-01-26 18:39:55 +0000 | [diff] [blame] | 4436 | * Called by device or profile owners to suspend packages for this user. |
Suprabh Shukla | 34d92ef | 2016-03-14 13:49:37 -0700 | [diff] [blame] | 4437 | * <p> |
| 4438 | * A suspended package will not be able to start activities. Its notifications will be hidden, |
| 4439 | * it will not show up in recents, will not be able to show toasts or dialogs or ring the |
| 4440 | * device. |
| 4441 | * <p> |
| 4442 | * The package must already be installed. If the package is uninstalled while suspended the |
| 4443 | * package will no longer be suspended. The admin can block this by using |
Kenny Guy | 871f3eb | 2016-03-09 20:06:16 +0000 | [diff] [blame] | 4444 | * {@link #setUninstallBlocked}. |
Andrei Stingaceanu | 1e28391 | 2015-11-26 15:26:28 +0000 | [diff] [blame] | 4445 | * |
| 4446 | * @param admin The name of the admin component to check. |
Andrei Stingaceanu | eb84b18 | 2016-01-26 18:39:55 +0000 | [diff] [blame] | 4447 | * @param packageNames The package names to suspend or unsuspend. |
| 4448 | * @param suspended If set to {@code true} than the packages will be suspended, if set to |
Suprabh Shukla | 34d92ef | 2016-03-14 13:49:37 -0700 | [diff] [blame] | 4449 | * {@code false} the packages will be unsuspended. |
Andrei Stingaceanu | eb84b18 | 2016-01-26 18:39:55 +0000 | [diff] [blame] | 4450 | * @return an array of package names for which the suspended status is not set as requested in |
Suprabh Shukla | 34d92ef | 2016-03-14 13:49:37 -0700 | [diff] [blame] | 4451 | * this method. |
| 4452 | * @throws SecurityException if {@code admin} is not a device or profile owner. |
Andrei Stingaceanu | 1e28391 | 2015-11-26 15:26:28 +0000 | [diff] [blame] | 4453 | */ |
Makoto Onuki | 408e8e4 | 2016-10-25 12:10:27 -0700 | [diff] [blame] | 4454 | public @NonNull String[] setPackagesSuspended(@NonNull ComponentName admin, |
| 4455 | @NonNull String[] packageNames, boolean suspended) { |
Benjamin Franz | bc33c82 | 2016-04-15 08:57:52 +0100 | [diff] [blame] | 4456 | throwIfParentInstance("setPackagesSuspended"); |
Andrei Stingaceanu | 1e28391 | 2015-11-26 15:26:28 +0000 | [diff] [blame] | 4457 | if (mService != null) { |
| 4458 | try { |
Andrei Stingaceanu | eb84b18 | 2016-01-26 18:39:55 +0000 | [diff] [blame] | 4459 | return mService.setPackagesSuspended(admin, packageNames, suspended); |
Andrei Stingaceanu | 1e28391 | 2015-11-26 15:26:28 +0000 | [diff] [blame] | 4460 | } catch (RemoteException re) { |
Jeff Sharkey | dbff9ca | 2016-03-01 19:46:25 -0700 | [diff] [blame] | 4461 | throw re.rethrowFromSystemServer(); |
Andrei Stingaceanu | 1e28391 | 2015-11-26 15:26:28 +0000 | [diff] [blame] | 4462 | } |
| 4463 | } |
Andrei Stingaceanu | eb84b18 | 2016-01-26 18:39:55 +0000 | [diff] [blame] | 4464 | return packageNames; |
Andrei Stingaceanu | 1e28391 | 2015-11-26 15:26:28 +0000 | [diff] [blame] | 4465 | } |
| 4466 | |
| 4467 | /** |
| 4468 | * Called by device or profile owners to determine if a package is suspended. |
| 4469 | * |
| 4470 | * @param admin Which {@link DeviceAdminReceiver} this request is associated with. |
| 4471 | * @param packageName The name of the package to retrieve the suspended status of. |
Andrei Stingaceanu | 355b232 | 2016-02-12 16:43:51 +0000 | [diff] [blame] | 4472 | * @return {@code true} if the package is suspended or {@code false} if the package is not |
Suprabh Shukla | 34d92ef | 2016-03-14 13:49:37 -0700 | [diff] [blame] | 4473 | * suspended, could not be found or an error occurred. |
| 4474 | * @throws SecurityException if {@code admin} is not a device or profile owner. |
Andrei Stingaceanu | efc4a34 | 2016-03-22 14:43:01 +0000 | [diff] [blame] | 4475 | * @throws NameNotFoundException if the package could not be found. |
Andrei Stingaceanu | 1e28391 | 2015-11-26 15:26:28 +0000 | [diff] [blame] | 4476 | */ |
Andrei Stingaceanu | efc4a34 | 2016-03-22 14:43:01 +0000 | [diff] [blame] | 4477 | public boolean isPackageSuspended(@NonNull ComponentName admin, String packageName) |
| 4478 | throws NameNotFoundException { |
Benjamin Franz | bc33c82 | 2016-04-15 08:57:52 +0100 | [diff] [blame] | 4479 | throwIfParentInstance("isPackageSuspended"); |
Andrei Stingaceanu | 1e28391 | 2015-11-26 15:26:28 +0000 | [diff] [blame] | 4480 | if (mService != null) { |
| 4481 | try { |
Andrei Stingaceanu | efc4a34 | 2016-03-22 14:43:01 +0000 | [diff] [blame] | 4482 | return mService.isPackageSuspended(admin, packageName); |
Andrei Stingaceanu | 1e28391 | 2015-11-26 15:26:28 +0000 | [diff] [blame] | 4483 | } catch (RemoteException e) { |
Jeff Sharkey | dbff9ca | 2016-03-01 19:46:25 -0700 | [diff] [blame] | 4484 | throw e.rethrowFromSystemServer(); |
Andrei Stingaceanu | efc4a34 | 2016-03-22 14:43:01 +0000 | [diff] [blame] | 4485 | } catch (IllegalArgumentException ex) { |
| 4486 | throw new NameNotFoundException(packageName); |
Andrei Stingaceanu | 1e28391 | 2015-11-26 15:26:28 +0000 | [diff] [blame] | 4487 | } |
| 4488 | } |
| 4489 | return false; |
| 4490 | } |
| 4491 | |
| 4492 | /** |
Alexandra Gherghina | 512675b | 2014-04-02 11:23:54 +0100 | [diff] [blame] | 4493 | * Sets the enabled state of the profile. A profile should be enabled only once it is ready to |
| 4494 | * be used. Only the profile owner can call this. |
| 4495 | * |
Alexandra Gherghina | df35d57 | 2014-04-09 13:54:39 +0100 | [diff] [blame] | 4496 | * @see #isProfileOwnerApp |
Alexandra Gherghina | 512675b | 2014-04-02 11:23:54 +0100 | [diff] [blame] | 4497 | * @param admin Which {@link DeviceAdminReceiver} this request is associated with. |
Suprabh Shukla | 34d92ef | 2016-03-14 13:49:37 -0700 | [diff] [blame] | 4498 | * @throws SecurityException if {@code admin} is not a profile owner. |
Alexandra Gherghina | 512675b | 2014-04-02 11:23:54 +0100 | [diff] [blame] | 4499 | */ |
Robin Lee | 25e2645 | 2015-06-02 09:56:29 -0700 | [diff] [blame] | 4500 | public void setProfileEnabled(@NonNull ComponentName admin) { |
Benjamin Franz | bc33c82 | 2016-04-15 08:57:52 +0100 | [diff] [blame] | 4501 | throwIfParentInstance("setProfileEnabled"); |
Alexandra Gherghina | 512675b | 2014-04-02 11:23:54 +0100 | [diff] [blame] | 4502 | if (mService != null) { |
| 4503 | try { |
| 4504 | mService.setProfileEnabled(admin); |
| 4505 | } catch (RemoteException e) { |
Jeff Sharkey | dbff9ca | 2016-03-01 19:46:25 -0700 | [diff] [blame] | 4506 | throw e.rethrowFromSystemServer(); |
Alexandra Gherghina | 512675b | 2014-04-02 11:23:54 +0100 | [diff] [blame] | 4507 | } |
| 4508 | } |
| 4509 | } |
| 4510 | |
| 4511 | /** |
Suprabh Shukla | 34d92ef | 2016-03-14 13:49:37 -0700 | [diff] [blame] | 4512 | * Sets the name of the profile. In the device owner case it sets the name of the user which it |
| 4513 | * is called from. Only a profile owner or device owner can call this. If this is never called |
| 4514 | * by the profile or device owner, the name will be set to default values. |
Jessica Hummel | 1333ea1 | 2014-06-23 11:20:10 +0100 | [diff] [blame] | 4515 | * |
| 4516 | * @see #isProfileOwnerApp |
| 4517 | * @see #isDeviceOwnerApp |
Robin Lee | 25e2645 | 2015-06-02 09:56:29 -0700 | [diff] [blame] | 4518 | * @param admin Which {@link DeviceAdminReceiver} this request is associate with. |
Jessica Hummel | 1333ea1 | 2014-06-23 11:20:10 +0100 | [diff] [blame] | 4519 | * @param profileName The name of the profile. |
Suprabh Shukla | 34d92ef | 2016-03-14 13:49:37 -0700 | [diff] [blame] | 4520 | * @throws SecurityException if {@code admin} is not a device or profile owner. |
Jessica Hummel | 1333ea1 | 2014-06-23 11:20:10 +0100 | [diff] [blame] | 4521 | */ |
Robin Lee | 25e2645 | 2015-06-02 09:56:29 -0700 | [diff] [blame] | 4522 | public void setProfileName(@NonNull ComponentName admin, String profileName) { |
Benjamin Franz | bc33c82 | 2016-04-15 08:57:52 +0100 | [diff] [blame] | 4523 | throwIfParentInstance("setProfileName"); |
Jessica Hummel | 1333ea1 | 2014-06-23 11:20:10 +0100 | [diff] [blame] | 4524 | if (mService != null) { |
| 4525 | try { |
Robin Lee | 25e2645 | 2015-06-02 09:56:29 -0700 | [diff] [blame] | 4526 | mService.setProfileName(admin, profileName); |
Fyodor Kupolov | 78f1314 | 2015-05-27 16:52:45 -0700 | [diff] [blame] | 4527 | } catch (RemoteException e) { |
Jeff Sharkey | dbff9ca | 2016-03-01 19:46:25 -0700 | [diff] [blame] | 4528 | throw e.rethrowFromSystemServer(); |
Fyodor Kupolov | 78f1314 | 2015-05-27 16:52:45 -0700 | [diff] [blame] | 4529 | } |
Jessica Hummel | 1333ea1 | 2014-06-23 11:20:10 +0100 | [diff] [blame] | 4530 | } |
| 4531 | } |
Jessica Hummel | 1333ea1 | 2014-06-23 11:20:10 +0100 | [diff] [blame] | 4532 | |
| 4533 | /** |
Amith Yamasani | c34dc7c | 2014-09-18 09:42:42 -0700 | [diff] [blame] | 4534 | * Used to determine if a particular package is registered as the profile owner for the |
Makoto Onuki | 32b3057 | 2015-12-11 14:29:51 -0800 | [diff] [blame] | 4535 | * user. A profile owner is a special device admin that has additional privileges |
Amith Yamasani | c34dc7c | 2014-09-18 09:42:42 -0700 | [diff] [blame] | 4536 | * within the profile. |
Adam Connors | 776c555 | 2014-01-09 10:42:56 +0000 | [diff] [blame] | 4537 | * |
| 4538 | * @param packageName The package name of the app to compare with the registered profile owner. |
| 4539 | * @return Whether or not the package is registered as the profile owner. |
| 4540 | */ |
| 4541 | public boolean isProfileOwnerApp(String packageName) { |
Benjamin Franz | bc33c82 | 2016-04-15 08:57:52 +0100 | [diff] [blame] | 4542 | throwIfParentInstance("isProfileOwnerApp"); |
Adam Connors | 776c555 | 2014-01-09 10:42:56 +0000 | [diff] [blame] | 4543 | if (mService != null) { |
| 4544 | try { |
Makoto Onuki | 90b8965 | 2016-01-28 14:44:18 -0800 | [diff] [blame] | 4545 | ComponentName profileOwner = mService.getProfileOwner(myUserId()); |
Nicolas Prevot | 90af6d7 | 2014-07-30 14:19:12 +0100 | [diff] [blame] | 4546 | return profileOwner != null |
| 4547 | && profileOwner.getPackageName().equals(packageName); |
Adam Connors | 776c555 | 2014-01-09 10:42:56 +0000 | [diff] [blame] | 4548 | } catch (RemoteException re) { |
Jeff Sharkey | dbff9ca | 2016-03-01 19:46:25 -0700 | [diff] [blame] | 4549 | throw re.rethrowFromSystemServer(); |
Adam Connors | 776c555 | 2014-01-09 10:42:56 +0000 | [diff] [blame] | 4550 | } |
| 4551 | } |
| 4552 | return false; |
| 4553 | } |
| 4554 | |
| 4555 | /** |
| 4556 | * @hide |
Robin Lee | 25e2645 | 2015-06-02 09:56:29 -0700 | [diff] [blame] | 4557 | * @return the packageName of the owner of the given user profile or {@code null} if no profile |
Adam Connors | 776c555 | 2014-01-09 10:42:56 +0000 | [diff] [blame] | 4558 | * owner has been set for that user. |
| 4559 | * @throws IllegalArgumentException if the userId is invalid. |
| 4560 | */ |
Nicolas Prevot | 465acf3 | 2014-08-06 17:03:25 +0100 | [diff] [blame] | 4561 | @SystemApi |
Makoto Onuki | 408e8e4 | 2016-10-25 12:10:27 -0700 | [diff] [blame] | 4562 | public @Nullable ComponentName getProfileOwner() throws IllegalArgumentException { |
Benjamin Franz | bc33c82 | 2016-04-15 08:57:52 +0100 | [diff] [blame] | 4563 | throwIfParentInstance("getProfileOwner"); |
Zoltan Szatmary-Ban | 3f1ddf8 | 2014-07-02 16:42:05 +0100 | [diff] [blame] | 4564 | return getProfileOwnerAsUser(Process.myUserHandle().getIdentifier()); |
| 4565 | } |
| 4566 | |
| 4567 | /** |
| 4568 | * @see #getProfileOwner() |
| 4569 | * @hide |
| 4570 | */ |
Makoto Onuki | 408e8e4 | 2016-10-25 12:10:27 -0700 | [diff] [blame] | 4571 | public @Nullable ComponentName getProfileOwnerAsUser(final int userId) |
| 4572 | throws IllegalArgumentException { |
Adam Connors | 776c555 | 2014-01-09 10:42:56 +0000 | [diff] [blame] | 4573 | if (mService != null) { |
| 4574 | try { |
Zoltan Szatmary-Ban | 3f1ddf8 | 2014-07-02 16:42:05 +0100 | [diff] [blame] | 4575 | return mService.getProfileOwner(userId); |
Adam Connors | 776c555 | 2014-01-09 10:42:56 +0000 | [diff] [blame] | 4576 | } catch (RemoteException re) { |
Jeff Sharkey | dbff9ca | 2016-03-01 19:46:25 -0700 | [diff] [blame] | 4577 | throw re.rethrowFromSystemServer(); |
Adam Connors | 776c555 | 2014-01-09 10:42:56 +0000 | [diff] [blame] | 4578 | } |
| 4579 | } |
| 4580 | return null; |
| 4581 | } |
| 4582 | |
| 4583 | /** |
| 4584 | * @hide |
Robin Lee | 25e2645 | 2015-06-02 09:56:29 -0700 | [diff] [blame] | 4585 | * @return the human readable name of the organisation associated with this DPM or {@code null} |
| 4586 | * if one is not set. |
Adam Connors | 776c555 | 2014-01-09 10:42:56 +0000 | [diff] [blame] | 4587 | * @throws IllegalArgumentException if the userId is invalid. |
| 4588 | */ |
Makoto Onuki | 408e8e4 | 2016-10-25 12:10:27 -0700 | [diff] [blame] | 4589 | public @Nullable String getProfileOwnerName() throws IllegalArgumentException { |
Adam Connors | 776c555 | 2014-01-09 10:42:56 +0000 | [diff] [blame] | 4590 | if (mService != null) { |
| 4591 | try { |
| 4592 | return mService.getProfileOwnerName(Process.myUserHandle().getIdentifier()); |
| 4593 | } catch (RemoteException re) { |
Jeff Sharkey | dbff9ca | 2016-03-01 19:46:25 -0700 | [diff] [blame] | 4594 | throw re.rethrowFromSystemServer(); |
Adam Connors | 776c555 | 2014-01-09 10:42:56 +0000 | [diff] [blame] | 4595 | } |
| 4596 | } |
| 4597 | return null; |
| 4598 | } |
Sander Alewijnse | f475ca3 | 2014-02-17 15:13:58 +0000 | [diff] [blame] | 4599 | |
| 4600 | /** |
Amith Yamasani | 38f836b | 2014-08-20 14:51:15 -0700 | [diff] [blame] | 4601 | * @hide |
Makoto Onuki | c8a5a55 | 2015-11-19 14:29:12 -0800 | [diff] [blame] | 4602 | * @param userId The user for whom to fetch the profile owner name, if any. |
Amith Yamasani | 38f836b | 2014-08-20 14:51:15 -0700 | [diff] [blame] | 4603 | * @return the human readable name of the organisation associated with this profile owner or |
| 4604 | * null if one is not set. |
| 4605 | * @throws IllegalArgumentException if the userId is invalid. |
| 4606 | */ |
| 4607 | @SystemApi |
Makoto Onuki | 408e8e4 | 2016-10-25 12:10:27 -0700 | [diff] [blame] | 4608 | public @Nullable String getProfileOwnerNameAsUser(int userId) throws IllegalArgumentException { |
Benjamin Franz | bc33c82 | 2016-04-15 08:57:52 +0100 | [diff] [blame] | 4609 | throwIfParentInstance("getProfileOwnerNameAsUser"); |
Amith Yamasani | 38f836b | 2014-08-20 14:51:15 -0700 | [diff] [blame] | 4610 | if (mService != null) { |
| 4611 | try { |
Selim Cinek | 24ac55e | 2014-08-27 12:51:45 +0200 | [diff] [blame] | 4612 | return mService.getProfileOwnerName(userId); |
Amith Yamasani | 38f836b | 2014-08-20 14:51:15 -0700 | [diff] [blame] | 4613 | } catch (RemoteException re) { |
Jeff Sharkey | dbff9ca | 2016-03-01 19:46:25 -0700 | [diff] [blame] | 4614 | throw re.rethrowFromSystemServer(); |
Amith Yamasani | 38f836b | 2014-08-20 14:51:15 -0700 | [diff] [blame] | 4615 | } |
| 4616 | } |
| 4617 | return null; |
| 4618 | } |
| 4619 | |
| 4620 | /** |
Sander Alewijnse | f475ca3 | 2014-02-17 15:13:58 +0000 | [diff] [blame] | 4621 | * Called by a profile owner or device owner to add a default intent handler activity for |
| 4622 | * intents that match a certain intent filter. This activity will remain the default intent |
Suprabh Shukla | 34d92ef | 2016-03-14 13:49:37 -0700 | [diff] [blame] | 4623 | * handler even if the set of potential event handlers for the intent filter changes and if the |
| 4624 | * intent preferences are reset. |
| 4625 | * <p> |
| 4626 | * The default disambiguation mechanism takes over if the activity is not installed (anymore). |
| 4627 | * When the activity is (re)installed, it is automatically reset as default intent handler for |
| 4628 | * the filter. |
| 4629 | * <p> |
| 4630 | * The calling device admin must be a profile owner or device owner. If it is not, a security |
| 4631 | * exception will be thrown. |
Sander Alewijnse | f475ca3 | 2014-02-17 15:13:58 +0000 | [diff] [blame] | 4632 | * |
| 4633 | * @param admin Which {@link DeviceAdminReceiver} this request is associated with. |
| 4634 | * @param filter The IntentFilter for which a default handler is added. |
| 4635 | * @param activity The Activity that is added as default intent handler. |
Suprabh Shukla | 34d92ef | 2016-03-14 13:49:37 -0700 | [diff] [blame] | 4636 | * @throws SecurityException if {@code admin} is not a device or profile owner. |
Sander Alewijnse | f475ca3 | 2014-02-17 15:13:58 +0000 | [diff] [blame] | 4637 | */ |
Robin Lee | 25e2645 | 2015-06-02 09:56:29 -0700 | [diff] [blame] | 4638 | public void addPersistentPreferredActivity(@NonNull ComponentName admin, IntentFilter filter, |
| 4639 | @NonNull ComponentName activity) { |
Benjamin Franz | bc33c82 | 2016-04-15 08:57:52 +0100 | [diff] [blame] | 4640 | throwIfParentInstance("addPersistentPreferredActivity"); |
Sander Alewijnse | f475ca3 | 2014-02-17 15:13:58 +0000 | [diff] [blame] | 4641 | if (mService != null) { |
| 4642 | try { |
| 4643 | mService.addPersistentPreferredActivity(admin, filter, activity); |
| 4644 | } catch (RemoteException e) { |
Jeff Sharkey | dbff9ca | 2016-03-01 19:46:25 -0700 | [diff] [blame] | 4645 | throw e.rethrowFromSystemServer(); |
Sander Alewijnse | f475ca3 | 2014-02-17 15:13:58 +0000 | [diff] [blame] | 4646 | } |
| 4647 | } |
| 4648 | } |
| 4649 | |
| 4650 | /** |
| 4651 | * Called by a profile owner or device owner to remove all persistent intent handler preferences |
Torne (Richard Coles) | 875e210 | 2014-02-24 14:11:56 +0000 | [diff] [blame] | 4652 | * associated with the given package that were set by {@link #addPersistentPreferredActivity}. |
Suprabh Shukla | 34d92ef | 2016-03-14 13:49:37 -0700 | [diff] [blame] | 4653 | * <p> |
| 4654 | * The calling device admin must be a profile owner. If it is not, a security exception will be |
| 4655 | * thrown. |
Sander Alewijnse | f475ca3 | 2014-02-17 15:13:58 +0000 | [diff] [blame] | 4656 | * |
| 4657 | * @param admin Which {@link DeviceAdminReceiver} this request is associated with. |
| 4658 | * @param packageName The name of the package for which preferences are removed. |
Suprabh Shukla | 34d92ef | 2016-03-14 13:49:37 -0700 | [diff] [blame] | 4659 | * @throws SecurityException if {@code admin} is not a device or profile owner. |
Sander Alewijnse | f475ca3 | 2014-02-17 15:13:58 +0000 | [diff] [blame] | 4660 | */ |
Robin Lee | 25e2645 | 2015-06-02 09:56:29 -0700 | [diff] [blame] | 4661 | public void clearPackagePersistentPreferredActivities(@NonNull ComponentName admin, |
Sander Alewijnse | f475ca3 | 2014-02-17 15:13:58 +0000 | [diff] [blame] | 4662 | String packageName) { |
Benjamin Franz | bc33c82 | 2016-04-15 08:57:52 +0100 | [diff] [blame] | 4663 | throwIfParentInstance("clearPackagePersistentPreferredActivities"); |
Sander Alewijnse | f475ca3 | 2014-02-17 15:13:58 +0000 | [diff] [blame] | 4664 | if (mService != null) { |
| 4665 | try { |
| 4666 | mService.clearPackagePersistentPreferredActivities(admin, packageName); |
| 4667 | } catch (RemoteException e) { |
Jeff Sharkey | dbff9ca | 2016-03-01 19:46:25 -0700 | [diff] [blame] | 4668 | throw e.rethrowFromSystemServer(); |
Sander Alewijnse | f475ca3 | 2014-02-17 15:13:58 +0000 | [diff] [blame] | 4669 | } |
| 4670 | } |
| 4671 | } |
Robin Lee | 66e5d96 | 2014-04-09 16:44:21 +0100 | [diff] [blame] | 4672 | |
| 4673 | /** |
Esteban Talavera | bf60f72 | 2015-12-10 16:26:44 +0000 | [diff] [blame] | 4674 | * Called by a profile owner or device owner to grant permission to a package to manage |
| 4675 | * application restrictions for the calling user via {@link #setApplicationRestrictions} and |
| 4676 | * {@link #getApplicationRestrictions}. |
| 4677 | * <p> |
| 4678 | * This permission is persistent until it is later cleared by calling this method with a |
| 4679 | * {@code null} value or uninstalling the managing package. |
Rubin Xu | f03d0a6 | 2016-02-10 14:54:15 +0000 | [diff] [blame] | 4680 | * <p> |
| 4681 | * The supplied application restriction managing package must be installed when calling this |
Victor Chang | cd14c0a | 2016-03-16 19:10:15 +0000 | [diff] [blame] | 4682 | * API, otherwise an {@link NameNotFoundException} will be thrown. |
Esteban Talavera | bf60f72 | 2015-12-10 16:26:44 +0000 | [diff] [blame] | 4683 | * |
| 4684 | * @param admin Which {@link DeviceAdminReceiver} this request is associated with. |
| 4685 | * @param packageName The package name which will be given access to application restrictions |
Suprabh Shukla | 34d92ef | 2016-03-14 13:49:37 -0700 | [diff] [blame] | 4686 | * APIs. If {@code null} is given the current package will be cleared. |
| 4687 | * @throws SecurityException if {@code admin} is not a device or profile owner. |
Victor Chang | cd14c0a | 2016-03-16 19:10:15 +0000 | [diff] [blame] | 4688 | * @throws NameNotFoundException if {@code packageName} is not found |
Esteban Talavera | bf60f72 | 2015-12-10 16:26:44 +0000 | [diff] [blame] | 4689 | */ |
| 4690 | public void setApplicationRestrictionsManagingPackage(@NonNull ComponentName admin, |
Victor Chang | cd14c0a | 2016-03-16 19:10:15 +0000 | [diff] [blame] | 4691 | @Nullable String packageName) throws NameNotFoundException { |
Benjamin Franz | bc33c82 | 2016-04-15 08:57:52 +0100 | [diff] [blame] | 4692 | throwIfParentInstance("setApplicationRestrictionsManagingPackage"); |
Esteban Talavera | bf60f72 | 2015-12-10 16:26:44 +0000 | [diff] [blame] | 4693 | if (mService != null) { |
| 4694 | try { |
Victor Chang | cd14c0a | 2016-03-16 19:10:15 +0000 | [diff] [blame] | 4695 | if (!mService.setApplicationRestrictionsManagingPackage(admin, packageName)) { |
| 4696 | throw new NameNotFoundException(packageName); |
| 4697 | } |
Esteban Talavera | bf60f72 | 2015-12-10 16:26:44 +0000 | [diff] [blame] | 4698 | } catch (RemoteException e) { |
Jeff Sharkey | dbff9ca | 2016-03-01 19:46:25 -0700 | [diff] [blame] | 4699 | throw e.rethrowFromSystemServer(); |
Esteban Talavera | bf60f72 | 2015-12-10 16:26:44 +0000 | [diff] [blame] | 4700 | } |
| 4701 | } |
| 4702 | } |
| 4703 | |
| 4704 | /** |
| 4705 | * Called by a profile owner or device owner to retrieve the application restrictions managing |
| 4706 | * package for the current user, or {@code null} if none is set. |
| 4707 | * |
| 4708 | * @param admin Which {@link DeviceAdminReceiver} this request is associated with. |
| 4709 | * @return The package name allowed to manage application restrictions on the current user, or |
Suprabh Shukla | 34d92ef | 2016-03-14 13:49:37 -0700 | [diff] [blame] | 4710 | * {@code null} if none is set. |
| 4711 | * @throws SecurityException if {@code admin} is not a device or profile owner. |
Esteban Talavera | bf60f72 | 2015-12-10 16:26:44 +0000 | [diff] [blame] | 4712 | */ |
Makoto Onuki | 408e8e4 | 2016-10-25 12:10:27 -0700 | [diff] [blame] | 4713 | public @Nullable String getApplicationRestrictionsManagingPackage( |
| 4714 | @NonNull ComponentName admin) { |
Benjamin Franz | bc33c82 | 2016-04-15 08:57:52 +0100 | [diff] [blame] | 4715 | throwIfParentInstance("getApplicationRestrictionsManagingPackage"); |
Esteban Talavera | bf60f72 | 2015-12-10 16:26:44 +0000 | [diff] [blame] | 4716 | if (mService != null) { |
| 4717 | try { |
| 4718 | return mService.getApplicationRestrictionsManagingPackage(admin); |
| 4719 | } catch (RemoteException e) { |
Jeff Sharkey | dbff9ca | 2016-03-01 19:46:25 -0700 | [diff] [blame] | 4720 | throw e.rethrowFromSystemServer(); |
Esteban Talavera | bf60f72 | 2015-12-10 16:26:44 +0000 | [diff] [blame] | 4721 | } |
| 4722 | } |
| 4723 | return null; |
| 4724 | } |
| 4725 | |
| 4726 | /** |
Esteban Talavera | 96895ca | 2016-03-16 12:00:40 +0000 | [diff] [blame] | 4727 | * Called by any application to find out whether it has been granted permission via |
| 4728 | * {@link #setApplicationRestrictionsManagingPackage} to manage application restrictions |
| 4729 | * for the calling user. |
| 4730 | * |
| 4731 | * <p>This is done by comparing the calling Linux uid with the uid of the package specified by |
| 4732 | * that method. |
Esteban Talavera | bf60f72 | 2015-12-10 16:26:44 +0000 | [diff] [blame] | 4733 | */ |
| 4734 | public boolean isCallerApplicationRestrictionsManagingPackage() { |
Benjamin Franz | bc33c82 | 2016-04-15 08:57:52 +0100 | [diff] [blame] | 4735 | throwIfParentInstance("isCallerApplicationRestrictionsManagingPackage"); |
Esteban Talavera | bf60f72 | 2015-12-10 16:26:44 +0000 | [diff] [blame] | 4736 | if (mService != null) { |
| 4737 | try { |
| 4738 | return mService.isCallerApplicationRestrictionsManagingPackage(); |
| 4739 | } catch (RemoteException e) { |
Jeff Sharkey | dbff9ca | 2016-03-01 19:46:25 -0700 | [diff] [blame] | 4740 | throw e.rethrowFromSystemServer(); |
Esteban Talavera | bf60f72 | 2015-12-10 16:26:44 +0000 | [diff] [blame] | 4741 | } |
| 4742 | } |
| 4743 | return false; |
| 4744 | } |
| 4745 | |
| 4746 | /** |
| 4747 | * Sets the application restrictions for a given target application running in the calling user. |
Suprabh Shukla | 34d92ef | 2016-03-14 13:49:37 -0700 | [diff] [blame] | 4748 | * <p> |
| 4749 | * The caller must be a profile or device owner on that user, or the package allowed to manage |
| 4750 | * application restrictions via {@link #setApplicationRestrictionsManagingPackage}; otherwise a |
| 4751 | * security exception will be thrown. |
| 4752 | * <p> |
| 4753 | * The provided {@link Bundle} consists of key-value pairs, where the types of values may be: |
Esteban Talavera | 6b8e064 | 2015-08-10 17:26:04 +0100 | [diff] [blame] | 4754 | * <ul> |
| 4755 | * <li>{@code boolean} |
| 4756 | * <li>{@code int} |
| 4757 | * <li>{@code String} or {@code String[]} |
| 4758 | * <li>From {@link android.os.Build.VERSION_CODES#M}, {@code Bundle} or {@code Bundle[]} |
| 4759 | * </ul> |
Suprabh Shukla | 34d92ef | 2016-03-14 13:49:37 -0700 | [diff] [blame] | 4760 | * <p> |
| 4761 | * If the restrictions are not available yet, but may be applied in the near future, the caller |
| 4762 | * can notify the target application of that by adding |
Sander Alewijnse | 53d63dc | 2014-11-07 21:43:00 +0000 | [diff] [blame] | 4763 | * {@link UserManager#KEY_RESTRICTIONS_PENDING} to the settings parameter. |
Suprabh Shukla | 34d92ef | 2016-03-14 13:49:37 -0700 | [diff] [blame] | 4764 | * <p> |
| 4765 | * The application restrictions are only made visible to the target application via |
| 4766 | * {@link UserManager#getApplicationRestrictions(String)}, in addition to the profile or device |
| 4767 | * owner, and the application restrictions managing package via |
Esteban Talavera | bf60f72 | 2015-12-10 16:26:44 +0000 | [diff] [blame] | 4768 | * {@link #getApplicationRestrictions}. |
Robin Lee | 66e5d96 | 2014-04-09 16:44:21 +0100 | [diff] [blame] | 4769 | * |
Fyodor Kupolov | 4e9af06 | 2016-07-18 16:59:11 -0700 | [diff] [blame] | 4770 | * <p>NOTE: The method performs disk I/O and shouldn't be called on the main thread |
| 4771 | * |
Esteban Talavera | bf60f72 | 2015-12-10 16:26:44 +0000 | [diff] [blame] | 4772 | * @param admin Which {@link DeviceAdminReceiver} this request is associated with, or |
Suprabh Shukla | 34d92ef | 2016-03-14 13:49:37 -0700 | [diff] [blame] | 4773 | * {@code null} if called by the application restrictions managing package. |
Robin Lee | 66e5d96 | 2014-04-09 16:44:21 +0100 | [diff] [blame] | 4774 | * @param packageName The name of the package to update restricted settings for. |
| 4775 | * @param settings A {@link Bundle} to be parsed by the receiving application, conveying a new |
Suprabh Shukla | 34d92ef | 2016-03-14 13:49:37 -0700 | [diff] [blame] | 4776 | * set of active restrictions. |
| 4777 | * @throws SecurityException if {@code admin} is not a device or profile owner. |
Esteban Talavera | bf60f72 | 2015-12-10 16:26:44 +0000 | [diff] [blame] | 4778 | * @see #setApplicationRestrictionsManagingPackage |
Sander Alewijnse | 53d63dc | 2014-11-07 21:43:00 +0000 | [diff] [blame] | 4779 | * @see UserManager#KEY_RESTRICTIONS_PENDING |
Robin Lee | 66e5d96 | 2014-04-09 16:44:21 +0100 | [diff] [blame] | 4780 | */ |
Fyodor Kupolov | 4e9af06 | 2016-07-18 16:59:11 -0700 | [diff] [blame] | 4781 | @WorkerThread |
Esteban Talavera | bf60f72 | 2015-12-10 16:26:44 +0000 | [diff] [blame] | 4782 | public void setApplicationRestrictions(@Nullable ComponentName admin, String packageName, |
Robin Lee | 66e5d96 | 2014-04-09 16:44:21 +0100 | [diff] [blame] | 4783 | Bundle settings) { |
Benjamin Franz | bc33c82 | 2016-04-15 08:57:52 +0100 | [diff] [blame] | 4784 | throwIfParentInstance("setApplicationRestrictions"); |
Robin Lee | 66e5d96 | 2014-04-09 16:44:21 +0100 | [diff] [blame] | 4785 | if (mService != null) { |
| 4786 | try { |
| 4787 | mService.setApplicationRestrictions(admin, packageName, settings); |
| 4788 | } catch (RemoteException e) { |
Jeff Sharkey | dbff9ca | 2016-03-01 19:46:25 -0700 | [diff] [blame] | 4789 | throw e.rethrowFromSystemServer(); |
Robin Lee | 66e5d96 | 2014-04-09 16:44:21 +0100 | [diff] [blame] | 4790 | } |
| 4791 | } |
| 4792 | } |
| 4793 | |
| 4794 | /** |
Suprabh Shukla | 34d92ef | 2016-03-14 13:49:37 -0700 | [diff] [blame] | 4795 | * Sets a list of configuration features to enable for a TrustAgent component. This is meant to |
| 4796 | * be used in conjunction with {@link #KEYGUARD_DISABLE_TRUST_AGENTS}, which disables all trust |
| 4797 | * agents but those enabled by this function call. If flag |
Jim Miller | e303bf4 | 2014-08-26 17:12:29 -0700 | [diff] [blame] | 4798 | * {@link #KEYGUARD_DISABLE_TRUST_AGENTS} is not set, then this call has no effect. |
Suprabh Shukla | 34d92ef | 2016-03-14 13:49:37 -0700 | [diff] [blame] | 4799 | * <p> |
| 4800 | * The calling device admin must have requested |
| 4801 | * {@link DeviceAdminInfo#USES_POLICY_DISABLE_KEYGUARD_FEATURES} to be able to call this method; |
| 4802 | * if not, a security exception will be thrown. |
Tony Mak | 089d840 | 2016-04-05 17:42:55 +0100 | [diff] [blame] | 4803 | * <p> |
| 4804 | * This method can be called on the {@link DevicePolicyManager} instance returned by |
| 4805 | * {@link #getParentProfileInstance(ComponentName)} in order to set the configuration for |
| 4806 | * the parent profile. |
Jim Miller | 604e755 | 2014-07-18 19:00:02 -0700 | [diff] [blame] | 4807 | * |
| 4808 | * @param admin Which {@link DeviceAdminReceiver} this request is associated with. |
Jim Miller | e303bf4 | 2014-08-26 17:12:29 -0700 | [diff] [blame] | 4809 | * @param target Component name of the agent to be enabled. |
Suprabh Shukla | 34d92ef | 2016-03-14 13:49:37 -0700 | [diff] [blame] | 4810 | * @param configuration TrustAgent-specific feature bundle. If null for any admin, agent will be |
| 4811 | * strictly disabled according to the state of the |
| 4812 | * {@link #KEYGUARD_DISABLE_TRUST_AGENTS} flag. |
| 4813 | * <p> |
| 4814 | * If {@link #KEYGUARD_DISABLE_TRUST_AGENTS} is set and options is not null for all |
| 4815 | * admins, then it's up to the TrustAgent itself to aggregate the values from all |
| 4816 | * device admins. |
| 4817 | * <p> |
| 4818 | * Consult documentation for the specific TrustAgent to determine legal options |
| 4819 | * parameters. |
| 4820 | * @throws SecurityException if {@code admin} is not an active administrator or does not use |
| 4821 | * {@link DeviceAdminInfo#USES_POLICY_DISABLE_KEYGUARD_FEATURES} |
Jim Miller | 604e755 | 2014-07-18 19:00:02 -0700 | [diff] [blame] | 4822 | */ |
Robin Lee | 25e2645 | 2015-06-02 09:56:29 -0700 | [diff] [blame] | 4823 | public void setTrustAgentConfiguration(@NonNull ComponentName admin, |
| 4824 | @NonNull ComponentName target, PersistableBundle configuration) { |
Jim Miller | 604e755 | 2014-07-18 19:00:02 -0700 | [diff] [blame] | 4825 | if (mService != null) { |
| 4826 | try { |
Tony Mak | 089d840 | 2016-04-05 17:42:55 +0100 | [diff] [blame] | 4827 | mService.setTrustAgentConfiguration(admin, target, configuration, mParentInstance); |
Jim Miller | 604e755 | 2014-07-18 19:00:02 -0700 | [diff] [blame] | 4828 | } catch (RemoteException e) { |
Jeff Sharkey | dbff9ca | 2016-03-01 19:46:25 -0700 | [diff] [blame] | 4829 | throw e.rethrowFromSystemServer(); |
Jim Miller | 604e755 | 2014-07-18 19:00:02 -0700 | [diff] [blame] | 4830 | } |
| 4831 | } |
| 4832 | } |
| 4833 | |
| 4834 | /** |
Jim Miller | e303bf4 | 2014-08-26 17:12:29 -0700 | [diff] [blame] | 4835 | * Gets configuration for the given trust agent based on aggregating all calls to |
| 4836 | * {@link #setTrustAgentConfiguration(ComponentName, ComponentName, PersistableBundle)} for |
| 4837 | * all device admins. |
Tony Mak | 089d840 | 2016-04-05 17:42:55 +0100 | [diff] [blame] | 4838 | * <p> |
| 4839 | * This method can be called on the {@link DevicePolicyManager} instance returned by |
| 4840 | * {@link #getParentProfileInstance(ComponentName)} in order to retrieve the configuration set |
| 4841 | * on the parent profile. |
Jim Miller | 604e755 | 2014-07-18 19:00:02 -0700 | [diff] [blame] | 4842 | * |
Jim Miller | b5db57a | 2015-01-14 18:17:19 -0800 | [diff] [blame] | 4843 | * @param admin Which {@link DeviceAdminReceiver} this request is associated with. If null, |
| 4844 | * this function returns a list of configurations for all admins that declare |
| 4845 | * {@link #KEYGUARD_DISABLE_TRUST_AGENTS}. If any admin declares |
| 4846 | * {@link #KEYGUARD_DISABLE_TRUST_AGENTS} but doesn't call |
| 4847 | * {@link #setTrustAgentConfiguration(ComponentName, ComponentName, PersistableBundle)} |
| 4848 | * for this {@param agent} or calls it with a null configuration, null is returned. |
Jim Miller | 604e755 | 2014-07-18 19:00:02 -0700 | [diff] [blame] | 4849 | * @param agent Which component to get enabled features for. |
Jim Miller | e303bf4 | 2014-08-26 17:12:29 -0700 | [diff] [blame] | 4850 | * @return configuration for the given trust agent. |
Jim Miller | 604e755 | 2014-07-18 19:00:02 -0700 | [diff] [blame] | 4851 | */ |
Makoto Onuki | 408e8e4 | 2016-10-25 12:10:27 -0700 | [diff] [blame] | 4852 | public @Nullable List<PersistableBundle> getTrustAgentConfiguration( |
| 4853 | @Nullable ComponentName admin, @NonNull ComponentName agent) { |
Makoto Onuki | cc4bbeb | 2015-09-17 10:28:24 -0700 | [diff] [blame] | 4854 | return getTrustAgentConfiguration(admin, agent, myUserId()); |
Jim Miller | e303bf4 | 2014-08-26 17:12:29 -0700 | [diff] [blame] | 4855 | } |
| 4856 | |
| 4857 | /** @hide per-user version */ |
Makoto Onuki | 408e8e4 | 2016-10-25 12:10:27 -0700 | [diff] [blame] | 4858 | public @Nullable List<PersistableBundle> getTrustAgentConfiguration( |
| 4859 | @Nullable ComponentName admin, @NonNull ComponentName agent, int userHandle) { |
Jim Miller | 604e755 | 2014-07-18 19:00:02 -0700 | [diff] [blame] | 4860 | if (mService != null) { |
| 4861 | try { |
Tony Mak | 089d840 | 2016-04-05 17:42:55 +0100 | [diff] [blame] | 4862 | return mService.getTrustAgentConfiguration(admin, agent, userHandle, |
| 4863 | mParentInstance); |
Jim Miller | 604e755 | 2014-07-18 19:00:02 -0700 | [diff] [blame] | 4864 | } catch (RemoteException e) { |
Jeff Sharkey | dbff9ca | 2016-03-01 19:46:25 -0700 | [diff] [blame] | 4865 | throw e.rethrowFromSystemServer(); |
Jim Miller | 604e755 | 2014-07-18 19:00:02 -0700 | [diff] [blame] | 4866 | } |
| 4867 | } |
Jim Miller | e303bf4 | 2014-08-26 17:12:29 -0700 | [diff] [blame] | 4868 | return new ArrayList<PersistableBundle>(); // empty list |
Jim Miller | 604e755 | 2014-07-18 19:00:02 -0700 | [diff] [blame] | 4869 | } |
| 4870 | |
| 4871 | /** |
Suprabh Shukla | 34d92ef | 2016-03-14 13:49:37 -0700 | [diff] [blame] | 4872 | * Called by a profile owner of a managed profile to set whether caller-Id information from the |
| 4873 | * managed profile will be shown in the parent profile, for incoming calls. |
| 4874 | * <p> |
| 4875 | * The calling device admin must be a profile owner. If it is not, a security exception will be |
| 4876 | * thrown. |
Adam Connors | 210fe21 | 2014-07-17 15:41:43 +0100 | [diff] [blame] | 4877 | * |
Robin Lee | 25e2645 | 2015-06-02 09:56:29 -0700 | [diff] [blame] | 4878 | * @param admin Which {@link DeviceAdminReceiver} this request is associated with. |
Adam Connors | 210fe21 | 2014-07-17 15:41:43 +0100 | [diff] [blame] | 4879 | * @param disabled If true caller-Id information in the managed profile is not displayed. |
Suprabh Shukla | 34d92ef | 2016-03-14 13:49:37 -0700 | [diff] [blame] | 4880 | * @throws SecurityException if {@code admin} is not a device or profile owner. |
Adam Connors | 210fe21 | 2014-07-17 15:41:43 +0100 | [diff] [blame] | 4881 | */ |
Robin Lee | 25e2645 | 2015-06-02 09:56:29 -0700 | [diff] [blame] | 4882 | public void setCrossProfileCallerIdDisabled(@NonNull ComponentName admin, boolean disabled) { |
Benjamin Franz | bc33c82 | 2016-04-15 08:57:52 +0100 | [diff] [blame] | 4883 | throwIfParentInstance("setCrossProfileCallerIdDisabled"); |
Adam Connors | 210fe21 | 2014-07-17 15:41:43 +0100 | [diff] [blame] | 4884 | if (mService != null) { |
| 4885 | try { |
Robin Lee | 25e2645 | 2015-06-02 09:56:29 -0700 | [diff] [blame] | 4886 | mService.setCrossProfileCallerIdDisabled(admin, disabled); |
Adam Connors | 210fe21 | 2014-07-17 15:41:43 +0100 | [diff] [blame] | 4887 | } catch (RemoteException e) { |
Jeff Sharkey | dbff9ca | 2016-03-01 19:46:25 -0700 | [diff] [blame] | 4888 | throw e.rethrowFromSystemServer(); |
Adam Connors | 210fe21 | 2014-07-17 15:41:43 +0100 | [diff] [blame] | 4889 | } |
| 4890 | } |
| 4891 | } |
| 4892 | |
| 4893 | /** |
Amith Yamasani | c34dc7c | 2014-09-18 09:42:42 -0700 | [diff] [blame] | 4894 | * Called by a profile owner of a managed profile to determine whether or not caller-Id |
| 4895 | * information has been disabled. |
Suprabh Shukla | 34d92ef | 2016-03-14 13:49:37 -0700 | [diff] [blame] | 4896 | * <p> |
| 4897 | * The calling device admin must be a profile owner. If it is not, a security exception will be |
| 4898 | * thrown. |
Adam Connors | 210fe21 | 2014-07-17 15:41:43 +0100 | [diff] [blame] | 4899 | * |
Robin Lee | 25e2645 | 2015-06-02 09:56:29 -0700 | [diff] [blame] | 4900 | * @param admin Which {@link DeviceAdminReceiver} this request is associated with. |
Suprabh Shukla | 34d92ef | 2016-03-14 13:49:37 -0700 | [diff] [blame] | 4901 | * @throws SecurityException if {@code admin} is not a device or profile owner. |
Adam Connors | 210fe21 | 2014-07-17 15:41:43 +0100 | [diff] [blame] | 4902 | */ |
Robin Lee | 25e2645 | 2015-06-02 09:56:29 -0700 | [diff] [blame] | 4903 | public boolean getCrossProfileCallerIdDisabled(@NonNull ComponentName admin) { |
Benjamin Franz | bc33c82 | 2016-04-15 08:57:52 +0100 | [diff] [blame] | 4904 | throwIfParentInstance("getCrossProfileCallerIdDisabled"); |
Adam Connors | 210fe21 | 2014-07-17 15:41:43 +0100 | [diff] [blame] | 4905 | if (mService != null) { |
| 4906 | try { |
Robin Lee | 25e2645 | 2015-06-02 09:56:29 -0700 | [diff] [blame] | 4907 | return mService.getCrossProfileCallerIdDisabled(admin); |
Adam Connors | 210fe21 | 2014-07-17 15:41:43 +0100 | [diff] [blame] | 4908 | } catch (RemoteException e) { |
Jeff Sharkey | dbff9ca | 2016-03-01 19:46:25 -0700 | [diff] [blame] | 4909 | throw e.rethrowFromSystemServer(); |
Adam Connors | 210fe21 | 2014-07-17 15:41:43 +0100 | [diff] [blame] | 4910 | } |
| 4911 | } |
| 4912 | return false; |
| 4913 | } |
| 4914 | |
| 4915 | /** |
Amith Yamasani | 570002f | 2014-07-18 15:48:54 -0700 | [diff] [blame] | 4916 | * Determine whether or not caller-Id information has been disabled. |
| 4917 | * |
| 4918 | * @param userHandle The user for whom to check the caller-id permission |
| 4919 | * @hide |
| 4920 | */ |
| 4921 | public boolean getCrossProfileCallerIdDisabled(UserHandle userHandle) { |
| 4922 | if (mService != null) { |
| 4923 | try { |
| 4924 | return mService.getCrossProfileCallerIdDisabledForUser(userHandle.getIdentifier()); |
| 4925 | } catch (RemoteException e) { |
Jeff Sharkey | dbff9ca | 2016-03-01 19:46:25 -0700 | [diff] [blame] | 4926 | throw e.rethrowFromSystemServer(); |
Amith Yamasani | 570002f | 2014-07-18 15:48:54 -0700 | [diff] [blame] | 4927 | } |
| 4928 | } |
| 4929 | return false; |
| 4930 | } |
| 4931 | |
| 4932 | /** |
Suprabh Shukla | 34d92ef | 2016-03-14 13:49:37 -0700 | [diff] [blame] | 4933 | * Called by a profile owner of a managed profile to set whether contacts search from the |
| 4934 | * managed profile will be shown in the parent profile, for incoming calls. |
| 4935 | * <p> |
| 4936 | * The calling device admin must be a profile owner. If it is not, a security exception will be |
| 4937 | * thrown. |
Victor Chang | 1060c618 | 2016-01-04 20:16:23 +0000 | [diff] [blame] | 4938 | * |
| 4939 | * @param admin Which {@link DeviceAdminReceiver} this request is associated with. |
| 4940 | * @param disabled If true contacts search in the managed profile is not displayed. |
Suprabh Shukla | 34d92ef | 2016-03-14 13:49:37 -0700 | [diff] [blame] | 4941 | * @throws SecurityException if {@code admin} is not a device or profile owner. |
Victor Chang | 1060c618 | 2016-01-04 20:16:23 +0000 | [diff] [blame] | 4942 | */ |
| 4943 | public void setCrossProfileContactsSearchDisabled(@NonNull ComponentName admin, |
| 4944 | boolean disabled) { |
Benjamin Franz | bc33c82 | 2016-04-15 08:57:52 +0100 | [diff] [blame] | 4945 | throwIfParentInstance("setCrossProfileContactsSearchDisabled"); |
Victor Chang | 1060c618 | 2016-01-04 20:16:23 +0000 | [diff] [blame] | 4946 | if (mService != null) { |
| 4947 | try { |
| 4948 | mService.setCrossProfileContactsSearchDisabled(admin, disabled); |
| 4949 | } catch (RemoteException e) { |
Jeff Sharkey | dbff9ca | 2016-03-01 19:46:25 -0700 | [diff] [blame] | 4950 | throw e.rethrowFromSystemServer(); |
Victor Chang | 1060c618 | 2016-01-04 20:16:23 +0000 | [diff] [blame] | 4951 | } |
| 4952 | } |
| 4953 | } |
| 4954 | |
| 4955 | /** |
| 4956 | * Called by a profile owner of a managed profile to determine whether or not contacts search |
| 4957 | * has been disabled. |
Suprabh Shukla | 34d92ef | 2016-03-14 13:49:37 -0700 | [diff] [blame] | 4958 | * <p> |
| 4959 | * The calling device admin must be a profile owner. If it is not, a security exception will be |
| 4960 | * thrown. |
Victor Chang | 1060c618 | 2016-01-04 20:16:23 +0000 | [diff] [blame] | 4961 | * |
| 4962 | * @param admin Which {@link DeviceAdminReceiver} this request is associated with. |
Suprabh Shukla | 34d92ef | 2016-03-14 13:49:37 -0700 | [diff] [blame] | 4963 | * @throws SecurityException if {@code admin} is not a device or profile owner. |
Victor Chang | 1060c618 | 2016-01-04 20:16:23 +0000 | [diff] [blame] | 4964 | */ |
| 4965 | public boolean getCrossProfileContactsSearchDisabled(@NonNull ComponentName admin) { |
Benjamin Franz | bc33c82 | 2016-04-15 08:57:52 +0100 | [diff] [blame] | 4966 | throwIfParentInstance("getCrossProfileContactsSearchDisabled"); |
Victor Chang | 1060c618 | 2016-01-04 20:16:23 +0000 | [diff] [blame] | 4967 | if (mService != null) { |
| 4968 | try { |
| 4969 | return mService.getCrossProfileContactsSearchDisabled(admin); |
| 4970 | } catch (RemoteException e) { |
Jeff Sharkey | dbff9ca | 2016-03-01 19:46:25 -0700 | [diff] [blame] | 4971 | throw e.rethrowFromSystemServer(); |
Victor Chang | 1060c618 | 2016-01-04 20:16:23 +0000 | [diff] [blame] | 4972 | } |
| 4973 | } |
| 4974 | return false; |
| 4975 | } |
| 4976 | |
| 4977 | |
| 4978 | /** |
| 4979 | * Determine whether or not contacts search has been disabled. |
| 4980 | * |
| 4981 | * @param userHandle The user for whom to check the contacts search permission |
| 4982 | * @hide |
| 4983 | */ |
| 4984 | public boolean getCrossProfileContactsSearchDisabled(@NonNull UserHandle userHandle) { |
| 4985 | if (mService != null) { |
| 4986 | try { |
| 4987 | return mService |
| 4988 | .getCrossProfileContactsSearchDisabledForUser(userHandle.getIdentifier()); |
| 4989 | } catch (RemoteException e) { |
Jeff Sharkey | dbff9ca | 2016-03-01 19:46:25 -0700 | [diff] [blame] | 4990 | throw e.rethrowFromSystemServer(); |
Victor Chang | 1060c618 | 2016-01-04 20:16:23 +0000 | [diff] [blame] | 4991 | } |
| 4992 | } |
| 4993 | return false; |
| 4994 | } |
| 4995 | |
| 4996 | /** |
Makoto Onuki | 32b3057 | 2015-12-11 14:29:51 -0800 | [diff] [blame] | 4997 | * Start Quick Contact on the managed profile for the user, if the policy allows. |
Victor Chang | 97bdacc | 2016-01-21 22:24:11 +0000 | [diff] [blame] | 4998 | * |
Makoto Onuki | 1040da1 | 2015-03-19 11:24:00 -0700 | [diff] [blame] | 4999 | * @hide |
| 5000 | */ |
| 5001 | public void startManagedQuickContact(String actualLookupKey, long actualContactId, |
Victor Chang | 97bdacc | 2016-01-21 22:24:11 +0000 | [diff] [blame] | 5002 | boolean isContactIdIgnored, long directoryId, Intent originalIntent) { |
Makoto Onuki | 1040da1 | 2015-03-19 11:24:00 -0700 | [diff] [blame] | 5003 | if (mService != null) { |
| 5004 | try { |
Victor Chang | 97bdacc | 2016-01-21 22:24:11 +0000 | [diff] [blame] | 5005 | mService.startManagedQuickContact(actualLookupKey, actualContactId, |
| 5006 | isContactIdIgnored, directoryId, originalIntent); |
Makoto Onuki | 1040da1 | 2015-03-19 11:24:00 -0700 | [diff] [blame] | 5007 | } catch (RemoteException e) { |
Jeff Sharkey | dbff9ca | 2016-03-01 19:46:25 -0700 | [diff] [blame] | 5008 | throw e.rethrowFromSystemServer(); |
Makoto Onuki | 1040da1 | 2015-03-19 11:24:00 -0700 | [diff] [blame] | 5009 | } |
| 5010 | } |
| 5011 | } |
| 5012 | |
| 5013 | /** |
Makoto Onuki | 32b3057 | 2015-12-11 14:29:51 -0800 | [diff] [blame] | 5014 | * Start Quick Contact on the managed profile for the user, if the policy allows. |
Ricky Wai | 494b95d | 2015-11-20 16:07:15 +0000 | [diff] [blame] | 5015 | * @hide |
| 5016 | */ |
| 5017 | public void startManagedQuickContact(String actualLookupKey, long actualContactId, |
| 5018 | Intent originalIntent) { |
Victor Chang | 97bdacc | 2016-01-21 22:24:11 +0000 | [diff] [blame] | 5019 | startManagedQuickContact(actualLookupKey, actualContactId, false, Directory.DEFAULT, |
Ricky Wai | 494b95d | 2015-11-20 16:07:15 +0000 | [diff] [blame] | 5020 | originalIntent); |
| 5021 | } |
| 5022 | |
| 5023 | /** |
Suprabh Shukla | 34d92ef | 2016-03-14 13:49:37 -0700 | [diff] [blame] | 5024 | * Called by a profile owner of a managed profile to set whether bluetooth devices can access |
| 5025 | * enterprise contacts. |
Ricky Wai | 778ba13 | 2015-03-31 14:21:22 +0100 | [diff] [blame] | 5026 | * <p> |
Suprabh Shukla | 34d92ef | 2016-03-14 13:49:37 -0700 | [diff] [blame] | 5027 | * The calling device admin must be a profile owner. If it is not, a security exception will be |
| 5028 | * thrown. |
Ricky Wai | 778ba13 | 2015-03-31 14:21:22 +0100 | [diff] [blame] | 5029 | * <p> |
| 5030 | * This API works on managed profile only. |
| 5031 | * |
Suprabh Shukla | 34d92ef | 2016-03-14 13:49:37 -0700 | [diff] [blame] | 5032 | * @param admin Which {@link DeviceAdminReceiver} this request is associated with. |
| 5033 | * @param disabled If true, bluetooth devices cannot access enterprise contacts. |
| 5034 | * @throws SecurityException if {@code admin} is not a device or profile owner. |
Ricky Wai | 778ba13 | 2015-03-31 14:21:22 +0100 | [diff] [blame] | 5035 | */ |
Robin Lee | 25e2645 | 2015-06-02 09:56:29 -0700 | [diff] [blame] | 5036 | public void setBluetoothContactSharingDisabled(@NonNull ComponentName admin, boolean disabled) { |
Benjamin Franz | bc33c82 | 2016-04-15 08:57:52 +0100 | [diff] [blame] | 5037 | throwIfParentInstance("setBluetoothContactSharingDisabled"); |
Ricky Wai | 778ba13 | 2015-03-31 14:21:22 +0100 | [diff] [blame] | 5038 | if (mService != null) { |
| 5039 | try { |
Robin Lee | 25e2645 | 2015-06-02 09:56:29 -0700 | [diff] [blame] | 5040 | mService.setBluetoothContactSharingDisabled(admin, disabled); |
Ricky Wai | 778ba13 | 2015-03-31 14:21:22 +0100 | [diff] [blame] | 5041 | } catch (RemoteException e) { |
Jeff Sharkey | dbff9ca | 2016-03-01 19:46:25 -0700 | [diff] [blame] | 5042 | throw e.rethrowFromSystemServer(); |
Ricky Wai | 778ba13 | 2015-03-31 14:21:22 +0100 | [diff] [blame] | 5043 | } |
| 5044 | } |
| 5045 | } |
| 5046 | |
| 5047 | /** |
Suprabh Shukla | 34d92ef | 2016-03-14 13:49:37 -0700 | [diff] [blame] | 5048 | * Called by a profile owner of a managed profile to determine whether or not Bluetooth devices |
| 5049 | * cannot access enterprise contacts. |
Ricky Wai | 778ba13 | 2015-03-31 14:21:22 +0100 | [diff] [blame] | 5050 | * <p> |
Suprabh Shukla | 34d92ef | 2016-03-14 13:49:37 -0700 | [diff] [blame] | 5051 | * The calling device admin must be a profile owner. If it is not, a security exception will be |
| 5052 | * thrown. |
Ricky Wai | 778ba13 | 2015-03-31 14:21:22 +0100 | [diff] [blame] | 5053 | * <p> |
| 5054 | * This API works on managed profile only. |
| 5055 | * |
Suprabh Shukla | 34d92ef | 2016-03-14 13:49:37 -0700 | [diff] [blame] | 5056 | * @param admin Which {@link DeviceAdminReceiver} this request is associated with. |
| 5057 | * @throws SecurityException if {@code admin} is not a device or profile owner. |
Ricky Wai | 778ba13 | 2015-03-31 14:21:22 +0100 | [diff] [blame] | 5058 | */ |
Robin Lee | 25e2645 | 2015-06-02 09:56:29 -0700 | [diff] [blame] | 5059 | public boolean getBluetoothContactSharingDisabled(@NonNull ComponentName admin) { |
Benjamin Franz | bc33c82 | 2016-04-15 08:57:52 +0100 | [diff] [blame] | 5060 | throwIfParentInstance("getBluetoothContactSharingDisabled"); |
Ricky Wai | 778ba13 | 2015-03-31 14:21:22 +0100 | [diff] [blame] | 5061 | if (mService != null) { |
| 5062 | try { |
Robin Lee | 25e2645 | 2015-06-02 09:56:29 -0700 | [diff] [blame] | 5063 | return mService.getBluetoothContactSharingDisabled(admin); |
Ricky Wai | 778ba13 | 2015-03-31 14:21:22 +0100 | [diff] [blame] | 5064 | } catch (RemoteException e) { |
Jeff Sharkey | dbff9ca | 2016-03-01 19:46:25 -0700 | [diff] [blame] | 5065 | throw e.rethrowFromSystemServer(); |
Ricky Wai | 778ba13 | 2015-03-31 14:21:22 +0100 | [diff] [blame] | 5066 | } |
| 5067 | } |
| 5068 | return true; |
| 5069 | } |
| 5070 | |
| 5071 | /** |
| 5072 | * Determine whether or not Bluetooth devices cannot access contacts. |
| 5073 | * <p> |
| 5074 | * This API works on managed profile UserHandle only. |
| 5075 | * |
| 5076 | * @param userHandle The user for whom to check the caller-id permission |
| 5077 | * @hide |
| 5078 | */ |
| 5079 | public boolean getBluetoothContactSharingDisabled(UserHandle userHandle) { |
| 5080 | if (mService != null) { |
| 5081 | try { |
| 5082 | return mService.getBluetoothContactSharingDisabledForUser(userHandle |
| 5083 | .getIdentifier()); |
| 5084 | } catch (RemoteException e) { |
Jeff Sharkey | dbff9ca | 2016-03-01 19:46:25 -0700 | [diff] [blame] | 5085 | throw e.rethrowFromSystemServer(); |
Ricky Wai | 778ba13 | 2015-03-31 14:21:22 +0100 | [diff] [blame] | 5086 | } |
| 5087 | } |
| 5088 | return true; |
| 5089 | } |
| 5090 | |
| 5091 | /** |
Amith Yamasani | c34dc7c | 2014-09-18 09:42:42 -0700 | [diff] [blame] | 5092 | * Called by the profile owner of a managed profile so that some intents sent in the managed |
Suprabh Shukla | 34d92ef | 2016-03-14 13:49:37 -0700 | [diff] [blame] | 5093 | * profile can also be resolved in the parent, or vice versa. Only activity intents are |
| 5094 | * supported. |
Nicolas Prevot | fc7b444 | 2014-12-17 15:28:29 +0000 | [diff] [blame] | 5095 | * |
Nicolas Prevot | 10fa67c | 2014-03-24 13:44:38 +0000 | [diff] [blame] | 5096 | * @param admin Which {@link DeviceAdminReceiver} this request is associated with. |
Nicolas Prevot | 8194899 | 2014-05-16 18:25:26 +0100 | [diff] [blame] | 5097 | * @param filter The {@link IntentFilter} the intent has to match to be also resolved in the |
Suprabh Shukla | 34d92ef | 2016-03-14 13:49:37 -0700 | [diff] [blame] | 5098 | * other profile |
Nicolas Prevot | 41d926e | 2014-06-09 11:48:56 +0100 | [diff] [blame] | 5099 | * @param flags {@link DevicePolicyManager#FLAG_MANAGED_CAN_ACCESS_PARENT} and |
Suprabh Shukla | 34d92ef | 2016-03-14 13:49:37 -0700 | [diff] [blame] | 5100 | * {@link DevicePolicyManager#FLAG_PARENT_CAN_ACCESS_MANAGED} are supported. |
| 5101 | * @throws SecurityException if {@code admin} is not a device or profile owner. |
Nicolas Prevot | 10fa67c | 2014-03-24 13:44:38 +0000 | [diff] [blame] | 5102 | */ |
Robin Lee | 25e2645 | 2015-06-02 09:56:29 -0700 | [diff] [blame] | 5103 | public void addCrossProfileIntentFilter(@NonNull ComponentName admin, IntentFilter filter, int flags) { |
Benjamin Franz | bc33c82 | 2016-04-15 08:57:52 +0100 | [diff] [blame] | 5104 | throwIfParentInstance("addCrossProfileIntentFilter"); |
Nicolas Prevot | 10fa67c | 2014-03-24 13:44:38 +0000 | [diff] [blame] | 5105 | if (mService != null) { |
| 5106 | try { |
Nicolas Prevot | 8194899 | 2014-05-16 18:25:26 +0100 | [diff] [blame] | 5107 | mService.addCrossProfileIntentFilter(admin, filter, flags); |
Nicolas Prevot | 10fa67c | 2014-03-24 13:44:38 +0000 | [diff] [blame] | 5108 | } catch (RemoteException e) { |
Jeff Sharkey | dbff9ca | 2016-03-01 19:46:25 -0700 | [diff] [blame] | 5109 | throw e.rethrowFromSystemServer(); |
Nicolas Prevot | 10fa67c | 2014-03-24 13:44:38 +0000 | [diff] [blame] | 5110 | } |
| 5111 | } |
| 5112 | } |
| 5113 | |
| 5114 | /** |
Amith Yamasani | c34dc7c | 2014-09-18 09:42:42 -0700 | [diff] [blame] | 5115 | * Called by a profile owner of a managed profile to remove the cross-profile intent filters |
| 5116 | * that go from the managed profile to the parent, or from the parent to the managed profile. |
Nicolas Prevot | 3f7777f | 2014-07-24 15:58:39 +0100 | [diff] [blame] | 5117 | * Only removes those that have been set by the profile owner. |
Suprabh Shukla | 34d92ef | 2016-03-14 13:49:37 -0700 | [diff] [blame] | 5118 | * |
Nicolas Prevot | 10fa67c | 2014-03-24 13:44:38 +0000 | [diff] [blame] | 5119 | * @param admin Which {@link DeviceAdminReceiver} this request is associated with. |
Suprabh Shukla | 34d92ef | 2016-03-14 13:49:37 -0700 | [diff] [blame] | 5120 | * @throws SecurityException if {@code admin} is not a device or profile owner. |
Nicolas Prevot | 10fa67c | 2014-03-24 13:44:38 +0000 | [diff] [blame] | 5121 | */ |
Robin Lee | 25e2645 | 2015-06-02 09:56:29 -0700 | [diff] [blame] | 5122 | public void clearCrossProfileIntentFilters(@NonNull ComponentName admin) { |
Benjamin Franz | bc33c82 | 2016-04-15 08:57:52 +0100 | [diff] [blame] | 5123 | throwIfParentInstance("clearCrossProfileIntentFilters"); |
Nicolas Prevot | 10fa67c | 2014-03-24 13:44:38 +0000 | [diff] [blame] | 5124 | if (mService != null) { |
| 5125 | try { |
Nicolas Prevot | 8194899 | 2014-05-16 18:25:26 +0100 | [diff] [blame] | 5126 | mService.clearCrossProfileIntentFilters(admin); |
Nicolas Prevot | 10fa67c | 2014-03-24 13:44:38 +0000 | [diff] [blame] | 5127 | } catch (RemoteException e) { |
Jeff Sharkey | dbff9ca | 2016-03-01 19:46:25 -0700 | [diff] [blame] | 5128 | throw e.rethrowFromSystemServer(); |
Nicolas Prevot | 10fa67c | 2014-03-24 13:44:38 +0000 | [diff] [blame] | 5129 | } |
| 5130 | } |
| 5131 | } |
| 5132 | |
| 5133 | /** |
Suprabh Shukla | 34d92ef | 2016-03-14 13:49:37 -0700 | [diff] [blame] | 5134 | * Called by a profile or device owner to set the permitted accessibility services. When set by |
| 5135 | * a device owner or profile owner the restriction applies to all profiles of the user the |
| 5136 | * device owner or profile owner is an admin for. By default the user can use any accessiblity |
| 5137 | * service. When zero or more packages have been added, accessiblity services that are not in |
| 5138 | * the list and not part of the system can not be enabled by the user. |
| 5139 | * <p> |
| 5140 | * Calling with a null value for the list disables the restriction so that all services can be |
| 5141 | * used, calling with an empty list only allows the builtin system's services. |
| 5142 | * <p> |
| 5143 | * System accesibility services are always available to the user the list can't modify this. |
Kenny Guy | fa80a4f | 2014-08-20 19:40:59 +0100 | [diff] [blame] | 5144 | * |
| 5145 | * @param admin Which {@link DeviceAdminReceiver} this request is associated with. |
| 5146 | * @param packageNames List of accessibility service package names. |
Suprabh Shukla | 34d92ef | 2016-03-14 13:49:37 -0700 | [diff] [blame] | 5147 | * @return true if setting the restriction succeeded. It fail if there is one or more non-system |
| 5148 | * accessibility services enabled, that are not in the list. |
| 5149 | * @throws SecurityException if {@code admin} is not a device or profile owner. |
Kenny Guy | fa80a4f | 2014-08-20 19:40:59 +0100 | [diff] [blame] | 5150 | */ |
Robin Lee | 25e2645 | 2015-06-02 09:56:29 -0700 | [diff] [blame] | 5151 | public boolean setPermittedAccessibilityServices(@NonNull ComponentName admin, |
Kenny Guy | fa80a4f | 2014-08-20 19:40:59 +0100 | [diff] [blame] | 5152 | List<String> packageNames) { |
Benjamin Franz | bc33c82 | 2016-04-15 08:57:52 +0100 | [diff] [blame] | 5153 | throwIfParentInstance("setPermittedAccessibilityServices"); |
Kenny Guy | fa80a4f | 2014-08-20 19:40:59 +0100 | [diff] [blame] | 5154 | if (mService != null) { |
| 5155 | try { |
| 5156 | return mService.setPermittedAccessibilityServices(admin, packageNames); |
| 5157 | } catch (RemoteException e) { |
Jeff Sharkey | dbff9ca | 2016-03-01 19:46:25 -0700 | [diff] [blame] | 5158 | throw e.rethrowFromSystemServer(); |
Kenny Guy | fa80a4f | 2014-08-20 19:40:59 +0100 | [diff] [blame] | 5159 | } |
| 5160 | } |
| 5161 | return false; |
| 5162 | } |
| 5163 | |
| 5164 | /** |
| 5165 | * Returns the list of permitted accessibility services set by this device or profile owner. |
Suprabh Shukla | 34d92ef | 2016-03-14 13:49:37 -0700 | [diff] [blame] | 5166 | * <p> |
| 5167 | * An empty list means no accessibility services except system services are allowed. Null means |
| 5168 | * all accessibility services are allowed. |
Kenny Guy | fa80a4f | 2014-08-20 19:40:59 +0100 | [diff] [blame] | 5169 | * |
| 5170 | * @param admin Which {@link DeviceAdminReceiver} this request is associated with. |
| 5171 | * @return List of accessiblity service package names. |
Suprabh Shukla | 34d92ef | 2016-03-14 13:49:37 -0700 | [diff] [blame] | 5172 | * @throws SecurityException if {@code admin} is not a device or profile owner. |
Kenny Guy | fa80a4f | 2014-08-20 19:40:59 +0100 | [diff] [blame] | 5173 | */ |
Makoto Onuki | 408e8e4 | 2016-10-25 12:10:27 -0700 | [diff] [blame] | 5174 | public @Nullable List<String> getPermittedAccessibilityServices(@NonNull ComponentName admin) { |
Benjamin Franz | bc33c82 | 2016-04-15 08:57:52 +0100 | [diff] [blame] | 5175 | throwIfParentInstance("getPermittedAccessibilityServices"); |
Kenny Guy | fa80a4f | 2014-08-20 19:40:59 +0100 | [diff] [blame] | 5176 | if (mService != null) { |
| 5177 | try { |
| 5178 | return mService.getPermittedAccessibilityServices(admin); |
| 5179 | } catch (RemoteException e) { |
Jeff Sharkey | dbff9ca | 2016-03-01 19:46:25 -0700 | [diff] [blame] | 5180 | throw e.rethrowFromSystemServer(); |
Kenny Guy | fa80a4f | 2014-08-20 19:40:59 +0100 | [diff] [blame] | 5181 | } |
| 5182 | } |
| 5183 | return null; |
| 5184 | } |
| 5185 | |
| 5186 | /** |
Sudheer Shanka | 5692586 | 2016-01-28 19:43:59 +0000 | [diff] [blame] | 5187 | * Called by the system to check if a specific accessibility service is disabled by admin. |
| 5188 | * |
| 5189 | * @param admin Which {@link DeviceAdminReceiver} this request is associated with. |
| 5190 | * @param packageName Accessibility service package name that needs to be checked. |
| 5191 | * @param userHandle user id the admin is running as. |
| 5192 | * @return true if the accessibility service is permitted, otherwise false. |
| 5193 | * |
| 5194 | * @hide |
| 5195 | */ |
| 5196 | public boolean isAccessibilityServicePermittedByAdmin(@NonNull ComponentName admin, |
| 5197 | @NonNull String packageName, int userHandle) { |
| 5198 | if (mService != null) { |
| 5199 | try { |
| 5200 | return mService.isAccessibilityServicePermittedByAdmin(admin, packageName, |
| 5201 | userHandle); |
| 5202 | } catch (RemoteException e) { |
Jeff Sharkey | dbff9ca | 2016-03-01 19:46:25 -0700 | [diff] [blame] | 5203 | throw e.rethrowFromSystemServer(); |
Sudheer Shanka | 5692586 | 2016-01-28 19:43:59 +0000 | [diff] [blame] | 5204 | } |
| 5205 | } |
| 5206 | return false; |
| 5207 | } |
| 5208 | |
| 5209 | /** |
Kenny Guy | fa80a4f | 2014-08-20 19:40:59 +0100 | [diff] [blame] | 5210 | * Returns the list of accessibility services permitted by the device or profiles |
| 5211 | * owners of this user. |
| 5212 | * |
| 5213 | * <p>Null means all accessibility services are allowed, if a non-null list is returned |
| 5214 | * it will contain the intersection of the permitted lists for any device or profile |
| 5215 | * owners that apply to this user. It will also include any system accessibility services. |
| 5216 | * |
| 5217 | * @param userId which user to check for. |
| 5218 | * @return List of accessiblity service package names. |
| 5219 | * @hide |
| 5220 | */ |
| 5221 | @SystemApi |
Makoto Onuki | 408e8e4 | 2016-10-25 12:10:27 -0700 | [diff] [blame] | 5222 | public @Nullable List<String> getPermittedAccessibilityServices(int userId) { |
Benjamin Franz | bc33c82 | 2016-04-15 08:57:52 +0100 | [diff] [blame] | 5223 | throwIfParentInstance("getPermittedAccessibilityServices"); |
Kenny Guy | fa80a4f | 2014-08-20 19:40:59 +0100 | [diff] [blame] | 5224 | if (mService != null) { |
| 5225 | try { |
| 5226 | return mService.getPermittedAccessibilityServicesForUser(userId); |
| 5227 | } catch (RemoteException e) { |
Jeff Sharkey | dbff9ca | 2016-03-01 19:46:25 -0700 | [diff] [blame] | 5228 | throw e.rethrowFromSystemServer(); |
Kenny Guy | fa80a4f | 2014-08-20 19:40:59 +0100 | [diff] [blame] | 5229 | } |
| 5230 | } |
| 5231 | return null; |
| 5232 | } |
| 5233 | |
| 5234 | /** |
Suprabh Shukla | 34d92ef | 2016-03-14 13:49:37 -0700 | [diff] [blame] | 5235 | * Called by a profile or device owner to set the permitted input methods services. When set by |
| 5236 | * a device owner or profile owner the restriction applies to all profiles of the user the |
| 5237 | * device owner or profile owner is an admin for. By default the user can use any input method. |
| 5238 | * When zero or more packages have been added, input method that are not in the list and not |
| 5239 | * part of the system can not be enabled by the user. This method will fail if it is called for |
| 5240 | * a admin that is not for the foreground user or a profile of the foreground user. |
| 5241 | * <p> |
| 5242 | * Calling with a null value for the list disables the restriction so that all input methods can |
| 5243 | * be used, calling with an empty list disables all but the system's own input methods. |
| 5244 | * <p> |
| 5245 | * System input methods are always available to the user this method can't modify this. |
Kenny Guy | fa80a4f | 2014-08-20 19:40:59 +0100 | [diff] [blame] | 5246 | * |
| 5247 | * @param admin Which {@link DeviceAdminReceiver} this request is associated with. |
| 5248 | * @param packageNames List of input method package names. |
Suprabh Shukla | 34d92ef | 2016-03-14 13:49:37 -0700 | [diff] [blame] | 5249 | * @return true if setting the restriction succeeded. It will fail if there are one or more |
| 5250 | * non-system input methods currently enabled that are not in the packageNames list. |
| 5251 | * @throws SecurityException if {@code admin} is not a device or profile owner. |
Kenny Guy | fa80a4f | 2014-08-20 19:40:59 +0100 | [diff] [blame] | 5252 | */ |
Robin Lee | 25e2645 | 2015-06-02 09:56:29 -0700 | [diff] [blame] | 5253 | public boolean setPermittedInputMethods(@NonNull ComponentName admin, List<String> packageNames) { |
Benjamin Franz | bc33c82 | 2016-04-15 08:57:52 +0100 | [diff] [blame] | 5254 | throwIfParentInstance("setPermittedInputMethods"); |
Kenny Guy | fa80a4f | 2014-08-20 19:40:59 +0100 | [diff] [blame] | 5255 | if (mService != null) { |
| 5256 | try { |
| 5257 | return mService.setPermittedInputMethods(admin, packageNames); |
| 5258 | } catch (RemoteException e) { |
Jeff Sharkey | dbff9ca | 2016-03-01 19:46:25 -0700 | [diff] [blame] | 5259 | throw e.rethrowFromSystemServer(); |
Kenny Guy | fa80a4f | 2014-08-20 19:40:59 +0100 | [diff] [blame] | 5260 | } |
| 5261 | } |
| 5262 | return false; |
| 5263 | } |
| 5264 | |
| 5265 | |
| 5266 | /** |
| 5267 | * Returns the list of permitted input methods set by this device or profile owner. |
Suprabh Shukla | 34d92ef | 2016-03-14 13:49:37 -0700 | [diff] [blame] | 5268 | * <p> |
| 5269 | * An empty list means no input methods except system input methods are allowed. Null means all |
| 5270 | * input methods are allowed. |
Kenny Guy | fa80a4f | 2014-08-20 19:40:59 +0100 | [diff] [blame] | 5271 | * |
| 5272 | * @param admin Which {@link DeviceAdminReceiver} this request is associated with. |
| 5273 | * @return List of input method package names. |
Suprabh Shukla | 34d92ef | 2016-03-14 13:49:37 -0700 | [diff] [blame] | 5274 | * @throws SecurityException if {@code admin} is not a device or profile owner. |
Kenny Guy | fa80a4f | 2014-08-20 19:40:59 +0100 | [diff] [blame] | 5275 | */ |
Makoto Onuki | 408e8e4 | 2016-10-25 12:10:27 -0700 | [diff] [blame] | 5276 | public @Nullable List<String> getPermittedInputMethods(@NonNull ComponentName admin) { |
Benjamin Franz | bc33c82 | 2016-04-15 08:57:52 +0100 | [diff] [blame] | 5277 | throwIfParentInstance("getPermittedInputMethods"); |
Kenny Guy | fa80a4f | 2014-08-20 19:40:59 +0100 | [diff] [blame] | 5278 | if (mService != null) { |
| 5279 | try { |
| 5280 | return mService.getPermittedInputMethods(admin); |
| 5281 | } catch (RemoteException e) { |
Jeff Sharkey | dbff9ca | 2016-03-01 19:46:25 -0700 | [diff] [blame] | 5282 | throw e.rethrowFromSystemServer(); |
Kenny Guy | fa80a4f | 2014-08-20 19:40:59 +0100 | [diff] [blame] | 5283 | } |
| 5284 | } |
| 5285 | return null; |
| 5286 | } |
| 5287 | |
| 5288 | /** |
Sudheer Shanka | 5692586 | 2016-01-28 19:43:59 +0000 | [diff] [blame] | 5289 | * Called by the system to check if a specific input method is disabled by admin. |
| 5290 | * |
| 5291 | * @param admin Which {@link DeviceAdminReceiver} this request is associated with. |
| 5292 | * @param packageName Input method package name that needs to be checked. |
| 5293 | * @param userHandle user id the admin is running as. |
| 5294 | * @return true if the input method is permitted, otherwise false. |
| 5295 | * |
| 5296 | * @hide |
| 5297 | */ |
| 5298 | public boolean isInputMethodPermittedByAdmin(@NonNull ComponentName admin, |
| 5299 | @NonNull String packageName, int userHandle) { |
| 5300 | if (mService != null) { |
| 5301 | try { |
| 5302 | return mService.isInputMethodPermittedByAdmin(admin, packageName, userHandle); |
| 5303 | } catch (RemoteException e) { |
Jeff Sharkey | dbff9ca | 2016-03-01 19:46:25 -0700 | [diff] [blame] | 5304 | throw e.rethrowFromSystemServer(); |
Sudheer Shanka | 5692586 | 2016-01-28 19:43:59 +0000 | [diff] [blame] | 5305 | } |
| 5306 | } |
| 5307 | return false; |
| 5308 | } |
| 5309 | |
| 5310 | /** |
Kenny Guy | fa80a4f | 2014-08-20 19:40:59 +0100 | [diff] [blame] | 5311 | * Returns the list of input methods permitted by the device or profiles |
Makoto Onuki | 32b3057 | 2015-12-11 14:29:51 -0800 | [diff] [blame] | 5312 | * owners of the current user. (*Not* calling user, due to a limitation in InputMethodManager.) |
Kenny Guy | fa80a4f | 2014-08-20 19:40:59 +0100 | [diff] [blame] | 5313 | * |
| 5314 | * <p>Null means all input methods are allowed, if a non-null list is returned |
| 5315 | * it will contain the intersection of the permitted lists for any device or profile |
| 5316 | * owners that apply to this user. It will also include any system input methods. |
| 5317 | * |
| 5318 | * @return List of input method package names. |
| 5319 | * @hide |
| 5320 | */ |
| 5321 | @SystemApi |
Makoto Onuki | 408e8e4 | 2016-10-25 12:10:27 -0700 | [diff] [blame] | 5322 | public @Nullable List<String> getPermittedInputMethodsForCurrentUser() { |
Benjamin Franz | bc33c82 | 2016-04-15 08:57:52 +0100 | [diff] [blame] | 5323 | throwIfParentInstance("getPermittedInputMethodsForCurrentUser"); |
Kenny Guy | fa80a4f | 2014-08-20 19:40:59 +0100 | [diff] [blame] | 5324 | if (mService != null) { |
| 5325 | try { |
| 5326 | return mService.getPermittedInputMethodsForCurrentUser(); |
| 5327 | } catch (RemoteException e) { |
Jeff Sharkey | dbff9ca | 2016-03-01 19:46:25 -0700 | [diff] [blame] | 5328 | throw e.rethrowFromSystemServer(); |
Kenny Guy | fa80a4f | 2014-08-20 19:40:59 +0100 | [diff] [blame] | 5329 | } |
| 5330 | } |
| 5331 | return null; |
| 5332 | } |
| 5333 | |
| 5334 | /** |
Fyodor Kupolov | cb6fd80 | 2015-11-05 14:27:06 -0800 | [diff] [blame] | 5335 | * Called by a device owner to get the list of apps to keep around as APKs even if no user has |
| 5336 | * currently installed it. |
| 5337 | * |
| 5338 | * @param admin Which {@link DeviceAdminReceiver} this request is associated with. |
| 5339 | * |
| 5340 | * @return List of package names to keep cached. |
| 5341 | * @hide |
| 5342 | */ |
Makoto Onuki | 408e8e4 | 2016-10-25 12:10:27 -0700 | [diff] [blame] | 5343 | public @Nullable List<String> getKeepUninstalledPackages(@NonNull ComponentName admin) { |
Benjamin Franz | bc33c82 | 2016-04-15 08:57:52 +0100 | [diff] [blame] | 5344 | throwIfParentInstance("getKeepUninstalledPackages"); |
Fyodor Kupolov | cb6fd80 | 2015-11-05 14:27:06 -0800 | [diff] [blame] | 5345 | if (mService != null) { |
| 5346 | try { |
| 5347 | return mService.getKeepUninstalledPackages(admin); |
| 5348 | } catch (RemoteException e) { |
Jeff Sharkey | dbff9ca | 2016-03-01 19:46:25 -0700 | [diff] [blame] | 5349 | throw e.rethrowFromSystemServer(); |
Fyodor Kupolov | cb6fd80 | 2015-11-05 14:27:06 -0800 | [diff] [blame] | 5350 | } |
| 5351 | } |
| 5352 | return null; |
| 5353 | } |
| 5354 | |
| 5355 | /** |
| 5356 | * Called by a device owner to set a list of apps to keep around as APKs even if no user has |
| 5357 | * currently installed it. |
| 5358 | * |
| 5359 | * <p>Please note that setting this policy does not imply that specified apps will be |
| 5360 | * automatically pre-cached.</p> |
| 5361 | * |
| 5362 | * @param admin Which {@link DeviceAdminReceiver} this request is associated with. |
| 5363 | * @param packageNames List of package names to keep cached. |
Suprabh Shukla | 34d92ef | 2016-03-14 13:49:37 -0700 | [diff] [blame] | 5364 | * @throws SecurityException if {@code admin} is not a device owner. |
Fyodor Kupolov | cb6fd80 | 2015-11-05 14:27:06 -0800 | [diff] [blame] | 5365 | * @hide |
| 5366 | */ |
| 5367 | public void setKeepUninstalledPackages(@NonNull ComponentName admin, |
| 5368 | @NonNull List<String> packageNames) { |
Benjamin Franz | bc33c82 | 2016-04-15 08:57:52 +0100 | [diff] [blame] | 5369 | throwIfParentInstance("setKeepUninstalledPackages"); |
Fyodor Kupolov | cb6fd80 | 2015-11-05 14:27:06 -0800 | [diff] [blame] | 5370 | if (mService != null) { |
| 5371 | try { |
| 5372 | mService.setKeepUninstalledPackages(admin, packageNames); |
| 5373 | } catch (RemoteException e) { |
Jeff Sharkey | dbff9ca | 2016-03-01 19:46:25 -0700 | [diff] [blame] | 5374 | throw e.rethrowFromSystemServer(); |
Fyodor Kupolov | cb6fd80 | 2015-11-05 14:27:06 -0800 | [diff] [blame] | 5375 | } |
| 5376 | } |
| 5377 | } |
| 5378 | |
| 5379 | /** |
Julia Reynolds | 1e95839 | 2014-05-16 14:25:21 -0400 | [diff] [blame] | 5380 | * Called by a device owner to create a user with the specified name. The UserHandle returned |
| 5381 | * by this method should not be persisted as user handles are recycled as users are removed and |
| 5382 | * created. If you need to persist an identifier for this user, use |
| 5383 | * {@link UserManager#getSerialNumberForUser}. |
| 5384 | * |
| 5385 | * @param admin Which {@link DeviceAdminReceiver} this request is associated with. |
| 5386 | * @param name the user's name |
| 5387 | * @see UserHandle |
Robin Lee | 25e2645 | 2015-06-02 09:56:29 -0700 | [diff] [blame] | 5388 | * @return the {@link android.os.UserHandle} object for the created user, or {@code null} if the |
| 5389 | * user could not be created. |
Kenny Guy | 14f48e5 | 2015-06-29 15:12:36 +0100 | [diff] [blame] | 5390 | * |
Dianne Hackborn | 0e3de6c | 2015-07-29 15:20:21 -0700 | [diff] [blame] | 5391 | * @deprecated From {@link android.os.Build.VERSION_CODES#M} |
phweiss | 27ee334 | 2016-02-08 16:40:45 +0100 | [diff] [blame] | 5392 | * @removed From {@link android.os.Build.VERSION_CODES#N} |
Julia Reynolds | 1e95839 | 2014-05-16 14:25:21 -0400 | [diff] [blame] | 5393 | */ |
Kenny Guy | 14f48e5 | 2015-06-29 15:12:36 +0100 | [diff] [blame] | 5394 | @Deprecated |
Makoto Onuki | 408e8e4 | 2016-10-25 12:10:27 -0700 | [diff] [blame] | 5395 | public @Nullable UserHandle createUser(@NonNull ComponentName admin, String name) { |
Julia Reynolds | 1e95839 | 2014-05-16 14:25:21 -0400 | [diff] [blame] | 5396 | return null; |
| 5397 | } |
| 5398 | |
| 5399 | /** |
Jason Monk | 03978a4 | 2014-06-10 15:05:30 -0400 | [diff] [blame] | 5400 | * Called by a device owner to create a user with the specified name. The UserHandle returned |
| 5401 | * by this method should not be persisted as user handles are recycled as users are removed and |
| 5402 | * created. If you need to persist an identifier for this user, use |
| 5403 | * {@link UserManager#getSerialNumberForUser}. The new user will be started in the background |
| 5404 | * immediately. |
| 5405 | * |
| 5406 | * <p> profileOwnerComponent is the {@link DeviceAdminReceiver} to be the profile owner as well |
| 5407 | * as registered as an active admin on the new user. The profile owner package will be |
| 5408 | * installed on the new user if it already is installed on the device. |
| 5409 | * |
| 5410 | * <p>If the optionalInitializeData is not null, then the extras will be passed to the |
| 5411 | * profileOwnerComponent when onEnable is called. |
| 5412 | * |
| 5413 | * @param admin Which {@link DeviceAdminReceiver} this request is associated with. |
| 5414 | * @param name the user's name |
| 5415 | * @param ownerName the human readable name of the organisation associated with this DPM. |
| 5416 | * @param profileOwnerComponent The {@link DeviceAdminReceiver} that will be an active admin on |
| 5417 | * the user. |
| 5418 | * @param adminExtras Extras that will be passed to onEnable of the admin receiver |
| 5419 | * on the new user. |
| 5420 | * @see UserHandle |
Robin Lee | 25e2645 | 2015-06-02 09:56:29 -0700 | [diff] [blame] | 5421 | * @return the {@link android.os.UserHandle} object for the created user, or {@code null} if the |
| 5422 | * user could not be created. |
Kenny Guy | 14f48e5 | 2015-06-29 15:12:36 +0100 | [diff] [blame] | 5423 | * |
Dianne Hackborn | 0e3de6c | 2015-07-29 15:20:21 -0700 | [diff] [blame] | 5424 | * @deprecated From {@link android.os.Build.VERSION_CODES#M} |
phweiss | 27ee334 | 2016-02-08 16:40:45 +0100 | [diff] [blame] | 5425 | * @removed From {@link android.os.Build.VERSION_CODES#N} |
Jason Monk | 03978a4 | 2014-06-10 15:05:30 -0400 | [diff] [blame] | 5426 | */ |
Kenny Guy | 14f48e5 | 2015-06-29 15:12:36 +0100 | [diff] [blame] | 5427 | @Deprecated |
Makoto Onuki | 408e8e4 | 2016-10-25 12:10:27 -0700 | [diff] [blame] | 5428 | public @Nullable UserHandle createAndInitializeUser(@NonNull ComponentName admin, String name, |
Robin Lee | 25e2645 | 2015-06-02 09:56:29 -0700 | [diff] [blame] | 5429 | String ownerName, @NonNull ComponentName profileOwnerComponent, Bundle adminExtras) { |
Jason Monk | 03978a4 | 2014-06-10 15:05:30 -0400 | [diff] [blame] | 5430 | return null; |
| 5431 | } |
| 5432 | |
| 5433 | /** |
phweiss | a92e121 | 2016-01-25 17:14:10 +0100 | [diff] [blame] | 5434 | * Flag used by {@link #createAndManageUser} to skip setup wizard after creating a new user. |
phweiss | 343fb33 | 2016-01-25 14:48:59 +0100 | [diff] [blame] | 5435 | */ |
| 5436 | public static final int SKIP_SETUP_WIZARD = 0x0001; |
| 5437 | |
| 5438 | /** |
Lenka Trochtova | c8202c8 | 2016-01-26 15:11:09 +0100 | [diff] [blame] | 5439 | * Flag used by {@link #createAndManageUser} to specify that the user should be created |
| 5440 | * ephemeral. |
| 5441 | * @hide |
| 5442 | */ |
| 5443 | public static final int MAKE_USER_EPHEMERAL = 0x0002; |
| 5444 | |
| 5445 | /** |
phweiss | a92e121 | 2016-01-25 17:14:10 +0100 | [diff] [blame] | 5446 | * Called by a device owner to create a user with the specified name and a given component of |
| 5447 | * the calling package as profile owner. The UserHandle returned by this method should not be |
| 5448 | * persisted as user handles are recycled as users are removed and created. If you need to |
| 5449 | * persist an identifier for this user, use {@link UserManager#getSerialNumberForUser}. The new |
| 5450 | * user will not be started in the background. |
Suprabh Shukla | 34d92ef | 2016-03-14 13:49:37 -0700 | [diff] [blame] | 5451 | * <p> |
| 5452 | * admin is the {@link DeviceAdminReceiver} which is the device owner. profileOwner is also a |
| 5453 | * DeviceAdminReceiver in the same package as admin, and will become the profile owner and will |
| 5454 | * be registered as an active admin on the new user. The profile owner package will be installed |
| 5455 | * on the new user. |
| 5456 | * <p> |
| 5457 | * If the adminExtras are not null, they will be stored on the device until the user is started |
| 5458 | * for the first time. Then the extras will be passed to the admin when onEnable is called. |
phweiss | 343fb33 | 2016-01-25 14:48:59 +0100 | [diff] [blame] | 5459 | * |
| 5460 | * @param admin Which {@link DeviceAdminReceiver} this request is associated with. |
| 5461 | * @param name The user's name. |
phweiss | a92e121 | 2016-01-25 17:14:10 +0100 | [diff] [blame] | 5462 | * @param profileOwner Which {@link DeviceAdminReceiver} will be profile owner. Has to be in the |
Suprabh Shukla | 34d92ef | 2016-03-14 13:49:37 -0700 | [diff] [blame] | 5463 | * same package as admin, otherwise no user is created and an |
| 5464 | * IllegalArgumentException is thrown. |
phweiss | 343fb33 | 2016-01-25 14:48:59 +0100 | [diff] [blame] | 5465 | * @param adminExtras Extras that will be passed to onEnable of the admin receiver on the new |
Suprabh Shukla | 34d92ef | 2016-03-14 13:49:37 -0700 | [diff] [blame] | 5466 | * user. |
phweiss | a92e121 | 2016-01-25 17:14:10 +0100 | [diff] [blame] | 5467 | * @param flags {@link #SKIP_SETUP_WIZARD} is supported. |
phweiss | 343fb33 | 2016-01-25 14:48:59 +0100 | [diff] [blame] | 5468 | * @see UserHandle |
| 5469 | * @return the {@link android.os.UserHandle} object for the created user, or {@code null} if the |
| 5470 | * user could not be created. |
Suprabh Shukla | 34d92ef | 2016-03-14 13:49:37 -0700 | [diff] [blame] | 5471 | * @throws SecurityException if {@code admin} is not a device owner. |
phweiss | 343fb33 | 2016-01-25 14:48:59 +0100 | [diff] [blame] | 5472 | */ |
Makoto Onuki | 408e8e4 | 2016-10-25 12:10:27 -0700 | [diff] [blame] | 5473 | public @Nullable UserHandle createAndManageUser(@NonNull ComponentName admin, |
| 5474 | @NonNull String name, |
phweiss | a92e121 | 2016-01-25 17:14:10 +0100 | [diff] [blame] | 5475 | @NonNull ComponentName profileOwner, @Nullable PersistableBundle adminExtras, |
| 5476 | int flags) { |
Benjamin Franz | bc33c82 | 2016-04-15 08:57:52 +0100 | [diff] [blame] | 5477 | throwIfParentInstance("createAndManageUser"); |
phweiss | 343fb33 | 2016-01-25 14:48:59 +0100 | [diff] [blame] | 5478 | try { |
phweiss | a92e121 | 2016-01-25 17:14:10 +0100 | [diff] [blame] | 5479 | return mService.createAndManageUser(admin, name, profileOwner, adminExtras, flags); |
phweiss | 343fb33 | 2016-01-25 14:48:59 +0100 | [diff] [blame] | 5480 | } catch (RemoteException re) { |
Jeff Sharkey | dbff9ca | 2016-03-01 19:46:25 -0700 | [diff] [blame] | 5481 | throw re.rethrowFromSystemServer(); |
phweiss | 343fb33 | 2016-01-25 14:48:59 +0100 | [diff] [blame] | 5482 | } |
phweiss | 343fb33 | 2016-01-25 14:48:59 +0100 | [diff] [blame] | 5483 | } |
| 5484 | |
| 5485 | /** |
Suprabh Shukla | 34d92ef | 2016-03-14 13:49:37 -0700 | [diff] [blame] | 5486 | * Called by a device owner to remove a user and all associated data. The primary user can not |
| 5487 | * be removed. |
Julia Reynolds | 1e95839 | 2014-05-16 14:25:21 -0400 | [diff] [blame] | 5488 | * |
| 5489 | * @param admin Which {@link DeviceAdminReceiver} this request is associated with. |
| 5490 | * @param userHandle the user to remove. |
| 5491 | * @return {@code true} if the user was removed, {@code false} otherwise. |
Suprabh Shukla | 34d92ef | 2016-03-14 13:49:37 -0700 | [diff] [blame] | 5492 | * @throws SecurityException if {@code admin} is not a device owner. |
Julia Reynolds | 1e95839 | 2014-05-16 14:25:21 -0400 | [diff] [blame] | 5493 | */ |
Robin Lee | 25e2645 | 2015-06-02 09:56:29 -0700 | [diff] [blame] | 5494 | public boolean removeUser(@NonNull ComponentName admin, UserHandle userHandle) { |
Benjamin Franz | bc33c82 | 2016-04-15 08:57:52 +0100 | [diff] [blame] | 5495 | throwIfParentInstance("removeUser"); |
Julia Reynolds | 1e95839 | 2014-05-16 14:25:21 -0400 | [diff] [blame] | 5496 | try { |
| 5497 | return mService.removeUser(admin, userHandle); |
| 5498 | } catch (RemoteException re) { |
Jeff Sharkey | dbff9ca | 2016-03-01 19:46:25 -0700 | [diff] [blame] | 5499 | throw re.rethrowFromSystemServer(); |
Julia Reynolds | 1e95839 | 2014-05-16 14:25:21 -0400 | [diff] [blame] | 5500 | } |
| 5501 | } |
| 5502 | |
| 5503 | /** |
Jason Monk | 582d911 | 2014-07-09 19:57:08 -0400 | [diff] [blame] | 5504 | * Called by a device owner to switch the specified user to the foreground. |
| 5505 | * |
| 5506 | * @param admin Which {@link DeviceAdminReceiver} this request is associated with. |
| 5507 | * @param userHandle the user to switch to; null will switch to primary. |
| 5508 | * @return {@code true} if the switch was successful, {@code false} otherwise. |
Suprabh Shukla | 34d92ef | 2016-03-14 13:49:37 -0700 | [diff] [blame] | 5509 | * @throws SecurityException if {@code admin} is not a device owner. |
Jason Monk | 582d911 | 2014-07-09 19:57:08 -0400 | [diff] [blame] | 5510 | * @see Intent#ACTION_USER_FOREGROUND |
| 5511 | */ |
Robin Lee | 25e2645 | 2015-06-02 09:56:29 -0700 | [diff] [blame] | 5512 | public boolean switchUser(@NonNull ComponentName admin, @Nullable UserHandle userHandle) { |
Benjamin Franz | bc33c82 | 2016-04-15 08:57:52 +0100 | [diff] [blame] | 5513 | throwIfParentInstance("switchUser"); |
Jason Monk | 582d911 | 2014-07-09 19:57:08 -0400 | [diff] [blame] | 5514 | try { |
| 5515 | return mService.switchUser(admin, userHandle); |
| 5516 | } catch (RemoteException re) { |
Jeff Sharkey | dbff9ca | 2016-03-01 19:46:25 -0700 | [diff] [blame] | 5517 | throw re.rethrowFromSystemServer(); |
Jason Monk | 582d911 | 2014-07-09 19:57:08 -0400 | [diff] [blame] | 5518 | } |
| 5519 | } |
| 5520 | |
| 5521 | /** |
Esteban Talavera | bf60f72 | 2015-12-10 16:26:44 +0000 | [diff] [blame] | 5522 | * Retrieves the application restrictions for a given target application running in the calling |
| 5523 | * user. |
Suprabh Shukla | 34d92ef | 2016-03-14 13:49:37 -0700 | [diff] [blame] | 5524 | * <p> |
| 5525 | * The caller must be a profile or device owner on that user, or the package allowed to manage |
| 5526 | * application restrictions via {@link #setApplicationRestrictionsManagingPackage}; otherwise a |
| 5527 | * security exception will be thrown. |
Robin Lee | 66e5d96 | 2014-04-09 16:44:21 +0100 | [diff] [blame] | 5528 | * |
Fyodor Kupolov | 4e9af06 | 2016-07-18 16:59:11 -0700 | [diff] [blame] | 5529 | * <p>NOTE: The method performs disk I/O and shouldn't be called on the main thread |
| 5530 | * |
Esteban Talavera | bf60f72 | 2015-12-10 16:26:44 +0000 | [diff] [blame] | 5531 | * @param admin Which {@link DeviceAdminReceiver} this request is associated with, or |
Suprabh Shukla | 34d92ef | 2016-03-14 13:49:37 -0700 | [diff] [blame] | 5532 | * {@code null} if called by the application restrictions managing package. |
Robin Lee | 66e5d96 | 2014-04-09 16:44:21 +0100 | [diff] [blame] | 5533 | * @param packageName The name of the package to fetch restricted settings of. |
| 5534 | * @return {@link Bundle} of settings corresponding to what was set last time |
Suprabh Shukla | 34d92ef | 2016-03-14 13:49:37 -0700 | [diff] [blame] | 5535 | * {@link DevicePolicyManager#setApplicationRestrictions} was called, or an empty |
| 5536 | * {@link Bundle} if no restrictions have been set. |
| 5537 | * @throws SecurityException if {@code admin} is not a device or profile owner. |
Pavel Grafov | d65799e | 2016-12-02 11:21:45 +0000 | [diff] [blame] | 5538 | * @see #setApplicationRestrictionsManagingPackage |
Robin Lee | 66e5d96 | 2014-04-09 16:44:21 +0100 | [diff] [blame] | 5539 | */ |
Fyodor Kupolov | 4e9af06 | 2016-07-18 16:59:11 -0700 | [diff] [blame] | 5540 | @WorkerThread |
Makoto Onuki | 408e8e4 | 2016-10-25 12:10:27 -0700 | [diff] [blame] | 5541 | public @NonNull Bundle getApplicationRestrictions( |
| 5542 | @Nullable ComponentName admin, String packageName) { |
Benjamin Franz | bc33c82 | 2016-04-15 08:57:52 +0100 | [diff] [blame] | 5543 | throwIfParentInstance("getApplicationRestrictions"); |
Robin Lee | 66e5d96 | 2014-04-09 16:44:21 +0100 | [diff] [blame] | 5544 | if (mService != null) { |
| 5545 | try { |
| 5546 | return mService.getApplicationRestrictions(admin, packageName); |
| 5547 | } catch (RemoteException e) { |
Jeff Sharkey | dbff9ca | 2016-03-01 19:46:25 -0700 | [diff] [blame] | 5548 | throw e.rethrowFromSystemServer(); |
Robin Lee | 66e5d96 | 2014-04-09 16:44:21 +0100 | [diff] [blame] | 5549 | } |
| 5550 | } |
| 5551 | return null; |
| 5552 | } |
Amith Yamasani | be46532 | 2014-04-24 13:45:17 -0700 | [diff] [blame] | 5553 | |
| 5554 | /** |
Julia Reynolds | 20118f1 | 2015-02-11 12:34:08 -0500 | [diff] [blame] | 5555 | * Called by a profile or device owner to set a user restriction specified by the key. |
Amith Yamasani | be46532 | 2014-04-24 13:45:17 -0700 | [diff] [blame] | 5556 | * <p> |
Suprabh Shukla | 34d92ef | 2016-03-14 13:49:37 -0700 | [diff] [blame] | 5557 | * The calling device admin must be a profile or device owner; if it is not, a security |
| 5558 | * exception will be thrown. |
Jim Miller | df2258b | 2014-04-27 20:10:26 -0700 | [diff] [blame] | 5559 | * |
Suprabh Shukla | 34d92ef | 2016-03-14 13:49:37 -0700 | [diff] [blame] | 5560 | * @param admin Which {@link DeviceAdminReceiver} this request is associated with. |
| 5561 | * @param key The key of the restriction. See the constants in {@link android.os.UserManager} |
| 5562 | * for the list of keys. |
| 5563 | * @throws SecurityException if {@code admin} is not a device or profile owner. |
Amith Yamasani | be46532 | 2014-04-24 13:45:17 -0700 | [diff] [blame] | 5564 | */ |
Robin Lee | 25e2645 | 2015-06-02 09:56:29 -0700 | [diff] [blame] | 5565 | public void addUserRestriction(@NonNull ComponentName admin, String key) { |
Benjamin Franz | bc33c82 | 2016-04-15 08:57:52 +0100 | [diff] [blame] | 5566 | throwIfParentInstance("addUserRestriction"); |
Amith Yamasani | be46532 | 2014-04-24 13:45:17 -0700 | [diff] [blame] | 5567 | if (mService != null) { |
| 5568 | try { |
| 5569 | mService.setUserRestriction(admin, key, true); |
| 5570 | } catch (RemoteException e) { |
Jeff Sharkey | dbff9ca | 2016-03-01 19:46:25 -0700 | [diff] [blame] | 5571 | throw e.rethrowFromSystemServer(); |
Amith Yamasani | be46532 | 2014-04-24 13:45:17 -0700 | [diff] [blame] | 5572 | } |
| 5573 | } |
| 5574 | } |
| 5575 | |
| 5576 | /** |
Julia Reynolds | 20118f1 | 2015-02-11 12:34:08 -0500 | [diff] [blame] | 5577 | * Called by a profile or device owner to clear a user restriction specified by the key. |
Amith Yamasani | be46532 | 2014-04-24 13:45:17 -0700 | [diff] [blame] | 5578 | * <p> |
Suprabh Shukla | 34d92ef | 2016-03-14 13:49:37 -0700 | [diff] [blame] | 5579 | * The calling device admin must be a profile or device owner; if it is not, a security |
| 5580 | * exception will be thrown. |
Jim Miller | df2258b | 2014-04-27 20:10:26 -0700 | [diff] [blame] | 5581 | * |
Suprabh Shukla | 34d92ef | 2016-03-14 13:49:37 -0700 | [diff] [blame] | 5582 | * @param admin Which {@link DeviceAdminReceiver} this request is associated with. |
| 5583 | * @param key The key of the restriction. See the constants in {@link android.os.UserManager} |
| 5584 | * for the list of keys. |
| 5585 | * @throws SecurityException if {@code admin} is not a device or profile owner. |
Amith Yamasani | be46532 | 2014-04-24 13:45:17 -0700 | [diff] [blame] | 5586 | */ |
Robin Lee | 25e2645 | 2015-06-02 09:56:29 -0700 | [diff] [blame] | 5587 | public void clearUserRestriction(@NonNull ComponentName admin, String key) { |
Benjamin Franz | bc33c82 | 2016-04-15 08:57:52 +0100 | [diff] [blame] | 5588 | throwIfParentInstance("clearUserRestriction"); |
Amith Yamasani | be46532 | 2014-04-24 13:45:17 -0700 | [diff] [blame] | 5589 | if (mService != null) { |
| 5590 | try { |
| 5591 | mService.setUserRestriction(admin, key, false); |
| 5592 | } catch (RemoteException e) { |
Jeff Sharkey | dbff9ca | 2016-03-01 19:46:25 -0700 | [diff] [blame] | 5593 | throw e.rethrowFromSystemServer(); |
Amith Yamasani | be46532 | 2014-04-24 13:45:17 -0700 | [diff] [blame] | 5594 | } |
| 5595 | } |
| 5596 | } |
Adam Connors | 010cfd4 | 2014-04-16 12:48:13 +0100 | [diff] [blame] | 5597 | |
| 5598 | /** |
Makoto Onuki | 3a3092f | 2015-10-30 11:07:51 -0700 | [diff] [blame] | 5599 | * Called by a profile or device owner to get user restrictions set with |
| 5600 | * {@link #addUserRestriction(ComponentName, String)}. |
| 5601 | * <p> |
| 5602 | * The target user may have more restrictions set by the system or other device owner / profile |
Suprabh Shukla | 34d92ef | 2016-03-14 13:49:37 -0700 | [diff] [blame] | 5603 | * owner. To get all the user restrictions currently set, use |
Makoto Onuki | 3a3092f | 2015-10-30 11:07:51 -0700 | [diff] [blame] | 5604 | * {@link UserManager#getUserRestrictions()}. |
| 5605 | * |
| 5606 | * @param admin Which {@link DeviceAdminReceiver} this request is associated with. |
Suprabh Shukla | 34d92ef | 2016-03-14 13:49:37 -0700 | [diff] [blame] | 5607 | * @throws SecurityException if {@code admin} is not a device or profile owner. |
Makoto Onuki | 3a3092f | 2015-10-30 11:07:51 -0700 | [diff] [blame] | 5608 | */ |
Makoto Onuki | 408e8e4 | 2016-10-25 12:10:27 -0700 | [diff] [blame] | 5609 | public @NonNull Bundle getUserRestrictions(@NonNull ComponentName admin) { |
Benjamin Franz | bc33c82 | 2016-04-15 08:57:52 +0100 | [diff] [blame] | 5610 | throwIfParentInstance("getUserRestrictions"); |
Makoto Onuki | 3a3092f | 2015-10-30 11:07:51 -0700 | [diff] [blame] | 5611 | Bundle ret = null; |
| 5612 | if (mService != null) { |
| 5613 | try { |
Sudheer Shanka | 549b969 | 2016-03-30 17:12:07 -0700 | [diff] [blame] | 5614 | ret = mService.getUserRestrictions(admin); |
| 5615 | } catch (RemoteException e) { |
| 5616 | throw e.rethrowFromSystemServer(); |
| 5617 | } |
| 5618 | } |
| 5619 | return ret == null ? new Bundle() : ret; |
| 5620 | } |
| 5621 | |
| 5622 | /** |
Suprabh Shukla | 34d92ef | 2016-03-14 13:49:37 -0700 | [diff] [blame] | 5623 | * Called by profile or device owners to hide or unhide packages. When a package is hidden it is |
| 5624 | * unavailable for use, but the data and actual package file remain. |
Julia Reynolds | 966881e | 2014-05-14 12:23:08 -0400 | [diff] [blame] | 5625 | * |
| 5626 | * @param admin Which {@link DeviceAdminReceiver} this request is associated with. |
Amith Yamasani | e5bcff6 | 2014-07-19 15:44:09 -0700 | [diff] [blame] | 5627 | * @param packageName The name of the package to hide or unhide. |
| 5628 | * @param hidden {@code true} if the package should be hidden, {@code false} if it should be |
Suprabh Shukla | 34d92ef | 2016-03-14 13:49:37 -0700 | [diff] [blame] | 5629 | * unhidden. |
Amith Yamasani | e5bcff6 | 2014-07-19 15:44:09 -0700 | [diff] [blame] | 5630 | * @return boolean Whether the hidden setting of the package was successfully updated. |
Suprabh Shukla | 34d92ef | 2016-03-14 13:49:37 -0700 | [diff] [blame] | 5631 | * @throws SecurityException if {@code admin} is not a device or profile owner. |
Julia Reynolds | 966881e | 2014-05-14 12:23:08 -0400 | [diff] [blame] | 5632 | */ |
Robin Lee | 25e2645 | 2015-06-02 09:56:29 -0700 | [diff] [blame] | 5633 | public boolean setApplicationHidden(@NonNull ComponentName admin, String packageName, |
Amith Yamasani | e5bcff6 | 2014-07-19 15:44:09 -0700 | [diff] [blame] | 5634 | boolean hidden) { |
Benjamin Franz | bc33c82 | 2016-04-15 08:57:52 +0100 | [diff] [blame] | 5635 | throwIfParentInstance("setApplicationHidden"); |
Julia Reynolds | 966881e | 2014-05-14 12:23:08 -0400 | [diff] [blame] | 5636 | if (mService != null) { |
| 5637 | try { |
Amith Yamasani | e5bcff6 | 2014-07-19 15:44:09 -0700 | [diff] [blame] | 5638 | return mService.setApplicationHidden(admin, packageName, hidden); |
Julia Reynolds | 966881e | 2014-05-14 12:23:08 -0400 | [diff] [blame] | 5639 | } catch (RemoteException e) { |
Jeff Sharkey | dbff9ca | 2016-03-01 19:46:25 -0700 | [diff] [blame] | 5640 | throw e.rethrowFromSystemServer(); |
Julia Reynolds | 966881e | 2014-05-14 12:23:08 -0400 | [diff] [blame] | 5641 | } |
| 5642 | } |
| 5643 | return false; |
| 5644 | } |
| 5645 | |
| 5646 | /** |
Julia Reynolds | 20118f1 | 2015-02-11 12:34:08 -0500 | [diff] [blame] | 5647 | * Called by profile or device owners to determine if a package is hidden. |
Julia Reynolds | 966881e | 2014-05-14 12:23:08 -0400 | [diff] [blame] | 5648 | * |
| 5649 | * @param admin Which {@link DeviceAdminReceiver} this request is associated with. |
Amith Yamasani | e5bcff6 | 2014-07-19 15:44:09 -0700 | [diff] [blame] | 5650 | * @param packageName The name of the package to retrieve the hidden status of. |
| 5651 | * @return boolean {@code true} if the package is hidden, {@code false} otherwise. |
Suprabh Shukla | 34d92ef | 2016-03-14 13:49:37 -0700 | [diff] [blame] | 5652 | * @throws SecurityException if {@code admin} is not a device or profile owner. |
Julia Reynolds | 966881e | 2014-05-14 12:23:08 -0400 | [diff] [blame] | 5653 | */ |
Robin Lee | 25e2645 | 2015-06-02 09:56:29 -0700 | [diff] [blame] | 5654 | public boolean isApplicationHidden(@NonNull ComponentName admin, String packageName) { |
Benjamin Franz | bc33c82 | 2016-04-15 08:57:52 +0100 | [diff] [blame] | 5655 | throwIfParentInstance("isApplicationHidden"); |
Julia Reynolds | 966881e | 2014-05-14 12:23:08 -0400 | [diff] [blame] | 5656 | if (mService != null) { |
| 5657 | try { |
Amith Yamasani | e5bcff6 | 2014-07-19 15:44:09 -0700 | [diff] [blame] | 5658 | return mService.isApplicationHidden(admin, packageName); |
Julia Reynolds | 966881e | 2014-05-14 12:23:08 -0400 | [diff] [blame] | 5659 | } catch (RemoteException e) { |
Jeff Sharkey | dbff9ca | 2016-03-01 19:46:25 -0700 | [diff] [blame] | 5660 | throw e.rethrowFromSystemServer(); |
Julia Reynolds | 966881e | 2014-05-14 12:23:08 -0400 | [diff] [blame] | 5661 | } |
| 5662 | } |
| 5663 | return false; |
| 5664 | } |
| 5665 | |
| 5666 | /** |
Julia Reynolds | 20118f1 | 2015-02-11 12:34:08 -0500 | [diff] [blame] | 5667 | * Called by profile or device owners to re-enable a system app that was disabled by default |
Amith Yamasani | c34dc7c | 2014-09-18 09:42:42 -0700 | [diff] [blame] | 5668 | * when the user was initialized. |
Adam Connors | 655be2a | 2014-07-14 09:01:25 +0000 | [diff] [blame] | 5669 | * |
| 5670 | * @param admin Which {@link DeviceAdminReceiver} this request is associated with. |
Makoto Onuki | 32b3057 | 2015-12-11 14:29:51 -0800 | [diff] [blame] | 5671 | * @param packageName The package to be re-enabled in the calling profile. |
Suprabh Shukla | 34d92ef | 2016-03-14 13:49:37 -0700 | [diff] [blame] | 5672 | * @throws SecurityException if {@code admin} is not a device or profile owner. |
Adam Connors | 655be2a | 2014-07-14 09:01:25 +0000 | [diff] [blame] | 5673 | */ |
Robin Lee | 25e2645 | 2015-06-02 09:56:29 -0700 | [diff] [blame] | 5674 | public void enableSystemApp(@NonNull ComponentName admin, String packageName) { |
Benjamin Franz | bc33c82 | 2016-04-15 08:57:52 +0100 | [diff] [blame] | 5675 | throwIfParentInstance("enableSystemApp"); |
Adam Connors | 655be2a | 2014-07-14 09:01:25 +0000 | [diff] [blame] | 5676 | if (mService != null) { |
| 5677 | try { |
| 5678 | mService.enableSystemApp(admin, packageName); |
| 5679 | } catch (RemoteException e) { |
Jeff Sharkey | dbff9ca | 2016-03-01 19:46:25 -0700 | [diff] [blame] | 5680 | throw e.rethrowFromSystemServer(); |
Adam Connors | 655be2a | 2014-07-14 09:01:25 +0000 | [diff] [blame] | 5681 | } |
| 5682 | } |
| 5683 | } |
| 5684 | |
| 5685 | /** |
Suprabh Shukla | 34d92ef | 2016-03-14 13:49:37 -0700 | [diff] [blame] | 5686 | * Called by profile or device owners to re-enable system apps by intent that were disabled by |
| 5687 | * default when the user was initialized. |
Adam Connors | 655be2a | 2014-07-14 09:01:25 +0000 | [diff] [blame] | 5688 | * |
| 5689 | * @param admin Which {@link DeviceAdminReceiver} this request is associated with. |
| 5690 | * @param intent An intent matching the app(s) to be installed. All apps that resolve for this |
Suprabh Shukla | 34d92ef | 2016-03-14 13:49:37 -0700 | [diff] [blame] | 5691 | * intent will be re-enabled in the calling profile. |
Adam Connors | 655be2a | 2014-07-14 09:01:25 +0000 | [diff] [blame] | 5692 | * @return int The number of activities that matched the intent and were installed. |
Suprabh Shukla | 34d92ef | 2016-03-14 13:49:37 -0700 | [diff] [blame] | 5693 | * @throws SecurityException if {@code admin} is not a device or profile owner. |
Adam Connors | 655be2a | 2014-07-14 09:01:25 +0000 | [diff] [blame] | 5694 | */ |
Robin Lee | 25e2645 | 2015-06-02 09:56:29 -0700 | [diff] [blame] | 5695 | public int enableSystemApp(@NonNull ComponentName admin, Intent intent) { |
Benjamin Franz | bc33c82 | 2016-04-15 08:57:52 +0100 | [diff] [blame] | 5696 | throwIfParentInstance("enableSystemApp"); |
Adam Connors | 655be2a | 2014-07-14 09:01:25 +0000 | [diff] [blame] | 5697 | if (mService != null) { |
| 5698 | try { |
| 5699 | return mService.enableSystemAppWithIntent(admin, intent); |
| 5700 | } catch (RemoteException e) { |
Jeff Sharkey | dbff9ca | 2016-03-01 19:46:25 -0700 | [diff] [blame] | 5701 | throw e.rethrowFromSystemServer(); |
Adam Connors | 655be2a | 2014-07-14 09:01:25 +0000 | [diff] [blame] | 5702 | } |
| 5703 | } |
| 5704 | return 0; |
| 5705 | } |
| 5706 | |
| 5707 | /** |
Sander Alewijnse | 112e053 | 2014-10-29 13:28:49 +0000 | [diff] [blame] | 5708 | * Called by a device owner or profile owner to disable account management for a specific type |
| 5709 | * of account. |
Suprabh Shukla | 34d92ef | 2016-03-14 13:49:37 -0700 | [diff] [blame] | 5710 | * <p> |
| 5711 | * The calling device admin must be a device owner or profile owner. If it is not, a security |
| 5712 | * exception will be thrown. |
| 5713 | * <p> |
| 5714 | * When account management is disabled for an account type, adding or removing an account of |
| 5715 | * that type will not be possible. |
| 5716 | * <p> |
| 5717 | * From {@link android.os.Build.VERSION_CODES#N} the profile or device owner can still use |
Benjamin Franz | b6c0ce4 | 2015-11-05 10:06:51 +0000 | [diff] [blame] | 5718 | * {@link android.accounts.AccountManager} APIs to add or remove accounts when account |
| 5719 | * management for a specific type is disabled. |
| 5720 | * |
Sander Alewijnse | 650c334 | 2014-05-08 18:00:50 +0100 | [diff] [blame] | 5721 | * @param admin Which {@link DeviceAdminReceiver} this request is associated with. |
| 5722 | * @param accountType For which account management is disabled or enabled. |
| 5723 | * @param disabled The boolean indicating that account management will be disabled (true) or |
Suprabh Shukla | 34d92ef | 2016-03-14 13:49:37 -0700 | [diff] [blame] | 5724 | * enabled (false). |
| 5725 | * @throws SecurityException if {@code admin} is not a device or profile owner. |
Sander Alewijnse | 650c334 | 2014-05-08 18:00:50 +0100 | [diff] [blame] | 5726 | */ |
Robin Lee | 25e2645 | 2015-06-02 09:56:29 -0700 | [diff] [blame] | 5727 | public void setAccountManagementDisabled(@NonNull ComponentName admin, String accountType, |
Sander Alewijnse | 650c334 | 2014-05-08 18:00:50 +0100 | [diff] [blame] | 5728 | boolean disabled) { |
Benjamin Franz | bc33c82 | 2016-04-15 08:57:52 +0100 | [diff] [blame] | 5729 | throwIfParentInstance("setAccountManagementDisabled"); |
Sander Alewijnse | 650c334 | 2014-05-08 18:00:50 +0100 | [diff] [blame] | 5730 | if (mService != null) { |
| 5731 | try { |
| 5732 | mService.setAccountManagementDisabled(admin, accountType, disabled); |
| 5733 | } catch (RemoteException e) { |
Jeff Sharkey | dbff9ca | 2016-03-01 19:46:25 -0700 | [diff] [blame] | 5734 | throw e.rethrowFromSystemServer(); |
Sander Alewijnse | 650c334 | 2014-05-08 18:00:50 +0100 | [diff] [blame] | 5735 | } |
| 5736 | } |
| 5737 | } |
| 5738 | |
| 5739 | /** |
Sander Alewijnse | 5c02db6 | 2014-05-07 10:46:57 +0100 | [diff] [blame] | 5740 | * Gets the array of accounts for which account management is disabled by the profile owner. |
| 5741 | * |
| 5742 | * <p> Account management can be disabled/enabled by calling |
| 5743 | * {@link #setAccountManagementDisabled}. |
| 5744 | * |
| 5745 | * @return a list of account types for which account management has been disabled. |
| 5746 | * |
| 5747 | * @see #setAccountManagementDisabled |
| 5748 | */ |
Makoto Onuki | 408e8e4 | 2016-10-25 12:10:27 -0700 | [diff] [blame] | 5749 | public @Nullable String[] getAccountTypesWithManagementDisabled() { |
Benjamin Franz | bc33c82 | 2016-04-15 08:57:52 +0100 | [diff] [blame] | 5750 | throwIfParentInstance("getAccountTypesWithManagementDisabled"); |
Makoto Onuki | cc4bbeb | 2015-09-17 10:28:24 -0700 | [diff] [blame] | 5751 | return getAccountTypesWithManagementDisabledAsUser(myUserId()); |
Alexandra Gherghina | 999d394 | 2014-07-03 11:40:08 +0100 | [diff] [blame] | 5752 | } |
| 5753 | |
| 5754 | /** |
| 5755 | * @see #getAccountTypesWithManagementDisabled() |
| 5756 | * @hide |
| 5757 | */ |
Makoto Onuki | 408e8e4 | 2016-10-25 12:10:27 -0700 | [diff] [blame] | 5758 | public @Nullable String[] getAccountTypesWithManagementDisabledAsUser(int userId) { |
Sander Alewijnse | 5c02db6 | 2014-05-07 10:46:57 +0100 | [diff] [blame] | 5759 | if (mService != null) { |
| 5760 | try { |
Alexandra Gherghina | 999d394 | 2014-07-03 11:40:08 +0100 | [diff] [blame] | 5761 | return mService.getAccountTypesWithManagementDisabledAsUser(userId); |
Sander Alewijnse | 5c02db6 | 2014-05-07 10:46:57 +0100 | [diff] [blame] | 5762 | } catch (RemoteException e) { |
Jeff Sharkey | dbff9ca | 2016-03-01 19:46:25 -0700 | [diff] [blame] | 5763 | throw e.rethrowFromSystemServer(); |
Sander Alewijnse | 5c02db6 | 2014-05-07 10:46:57 +0100 | [diff] [blame] | 5764 | } |
| 5765 | } |
| 5766 | |
| 5767 | return null; |
| 5768 | } |
justinzhang | 511e0d8 | 2014-03-24 16:09:24 -0400 | [diff] [blame] | 5769 | |
| 5770 | /** |
Jason Monk | d7b8621 | 2014-06-16 13:15:38 -0400 | [diff] [blame] | 5771 | * Sets which packages may enter lock task mode. |
Suprabh Shukla | 34d92ef | 2016-03-14 13:49:37 -0700 | [diff] [blame] | 5772 | * <p> |
| 5773 | * Any packages that shares uid with an allowed package will also be allowed to activate lock |
| 5774 | * task. From {@link android.os.Build.VERSION_CODES#M} removing packages from the lock task |
| 5775 | * package list results in locked tasks belonging to those packages to be finished. This |
| 5776 | * function can only be called by the device owner. |
Jason Monk | d7b8621 | 2014-06-16 13:15:38 -0400 | [diff] [blame] | 5777 | * |
Jason Monk | d7b8621 | 2014-06-16 13:15:38 -0400 | [diff] [blame] | 5778 | * @param packages The list of packages allowed to enter lock task mode |
Jason Monk | 48aacba | 2014-08-13 16:29:08 -0400 | [diff] [blame] | 5779 | * @param admin Which {@link DeviceAdminReceiver} this request is associated with. |
Suprabh Shukla | 34d92ef | 2016-03-14 13:49:37 -0700 | [diff] [blame] | 5780 | * @throws SecurityException if {@code admin} is not a device owner. |
Jason Monk | d7b8621 | 2014-06-16 13:15:38 -0400 | [diff] [blame] | 5781 | * @see Activity#startLockTask() |
Benjamin Franz | 6cdb27e | 2015-02-26 12:26:53 +0000 | [diff] [blame] | 5782 | * @see DeviceAdminReceiver#onLockTaskModeEntering(Context, Intent, String) |
| 5783 | * @see DeviceAdminReceiver#onLockTaskModeExiting(Context, Intent) |
Jason Monk | 1c7c319 | 2014-06-26 12:52:18 -0400 | [diff] [blame] | 5784 | * @see UserManager#DISALLOW_CREATE_WINDOWS |
justinzhang | 511e0d8 | 2014-03-24 16:09:24 -0400 | [diff] [blame] | 5785 | */ |
Robin Lee | 25e2645 | 2015-06-02 09:56:29 -0700 | [diff] [blame] | 5786 | public void setLockTaskPackages(@NonNull ComponentName admin, String[] packages) |
Jason Monk | 48aacba | 2014-08-13 16:29:08 -0400 | [diff] [blame] | 5787 | throws SecurityException { |
Benjamin Franz | bc33c82 | 2016-04-15 08:57:52 +0100 | [diff] [blame] | 5788 | throwIfParentInstance("setLockTaskPackages"); |
justinzhang | 511e0d8 | 2014-03-24 16:09:24 -0400 | [diff] [blame] | 5789 | if (mService != null) { |
| 5790 | try { |
Jason Monk | 48aacba | 2014-08-13 16:29:08 -0400 | [diff] [blame] | 5791 | mService.setLockTaskPackages(admin, packages); |
justinzhang | 511e0d8 | 2014-03-24 16:09:24 -0400 | [diff] [blame] | 5792 | } catch (RemoteException e) { |
Jeff Sharkey | dbff9ca | 2016-03-01 19:46:25 -0700 | [diff] [blame] | 5793 | throw e.rethrowFromSystemServer(); |
justinzhang | 511e0d8 | 2014-03-24 16:09:24 -0400 | [diff] [blame] | 5794 | } |
| 5795 | } |
| 5796 | } |
| 5797 | |
| 5798 | /** |
Jason Monk | d7b8621 | 2014-06-16 13:15:38 -0400 | [diff] [blame] | 5799 | * This function returns the list of packages allowed to start the lock task mode. |
Jason Monk | 48aacba | 2014-08-13 16:29:08 -0400 | [diff] [blame] | 5800 | * |
| 5801 | * @param admin Which {@link DeviceAdminReceiver} this request is associated with. |
justinzhang | 511e0d8 | 2014-03-24 16:09:24 -0400 | [diff] [blame] | 5802 | * @hide |
| 5803 | */ |
Makoto Onuki | 408e8e4 | 2016-10-25 12:10:27 -0700 | [diff] [blame] | 5804 | public @NonNull String[] getLockTaskPackages(@NonNull ComponentName admin) { |
Benjamin Franz | bc33c82 | 2016-04-15 08:57:52 +0100 | [diff] [blame] | 5805 | throwIfParentInstance("getLockTaskPackages"); |
justinzhang | 511e0d8 | 2014-03-24 16:09:24 -0400 | [diff] [blame] | 5806 | if (mService != null) { |
| 5807 | try { |
Jason Monk | 48aacba | 2014-08-13 16:29:08 -0400 | [diff] [blame] | 5808 | return mService.getLockTaskPackages(admin); |
justinzhang | 511e0d8 | 2014-03-24 16:09:24 -0400 | [diff] [blame] | 5809 | } catch (RemoteException e) { |
Jeff Sharkey | dbff9ca | 2016-03-01 19:46:25 -0700 | [diff] [blame] | 5810 | throw e.rethrowFromSystemServer(); |
justinzhang | 511e0d8 | 2014-03-24 16:09:24 -0400 | [diff] [blame] | 5811 | } |
| 5812 | } |
| 5813 | return null; |
| 5814 | } |
| 5815 | |
| 5816 | /** |
| 5817 | * This function lets the caller know whether the given component is allowed to start the |
| 5818 | * lock task mode. |
Jason Monk | d7b8621 | 2014-06-16 13:15:38 -0400 | [diff] [blame] | 5819 | * @param pkg The package to check |
justinzhang | 511e0d8 | 2014-03-24 16:09:24 -0400 | [diff] [blame] | 5820 | */ |
Jason Monk | d7b8621 | 2014-06-16 13:15:38 -0400 | [diff] [blame] | 5821 | public boolean isLockTaskPermitted(String pkg) { |
Benjamin Franz | bc33c82 | 2016-04-15 08:57:52 +0100 | [diff] [blame] | 5822 | throwIfParentInstance("isLockTaskPermitted"); |
justinzhang | 511e0d8 | 2014-03-24 16:09:24 -0400 | [diff] [blame] | 5823 | if (mService != null) { |
| 5824 | try { |
Jason Monk | d7b8621 | 2014-06-16 13:15:38 -0400 | [diff] [blame] | 5825 | return mService.isLockTaskPermitted(pkg); |
justinzhang | 511e0d8 | 2014-03-24 16:09:24 -0400 | [diff] [blame] | 5826 | } catch (RemoteException e) { |
Jeff Sharkey | dbff9ca | 2016-03-01 19:46:25 -0700 | [diff] [blame] | 5827 | throw e.rethrowFromSystemServer(); |
justinzhang | 511e0d8 | 2014-03-24 16:09:24 -0400 | [diff] [blame] | 5828 | } |
| 5829 | } |
| 5830 | return false; |
| 5831 | } |
Julia Reynolds | da55165 | 2014-05-14 17:15:16 -0400 | [diff] [blame] | 5832 | |
| 5833 | /** |
| 5834 | * Called by device owners to update {@link Settings.Global} settings. Validation that the value |
| 5835 | * of the setting is in the correct form for the setting type should be performed by the caller. |
Suprabh Shukla | 34d92ef | 2016-03-14 13:49:37 -0700 | [diff] [blame] | 5836 | * <p> |
| 5837 | * The settings that can be updated with this method are: |
Julia Reynolds | 9ed66da | 2014-08-26 15:42:03 -0400 | [diff] [blame] | 5838 | * <ul> |
| 5839 | * <li>{@link Settings.Global#ADB_ENABLED}</li> |
| 5840 | * <li>{@link Settings.Global#AUTO_TIME}</li> |
| 5841 | * <li>{@link Settings.Global#AUTO_TIME_ZONE}</li> |
Julia Reynolds | 9ed66da | 2014-08-26 15:42:03 -0400 | [diff] [blame] | 5842 | * <li>{@link Settings.Global#DATA_ROAMING}</li> |
Julia Reynolds | 9ed66da | 2014-08-26 15:42:03 -0400 | [diff] [blame] | 5843 | * <li>{@link Settings.Global#USB_MASS_STORAGE_ENABLED}</li> |
Julia Reynolds | 9ed66da | 2014-08-26 15:42:03 -0400 | [diff] [blame] | 5844 | * <li>{@link Settings.Global#WIFI_SLEEP_POLICY}</li> |
Suprabh Shukla | 34d92ef | 2016-03-14 13:49:37 -0700 | [diff] [blame] | 5845 | * <li>{@link Settings.Global#STAY_ON_WHILE_PLUGGED_IN} This setting is only available from |
| 5846 | * {@link android.os.Build.VERSION_CODES#M} onwards and can only be set if |
| 5847 | * {@link #setMaximumTimeToLock} is not used to set a timeout.</li> |
| 5848 | * <li>{@link Settings.Global#WIFI_DEVICE_OWNER_CONFIGS_LOCKDOWN}</li> This setting is only |
| 5849 | * available from {@link android.os.Build.VERSION_CODES#M} onwards.</li> |
Julia Reynolds | 9ed66da | 2014-08-26 15:42:03 -0400 | [diff] [blame] | 5850 | * </ul> |
Suprabh Shukla | 34d92ef | 2016-03-14 13:49:37 -0700 | [diff] [blame] | 5851 | * <p> |
| 5852 | * Changing the following settings has no effect as of {@link android.os.Build.VERSION_CODES#M}: |
Esteban Talavera | 656fa7f | 2015-06-29 17:41:39 +0100 | [diff] [blame] | 5853 | * <ul> |
Suprabh Shukla | 34d92ef | 2016-03-14 13:49:37 -0700 | [diff] [blame] | 5854 | * <li>{@link Settings.Global#BLUETOOTH_ON}. Use |
| 5855 | * {@link android.bluetooth.BluetoothAdapter#enable()} and |
| 5856 | * {@link android.bluetooth.BluetoothAdapter#disable()} instead.</li> |
Esteban Talavera | 656fa7f | 2015-06-29 17:41:39 +0100 | [diff] [blame] | 5857 | * <li>{@link Settings.Global#DEVELOPMENT_SETTINGS_ENABLED}</li> |
Suprabh Shukla | 34d92ef | 2016-03-14 13:49:37 -0700 | [diff] [blame] | 5858 | * <li>{@link Settings.Global#MODE_RINGER}. Use |
| 5859 | * {@link android.media.AudioManager#setRingerMode(int)} instead.</li> |
Esteban Talavera | 656fa7f | 2015-06-29 17:41:39 +0100 | [diff] [blame] | 5860 | * <li>{@link Settings.Global#NETWORK_PREFERENCE}</li> |
Suprabh Shukla | 34d92ef | 2016-03-14 13:49:37 -0700 | [diff] [blame] | 5861 | * <li>{@link Settings.Global#WIFI_ON}. Use |
| 5862 | * {@link android.net.wifi.WifiManager#setWifiEnabled(boolean)} instead.</li> |
Esteban Talavera | 656fa7f | 2015-06-29 17:41:39 +0100 | [diff] [blame] | 5863 | * </ul> |
Julia Reynolds | da55165 | 2014-05-14 17:15:16 -0400 | [diff] [blame] | 5864 | * |
| 5865 | * @param admin Which {@link DeviceAdminReceiver} this request is associated with. |
| 5866 | * @param setting The name of the setting to update. |
| 5867 | * @param value The value to update the setting to. |
Suprabh Shukla | 34d92ef | 2016-03-14 13:49:37 -0700 | [diff] [blame] | 5868 | * @throws SecurityException if {@code admin} is not a device owner. |
Julia Reynolds | da55165 | 2014-05-14 17:15:16 -0400 | [diff] [blame] | 5869 | */ |
Robin Lee | 25e2645 | 2015-06-02 09:56:29 -0700 | [diff] [blame] | 5870 | public void setGlobalSetting(@NonNull ComponentName admin, String setting, String value) { |
Benjamin Franz | bc33c82 | 2016-04-15 08:57:52 +0100 | [diff] [blame] | 5871 | throwIfParentInstance("setGlobalSetting"); |
Julia Reynolds | da55165 | 2014-05-14 17:15:16 -0400 | [diff] [blame] | 5872 | if (mService != null) { |
| 5873 | try { |
| 5874 | mService.setGlobalSetting(admin, setting, value); |
| 5875 | } catch (RemoteException e) { |
Jeff Sharkey | dbff9ca | 2016-03-01 19:46:25 -0700 | [diff] [blame] | 5876 | throw e.rethrowFromSystemServer(); |
Julia Reynolds | da55165 | 2014-05-14 17:15:16 -0400 | [diff] [blame] | 5877 | } |
| 5878 | } |
| 5879 | } |
| 5880 | |
| 5881 | /** |
| 5882 | * Called by profile or device owners to update {@link Settings.Secure} settings. Validation |
| 5883 | * that the value of the setting is in the correct form for the setting type should be performed |
| 5884 | * by the caller. |
Suprabh Shukla | 34d92ef | 2016-03-14 13:49:37 -0700 | [diff] [blame] | 5885 | * <p> |
| 5886 | * The settings that can be updated by a profile or device owner with this method are: |
Julia Reynolds | 9ed66da | 2014-08-26 15:42:03 -0400 | [diff] [blame] | 5887 | * <ul> |
| 5888 | * <li>{@link Settings.Secure#DEFAULT_INPUT_METHOD}</li> |
Amith Yamasani | 52c39a1 | 2014-10-21 11:14:04 -0700 | [diff] [blame] | 5889 | * <li>{@link Settings.Secure#INSTALL_NON_MARKET_APPS}</li> |
Julia Reynolds | 9ed66da | 2014-08-26 15:42:03 -0400 | [diff] [blame] | 5890 | * <li>{@link Settings.Secure#SKIP_FIRST_USE_HINTS}</li> |
| 5891 | * </ul> |
Suprabh Shukla | 34d92ef | 2016-03-14 13:49:37 -0700 | [diff] [blame] | 5892 | * <p> |
| 5893 | * A device owner can additionally update the following settings: |
Julia Reynolds | 82735bc | 2014-09-04 16:43:30 -0400 | [diff] [blame] | 5894 | * <ul> |
| 5895 | * <li>{@link Settings.Secure#LOCATION_MODE}</li> |
| 5896 | * </ul> |
Suprabh Shukla | 34d92ef | 2016-03-14 13:49:37 -0700 | [diff] [blame] | 5897 | * |
Julia Reynolds | da55165 | 2014-05-14 17:15:16 -0400 | [diff] [blame] | 5898 | * @param admin Which {@link DeviceAdminReceiver} this request is associated with. |
| 5899 | * @param setting The name of the setting to update. |
| 5900 | * @param value The value to update the setting to. |
Suprabh Shukla | 34d92ef | 2016-03-14 13:49:37 -0700 | [diff] [blame] | 5901 | * @throws SecurityException if {@code admin} is not a device or profile owner. |
Julia Reynolds | da55165 | 2014-05-14 17:15:16 -0400 | [diff] [blame] | 5902 | */ |
Robin Lee | 25e2645 | 2015-06-02 09:56:29 -0700 | [diff] [blame] | 5903 | public void setSecureSetting(@NonNull ComponentName admin, String setting, String value) { |
Benjamin Franz | bc33c82 | 2016-04-15 08:57:52 +0100 | [diff] [blame] | 5904 | throwIfParentInstance("setSecureSetting"); |
Julia Reynolds | da55165 | 2014-05-14 17:15:16 -0400 | [diff] [blame] | 5905 | if (mService != null) { |
| 5906 | try { |
| 5907 | mService.setSecureSetting(admin, setting, value); |
| 5908 | } catch (RemoteException e) { |
Jeff Sharkey | dbff9ca | 2016-03-01 19:46:25 -0700 | [diff] [blame] | 5909 | throw e.rethrowFromSystemServer(); |
Julia Reynolds | da55165 | 2014-05-14 17:15:16 -0400 | [diff] [blame] | 5910 | } |
| 5911 | } |
| 5912 | } |
| 5913 | |
Amith Yamasani | f20d640 | 2014-05-24 15:34:37 -0700 | [diff] [blame] | 5914 | /** |
Suprabh Shukla | 34d92ef | 2016-03-14 13:49:37 -0700 | [diff] [blame] | 5915 | * Designates a specific service component as the provider for making permission requests of a |
| 5916 | * local or remote administrator of the user. |
Amith Yamasani | f20d640 | 2014-05-24 15:34:37 -0700 | [diff] [blame] | 5917 | * <p/> |
| 5918 | * Only a profile owner can designate the restrictions provider. |
Suprabh Shukla | 34d92ef | 2016-03-14 13:49:37 -0700 | [diff] [blame] | 5919 | * |
Amith Yamasani | f20d640 | 2014-05-24 15:34:37 -0700 | [diff] [blame] | 5920 | * @param admin Which {@link DeviceAdminReceiver} this request is associated with. |
Amith Yamasani | f6e2fcc | 2014-07-10 13:41:55 -0700 | [diff] [blame] | 5921 | * @param provider The component name of the service that implements |
Suprabh Shukla | 34d92ef | 2016-03-14 13:49:37 -0700 | [diff] [blame] | 5922 | * {@link RestrictionsReceiver}. If this param is null, it removes the restrictions |
| 5923 | * provider previously assigned. |
| 5924 | * @throws SecurityException if {@code admin} is not a device or profile owner. |
Amith Yamasani | f20d640 | 2014-05-24 15:34:37 -0700 | [diff] [blame] | 5925 | */ |
Robin Lee | 25e2645 | 2015-06-02 09:56:29 -0700 | [diff] [blame] | 5926 | public void setRestrictionsProvider(@NonNull ComponentName admin, |
| 5927 | @Nullable ComponentName provider) { |
Benjamin Franz | bc33c82 | 2016-04-15 08:57:52 +0100 | [diff] [blame] | 5928 | throwIfParentInstance("setRestrictionsProvider"); |
Amith Yamasani | f20d640 | 2014-05-24 15:34:37 -0700 | [diff] [blame] | 5929 | if (mService != null) { |
| 5930 | try { |
Amith Yamasani | f6e2fcc | 2014-07-10 13:41:55 -0700 | [diff] [blame] | 5931 | mService.setRestrictionsProvider(admin, provider); |
Amith Yamasani | f20d640 | 2014-05-24 15:34:37 -0700 | [diff] [blame] | 5932 | } catch (RemoteException re) { |
Jeff Sharkey | dbff9ca | 2016-03-01 19:46:25 -0700 | [diff] [blame] | 5933 | throw re.rethrowFromSystemServer(); |
Amith Yamasani | f20d640 | 2014-05-24 15:34:37 -0700 | [diff] [blame] | 5934 | } |
| 5935 | } |
| 5936 | } |
Julia Reynolds | 4a21b25 | 2014-06-04 11:11:43 -0400 | [diff] [blame] | 5937 | |
| 5938 | /** |
| 5939 | * Called by profile or device owners to set the master volume mute on or off. |
Nicolas Prevot | aef3ce2 | 2016-09-22 12:00:25 +0100 | [diff] [blame] | 5940 | * This has no effect when set on a managed profile. |
Julia Reynolds | 4a21b25 | 2014-06-04 11:11:43 -0400 | [diff] [blame] | 5941 | * |
| 5942 | * @param admin Which {@link DeviceAdminReceiver} this request is associated with. |
| 5943 | * @param on {@code true} to mute master volume, {@code false} to turn mute off. |
Suprabh Shukla | 34d92ef | 2016-03-14 13:49:37 -0700 | [diff] [blame] | 5944 | * @throws SecurityException if {@code admin} is not a device or profile owner. |
Julia Reynolds | 4a21b25 | 2014-06-04 11:11:43 -0400 | [diff] [blame] | 5945 | */ |
Robin Lee | 25e2645 | 2015-06-02 09:56:29 -0700 | [diff] [blame] | 5946 | public void setMasterVolumeMuted(@NonNull ComponentName admin, boolean on) { |
Benjamin Franz | bc33c82 | 2016-04-15 08:57:52 +0100 | [diff] [blame] | 5947 | throwIfParentInstance("setMasterVolumeMuted"); |
Julia Reynolds | 4a21b25 | 2014-06-04 11:11:43 -0400 | [diff] [blame] | 5948 | if (mService != null) { |
| 5949 | try { |
| 5950 | mService.setMasterVolumeMuted(admin, on); |
| 5951 | } catch (RemoteException re) { |
Jeff Sharkey | dbff9ca | 2016-03-01 19:46:25 -0700 | [diff] [blame] | 5952 | throw re.rethrowFromSystemServer(); |
Julia Reynolds | 4a21b25 | 2014-06-04 11:11:43 -0400 | [diff] [blame] | 5953 | } |
| 5954 | } |
| 5955 | } |
| 5956 | |
| 5957 | /** |
| 5958 | * Called by profile or device owners to check whether the master volume mute is on or off. |
| 5959 | * |
| 5960 | * @param admin Which {@link DeviceAdminReceiver} this request is associated with. |
| 5961 | * @return {@code true} if master volume is muted, {@code false} if it's not. |
Suprabh Shukla | 34d92ef | 2016-03-14 13:49:37 -0700 | [diff] [blame] | 5962 | * @throws SecurityException if {@code admin} is not a device or profile owner. |
Julia Reynolds | 4a21b25 | 2014-06-04 11:11:43 -0400 | [diff] [blame] | 5963 | */ |
Robin Lee | 25e2645 | 2015-06-02 09:56:29 -0700 | [diff] [blame] | 5964 | public boolean isMasterVolumeMuted(@NonNull ComponentName admin) { |
Benjamin Franz | bc33c82 | 2016-04-15 08:57:52 +0100 | [diff] [blame] | 5965 | throwIfParentInstance("isMasterVolumeMuted"); |
Julia Reynolds | 4a21b25 | 2014-06-04 11:11:43 -0400 | [diff] [blame] | 5966 | if (mService != null) { |
| 5967 | try { |
| 5968 | return mService.isMasterVolumeMuted(admin); |
| 5969 | } catch (RemoteException re) { |
Jeff Sharkey | dbff9ca | 2016-03-01 19:46:25 -0700 | [diff] [blame] | 5970 | throw re.rethrowFromSystemServer(); |
Julia Reynolds | 4a21b25 | 2014-06-04 11:11:43 -0400 | [diff] [blame] | 5971 | } |
| 5972 | } |
| 5973 | return false; |
| 5974 | } |
Kenny Guy | c13053b | 2014-05-29 14:17:17 +0100 | [diff] [blame] | 5975 | |
| 5976 | /** |
Suprabh Shukla | 34d92ef | 2016-03-14 13:49:37 -0700 | [diff] [blame] | 5977 | * Called by profile or device owners to change whether a user can uninstall a package. |
Kenny Guy | c13053b | 2014-05-29 14:17:17 +0100 | [diff] [blame] | 5978 | * |
| 5979 | * @param admin Which {@link DeviceAdminReceiver} this request is associated with. |
| 5980 | * @param packageName package to change. |
Esteban Talavera | d5c5c13 | 2014-08-20 11:35:57 +0100 | [diff] [blame] | 5981 | * @param uninstallBlocked true if the user shouldn't be able to uninstall the package. |
Suprabh Shukla | 34d92ef | 2016-03-14 13:49:37 -0700 | [diff] [blame] | 5982 | * @throws SecurityException if {@code admin} is not a device or profile owner. |
Kenny Guy | c13053b | 2014-05-29 14:17:17 +0100 | [diff] [blame] | 5983 | */ |
Robin Lee | 25e2645 | 2015-06-02 09:56:29 -0700 | [diff] [blame] | 5984 | public void setUninstallBlocked(@NonNull ComponentName admin, String packageName, |
Esteban Talavera | d5c5c13 | 2014-08-20 11:35:57 +0100 | [diff] [blame] | 5985 | boolean uninstallBlocked) { |
Benjamin Franz | bc33c82 | 2016-04-15 08:57:52 +0100 | [diff] [blame] | 5986 | throwIfParentInstance("setUninstallBlocked"); |
Kenny Guy | c13053b | 2014-05-29 14:17:17 +0100 | [diff] [blame] | 5987 | if (mService != null) { |
| 5988 | try { |
Esteban Talavera | d5c5c13 | 2014-08-20 11:35:57 +0100 | [diff] [blame] | 5989 | mService.setUninstallBlocked(admin, packageName, uninstallBlocked); |
Kenny Guy | c13053b | 2014-05-29 14:17:17 +0100 | [diff] [blame] | 5990 | } catch (RemoteException re) { |
Jeff Sharkey | dbff9ca | 2016-03-01 19:46:25 -0700 | [diff] [blame] | 5991 | throw re.rethrowFromSystemServer(); |
Kenny Guy | c13053b | 2014-05-29 14:17:17 +0100 | [diff] [blame] | 5992 | } |
| 5993 | } |
| 5994 | } |
| 5995 | |
| 5996 | /** |
Makoto Onuki | 32b3057 | 2015-12-11 14:29:51 -0800 | [diff] [blame] | 5997 | * Check whether the user has been blocked by device policy from uninstalling a package. |
Rubin Xu | a97855b | 2014-11-07 05:41:00 +0000 | [diff] [blame] | 5998 | * Requires the caller to be the profile owner if checking a specific admin's policy. |
Rubin Xu | e1e6faa | 2015-03-10 10:51:59 +0000 | [diff] [blame] | 5999 | * <p> |
| 6000 | * <strong>Note:</strong> Starting from {@link android.os.Build.VERSION_CODES#LOLLIPOP_MR1}, the |
Suprabh Shukla | 34d92ef | 2016-03-14 13:49:37 -0700 | [diff] [blame] | 6001 | * behavior of this API is changed such that passing {@code null} as the {@code admin} parameter |
| 6002 | * will return if any admin has blocked the uninstallation. Before L MR1, passing {@code null} |
| 6003 | * will cause a NullPointerException to be raised. |
Kenny Guy | c13053b | 2014-05-29 14:17:17 +0100 | [diff] [blame] | 6004 | * |
Robin Lee | 25e2645 | 2015-06-02 09:56:29 -0700 | [diff] [blame] | 6005 | * @param admin The name of the admin component whose blocking policy will be checked, or |
Suprabh Shukla | 34d92ef | 2016-03-14 13:49:37 -0700 | [diff] [blame] | 6006 | * {@code null} to check whether any admin has blocked the uninstallation. |
Kenny Guy | c13053b | 2014-05-29 14:17:17 +0100 | [diff] [blame] | 6007 | * @param packageName package to check. |
Rubin Xu | a97855b | 2014-11-07 05:41:00 +0000 | [diff] [blame] | 6008 | * @return true if uninstallation is blocked. |
Suprabh Shukla | 34d92ef | 2016-03-14 13:49:37 -0700 | [diff] [blame] | 6009 | * @throws SecurityException if {@code admin} is not a device or profile owner. |
Kenny Guy | c13053b | 2014-05-29 14:17:17 +0100 | [diff] [blame] | 6010 | */ |
Robin Lee | 25e2645 | 2015-06-02 09:56:29 -0700 | [diff] [blame] | 6011 | public boolean isUninstallBlocked(@Nullable ComponentName admin, String packageName) { |
Benjamin Franz | bc33c82 | 2016-04-15 08:57:52 +0100 | [diff] [blame] | 6012 | throwIfParentInstance("isUninstallBlocked"); |
Kenny Guy | c13053b | 2014-05-29 14:17:17 +0100 | [diff] [blame] | 6013 | if (mService != null) { |
| 6014 | try { |
Esteban Talavera | 729b2a6 | 2014-08-27 18:01:58 +0100 | [diff] [blame] | 6015 | return mService.isUninstallBlocked(admin, packageName); |
Kenny Guy | c13053b | 2014-05-29 14:17:17 +0100 | [diff] [blame] | 6016 | } catch (RemoteException re) { |
Jeff Sharkey | dbff9ca | 2016-03-01 19:46:25 -0700 | [diff] [blame] | 6017 | throw re.rethrowFromSystemServer(); |
Kenny Guy | c13053b | 2014-05-29 14:17:17 +0100 | [diff] [blame] | 6018 | } |
| 6019 | } |
| 6020 | return false; |
| 6021 | } |
Svetoslav | 976e8bd | 2014-07-16 15:12:03 -0700 | [diff] [blame] | 6022 | |
| 6023 | /** |
Suprabh Shukla | 34d92ef | 2016-03-14 13:49:37 -0700 | [diff] [blame] | 6024 | * Called by the profile owner of a managed profile to enable widget providers from a given |
| 6025 | * package to be available in the parent profile. As a result the user will be able to add |
| 6026 | * widgets from the white-listed package running under the profile to a widget host which runs |
| 6027 | * under the parent profile, for example the home screen. Note that a package may have zero or |
| 6028 | * more provider components, where each component provides a different widget type. |
Svetoslav | 976e8bd | 2014-07-16 15:12:03 -0700 | [diff] [blame] | 6029 | * <p> |
| 6030 | * <strong>Note:</strong> By default no widget provider package is white-listed. |
Svetoslav | 976e8bd | 2014-07-16 15:12:03 -0700 | [diff] [blame] | 6031 | * |
| 6032 | * @param admin Which {@link DeviceAdminReceiver} this request is associated with. |
| 6033 | * @param packageName The package from which widget providers are white-listed. |
| 6034 | * @return Whether the package was added. |
Suprabh Shukla | 34d92ef | 2016-03-14 13:49:37 -0700 | [diff] [blame] | 6035 | * @throws SecurityException if {@code admin} is not a profile owner. |
Svetoslav | 976e8bd | 2014-07-16 15:12:03 -0700 | [diff] [blame] | 6036 | * @see #removeCrossProfileWidgetProvider(android.content.ComponentName, String) |
| 6037 | * @see #getCrossProfileWidgetProviders(android.content.ComponentName) |
| 6038 | */ |
Robin Lee | 25e2645 | 2015-06-02 09:56:29 -0700 | [diff] [blame] | 6039 | public boolean addCrossProfileWidgetProvider(@NonNull ComponentName admin, String packageName) { |
Benjamin Franz | bc33c82 | 2016-04-15 08:57:52 +0100 | [diff] [blame] | 6040 | throwIfParentInstance("addCrossProfileWidgetProvider"); |
Svetoslav | 976e8bd | 2014-07-16 15:12:03 -0700 | [diff] [blame] | 6041 | if (mService != null) { |
| 6042 | try { |
| 6043 | return mService.addCrossProfileWidgetProvider(admin, packageName); |
| 6044 | } catch (RemoteException re) { |
Jeff Sharkey | dbff9ca | 2016-03-01 19:46:25 -0700 | [diff] [blame] | 6045 | throw re.rethrowFromSystemServer(); |
Svetoslav | 976e8bd | 2014-07-16 15:12:03 -0700 | [diff] [blame] | 6046 | } |
| 6047 | } |
| 6048 | return false; |
| 6049 | } |
| 6050 | |
| 6051 | /** |
Amith Yamasani | c34dc7c | 2014-09-18 09:42:42 -0700 | [diff] [blame] | 6052 | * Called by the profile owner of a managed profile to disable widget providers from a given |
Suprabh Shukla | 34d92ef | 2016-03-14 13:49:37 -0700 | [diff] [blame] | 6053 | * package to be available in the parent profile. For this method to take effect the package |
| 6054 | * should have been added via |
| 6055 | * {@link #addCrossProfileWidgetProvider( android.content.ComponentName, String)}. |
Svetoslav | 976e8bd | 2014-07-16 15:12:03 -0700 | [diff] [blame] | 6056 | * <p> |
| 6057 | * <strong>Note:</strong> By default no widget provider package is white-listed. |
Svetoslav | 976e8bd | 2014-07-16 15:12:03 -0700 | [diff] [blame] | 6058 | * |
| 6059 | * @param admin Which {@link DeviceAdminReceiver} this request is associated with. |
Suprabh Shukla | 34d92ef | 2016-03-14 13:49:37 -0700 | [diff] [blame] | 6060 | * @param packageName The package from which widget providers are no longer white-listed. |
Svetoslav | 976e8bd | 2014-07-16 15:12:03 -0700 | [diff] [blame] | 6061 | * @return Whether the package was removed. |
Suprabh Shukla | 34d92ef | 2016-03-14 13:49:37 -0700 | [diff] [blame] | 6062 | * @throws SecurityException if {@code admin} is not a profile owner. |
Svetoslav | 976e8bd | 2014-07-16 15:12:03 -0700 | [diff] [blame] | 6063 | * @see #addCrossProfileWidgetProvider(android.content.ComponentName, String) |
| 6064 | * @see #getCrossProfileWidgetProviders(android.content.ComponentName) |
| 6065 | */ |
Esteban Talavera | 6239991 | 2016-01-11 15:37:55 +0000 | [diff] [blame] | 6066 | public boolean removeCrossProfileWidgetProvider( |
| 6067 | @NonNull ComponentName admin, String packageName) { |
Benjamin Franz | bc33c82 | 2016-04-15 08:57:52 +0100 | [diff] [blame] | 6068 | throwIfParentInstance("removeCrossProfileWidgetProvider"); |
Svetoslav | 976e8bd | 2014-07-16 15:12:03 -0700 | [diff] [blame] | 6069 | if (mService != null) { |
| 6070 | try { |
| 6071 | return mService.removeCrossProfileWidgetProvider(admin, packageName); |
| 6072 | } catch (RemoteException re) { |
Jeff Sharkey | dbff9ca | 2016-03-01 19:46:25 -0700 | [diff] [blame] | 6073 | throw re.rethrowFromSystemServer(); |
Svetoslav | 976e8bd | 2014-07-16 15:12:03 -0700 | [diff] [blame] | 6074 | } |
| 6075 | } |
| 6076 | return false; |
| 6077 | } |
| 6078 | |
| 6079 | /** |
Amith Yamasani | c34dc7c | 2014-09-18 09:42:42 -0700 | [diff] [blame] | 6080 | * Called by the profile owner of a managed profile to query providers from which packages are |
Svetoslav | 976e8bd | 2014-07-16 15:12:03 -0700 | [diff] [blame] | 6081 | * available in the parent profile. |
| 6082 | * |
| 6083 | * @param admin Which {@link DeviceAdminReceiver} this request is associated with. |
| 6084 | * @return The white-listed package list. |
Svetoslav | 976e8bd | 2014-07-16 15:12:03 -0700 | [diff] [blame] | 6085 | * @see #addCrossProfileWidgetProvider(android.content.ComponentName, String) |
| 6086 | * @see #removeCrossProfileWidgetProvider(android.content.ComponentName, String) |
Suprabh Shukla | 34d92ef | 2016-03-14 13:49:37 -0700 | [diff] [blame] | 6087 | * @throws SecurityException if {@code admin} is not a profile owner. |
Svetoslav | 976e8bd | 2014-07-16 15:12:03 -0700 | [diff] [blame] | 6088 | */ |
Makoto Onuki | 408e8e4 | 2016-10-25 12:10:27 -0700 | [diff] [blame] | 6089 | public @NonNull List<String> getCrossProfileWidgetProviders(@NonNull ComponentName admin) { |
Benjamin Franz | bc33c82 | 2016-04-15 08:57:52 +0100 | [diff] [blame] | 6090 | throwIfParentInstance("getCrossProfileWidgetProviders"); |
Svetoslav | 976e8bd | 2014-07-16 15:12:03 -0700 | [diff] [blame] | 6091 | if (mService != null) { |
| 6092 | try { |
| 6093 | List<String> providers = mService.getCrossProfileWidgetProviders(admin); |
| 6094 | if (providers != null) { |
| 6095 | return providers; |
| 6096 | } |
| 6097 | } catch (RemoteException re) { |
Jeff Sharkey | dbff9ca | 2016-03-01 19:46:25 -0700 | [diff] [blame] | 6098 | throw re.rethrowFromSystemServer(); |
Svetoslav | 976e8bd | 2014-07-16 15:12:03 -0700 | [diff] [blame] | 6099 | } |
| 6100 | } |
| 6101 | return Collections.emptyList(); |
| 6102 | } |
Julia Reynolds | fca04ca | 2015-02-17 13:39:12 -0500 | [diff] [blame] | 6103 | |
| 6104 | /** |
Makoto Onuki | 32b3057 | 2015-12-11 14:29:51 -0800 | [diff] [blame] | 6105 | * Called by profile or device owners to set the user's photo. |
Julia Reynolds | fca04ca | 2015-02-17 13:39:12 -0500 | [diff] [blame] | 6106 | * |
| 6107 | * @param admin Which {@link DeviceAdminReceiver} this request is associated with. |
| 6108 | * @param icon the bitmap to set as the photo. |
Suprabh Shukla | 34d92ef | 2016-03-14 13:49:37 -0700 | [diff] [blame] | 6109 | * @throws SecurityException if {@code admin} is not a device or profile owner. |
Julia Reynolds | fca04ca | 2015-02-17 13:39:12 -0500 | [diff] [blame] | 6110 | */ |
Robin Lee | 25e2645 | 2015-06-02 09:56:29 -0700 | [diff] [blame] | 6111 | public void setUserIcon(@NonNull ComponentName admin, Bitmap icon) { |
Benjamin Franz | bc33c82 | 2016-04-15 08:57:52 +0100 | [diff] [blame] | 6112 | throwIfParentInstance("setUserIcon"); |
Julia Reynolds | fca04ca | 2015-02-17 13:39:12 -0500 | [diff] [blame] | 6113 | try { |
| 6114 | mService.setUserIcon(admin, icon); |
| 6115 | } catch (RemoteException re) { |
Jeff Sharkey | dbff9ca | 2016-03-01 19:46:25 -0700 | [diff] [blame] | 6116 | throw re.rethrowFromSystemServer(); |
Julia Reynolds | fca04ca | 2015-02-17 13:39:12 -0500 | [diff] [blame] | 6117 | } |
| 6118 | } |
Craig Lafayette | dbe31a6 | 2015-04-02 13:14:39 -0400 | [diff] [blame] | 6119 | |
| 6120 | /** |
Rubin Xu | 5faad8e | 2015-04-20 17:43:48 +0100 | [diff] [blame] | 6121 | * Called by device owners to set a local system update policy. When a new policy is set, |
| 6122 | * {@link #ACTION_SYSTEM_UPDATE_POLICY_CHANGED} is broadcasted. |
Rubin Xu | 8027a4f | 2015-03-10 17:52:37 +0000 | [diff] [blame] | 6123 | * |
Robin Lee | 25e2645 | 2015-06-02 09:56:29 -0700 | [diff] [blame] | 6124 | * @param admin Which {@link DeviceAdminReceiver} this request is associated with. All |
Suprabh Shukla | 34d92ef | 2016-03-14 13:49:37 -0700 | [diff] [blame] | 6125 | * components in the device owner package can set system update policies and the most |
| 6126 | * recent policy takes effect. |
Robin Lee | 25e2645 | 2015-06-02 09:56:29 -0700 | [diff] [blame] | 6127 | * @param policy the new policy, or {@code null} to clear the current policy. |
Suprabh Shukla | 34d92ef | 2016-03-14 13:49:37 -0700 | [diff] [blame] | 6128 | * @throws SecurityException if {@code admin} is not a device owner. |
Rubin Xu | 5faad8e | 2015-04-20 17:43:48 +0100 | [diff] [blame] | 6129 | * @see SystemUpdatePolicy |
Rubin Xu | 8027a4f | 2015-03-10 17:52:37 +0000 | [diff] [blame] | 6130 | */ |
Robin Lee | 25e2645 | 2015-06-02 09:56:29 -0700 | [diff] [blame] | 6131 | public void setSystemUpdatePolicy(@NonNull ComponentName admin, SystemUpdatePolicy policy) { |
Benjamin Franz | bc33c82 | 2016-04-15 08:57:52 +0100 | [diff] [blame] | 6132 | throwIfParentInstance("setSystemUpdatePolicy"); |
Rubin Xu | 8027a4f | 2015-03-10 17:52:37 +0000 | [diff] [blame] | 6133 | if (mService != null) { |
| 6134 | try { |
Robin Lee | 25e2645 | 2015-06-02 09:56:29 -0700 | [diff] [blame] | 6135 | mService.setSystemUpdatePolicy(admin, policy); |
Rubin Xu | 8027a4f | 2015-03-10 17:52:37 +0000 | [diff] [blame] | 6136 | } catch (RemoteException re) { |
Jeff Sharkey | dbff9ca | 2016-03-01 19:46:25 -0700 | [diff] [blame] | 6137 | throw re.rethrowFromSystemServer(); |
Rubin Xu | 8027a4f | 2015-03-10 17:52:37 +0000 | [diff] [blame] | 6138 | } |
| 6139 | } |
| 6140 | } |
| 6141 | |
| 6142 | /** |
Rubin Xu | 5faad8e | 2015-04-20 17:43:48 +0100 | [diff] [blame] | 6143 | * Retrieve a local system update policy set previously by {@link #setSystemUpdatePolicy}. |
Rubin Xu | 8027a4f | 2015-03-10 17:52:37 +0000 | [diff] [blame] | 6144 | * |
Robin Lee | 25e2645 | 2015-06-02 09:56:29 -0700 | [diff] [blame] | 6145 | * @return The current policy object, or {@code null} if no policy is set. |
Rubin Xu | 8027a4f | 2015-03-10 17:52:37 +0000 | [diff] [blame] | 6146 | */ |
Makoto Onuki | 408e8e4 | 2016-10-25 12:10:27 -0700 | [diff] [blame] | 6147 | public @Nullable SystemUpdatePolicy getSystemUpdatePolicy() { |
Benjamin Franz | bc33c82 | 2016-04-15 08:57:52 +0100 | [diff] [blame] | 6148 | throwIfParentInstance("getSystemUpdatePolicy"); |
Rubin Xu | 8027a4f | 2015-03-10 17:52:37 +0000 | [diff] [blame] | 6149 | if (mService != null) { |
| 6150 | try { |
Rubin Xu | d86d58c | 2015-05-05 16:57:37 +0100 | [diff] [blame] | 6151 | return mService.getSystemUpdatePolicy(); |
Rubin Xu | 8027a4f | 2015-03-10 17:52:37 +0000 | [diff] [blame] | 6152 | } catch (RemoteException re) { |
Jeff Sharkey | dbff9ca | 2016-03-01 19:46:25 -0700 | [diff] [blame] | 6153 | throw re.rethrowFromSystemServer(); |
Rubin Xu | 8027a4f | 2015-03-10 17:52:37 +0000 | [diff] [blame] | 6154 | } |
| 6155 | } |
| 6156 | return null; |
| 6157 | } |
Benjamin Franz | e36087e | 2015-04-07 16:40:34 +0100 | [diff] [blame] | 6158 | |
| 6159 | /** |
| 6160 | * Called by a device owner to disable the keyguard altogether. |
Suprabh Shukla | 34d92ef | 2016-03-14 13:49:37 -0700 | [diff] [blame] | 6161 | * <p> |
| 6162 | * Setting the keyguard to disabled has the same effect as choosing "None" as the screen lock |
| 6163 | * type. However, this call has no effect if a password, pin or pattern is currently set. If a |
| 6164 | * password, pin or pattern is set after the keyguard was disabled, the keyguard stops being |
| 6165 | * disabled. |
Benjamin Franz | e36087e | 2015-04-07 16:40:34 +0100 | [diff] [blame] | 6166 | * |
| 6167 | * @param admin Which {@link DeviceAdminReceiver} this request is associated with. |
Benjamin Franz | bece806 | 2015-05-06 12:14:31 +0100 | [diff] [blame] | 6168 | * @param disabled {@code true} disables the keyguard, {@code false} reenables it. |
Benjamin Franz | e36087e | 2015-04-07 16:40:34 +0100 | [diff] [blame] | 6169 | * @return {@code false} if attempting to disable the keyguard while a lock password was in |
Suprabh Shukla | 34d92ef | 2016-03-14 13:49:37 -0700 | [diff] [blame] | 6170 | * place. {@code true} otherwise. |
| 6171 | * @throws SecurityException if {@code admin} is not a device owner. |
Benjamin Franz | e36087e | 2015-04-07 16:40:34 +0100 | [diff] [blame] | 6172 | */ |
Robin Lee | 25e2645 | 2015-06-02 09:56:29 -0700 | [diff] [blame] | 6173 | public boolean setKeyguardDisabled(@NonNull ComponentName admin, boolean disabled) { |
Benjamin Franz | bc33c82 | 2016-04-15 08:57:52 +0100 | [diff] [blame] | 6174 | throwIfParentInstance("setKeyguardDisabled"); |
Benjamin Franz | e36087e | 2015-04-07 16:40:34 +0100 | [diff] [blame] | 6175 | try { |
Benjamin Franz | bece806 | 2015-05-06 12:14:31 +0100 | [diff] [blame] | 6176 | return mService.setKeyguardDisabled(admin, disabled); |
Benjamin Franz | e36087e | 2015-04-07 16:40:34 +0100 | [diff] [blame] | 6177 | } catch (RemoteException re) { |
Jeff Sharkey | dbff9ca | 2016-03-01 19:46:25 -0700 | [diff] [blame] | 6178 | throw re.rethrowFromSystemServer(); |
Benjamin Franz | e36087e | 2015-04-07 16:40:34 +0100 | [diff] [blame] | 6179 | } |
| 6180 | } |
Benjamin Franz | ea2ec97 | 2015-03-16 17:18:09 +0000 | [diff] [blame] | 6181 | |
| 6182 | /** |
Benjamin Franz | bece806 | 2015-05-06 12:14:31 +0100 | [diff] [blame] | 6183 | * Called by device owner to disable the status bar. Disabling the status bar blocks |
Suprabh Shukla | 34d92ef | 2016-03-14 13:49:37 -0700 | [diff] [blame] | 6184 | * notifications, quick settings and other screen overlays that allow escaping from a single use |
| 6185 | * device. |
Benjamin Franz | ea2ec97 | 2015-03-16 17:18:09 +0000 | [diff] [blame] | 6186 | * |
| 6187 | * @param admin Which {@link DeviceAdminReceiver} this request is associated with. |
Benjamin Franz | bece806 | 2015-05-06 12:14:31 +0100 | [diff] [blame] | 6188 | * @param disabled {@code true} disables the status bar, {@code false} reenables it. |
Suprabh Shukla | 34d92ef | 2016-03-14 13:49:37 -0700 | [diff] [blame] | 6189 | * @return {@code false} if attempting to disable the status bar failed. {@code true} otherwise. |
| 6190 | * @throws SecurityException if {@code admin} is not a device owner. |
Benjamin Franz | ea2ec97 | 2015-03-16 17:18:09 +0000 | [diff] [blame] | 6191 | */ |
Robin Lee | 25e2645 | 2015-06-02 09:56:29 -0700 | [diff] [blame] | 6192 | public boolean setStatusBarDisabled(@NonNull ComponentName admin, boolean disabled) { |
Benjamin Franz | bc33c82 | 2016-04-15 08:57:52 +0100 | [diff] [blame] | 6193 | throwIfParentInstance("setStatusBarDisabled"); |
Benjamin Franz | ea2ec97 | 2015-03-16 17:18:09 +0000 | [diff] [blame] | 6194 | try { |
Benjamin Franz | bece806 | 2015-05-06 12:14:31 +0100 | [diff] [blame] | 6195 | return mService.setStatusBarDisabled(admin, disabled); |
Benjamin Franz | ea2ec97 | 2015-03-16 17:18:09 +0000 | [diff] [blame] | 6196 | } catch (RemoteException re) { |
Jeff Sharkey | dbff9ca | 2016-03-01 19:46:25 -0700 | [diff] [blame] | 6197 | throw re.rethrowFromSystemServer(); |
Benjamin Franz | ea2ec97 | 2015-03-16 17:18:09 +0000 | [diff] [blame] | 6198 | } |
| 6199 | } |
Rubin Xu | dc105cc | 2015-04-14 23:38:01 +0100 | [diff] [blame] | 6200 | |
| 6201 | /** |
Charles He | dea0c3b | 2017-01-13 10:04:12 +0000 | [diff] [blame^] | 6202 | * Called by the system update service to notify device and profile owners of pending system |
| 6203 | * updates. |
Rubin Xu | dc105cc | 2015-04-14 23:38:01 +0100 | [diff] [blame] | 6204 | * |
Charles He | dea0c3b | 2017-01-13 10:04:12 +0000 | [diff] [blame^] | 6205 | * The caller must hold {@link android.Manifest.permission#NOTIFY_PENDING_SYSTEM_UPDATE} |
| 6206 | * permission. This method should only be used when it is unknown whether the pending system |
| 6207 | * update is a security patch. Otherwise, use |
| 6208 | * {@link #notifyPendingSystemUpdate(long, boolean)}. |
| 6209 | * |
| 6210 | * @param updateReceivedTime The time as given by {@link System#currentTimeMillis()} |
| 6211 | * indicating when the current pending update was first available. {@code -1} if no |
| 6212 | * update is available. |
| 6213 | * @see #notifyPendingSystemUpdate(long, boolean) |
Rubin Xu | dc105cc | 2015-04-14 23:38:01 +0100 | [diff] [blame] | 6214 | * @hide |
| 6215 | */ |
| 6216 | @SystemApi |
| 6217 | public void notifyPendingSystemUpdate(long updateReceivedTime) { |
Benjamin Franz | bc33c82 | 2016-04-15 08:57:52 +0100 | [diff] [blame] | 6218 | throwIfParentInstance("notifyPendingSystemUpdate"); |
Rubin Xu | dc105cc | 2015-04-14 23:38:01 +0100 | [diff] [blame] | 6219 | if (mService != null) { |
| 6220 | try { |
Charles He | dea0c3b | 2017-01-13 10:04:12 +0000 | [diff] [blame^] | 6221 | mService.notifyPendingSystemUpdate(SystemUpdateInfo.of(updateReceivedTime)); |
| 6222 | } catch (RemoteException re) { |
| 6223 | throw re.rethrowFromSystemServer(); |
| 6224 | } |
| 6225 | } |
| 6226 | } |
| 6227 | |
| 6228 | /** |
| 6229 | * Called by the system update service to notify device and profile owners of pending system |
| 6230 | * updates. |
| 6231 | * |
| 6232 | * The caller must hold {@link android.Manifest.permission#NOTIFY_PENDING_SYSTEM_UPDATE} |
| 6233 | * permission. This method should be used instead of {@link #notifyPendingSystemUpdate(long)} |
| 6234 | * when it is known whether the pending system update is a security patch. |
| 6235 | * |
| 6236 | * @param updateReceivedTime The time as given by {@link System#currentTimeMillis()} |
| 6237 | * indicating when the current pending update was first available. {@code -1} if no |
| 6238 | * update is available. |
| 6239 | * @param isSecurityPatch {@code true} if this system update is purely a security patch; |
| 6240 | * {@code false} if not. |
| 6241 | * @see #notifyPendingSystemUpdate(long) |
| 6242 | * @hide |
| 6243 | */ |
| 6244 | @SystemApi |
| 6245 | public void notifyPendingSystemUpdate(long updateReceivedTime, boolean isSecurityPatch) { |
| 6246 | throwIfParentInstance("notifyPendingSystemUpdate"); |
| 6247 | if (mService != null) { |
| 6248 | try { |
| 6249 | mService.notifyPendingSystemUpdate(SystemUpdateInfo.of(updateReceivedTime, |
| 6250 | isSecurityPatch)); |
Rubin Xu | dc105cc | 2015-04-14 23:38:01 +0100 | [diff] [blame] | 6251 | } catch (RemoteException re) { |
Jeff Sharkey | dbff9ca | 2016-03-01 19:46:25 -0700 | [diff] [blame] | 6252 | throw re.rethrowFromSystemServer(); |
Rubin Xu | dc105cc | 2015-04-14 23:38:01 +0100 | [diff] [blame] | 6253 | } |
| 6254 | } |
| 6255 | } |
Julia Reynolds | 13c58ba | 2015-04-20 16:42:54 -0400 | [diff] [blame] | 6256 | |
| 6257 | /** |
Pavel Grafov | d65799e | 2016-12-02 11:21:45 +0000 | [diff] [blame] | 6258 | * Called by device or profile owners to get information about a pending system update. |
| 6259 | * |
| 6260 | * @param admin Which profile or device owner this request is associated with. |
| 6261 | * @return Information about a pending system update or {@code null} if no update pending. |
| 6262 | * @throws SecurityException if {@code admin} is not a device or profile owner. |
| 6263 | * @see DeviceAdminReceiver#onSystemUpdatePending(Context, Intent, long) |
| 6264 | */ |
| 6265 | public @Nullable SystemUpdateInfo getPendingSystemUpdate(@NonNull ComponentName admin) { |
| 6266 | throwIfParentInstance("getPendingSystemUpdate"); |
| 6267 | try { |
| 6268 | return mService.getPendingSystemUpdate(admin); |
| 6269 | } catch (RemoteException re) { |
| 6270 | throw re.rethrowFromSystemServer(); |
| 6271 | } |
| 6272 | } |
| 6273 | |
| 6274 | /** |
Amith Yamasani | d49489b3 | 2015-04-28 14:00:26 -0700 | [diff] [blame] | 6275 | * Called by profile or device owners to set the default response for future runtime permission |
Suprabh Shukla | 34d92ef | 2016-03-14 13:49:37 -0700 | [diff] [blame] | 6276 | * requests by applications. The policy can allow for normal operation which prompts the user to |
| 6277 | * grant a permission, or can allow automatic granting or denying of runtime permission requests |
| 6278 | * by an application. This also applies to new permissions declared by app updates. When a |
| 6279 | * permission is denied or granted this way, the effect is equivalent to setting the permission |
| 6280 | * grant state via {@link #setPermissionGrantState}. |
| 6281 | * <p/> |
| 6282 | * As this policy only acts on runtime permission requests, it only applies to applications |
Dianne Hackborn | 0e3de6c | 2015-07-29 15:20:21 -0700 | [diff] [blame] | 6283 | * built with a {@code targetSdkVersion} of {@link android.os.Build.VERSION_CODES#M} or later. |
Benjamin Franz | 45dd666 | 2015-07-08 14:24:14 +0100 | [diff] [blame] | 6284 | * |
Amith Yamasani | d49489b3 | 2015-04-28 14:00:26 -0700 | [diff] [blame] | 6285 | * @param admin Which profile or device owner this request is associated with. |
| 6286 | * @param policy One of the policy constants {@link #PERMISSION_POLICY_PROMPT}, |
Suprabh Shukla | 34d92ef | 2016-03-14 13:49:37 -0700 | [diff] [blame] | 6287 | * {@link #PERMISSION_POLICY_AUTO_GRANT} and {@link #PERMISSION_POLICY_AUTO_DENY}. |
| 6288 | * @throws SecurityException if {@code admin} is not a device or profile owner. |
Benjamin Franz | 45dd666 | 2015-07-08 14:24:14 +0100 | [diff] [blame] | 6289 | * @see #setPermissionGrantState |
Amith Yamasani | d49489b3 | 2015-04-28 14:00:26 -0700 | [diff] [blame] | 6290 | */ |
Robin Lee | 25e2645 | 2015-06-02 09:56:29 -0700 | [diff] [blame] | 6291 | public void setPermissionPolicy(@NonNull ComponentName admin, int policy) { |
Benjamin Franz | bc33c82 | 2016-04-15 08:57:52 +0100 | [diff] [blame] | 6292 | throwIfParentInstance("setPermissionPolicy"); |
Amith Yamasani | d49489b3 | 2015-04-28 14:00:26 -0700 | [diff] [blame] | 6293 | try { |
| 6294 | mService.setPermissionPolicy(admin, policy); |
| 6295 | } catch (RemoteException re) { |
Jeff Sharkey | dbff9ca | 2016-03-01 19:46:25 -0700 | [diff] [blame] | 6296 | throw re.rethrowFromSystemServer(); |
Amith Yamasani | d49489b3 | 2015-04-28 14:00:26 -0700 | [diff] [blame] | 6297 | } |
| 6298 | } |
| 6299 | |
| 6300 | /** |
| 6301 | * Returns the current runtime permission policy set by the device or profile owner. The |
| 6302 | * default is {@link #PERMISSION_POLICY_PROMPT}. |
| 6303 | * @param admin Which profile or device owner this request is associated with. |
| 6304 | * @return the current policy for future permission requests. |
| 6305 | */ |
Esteban Talavera | 28b9570 | 2015-06-24 15:23:42 +0100 | [diff] [blame] | 6306 | public int getPermissionPolicy(ComponentName admin) { |
Benjamin Franz | bc33c82 | 2016-04-15 08:57:52 +0100 | [diff] [blame] | 6307 | throwIfParentInstance("getPermissionPolicy"); |
Amith Yamasani | d49489b3 | 2015-04-28 14:00:26 -0700 | [diff] [blame] | 6308 | try { |
| 6309 | return mService.getPermissionPolicy(admin); |
| 6310 | } catch (RemoteException re) { |
Jeff Sharkey | dbff9ca | 2016-03-01 19:46:25 -0700 | [diff] [blame] | 6311 | throw re.rethrowFromSystemServer(); |
Amith Yamasani | d49489b3 | 2015-04-28 14:00:26 -0700 | [diff] [blame] | 6312 | } |
| 6313 | } |
| 6314 | |
| 6315 | /** |
Suprabh Shukla | 34d92ef | 2016-03-14 13:49:37 -0700 | [diff] [blame] | 6316 | * Sets the grant state of a runtime permission for a specific application. The state can be |
| 6317 | * {@link #PERMISSION_GRANT_STATE_DEFAULT default} in which a user can manage it through the UI, |
| 6318 | * {@link #PERMISSION_GRANT_STATE_DENIED denied}, in which the permission is denied and the user |
| 6319 | * cannot manage it through the UI, and {@link #PERMISSION_GRANT_STATE_GRANTED granted} in which |
| 6320 | * the permission is granted and the user cannot manage it through the UI. This might affect all |
| 6321 | * permissions in a group that the runtime permission belongs to. This method can only be called |
Svet Ganov | d8ecc5a | 2015-05-20 10:45:43 -0700 | [diff] [blame] | 6322 | * by a profile or device owner. |
Suprabh Shukla | 34d92ef | 2016-03-14 13:49:37 -0700 | [diff] [blame] | 6323 | * <p/> |
| 6324 | * Setting the grant state to {@link #PERMISSION_GRANT_STATE_DEFAULT default} does not revoke |
| 6325 | * the permission. It retains the previous grant, if any. |
| 6326 | * <p/> |
| 6327 | * Permissions can be granted or revoked only for applications built with a |
Dianne Hackborn | 0e3de6c | 2015-07-29 15:20:21 -0700 | [diff] [blame] | 6328 | * {@code targetSdkVersion} of {@link android.os.Build.VERSION_CODES#M} or later. |
Amith Yamasani | 0bf8f7c | 2015-06-22 13:00:32 -0700 | [diff] [blame] | 6329 | * |
Amith Yamasani | d49489b3 | 2015-04-28 14:00:26 -0700 | [diff] [blame] | 6330 | * @param admin Which profile or device owner this request is associated with. |
| 6331 | * @param packageName The application to grant or revoke a permission to. |
| 6332 | * @param permission The permission to grant or revoke. |
Suprabh Shukla | 34d92ef | 2016-03-14 13:49:37 -0700 | [diff] [blame] | 6333 | * @param grantState The permission grant state which is one of |
| 6334 | * {@link #PERMISSION_GRANT_STATE_DENIED}, {@link #PERMISSION_GRANT_STATE_DEFAULT}, |
| 6335 | * {@link #PERMISSION_GRANT_STATE_GRANTED}, |
Svet Ganov | d8ecc5a | 2015-05-20 10:45:43 -0700 | [diff] [blame] | 6336 | * @return whether the permission was successfully granted or revoked. |
Suprabh Shukla | 34d92ef | 2016-03-14 13:49:37 -0700 | [diff] [blame] | 6337 | * @throws SecurityException if {@code admin} is not a device or profile owner. |
Svet Ganov | d8ecc5a | 2015-05-20 10:45:43 -0700 | [diff] [blame] | 6338 | * @see #PERMISSION_GRANT_STATE_DENIED |
| 6339 | * @see #PERMISSION_GRANT_STATE_DEFAULT |
| 6340 | * @see #PERMISSION_GRANT_STATE_GRANTED |
Amith Yamasani | d49489b3 | 2015-04-28 14:00:26 -0700 | [diff] [blame] | 6341 | */ |
Robin Lee | 25e2645 | 2015-06-02 09:56:29 -0700 | [diff] [blame] | 6342 | public boolean setPermissionGrantState(@NonNull ComponentName admin, String packageName, |
Svet Ganov | d8ecc5a | 2015-05-20 10:45:43 -0700 | [diff] [blame] | 6343 | String permission, int grantState) { |
Benjamin Franz | bc33c82 | 2016-04-15 08:57:52 +0100 | [diff] [blame] | 6344 | throwIfParentInstance("setPermissionGrantState"); |
Amith Yamasani | d49489b3 | 2015-04-28 14:00:26 -0700 | [diff] [blame] | 6345 | try { |
Svet Ganov | d8ecc5a | 2015-05-20 10:45:43 -0700 | [diff] [blame] | 6346 | return mService.setPermissionGrantState(admin, packageName, permission, grantState); |
Amith Yamasani | d49489b3 | 2015-04-28 14:00:26 -0700 | [diff] [blame] | 6347 | } catch (RemoteException re) { |
Jeff Sharkey | dbff9ca | 2016-03-01 19:46:25 -0700 | [diff] [blame] | 6348 | throw re.rethrowFromSystemServer(); |
Amith Yamasani | d49489b3 | 2015-04-28 14:00:26 -0700 | [diff] [blame] | 6349 | } |
| 6350 | } |
Amith Yamasani | 184b3753 | 2015-05-22 13:00:51 -0700 | [diff] [blame] | 6351 | |
| 6352 | /** |
| 6353 | * Returns the current grant state of a runtime permission for a specific application. |
| 6354 | * |
| 6355 | * @param admin Which profile or device owner this request is associated with. |
| 6356 | * @param packageName The application to check the grant state for. |
| 6357 | * @param permission The permission to check for. |
| 6358 | * @return the current grant state specified by device policy. If the profile or device owner |
Suprabh Shukla | 34d92ef | 2016-03-14 13:49:37 -0700 | [diff] [blame] | 6359 | * has not set a grant state, the return value is |
| 6360 | * {@link #PERMISSION_GRANT_STATE_DEFAULT}. This does not indicate whether or not the |
| 6361 | * permission is currently granted for the package. |
| 6362 | * <p/> |
| 6363 | * If a grant state was set by the profile or device owner, then the return value will |
| 6364 | * be one of {@link #PERMISSION_GRANT_STATE_DENIED} or |
| 6365 | * {@link #PERMISSION_GRANT_STATE_GRANTED}, which indicates if the permission is |
| 6366 | * currently denied or granted. |
| 6367 | * @throws SecurityException if {@code admin} is not a device or profile owner. |
Amith Yamasani | 184b3753 | 2015-05-22 13:00:51 -0700 | [diff] [blame] | 6368 | * @see #setPermissionGrantState(ComponentName, String, String, int) |
| 6369 | * @see PackageManager#checkPermission(String, String) |
| 6370 | */ |
Bartosz Fabianowski | 4b0624f | 2017-01-16 11:47:28 +0100 | [diff] [blame] | 6371 | public int getPermissionGrantState(@Nullable ComponentName admin, String packageName, |
Amith Yamasani | 184b3753 | 2015-05-22 13:00:51 -0700 | [diff] [blame] | 6372 | String permission) { |
Benjamin Franz | bc33c82 | 2016-04-15 08:57:52 +0100 | [diff] [blame] | 6373 | throwIfParentInstance("getPermissionGrantState"); |
Amith Yamasani | 184b3753 | 2015-05-22 13:00:51 -0700 | [diff] [blame] | 6374 | try { |
| 6375 | return mService.getPermissionGrantState(admin, packageName, permission); |
| 6376 | } catch (RemoteException re) { |
Jeff Sharkey | dbff9ca | 2016-03-01 19:46:25 -0700 | [diff] [blame] | 6377 | throw re.rethrowFromSystemServer(); |
Amith Yamasani | 184b3753 | 2015-05-22 13:00:51 -0700 | [diff] [blame] | 6378 | } |
| 6379 | } |
Nicolas Prevot | 07387fe | 2015-10-30 17:53:30 +0000 | [diff] [blame] | 6380 | |
| 6381 | /** |
Esteban Talavera | 0157686 | 2016-12-15 11:16:44 +0000 | [diff] [blame] | 6382 | * Returns whether it is possible for the caller to initiate provisioning of a managed profile |
| 6383 | * or device, setting itself as the device or profile owner. |
| 6384 | * |
Nicolas Prevot | 07387fe | 2015-10-30 17:53:30 +0000 | [diff] [blame] | 6385 | * @param action One of {@link #ACTION_PROVISION_MANAGED_DEVICE}, |
| 6386 | * {@link #ACTION_PROVISION_MANAGED_PROFILE}. |
Esteban Talavera | 0157686 | 2016-12-15 11:16:44 +0000 | [diff] [blame] | 6387 | * @return whether provisioning a managed profile or device is possible. |
Nicolas Prevot | 07387fe | 2015-10-30 17:53:30 +0000 | [diff] [blame] | 6388 | * @throws IllegalArgumentException if the supplied action is not valid. |
| 6389 | */ |
Esteban Talavera | 0157686 | 2016-12-15 11:16:44 +0000 | [diff] [blame] | 6390 | public boolean isProvisioningAllowed(@NonNull String action) { |
Benjamin Franz | bc33c82 | 2016-04-15 08:57:52 +0100 | [diff] [blame] | 6391 | throwIfParentInstance("isProvisioningAllowed"); |
Nicolas Prevot | 07387fe | 2015-10-30 17:53:30 +0000 | [diff] [blame] | 6392 | try { |
Esteban Talavera | 0157686 | 2016-12-15 11:16:44 +0000 | [diff] [blame] | 6393 | return mService.isProvisioningAllowed(action, mContext.getPackageName()); |
Nicolas Prevot | 07387fe | 2015-10-30 17:53:30 +0000 | [diff] [blame] | 6394 | } catch (RemoteException re) { |
Jeff Sharkey | dbff9ca | 2016-03-01 19:46:25 -0700 | [diff] [blame] | 6395 | throw re.rethrowFromSystemServer(); |
Nicolas Prevot | 07387fe | 2015-10-30 17:53:30 +0000 | [diff] [blame] | 6396 | } |
| 6397 | } |
Mahaver Chopra | 15a46b0 | 2015-11-11 14:54:35 +0000 | [diff] [blame] | 6398 | |
| 6399 | /** |
Esteban Talavera | 0157686 | 2016-12-15 11:16:44 +0000 | [diff] [blame] | 6400 | * Checks whether it is possible to initiate provisioning a managed device, |
| 6401 | * profile or user, setting the given package as owner. |
Mahaver Chopra | 849fd6f | 2016-11-03 20:28:10 +0000 | [diff] [blame] | 6402 | * |
| 6403 | * @param action One of {@link #ACTION_PROVISION_MANAGED_DEVICE}, |
| 6404 | * {@link #ACTION_PROVISION_MANAGED_PROFILE}, |
| 6405 | * {@link #ACTION_PROVISION_MANAGED_SHAREABLE_DEVICE}, |
| 6406 | * {@link #ACTION_PROVISION_MANAGED_USER} |
Esteban Talavera | 0157686 | 2016-12-15 11:16:44 +0000 | [diff] [blame] | 6407 | * @param packageName The package of the component that would be set as device, user, or profile |
| 6408 | * owner. |
| 6409 | * @return A {@link ProvisioningPreCondition} value indicating whether provisioning is allowed. |
Mahaver Chopra | 849fd6f | 2016-11-03 20:28:10 +0000 | [diff] [blame] | 6410 | * @hide |
| 6411 | */ |
Esteban Talavera | 0157686 | 2016-12-15 11:16:44 +0000 | [diff] [blame] | 6412 | public @ProvisioningPreCondition int checkProvisioningPreCondition( |
| 6413 | String action, @NonNull String packageName) { |
Mahaver Chopra | 849fd6f | 2016-11-03 20:28:10 +0000 | [diff] [blame] | 6414 | try { |
Esteban Talavera | 0157686 | 2016-12-15 11:16:44 +0000 | [diff] [blame] | 6415 | return mService.checkProvisioningPreCondition(action, packageName); |
Mahaver Chopra | 849fd6f | 2016-11-03 20:28:10 +0000 | [diff] [blame] | 6416 | } catch (RemoteException re) { |
| 6417 | throw re.rethrowFromSystemServer(); |
| 6418 | } |
| 6419 | } |
| 6420 | |
| 6421 | /** |
Mahaver Chopra | 15a46b0 | 2015-11-11 14:54:35 +0000 | [diff] [blame] | 6422 | * Return if this user is a managed profile of another user. An admin can become the profile |
| 6423 | * owner of a managed profile with {@link #ACTION_PROVISION_MANAGED_PROFILE} and of a managed |
Kenny Guy | ffa3840 | 2016-03-31 16:40:57 +0100 | [diff] [blame] | 6424 | * user with {@link #createAndManageUser} |
Mahaver Chopra | 15a46b0 | 2015-11-11 14:54:35 +0000 | [diff] [blame] | 6425 | * @param admin Which profile owner this request is associated with. |
| 6426 | * @return if this user is a managed profile of another user. |
| 6427 | */ |
| 6428 | public boolean isManagedProfile(@NonNull ComponentName admin) { |
Benjamin Franz | bc33c82 | 2016-04-15 08:57:52 +0100 | [diff] [blame] | 6429 | throwIfParentInstance("isManagedProfile"); |
Mahaver Chopra | 15a46b0 | 2015-11-11 14:54:35 +0000 | [diff] [blame] | 6430 | try { |
| 6431 | return mService.isManagedProfile(admin); |
| 6432 | } catch (RemoteException re) { |
Jeff Sharkey | dbff9ca | 2016-03-01 19:46:25 -0700 | [diff] [blame] | 6433 | throw re.rethrowFromSystemServer(); |
Mahaver Chopra | 15a46b0 | 2015-11-11 14:54:35 +0000 | [diff] [blame] | 6434 | } |
| 6435 | } |
| 6436 | |
| 6437 | /** |
| 6438 | * @hide |
| 6439 | * Return if this user is a system-only user. An admin can manage a device from a system only |
| 6440 | * user by calling {@link #ACTION_PROVISION_MANAGED_SHAREABLE_DEVICE}. |
| 6441 | * @param admin Which device owner this request is associated with. |
| 6442 | * @return if this user is a system-only user. |
| 6443 | */ |
| 6444 | public boolean isSystemOnlyUser(@NonNull ComponentName admin) { |
| 6445 | try { |
| 6446 | return mService.isSystemOnlyUser(admin); |
| 6447 | } catch (RemoteException re) { |
Jeff Sharkey | dbff9ca | 2016-03-01 19:46:25 -0700 | [diff] [blame] | 6448 | throw re.rethrowFromSystemServer(); |
Mahaver Chopra | 15a46b0 | 2015-11-11 14:54:35 +0000 | [diff] [blame] | 6449 | } |
| 6450 | } |
Makoto Onuki | a31ebbc | 2015-11-23 17:15:21 -0800 | [diff] [blame] | 6451 | |
| 6452 | /** |
| 6453 | * Called by device owner to get the MAC address of the Wi-Fi device. |
| 6454 | * |
Sudheer Shanka | 3cb4da1 | 2016-03-07 18:51:49 -0800 | [diff] [blame] | 6455 | * @param admin Which device owner this request is associated with. |
Suprabh Shukla | 34d92ef | 2016-03-14 13:49:37 -0700 | [diff] [blame] | 6456 | * @return the MAC address of the Wi-Fi device, or null when the information is not available. |
| 6457 | * (For example, Wi-Fi hasn't been enabled, or the device doesn't support Wi-Fi.) |
| 6458 | * <p> |
| 6459 | * The address will be in the {@code XX:XX:XX:XX:XX:XX} format. |
| 6460 | * @throws SecurityException if {@code admin} is not a device owner. |
Makoto Onuki | a31ebbc | 2015-11-23 17:15:21 -0800 | [diff] [blame] | 6461 | */ |
Makoto Onuki | 408e8e4 | 2016-10-25 12:10:27 -0700 | [diff] [blame] | 6462 | public @Nullable String getWifiMacAddress(@NonNull ComponentName admin) { |
Benjamin Franz | bc33c82 | 2016-04-15 08:57:52 +0100 | [diff] [blame] | 6463 | throwIfParentInstance("getWifiMacAddress"); |
Makoto Onuki | a31ebbc | 2015-11-23 17:15:21 -0800 | [diff] [blame] | 6464 | try { |
Sudheer Shanka | 3cb4da1 | 2016-03-07 18:51:49 -0800 | [diff] [blame] | 6465 | return mService.getWifiMacAddress(admin); |
Makoto Onuki | a31ebbc | 2015-11-23 17:15:21 -0800 | [diff] [blame] | 6466 | } catch (RemoteException re) { |
Jeff Sharkey | dbff9ca | 2016-03-01 19:46:25 -0700 | [diff] [blame] | 6467 | throw re.rethrowFromSystemServer(); |
Makoto Onuki | a31ebbc | 2015-11-23 17:15:21 -0800 | [diff] [blame] | 6468 | } |
| 6469 | } |
Mahaver Chopra | 1ce53bc | 2015-12-14 13:35:14 +0000 | [diff] [blame] | 6470 | |
| 6471 | /** |
Mahaver Chopra | 1216ae5 | 2016-03-11 15:39:48 +0000 | [diff] [blame] | 6472 | * Called by device owner to reboot the device. If there is an ongoing call on the device, |
| 6473 | * throws an {@link IllegalStateException}. |
Suprabh Shukla | 34d92ef | 2016-03-14 13:49:37 -0700 | [diff] [blame] | 6474 | * @param admin Which device owner the request is associated with. |
Mahaver Chopra | 1216ae5 | 2016-03-11 15:39:48 +0000 | [diff] [blame] | 6475 | * @throws IllegalStateException if device has an ongoing call. |
Suprabh Shukla | 34d92ef | 2016-03-14 13:49:37 -0700 | [diff] [blame] | 6476 | * @throws SecurityException if {@code admin} is not a device owner. |
Mahaver Chopra | 1216ae5 | 2016-03-11 15:39:48 +0000 | [diff] [blame] | 6477 | * @see TelephonyManager#CALL_STATE_IDLE |
Mahaver Chopra | 1ce53bc | 2015-12-14 13:35:14 +0000 | [diff] [blame] | 6478 | */ |
| 6479 | public void reboot(@NonNull ComponentName admin) { |
Benjamin Franz | bc33c82 | 2016-04-15 08:57:52 +0100 | [diff] [blame] | 6480 | throwIfParentInstance("reboot"); |
Mahaver Chopra | 1ce53bc | 2015-12-14 13:35:14 +0000 | [diff] [blame] | 6481 | try { |
| 6482 | mService.reboot(admin); |
| 6483 | } catch (RemoteException re) { |
Jeff Sharkey | dbff9ca | 2016-03-01 19:46:25 -0700 | [diff] [blame] | 6484 | throw re.rethrowFromSystemServer(); |
Mahaver Chopra | 1ce53bc | 2015-12-14 13:35:14 +0000 | [diff] [blame] | 6485 | } |
| 6486 | } |
Kenny Guy | 06de4e7 | 2015-12-22 12:07:39 +0000 | [diff] [blame] | 6487 | |
| 6488 | /** |
Suprabh Shukla | 34d92ef | 2016-03-14 13:49:37 -0700 | [diff] [blame] | 6489 | * Called by a device admin to set the short support message. This will be displayed to the user |
| 6490 | * in settings screens where funtionality has been disabled by the admin. The message should be |
| 6491 | * limited to a short statement such as "This setting is disabled by your administrator. Contact |
| 6492 | * someone@example.com for support." If the message is longer than 200 characters it may be |
| 6493 | * truncated. |
| 6494 | * <p> |
| 6495 | * If the short support message needs to be localized, it is the responsibility of the |
Benjamin Franz | 3e8a709 | 2016-01-25 16:19:08 +0000 | [diff] [blame] | 6496 | * {@link DeviceAdminReceiver} to listen to the {@link Intent#ACTION_LOCALE_CHANGED} broadcast |
| 6497 | * and set a new version of this string accordingly. |
| 6498 | * |
Kenny Guy | 06de4e7 | 2015-12-22 12:07:39 +0000 | [diff] [blame] | 6499 | * @see #setLongSupportMessage |
Kenny Guy | 06de4e7 | 2015-12-22 12:07:39 +0000 | [diff] [blame] | 6500 | * @param admin Which {@link DeviceAdminReceiver} this request is associated with. |
Suprabh Shukla | 34d92ef | 2016-03-14 13:49:37 -0700 | [diff] [blame] | 6501 | * @param message Short message to be displayed to the user in settings or null to clear the |
| 6502 | * existing message. |
| 6503 | * @throws SecurityException if {@code admin} is not an active administrator. |
Kenny Guy | 06de4e7 | 2015-12-22 12:07:39 +0000 | [diff] [blame] | 6504 | */ |
| 6505 | public void setShortSupportMessage(@NonNull ComponentName admin, |
Sudheer Shanka | 3ccca91e | 2016-04-11 21:36:17 -0700 | [diff] [blame] | 6506 | @Nullable CharSequence message) { |
Benjamin Franz | bc33c82 | 2016-04-15 08:57:52 +0100 | [diff] [blame] | 6507 | throwIfParentInstance("setShortSupportMessage"); |
Kenny Guy | 06de4e7 | 2015-12-22 12:07:39 +0000 | [diff] [blame] | 6508 | if (mService != null) { |
| 6509 | try { |
| 6510 | mService.setShortSupportMessage(admin, message); |
| 6511 | } catch (RemoteException e) { |
Jeff Sharkey | dbff9ca | 2016-03-01 19:46:25 -0700 | [diff] [blame] | 6512 | throw e.rethrowFromSystemServer(); |
Kenny Guy | 06de4e7 | 2015-12-22 12:07:39 +0000 | [diff] [blame] | 6513 | } |
| 6514 | } |
| 6515 | } |
| 6516 | |
| 6517 | /** |
| 6518 | * Called by a device admin to get the short support message. |
| 6519 | * |
| 6520 | * @param admin Which {@link DeviceAdminReceiver} this request is associated with. |
Sudheer Shanka | 3ccca91e | 2016-04-11 21:36:17 -0700 | [diff] [blame] | 6521 | * @return The message set by {@link #setShortSupportMessage(ComponentName, CharSequence)} or |
| 6522 | * null if no message has been set. |
Suprabh Shukla | 34d92ef | 2016-03-14 13:49:37 -0700 | [diff] [blame] | 6523 | * @throws SecurityException if {@code admin} is not an active administrator. |
Kenny Guy | 06de4e7 | 2015-12-22 12:07:39 +0000 | [diff] [blame] | 6524 | */ |
Sudheer Shanka | 3ccca91e | 2016-04-11 21:36:17 -0700 | [diff] [blame] | 6525 | public CharSequence getShortSupportMessage(@NonNull ComponentName admin) { |
Benjamin Franz | bc33c82 | 2016-04-15 08:57:52 +0100 | [diff] [blame] | 6526 | throwIfParentInstance("getShortSupportMessage"); |
Kenny Guy | 06de4e7 | 2015-12-22 12:07:39 +0000 | [diff] [blame] | 6527 | if (mService != null) { |
| 6528 | try { |
| 6529 | return mService.getShortSupportMessage(admin); |
| 6530 | } catch (RemoteException e) { |
Jeff Sharkey | dbff9ca | 2016-03-01 19:46:25 -0700 | [diff] [blame] | 6531 | throw e.rethrowFromSystemServer(); |
Kenny Guy | 06de4e7 | 2015-12-22 12:07:39 +0000 | [diff] [blame] | 6532 | } |
| 6533 | } |
| 6534 | return null; |
| 6535 | } |
| 6536 | |
| 6537 | /** |
Suprabh Shukla | 34d92ef | 2016-03-14 13:49:37 -0700 | [diff] [blame] | 6538 | * Called by a device admin to set the long support message. This will be displayed to the user |
| 6539 | * in the device administators settings screen. |
| 6540 | * <p> |
| 6541 | * If the long support message needs to be localized, it is the responsibility of the |
Benjamin Franz | 3e8a709 | 2016-01-25 16:19:08 +0000 | [diff] [blame] | 6542 | * {@link DeviceAdminReceiver} to listen to the {@link Intent#ACTION_LOCALE_CHANGED} broadcast |
| 6543 | * and set a new version of this string accordingly. |
| 6544 | * |
Kenny Guy | 06de4e7 | 2015-12-22 12:07:39 +0000 | [diff] [blame] | 6545 | * @see #setShortSupportMessage |
Kenny Guy | 06de4e7 | 2015-12-22 12:07:39 +0000 | [diff] [blame] | 6546 | * @param admin Which {@link DeviceAdminReceiver} this request is associated with. |
Suprabh Shukla | 34d92ef | 2016-03-14 13:49:37 -0700 | [diff] [blame] | 6547 | * @param message Long message to be displayed to the user in settings or null to clear the |
| 6548 | * existing message. |
| 6549 | * @throws SecurityException if {@code admin} is not an active administrator. |
Kenny Guy | 06de4e7 | 2015-12-22 12:07:39 +0000 | [diff] [blame] | 6550 | */ |
| 6551 | public void setLongSupportMessage(@NonNull ComponentName admin, |
Sudheer Shanka | 3ccca91e | 2016-04-11 21:36:17 -0700 | [diff] [blame] | 6552 | @Nullable CharSequence message) { |
Benjamin Franz | bc33c82 | 2016-04-15 08:57:52 +0100 | [diff] [blame] | 6553 | throwIfParentInstance("setLongSupportMessage"); |
Kenny Guy | 06de4e7 | 2015-12-22 12:07:39 +0000 | [diff] [blame] | 6554 | if (mService != null) { |
| 6555 | try { |
| 6556 | mService.setLongSupportMessage(admin, message); |
| 6557 | } catch (RemoteException e) { |
Jeff Sharkey | dbff9ca | 2016-03-01 19:46:25 -0700 | [diff] [blame] | 6558 | throw e.rethrowFromSystemServer(); |
Kenny Guy | 06de4e7 | 2015-12-22 12:07:39 +0000 | [diff] [blame] | 6559 | } |
| 6560 | } |
| 6561 | } |
| 6562 | |
| 6563 | /** |
| 6564 | * Called by a device admin to get the long support message. |
| 6565 | * |
| 6566 | * @param admin Which {@link DeviceAdminReceiver} this request is associated with. |
Sudheer Shanka | 3ccca91e | 2016-04-11 21:36:17 -0700 | [diff] [blame] | 6567 | * @return The message set by {@link #setLongSupportMessage(ComponentName, CharSequence)} or |
| 6568 | * null if no message has been set. |
Suprabh Shukla | 34d92ef | 2016-03-14 13:49:37 -0700 | [diff] [blame] | 6569 | * @throws SecurityException if {@code admin} is not an active administrator. |
Kenny Guy | 06de4e7 | 2015-12-22 12:07:39 +0000 | [diff] [blame] | 6570 | */ |
Makoto Onuki | 408e8e4 | 2016-10-25 12:10:27 -0700 | [diff] [blame] | 6571 | public @Nullable CharSequence getLongSupportMessage(@NonNull ComponentName admin) { |
Benjamin Franz | bc33c82 | 2016-04-15 08:57:52 +0100 | [diff] [blame] | 6572 | throwIfParentInstance("getLongSupportMessage"); |
Kenny Guy | 06de4e7 | 2015-12-22 12:07:39 +0000 | [diff] [blame] | 6573 | if (mService != null) { |
| 6574 | try { |
| 6575 | return mService.getLongSupportMessage(admin); |
| 6576 | } catch (RemoteException e) { |
Jeff Sharkey | dbff9ca | 2016-03-01 19:46:25 -0700 | [diff] [blame] | 6577 | throw e.rethrowFromSystemServer(); |
Kenny Guy | 06de4e7 | 2015-12-22 12:07:39 +0000 | [diff] [blame] | 6578 | } |
| 6579 | } |
| 6580 | return null; |
| 6581 | } |
| 6582 | |
| 6583 | /** |
| 6584 | * Called by the system to get the short support message. |
| 6585 | * |
| 6586 | * @param admin Which {@link DeviceAdminReceiver} this request is associated with. |
| 6587 | * @param userHandle user id the admin is running as. |
Sudheer Shanka | 3ccca91e | 2016-04-11 21:36:17 -0700 | [diff] [blame] | 6588 | * @return The message set by {@link #setShortSupportMessage(ComponentName, CharSequence)} |
Kenny Guy | 06de4e7 | 2015-12-22 12:07:39 +0000 | [diff] [blame] | 6589 | * |
| 6590 | * @hide |
| 6591 | */ |
Makoto Onuki | 408e8e4 | 2016-10-25 12:10:27 -0700 | [diff] [blame] | 6592 | public @Nullable CharSequence getShortSupportMessageForUser(@NonNull ComponentName admin, |
Sudheer Shanka | 3ccca91e | 2016-04-11 21:36:17 -0700 | [diff] [blame] | 6593 | int userHandle) { |
Kenny Guy | 06de4e7 | 2015-12-22 12:07:39 +0000 | [diff] [blame] | 6594 | if (mService != null) { |
| 6595 | try { |
| 6596 | return mService.getShortSupportMessageForUser(admin, userHandle); |
| 6597 | } catch (RemoteException e) { |
Jeff Sharkey | dbff9ca | 2016-03-01 19:46:25 -0700 | [diff] [blame] | 6598 | throw e.rethrowFromSystemServer(); |
Kenny Guy | 06de4e7 | 2015-12-22 12:07:39 +0000 | [diff] [blame] | 6599 | } |
| 6600 | } |
| 6601 | return null; |
| 6602 | } |
| 6603 | |
| 6604 | |
| 6605 | /** |
| 6606 | * Called by the system to get the long support message. |
| 6607 | * |
| 6608 | * @param admin Which {@link DeviceAdminReceiver} this request is associated with. |
| 6609 | * @param userHandle user id the admin is running as. |
Sudheer Shanka | 3ccca91e | 2016-04-11 21:36:17 -0700 | [diff] [blame] | 6610 | * @return The message set by {@link #setLongSupportMessage(ComponentName, CharSequence)} |
Kenny Guy | 06de4e7 | 2015-12-22 12:07:39 +0000 | [diff] [blame] | 6611 | * |
| 6612 | * @hide |
| 6613 | */ |
Makoto Onuki | 408e8e4 | 2016-10-25 12:10:27 -0700 | [diff] [blame] | 6614 | public @Nullable CharSequence getLongSupportMessageForUser( |
| 6615 | @NonNull ComponentName admin, int userHandle) { |
Kenny Guy | 06de4e7 | 2015-12-22 12:07:39 +0000 | [diff] [blame] | 6616 | if (mService != null) { |
| 6617 | try { |
| 6618 | return mService.getLongSupportMessageForUser(admin, userHandle); |
| 6619 | } catch (RemoteException e) { |
Jeff Sharkey | dbff9ca | 2016-03-01 19:46:25 -0700 | [diff] [blame] | 6620 | throw e.rethrowFromSystemServer(); |
Kenny Guy | 06de4e7 | 2015-12-22 12:07:39 +0000 | [diff] [blame] | 6621 | } |
| 6622 | } |
| 6623 | return null; |
| 6624 | } |
Clara Bayarri | 3e826ef | 2015-12-14 17:51:22 +0000 | [diff] [blame] | 6625 | |
| 6626 | /** |
Esteban Talavera | 6239991 | 2016-01-11 15:37:55 +0000 | [diff] [blame] | 6627 | * Called by the profile owner of a managed profile to obtain a {@link DevicePolicyManager} |
| 6628 | * whose calls act on the parent profile. |
Benjamin Franz | 66b45f0 | 2016-04-05 19:12:39 +0100 | [diff] [blame] | 6629 | * |
| 6630 | * <p>The following methods are supported for the parent instance, all other methods will |
| 6631 | * throw a SecurityException when called on the parent instance: |
| 6632 | * <ul> |
| 6633 | * <li>{@link #getPasswordQuality}</li> |
| 6634 | * <li>{@link #setPasswordQuality}</li> |
| 6635 | * <li>{@link #getPasswordMinimumLength}</li> |
| 6636 | * <li>{@link #setPasswordMinimumLength}</li> |
| 6637 | * <li>{@link #getPasswordMinimumUpperCase}</li> |
| 6638 | * <li>{@link #setPasswordMinimumUpperCase}</li> |
| 6639 | * <li>{@link #getPasswordMinimumLowerCase}</li> |
| 6640 | * <li>{@link #setPasswordMinimumLowerCase}</li> |
| 6641 | * <li>{@link #getPasswordMinimumLetters}</li> |
| 6642 | * <li>{@link #setPasswordMinimumLetters}</li> |
| 6643 | * <li>{@link #getPasswordMinimumNumeric}</li> |
| 6644 | * <li>{@link #setPasswordMinimumNumeric}</li> |
| 6645 | * <li>{@link #getPasswordMinimumSymbols}</li> |
| 6646 | * <li>{@link #setPasswordMinimumSymbols}</li> |
| 6647 | * <li>{@link #getPasswordMinimumNonLetter}</li> |
| 6648 | * <li>{@link #setPasswordMinimumNonLetter}</li> |
| 6649 | * <li>{@link #getPasswordHistoryLength}</li> |
| 6650 | * <li>{@link #setPasswordHistoryLength}</li> |
| 6651 | * <li>{@link #getPasswordExpirationTimeout}</li> |
| 6652 | * <li>{@link #setPasswordExpirationTimeout}</li> |
| 6653 | * <li>{@link #getPasswordExpiration}</li> |
Charles He | 8c76056 | 2016-10-25 16:36:53 +0100 | [diff] [blame] | 6654 | * <li>{@link #getPasswordMaximumLength}</li> |
Benjamin Franz | 66b45f0 | 2016-04-05 19:12:39 +0100 | [diff] [blame] | 6655 | * <li>{@link #isActivePasswordSufficient}</li> |
| 6656 | * <li>{@link #getCurrentFailedPasswordAttempts}</li> |
| 6657 | * <li>{@link #getMaximumFailedPasswordsForWipe}</li> |
| 6658 | * <li>{@link #setMaximumFailedPasswordsForWipe}</li> |
| 6659 | * <li>{@link #getMaximumTimeToLock}</li> |
| 6660 | * <li>{@link #setMaximumTimeToLock}</li> |
| 6661 | * <li>{@link #lockNow}</li> |
| 6662 | * <li>{@link #getKeyguardDisabledFeatures}</li> |
| 6663 | * <li>{@link #setKeyguardDisabledFeatures}</li> |
| 6664 | * <li>{@link #getTrustAgentConfiguration}</li> |
| 6665 | * <li>{@link #setTrustAgentConfiguration}</li> |
Michal Karpinski | a20d8bb | 2016-11-23 12:09:08 +0000 | [diff] [blame] | 6666 | * <li>{@link #getRequiredStrongAuthTimeout}</li> |
| 6667 | * <li>{@link #setRequiredStrongAuthTimeout}</li> |
Benjamin Franz | 66b45f0 | 2016-04-05 19:12:39 +0100 | [diff] [blame] | 6668 | * </ul> |
Clara Bayarri | 3e826ef | 2015-12-14 17:51:22 +0000 | [diff] [blame] | 6669 | * |
| 6670 | * @return a new instance of {@link DevicePolicyManager} that acts on the parent profile. |
Suprabh Shukla | 34d92ef | 2016-03-14 13:49:37 -0700 | [diff] [blame] | 6671 | * @throws SecurityException if {@code admin} is not a profile owner. |
Clara Bayarri | 3e826ef | 2015-12-14 17:51:22 +0000 | [diff] [blame] | 6672 | */ |
Makoto Onuki | 408e8e4 | 2016-10-25 12:10:27 -0700 | [diff] [blame] | 6673 | public @NonNull DevicePolicyManager getParentProfileInstance(@NonNull ComponentName admin) { |
Benjamin Franz | bc33c82 | 2016-04-15 08:57:52 +0100 | [diff] [blame] | 6674 | throwIfParentInstance("getParentProfileInstance"); |
Clara Bayarri | 3e826ef | 2015-12-14 17:51:22 +0000 | [diff] [blame] | 6675 | try { |
| 6676 | if (!mService.isManagedProfile(admin)) { |
| 6677 | throw new SecurityException("The current user does not have a parent profile."); |
| 6678 | } |
Jeff Sharkey | 49ca529 | 2016-05-10 12:54:45 -0600 | [diff] [blame] | 6679 | return new DevicePolicyManager(mContext, mService, true); |
Rubin Xu | c3cd05f | 2016-01-11 12:11:35 +0000 | [diff] [blame] | 6680 | } catch (RemoteException e) { |
Jeff Sharkey | dbff9ca | 2016-03-01 19:46:25 -0700 | [diff] [blame] | 6681 | throw e.rethrowFromSystemServer(); |
Rubin Xu | c3cd05f | 2016-01-11 12:11:35 +0000 | [diff] [blame] | 6682 | } |
| 6683 | } |
| 6684 | |
| 6685 | /** |
Esteban Talavera | d36dd15 | 2016-12-15 08:51:45 +0000 | [diff] [blame] | 6686 | * Called by device owner to control the security logging feature. |
Michal Karpinski | 6235a94 | 2016-03-15 12:07:23 +0000 | [diff] [blame] | 6687 | * |
| 6688 | * <p> Security logs contain various information intended for security auditing purposes. |
| 6689 | * See {@link SecurityEvent} for details. |
| 6690 | * |
Esteban Talavera | d36dd15 | 2016-12-15 08:51:45 +0000 | [diff] [blame] | 6691 | * <p><strong>Note:</strong> The device owner won't be able to retrieve security logs if there |
| 6692 | * are unaffiliated secondary users or profiles on the device, regardless of whether the |
| 6693 | * feature is enabled. Logs will be discarded if the internal buffer fills up while waiting for |
| 6694 | * all users to become affiliated. Therefore it's recommended that affiliation ids are set for |
| 6695 | * new users as soon as possible after provisioning via {@link #setAffiliationIds}. |
Michal Karpinski | b58e496 | 2016-03-01 14:55:10 +0000 | [diff] [blame] | 6696 | * |
Rubin Xu | c3cd05f | 2016-01-11 12:11:35 +0000 | [diff] [blame] | 6697 | * @param admin Which device owner this request is associated with. |
Michal Karpinski | 6235a94 | 2016-03-15 12:07:23 +0000 | [diff] [blame] | 6698 | * @param enabled whether security logging should be enabled or not. |
Suprabh Shukla | 34d92ef | 2016-03-14 13:49:37 -0700 | [diff] [blame] | 6699 | * @throws SecurityException if {@code admin} is not a device owner. |
Michal Karpinski | 6235a94 | 2016-03-15 12:07:23 +0000 | [diff] [blame] | 6700 | * @see #retrieveSecurityLogs |
| 6701 | */ |
| 6702 | public void setSecurityLoggingEnabled(@NonNull ComponentName admin, boolean enabled) { |
Benjamin Franz | bc33c82 | 2016-04-15 08:57:52 +0100 | [diff] [blame] | 6703 | throwIfParentInstance("setSecurityLoggingEnabled"); |
Michal Karpinski | 6235a94 | 2016-03-15 12:07:23 +0000 | [diff] [blame] | 6704 | try { |
| 6705 | mService.setSecurityLoggingEnabled(admin, enabled); |
| 6706 | } catch (RemoteException re) { |
| 6707 | throw re.rethrowFromSystemServer(); |
| 6708 | } |
| 6709 | } |
| 6710 | |
| 6711 | /** |
Michal Karpinski | 6235a94 | 2016-03-15 12:07:23 +0000 | [diff] [blame] | 6712 | * Return whether security logging is enabled or not by the device owner. |
| 6713 | * |
| 6714 | * <p>Can only be called by the device owner, otherwise a {@link SecurityException} will be |
| 6715 | * thrown. |
| 6716 | * |
| 6717 | * @param admin Which device owner this request is associated with. |
| 6718 | * @return {@code true} if security logging is enabled by device owner, {@code false} otherwise. |
| 6719 | * @throws SecurityException if {@code admin} is not a device owner. |
| 6720 | */ |
| 6721 | public boolean isSecurityLoggingEnabled(@NonNull ComponentName admin) { |
Benjamin Franz | bc33c82 | 2016-04-15 08:57:52 +0100 | [diff] [blame] | 6722 | throwIfParentInstance("isSecurityLoggingEnabled"); |
Rubin Xu | c3cd05f | 2016-01-11 12:11:35 +0000 | [diff] [blame] | 6723 | try { |
Michal Karpinski | 6235a94 | 2016-03-15 12:07:23 +0000 | [diff] [blame] | 6724 | return mService.isSecurityLoggingEnabled(admin); |
Rubin Xu | c3cd05f | 2016-01-11 12:11:35 +0000 | [diff] [blame] | 6725 | } catch (RemoteException re) { |
Jeff Sharkey | dbff9ca | 2016-03-01 19:46:25 -0700 | [diff] [blame] | 6726 | throw re.rethrowFromSystemServer(); |
Rubin Xu | c3cd05f | 2016-01-11 12:11:35 +0000 | [diff] [blame] | 6727 | } |
| 6728 | } |
| 6729 | |
| 6730 | /** |
Michal Karpinski | 6235a94 | 2016-03-15 12:07:23 +0000 | [diff] [blame] | 6731 | * Called by device owner to retrieve all new security logging entries since the last call to |
| 6732 | * this API after device boots. |
| 6733 | * |
| 6734 | * <p> Access to the logs is rate limited and it will only return new logs after the device |
| 6735 | * owner has been notified via {@link DeviceAdminReceiver#onSecurityLogsAvailable}. |
| 6736 | * |
Esteban Talavera | d36dd15 | 2016-12-15 08:51:45 +0000 | [diff] [blame] | 6737 | * <p>If there is any other user or profile on the device, it must be affiliated with the |
| 6738 | * device owner. Otherwise a {@link SecurityException} will be thrown. See |
| 6739 | * {@link #setAffiliationIds} |
Michal Karpinski | b58e496 | 2016-03-01 14:55:10 +0000 | [diff] [blame] | 6740 | * |
Rubin Xu | c3cd05f | 2016-01-11 12:11:35 +0000 | [diff] [blame] | 6741 | * @param admin Which device owner this request is associated with. |
Michal Karpinski | 6235a94 | 2016-03-15 12:07:23 +0000 | [diff] [blame] | 6742 | * @return the new batch of security logs which is a list of {@link SecurityEvent}, |
| 6743 | * or {@code null} if rate limitation is exceeded or if logging is currently disabled. |
Esteban Talavera | d36dd15 | 2016-12-15 08:51:45 +0000 | [diff] [blame] | 6744 | * @throws SecurityException if {@code admin} is not a device owner, or there is at least one |
| 6745 | * profile or secondary user that is not affiliated with the device owner user. |
| 6746 | * @see DeviceAdminReceiver#onSecurityLogsAvailable |
Rubin Xu | c3cd05f | 2016-01-11 12:11:35 +0000 | [diff] [blame] | 6747 | */ |
Makoto Onuki | 408e8e4 | 2016-10-25 12:10:27 -0700 | [diff] [blame] | 6748 | public @Nullable List<SecurityEvent> retrieveSecurityLogs(@NonNull ComponentName admin) { |
Benjamin Franz | bc33c82 | 2016-04-15 08:57:52 +0100 | [diff] [blame] | 6749 | throwIfParentInstance("retrieveSecurityLogs"); |
Rubin Xu | c3cd05f | 2016-01-11 12:11:35 +0000 | [diff] [blame] | 6750 | try { |
Michal Karpinski | 6235a94 | 2016-03-15 12:07:23 +0000 | [diff] [blame] | 6751 | ParceledListSlice<SecurityEvent> list = mService.retrieveSecurityLogs(admin); |
Rubin Xu | c3cd05f | 2016-01-11 12:11:35 +0000 | [diff] [blame] | 6752 | if (list != null) { |
| 6753 | return list.getList(); |
| 6754 | } else { |
| 6755 | // Rate limit exceeded. |
| 6756 | return null; |
| 6757 | } |
Clara Bayarri | 3e826ef | 2015-12-14 17:51:22 +0000 | [diff] [blame] | 6758 | } catch (RemoteException re) { |
Jeff Sharkey | dbff9ca | 2016-03-01 19:46:25 -0700 | [diff] [blame] | 6759 | throw re.rethrowFromSystemServer(); |
Clara Bayarri | 3e826ef | 2015-12-14 17:51:22 +0000 | [diff] [blame] | 6760 | } |
| 6761 | } |
Benjamin Franz | 59720bb | 2016-01-18 15:26:11 +0000 | [diff] [blame] | 6762 | |
| 6763 | /** |
Sudheer Shanka | 978fc0d | 2016-01-28 13:51:10 +0000 | [diff] [blame] | 6764 | * Called by the system to obtain a {@link DevicePolicyManager} whose calls act on the parent |
| 6765 | * profile. |
| 6766 | * |
| 6767 | * @hide |
| 6768 | */ |
Makoto Onuki | 408e8e4 | 2016-10-25 12:10:27 -0700 | [diff] [blame] | 6769 | public @NonNull DevicePolicyManager getParentProfileInstance(UserInfo uInfo) { |
Sudheer Shanka | 978fc0d | 2016-01-28 13:51:10 +0000 | [diff] [blame] | 6770 | mContext.checkSelfPermission( |
| 6771 | android.Manifest.permission.MANAGE_PROFILE_AND_DEVICE_OWNERS); |
| 6772 | if (!uInfo.isManagedProfile()) { |
| 6773 | throw new SecurityException("The user " + uInfo.id |
| 6774 | + " does not have a parent profile."); |
| 6775 | } |
Jeff Sharkey | 49ca529 | 2016-05-10 12:54:45 -0600 | [diff] [blame] | 6776 | return new DevicePolicyManager(mContext, mService, true); |
Sudheer Shanka | 978fc0d | 2016-01-28 13:51:10 +0000 | [diff] [blame] | 6777 | } |
| 6778 | |
| 6779 | /** |
Rubin Xu | c3cd05f | 2016-01-11 12:11:35 +0000 | [diff] [blame] | 6780 | * Called by device owners to retrieve device logs from before the device's last reboot. |
Rubin Xu | c3cd05f | 2016-01-11 12:11:35 +0000 | [diff] [blame] | 6781 | * <p> |
Rubin Xu | 0fb6b9e | 2016-05-04 19:01:07 +0100 | [diff] [blame] | 6782 | * <strong> This API is not supported on all devices. Calling this API on unsupported devices |
| 6783 | * will result in {@code null} being returned. The device logs are retrieved from a RAM region |
| 6784 | * which is not guaranteed to be corruption-free during power cycles, as a result be cautious |
| 6785 | * about data corruption when parsing. </strong> |
Esteban Talavera | d36dd15 | 2016-12-15 08:51:45 +0000 | [diff] [blame] | 6786 | * |
| 6787 | * <p>If there is any other user or profile on the device, it must be affiliated with the |
| 6788 | * device owner. Otherwise a {@link SecurityException} will be thrown. See |
| 6789 | * {@link #setAffiliationIds} |
Michal Karpinski | b58e496 | 2016-03-01 14:55:10 +0000 | [diff] [blame] | 6790 | * |
Rubin Xu | c3cd05f | 2016-01-11 12:11:35 +0000 | [diff] [blame] | 6791 | * @param admin Which device owner this request is associated with. |
Rubin Xu | 0fb6b9e | 2016-05-04 19:01:07 +0100 | [diff] [blame] | 6792 | * @return Device logs from before the latest reboot of the system, or {@code null} if this API |
| 6793 | * is not supported on the device. |
Esteban Talavera | d36dd15 | 2016-12-15 08:51:45 +0000 | [diff] [blame] | 6794 | * @throws SecurityException if {@code admin} is not a device owner, or there is at least one |
| 6795 | * profile or secondary user that is not affiliated with the device owner user. |
| 6796 | * @see #retrieveSecurityLogs |
Rubin Xu | c3cd05f | 2016-01-11 12:11:35 +0000 | [diff] [blame] | 6797 | */ |
Makoto Onuki | 408e8e4 | 2016-10-25 12:10:27 -0700 | [diff] [blame] | 6798 | public @Nullable List<SecurityEvent> retrievePreRebootSecurityLogs( |
| 6799 | @NonNull ComponentName admin) { |
Benjamin Franz | bc33c82 | 2016-04-15 08:57:52 +0100 | [diff] [blame] | 6800 | throwIfParentInstance("retrievePreRebootSecurityLogs"); |
Rubin Xu | c3cd05f | 2016-01-11 12:11:35 +0000 | [diff] [blame] | 6801 | try { |
Michal Karpinski | 6235a94 | 2016-03-15 12:07:23 +0000 | [diff] [blame] | 6802 | ParceledListSlice<SecurityEvent> list = mService.retrievePreRebootSecurityLogs(admin); |
Rubin Xu | 0fb6b9e | 2016-05-04 19:01:07 +0100 | [diff] [blame] | 6803 | if (list != null) { |
| 6804 | return list.getList(); |
| 6805 | } else { |
| 6806 | return null; |
| 6807 | } |
Rubin Xu | c3cd05f | 2016-01-11 12:11:35 +0000 | [diff] [blame] | 6808 | } catch (RemoteException re) { |
Jeff Sharkey | dbff9ca | 2016-03-01 19:46:25 -0700 | [diff] [blame] | 6809 | throw re.rethrowFromSystemServer(); |
Rubin Xu | c3cd05f | 2016-01-11 12:11:35 +0000 | [diff] [blame] | 6810 | } |
| 6811 | } |
| 6812 | |
| 6813 | /** |
Suprabh Shukla | 34d92ef | 2016-03-14 13:49:37 -0700 | [diff] [blame] | 6814 | * Called by a profile owner of a managed profile to set the color used for customization. This |
| 6815 | * color is used as background color of the confirm credentials screen for that user. The |
Clara Bayarri | 8d0bd7fa | 2016-03-30 14:59:58 +0100 | [diff] [blame] | 6816 | * default color is teal (#00796B). |
Suprabh Shukla | 34d92ef | 2016-03-14 13:49:37 -0700 | [diff] [blame] | 6817 | * <p> |
| 6818 | * The confirm credentials screen can be created using |
Benjamin Franz | 59720bb | 2016-01-18 15:26:11 +0000 | [diff] [blame] | 6819 | * {@link android.app.KeyguardManager#createConfirmDeviceCredentialIntent}. |
| 6820 | * |
| 6821 | * @param admin Which {@link DeviceAdminReceiver} this request is associated with. |
Michal Karpinski | 74cd730 | 2016-04-12 15:17:36 +0100 | [diff] [blame] | 6822 | * @param color The 24bit (0xRRGGBB) representation of the color to be used. |
Suprabh Shukla | 34d92ef | 2016-03-14 13:49:37 -0700 | [diff] [blame] | 6823 | * @throws SecurityException if {@code admin} is not a profile owner. |
Benjamin Franz | 59720bb | 2016-01-18 15:26:11 +0000 | [diff] [blame] | 6824 | */ |
| 6825 | public void setOrganizationColor(@NonNull ComponentName admin, int color) { |
Benjamin Franz | bc33c82 | 2016-04-15 08:57:52 +0100 | [diff] [blame] | 6826 | throwIfParentInstance("setOrganizationColor"); |
Benjamin Franz | 59720bb | 2016-01-18 15:26:11 +0000 | [diff] [blame] | 6827 | try { |
Michal Karpinski | 74cd730 | 2016-04-12 15:17:36 +0100 | [diff] [blame] | 6828 | // always enforce alpha channel to have 100% opacity |
| 6829 | color |= 0xFF000000; |
Benjamin Franz | 59720bb | 2016-01-18 15:26:11 +0000 | [diff] [blame] | 6830 | mService.setOrganizationColor(admin, color); |
| 6831 | } catch (RemoteException re) { |
Jeff Sharkey | dbff9ca | 2016-03-01 19:46:25 -0700 | [diff] [blame] | 6832 | throw re.rethrowFromSystemServer(); |
Benjamin Franz | 59720bb | 2016-01-18 15:26:11 +0000 | [diff] [blame] | 6833 | } |
| 6834 | } |
| 6835 | |
| 6836 | /** |
Nicolas Prevot | 8f7698a | 2016-02-11 16:05:33 +0000 | [diff] [blame] | 6837 | * @hide |
| 6838 | * |
| 6839 | * Sets the color used for customization. |
| 6840 | * |
Michal Karpinski | 74cd730 | 2016-04-12 15:17:36 +0100 | [diff] [blame] | 6841 | * @param color The 24bit (0xRRGGBB) representation of the color to be used. |
Nicolas Prevot | 8f7698a | 2016-02-11 16:05:33 +0000 | [diff] [blame] | 6842 | * @param userId which user to set the color to. |
| 6843 | * @RequiresPermission(allOf = { |
| 6844 | * Manifest.permission.MANAGE_USERS, |
| 6845 | * Manifest.permission.INTERACT_ACROSS_USERS_FULL}) |
| 6846 | */ |
| 6847 | public void setOrganizationColorForUser(@ColorInt int color, @UserIdInt int userId) { |
| 6848 | try { |
Michal Karpinski | 74cd730 | 2016-04-12 15:17:36 +0100 | [diff] [blame] | 6849 | // always enforce alpha channel to have 100% opacity |
| 6850 | color |= 0xFF000000; |
Nicolas Prevot | 8f7698a | 2016-02-11 16:05:33 +0000 | [diff] [blame] | 6851 | mService.setOrganizationColorForUser(color, userId); |
| 6852 | } catch (RemoteException re) { |
Jeff Sharkey | dbff9ca | 2016-03-01 19:46:25 -0700 | [diff] [blame] | 6853 | throw re.rethrowFromSystemServer(); |
Nicolas Prevot | 8f7698a | 2016-02-11 16:05:33 +0000 | [diff] [blame] | 6854 | } |
| 6855 | } |
| 6856 | |
| 6857 | /** |
Benjamin Franz | 59720bb | 2016-01-18 15:26:11 +0000 | [diff] [blame] | 6858 | * Called by a profile owner of a managed profile to retrieve the color used for customization. |
| 6859 | * This color is used as background color of the confirm credentials screen for that user. |
| 6860 | * |
| 6861 | * @param admin Which {@link DeviceAdminReceiver} this request is associated with. |
Michal Karpinski | 74cd730 | 2016-04-12 15:17:36 +0100 | [diff] [blame] | 6862 | * @return The 24bit (0xRRGGBB) representation of the color to be used. |
Suprabh Shukla | 34d92ef | 2016-03-14 13:49:37 -0700 | [diff] [blame] | 6863 | * @throws SecurityException if {@code admin} is not a profile owner. |
Benjamin Franz | 59720bb | 2016-01-18 15:26:11 +0000 | [diff] [blame] | 6864 | */ |
Michal Karpinski | 74cd730 | 2016-04-12 15:17:36 +0100 | [diff] [blame] | 6865 | public @ColorInt int getOrganizationColor(@NonNull ComponentName admin) { |
Benjamin Franz | bc33c82 | 2016-04-15 08:57:52 +0100 | [diff] [blame] | 6866 | throwIfParentInstance("getOrganizationColor"); |
Benjamin Franz | 59720bb | 2016-01-18 15:26:11 +0000 | [diff] [blame] | 6867 | try { |
| 6868 | return mService.getOrganizationColor(admin); |
| 6869 | } catch (RemoteException re) { |
Jeff Sharkey | dbff9ca | 2016-03-01 19:46:25 -0700 | [diff] [blame] | 6870 | throw re.rethrowFromSystemServer(); |
Benjamin Franz | 59720bb | 2016-01-18 15:26:11 +0000 | [diff] [blame] | 6871 | } |
| 6872 | } |
| 6873 | |
| 6874 | /** |
| 6875 | * @hide |
| 6876 | * Retrieve the customization color for a given user. |
| 6877 | * |
| 6878 | * @param userHandle The user id of the user we're interested in. |
Michal Karpinski | 74cd730 | 2016-04-12 15:17:36 +0100 | [diff] [blame] | 6879 | * @return The 24bit (0xRRGGBB) representation of the color to be used. |
Benjamin Franz | 59720bb | 2016-01-18 15:26:11 +0000 | [diff] [blame] | 6880 | */ |
Michal Karpinski | 74cd730 | 2016-04-12 15:17:36 +0100 | [diff] [blame] | 6881 | public @ColorInt int getOrganizationColorForUser(int userHandle) { |
Benjamin Franz | 59720bb | 2016-01-18 15:26:11 +0000 | [diff] [blame] | 6882 | try { |
| 6883 | return mService.getOrganizationColorForUser(userHandle); |
| 6884 | } catch (RemoteException re) { |
Jeff Sharkey | dbff9ca | 2016-03-01 19:46:25 -0700 | [diff] [blame] | 6885 | throw re.rethrowFromSystemServer(); |
Benjamin Franz | 59720bb | 2016-01-18 15:26:11 +0000 | [diff] [blame] | 6886 | } |
| 6887 | } |
Bartosz Fabianowski | 4c052f2 | 2016-01-25 14:18:43 +0100 | [diff] [blame] | 6888 | |
| 6889 | /** |
Bartosz Fabianowski | 365a3db | 2016-11-30 18:28:10 +0100 | [diff] [blame] | 6890 | * Called by the device owner or profile owner to set the name of the organization under |
Benjamin Franz | 3e8a709 | 2016-01-25 16:19:08 +0000 | [diff] [blame] | 6891 | * management. |
Suprabh Shukla | 34d92ef | 2016-03-14 13:49:37 -0700 | [diff] [blame] | 6892 | * <p> |
| 6893 | * If the organization name needs to be localized, it is the responsibility of the |
Benjamin Franz | 3e8a709 | 2016-01-25 16:19:08 +0000 | [diff] [blame] | 6894 | * {@link DeviceAdminReceiver} to listen to the {@link Intent#ACTION_LOCALE_CHANGED} broadcast |
| 6895 | * and set a new version of this string accordingly. |
| 6896 | * |
| 6897 | * @param admin Which {@link DeviceAdminReceiver} this request is associated with. |
| 6898 | * @param title The organization name or {@code null} to clear a previously set name. |
Bartosz Fabianowski | 365a3db | 2016-11-30 18:28:10 +0100 | [diff] [blame] | 6899 | * @throws SecurityException if {@code admin} is not a device or profile owner. |
Benjamin Franz | 3e8a709 | 2016-01-25 16:19:08 +0000 | [diff] [blame] | 6900 | */ |
Michal Karpinski | 74cd730 | 2016-04-12 15:17:36 +0100 | [diff] [blame] | 6901 | public void setOrganizationName(@NonNull ComponentName admin, @Nullable CharSequence title) { |
Benjamin Franz | bc33c82 | 2016-04-15 08:57:52 +0100 | [diff] [blame] | 6902 | throwIfParentInstance("setOrganizationName"); |
Benjamin Franz | 3e8a709 | 2016-01-25 16:19:08 +0000 | [diff] [blame] | 6903 | try { |
| 6904 | mService.setOrganizationName(admin, title); |
| 6905 | } catch (RemoteException re) { |
Jeff Sharkey | dbff9ca | 2016-03-01 19:46:25 -0700 | [diff] [blame] | 6906 | throw re.rethrowFromSystemServer(); |
Benjamin Franz | 3e8a709 | 2016-01-25 16:19:08 +0000 | [diff] [blame] | 6907 | } |
| 6908 | } |
| 6909 | |
| 6910 | /** |
Suprabh Shukla | 34d92ef | 2016-03-14 13:49:37 -0700 | [diff] [blame] | 6911 | * Called by a profile owner of a managed profile to retrieve the name of the organization under |
| 6912 | * management. |
Benjamin Franz | 3e8a709 | 2016-01-25 16:19:08 +0000 | [diff] [blame] | 6913 | * |
| 6914 | * @param admin Which {@link DeviceAdminReceiver} this request is associated with. |
| 6915 | * @return The organization name or {@code null} if none is set. |
Suprabh Shukla | 34d92ef | 2016-03-14 13:49:37 -0700 | [diff] [blame] | 6916 | * @throws SecurityException if {@code admin} is not a profile owner. |
Benjamin Franz | 3e8a709 | 2016-01-25 16:19:08 +0000 | [diff] [blame] | 6917 | */ |
Makoto Onuki | 408e8e4 | 2016-10-25 12:10:27 -0700 | [diff] [blame] | 6918 | public @Nullable CharSequence getOrganizationName(@NonNull ComponentName admin) { |
Benjamin Franz | bc33c82 | 2016-04-15 08:57:52 +0100 | [diff] [blame] | 6919 | throwIfParentInstance("getOrganizationName"); |
Benjamin Franz | 3e8a709 | 2016-01-25 16:19:08 +0000 | [diff] [blame] | 6920 | try { |
| 6921 | return mService.getOrganizationName(admin); |
| 6922 | } catch (RemoteException re) { |
Jeff Sharkey | dbff9ca | 2016-03-01 19:46:25 -0700 | [diff] [blame] | 6923 | throw re.rethrowFromSystemServer(); |
Benjamin Franz | 3e8a709 | 2016-01-25 16:19:08 +0000 | [diff] [blame] | 6924 | } |
| 6925 | } |
| 6926 | |
| 6927 | /** |
Bartosz Fabianowski | 365a3db | 2016-11-30 18:28:10 +0100 | [diff] [blame] | 6928 | * Called by the system to retrieve the name of the organization managing the device. |
| 6929 | * |
| 6930 | * @return The organization name or {@code null} if none is set. |
| 6931 | * @throws SecurityException if the caller is not the device owner, does not hold the |
| 6932 | * MANAGE_USERS permission and is not the system. |
| 6933 | * |
| 6934 | * @hide |
| 6935 | */ |
| 6936 | @SystemApi |
| 6937 | @TestApi |
| 6938 | public @Nullable CharSequence getDeviceOwnerOrganizationName() { |
| 6939 | try { |
| 6940 | return mService.getDeviceOwnerOrganizationName(); |
| 6941 | } catch (RemoteException re) { |
| 6942 | throw re.rethrowFromSystemServer(); |
| 6943 | } |
| 6944 | } |
| 6945 | |
| 6946 | /** |
Benjamin Franz | 3e8a709 | 2016-01-25 16:19:08 +0000 | [diff] [blame] | 6947 | * Retrieve the default title message used in the confirm credentials screen for a given user. |
| 6948 | * |
| 6949 | * @param userHandle The user id of the user we're interested in. |
| 6950 | * @return The organization name or {@code null} if none is set. |
| 6951 | * |
| 6952 | * @hide |
| 6953 | */ |
Makoto Onuki | 408e8e4 | 2016-10-25 12:10:27 -0700 | [diff] [blame] | 6954 | public @Nullable CharSequence getOrganizationNameForUser(int userHandle) { |
Benjamin Franz | 3e8a709 | 2016-01-25 16:19:08 +0000 | [diff] [blame] | 6955 | try { |
| 6956 | return mService.getOrganizationNameForUser(userHandle); |
| 6957 | } catch (RemoteException re) { |
Jeff Sharkey | dbff9ca | 2016-03-01 19:46:25 -0700 | [diff] [blame] | 6958 | throw re.rethrowFromSystemServer(); |
Benjamin Franz | 3e8a709 | 2016-01-25 16:19:08 +0000 | [diff] [blame] | 6959 | } |
| 6960 | } |
| 6961 | |
| 6962 | /** |
Alan Treadway | afad878 | 2016-01-19 15:15:08 +0000 | [diff] [blame] | 6963 | * @return the {@link UserProvisioningState} for the current user - for unmanaged users will |
| 6964 | * return {@link #STATE_USER_UNMANAGED} |
| 6965 | * @hide |
| 6966 | */ |
Benjamin Franz | eed2a8e | 2016-02-19 14:19:05 +0000 | [diff] [blame] | 6967 | @SystemApi |
Alan Treadway | afad878 | 2016-01-19 15:15:08 +0000 | [diff] [blame] | 6968 | @UserProvisioningState |
| 6969 | public int getUserProvisioningState() { |
Benjamin Franz | bc33c82 | 2016-04-15 08:57:52 +0100 | [diff] [blame] | 6970 | throwIfParentInstance("getUserProvisioningState"); |
Alan Treadway | afad878 | 2016-01-19 15:15:08 +0000 | [diff] [blame] | 6971 | if (mService != null) { |
| 6972 | try { |
| 6973 | return mService.getUserProvisioningState(); |
| 6974 | } catch (RemoteException e) { |
Jeff Sharkey | dbff9ca | 2016-03-01 19:46:25 -0700 | [diff] [blame] | 6975 | throw e.rethrowFromSystemServer(); |
Alan Treadway | afad878 | 2016-01-19 15:15:08 +0000 | [diff] [blame] | 6976 | } |
| 6977 | } |
| 6978 | return STATE_USER_UNMANAGED; |
| 6979 | } |
| 6980 | |
| 6981 | /** |
| 6982 | * Set the {@link UserProvisioningState} for the supplied user, if they are managed. |
| 6983 | * |
| 6984 | * @param state to store |
| 6985 | * @param userHandle for user |
| 6986 | * @hide |
| 6987 | */ |
| 6988 | public void setUserProvisioningState(@UserProvisioningState int state, int userHandle) { |
| 6989 | if (mService != null) { |
| 6990 | try { |
| 6991 | mService.setUserProvisioningState(state, userHandle); |
| 6992 | } catch (RemoteException e) { |
Jeff Sharkey | dbff9ca | 2016-03-01 19:46:25 -0700 | [diff] [blame] | 6993 | throw e.rethrowFromSystemServer(); |
Alan Treadway | afad878 | 2016-01-19 15:15:08 +0000 | [diff] [blame] | 6994 | } |
| 6995 | } |
| 6996 | } |
| 6997 | |
| 6998 | /** |
Esteban Talavera | c9bb378 | 2016-11-11 15:41:14 +0000 | [diff] [blame] | 6999 | * Indicates the entity that controls the device or profile owner. Two users/profiles are |
| 7000 | * affiliated if the set of ids set by their device or profile owners intersect. |
Bartosz Fabianowski | 4c052f2 | 2016-01-25 14:18:43 +0100 | [diff] [blame] | 7001 | * |
Esteban Talavera | d36dd15 | 2016-12-15 08:51:45 +0000 | [diff] [blame] | 7002 | * <p><strong>Note:</strong> Features that depend on user affiliation (such as security logging |
| 7003 | * or {@link #bindDeviceAdminServiceAsUser}) won't be available when a secondary user or profile |
| 7004 | * is created, until it becomes affiliated. Therefore it is recommended that the appropriate |
| 7005 | * affiliation ids are set by its profile owner as soon as possible after the user/profile is |
| 7006 | * created. |
| 7007 | * |
Bartosz Fabianowski | 4c052f2 | 2016-01-25 14:18:43 +0100 | [diff] [blame] | 7008 | * @param admin Which profile or device owner this request is associated with. |
Esteban Talavera | c9bb378 | 2016-11-11 15:41:14 +0000 | [diff] [blame] | 7009 | * @param ids A list of opaque non-empty affiliation ids. Duplicate elements will be ignored. |
| 7010 | * |
| 7011 | * @throws NullPointerException if {@code ids} is null or contains null elements. |
| 7012 | * @throws IllegalArgumentException if {@code ids} contains an empty string. |
Bartosz Fabianowski | 4c052f2 | 2016-01-25 14:18:43 +0100 | [diff] [blame] | 7013 | */ |
Esteban Talavera | c9bb378 | 2016-11-11 15:41:14 +0000 | [diff] [blame] | 7014 | public void setAffiliationIds(@NonNull ComponentName admin, @NonNull List<String> ids) { |
Benjamin Franz | bc33c82 | 2016-04-15 08:57:52 +0100 | [diff] [blame] | 7015 | throwIfParentInstance("setAffiliationIds"); |
Bartosz Fabianowski | 4c052f2 | 2016-01-25 14:18:43 +0100 | [diff] [blame] | 7016 | try { |
Esteban Talavera | c9bb378 | 2016-11-11 15:41:14 +0000 | [diff] [blame] | 7017 | mService.setAffiliationIds(admin, ids); |
| 7018 | } catch (RemoteException e) { |
| 7019 | throw e.rethrowFromSystemServer(); |
| 7020 | } |
| 7021 | } |
| 7022 | |
| 7023 | /** |
| 7024 | * Returns the list of affiliation ids previously set via {@link #setAffiliationIds}, or an |
| 7025 | * empty list if none have been set. |
| 7026 | */ |
| 7027 | public @NonNull List<String> getAffiliationIds(@NonNull ComponentName admin) { |
| 7028 | throwIfParentInstance("getAffiliationIds"); |
| 7029 | try { |
| 7030 | return mService.getAffiliationIds(admin); |
Bartosz Fabianowski | 4c052f2 | 2016-01-25 14:18:43 +0100 | [diff] [blame] | 7031 | } catch (RemoteException e) { |
Jeff Sharkey | dbff9ca | 2016-03-01 19:46:25 -0700 | [diff] [blame] | 7032 | throw e.rethrowFromSystemServer(); |
Bartosz Fabianowski | 4c052f2 | 2016-01-25 14:18:43 +0100 | [diff] [blame] | 7033 | } |
| 7034 | } |
| 7035 | |
| 7036 | /** |
| 7037 | * @hide |
Esteban Talavera | c9bb378 | 2016-11-11 15:41:14 +0000 | [diff] [blame] | 7038 | * Returns whether this user/profile is affiliated with the device. |
| 7039 | * <p> |
| 7040 | * By definition, the user that the device owner runs on is always affiliated with the device. |
| 7041 | * Any other user/profile is considered affiliated with the device if the set specified by its |
| 7042 | * profile owner via {@link #setAffiliationIds} intersects with the device owner's. |
Bartosz Fabianowski | 4c052f2 | 2016-01-25 14:18:43 +0100 | [diff] [blame] | 7043 | * |
Bartosz Fabianowski | 4c052f2 | 2016-01-25 14:18:43 +0100 | [diff] [blame] | 7044 | */ |
| 7045 | public boolean isAffiliatedUser() { |
Benjamin Franz | bc33c82 | 2016-04-15 08:57:52 +0100 | [diff] [blame] | 7046 | throwIfParentInstance("isAffiliatedUser"); |
Bartosz Fabianowski | 4c052f2 | 2016-01-25 14:18:43 +0100 | [diff] [blame] | 7047 | try { |
Esteban Talavera | c9bb378 | 2016-11-11 15:41:14 +0000 | [diff] [blame] | 7048 | return mService.isAffiliatedUser(); |
Bartosz Fabianowski | 4c052f2 | 2016-01-25 14:18:43 +0100 | [diff] [blame] | 7049 | } catch (RemoteException e) { |
Jeff Sharkey | dbff9ca | 2016-03-01 19:46:25 -0700 | [diff] [blame] | 7050 | throw e.rethrowFromSystemServer(); |
Bartosz Fabianowski | 4c052f2 | 2016-01-25 14:18:43 +0100 | [diff] [blame] | 7051 | } |
| 7052 | } |
Suprabh Shukla | a2ae223 | 2016-01-28 18:05:14 -0800 | [diff] [blame] | 7053 | |
| 7054 | /** |
| 7055 | * @hide |
| 7056 | * Returns whether the uninstall for {@code packageName} for the current user is in queue |
| 7057 | * to be started |
| 7058 | * @param packageName the package to check for |
| 7059 | * @return whether the uninstall intent for {@code packageName} is pending |
| 7060 | */ |
| 7061 | public boolean isUninstallInQueue(String packageName) { |
| 7062 | try { |
| 7063 | return mService.isUninstallInQueue(packageName); |
| 7064 | } catch (RemoteException re) { |
Jeff Sharkey | dbff9ca | 2016-03-01 19:46:25 -0700 | [diff] [blame] | 7065 | throw re.rethrowFromSystemServer(); |
Suprabh Shukla | a2ae223 | 2016-01-28 18:05:14 -0800 | [diff] [blame] | 7066 | } |
| 7067 | } |
| 7068 | |
| 7069 | /** |
| 7070 | * @hide |
| 7071 | * @param packageName the package containing active DAs to be uninstalled |
| 7072 | */ |
| 7073 | public void uninstallPackageWithActiveAdmins(String packageName) { |
| 7074 | try { |
| 7075 | mService.uninstallPackageWithActiveAdmins(packageName); |
| 7076 | } catch (RemoteException re) { |
Jeff Sharkey | dbff9ca | 2016-03-01 19:46:25 -0700 | [diff] [blame] | 7077 | throw re.rethrowFromSystemServer(); |
Suprabh Shukla | a2ae223 | 2016-01-28 18:05:14 -0800 | [diff] [blame] | 7078 | } |
| 7079 | } |
Benjamin Franz | bc33c82 | 2016-04-15 08:57:52 +0100 | [diff] [blame] | 7080 | |
Kenny Guy | 38dcca5 | 2016-04-19 13:09:18 +0100 | [diff] [blame] | 7081 | /** |
| 7082 | * @hide |
| 7083 | * Remove a test admin synchronously without sending it a broadcast about being removed. |
| 7084 | * If the admin is a profile owner or device owner it will still be removed. |
| 7085 | * |
| 7086 | * @param userHandle user id to remove the admin for. |
| 7087 | * @param admin The administration compononent to remove. |
| 7088 | * @throws SecurityException if the caller is not shell / root or the admin package |
| 7089 | * isn't a test application see {@link ApplicationInfo#FLAG_TEST_APP}. |
| 7090 | */ |
| 7091 | public void forceRemoveActiveAdmin(ComponentName adminReceiver, int userHandle) { |
| 7092 | try { |
| 7093 | mService.forceRemoveActiveAdmin(adminReceiver, userHandle); |
| 7094 | } catch (RemoteException re) { |
| 7095 | throw re.rethrowFromSystemServer(); |
| 7096 | } |
| 7097 | } |
| 7098 | |
Mahaver Chopra | 790d198 | 2016-07-07 16:06:49 +0100 | [diff] [blame] | 7099 | /** |
Lenka Trochtova | 5291ee7 | 2016-11-28 16:38:23 +0100 | [diff] [blame] | 7100 | * Returns whether the device has been provisioned. |
| 7101 | * |
| 7102 | * <p>Not for use by third-party applications. |
| 7103 | * |
Mahaver Chopra | 790d198 | 2016-07-07 16:06:49 +0100 | [diff] [blame] | 7104 | * @hide |
Mahaver Chopra | 790d198 | 2016-07-07 16:06:49 +0100 | [diff] [blame] | 7105 | */ |
Lenka Trochtova | 5291ee7 | 2016-11-28 16:38:23 +0100 | [diff] [blame] | 7106 | @SystemApi |
Mahaver Chopra | 790d198 | 2016-07-07 16:06:49 +0100 | [diff] [blame] | 7107 | public boolean isDeviceProvisioned() { |
| 7108 | try { |
| 7109 | return mService.isDeviceProvisioned(); |
| 7110 | } catch (RemoteException re) { |
| 7111 | throw re.rethrowFromSystemServer(); |
| 7112 | } |
| 7113 | } |
| 7114 | |
Benjamin Franz | 2aa9bab | 2016-07-11 19:10:36 +0100 | [diff] [blame] | 7115 | /** |
Lenka Trochtova | 5291ee7 | 2016-11-28 16:38:23 +0100 | [diff] [blame] | 7116 | * Writes that the provisioning configuration has been applied. |
| 7117 | * |
| 7118 | * <p>The caller must hold the {@link android.Manifest.permission#MANAGE_USERS} |
| 7119 | * permission. |
| 7120 | * |
| 7121 | * <p>Not for use by third-party applications. |
| 7122 | * |
| 7123 | * @hide |
| 7124 | */ |
| 7125 | @SystemApi |
Benjamin Franz | 2aa9bab | 2016-07-11 19:10:36 +0100 | [diff] [blame] | 7126 | public void setDeviceProvisioningConfigApplied() { |
| 7127 | try { |
| 7128 | mService.setDeviceProvisioningConfigApplied(); |
| 7129 | } catch (RemoteException re) { |
| 7130 | throw re.rethrowFromSystemServer(); |
| 7131 | } |
| 7132 | } |
| 7133 | |
| 7134 | /** |
Lenka Trochtova | 5291ee7 | 2016-11-28 16:38:23 +0100 | [diff] [blame] | 7135 | * Returns whether the provisioning configuration has been applied. |
| 7136 | * |
| 7137 | * <p>The caller must hold the {@link android.Manifest.permission#MANAGE_USERS} permission. |
| 7138 | * |
| 7139 | * <p>Not for use by third-party applications. |
| 7140 | * |
Benjamin Franz | 2aa9bab | 2016-07-11 19:10:36 +0100 | [diff] [blame] | 7141 | * @return whether the provisioning configuration has been applied. |
Lenka Trochtova | 5291ee7 | 2016-11-28 16:38:23 +0100 | [diff] [blame] | 7142 | * |
| 7143 | * @hide |
Benjamin Franz | 2aa9bab | 2016-07-11 19:10:36 +0100 | [diff] [blame] | 7144 | */ |
Lenka Trochtova | 5291ee7 | 2016-11-28 16:38:23 +0100 | [diff] [blame] | 7145 | @SystemApi |
Benjamin Franz | 2aa9bab | 2016-07-11 19:10:36 +0100 | [diff] [blame] | 7146 | public boolean isDeviceProvisioningConfigApplied() { |
| 7147 | try { |
| 7148 | return mService.isDeviceProvisioningConfigApplied(); |
| 7149 | } catch (RemoteException re) { |
| 7150 | throw re.rethrowFromSystemServer(); |
| 7151 | } |
| 7152 | } |
| 7153 | |
Victor Chang | 9bfc65f | 2016-08-15 12:27:09 +0100 | [diff] [blame] | 7154 | /** |
| 7155 | * @hide |
Victor Chang | 3577ed2 | 2016-08-25 18:49:26 +0100 | [diff] [blame] | 7156 | * Force update user setup completed status. This API has no effect on user build. |
| 7157 | * @throws {@link SecurityException} if the caller has no |
Esteban Talavera | 0157686 | 2016-12-15 11:16:44 +0000 | [diff] [blame] | 7158 | * {@code android.Manifest.permission.MANAGE_PROFILE_AND_DEVICE_OWNERS} or the caller is |
| 7159 | * not {@link UserHandle#SYSTEM_USER} |
Victor Chang | 9bfc65f | 2016-08-15 12:27:09 +0100 | [diff] [blame] | 7160 | */ |
| 7161 | public void forceUpdateUserSetupComplete() { |
| 7162 | try { |
| 7163 | mService.forceUpdateUserSetupComplete(); |
| 7164 | } catch (RemoteException re) { |
| 7165 | throw re.rethrowFromSystemServer(); |
| 7166 | } |
| 7167 | } |
| 7168 | |
Benjamin Franz | bc33c82 | 2016-04-15 08:57:52 +0100 | [diff] [blame] | 7169 | private void throwIfParentInstance(String functionName) { |
| 7170 | if (mParentInstance) { |
| 7171 | throw new SecurityException(functionName + " cannot be called on the parent instance"); |
| 7172 | } |
| 7173 | } |
Vladislav Kuzkokov | a820252 | 2016-08-18 19:01:27 +0200 | [diff] [blame] | 7174 | |
| 7175 | /** |
Michal Karpinski | b71fedc | 2017-01-05 15:21:38 +0000 | [diff] [blame] | 7176 | * Allows the device owner to enable or disable the backup service. |
Vladislav Kuzkokov | a820252 | 2016-08-18 19:01:27 +0200 | [diff] [blame] | 7177 | * |
Michal Karpinski | b71fedc | 2017-01-05 15:21:38 +0000 | [diff] [blame] | 7178 | * <p> Backup service manages all backup and restore mechanisms on the device. Setting this to |
| 7179 | * false will prevent data from being backed up or restored. |
Vladislav Kuzkokov | a820252 | 2016-08-18 19:01:27 +0200 | [diff] [blame] | 7180 | * |
Michal Karpinski | b71fedc | 2017-01-05 15:21:38 +0000 | [diff] [blame] | 7181 | * <p> Backup service is off by default when device owner is present. |
| 7182 | * |
| 7183 | * @throws SecurityException if {@code admin} is not a device owner. |
Vladislav Kuzkokov | a820252 | 2016-08-18 19:01:27 +0200 | [diff] [blame] | 7184 | */ |
| 7185 | public void setBackupServiceEnabled(@NonNull ComponentName admin, boolean enabled) { |
| 7186 | try { |
| 7187 | mService.setBackupServiceEnabled(admin, enabled); |
| 7188 | } catch (RemoteException re) { |
| 7189 | throw re.rethrowFromSystemServer(); |
| 7190 | } |
| 7191 | } |
| 7192 | |
| 7193 | /** |
Michal Karpinski | b71fedc | 2017-01-05 15:21:38 +0000 | [diff] [blame] | 7194 | * Return whether the backup service is enabled by the device owner. |
| 7195 | * |
| 7196 | * <p> Backup service manages all backup and restore mechanisms on the device. |
| 7197 | * |
Vladislav Kuzkokov | a820252 | 2016-08-18 19:01:27 +0200 | [diff] [blame] | 7198 | * @return {@code true} if backup service is enabled, {@code false} otherwise. |
Michal Karpinski | b71fedc | 2017-01-05 15:21:38 +0000 | [diff] [blame] | 7199 | * @see #setBackupServiceEnabled |
Vladislav Kuzkokov | a820252 | 2016-08-18 19:01:27 +0200 | [diff] [blame] | 7200 | */ |
| 7201 | public boolean isBackupServiceEnabled(@NonNull ComponentName admin) { |
| 7202 | try { |
| 7203 | return mService.isBackupServiceEnabled(admin); |
| 7204 | } catch (RemoteException re) { |
| 7205 | throw re.rethrowFromSystemServer(); |
| 7206 | } |
| 7207 | } |
Michal Karpinski | dd9bb4f | 2016-10-12 14:59:26 +0100 | [diff] [blame] | 7208 | |
| 7209 | /** |
Esteban Talavera | d36dd15 | 2016-12-15 08:51:45 +0000 | [diff] [blame] | 7210 | * Called by a device owner to control the network logging feature. |
Michal Karpinski | dd9bb4f | 2016-10-12 14:59:26 +0100 | [diff] [blame] | 7211 | * |
| 7212 | * <p> Network logs contain DNS lookup and connect() library call events. |
| 7213 | * |
Esteban Talavera | d36dd15 | 2016-12-15 08:51:45 +0000 | [diff] [blame] | 7214 | * <p><strong>Note:</strong> The device owner won't be able to retrieve network logs if there |
| 7215 | * are unaffiliated secondary users or profiles on the device, regardless of whether the |
| 7216 | * feature is enabled. Logs will be discarded if the internal buffer fills up while waiting for |
| 7217 | * all users to become affiliated. Therefore it's recommended that affiliation ids are set for |
| 7218 | * new users as soon as possible after provisioning via {@link #setAffiliationIds}. |
| 7219 | * |
Michal Karpinski | dd9bb4f | 2016-10-12 14:59:26 +0100 | [diff] [blame] | 7220 | * @param admin Which {@link DeviceAdminReceiver} this request is associated with. |
| 7221 | * @param enabled whether network logging should be enabled or not. |
Esteban Talavera | d36dd15 | 2016-12-15 08:51:45 +0000 | [diff] [blame] | 7222 | * @throws SecurityException if {@code admin} is not a device owner. |
Michal Karpinski | f77ee4f1 | 2016-10-12 16:40:06 +0100 | [diff] [blame] | 7223 | * @see #retrieveNetworkLogs |
Michal Karpinski | dd9bb4f | 2016-10-12 14:59:26 +0100 | [diff] [blame] | 7224 | */ |
| 7225 | public void setNetworkLoggingEnabled(@NonNull ComponentName admin, boolean enabled) { |
| 7226 | throwIfParentInstance("setNetworkLoggingEnabled"); |
| 7227 | try { |
| 7228 | mService.setNetworkLoggingEnabled(admin, enabled); |
| 7229 | } catch (RemoteException re) { |
| 7230 | throw re.rethrowFromSystemServer(); |
| 7231 | } |
| 7232 | } |
| 7233 | |
| 7234 | /** |
| 7235 | * Return whether network logging is enabled by a device owner. |
| 7236 | * |
phweiss | a4e169e | 2016-11-24 16:20:57 +0100 | [diff] [blame] | 7237 | * @param admin Which {@link DeviceAdminReceiver} this request is associated with. Can only |
| 7238 | * be {@code null} if the caller has MANAGE_USERS permission. |
Michal Karpinski | dd9bb4f | 2016-10-12 14:59:26 +0100 | [diff] [blame] | 7239 | * @return {@code true} if network logging is enabled by device owner, {@code false} otherwise. |
Esteban Talavera | d36dd15 | 2016-12-15 08:51:45 +0000 | [diff] [blame] | 7240 | * @throws SecurityException if {@code admin} is not a device owner and caller has |
phweiss | a4e169e | 2016-11-24 16:20:57 +0100 | [diff] [blame] | 7241 | * no MANAGE_USERS permission |
Michal Karpinski | dd9bb4f | 2016-10-12 14:59:26 +0100 | [diff] [blame] | 7242 | */ |
phweiss | a4e169e | 2016-11-24 16:20:57 +0100 | [diff] [blame] | 7243 | public boolean isNetworkLoggingEnabled(@Nullable ComponentName admin) { |
Michal Karpinski | dd9bb4f | 2016-10-12 14:59:26 +0100 | [diff] [blame] | 7244 | throwIfParentInstance("isNetworkLoggingEnabled"); |
| 7245 | try { |
| 7246 | return mService.isNetworkLoggingEnabled(admin); |
| 7247 | } catch (RemoteException re) { |
| 7248 | throw re.rethrowFromSystemServer(); |
| 7249 | } |
| 7250 | } |
Michal Karpinski | f77ee4f1 | 2016-10-12 16:40:06 +0100 | [diff] [blame] | 7251 | |
| 7252 | /** |
Michal Karpinski | a9ff206 | 2016-11-03 15:46:17 +0000 | [diff] [blame] | 7253 | * Called by device owner to retrieve the most recent batch of network logging events. |
| 7254 | * A device owner has to provide a batchToken provided as part of |
| 7255 | * {@link DeviceAdminReceiver#onNetworkLogsAvailable} callback. If the token doesn't match the |
| 7256 | * token of the most recent available batch of logs, {@code null} will be returned. |
Michal Karpinski | f77ee4f1 | 2016-10-12 16:40:06 +0100 | [diff] [blame] | 7257 | * |
| 7258 | * <p> {@link NetworkEvent} can be one of {@link DnsEvent} or {@link ConnectEvent}. |
| 7259 | * |
| 7260 | * <p> The list of network events is sorted chronologically, and contains at most 1200 events. |
| 7261 | * |
| 7262 | * <p> Access to the logs is rate limited and this method will only return a new batch of logs |
| 7263 | * after the device device owner has been notified via |
| 7264 | * {@link DeviceAdminReceiver#onNetworkLogsAvailable}. |
| 7265 | * |
Esteban Talavera | d36dd15 | 2016-12-15 08:51:45 +0000 | [diff] [blame] | 7266 | * <p>If a secondary user or profile is created, calling this method will throw a |
| 7267 | * {@link SecurityException} until all users become affiliated again. It will also no longer be |
| 7268 | * possible to retrieve the network logs batch with the most recent batchToken provided |
| 7269 | * by {@link DeviceAdminReceiver#onNetworkLogsAvailable}. See |
| 7270 | * {@link DevicePolicyManager#setAffiliationIds}. |
| 7271 | * |
Michal Karpinski | f77ee4f1 | 2016-10-12 16:40:06 +0100 | [diff] [blame] | 7272 | * @param admin Which {@link DeviceAdminReceiver} this request is associated with. |
Michal Karpinski | a9ff206 | 2016-11-03 15:46:17 +0000 | [diff] [blame] | 7273 | * @param batchToken A token of the batch to retrieve |
Michal Karpinski | f77ee4f1 | 2016-10-12 16:40:06 +0100 | [diff] [blame] | 7274 | * @return A new batch of network logs which is a list of {@link NetworkEvent}. Returns |
Michal Karpinski | a9ff206 | 2016-11-03 15:46:17 +0000 | [diff] [blame] | 7275 | * {@code null} if the batch represented by batchToken is no longer available or if |
| 7276 | * logging is disabled. |
Esteban Talavera | d36dd15 | 2016-12-15 08:51:45 +0000 | [diff] [blame] | 7277 | * @throws SecurityException if {@code admin} is not a device owner, or there is at least one |
| 7278 | * profile or secondary user that is not affiliated with the device owner user. |
Michal Karpinski | a9ff206 | 2016-11-03 15:46:17 +0000 | [diff] [blame] | 7279 | * @see DeviceAdminReceiver#onNetworkLogsAvailable |
Michal Karpinski | f77ee4f1 | 2016-10-12 16:40:06 +0100 | [diff] [blame] | 7280 | */ |
Michal Karpinski | a9ff206 | 2016-11-03 15:46:17 +0000 | [diff] [blame] | 7281 | public @Nullable List<NetworkEvent> retrieveNetworkLogs(@NonNull ComponentName admin, |
| 7282 | long batchToken) { |
Michal Karpinski | f77ee4f1 | 2016-10-12 16:40:06 +0100 | [diff] [blame] | 7283 | throwIfParentInstance("retrieveNetworkLogs"); |
| 7284 | try { |
Michal Karpinski | a9ff206 | 2016-11-03 15:46:17 +0000 | [diff] [blame] | 7285 | return mService.retrieveNetworkLogs(admin, batchToken); |
Michal Karpinski | f77ee4f1 | 2016-10-12 16:40:06 +0100 | [diff] [blame] | 7286 | } catch (RemoteException re) { |
| 7287 | throw re.rethrowFromSystemServer(); |
| 7288 | } |
| 7289 | } |
Tony Mak | 46aabe5 | 2016-11-14 12:53:06 +0000 | [diff] [blame] | 7290 | |
| 7291 | /** |
Esteban Talavera | fc291bc | 2016-11-21 13:52:03 +0000 | [diff] [blame] | 7292 | * Called by a device owner to bind to a service from a profile owner of a managed profile or |
| 7293 | * vice versa. See {@link #getBindDeviceAdminTargetUsers} for a definition of which |
| 7294 | * device/profile owners are allowed to bind to services of another profile/device owner. |
| 7295 | * <p> |
Tony Mak | 46aabe5 | 2016-11-14 12:53:06 +0000 | [diff] [blame] | 7296 | * The service must be unexported. Note that the {@link Context} used to obtain this |
| 7297 | * {@link DevicePolicyManager} instance via {@link Context#getSystemService(Class)} will be used |
| 7298 | * to bind to the {@link android.app.Service}. |
Esteban Talavera | fc291bc | 2016-11-21 13:52:03 +0000 | [diff] [blame] | 7299 | * |
Tony Mak | 46aabe5 | 2016-11-14 12:53:06 +0000 | [diff] [blame] | 7300 | * @param admin Which {@link DeviceAdminReceiver} this request is associated with. |
| 7301 | * @param serviceIntent Identifies the service to connect to. The Intent must specify either an |
| 7302 | * explicit component name or a package name to match an |
| 7303 | * {@link IntentFilter} published by a service. |
Tony Mak | bf9928d | 2016-12-22 11:02:45 +0000 | [diff] [blame] | 7304 | * @param conn Receives information as the service is started and stopped in main thread. This |
| 7305 | * must be a valid {@link ServiceConnection} object; it must not be {@code null}. |
Tony Mak | 46aabe5 | 2016-11-14 12:53:06 +0000 | [diff] [blame] | 7306 | * @param flags Operation options for the binding operation. See |
| 7307 | * {@link Context#bindService(Intent, ServiceConnection, int)}. |
Esteban Talavera | fc291bc | 2016-11-21 13:52:03 +0000 | [diff] [blame] | 7308 | * @param targetUser Which user to bind to. Must be one of the users returned by |
| 7309 | * {@link #getBindDeviceAdminTargetUsers}, otherwise a {@link SecurityException} will |
| 7310 | * be thrown. |
Tony Mak | 46aabe5 | 2016-11-14 12:53:06 +0000 | [diff] [blame] | 7311 | * @return If you have successfully bound to the service, {@code true} is returned; |
| 7312 | * {@code false} is returned if the connection is not made and you will not |
| 7313 | * receive the service object. |
Esteban Talavera | fc291bc | 2016-11-21 13:52:03 +0000 | [diff] [blame] | 7314 | * |
Tony Mak | 46aabe5 | 2016-11-14 12:53:06 +0000 | [diff] [blame] | 7315 | * @see Context#bindService(Intent, ServiceConnection, int) |
Esteban Talavera | fc291bc | 2016-11-21 13:52:03 +0000 | [diff] [blame] | 7316 | * @see #getBindDeviceAdminTargetUsers(ComponentName) |
Tony Mak | 46aabe5 | 2016-11-14 12:53:06 +0000 | [diff] [blame] | 7317 | */ |
| 7318 | public boolean bindDeviceAdminServiceAsUser( |
| 7319 | @NonNull ComponentName admin, Intent serviceIntent, @NonNull ServiceConnection conn, |
| 7320 | @Context.BindServiceFlags int flags, @NonNull UserHandle targetUser) { |
| 7321 | throwIfParentInstance("bindDeviceAdminServiceAsUser"); |
| 7322 | // Keep this in sync with ContextImpl.bindServiceCommon. |
| 7323 | try { |
Tony Mak | bf9928d | 2016-12-22 11:02:45 +0000 | [diff] [blame] | 7324 | final IServiceConnection sd = mContext.getServiceDispatcher( |
| 7325 | conn, mContext.getMainThreadHandler(), flags); |
Tony Mak | 46aabe5 | 2016-11-14 12:53:06 +0000 | [diff] [blame] | 7326 | serviceIntent.prepareToLeaveProcess(mContext); |
| 7327 | return mService.bindDeviceAdminServiceAsUser(admin, |
| 7328 | mContext.getIApplicationThread(), mContext.getActivityToken(), serviceIntent, |
| 7329 | sd, flags, targetUser.getIdentifier()); |
| 7330 | } catch (RemoteException re) { |
| 7331 | throw re.rethrowFromSystemServer(); |
| 7332 | } |
| 7333 | } |
Bartosz Fabianowski | b21b241 | 2016-11-17 04:53:33 +0100 | [diff] [blame] | 7334 | |
| 7335 | /** |
Esteban Talavera | fc291bc | 2016-11-21 13:52:03 +0000 | [diff] [blame] | 7336 | * Returns the list of target users that the calling device or profile owner can use when |
| 7337 | * calling {@link #bindDeviceAdminServiceAsUser}. |
| 7338 | * <p> |
| 7339 | * A device owner can bind to a service from a profile owner of a managed profile and |
| 7340 | * vice versa, provided that: |
| 7341 | * <ul> |
| 7342 | * <li>Both belong to the same package name. |
| 7343 | * <li>The managed profile is a profile of the user where the device owner is set. |
| 7344 | * See {@link UserManager#getUserProfiles()} |
| 7345 | * <li>Both users are affiliated. |
Nicolas Prevot | d5b0360 | 2016-12-06 13:32:22 +0000 | [diff] [blame] | 7346 | * See {@link #setAffiliationIds}. |
Esteban Talavera | fc291bc | 2016-11-21 13:52:03 +0000 | [diff] [blame] | 7347 | * </ul> |
| 7348 | */ |
| 7349 | public @NonNull List<UserHandle> getBindDeviceAdminTargetUsers(@NonNull ComponentName admin) { |
| 7350 | throwIfParentInstance("getBindDeviceAdminTargetUsers"); |
| 7351 | try { |
| 7352 | return mService.getBindDeviceAdminTargetUsers(admin); |
| 7353 | } catch (RemoteException re) { |
| 7354 | throw re.rethrowFromSystemServer(); |
| 7355 | } |
| 7356 | } |
| 7357 | |
| 7358 | /** |
Bartosz Fabianowski | b21b241 | 2016-11-17 04:53:33 +0100 | [diff] [blame] | 7359 | * Called by the system to get the time at which the device owner last retrieved security |
| 7360 | * logging entries. |
| 7361 | * |
| 7362 | * @return the time at which the device owner most recently retrieved security logging entries, |
| 7363 | * in milliseconds since epoch; -1 if security logging entries were never retrieved. |
Bartosz Fabianowski | 8d76e72 | 2016-11-25 12:36:20 +0100 | [diff] [blame] | 7364 | * @throws SecurityException if the caller is not the device owner, does not hold the |
| 7365 | * MANAGE_USERS permission and is not the system. |
Bartosz Fabianowski | b21b241 | 2016-11-17 04:53:33 +0100 | [diff] [blame] | 7366 | * |
| 7367 | * @hide |
| 7368 | */ |
Bartosz Fabianowski | 8d76e72 | 2016-11-25 12:36:20 +0100 | [diff] [blame] | 7369 | @TestApi |
Bartosz Fabianowski | b21b241 | 2016-11-17 04:53:33 +0100 | [diff] [blame] | 7370 | public long getLastSecurityLogRetrievalTime() { |
| 7371 | try { |
| 7372 | return mService.getLastSecurityLogRetrievalTime(); |
| 7373 | } catch (RemoteException re) { |
| 7374 | throw re.rethrowFromSystemServer(); |
| 7375 | } |
| 7376 | } |
| 7377 | |
| 7378 | /** |
| 7379 | * Called by the system to get the time at which the device owner last requested a bug report. |
| 7380 | * |
| 7381 | * @return the time at which the device owner most recently requested a bug report, in |
| 7382 | * milliseconds since epoch; -1 if a bug report was never requested. |
Bartosz Fabianowski | 8d76e72 | 2016-11-25 12:36:20 +0100 | [diff] [blame] | 7383 | * @throws SecurityException if the caller is not the device owner, does not hold the |
| 7384 | * MANAGE_USERS permission and is not the system. |
Bartosz Fabianowski | b21b241 | 2016-11-17 04:53:33 +0100 | [diff] [blame] | 7385 | * |
| 7386 | * @hide |
| 7387 | */ |
Bartosz Fabianowski | 8d76e72 | 2016-11-25 12:36:20 +0100 | [diff] [blame] | 7388 | @TestApi |
Bartosz Fabianowski | b21b241 | 2016-11-17 04:53:33 +0100 | [diff] [blame] | 7389 | public long getLastBugReportRequestTime() { |
| 7390 | try { |
| 7391 | return mService.getLastBugReportRequestTime(); |
| 7392 | } catch (RemoteException re) { |
| 7393 | throw re.rethrowFromSystemServer(); |
| 7394 | } |
| 7395 | } |
| 7396 | |
| 7397 | /** |
| 7398 | * Called by the system to get the time at which the device owner last retrieved network logging |
| 7399 | * events. |
| 7400 | * |
| 7401 | * @return the time at which the device owner most recently retrieved network logging events, in |
| 7402 | * milliseconds since epoch; -1 if network logging events were never retrieved. |
Bartosz Fabianowski | 8d76e72 | 2016-11-25 12:36:20 +0100 | [diff] [blame] | 7403 | * @throws SecurityException if the caller is not the device owner, does not hold the |
| 7404 | * MANAGE_USERS permission and is not the system. |
Bartosz Fabianowski | b21b241 | 2016-11-17 04:53:33 +0100 | [diff] [blame] | 7405 | * |
| 7406 | * @hide |
| 7407 | */ |
Bartosz Fabianowski | 8d76e72 | 2016-11-25 12:36:20 +0100 | [diff] [blame] | 7408 | @TestApi |
Bartosz Fabianowski | b21b241 | 2016-11-17 04:53:33 +0100 | [diff] [blame] | 7409 | public long getLastNetworkLogRetrievalTime() { |
| 7410 | try { |
| 7411 | return mService.getLastNetworkLogRetrievalTime(); |
| 7412 | } catch (RemoteException re) { |
| 7413 | throw re.rethrowFromSystemServer(); |
| 7414 | } |
| 7415 | } |
Dianne Hackborn | d684784 | 2010-01-12 18:14:19 -0800 | [diff] [blame] | 7416 | } |