blob: 5a8a01a411b75e06c6874818da813abba58543ba [file] [log] [blame]
Dianne Hackbornd6847842010-01-12 18:14:19 -08001/*
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 Hackborn87bba1e2010-02-26 17:25:54 -080017package android.app.admin;
Dianne Hackbornd6847842010-01-12 18:14:19 -080018
Dianne Hackbornd6847842010-01-12 18:14:19 -080019import android.annotation.SdkConstant;
20import android.annotation.SdkConstant.SdkConstantType;
Jason Monkd7b86212014-06-16 13:15:38 -040021import android.app.Activity;
Amith Yamasanif6e2fcc2014-07-10 13:41:55 -070022import android.content.AbstractRestrictionsProvider;
Dianne Hackbornd6847842010-01-12 18:14:19 -080023import android.content.ComponentName;
24import android.content.Context;
Adam Connors010cfd42014-04-16 12:48:13 +010025import android.content.Intent;
Sander Alewijnsef475ca32014-02-17 15:13:58 +000026import android.content.IntentFilter;
Dianne Hackbornd6847842010-01-12 18:14:19 -080027import android.content.pm.ActivityInfo;
28import android.content.pm.PackageManager;
29import android.content.pm.ResolveInfo;
Amith Yamasanif20d6402014-05-24 15:34:37 -070030import android.content.RestrictionsManager;
Julia Reynolds4a21b252014-06-04 11:11:43 -040031import android.media.AudioService;
Jason Monk03bc9912014-05-13 09:44:57 -040032import android.net.ProxyInfo;
Robin Lee66e5d962014-04-09 16:44:21 +010033import android.os.Bundle;
Dianne Hackbornd6847842010-01-12 18:14:19 -080034import android.os.Handler;
Adam Connors776c5552014-01-09 10:42:56 +000035import android.os.Process;
Dianne Hackborn8ea138c2010-01-26 18:01:04 -080036import android.os.RemoteCallback;
Dianne Hackbornd6847842010-01-12 18:14:19 -080037import android.os.RemoteException;
38import android.os.ServiceManager;
Amith Yamasani599dd7c2012-09-14 23:20:08 -070039import android.os.UserHandle;
Julia Reynolds1e958392014-05-16 14:25:21 -040040import android.os.UserManager;
Julia Reynoldsda551652014-05-14 17:15:16 -040041import android.provider.Settings;
Jim Miller50e62182014-04-23 17:25:00 -070042import android.service.trust.TrustAgentService;
Dianne Hackbornd6847842010-01-12 18:14:19 -080043import android.util.Log;
44
Maggie Benthallda51e682013-08-08 22:35:44 -040045import com.android.org.conscrypt.TrustedCertificateStore;
46
Jessica Hummel91da58d2014-04-10 17:39:43 +010047import org.xmlpull.v1.XmlPullParserException;
48
Maggie Benthallda51e682013-08-08 22:35:44 -040049import java.io.ByteArrayInputStream;
Dianne Hackbornd6847842010-01-12 18:14:19 -080050import java.io.IOException;
Oscar Montemayor69238c62010-08-03 10:51:06 -070051import java.net.InetSocketAddress;
52import java.net.Proxy;
Maggie Benthallda51e682013-08-08 22:35:44 -040053import java.security.cert.CertificateException;
54import java.security.cert.CertificateFactory;
55import java.security.cert.X509Certificate;
Dianne Hackbornd47c6ed2010-01-27 16:21:20 -080056import java.util.List;
Maggie Benthallda51e682013-08-08 22:35:44 -040057import java.util.Set;
Dianne Hackbornd6847842010-01-12 18:14:19 -080058
59/**
60 * Public interface for managing policies enforced on a device. Most clients
Dianne Hackbornef6b22f2010-02-16 20:38:49 -080061 * of this class must have published a {@link DeviceAdminReceiver} that the user
Dianne Hackbornd6847842010-01-12 18:14:19 -080062 * has currently enabled.
Joe Fernandez3aef8e1d2011-12-20 10:38:34 -080063 *
64 * <div class="special reference">
65 * <h3>Developer Guides</h3>
66 * <p>For more information about managing policies for device adminstration, read the
67 * <a href="{@docRoot}guide/topics/admin/device-admin.html">Device Administration</a>
68 * developer guide.</p>
69 * </div>
Dianne Hackbornd6847842010-01-12 18:14:19 -080070 */
71public class DevicePolicyManager {
72 private static String TAG = "DevicePolicyManager";
Dianne Hackbornd6847842010-01-12 18:14:19 -080073
74 private final Context mContext;
Dianne Hackbornd6847842010-01-12 18:14:19 -080075 private final IDevicePolicyManager mService;
Konstantin Lopyrev32558232010-05-20 16:18:05 -070076
Dianne Hackborn21f1bd12010-02-19 17:02:21 -080077 private DevicePolicyManager(Context context, Handler handler) {
Dianne Hackbornd6847842010-01-12 18:14:19 -080078 mContext = context;
Dianne Hackbornd6847842010-01-12 18:14:19 -080079 mService = IDevicePolicyManager.Stub.asInterface(
80 ServiceManager.getService(Context.DEVICE_POLICY_SERVICE));
81 }
82
Dianne Hackborn87bba1e2010-02-26 17:25:54 -080083 /** @hide */
84 public static DevicePolicyManager create(Context context, Handler handler) {
Dianne Hackborn21f1bd12010-02-19 17:02:21 -080085 DevicePolicyManager me = new DevicePolicyManager(context, handler);
86 return me.mService != null ? me : null;
87 }
Konstantin Lopyrev32558232010-05-20 16:18:05 -070088
Dianne Hackbornd6847842010-01-12 18:14:19 -080089 /**
Jessica Hummelf72078b2014-03-06 16:13:12 +000090 * Activity action: Starts the provisioning flow which sets up a managed profile.
Jessica Hummelf72078b2014-03-06 16:13:12 +000091 *
Jessica Hummel9da60392014-05-21 12:32:57 +010092 * <p>A managed profile allows data separation for example for the usage of a
93 * device as a personal and corporate device. The user which provisioning is started from and
94 * the managed profile share a launcher.
95 *
96 * <p>This intent will typically be sent by a mobile device management application (mdm).
97 * Provisioning adds a managed profile and sets the mdm as the profile owner who has full
98 * control over the profile
99 *
100 * <p>This intent must contain the extras {@link #EXTRA_PROVISIONING_DEVICE_ADMIN_PACKAGE_NAME}
101 * {@link #EXTRA_PROVISIONING_DEFAULT_MANAGED_PROFILE_NAME} and {@link #EXTRA_DEVICE_ADMIN}.
Jessica Hummelf72078b2014-03-06 16:13:12 +0000102 *
103 * <p> When managed provisioning has completed, an intent of the type
104 * {@link DeviceAdminReceiver#ACTION_PROFILE_PROVISIONING_COMPLETE} is broadcasted to the
Sander Alewijnse1cc4ecc2014-06-23 19:56:52 +0100105 * managed profile.
Jessica Hummel9da60392014-05-21 12:32:57 +0100106 *
Sander Alewijnse1cc4ecc2014-06-23 19:56:52 +0100107 * <p> If provisioning fails, the managedProfile is removed so the device returns to its
108 * previous state.
Jessica Hummelf72078b2014-03-06 16:13:12 +0000109 *
110 * <p>Input: Nothing.</p>
111 * <p>Output: Nothing</p>
112 */
113 @SdkConstant(SdkConstantType.ACTIVITY_INTENT_ACTION)
114 public static final String ACTION_PROVISION_MANAGED_PROFILE
Jessica Hummel03dd2202014-03-13 16:05:26 +0000115 = "android.app.action.ACTION_PROVISION_MANAGED_PROFILE";
Jessica Hummelf72078b2014-03-06 16:13:12 +0000116
117 /**
Sander Alewijnse1cc4ecc2014-06-23 19:56:52 +0100118 * A String extra holding the package name of the mobile device management application that
119 * will be set as the profile owner or device owner.
120 *
121 * <p>If an application starts provisioning directly via an intent with action
122 * {@link #ACTION_PROVISION_MANAGED_PROFILE} this package has to match the package name of the
123 * application that started provisioning. The package will be set as profile owner in that case.
124 *
125 * <p>This package is set as device owner when device owner provisioning is started by an Nfc
126 * message containing an Nfc record with MIME type {@link #PROVISIONING_NFC_MIME_TYPE}.
Jessica Hummelf72078b2014-03-06 16:13:12 +0000127 */
128 public static final String EXTRA_PROVISIONING_DEVICE_ADMIN_PACKAGE_NAME
Jessica Hummel9da60392014-05-21 12:32:57 +0100129 = "android.app.extra.deviceAdminPackageName";
Jessica Hummelf72078b2014-03-06 16:13:12 +0000130
131 /**
132 * A String extra holding the default name of the profile that is created during managed profile
133 * provisioning.
Sander Alewijnse1cc4ecc2014-06-23 19:56:52 +0100134 *
Jessica Hummelf72078b2014-03-06 16:13:12 +0000135 * <p>Use with {@link #ACTION_PROVISION_MANAGED_PROFILE}
136 */
137 public static final String EXTRA_PROVISIONING_DEFAULT_MANAGED_PROFILE_NAME
Jessica Hummel9da60392014-05-21 12:32:57 +0100138 = "android.app.extra.defaultManagedProfileName";
Jessica Hummelf72078b2014-03-06 16:13:12 +0000139
140 /**
Jessica Hummeledb7ae72014-06-26 12:55:38 +0100141 * A String extra that, holds the email address of the account which a managed profile is
142 * created for. Used with {@link #ACTION_PROVISION_MANAGED_PROFILE} and
Nicolas Prevot07ac20b2014-05-27 15:37:45 +0100143 * {@link DeviceAdminReceiver#ACTION_PROFILE_PROVISIONING_COMPLETE}.
Jessica Hummeledb7ae72014-06-26 12:55:38 +0100144 *
145 * <p> If the {@link #ACTION_PROVISION_MANAGED_PROFILE} intent that starts managed provisioning
146 * contains this extra, it is forwarded in the
147 * {@link DeviceAdminReceiver#ACTION_PROFILE_PROVISIONING_COMPLETE} intent to the mobile
148 * device management application that was set as the profile owner during provisioning.
149 * It is usually used to avoid that the user has to enter their email address twice.
Nicolas Prevot07ac20b2014-05-27 15:37:45 +0100150 */
151 public static final String EXTRA_PROVISIONING_EMAIL_ADDRESS
152 = "android.app.extra.ManagedProfileEmailAddress";
153
154 /**
Sander Alewijnse1cc4ecc2014-06-23 19:56:52 +0100155 * A String extra holding the time zone {@link android.app.AlarmManager} that the device
156 * will be set to.
157 *
158 * <p>Use in an Nfc record with {@link #PROVISIONING_NFC_MIME_TYPE} that starts device owner
159 * provisioning via an Nfc bump.
160 */
161 public static final String EXTRA_PROVISIONING_TIME_ZONE
162 = "android.app.extra.timeZone";
163
164 /**
165 * A Long extra holding the local time {@link android.app.AlarmManager} that the device
166 * will be set to.
167 *
168 * <p>Use in an Nfc record with {@link #PROVISIONING_NFC_MIME_TYPE} that starts device owner
169 * provisioning via an Nfc bump.
170 */
171 public static final String EXTRA_PROVISIONING_LOCAL_TIME
172 = "android.app.extra.localTime";
173
174 /**
175 * A String extra holding the {@link java.util.Locale} that the device will be set to.
176 * Format: xx_yy, where xx is the language code, and yy the country code.
177 *
178 * <p>Use in an Nfc record with {@link #PROVISIONING_NFC_MIME_TYPE} that starts device owner
179 * provisioning via an Nfc bump.
180 */
181 public static final String EXTRA_PROVISIONING_LOCALE
182 = "android.app.extra.locale";
183
184 /**
185 * A String extra holding the ssid of the wifi network that should be used during nfc device
186 * owner provisioning for downloading the mobile device management application.
187 *
188 * <p>Use in an Nfc record with {@link #PROVISIONING_NFC_MIME_TYPE} that starts device owner
189 * provisioning via an Nfc bump.
190 */
191 public static final String EXTRA_PROVISIONING_WIFI_SSID
192 = "android.app.extra.wifiSsid";
193
194 /**
195 * A boolean extra indicating whether the wifi network in {@link #EXTRA_PROVISIONING_WIFI_SSID}
196 * is hidden or not.
197 *
198 * <p>Use in an Nfc record with {@link #PROVISIONING_NFC_MIME_TYPE} that starts device owner
199 * provisioning via an Nfc bump.
200 */
201 public static final String EXTRA_PROVISIONING_WIFI_HIDDEN
202 = "android.app.extra.wifiHidden";
203
204 /**
205 * A String extra indicating the security type of the wifi network in
206 * {@link #EXTRA_PROVISIONING_WIFI_SSID}.
207 *
208 * <p>Use in an Nfc record with {@link #PROVISIONING_NFC_MIME_TYPE} that starts device owner
209 * provisioning via an Nfc bump.
210 */
211 public static final String EXTRA_PROVISIONING_WIFI_SECURITY_TYPE
212 = "android.app.extra.wifiSecurityType";
213
214 /**
215 * A String extra holding the password of the wifi network in
216 * {@link #EXTRA_PROVISIONING_WIFI_SSID}.
217 *
218 * <p>Use in an Nfc record with {@link #PROVISIONING_NFC_MIME_TYPE} that starts device owner
219 * provisioning via an Nfc bump.
220 */
221 public static final String EXTRA_PROVISIONING_WIFI_PASSWORD
222 = "android.app.extra.wifiPassword";
223
224 /**
225 * A String extra holding the proxy host for the wifi network in
226 * {@link #EXTRA_PROVISIONING_WIFI_SSID}.
227 *
228 * <p>Use in an Nfc record with {@link #PROVISIONING_NFC_MIME_TYPE} that starts device owner
229 * provisioning via an Nfc bump.
230 */
231 public static final String EXTRA_PROVISIONING_WIFI_PROXY_HOST
232 = "android.app.extra.wifiProxyHost";
233
234 /**
235 * An int extra holding the proxy port for the wifi network in
236 * {@link #EXTRA_PROVISIONING_WIFI_SSID}.
237 *
238 * <p>Use in an Nfc record with {@link #PROVISIONING_NFC_MIME_TYPE} that starts device owner
239 * provisioning via an Nfc bump.
240 */
241 public static final String EXTRA_PROVISIONING_WIFI_PROXY_PORT
242 = "android.app.extra.wifiProxyPort";
243
244 /**
245 * A String extra holding the proxy bypass for the wifi network in
246 * {@link #EXTRA_PROVISIONING_WIFI_SSID}.
247 *
248 * <p>Use in an Nfc record with {@link #PROVISIONING_NFC_MIME_TYPE} that starts device owner
249 * provisioning via an Nfc bump.
250 */
251 public static final String EXTRA_PROVISIONING_WIFI_PROXY_BYPASS
252 = "android.app.extra.wifiProxyBypassHosts";
253
254 /**
255 * A String extra holding the proxy auto-config (PAC) URL for the wifi network in
256 * {@link #EXTRA_PROVISIONING_WIFI_SSID}.
257 *
258 * <p>Use in an Nfc record with {@link #PROVISIONING_NFC_MIME_TYPE} that starts device owner
259 * provisioning via an Nfc bump.
260 */
261 public static final String EXTRA_PROVISIONING_WIFI_PAC_URL
262 = "android.app.extra.wifiPacUrl";
263
264 /**
265 * A String extra holding a url that specifies the download location of the device admin
266 * package. When not provided it is assumed that the device admin package is already installed.
267 *
268 * <p>Use in an Nfc record with {@link #PROVISIONING_NFC_MIME_TYPE} that starts device owner
269 * provisioning via an Nfc bump.
270 */
271 public static final String EXTRA_PROVISIONING_DEVICE_ADMIN_PACKAGE_DOWNLOAD_LOCATION
272 = "android.app.extra.deviceAdminPackageDownloadLocation";
273
274 /**
275 * A String extra holding the SHA-1 checksum of the file at download location specified in
276 * {@link #EXTRA_PROVISIONING_DEVICE_ADMIN_PACKAGE_DOWNLOAD_LOCATION}. If this doesn't match
277 * the file at the download location an error will be shown to the user and the user will be
278 * asked to factory reset the device.
279 *
280 * <p>Use in an Nfc record with {@link #PROVISIONING_NFC_MIME_TYPE} that starts device owner
281 * provisioning via an Nfc bump.
282 */
283 public static final String EXTRA_PROVISIONING_DEVICE_ADMIN_PACKAGE_CHECKSUM
284 = "android.app.extra.deviceAdminPackageChecksum";
285
286 /**
287 * This MIME type is used for starting the Device Owner provisioning.
288 *
289 * <p>During device owner provisioning a device admin app is set as the owner of the device.
290 * A device owner has full control over the device. The device owner can not be modified by the
291 * user and the only way of resetting the device is if the device owner app calls a factory
292 * reset.
293 *
294 * <p> A typical use case would be a device that is owned by a company, but used by either an
295 * employee or client.
296 *
297 * <p> The Nfc message should be send to an unprovisioned device.
298 *
299 * <p>The Nfc record must contain a serialized {@link java.util.Properties} object which
300 * contains the following properties:
301 * <ul>
302 * <li>{@link #EXTRA_PROVISIONING_DEVICE_ADMIN_PACKAGE_NAME}</li>
303 * <li>{@link #EXTRA_PROVISIONING_DEVICE_ADMIN_PACKAGE_DOWNLOAD_LOCATION}</li>
304 * <li>{@link #EXTRA_PROVISIONING_DEVICE_ADMIN_PACKAGE_CHECKSUM}</li>
305 * <li>{@link #EXTRA_PROVISIONING_LOCAL_TIME} (convert to String), optional</li>
306 * <li>{@link #EXTRA_PROVISIONING_TIME_ZONE}, optional</li>
307 * <li>{@link #EXTRA_PROVISIONING_LOCALE}, optional</li>
308 * <li>{@link #EXTRA_PROVISIONING_WIFI_SSID}, optional</li>
309 * <li>{@link #EXTRA_PROVISIONING_WIFI_HIDDEN} (convert to String), optional</li>
310 * <li>{@link #EXTRA_PROVISIONING_WIFI_SECURITY_TYPE}, optional</li>
311 * <li>{@link #EXTRA_PROVISIONING_WIFI_PASSWORD}, optional</li>
312 * <li>{@link #EXTRA_PROVISIONING_WIFI_PROXY_HOST}, optional</li>
313 * <li>{@link #EXTRA_PROVISIONING_WIFI_PROXY_PORT} (convert to String), optional</li>
314 * <li>{@link #EXTRA_PROVISIONING_WIFI_PROXY_BYPASS}, optional</li>
315 * <li>{@link #EXTRA_PROVISIONING_WIFI_PAC_URL}, optional</li></ul>
316 *
317 * <p> When device owner provisioning has completed, an intent of the type
318 * {@link DeviceAdminReceiver#ACTION_PROFILE_PROVISIONING_COMPLETE} is broadcasted to the
319 * device owner.
320 *
321 * <p>
322 * If provisioning fails, the device is factory reset.
323 *
324 * <p>Input: Nothing.</p>
325 * <p>Output: Nothing</p>
326 */
327 public static final String PROVISIONING_NFC_MIME_TYPE
328 = "application/com.android.managedprovisioning";
329
330 /**
Dianne Hackbornd6847842010-01-12 18:14:19 -0800331 * Activity action: ask the user to add a new device administrator to the system.
332 * The desired policy is the ComponentName of the policy in the
333 * {@link #EXTRA_DEVICE_ADMIN} extra field. This will invoke a UI to
334 * bring the user through adding the device administrator to the system (or
335 * allowing them to reject it).
Konstantin Lopyrev32558232010-05-20 16:18:05 -0700336 *
Dianne Hackborn8ea138c2010-01-26 18:01:04 -0800337 * <p>You can optionally include the {@link #EXTRA_ADD_EXPLANATION}
338 * field to provide the user with additional explanation (in addition
339 * to your component's description) about what is being added.
Andy Stadlerc25f70a2010-12-08 15:56:45 -0800340 *
341 * <p>If your administrator is already active, this will ordinarily return immediately (without
342 * user intervention). However, if your administrator has been updated and is requesting
343 * additional uses-policy flags, the user will be presented with the new list. New policies
344 * will not be available to the updated administrator until the user has accepted the new list.
Dianne Hackbornd6847842010-01-12 18:14:19 -0800345 */
346 @SdkConstant(SdkConstantType.ACTIVITY_INTENT_ACTION)
347 public static final String ACTION_ADD_DEVICE_ADMIN
348 = "android.app.action.ADD_DEVICE_ADMIN";
Konstantin Lopyrev32558232010-05-20 16:18:05 -0700349
Dianne Hackbornd6847842010-01-12 18:14:19 -0800350 /**
Jim Miller284b62e2010-06-08 14:27:42 -0700351 * Activity action: send when any policy admin changes a policy.
352 * This is generally used to find out when a new policy is in effect.
Jim Miller3e5d3fd2011-09-02 17:30:35 -0700353 *
Jim Miller284b62e2010-06-08 14:27:42 -0700354 * @hide
355 */
356 public static final String ACTION_DEVICE_POLICY_MANAGER_STATE_CHANGED
357 = "android.app.action.DEVICE_POLICY_MANAGER_STATE_CHANGED";
358
359 /**
Dianne Hackbornd6847842010-01-12 18:14:19 -0800360 * The ComponentName of the administrator component.
361 *
362 * @see #ACTION_ADD_DEVICE_ADMIN
363 */
364 public static final String EXTRA_DEVICE_ADMIN = "android.app.extra.DEVICE_ADMIN";
Konstantin Lopyrev32558232010-05-20 16:18:05 -0700365
Dianne Hackbornd6847842010-01-12 18:14:19 -0800366 /**
Dianne Hackborn8ea138c2010-01-26 18:01:04 -0800367 * An optional CharSequence providing additional explanation for why the
368 * admin is being added.
369 *
370 * @see #ACTION_ADD_DEVICE_ADMIN
371 */
372 public static final String EXTRA_ADD_EXPLANATION = "android.app.extra.ADD_EXPLANATION";
Konstantin Lopyrev32558232010-05-20 16:18:05 -0700373
Dianne Hackborn8ea138c2010-01-26 18:01:04 -0800374 /**
Konstantin Lopyrev32558232010-05-20 16:18:05 -0700375 * Activity action: have the user enter a new password. This activity should
376 * be launched after using {@link #setPasswordQuality(ComponentName, int)},
377 * or {@link #setPasswordMinimumLength(ComponentName, int)} to have the user
378 * enter a new password that meets the current requirements. You can use
379 * {@link #isActivePasswordSufficient()} to determine whether you need to
380 * have the user select a new password in order to meet the current
381 * constraints. Upon being resumed from this activity, you can check the new
382 * password characteristics to see if they are sufficient.
Dianne Hackbornd6847842010-01-12 18:14:19 -0800383 */
384 @SdkConstant(SdkConstantType.ACTIVITY_INTENT_ACTION)
385 public static final String ACTION_SET_NEW_PASSWORD
386 = "android.app.action.SET_NEW_PASSWORD";
Nicolas Prevot10fa67c2014-03-24 13:44:38 +0000387 /**
Nicolas Prevot81948992014-05-16 18:25:26 +0100388 * Flag used by {@link #addCrossProfileIntentFilter} to allow access of certain intents from a
389 * managed profile to its parent.
Nicolas Prevot10fa67c2014-03-24 13:44:38 +0000390 */
Nicolas Prevot81948992014-05-16 18:25:26 +0100391 public static int FLAG_PARENT_CAN_ACCESS_MANAGED = 0x0001;
Nicolas Prevot10fa67c2014-03-24 13:44:38 +0000392
393 /**
Nicolas Prevot81948992014-05-16 18:25:26 +0100394 * Flag used by {@link #addCrossProfileIntentFilter} to allow access of certain intents from the
395 * parent to its managed profile.
Nicolas Prevot10fa67c2014-03-24 13:44:38 +0000396 */
Nicolas Prevot81948992014-05-16 18:25:26 +0100397 public static int FLAG_MANAGED_CAN_ACCESS_PARENT = 0x0002;
Konstantin Lopyrev32558232010-05-20 16:18:05 -0700398
Dianne Hackbornd6847842010-01-12 18:14:19 -0800399 /**
400 * Return true if the given administrator component is currently
401 * active (enabled) in the system.
402 */
403 public boolean isAdminActive(ComponentName who) {
404 if (mService != null) {
405 try {
Amith Yamasani599dd7c2012-09-14 23:20:08 -0700406 return mService.isAdminActive(who, UserHandle.myUserId());
Dianne Hackbornd6847842010-01-12 18:14:19 -0800407 } catch (RemoteException e) {
408 Log.w(TAG, "Failed talking with device policy service", e);
409 }
410 }
411 return false;
412 }
Konstantin Lopyrev32558232010-05-20 16:18:05 -0700413
Dianne Hackbornd6847842010-01-12 18:14:19 -0800414 /**
Dianne Hackbornd47c6ed2010-01-27 16:21:20 -0800415 * Return a list of all currently active device administrator's component
416 * names. Note that if there are no administrators than null may be
417 * returned.
418 */
419 public List<ComponentName> getActiveAdmins() {
420 if (mService != null) {
421 try {
Amith Yamasani599dd7c2012-09-14 23:20:08 -0700422 return mService.getActiveAdmins(UserHandle.myUserId());
Dianne Hackbornd47c6ed2010-01-27 16:21:20 -0800423 } catch (RemoteException e) {
424 Log.w(TAG, "Failed talking with device policy service", e);
425 }
426 }
427 return null;
428 }
Konstantin Lopyrev32558232010-05-20 16:18:05 -0700429
Dianne Hackbornd47c6ed2010-01-27 16:21:20 -0800430 /**
Amith Yamasani599dd7c2012-09-14 23:20:08 -0700431 * Used by package administration code to determine if a package can be stopped
432 * or uninstalled.
Dianne Hackborn21f1bd12010-02-19 17:02:21 -0800433 * @hide
434 */
435 public boolean packageHasActiveAdmins(String packageName) {
436 if (mService != null) {
437 try {
Amith Yamasani599dd7c2012-09-14 23:20:08 -0700438 return mService.packageHasActiveAdmins(packageName, UserHandle.myUserId());
Dianne Hackborn21f1bd12010-02-19 17:02:21 -0800439 } catch (RemoteException e) {
440 Log.w(TAG, "Failed talking with device policy service", e);
441 }
442 }
443 return false;
444 }
Konstantin Lopyrev32558232010-05-20 16:18:05 -0700445
Dianne Hackborn21f1bd12010-02-19 17:02:21 -0800446 /**
Dianne Hackbornd6847842010-01-12 18:14:19 -0800447 * Remove a current administration component. This can only be called
448 * by the application that owns the administration component; if you
449 * try to remove someone else's component, a security exception will be
450 * thrown.
451 */
452 public void removeActiveAdmin(ComponentName who) {
453 if (mService != null) {
454 try {
Amith Yamasani599dd7c2012-09-14 23:20:08 -0700455 mService.removeActiveAdmin(who, UserHandle.myUserId());
Dianne Hackbornd6847842010-01-12 18:14:19 -0800456 } catch (RemoteException e) {
457 Log.w(TAG, "Failed talking with device policy service", e);
458 }
459 }
460 }
Konstantin Lopyrev32558232010-05-20 16:18:05 -0700461
Dianne Hackbornd6847842010-01-12 18:14:19 -0800462 /**
Andy Stadlerc25f70a2010-12-08 15:56:45 -0800463 * Returns true if an administrator has been granted a particular device policy. This can
464 * be used to check if the administrator was activated under an earlier set of policies,
465 * but requires additional policies after an upgrade.
466 *
467 * @param admin Which {@link DeviceAdminReceiver} this request is associated with. Must be
468 * an active administrator, or an exception will be thrown.
469 * @param usesPolicy Which uses-policy to check, as defined in {@link DeviceAdminInfo}.
470 */
471 public boolean hasGrantedPolicy(ComponentName admin, int usesPolicy) {
472 if (mService != null) {
473 try {
Amith Yamasani599dd7c2012-09-14 23:20:08 -0700474 return mService.hasGrantedPolicy(admin, usesPolicy, UserHandle.myUserId());
Andy Stadlerc25f70a2010-12-08 15:56:45 -0800475 } catch (RemoteException e) {
476 Log.w(TAG, "Failed talking with device policy service", e);
477 }
478 }
479 return false;
480 }
481
482 /**
Dianne Hackborn9327f4f2010-01-29 10:38:29 -0800483 * Constant for {@link #setPasswordQuality}: the policy has no requirements
484 * for the password. Note that quality constants are ordered so that higher
Dianne Hackborndf83afa2010-01-20 13:37:26 -0800485 * values are more restrictive.
Dianne Hackbornd6847842010-01-12 18:14:19 -0800486 */
Dianne Hackborn9327f4f2010-01-29 10:38:29 -0800487 public static final int PASSWORD_QUALITY_UNSPECIFIED = 0;
Konstantin Lopyrev32558232010-05-20 16:18:05 -0700488
Dianne Hackbornd6847842010-01-12 18:14:19 -0800489 /**
Jim Miller3e5d3fd2011-09-02 17:30:35 -0700490 * Constant for {@link #setPasswordQuality}: the policy allows for low-security biometric
491 * recognition technology. This implies technologies that can recognize the identity of
492 * an individual to about a 3 digit PIN (false detection is less than 1 in 1,000).
493 * Note that quality constants are ordered so that higher values are more restrictive.
494 */
495 public static final int PASSWORD_QUALITY_BIOMETRIC_WEAK = 0x8000;
496
497 /**
Dianne Hackborn9327f4f2010-01-29 10:38:29 -0800498 * Constant for {@link #setPasswordQuality}: the policy requires some kind
499 * of password, but doesn't care what it is. Note that quality constants
Dianne Hackborndf83afa2010-01-20 13:37:26 -0800500 * are ordered so that higher values are more restrictive.
Dianne Hackbornd6847842010-01-12 18:14:19 -0800501 */
Dianne Hackborn9327f4f2010-01-29 10:38:29 -0800502 public static final int PASSWORD_QUALITY_SOMETHING = 0x10000;
Konstantin Lopyrev32558232010-05-20 16:18:05 -0700503
Dianne Hackborndf83afa2010-01-20 13:37:26 -0800504 /**
Dianne Hackborn9327f4f2010-01-29 10:38:29 -0800505 * Constant for {@link #setPasswordQuality}: the user must have entered a
506 * password containing at least numeric characters. Note that quality
507 * constants are ordered so that higher values are more restrictive.
Dianne Hackborndf83afa2010-01-20 13:37:26 -0800508 */
Dianne Hackborn9327f4f2010-01-29 10:38:29 -0800509 public static final int PASSWORD_QUALITY_NUMERIC = 0x20000;
Konstantin Lopyrev32558232010-05-20 16:18:05 -0700510
Dianne Hackbornd6847842010-01-12 18:14:19 -0800511 /**
Dianne Hackborn9327f4f2010-01-29 10:38:29 -0800512 * Constant for {@link #setPasswordQuality}: the user must have entered a
Jim Miller85516d02014-01-31 17:08:37 -0800513 * password containing at least numeric characters with no repeating (4444)
514 * or ordered (1234, 4321, 2468) sequences. Note that quality
515 * constants are ordered so that higher values are more restrictive.
516 */
517 public static final int PASSWORD_QUALITY_NUMERIC_COMPLEX = 0x30000;
518
519 /**
520 * Constant for {@link #setPasswordQuality}: the user must have entered a
Dianne Hackborn85f2c9c2010-03-22 11:12:48 -0700521 * password containing at least alphabetic (or other symbol) characters.
522 * Note that quality constants are ordered so that higher values are more
523 * restrictive.
524 */
525 public static final int PASSWORD_QUALITY_ALPHABETIC = 0x40000;
Konstantin Lopyrev32558232010-05-20 16:18:05 -0700526
Dianne Hackborn85f2c9c2010-03-22 11:12:48 -0700527 /**
528 * Constant for {@link #setPasswordQuality}: the user must have entered a
Dianne Hackborn9327f4f2010-01-29 10:38:29 -0800529 * password containing at least <em>both></em> numeric <em>and</em>
Dianne Hackborn85f2c9c2010-03-22 11:12:48 -0700530 * alphabetic (or other symbol) characters. Note that quality constants are
Dianne Hackborn9327f4f2010-01-29 10:38:29 -0800531 * ordered so that higher values are more restrictive.
Dianne Hackbornd6847842010-01-12 18:14:19 -0800532 */
Dianne Hackborn85f2c9c2010-03-22 11:12:48 -0700533 public static final int PASSWORD_QUALITY_ALPHANUMERIC = 0x50000;
Konstantin Lopyrev32558232010-05-20 16:18:05 -0700534
Dianne Hackbornd6847842010-01-12 18:14:19 -0800535 /**
Konstantin Lopyreva15dcfa2010-05-24 17:10:56 -0700536 * Constant for {@link #setPasswordQuality}: the user must have entered a
Konstantin Lopyrevc8577402010-06-04 17:15:02 -0700537 * password containing at least a letter, a numerical digit and a special
538 * symbol, by default. With this password quality, passwords can be
539 * restricted to contain various sets of characters, like at least an
540 * uppercase letter, etc. These are specified using various methods,
541 * like {@link #setPasswordMinimumLowerCase(ComponentName, int)}. Note
542 * that quality constants are ordered so that higher values are more
543 * restrictive.
Konstantin Lopyreva15dcfa2010-05-24 17:10:56 -0700544 */
545 public static final int PASSWORD_QUALITY_COMPLEX = 0x60000;
546
547 /**
Dianne Hackbornd6847842010-01-12 18:14:19 -0800548 * Called by an application that is administering the device to set the
549 * password restrictions it is imposing. After setting this, the user
550 * will not be able to enter a new password that is not at least as
551 * restrictive as what has been set. Note that the current password
552 * will remain until the user has set a new one, so the change does not
553 * take place immediately. To prompt the user for a new password, use
554 * {@link #ACTION_SET_NEW_PASSWORD} after setting this value.
Konstantin Lopyrev32558232010-05-20 16:18:05 -0700555 *
Dianne Hackborn9327f4f2010-01-29 10:38:29 -0800556 * <p>Quality constants are ordered so that higher values are more restrictive;
557 * thus the highest requested quality constant (between the policy set here,
Dianne Hackborndf83afa2010-01-20 13:37:26 -0800558 * the user's preference, and any other considerations) is the one that
559 * is in effect.
Konstantin Lopyrev32558232010-05-20 16:18:05 -0700560 *
Dianne Hackborn8aa2e892010-01-22 11:31:30 -0800561 * <p>The calling device admin must have requested
562 * {@link DeviceAdminInfo#USES_POLICY_LIMIT_PASSWORD} to be able to call
563 * this method; if it has not, a security exception will be thrown.
Konstantin Lopyrev32558232010-05-20 16:18:05 -0700564 *
Dianne Hackbornef6b22f2010-02-16 20:38:49 -0800565 * @param admin Which {@link DeviceAdminReceiver} this request is associated with.
Dianne Hackborn9327f4f2010-01-29 10:38:29 -0800566 * @param quality The new desired quality. One of
567 * {@link #PASSWORD_QUALITY_UNSPECIFIED}, {@link #PASSWORD_QUALITY_SOMETHING},
Jim Miller85516d02014-01-31 17:08:37 -0800568 * {@link #PASSWORD_QUALITY_NUMERIC}, {@link #PASSWORD_QUALITY_NUMERIC_COMPLEX},
569 * {@link #PASSWORD_QUALITY_ALPHABETIC}, {@link #PASSWORD_QUALITY_ALPHANUMERIC}
570 * or {@link #PASSWORD_QUALITY_COMPLEX}.
Dianne Hackbornd6847842010-01-12 18:14:19 -0800571 */
Dianne Hackborn9327f4f2010-01-29 10:38:29 -0800572 public void setPasswordQuality(ComponentName admin, int quality) {
Dianne Hackbornd6847842010-01-12 18:14:19 -0800573 if (mService != null) {
574 try {
Amith Yamasani599dd7c2012-09-14 23:20:08 -0700575 mService.setPasswordQuality(admin, quality, UserHandle.myUserId());
Dianne Hackbornd6847842010-01-12 18:14:19 -0800576 } catch (RemoteException e) {
577 Log.w(TAG, "Failed talking with device policy service", e);
578 }
579 }
580 }
Konstantin Lopyrev32558232010-05-20 16:18:05 -0700581
Dianne Hackbornd6847842010-01-12 18:14:19 -0800582 /**
Jessica Hummel91da58d2014-04-10 17:39:43 +0100583 * Retrieve the current minimum password quality for all admins of this user
584 * and its profiles or a particular one.
Dianne Hackborn254cb442010-01-27 19:23:59 -0800585 * @param admin The name of the admin component to check, or null to aggregate
586 * all admins.
Dianne Hackbornd6847842010-01-12 18:14:19 -0800587 */
Dianne Hackborn9327f4f2010-01-29 10:38:29 -0800588 public int getPasswordQuality(ComponentName admin) {
Amith Yamasani599dd7c2012-09-14 23:20:08 -0700589 return getPasswordQuality(admin, UserHandle.myUserId());
590 }
591
592 /** @hide per-user version */
593 public int getPasswordQuality(ComponentName admin, int userHandle) {
Dianne Hackbornd6847842010-01-12 18:14:19 -0800594 if (mService != null) {
595 try {
Amith Yamasani599dd7c2012-09-14 23:20:08 -0700596 return mService.getPasswordQuality(admin, userHandle);
Dianne Hackbornd6847842010-01-12 18:14:19 -0800597 } catch (RemoteException e) {
598 Log.w(TAG, "Failed talking with device policy service", e);
599 }
600 }
Dianne Hackborn9327f4f2010-01-29 10:38:29 -0800601 return PASSWORD_QUALITY_UNSPECIFIED;
Dianne Hackbornd6847842010-01-12 18:14:19 -0800602 }
Konstantin Lopyrev32558232010-05-20 16:18:05 -0700603
Dianne Hackbornd6847842010-01-12 18:14:19 -0800604 /**
Dianne Hackbornd6847842010-01-12 18:14:19 -0800605 * Called by an application that is administering the device to set the
606 * minimum allowed password length. After setting this, the user
607 * will not be able to enter a new password that is not at least as
608 * restrictive as what has been set. Note that the current password
609 * will remain until the user has set a new one, so the change does not
610 * take place immediately. To prompt the user for a new password, use
611 * {@link #ACTION_SET_NEW_PASSWORD} after setting this value. This
612 * constraint is only imposed if the administrator has also requested either
Jim Miller85516d02014-01-31 17:08:37 -0800613 * {@link #PASSWORD_QUALITY_NUMERIC}, {@link #PASSWORD_QUALITY_NUMERIC_COMPLEX},
614 * {@link #PASSWORD_QUALITY_ALPHABETIC}, {@link #PASSWORD_QUALITY_ALPHANUMERIC},
615 * or {@link #PASSWORD_QUALITY_COMPLEX} with {@link #setPasswordQuality}.
Konstantin Lopyrev32558232010-05-20 16:18:05 -0700616 *
Dianne Hackborn8aa2e892010-01-22 11:31:30 -0800617 * <p>The calling device admin must have requested
618 * {@link DeviceAdminInfo#USES_POLICY_LIMIT_PASSWORD} to be able to call
619 * this method; if it has not, a security exception will be thrown.
Konstantin Lopyrev32558232010-05-20 16:18:05 -0700620 *
Dianne Hackbornef6b22f2010-02-16 20:38:49 -0800621 * @param admin Which {@link DeviceAdminReceiver} this request is associated with.
Dianne Hackbornd6847842010-01-12 18:14:19 -0800622 * @param length The new desired minimum password length. A value of 0
623 * means there is no restriction.
624 */
Dianne Hackborn254cb442010-01-27 19:23:59 -0800625 public void setPasswordMinimumLength(ComponentName admin, int length) {
Dianne Hackbornd6847842010-01-12 18:14:19 -0800626 if (mService != null) {
627 try {
Amith Yamasani599dd7c2012-09-14 23:20:08 -0700628 mService.setPasswordMinimumLength(admin, length, UserHandle.myUserId());
Dianne Hackbornd6847842010-01-12 18:14:19 -0800629 } catch (RemoteException e) {
630 Log.w(TAG, "Failed talking with device policy service", e);
631 }
632 }
633 }
Konstantin Lopyrev32558232010-05-20 16:18:05 -0700634
Dianne Hackbornd6847842010-01-12 18:14:19 -0800635 /**
Jessica Hummel91da58d2014-04-10 17:39:43 +0100636 * Retrieve the current minimum password length for all admins of this
637 * user and its profiles or a particular one.
Dianne Hackborn254cb442010-01-27 19:23:59 -0800638 * @param admin The name of the admin component to check, or null to aggregate
639 * all admins.
Dianne Hackbornd6847842010-01-12 18:14:19 -0800640 */
Dianne Hackborn254cb442010-01-27 19:23:59 -0800641 public int getPasswordMinimumLength(ComponentName admin) {
Amith Yamasani599dd7c2012-09-14 23:20:08 -0700642 return getPasswordMinimumLength(admin, UserHandle.myUserId());
643 }
644
645 /** @hide per-user version */
646 public int getPasswordMinimumLength(ComponentName admin, int userHandle) {
Dianne Hackbornd6847842010-01-12 18:14:19 -0800647 if (mService != null) {
648 try {
Amith Yamasani599dd7c2012-09-14 23:20:08 -0700649 return mService.getPasswordMinimumLength(admin, userHandle);
Dianne Hackbornd6847842010-01-12 18:14:19 -0800650 } catch (RemoteException e) {
651 Log.w(TAG, "Failed talking with device policy service", e);
652 }
653 }
654 return 0;
655 }
Konstantin Lopyrev32558232010-05-20 16:18:05 -0700656
Konstantin Lopyreva15dcfa2010-05-24 17:10:56 -0700657 /**
658 * Called by an application that is administering the device to set the
659 * minimum number of upper case letters required in the password. After
660 * setting this, the user will not be able to enter a new password that is
661 * not at least as restrictive as what has been set. Note that the current
662 * password will remain until the user has set a new one, so the change does
663 * not take place immediately. To prompt the user for a new password, use
664 * {@link #ACTION_SET_NEW_PASSWORD} after setting this value. This
665 * constraint is only imposed if the administrator has also requested
Konstantin Lopyrevc8577402010-06-04 17:15:02 -0700666 * {@link #PASSWORD_QUALITY_COMPLEX} with {@link #setPasswordQuality}. The
667 * default value is 0.
Konstantin Lopyreva15dcfa2010-05-24 17:10:56 -0700668 * <p>
669 * The calling device admin must have requested
670 * {@link DeviceAdminInfo#USES_POLICY_LIMIT_PASSWORD} to be able to call
671 * this method; if it has not, a security exception will be thrown.
672 *
673 * @param admin Which {@link DeviceAdminReceiver} this request is associated
674 * with.
675 * @param length The new desired minimum number of upper case letters
676 * required in the password. A value of 0 means there is no
677 * restriction.
678 */
679 public void setPasswordMinimumUpperCase(ComponentName admin, int length) {
680 if (mService != null) {
681 try {
Amith Yamasani599dd7c2012-09-14 23:20:08 -0700682 mService.setPasswordMinimumUpperCase(admin, length, UserHandle.myUserId());
Konstantin Lopyreva15dcfa2010-05-24 17:10:56 -0700683 } catch (RemoteException e) {
684 Log.w(TAG, "Failed talking with device policy service", e);
685 }
686 }
687 }
688
689 /**
690 * Retrieve the current number of upper case letters required in the
Jessica Hummel91da58d2014-04-10 17:39:43 +0100691 * password for all admins of this user and its profiles or a particular one.
692 * This is the same value as set by
693 * {#link {@link #setPasswordMinimumUpperCase(ComponentName, int)}
Konstantin Lopyrevc8577402010-06-04 17:15:02 -0700694 * and only applies when the password quality is
695 * {@link #PASSWORD_QUALITY_COMPLEX}.
Konstantin Lopyreva15dcfa2010-05-24 17:10:56 -0700696 *
697 * @param admin The name of the admin component to check, or null to
698 * aggregate all admins.
699 * @return The minimum number of upper case letters required in the
700 * password.
701 */
702 public int getPasswordMinimumUpperCase(ComponentName admin) {
Amith Yamasani599dd7c2012-09-14 23:20:08 -0700703 return getPasswordMinimumUpperCase(admin, UserHandle.myUserId());
704 }
705
706 /** @hide per-user version */
707 public int getPasswordMinimumUpperCase(ComponentName admin, int userHandle) {
Konstantin Lopyreva15dcfa2010-05-24 17:10:56 -0700708 if (mService != null) {
709 try {
Amith Yamasani599dd7c2012-09-14 23:20:08 -0700710 return mService.getPasswordMinimumUpperCase(admin, userHandle);
Konstantin Lopyreva15dcfa2010-05-24 17:10:56 -0700711 } catch (RemoteException e) {
712 Log.w(TAG, "Failed talking with device policy service", e);
713 }
714 }
715 return 0;
716 }
717
718 /**
719 * Called by an application that is administering the device to set the
720 * minimum number of lower case letters required in the password. After
721 * setting this, the user will not be able to enter a new password that is
722 * not at least as restrictive as what has been set. Note that the current
723 * password will remain until the user has set a new one, so the change does
724 * not take place immediately. To prompt the user for a new password, use
725 * {@link #ACTION_SET_NEW_PASSWORD} after setting this value. This
726 * constraint is only imposed if the administrator has also requested
Konstantin Lopyrevc8577402010-06-04 17:15:02 -0700727 * {@link #PASSWORD_QUALITY_COMPLEX} with {@link #setPasswordQuality}. The
728 * default value is 0.
Konstantin Lopyreva15dcfa2010-05-24 17:10:56 -0700729 * <p>
730 * The calling device admin must have requested
731 * {@link DeviceAdminInfo#USES_POLICY_LIMIT_PASSWORD} to be able to call
732 * this method; if it has not, a security exception will be thrown.
733 *
734 * @param admin Which {@link DeviceAdminReceiver} this request is associated
735 * with.
736 * @param length The new desired minimum number of lower case letters
737 * required in the password. A value of 0 means there is no
738 * restriction.
739 */
740 public void setPasswordMinimumLowerCase(ComponentName admin, int length) {
741 if (mService != null) {
742 try {
Amith Yamasani599dd7c2012-09-14 23:20:08 -0700743 mService.setPasswordMinimumLowerCase(admin, length, UserHandle.myUserId());
Konstantin Lopyreva15dcfa2010-05-24 17:10:56 -0700744 } catch (RemoteException e) {
745 Log.w(TAG, "Failed talking with device policy service", e);
746 }
747 }
748 }
749
750 /**
751 * Retrieve the current number of lower case letters required in the
Jessica Hummel91da58d2014-04-10 17:39:43 +0100752 * password for all admins of this user and its profiles or a particular one.
753 * This is the same value as set by
754 * {#link {@link #setPasswordMinimumLowerCase(ComponentName, int)}
Konstantin Lopyrevc8577402010-06-04 17:15:02 -0700755 * and only applies when the password quality is
756 * {@link #PASSWORD_QUALITY_COMPLEX}.
Konstantin Lopyreva15dcfa2010-05-24 17:10:56 -0700757 *
758 * @param admin The name of the admin component to check, or null to
759 * aggregate all admins.
760 * @return The minimum number of lower case letters required in the
761 * password.
762 */
763 public int getPasswordMinimumLowerCase(ComponentName admin) {
Amith Yamasani599dd7c2012-09-14 23:20:08 -0700764 return getPasswordMinimumLowerCase(admin, UserHandle.myUserId());
765 }
766
767 /** @hide per-user version */
768 public int getPasswordMinimumLowerCase(ComponentName admin, int userHandle) {
Konstantin Lopyreva15dcfa2010-05-24 17:10:56 -0700769 if (mService != null) {
770 try {
Amith Yamasani599dd7c2012-09-14 23:20:08 -0700771 return mService.getPasswordMinimumLowerCase(admin, userHandle);
Konstantin Lopyreva15dcfa2010-05-24 17:10:56 -0700772 } catch (RemoteException e) {
773 Log.w(TAG, "Failed talking with device policy service", e);
774 }
775 }
776 return 0;
777 }
778
779 /**
780 * Called by an application that is administering the device to set the
781 * minimum number of letters required in the password. After setting this,
782 * the user will not be able to enter a new password that is not at least as
783 * restrictive as what has been set. Note that the current password will
784 * remain until the user has set a new one, so the change does not take
785 * place immediately. To prompt the user for a new password, use
786 * {@link #ACTION_SET_NEW_PASSWORD} after setting this value. This
787 * constraint is only imposed if the administrator has also requested
Konstantin Lopyrevc8577402010-06-04 17:15:02 -0700788 * {@link #PASSWORD_QUALITY_COMPLEX} with {@link #setPasswordQuality}. The
789 * default value is 1.
Konstantin Lopyreva15dcfa2010-05-24 17:10:56 -0700790 * <p>
791 * The calling device admin must have requested
792 * {@link DeviceAdminInfo#USES_POLICY_LIMIT_PASSWORD} to be able to call
793 * this method; if it has not, a security exception will be thrown.
794 *
795 * @param admin Which {@link DeviceAdminReceiver} this request is associated
796 * with.
797 * @param length The new desired minimum number of letters required in the
798 * password. A value of 0 means there is no restriction.
799 */
800 public void setPasswordMinimumLetters(ComponentName admin, int length) {
801 if (mService != null) {
802 try {
Amith Yamasani599dd7c2012-09-14 23:20:08 -0700803 mService.setPasswordMinimumLetters(admin, length, UserHandle.myUserId());
Konstantin Lopyreva15dcfa2010-05-24 17:10:56 -0700804 } catch (RemoteException e) {
805 Log.w(TAG, "Failed talking with device policy service", e);
806 }
807 }
808 }
809
810 /**
811 * Retrieve the current number of letters required in the password for all
Konstantin Lopyrevc8577402010-06-04 17:15:02 -0700812 * admins or a particular one. This is the same value as
813 * set by {#link {@link #setPasswordMinimumLetters(ComponentName, int)}
814 * and only applies when the password quality is
815 * {@link #PASSWORD_QUALITY_COMPLEX}.
Konstantin Lopyreva15dcfa2010-05-24 17:10:56 -0700816 *
817 * @param admin The name of the admin component to check, or null to
818 * aggregate all admins.
819 * @return The minimum number of letters required in the password.
820 */
821 public int getPasswordMinimumLetters(ComponentName admin) {
Amith Yamasani599dd7c2012-09-14 23:20:08 -0700822 return getPasswordMinimumLetters(admin, UserHandle.myUserId());
823 }
824
825 /** @hide per-user version */
826 public int getPasswordMinimumLetters(ComponentName admin, int userHandle) {
Konstantin Lopyreva15dcfa2010-05-24 17:10:56 -0700827 if (mService != null) {
828 try {
Amith Yamasani599dd7c2012-09-14 23:20:08 -0700829 return mService.getPasswordMinimumLetters(admin, userHandle);
Konstantin Lopyreva15dcfa2010-05-24 17:10:56 -0700830 } catch (RemoteException e) {
831 Log.w(TAG, "Failed talking with device policy service", e);
832 }
833 }
834 return 0;
835 }
836
837 /**
838 * Called by an application that is administering the device to set the
839 * minimum number of numerical digits required in the password. After
840 * setting this, the user will not be able to enter a new password that is
841 * not at least as restrictive as what has been set. Note that the current
842 * password will remain until the user has set a new one, so the change does
843 * not take place immediately. To prompt the user for a new password, use
844 * {@link #ACTION_SET_NEW_PASSWORD} after setting this value. This
845 * constraint is only imposed if the administrator has also requested
Konstantin Lopyrevc8577402010-06-04 17:15:02 -0700846 * {@link #PASSWORD_QUALITY_COMPLEX} with {@link #setPasswordQuality}. The
847 * default value is 1.
Konstantin Lopyreva15dcfa2010-05-24 17:10:56 -0700848 * <p>
849 * The calling device admin must have requested
850 * {@link DeviceAdminInfo#USES_POLICY_LIMIT_PASSWORD} to be able to call
851 * this method; if it has not, a security exception will be thrown.
852 *
853 * @param admin Which {@link DeviceAdminReceiver} this request is associated
854 * with.
855 * @param length The new desired minimum number of numerical digits required
856 * in the password. A value of 0 means there is no restriction.
857 */
858 public void setPasswordMinimumNumeric(ComponentName admin, int length) {
859 if (mService != null) {
860 try {
Amith Yamasani599dd7c2012-09-14 23:20:08 -0700861 mService.setPasswordMinimumNumeric(admin, length, UserHandle.myUserId());
Konstantin Lopyreva15dcfa2010-05-24 17:10:56 -0700862 } catch (RemoteException e) {
863 Log.w(TAG, "Failed talking with device policy service", e);
864 }
865 }
866 }
867
868 /**
869 * Retrieve the current number of numerical digits required in the password
Jessica Hummel91da58d2014-04-10 17:39:43 +0100870 * for all admins of this user and its profiles or a particular one.
871 * This is the same value as set by
872 * {#link {@link #setPasswordMinimumNumeric(ComponentName, int)}
Konstantin Lopyrevc8577402010-06-04 17:15:02 -0700873 * and only applies when the password quality is
874 * {@link #PASSWORD_QUALITY_COMPLEX}.
Konstantin Lopyreva15dcfa2010-05-24 17:10:56 -0700875 *
876 * @param admin The name of the admin component to check, or null to
877 * aggregate all admins.
878 * @return The minimum number of numerical digits required in the password.
879 */
880 public int getPasswordMinimumNumeric(ComponentName admin) {
Amith Yamasani599dd7c2012-09-14 23:20:08 -0700881 return getPasswordMinimumNumeric(admin, UserHandle.myUserId());
882 }
883
884 /** @hide per-user version */
885 public int getPasswordMinimumNumeric(ComponentName admin, int userHandle) {
Konstantin Lopyreva15dcfa2010-05-24 17:10:56 -0700886 if (mService != null) {
887 try {
Amith Yamasani599dd7c2012-09-14 23:20:08 -0700888 return mService.getPasswordMinimumNumeric(admin, userHandle);
Konstantin Lopyreva15dcfa2010-05-24 17:10:56 -0700889 } catch (RemoteException e) {
890 Log.w(TAG, "Failed talking with device policy service", e);
891 }
892 }
893 return 0;
894 }
895
896 /**
897 * Called by an application that is administering the device to set the
898 * minimum number of symbols required in the password. After setting this,
899 * the user will not be able to enter a new password that is not at least as
900 * restrictive as what has been set. Note that the current password will
901 * remain until the user has set a new one, so the change does not take
902 * place immediately. To prompt the user for a new password, use
903 * {@link #ACTION_SET_NEW_PASSWORD} after setting this value. This
904 * constraint is only imposed if the administrator has also requested
Konstantin Lopyrevc8577402010-06-04 17:15:02 -0700905 * {@link #PASSWORD_QUALITY_COMPLEX} with {@link #setPasswordQuality}. The
906 * default value is 1.
Konstantin Lopyreva15dcfa2010-05-24 17:10:56 -0700907 * <p>
908 * The calling device admin must have requested
909 * {@link DeviceAdminInfo#USES_POLICY_LIMIT_PASSWORD} to be able to call
910 * this method; if it has not, a security exception will be thrown.
911 *
912 * @param admin Which {@link DeviceAdminReceiver} this request is associated
913 * with.
914 * @param length The new desired minimum number of symbols required in the
915 * password. A value of 0 means there is no restriction.
916 */
917 public void setPasswordMinimumSymbols(ComponentName admin, int length) {
918 if (mService != null) {
919 try {
Amith Yamasani599dd7c2012-09-14 23:20:08 -0700920 mService.setPasswordMinimumSymbols(admin, length, UserHandle.myUserId());
Konstantin Lopyreva15dcfa2010-05-24 17:10:56 -0700921 } catch (RemoteException e) {
922 Log.w(TAG, "Failed talking with device policy service", e);
923 }
924 }
925 }
926
927 /**
928 * Retrieve the current number of symbols required in the password for all
Konstantin Lopyrevc8577402010-06-04 17:15:02 -0700929 * admins or a particular one. This is the same value as
930 * set by {#link {@link #setPasswordMinimumSymbols(ComponentName, int)}
931 * and only applies when the password quality is
932 * {@link #PASSWORD_QUALITY_COMPLEX}.
Konstantin Lopyreva15dcfa2010-05-24 17:10:56 -0700933 *
934 * @param admin The name of the admin component to check, or null to
935 * aggregate all admins.
936 * @return The minimum number of symbols required in the password.
937 */
938 public int getPasswordMinimumSymbols(ComponentName admin) {
Amith Yamasani599dd7c2012-09-14 23:20:08 -0700939 return getPasswordMinimumSymbols(admin, UserHandle.myUserId());
940 }
941
942 /** @hide per-user version */
943 public int getPasswordMinimumSymbols(ComponentName admin, int userHandle) {
Konstantin Lopyreva15dcfa2010-05-24 17:10:56 -0700944 if (mService != null) {
945 try {
Amith Yamasani599dd7c2012-09-14 23:20:08 -0700946 return mService.getPasswordMinimumSymbols(admin, userHandle);
Konstantin Lopyreva15dcfa2010-05-24 17:10:56 -0700947 } catch (RemoteException e) {
948 Log.w(TAG, "Failed talking with device policy service", e);
949 }
950 }
951 return 0;
952 }
953
Konstantin Lopyrevc8577402010-06-04 17:15:02 -0700954 /**
955 * Called by an application that is administering the device to set the
956 * minimum number of non-letter characters (numerical digits or symbols)
957 * required in the password. After setting this, the user will not be able
958 * to enter a new password that is not at least as restrictive as what has
959 * been set. Note that the current password will remain until the user has
960 * set a new one, so the change does not take place immediately. To prompt
961 * the user for a new password, use {@link #ACTION_SET_NEW_PASSWORD} after
962 * setting this value. This constraint is only imposed if the administrator
963 * has also requested {@link #PASSWORD_QUALITY_COMPLEX} with
964 * {@link #setPasswordQuality}. The default value is 0.
965 * <p>
966 * The calling device admin must have requested
967 * {@link DeviceAdminInfo#USES_POLICY_LIMIT_PASSWORD} to be able to call
968 * this method; if it has not, a security exception will be thrown.
969 *
970 * @param admin Which {@link DeviceAdminReceiver} this request is associated
971 * with.
972 * @param length The new desired minimum number of letters required in the
973 * password. A value of 0 means there is no restriction.
974 */
975 public void setPasswordMinimumNonLetter(ComponentName admin, int length) {
976 if (mService != null) {
977 try {
Amith Yamasani599dd7c2012-09-14 23:20:08 -0700978 mService.setPasswordMinimumNonLetter(admin, length, UserHandle.myUserId());
Konstantin Lopyrevc8577402010-06-04 17:15:02 -0700979 } catch (RemoteException e) {
980 Log.w(TAG, "Failed talking with device policy service", e);
981 }
982 }
983 }
984
985 /**
986 * Retrieve the current number of non-letter characters required in the
Jessica Hummel91da58d2014-04-10 17:39:43 +0100987 * password for all admins of this user and its profiles or a particular one.
988 * This is the same value as set by
989 * {#link {@link #setPasswordMinimumNonLetter(ComponentName, int)}
Konstantin Lopyrevc8577402010-06-04 17:15:02 -0700990 * and only applies when the password quality is
991 * {@link #PASSWORD_QUALITY_COMPLEX}.
992 *
993 * @param admin The name of the admin component to check, or null to
994 * aggregate all admins.
995 * @return The minimum number of letters required in the password.
996 */
997 public int getPasswordMinimumNonLetter(ComponentName admin) {
Amith Yamasani599dd7c2012-09-14 23:20:08 -0700998 return getPasswordMinimumNonLetter(admin, UserHandle.myUserId());
999 }
1000
1001 /** @hide per-user version */
1002 public int getPasswordMinimumNonLetter(ComponentName admin, int userHandle) {
Konstantin Lopyrevc8577402010-06-04 17:15:02 -07001003 if (mService != null) {
1004 try {
Amith Yamasani599dd7c2012-09-14 23:20:08 -07001005 return mService.getPasswordMinimumNonLetter(admin, userHandle);
Konstantin Lopyrevc8577402010-06-04 17:15:02 -07001006 } catch (RemoteException e) {
1007 Log.w(TAG, "Failed talking with device policy service", e);
1008 }
1009 }
1010 return 0;
1011 }
1012
Konstantin Lopyrev32558232010-05-20 16:18:05 -07001013 /**
1014 * Called by an application that is administering the device to set the length
1015 * of the password history. After setting this, the user will not be able to
1016 * enter a new password that is the same as any password in the history. Note
1017 * that the current password will remain until the user has set a new one, so
1018 * the change does not take place immediately. To prompt the user for a new
1019 * password, use {@link #ACTION_SET_NEW_PASSWORD} after setting this value.
1020 * This constraint is only imposed if the administrator has also requested
Jim Miller85516d02014-01-31 17:08:37 -08001021 * either {@link #PASSWORD_QUALITY_NUMERIC}, {@link #PASSWORD_QUALITY_NUMERIC_COMPLEX}
1022 * {@link #PASSWORD_QUALITY_ALPHABETIC}, or {@link #PASSWORD_QUALITY_ALPHANUMERIC}
1023 * with {@link #setPasswordQuality}.
Konstantin Lopyrev32558232010-05-20 16:18:05 -07001024 *
1025 * <p>
1026 * The calling device admin must have requested
1027 * {@link DeviceAdminInfo#USES_POLICY_LIMIT_PASSWORD} to be able to call this
1028 * method; if it has not, a security exception will be thrown.
1029 *
1030 * @param admin Which {@link DeviceAdminReceiver} this request is associated
1031 * with.
1032 * @param length The new desired length of password history. A value of 0
1033 * means there is no restriction.
1034 */
1035 public void setPasswordHistoryLength(ComponentName admin, int length) {
1036 if (mService != null) {
1037 try {
Amith Yamasani599dd7c2012-09-14 23:20:08 -07001038 mService.setPasswordHistoryLength(admin, length, UserHandle.myUserId());
Konstantin Lopyrev32558232010-05-20 16:18:05 -07001039 } catch (RemoteException e) {
1040 Log.w(TAG, "Failed talking with device policy service", e);
1041 }
1042 }
1043 }
1044
1045 /**
Jim Millera4e28d12010-11-08 16:15:47 -08001046 * Called by a device admin to set the password expiration timeout. Calling this method
1047 * will restart the countdown for password expiration for the given admin, as will changing
1048 * the device password (for all admins).
1049 *
1050 * <p>The provided timeout is the time delta in ms and will be added to the current time.
1051 * For example, to have the password expire 5 days from now, timeout would be
1052 * 5 * 86400 * 1000 = 432000000 ms for timeout.
1053 *
1054 * <p>To disable password expiration, a value of 0 may be used for timeout.
1055 *
Jim Millera4e28d12010-11-08 16:15:47 -08001056 * <p>The calling device admin must have requested
1057 * {@link DeviceAdminInfo#USES_POLICY_EXPIRE_PASSWORD} to be able to call this
1058 * method; if it has not, a security exception will be thrown.
1059 *
Jessica Hummel9da60392014-05-21 12:32:57 +01001060 * <p> Note that setting the password will automatically reset the expiration time for all
1061 * active admins. Active admins do not need to explicitly call this method in that case.
1062 *
Jim Millera4e28d12010-11-08 16:15:47 -08001063 * @param admin Which {@link DeviceAdminReceiver} this request is associated with.
1064 * @param timeout The limit (in ms) that a password can remain in effect. A value of 0
1065 * means there is no restriction (unlimited).
1066 */
1067 public void setPasswordExpirationTimeout(ComponentName admin, long timeout) {
1068 if (mService != null) {
1069 try {
Amith Yamasani599dd7c2012-09-14 23:20:08 -07001070 mService.setPasswordExpirationTimeout(admin, timeout, UserHandle.myUserId());
Jim Millera4e28d12010-11-08 16:15:47 -08001071 } catch (RemoteException e) {
1072 Log.w(TAG, "Failed talking with device policy service", e);
1073 }
1074 }
1075 }
1076
1077 /**
Jim Miller6b857682011-02-16 16:27:41 -08001078 * Get the password expiration timeout for the given admin. The expiration timeout is the
1079 * recurring expiration timeout provided in the call to
1080 * {@link #setPasswordExpirationTimeout(ComponentName, long)} for the given admin or the
1081 * aggregate of all policy administrators if admin is null.
Jim Millera4e28d12010-11-08 16:15:47 -08001082 *
1083 * @param admin The name of the admin component to check, or null to aggregate all admins.
1084 * @return The timeout for the given admin or the minimum of all timeouts
1085 */
1086 public long getPasswordExpirationTimeout(ComponentName admin) {
1087 if (mService != null) {
1088 try {
Amith Yamasani599dd7c2012-09-14 23:20:08 -07001089 return mService.getPasswordExpirationTimeout(admin, UserHandle.myUserId());
Jim Millera4e28d12010-11-08 16:15:47 -08001090 } catch (RemoteException e) {
1091 Log.w(TAG, "Failed talking with device policy service", e);
1092 }
1093 }
1094 return 0;
1095 }
1096
1097 /**
1098 * Get the current password expiration time for the given admin or an aggregate of
Jessica Hummel91da58d2014-04-10 17:39:43 +01001099 * all admins of this user and its profiles if admin is null. If the password is
1100 * expired, this will return the time since the password expired as a negative number.
1101 * If admin is null, then a composite of all expiration timeouts is returned
1102 * - which will be the minimum of all timeouts.
Jim Millera4e28d12010-11-08 16:15:47 -08001103 *
1104 * @param admin The name of the admin component to check, or null to aggregate all admins.
1105 * @return The password expiration time, in ms.
1106 */
1107 public long getPasswordExpiration(ComponentName admin) {
1108 if (mService != null) {
1109 try {
Amith Yamasani599dd7c2012-09-14 23:20:08 -07001110 return mService.getPasswordExpiration(admin, UserHandle.myUserId());
Jim Millera4e28d12010-11-08 16:15:47 -08001111 } catch (RemoteException e) {
1112 Log.w(TAG, "Failed talking with device policy service", e);
1113 }
1114 }
1115 return 0;
1116 }
1117
1118 /**
Jessica Hummel91da58d2014-04-10 17:39:43 +01001119 * Retrieve the current password history length for all admins of this
1120 * user and its profiles or a particular one.
Konstantin Lopyrev32558232010-05-20 16:18:05 -07001121 * @param admin The name of the admin component to check, or null to aggregate
1122 * all admins.
1123 * @return The length of the password history
1124 */
1125 public int getPasswordHistoryLength(ComponentName admin) {
Amith Yamasani599dd7c2012-09-14 23:20:08 -07001126 return getPasswordHistoryLength(admin, UserHandle.myUserId());
1127 }
1128
1129 /** @hide per-user version */
1130 public int getPasswordHistoryLength(ComponentName admin, int userHandle) {
Konstantin Lopyrev32558232010-05-20 16:18:05 -07001131 if (mService != null) {
1132 try {
Amith Yamasani599dd7c2012-09-14 23:20:08 -07001133 return mService.getPasswordHistoryLength(admin, userHandle);
Konstantin Lopyrev32558232010-05-20 16:18:05 -07001134 } catch (RemoteException e) {
1135 Log.w(TAG, "Failed talking with device policy service", e);
1136 }
1137 }
1138 return 0;
1139 }
1140
Dianne Hackbornd6847842010-01-12 18:14:19 -08001141 /**
Dianne Hackborn254cb442010-01-27 19:23:59 -08001142 * Return the maximum password length that the device supports for a
Dianne Hackborn9327f4f2010-01-29 10:38:29 -08001143 * particular password quality.
Dianne Hackborn364f6e32010-01-29 17:38:20 -08001144 * @param quality The quality being interrogated.
Dianne Hackborn254cb442010-01-27 19:23:59 -08001145 * @return Returns the maximum length that the user can enter.
1146 */
Dianne Hackborn9327f4f2010-01-29 10:38:29 -08001147 public int getPasswordMaximumLength(int quality) {
Dianne Hackborn254cb442010-01-27 19:23:59 -08001148 // Kind-of arbitrary.
1149 return 16;
1150 }
Konstantin Lopyrev32558232010-05-20 16:18:05 -07001151
Dianne Hackborn254cb442010-01-27 19:23:59 -08001152 /**
Dianne Hackborndf83afa2010-01-20 13:37:26 -08001153 * Determine whether the current password the user has set is sufficient
Dianne Hackborn9327f4f2010-01-29 10:38:29 -08001154 * to meet the policy requirements (quality, minimum length) that have been
Jessica Hummel91da58d2014-04-10 17:39:43 +01001155 * requested by the admins of this user and its profiles.
Konstantin Lopyrev32558232010-05-20 16:18:05 -07001156 *
Dianne Hackborn8aa2e892010-01-22 11:31:30 -08001157 * <p>The calling device admin must have requested
1158 * {@link DeviceAdminInfo#USES_POLICY_LIMIT_PASSWORD} to be able to call
1159 * this method; if it has not, a security exception will be thrown.
Konstantin Lopyrev32558232010-05-20 16:18:05 -07001160 *
Jessica Hummel91da58d2014-04-10 17:39:43 +01001161 * @return Returns true if the password meets the current requirements, else false.
Dianne Hackbornd6847842010-01-12 18:14:19 -08001162 */
Dianne Hackborndf83afa2010-01-20 13:37:26 -08001163 public boolean isActivePasswordSufficient() {
Dianne Hackbornd6847842010-01-12 18:14:19 -08001164 if (mService != null) {
1165 try {
Amith Yamasani599dd7c2012-09-14 23:20:08 -07001166 return mService.isActivePasswordSufficient(UserHandle.myUserId());
Dianne Hackbornd6847842010-01-12 18:14:19 -08001167 } catch (RemoteException e) {
1168 Log.w(TAG, "Failed talking with device policy service", e);
1169 }
1170 }
Dianne Hackborndf83afa2010-01-20 13:37:26 -08001171 return false;
Dianne Hackbornd6847842010-01-12 18:14:19 -08001172 }
Konstantin Lopyrev32558232010-05-20 16:18:05 -07001173
Dianne Hackbornd6847842010-01-12 18:14:19 -08001174 /**
1175 * Retrieve the number of times the user has failed at entering a
1176 * password since that last successful password entry.
Konstantin Lopyrev32558232010-05-20 16:18:05 -07001177 *
Dianne Hackborn8aa2e892010-01-22 11:31:30 -08001178 * <p>The calling device admin must have requested
1179 * {@link DeviceAdminInfo#USES_POLICY_WATCH_LOGIN} to be able to call
1180 * this method; if it has not, a security exception will be thrown.
Dianne Hackbornd6847842010-01-12 18:14:19 -08001181 */
1182 public int getCurrentFailedPasswordAttempts() {
1183 if (mService != null) {
1184 try {
Amith Yamasani599dd7c2012-09-14 23:20:08 -07001185 return mService.getCurrentFailedPasswordAttempts(UserHandle.myUserId());
Dianne Hackbornd6847842010-01-12 18:14:19 -08001186 } catch (RemoteException e) {
1187 Log.w(TAG, "Failed talking with device policy service", e);
1188 }
1189 }
1190 return -1;
1191 }
Dianne Hackborndf83afa2010-01-20 13:37:26 -08001192
1193 /**
Andrew Stadler88209d12010-02-08 22:59:36 -08001194 * Setting this to a value greater than zero enables a built-in policy
1195 * that will perform a device wipe after too many incorrect
1196 * device-unlock passwords have been entered. This built-in policy combines
1197 * watching for failed passwords and wiping the device, and requires
1198 * that you request both {@link DeviceAdminInfo#USES_POLICY_WATCH_LOGIN} and
Dianne Hackborn8ea138c2010-01-26 18:01:04 -08001199 * {@link DeviceAdminInfo#USES_POLICY_WIPE_DATA}}.
Konstantin Lopyrev32558232010-05-20 16:18:05 -07001200 *
Andrew Stadler88209d12010-02-08 22:59:36 -08001201 * <p>To implement any other policy (e.g. wiping data for a particular
1202 * application only, erasing or revoking credentials, or reporting the
1203 * failure to a server), you should implement
Dianne Hackbornef6b22f2010-02-16 20:38:49 -08001204 * {@link DeviceAdminReceiver#onPasswordFailed(Context, android.content.Intent)}
Andrew Stadler88209d12010-02-08 22:59:36 -08001205 * instead. Do not use this API, because if the maximum count is reached,
1206 * the device will be wiped immediately, and your callback will not be invoked.
Konstantin Lopyrev32558232010-05-20 16:18:05 -07001207 *
Dianne Hackbornef6b22f2010-02-16 20:38:49 -08001208 * @param admin Which {@link DeviceAdminReceiver} this request is associated with.
Dianne Hackborn8ea138c2010-01-26 18:01:04 -08001209 * @param num The number of failed password attempts at which point the
1210 * device will wipe its data.
1211 */
1212 public void setMaximumFailedPasswordsForWipe(ComponentName admin, int num) {
1213 if (mService != null) {
1214 try {
Amith Yamasani599dd7c2012-09-14 23:20:08 -07001215 mService.setMaximumFailedPasswordsForWipe(admin, num, UserHandle.myUserId());
Dianne Hackborn8ea138c2010-01-26 18:01:04 -08001216 } catch (RemoteException e) {
1217 Log.w(TAG, "Failed talking with device policy service", e);
1218 }
1219 }
1220 }
Konstantin Lopyrev32558232010-05-20 16:18:05 -07001221
Dianne Hackborn8ea138c2010-01-26 18:01:04 -08001222 /**
Dianne Hackborn254cb442010-01-27 19:23:59 -08001223 * Retrieve the current maximum number of login attempts that are allowed
Jessica Hummel91da58d2014-04-10 17:39:43 +01001224 * before the device wipes itself, for all admins of this user and its profiles
Dianne Hackborn254cb442010-01-27 19:23:59 -08001225 * or a particular one.
1226 * @param admin The name of the admin component to check, or null to aggregate
1227 * all admins.
1228 */
1229 public int getMaximumFailedPasswordsForWipe(ComponentName admin) {
Amith Yamasani599dd7c2012-09-14 23:20:08 -07001230 return getMaximumFailedPasswordsForWipe(admin, UserHandle.myUserId());
1231 }
1232
1233 /** @hide per-user version */
1234 public int getMaximumFailedPasswordsForWipe(ComponentName admin, int userHandle) {
Dianne Hackborn254cb442010-01-27 19:23:59 -08001235 if (mService != null) {
1236 try {
Amith Yamasani599dd7c2012-09-14 23:20:08 -07001237 return mService.getMaximumFailedPasswordsForWipe(admin, userHandle);
Dianne Hackborn254cb442010-01-27 19:23:59 -08001238 } catch (RemoteException e) {
1239 Log.w(TAG, "Failed talking with device policy service", e);
1240 }
1241 }
1242 return 0;
1243 }
Konstantin Lopyrev32558232010-05-20 16:18:05 -07001244
Dianne Hackborn254cb442010-01-27 19:23:59 -08001245 /**
Dianne Hackborn87bba1e2010-02-26 17:25:54 -08001246 * Flag for {@link #resetPassword}: don't allow other admins to change
1247 * the password again until the user has entered it.
1248 */
1249 public static final int RESET_PASSWORD_REQUIRE_ENTRY = 0x0001;
Konstantin Lopyrev32558232010-05-20 16:18:05 -07001250
Dianne Hackborn87bba1e2010-02-26 17:25:54 -08001251 /**
Dianne Hackbornef6b22f2010-02-16 20:38:49 -08001252 * Force a new device unlock password (the password needed to access the
1253 * entire device, not for individual accounts) on the user. This takes
1254 * effect immediately.
Dianne Hackborn9327f4f2010-01-29 10:38:29 -08001255 * The given password must be sufficient for the
1256 * current password quality and length constraints as returned by
1257 * {@link #getPasswordQuality(ComponentName)} and
1258 * {@link #getPasswordMinimumLength(ComponentName)}; if it does not meet
1259 * these constraints, then it will be rejected and false returned. Note
1260 * that the password may be a stronger quality (containing alphanumeric
1261 * characters when the requested quality is only numeric), in which case
1262 * the currently active quality will be increased to match.
Konstantin Lopyrev32558232010-05-20 16:18:05 -07001263 *
Dianne Hackborn8aa2e892010-01-22 11:31:30 -08001264 * <p>The calling device admin must have requested
1265 * {@link DeviceAdminInfo#USES_POLICY_RESET_PASSWORD} to be able to call
1266 * this method; if it has not, a security exception will be thrown.
Konstantin Lopyrev32558232010-05-20 16:18:05 -07001267 *
Jessica Hummel91da58d2014-04-10 17:39:43 +01001268 * Can not be called from a managed profile.
1269 *
Dianne Hackborndf83afa2010-01-20 13:37:26 -08001270 * @param password The new password for the user.
Dianne Hackborn87bba1e2010-02-26 17:25:54 -08001271 * @param flags May be 0 or {@link #RESET_PASSWORD_REQUIRE_ENTRY}.
Dianne Hackborndf83afa2010-01-20 13:37:26 -08001272 * @return Returns true if the password was applied, or false if it is
1273 * not acceptable for the current constraints.
1274 */
Dianne Hackborn87bba1e2010-02-26 17:25:54 -08001275 public boolean resetPassword(String password, int flags) {
Dianne Hackborndf83afa2010-01-20 13:37:26 -08001276 if (mService != null) {
1277 try {
Amith Yamasani599dd7c2012-09-14 23:20:08 -07001278 return mService.resetPassword(password, flags, UserHandle.myUserId());
Dianne Hackborndf83afa2010-01-20 13:37:26 -08001279 } catch (RemoteException e) {
1280 Log.w(TAG, "Failed talking with device policy service", e);
1281 }
1282 }
1283 return false;
1284 }
Konstantin Lopyrev32558232010-05-20 16:18:05 -07001285
Dianne Hackbornd6847842010-01-12 18:14:19 -08001286 /**
1287 * Called by an application that is administering the device to set the
1288 * maximum time for user activity until the device will lock. This limits
1289 * the length that the user can set. It takes effect immediately.
Konstantin Lopyrev32558232010-05-20 16:18:05 -07001290 *
Dianne Hackborn8aa2e892010-01-22 11:31:30 -08001291 * <p>The calling device admin must have requested
Dianne Hackborn315ada72010-02-11 12:14:08 -08001292 * {@link DeviceAdminInfo#USES_POLICY_FORCE_LOCK} to be able to call
Dianne Hackborn8aa2e892010-01-22 11:31:30 -08001293 * this method; if it has not, a security exception will be thrown.
Konstantin Lopyrev32558232010-05-20 16:18:05 -07001294 *
Dianne Hackbornef6b22f2010-02-16 20:38:49 -08001295 * @param admin Which {@link DeviceAdminReceiver} this request is associated with.
Dianne Hackbornd6847842010-01-12 18:14:19 -08001296 * @param timeMs The new desired maximum time to lock in milliseconds.
1297 * A value of 0 means there is no restriction.
1298 */
1299 public void setMaximumTimeToLock(ComponentName admin, long timeMs) {
1300 if (mService != null) {
1301 try {
Amith Yamasani599dd7c2012-09-14 23:20:08 -07001302 mService.setMaximumTimeToLock(admin, timeMs, UserHandle.myUserId());
Dianne Hackbornd6847842010-01-12 18:14:19 -08001303 } catch (RemoteException e) {
1304 Log.w(TAG, "Failed talking with device policy service", e);
1305 }
1306 }
1307 }
Konstantin Lopyrev32558232010-05-20 16:18:05 -07001308
Dianne Hackbornd6847842010-01-12 18:14:19 -08001309 /**
Jessica Hummel91da58d2014-04-10 17:39:43 +01001310 * Retrieve the current maximum time to unlock for all admins of this user
1311 * and its profiles or a particular one.
Dianne Hackborn254cb442010-01-27 19:23:59 -08001312 * @param admin The name of the admin component to check, or null to aggregate
1313 * all admins.
Dianne Hackbornd6847842010-01-12 18:14:19 -08001314 */
Dianne Hackborn254cb442010-01-27 19:23:59 -08001315 public long getMaximumTimeToLock(ComponentName admin) {
Amith Yamasani599dd7c2012-09-14 23:20:08 -07001316 return getMaximumTimeToLock(admin, UserHandle.myUserId());
1317 }
1318
1319 /** @hide per-user version */
1320 public long getMaximumTimeToLock(ComponentName admin, int userHandle) {
Dianne Hackbornd6847842010-01-12 18:14:19 -08001321 if (mService != null) {
1322 try {
Amith Yamasani599dd7c2012-09-14 23:20:08 -07001323 return mService.getMaximumTimeToLock(admin, userHandle);
Dianne Hackbornd6847842010-01-12 18:14:19 -08001324 } catch (RemoteException e) {
1325 Log.w(TAG, "Failed talking with device policy service", e);
1326 }
1327 }
1328 return 0;
1329 }
Konstantin Lopyrev32558232010-05-20 16:18:05 -07001330
Dianne Hackbornd6847842010-01-12 18:14:19 -08001331 /**
Dianne Hackborndf83afa2010-01-20 13:37:26 -08001332 * Make the device lock immediately, as if the lock screen timeout has
1333 * expired at the point of this call.
Konstantin Lopyrev32558232010-05-20 16:18:05 -07001334 *
Dianne Hackborn8aa2e892010-01-22 11:31:30 -08001335 * <p>The calling device admin must have requested
1336 * {@link DeviceAdminInfo#USES_POLICY_FORCE_LOCK} to be able to call
1337 * this method; if it has not, a security exception will be thrown.
Dianne Hackbornd6847842010-01-12 18:14:19 -08001338 */
Dianne Hackborndf83afa2010-01-20 13:37:26 -08001339 public void lockNow() {
1340 if (mService != null) {
1341 try {
1342 mService.lockNow();
1343 } catch (RemoteException e) {
1344 Log.w(TAG, "Failed talking with device policy service", e);
1345 }
1346 }
1347 }
Konstantin Lopyrev32558232010-05-20 16:18:05 -07001348
Dianne Hackbornd6847842010-01-12 18:14:19 -08001349 /**
Dianne Hackborn42499172010-10-15 18:45:07 -07001350 * Flag for {@link #wipeData(int)}: also erase the device's external
1351 * storage.
1352 */
1353 public static final int WIPE_EXTERNAL_STORAGE = 0x0001;
1354
1355 /**
Paul Quei2450a0e2013-09-20 09:26:21 +08001356 * Ask the user data be wiped. This will cause the device to reboot,
Dianne Hackborndf83afa2010-01-20 13:37:26 -08001357 * erasing all user data while next booting up. External storage such
Masanori Oginof535cb042012-02-15 19:25:50 +09001358 * as SD cards will be also erased if the flag {@link #WIPE_EXTERNAL_STORAGE}
1359 * is set.
Konstantin Lopyrev32558232010-05-20 16:18:05 -07001360 *
Dianne Hackborn8aa2e892010-01-22 11:31:30 -08001361 * <p>The calling device admin must have requested
1362 * {@link DeviceAdminInfo#USES_POLICY_WIPE_DATA} to be able to call
1363 * this method; if it has not, a security exception will be thrown.
Konstantin Lopyrev32558232010-05-20 16:18:05 -07001364 *
Masanori Oginof535cb042012-02-15 19:25:50 +09001365 * @param flags Bit mask of additional options: currently 0 and
1366 * {@link #WIPE_EXTERNAL_STORAGE} are supported.
Dianne Hackbornd6847842010-01-12 18:14:19 -08001367 */
1368 public void wipeData(int flags) {
1369 if (mService != null) {
1370 try {
Amith Yamasani599dd7c2012-09-14 23:20:08 -07001371 mService.wipeData(flags, UserHandle.myUserId());
Dianne Hackbornd6847842010-01-12 18:14:19 -08001372 } catch (RemoteException e) {
1373 Log.w(TAG, "Failed talking with device policy service", e);
1374 }
1375 }
1376 }
Konstantin Lopyrev32558232010-05-20 16:18:05 -07001377
Dianne Hackbornd6847842010-01-12 18:14:19 -08001378 /**
Oscar Montemayor69238c62010-08-03 10:51:06 -07001379 * Called by an application that is administering the device to set the
1380 * global proxy and exclusion list.
1381 * <p>
1382 * The calling device admin must have requested
1383 * {@link DeviceAdminInfo#USES_POLICY_SETS_GLOBAL_PROXY} to be able to call
1384 * this method; if it has not, a security exception will be thrown.
1385 * Only the first device admin can set the proxy. If a second admin attempts
1386 * to set the proxy, the {@link ComponentName} of the admin originally setting the
1387 * proxy will be returned. If successful in setting the proxy, null will
1388 * be returned.
1389 * The method can be called repeatedly by the device admin alrady setting the
1390 * proxy to update the proxy and exclusion list.
1391 *
1392 * @param admin Which {@link DeviceAdminReceiver} this request is associated
1393 * with.
1394 * @param proxySpec the global proxy desired. Must be an HTTP Proxy.
1395 * Pass Proxy.NO_PROXY to reset the proxy.
1396 * @param exclusionList a list of domains to be excluded from the global proxy.
Oscar Montemayor69238c62010-08-03 10:51:06 -07001397 * @return returns null if the proxy was successfully set, or a {@link ComponentName}
1398 * of the device admin that sets thew proxy otherwise.
Andy Stadlerd2672722011-02-16 10:53:33 -08001399 * @hide
Oscar Montemayor69238c62010-08-03 10:51:06 -07001400 */
1401 public ComponentName setGlobalProxy(ComponentName admin, Proxy proxySpec,
1402 List<String> exclusionList ) {
1403 if (proxySpec == null) {
1404 throw new NullPointerException();
1405 }
1406 if (mService != null) {
1407 try {
1408 String hostSpec;
1409 String exclSpec;
1410 if (proxySpec.equals(Proxy.NO_PROXY)) {
1411 hostSpec = null;
1412 exclSpec = null;
1413 } else {
1414 if (!proxySpec.type().equals(Proxy.Type.HTTP)) {
1415 throw new IllegalArgumentException();
1416 }
1417 InetSocketAddress sa = (InetSocketAddress)proxySpec.address();
1418 String hostName = sa.getHostName();
1419 int port = sa.getPort();
1420 StringBuilder hostBuilder = new StringBuilder();
1421 hostSpec = hostBuilder.append(hostName)
1422 .append(":").append(Integer.toString(port)).toString();
1423 if (exclusionList == null) {
1424 exclSpec = "";
1425 } else {
1426 StringBuilder listBuilder = new StringBuilder();
1427 boolean firstDomain = true;
1428 for (String exclDomain : exclusionList) {
1429 if (!firstDomain) {
1430 listBuilder = listBuilder.append(",");
1431 } else {
1432 firstDomain = false;
1433 }
1434 listBuilder = listBuilder.append(exclDomain.trim());
1435 }
1436 exclSpec = listBuilder.toString();
1437 }
Yuhao Zheng90704842014-02-28 17:22:45 -08001438 if (android.net.Proxy.validate(hostName, Integer.toString(port), exclSpec)
1439 != android.net.Proxy.PROXY_VALID)
1440 throw new IllegalArgumentException();
Oscar Montemayor69238c62010-08-03 10:51:06 -07001441 }
Amith Yamasani599dd7c2012-09-14 23:20:08 -07001442 return mService.setGlobalProxy(admin, hostSpec, exclSpec, UserHandle.myUserId());
Oscar Montemayor69238c62010-08-03 10:51:06 -07001443 } catch (RemoteException e) {
1444 Log.w(TAG, "Failed talking with device policy service", e);
1445 }
1446 }
1447 return null;
1448 }
1449
1450 /**
Jason Monk03bc9912014-05-13 09:44:57 -04001451 * Set a network-independent global HTTP proxy. This is not normally what you want
1452 * for typical HTTP proxies - they are generally network dependent. However if you're
1453 * doing something unusual like general internal filtering this may be useful. On
1454 * a private network where the proxy is not accessible, you may break HTTP using this.
1455 *
1456 * <p>This method requires the caller to be the device owner.
1457 *
1458 * <p>This proxy is only a recommendation and it is possible that some apps will ignore it.
1459 * @see ProxyInfo
1460 *
1461 * @param admin Which {@link DeviceAdminReceiver} this request is associated
1462 * with.
1463 * @param proxyInfo The a {@link ProxyInfo} object defining the new global
1464 * HTTP proxy. A {@code null} value will clear the global HTTP proxy.
1465 */
1466 public void setRecommendedGlobalProxy(ComponentName admin, ProxyInfo proxyInfo) {
1467 if (mService != null) {
1468 try {
1469 mService.setRecommendedGlobalProxy(admin, proxyInfo);
1470 } catch (RemoteException e) {
1471 Log.w(TAG, "Failed talking with device policy service", e);
1472 }
1473 }
1474 }
1475
1476 /**
Oscar Montemayor69238c62010-08-03 10:51:06 -07001477 * Returns the component name setting the global proxy.
1478 * @return ComponentName object of the device admin that set the global proxy, or
1479 * null if no admin has set the proxy.
Andy Stadlerd2672722011-02-16 10:53:33 -08001480 * @hide
Oscar Montemayor69238c62010-08-03 10:51:06 -07001481 */
1482 public ComponentName getGlobalProxyAdmin() {
1483 if (mService != null) {
1484 try {
Amith Yamasani599dd7c2012-09-14 23:20:08 -07001485 return mService.getGlobalProxyAdmin(UserHandle.myUserId());
Oscar Montemayor69238c62010-08-03 10:51:06 -07001486 } catch (RemoteException e) {
1487 Log.w(TAG, "Failed talking with device policy service", e);
1488 }
1489 }
1490 return null;
1491 }
1492
1493 /**
Andy Stadler22dbfda2011-01-17 12:47:31 -08001494 * Result code for {@link #setStorageEncryption} and {@link #getStorageEncryptionStatus}:
Andy Stadler7b0f8f02011-01-12 14:59:52 -08001495 * indicating that encryption is not supported.
1496 */
1497 public static final int ENCRYPTION_STATUS_UNSUPPORTED = 0;
1498
1499 /**
Andy Stadler22dbfda2011-01-17 12:47:31 -08001500 * Result code for {@link #setStorageEncryption} and {@link #getStorageEncryptionStatus}:
Andy Stadler7b0f8f02011-01-12 14:59:52 -08001501 * indicating that encryption is supported, but is not currently active.
1502 */
1503 public static final int ENCRYPTION_STATUS_INACTIVE = 1;
1504
1505 /**
Andy Stadler22dbfda2011-01-17 12:47:31 -08001506 * Result code for {@link #setStorageEncryption} and {@link #getStorageEncryptionStatus}:
Andy Stadler7b0f8f02011-01-12 14:59:52 -08001507 * indicating that encryption is not currently active, but is currently
1508 * being activated. This is only reported by devices that support
1509 * encryption of data and only when the storage is currently
1510 * undergoing a process of becoming encrypted. A device that must reboot and/or wipe data
1511 * to become encrypted will never return this value.
1512 */
Andy Stadler22dbfda2011-01-17 12:47:31 -08001513 public static final int ENCRYPTION_STATUS_ACTIVATING = 2;
Andy Stadler7b0f8f02011-01-12 14:59:52 -08001514
1515 /**
Andy Stadler22dbfda2011-01-17 12:47:31 -08001516 * Result code for {@link #setStorageEncryption} and {@link #getStorageEncryptionStatus}:
Andy Stadler7b0f8f02011-01-12 14:59:52 -08001517 * indicating that encryption is active.
1518 */
Andy Stadler22dbfda2011-01-17 12:47:31 -08001519 public static final int ENCRYPTION_STATUS_ACTIVE = 3;
Andy Stadler7b0f8f02011-01-12 14:59:52 -08001520
1521 /**
1522 * Activity action: begin the process of encrypting data on the device. This activity should
1523 * be launched after using {@link #setStorageEncryption} to request encryption be activated.
1524 * After resuming from this activity, use {@link #getStorageEncryption}
1525 * to check encryption status. However, on some devices this activity may never return, as
1526 * it may trigger a reboot and in some cases a complete data wipe of the device.
1527 */
1528 @SdkConstant(SdkConstantType.ACTIVITY_INTENT_ACTION)
1529 public static final String ACTION_START_ENCRYPTION
1530 = "android.app.action.START_ENCRYPTION";
1531
1532 /**
Jim Millerb8ec4702012-08-31 17:19:10 -07001533 * Widgets are enabled in keyguard
1534 */
Jim Miller48b9b0d2012-09-19 23:16:50 -07001535 public static final int KEYGUARD_DISABLE_FEATURES_NONE = 0;
Jim Millerb8ec4702012-08-31 17:19:10 -07001536
1537 /**
Jim Miller50e62182014-04-23 17:25:00 -07001538 * Disable all keyguard widgets. Has no effect.
Jim Millerb8ec4702012-08-31 17:19:10 -07001539 */
Jim Miller48b9b0d2012-09-19 23:16:50 -07001540 public static final int KEYGUARD_DISABLE_WIDGETS_ALL = 1 << 0;
1541
1542 /**
1543 * Disable the camera on secure keyguard screens (e.g. PIN/Pattern/Password)
1544 */
1545 public static final int KEYGUARD_DISABLE_SECURE_CAMERA = 1 << 1;
1546
1547 /**
Jim Miller50e62182014-04-23 17:25:00 -07001548 * Disable showing all notifications on secure keyguard screens (e.g. PIN/Pattern/Password)
1549 */
1550 public static final int KEYGUARD_DISABLE_SECURE_NOTIFICATIONS = 1 << 2;
1551
1552 /**
1553 * Only allow redacted notifications on secure keyguard screens (e.g. PIN/Pattern/Password)
1554 */
1555 public static final int KEYGUARD_DISABLE_UNREDACTED_NOTIFICATIONS = 1 << 3;
1556
1557 /**
1558 * Ignore {@link TrustAgentService} state on secure keyguard screens
1559 * (e.g. PIN/Pattern/Password).
1560 */
1561 public static final int KEYGUARD_DISABLE_TRUST_AGENTS = 1 << 4;
1562
1563 /**
Jim Miller06e34502014-07-17 14:46:05 -07001564 * Disable fingerprint sensor on keyguard secure screens (e.g. PIN/Pattern/Password).
1565 */
1566 public static final int KEYGUARD_DISABLE_FINGERPRINT = 1 << 5;
1567
1568 /**
Jim Miller35207742012-11-02 15:33:20 -07001569 * Disable all current and future keyguard customizations.
Jim Miller48b9b0d2012-09-19 23:16:50 -07001570 */
1571 public static final int KEYGUARD_DISABLE_FEATURES_ALL = 0x7fffffff;
Jim Millerb8ec4702012-08-31 17:19:10 -07001572
1573 /**
Andy Stadler7b0f8f02011-01-12 14:59:52 -08001574 * Called by an application that is administering the device to
Andy Stadler22dbfda2011-01-17 12:47:31 -08001575 * request that the storage system be encrypted.
Andy Stadler7b0f8f02011-01-12 14:59:52 -08001576 *
1577 * <p>When multiple device administrators attempt to control device
1578 * encryption, the most secure, supported setting will always be
1579 * used. If any device administrator requests device encryption,
1580 * it will be enabled; Conversely, if a device administrator
1581 * attempts to disable device encryption while another
1582 * device administrator has enabled it, the call to disable will
1583 * fail (most commonly returning {@link #ENCRYPTION_STATUS_ACTIVE}).
1584 *
1585 * <p>This policy controls encryption of the secure (application data) storage area. Data
Andy Stadler50c294f2011-03-07 19:13:42 -08001586 * written to other storage areas may or may not be encrypted, and this policy does not require
1587 * or control the encryption of any other storage areas.
1588 * There is one exception: If {@link android.os.Environment#isExternalStorageEmulated()} is
1589 * {@code true}, then the directory returned by
1590 * {@link android.os.Environment#getExternalStorageDirectory()} must be written to disk
1591 * within the encrypted storage area.
Andy Stadler7b0f8f02011-01-12 14:59:52 -08001592 *
1593 * <p>Important Note: On some devices, it is possible to encrypt storage without requiring
1594 * the user to create a device PIN or Password. In this case, the storage is encrypted, but
1595 * the encryption key may not be fully secured. For maximum security, the administrator should
1596 * also require (and check for) a pattern, PIN, or password.
1597 *
1598 * @param admin Which {@link DeviceAdminReceiver} this request is associated with.
1599 * @param encrypt true to request encryption, false to release any previous request
Andy Stadler22dbfda2011-01-17 12:47:31 -08001600 * @return the new request status (for all active admins) - will be one of
1601 * {@link #ENCRYPTION_STATUS_UNSUPPORTED}, {@link #ENCRYPTION_STATUS_INACTIVE}, or
1602 * {@link #ENCRYPTION_STATUS_ACTIVE}. This is the value of the requests; Use
1603 * {@link #getStorageEncryptionStatus()} to query the actual device state.
Andy Stadler7b0f8f02011-01-12 14:59:52 -08001604 */
1605 public int setStorageEncryption(ComponentName admin, boolean encrypt) {
1606 if (mService != null) {
1607 try {
Amith Yamasani599dd7c2012-09-14 23:20:08 -07001608 return mService.setStorageEncryption(admin, encrypt, UserHandle.myUserId());
Andy Stadler7b0f8f02011-01-12 14:59:52 -08001609 } catch (RemoteException e) {
1610 Log.w(TAG, "Failed talking with device policy service", e);
1611 }
1612 }
1613 return ENCRYPTION_STATUS_UNSUPPORTED;
1614 }
1615
1616 /**
1617 * Called by an application that is administering the device to
Andy Stadler22dbfda2011-01-17 12:47:31 -08001618 * determine the requested setting for secure storage.
Andy Stadler7b0f8f02011-01-12 14:59:52 -08001619 *
Andy Stadler22dbfda2011-01-17 12:47:31 -08001620 * @param admin Which {@link DeviceAdminReceiver} this request is associated with. If null,
1621 * this will return the requested encryption setting as an aggregate of all active
1622 * administrators.
1623 * @return true if the admin(s) are requesting encryption, false if not.
Andy Stadler7b0f8f02011-01-12 14:59:52 -08001624 */
Andy Stadler22dbfda2011-01-17 12:47:31 -08001625 public boolean getStorageEncryption(ComponentName admin) {
Andy Stadler7b0f8f02011-01-12 14:59:52 -08001626 if (mService != null) {
1627 try {
Amith Yamasani599dd7c2012-09-14 23:20:08 -07001628 return mService.getStorageEncryption(admin, UserHandle.myUserId());
Andy Stadler7b0f8f02011-01-12 14:59:52 -08001629 } catch (RemoteException e) {
1630 Log.w(TAG, "Failed talking with device policy service", e);
1631 }
1632 }
Andy Stadler22dbfda2011-01-17 12:47:31 -08001633 return false;
1634 }
1635
1636 /**
1637 * Called by an application that is administering the device to
1638 * determine the current encryption status of the device.
1639 *
1640 * Depending on the returned status code, the caller may proceed in different
1641 * ways. If the result is {@link #ENCRYPTION_STATUS_UNSUPPORTED}, the
1642 * storage system does not support encryption. If the
1643 * result is {@link #ENCRYPTION_STATUS_INACTIVE}, use {@link
1644 * #ACTION_START_ENCRYPTION} to begin the process of encrypting or decrypting the
1645 * storage. If the result is {@link #ENCRYPTION_STATUS_ACTIVATING} or
1646 * {@link #ENCRYPTION_STATUS_ACTIVE}, no further action is required.
1647 *
1648 * @return current status of encryption. The value will be one of
1649 * {@link #ENCRYPTION_STATUS_UNSUPPORTED}, {@link #ENCRYPTION_STATUS_INACTIVE},
1650 * {@link #ENCRYPTION_STATUS_ACTIVATING}, or{@link #ENCRYPTION_STATUS_ACTIVE}.
1651 */
1652 public int getStorageEncryptionStatus() {
Amith Yamasani599dd7c2012-09-14 23:20:08 -07001653 return getStorageEncryptionStatus(UserHandle.myUserId());
1654 }
1655
1656 /** @hide per-user version */
1657 public int getStorageEncryptionStatus(int userHandle) {
Andy Stadler22dbfda2011-01-17 12:47:31 -08001658 if (mService != null) {
1659 try {
Amith Yamasani599dd7c2012-09-14 23:20:08 -07001660 return mService.getStorageEncryptionStatus(userHandle);
Andy Stadler22dbfda2011-01-17 12:47:31 -08001661 } catch (RemoteException e) {
1662 Log.w(TAG, "Failed talking with device policy service", e);
1663 }
1664 }
Andy Stadler7b0f8f02011-01-12 14:59:52 -08001665 return ENCRYPTION_STATUS_UNSUPPORTED;
1666 }
1667
1668 /**
Maggie Benthallda51e682013-08-08 22:35:44 -04001669 * Installs the given certificate as a User CA.
1670 *
1671 * @return false if the certBuffer cannot be parsed or installation is
1672 * interrupted, otherwise true
Maggie Benthallda51e682013-08-08 22:35:44 -04001673 */
Robin Lee306fe082014-06-19 14:04:24 +00001674 public boolean installCaCert(ComponentName who, byte[] certBuffer) {
Maggie Benthallda51e682013-08-08 22:35:44 -04001675 if (mService != null) {
1676 try {
Robin Lee306fe082014-06-19 14:04:24 +00001677 return mService.installCaCert(who, certBuffer);
Maggie Benthallda51e682013-08-08 22:35:44 -04001678 } catch (RemoteException e) {
1679 Log.w(TAG, "Failed talking with device policy service", e);
1680 }
1681 }
1682 return false;
1683 }
1684
1685 /**
1686 * Uninstalls the given certificate from the list of User CAs, if present.
Maggie Benthallda51e682013-08-08 22:35:44 -04001687 */
Robin Lee306fe082014-06-19 14:04:24 +00001688 public void uninstallCaCert(ComponentName who, byte[] certBuffer) {
Maggie Benthallda51e682013-08-08 22:35:44 -04001689 if (mService != null) {
1690 try {
Robin Lee306fe082014-06-19 14:04:24 +00001691 final String alias = getCaCertAlias(certBuffer);
1692 mService.uninstallCaCert(who, alias);
1693 } catch (CertificateException e) {
1694 Log.w(TAG, "Unable to parse certificate", e);
Maggie Benthallda51e682013-08-08 22:35:44 -04001695 } catch (RemoteException e) {
1696 Log.w(TAG, "Failed talking with device policy service", e);
1697 }
1698 }
1699 }
1700
1701 /**
1702 * Returns whether there are any user-installed CA certificates.
Maggie Benthallda51e682013-08-08 22:35:44 -04001703 */
Robin Lee306fe082014-06-19 14:04:24 +00001704 public boolean hasAnyCaCertsInstalled() {
Maggie Benthallda51e682013-08-08 22:35:44 -04001705 TrustedCertificateStore certStore = new TrustedCertificateStore();
1706 Set<String> aliases = certStore.userAliases();
1707 return aliases != null && !aliases.isEmpty();
1708 }
1709
1710 /**
1711 * Returns whether this certificate has been installed as a User CA.
Maggie Benthallda51e682013-08-08 22:35:44 -04001712 */
1713 public boolean hasCaCertInstalled(byte[] certBuffer) {
Maggie Benthallda51e682013-08-08 22:35:44 -04001714 try {
Robin Lee306fe082014-06-19 14:04:24 +00001715 return getCaCertAlias(certBuffer) != null;
Maggie Benthallda51e682013-08-08 22:35:44 -04001716 } catch (CertificateException ce) {
1717 Log.w(TAG, "Could not parse certificate", ce);
1718 }
1719 return false;
1720 }
1721
1722 /**
Robin Lee306fe082014-06-19 14:04:24 +00001723 * Returns the alias of a given CA certificate in the certificate store, or null if it
1724 * doesn't exist.
1725 */
1726 private static String getCaCertAlias(byte[] certBuffer) throws CertificateException {
1727 final CertificateFactory certFactory = CertificateFactory.getInstance("X.509");
1728 final X509Certificate cert = (X509Certificate) certFactory.generateCertificate(
1729 new ByteArrayInputStream(certBuffer));
1730 return new TrustedCertificateStore().getCertificateAlias(cert);
1731 }
1732
1733 /**
Ben Komalo2447edd2011-05-09 16:05:33 -07001734 * Called by an application that is administering the device to disable all cameras
1735 * on the device. After setting this, no applications will be able to access any cameras
1736 * on the device.
1737 *
1738 * <p>The calling device admin must have requested
1739 * {@link DeviceAdminInfo#USES_POLICY_DISABLE_CAMERA} to be able to call
1740 * this method; if it has not, a security exception will be thrown.
1741 *
1742 * @param admin Which {@link DeviceAdminReceiver} this request is associated with.
1743 * @param disabled Whether or not the camera should be disabled.
1744 */
1745 public void setCameraDisabled(ComponentName admin, boolean disabled) {
1746 if (mService != null) {
1747 try {
Amith Yamasani599dd7c2012-09-14 23:20:08 -07001748 mService.setCameraDisabled(admin, disabled, UserHandle.myUserId());
Ben Komalo2447edd2011-05-09 16:05:33 -07001749 } catch (RemoteException e) {
1750 Log.w(TAG, "Failed talking with device policy service", e);
1751 }
1752 }
1753 }
1754
1755 /**
1756 * Determine whether or not the device's cameras have been disabled either by the current
1757 * admin, if specified, or all admins.
1758 * @param admin The name of the admin component to check, or null to check if any admins
1759 * have disabled the camera
1760 */
1761 public boolean getCameraDisabled(ComponentName admin) {
Amith Yamasani599dd7c2012-09-14 23:20:08 -07001762 return getCameraDisabled(admin, UserHandle.myUserId());
1763 }
1764
1765 /** @hide per-user version */
1766 public boolean getCameraDisabled(ComponentName admin, int userHandle) {
Ben Komalo2447edd2011-05-09 16:05:33 -07001767 if (mService != null) {
1768 try {
Amith Yamasani599dd7c2012-09-14 23:20:08 -07001769 return mService.getCameraDisabled(admin, userHandle);
Ben Komalo2447edd2011-05-09 16:05:33 -07001770 } catch (RemoteException e) {
1771 Log.w(TAG, "Failed talking with device policy service", e);
1772 }
1773 }
1774 return false;
1775 }
1776
1777 /**
Jim Miller48b9b0d2012-09-19 23:16:50 -07001778 * Called by an application that is administering the device to disable keyguard customizations,
1779 * such as widgets. After setting this, keyguard features will be disabled according to the
1780 * provided feature list.
Jim Millerb8ec4702012-08-31 17:19:10 -07001781 *
1782 * <p>The calling device admin must have requested
Jim Miller48b9b0d2012-09-19 23:16:50 -07001783 * {@link DeviceAdminInfo#USES_POLICY_DISABLE_KEYGUARD_FEATURES} to be able to call
Jim Millerb8ec4702012-08-31 17:19:10 -07001784 * this method; if it has not, a security exception will be thrown.
1785 *
1786 * @param admin Which {@link DeviceAdminReceiver} this request is associated with.
Jim Miller35207742012-11-02 15:33:20 -07001787 * @param which {@link #KEYGUARD_DISABLE_FEATURES_NONE} (default),
1788 * {@link #KEYGUARD_DISABLE_WIDGETS_ALL}, {@link #KEYGUARD_DISABLE_SECURE_CAMERA},
Jim Miller50e62182014-04-23 17:25:00 -07001789 * {@link #KEYGUARD_DISABLE_SECURE_NOTIFICATIONS}, {@link #KEYGUARD_DISABLE_TRUST_AGENTS},
1790 * {@link #KEYGUARD_DISABLE_UNREDACTED_NOTIFICATIONS}, {@link #KEYGUARD_DISABLE_FEATURES_ALL}
Jim Millerb8ec4702012-08-31 17:19:10 -07001791 */
Jim Miller48b9b0d2012-09-19 23:16:50 -07001792 public void setKeyguardDisabledFeatures(ComponentName admin, int which) {
Jim Millerb8ec4702012-08-31 17:19:10 -07001793 if (mService != null) {
1794 try {
Jim Miller48b9b0d2012-09-19 23:16:50 -07001795 mService.setKeyguardDisabledFeatures(admin, which, UserHandle.myUserId());
Jim Millerb8ec4702012-08-31 17:19:10 -07001796 } catch (RemoteException e) {
1797 Log.w(TAG, "Failed talking with device policy service", e);
1798 }
1799 }
1800 }
1801
1802 /**
Jim Miller48b9b0d2012-09-19 23:16:50 -07001803 * Determine whether or not features have been disabled in keyguard either by the current
Jim Millerb8ec4702012-08-31 17:19:10 -07001804 * admin, if specified, or all admins.
1805 * @param admin The name of the admin component to check, or null to check if any admins
Jim Miller48b9b0d2012-09-19 23:16:50 -07001806 * have disabled features in keyguard.
Jim Miller35207742012-11-02 15:33:20 -07001807 * @return bitfield of flags. See {@link #setKeyguardDisabledFeatures(ComponentName, int)}
1808 * for a list.
Jim Millerb8ec4702012-08-31 17:19:10 -07001809 */
Jim Miller48b9b0d2012-09-19 23:16:50 -07001810 public int getKeyguardDisabledFeatures(ComponentName admin) {
1811 return getKeyguardDisabledFeatures(admin, UserHandle.myUserId());
Amith Yamasani599dd7c2012-09-14 23:20:08 -07001812 }
1813
1814 /** @hide per-user version */
Jim Miller48b9b0d2012-09-19 23:16:50 -07001815 public int getKeyguardDisabledFeatures(ComponentName admin, int userHandle) {
Jim Millerb8ec4702012-08-31 17:19:10 -07001816 if (mService != null) {
1817 try {
Jim Miller48b9b0d2012-09-19 23:16:50 -07001818 return mService.getKeyguardDisabledFeatures(admin, userHandle);
Jim Millerb8ec4702012-08-31 17:19:10 -07001819 } catch (RemoteException e) {
1820 Log.w(TAG, "Failed talking with device policy service", e);
1821 }
1822 }
Jim Miller48b9b0d2012-09-19 23:16:50 -07001823 return KEYGUARD_DISABLE_FEATURES_NONE;
Jim Millerb8ec4702012-08-31 17:19:10 -07001824 }
1825
1826 /**
Dianne Hackbornd6847842010-01-12 18:14:19 -08001827 * @hide
1828 */
Jessica Hummel6d36b602014-04-04 12:42:17 +01001829 public void setActiveAdmin(ComponentName policyReceiver, boolean refreshing, int userHandle) {
Dianne Hackbornd6847842010-01-12 18:14:19 -08001830 if (mService != null) {
1831 try {
Jessica Hummel6d36b602014-04-04 12:42:17 +01001832 mService.setActiveAdmin(policyReceiver, refreshing, userHandle);
Dianne Hackbornd6847842010-01-12 18:14:19 -08001833 } catch (RemoteException e) {
1834 Log.w(TAG, "Failed talking with device policy service", e);
1835 }
1836 }
1837 }
Konstantin Lopyrev32558232010-05-20 16:18:05 -07001838
Dianne Hackbornd6847842010-01-12 18:14:19 -08001839 /**
Jessica Hummel6d36b602014-04-04 12:42:17 +01001840 * @hide
1841 */
1842 public void setActiveAdmin(ComponentName policyReceiver, boolean refreshing) {
1843 setActiveAdmin(policyReceiver, refreshing, UserHandle.myUserId());
1844 }
1845
1846 /**
Andy Stadlerc25f70a2010-12-08 15:56:45 -08001847 * Returns the DeviceAdminInfo as defined by the administrator's package info & meta-data
Dianne Hackbornd6847842010-01-12 18:14:19 -08001848 * @hide
1849 */
Dianne Hackbornd47c6ed2010-01-27 16:21:20 -08001850 public DeviceAdminInfo getAdminInfo(ComponentName cn) {
Dianne Hackbornd6847842010-01-12 18:14:19 -08001851 ActivityInfo ai;
1852 try {
1853 ai = mContext.getPackageManager().getReceiverInfo(cn,
1854 PackageManager.GET_META_DATA);
1855 } catch (PackageManager.NameNotFoundException e) {
1856 Log.w(TAG, "Unable to retrieve device policy " + cn, e);
1857 return null;
1858 }
Konstantin Lopyrev32558232010-05-20 16:18:05 -07001859
Dianne Hackbornd6847842010-01-12 18:14:19 -08001860 ResolveInfo ri = new ResolveInfo();
1861 ri.activityInfo = ai;
Konstantin Lopyrev32558232010-05-20 16:18:05 -07001862
Dianne Hackbornd6847842010-01-12 18:14:19 -08001863 try {
1864 return new DeviceAdminInfo(mContext, ri);
1865 } catch (XmlPullParserException e) {
1866 Log.w(TAG, "Unable to parse device policy " + cn, e);
1867 return null;
1868 } catch (IOException e) {
1869 Log.w(TAG, "Unable to parse device policy " + cn, e);
1870 return null;
1871 }
1872 }
Konstantin Lopyrev32558232010-05-20 16:18:05 -07001873
Dianne Hackbornd6847842010-01-12 18:14:19 -08001874 /**
1875 * @hide
1876 */
Dianne Hackborn8ea138c2010-01-26 18:01:04 -08001877 public void getRemoveWarning(ComponentName admin, RemoteCallback result) {
1878 if (mService != null) {
1879 try {
Amith Yamasani599dd7c2012-09-14 23:20:08 -07001880 mService.getRemoveWarning(admin, result, UserHandle.myUserId());
Dianne Hackborn8ea138c2010-01-26 18:01:04 -08001881 } catch (RemoteException e) {
1882 Log.w(TAG, "Failed talking with device policy service", e);
1883 }
1884 }
1885 }
1886
1887 /**
1888 * @hide
1889 */
Konstantin Lopyreva15dcfa2010-05-24 17:10:56 -07001890 public void setActivePasswordState(int quality, int length, int letters, int uppercase,
Amith Yamasani599dd7c2012-09-14 23:20:08 -07001891 int lowercase, int numbers, int symbols, int nonletter, int userHandle) {
Dianne Hackbornd6847842010-01-12 18:14:19 -08001892 if (mService != null) {
1893 try {
Konstantin Lopyreva15dcfa2010-05-24 17:10:56 -07001894 mService.setActivePasswordState(quality, length, letters, uppercase, lowercase,
Amith Yamasani599dd7c2012-09-14 23:20:08 -07001895 numbers, symbols, nonletter, userHandle);
Dianne Hackbornd6847842010-01-12 18:14:19 -08001896 } catch (RemoteException e) {
1897 Log.w(TAG, "Failed talking with device policy service", e);
1898 }
1899 }
1900 }
Konstantin Lopyrev32558232010-05-20 16:18:05 -07001901
Dianne Hackbornd6847842010-01-12 18:14:19 -08001902 /**
1903 * @hide
1904 */
Amith Yamasani599dd7c2012-09-14 23:20:08 -07001905 public void reportFailedPasswordAttempt(int userHandle) {
Dianne Hackbornd6847842010-01-12 18:14:19 -08001906 if (mService != null) {
1907 try {
Amith Yamasani599dd7c2012-09-14 23:20:08 -07001908 mService.reportFailedPasswordAttempt(userHandle);
Dianne Hackbornd6847842010-01-12 18:14:19 -08001909 } catch (RemoteException e) {
1910 Log.w(TAG, "Failed talking with device policy service", e);
1911 }
1912 }
1913 }
Konstantin Lopyrev32558232010-05-20 16:18:05 -07001914
Dianne Hackbornd6847842010-01-12 18:14:19 -08001915 /**
1916 * @hide
1917 */
Amith Yamasani599dd7c2012-09-14 23:20:08 -07001918 public void reportSuccessfulPasswordAttempt(int userHandle) {
Dianne Hackbornd6847842010-01-12 18:14:19 -08001919 if (mService != null) {
1920 try {
Amith Yamasani599dd7c2012-09-14 23:20:08 -07001921 mService.reportSuccessfulPasswordAttempt(userHandle);
Dianne Hackbornd6847842010-01-12 18:14:19 -08001922 } catch (RemoteException e) {
1923 Log.w(TAG, "Failed talking with device policy service", e);
1924 }
1925 }
1926 }
Amith Yamasani71e6c692013-03-24 17:39:28 -07001927
1928 /**
1929 * @hide
1930 * Sets the given package as the device owner. The package must already be installed and there
1931 * shouldn't be an existing device owner registered, for this call to succeed. Also, this
1932 * method must be called before the device is provisioned.
1933 * @param packageName the package name of the application to be registered as the device owner.
1934 * @return whether the package was successfully registered as the device owner.
1935 * @throws IllegalArgumentException if the package name is null or invalid
1936 * @throws IllegalStateException if a device owner is already registered or the device has
1937 * already been provisioned.
1938 */
1939 public boolean setDeviceOwner(String packageName) throws IllegalArgumentException,
1940 IllegalStateException {
Geoffrey Borggaard334c7e32013-08-08 14:31:36 -04001941 return setDeviceOwner(packageName, null);
1942 }
1943
1944 /**
1945 * @hide
1946 * Sets the given package as the device owner. The package must already be installed and there
1947 * shouldn't be an existing device owner registered, for this call to succeed. Also, this
1948 * method must be called before the device is provisioned.
1949 * @param packageName the package name of the application to be registered as the device owner.
1950 * @param ownerName the human readable name of the institution that owns this device.
1951 * @return whether the package was successfully registered as the device owner.
1952 * @throws IllegalArgumentException if the package name is null or invalid
1953 * @throws IllegalStateException if a device owner is already registered or the device has
1954 * already been provisioned.
1955 */
1956 public boolean setDeviceOwner(String packageName, String ownerName)
1957 throws IllegalArgumentException, IllegalStateException {
Amith Yamasani71e6c692013-03-24 17:39:28 -07001958 if (mService != null) {
1959 try {
Geoffrey Borggaard334c7e32013-08-08 14:31:36 -04001960 return mService.setDeviceOwner(packageName, ownerName);
Amith Yamasani71e6c692013-03-24 17:39:28 -07001961 } catch (RemoteException re) {
1962 Log.w(TAG, "Failed to set device owner");
1963 }
1964 }
1965 return false;
1966 }
1967
Amith Yamasani3b458ad2013-04-18 18:40:07 -07001968
Amith Yamasani71e6c692013-03-24 17:39:28 -07001969 /**
Amith Yamasani3b458ad2013-04-18 18:40:07 -07001970 * Used to determine if a particular package has been registered as a Device Owner app.
1971 * A device owner app is a special device admin that cannot be deactivated by the user, once
1972 * activated as a device admin. It also cannot be uninstalled. To check if a particular
1973 * package is currently registered as the device owner app, pass in the package name from
1974 * {@link Context#getPackageName()} to this method.<p/>This is useful for device
1975 * admin apps that want to check if they are also registered as the device owner app. The
1976 * exact mechanism by which a device admin app is registered as a device owner app is defined by
1977 * the setup process.
1978 * @param packageName the package name of the app, to compare with the registered device owner
1979 * app, if any.
1980 * @return whether or not the package is registered as the device owner app.
Amith Yamasani71e6c692013-03-24 17:39:28 -07001981 */
Amith Yamasani3b458ad2013-04-18 18:40:07 -07001982 public boolean isDeviceOwnerApp(String packageName) {
Amith Yamasani71e6c692013-03-24 17:39:28 -07001983 if (mService != null) {
1984 try {
1985 return mService.isDeviceOwner(packageName);
1986 } catch (RemoteException re) {
1987 Log.w(TAG, "Failed to check device owner");
1988 }
1989 }
1990 return false;
1991 }
1992
Amith Yamasani3b458ad2013-04-18 18:40:07 -07001993 /**
1994 * @hide
1995 * Redirect to isDeviceOwnerApp.
1996 */
1997 public boolean isDeviceOwner(String packageName) {
1998 return isDeviceOwnerApp(packageName);
1999 }
2000
Jason Monkb0dced82014-06-06 14:36:20 -04002001 /**
2002 * Clears the current device owner. The caller must be the device owner.
2003 *
2004 * This function should be used cautiously as once it is called it cannot
2005 * be undone. The device owner can only be set as a part of device setup
2006 * before setup completes.
Jason Monk94d2cf92014-06-18 09:53:34 -04002007 *
2008 * @param packageName The package name of the device owner.
Jason Monkb0dced82014-06-06 14:36:20 -04002009 */
Jason Monk94d2cf92014-06-18 09:53:34 -04002010 public void clearDeviceOwnerApp(String packageName) {
Jason Monkb0dced82014-06-06 14:36:20 -04002011 if (mService != null) {
2012 try {
Jason Monk94d2cf92014-06-18 09:53:34 -04002013 mService.clearDeviceOwner(packageName);
Jason Monkb0dced82014-06-06 14:36:20 -04002014 } catch (RemoteException re) {
2015 Log.w(TAG, "Failed to clear device owner");
2016 }
2017 }
2018 }
2019
Amith Yamasani71e6c692013-03-24 17:39:28 -07002020 /** @hide */
2021 public String getDeviceOwner() {
2022 if (mService != null) {
2023 try {
2024 return mService.getDeviceOwner();
2025 } catch (RemoteException re) {
2026 Log.w(TAG, "Failed to get device owner");
2027 }
2028 }
2029 return null;
2030 }
Geoffrey Borggaard334c7e32013-08-08 14:31:36 -04002031
2032 /** @hide */
2033 public String getDeviceOwnerName() {
2034 if (mService != null) {
2035 try {
2036 return mService.getDeviceOwnerName();
2037 } catch (RemoteException re) {
2038 Log.w(TAG, "Failed to get device owner");
2039 }
2040 }
2041 return null;
2042 }
Adam Connors776c5552014-01-09 10:42:56 +00002043
2044 /**
2045 * @hide
Amith Yamasaniaba4f1b2014-07-01 15:36:12 +05302046 * @SystemApi
2047 * Sets the given component as an active admin and registers the package as the profile
2048 * owner for this user. The package must already be installed and there shouldn't be
2049 * an existing profile owner registered for this user. Also, this method must be called
2050 * before the user setup has been completed.
2051 * <p>
2052 * This method can only be called by system apps that hold MANAGE_USERS permission and
2053 * MANAGE_DEVICE_ADMINS permission.
2054 * @param admin The component to register as an active admin and profile owner.
2055 * @param ownerName The user-visible name of the entity that is managing this user.
2056 * @return whether the admin was successfully registered as the profile owner.
2057 * @throws IllegalArgumentException if packageName is null, the package isn't installed, or
2058 * the user has already been set up.
2059 */
2060 public boolean setActiveProfileOwner(ComponentName admin, String ownerName)
2061 throws IllegalArgumentException {
2062 if (mService != null) {
2063 try {
2064 final int myUserId = UserHandle.myUserId();
2065 mService.setActiveAdmin(admin, false, myUserId);
2066 return mService.setProfileOwner(admin.getPackageName(), ownerName, myUserId);
2067 } catch (RemoteException re) {
2068 Log.w(TAG, "Failed to set profile owner " + re);
2069 throw new IllegalArgumentException("Couldn't set profile owner.", re);
2070 }
2071 }
2072 return false;
2073 }
2074
2075 /**
2076 * @hide
Adam Connors776c5552014-01-09 10:42:56 +00002077 * Sets the given package as the profile owner of the given user profile. The package must
2078 * already be installed and there shouldn't be an existing profile owner registered for this
2079 * user. Also, this method must be called before the user has been used for the first time.
2080 * @param packageName the package name of the application to be registered as profile owner.
2081 * @param ownerName the human readable name of the organisation associated with this DPM.
Adam Connors661ec472014-02-11 13:59:46 +00002082 * @param userHandle the userId to set the profile owner for.
Adam Connors776c5552014-01-09 10:42:56 +00002083 * @return whether the package was successfully registered as the profile owner.
2084 * @throws IllegalArgumentException if packageName is null, the package isn't installed, or
2085 * the user has already been set up.
2086 */
Adam Connors661ec472014-02-11 13:59:46 +00002087 public boolean setProfileOwner(String packageName, String ownerName, int userHandle)
Adam Connors776c5552014-01-09 10:42:56 +00002088 throws IllegalArgumentException {
2089 if (mService != null) {
2090 try {
Adam Connors661ec472014-02-11 13:59:46 +00002091 return mService.setProfileOwner(packageName, ownerName, userHandle);
Adam Connors776c5552014-01-09 10:42:56 +00002092 } catch (RemoteException re) {
2093 Log.w(TAG, "Failed to set profile owner", re);
2094 throw new IllegalArgumentException("Couldn't set profile owner.", re);
2095 }
2096 }
2097 return false;
2098 }
2099
2100 /**
Alexandra Gherghina512675b2014-04-02 11:23:54 +01002101 * Sets the enabled state of the profile. A profile should be enabled only once it is ready to
2102 * be used. Only the profile owner can call this.
2103 *
Alexandra Gherghinadf35d572014-04-09 13:54:39 +01002104 * @see #isProfileOwnerApp
Alexandra Gherghina512675b2014-04-02 11:23:54 +01002105 *
2106 * @param admin Which {@link DeviceAdminReceiver} this request is associated with.
2107 */
2108 public void setProfileEnabled(ComponentName admin) {
2109 if (mService != null) {
2110 try {
2111 mService.setProfileEnabled(admin);
2112 } catch (RemoteException e) {
2113 Log.w(TAG, "Failed talking with device policy service", e);
2114 }
2115 }
2116 }
2117
2118 /**
Jessica Hummel1333ea12014-06-23 11:20:10 +01002119 * Sets the name of the Managed profile. In the device owner case it sets the name of the user
2120 * which it is called from. Only the profile owner or device owner can call this. If this is
2121 * never called by the profile or device owner, the name will be set to default values.
2122 *
2123 * @see #isProfileOwnerApp
2124 * @see #isDeviceOwnerApp
2125 *
2126 * @param profileName The name of the profile.
2127 */
2128 public void setProfileName(ComponentName who, String profileName) {
2129 if (mService != null) {
2130 try {
2131 mService.setProfileName(who, profileName);
2132 } catch (RemoteException e) {
2133 Log.w(TAG, "Failed talking with device policy service", e);
2134 }
2135 }
2136}
2137
2138 /**
Adam Connors776c5552014-01-09 10:42:56 +00002139 * Used to determine if a particular package is registered as the Profile Owner for the
Alexandra Gherghina512675b2014-04-02 11:23:54 +01002140 * current user. A profile owner is a special device admin that has additional privileges
Adam Connors776c5552014-01-09 10:42:56 +00002141 * within the managed profile.
2142 *
2143 * @param packageName The package name of the app to compare with the registered profile owner.
2144 * @return Whether or not the package is registered as the profile owner.
2145 */
2146 public boolean isProfileOwnerApp(String packageName) {
2147 if (mService != null) {
2148 try {
2149 String profileOwnerPackage = mService.getProfileOwner(
2150 Process.myUserHandle().getIdentifier());
2151 return profileOwnerPackage != null && profileOwnerPackage.equals(packageName);
2152 } catch (RemoteException re) {
2153 Log.w(TAG, "Failed to check profile owner");
2154 }
2155 }
2156 return false;
2157 }
2158
2159 /**
2160 * @hide
2161 * @return the packageName of the owner of the given user profile or null if no profile
2162 * owner has been set for that user.
2163 * @throws IllegalArgumentException if the userId is invalid.
2164 */
2165 public String getProfileOwner() throws IllegalArgumentException {
2166 if (mService != null) {
2167 try {
2168 return mService.getProfileOwner(Process.myUserHandle().getIdentifier());
2169 } catch (RemoteException re) {
2170 Log.w(TAG, "Failed to get profile owner");
2171 throw new IllegalArgumentException(
2172 "Requested profile owner for invalid userId", re);
2173 }
2174 }
2175 return null;
2176 }
2177
2178 /**
2179 * @hide
2180 * @return the human readable name of the organisation associated with this DPM or null if
2181 * one is not set.
2182 * @throws IllegalArgumentException if the userId is invalid.
2183 */
2184 public String getProfileOwnerName() throws IllegalArgumentException {
2185 if (mService != null) {
2186 try {
2187 return mService.getProfileOwnerName(Process.myUserHandle().getIdentifier());
2188 } catch (RemoteException re) {
2189 Log.w(TAG, "Failed to get profile owner");
2190 throw new IllegalArgumentException(
2191 "Requested profile owner for invalid userId", re);
2192 }
2193 }
2194 return null;
2195 }
Sander Alewijnsef475ca32014-02-17 15:13:58 +00002196
2197 /**
2198 * Called by a profile owner or device owner to add a default intent handler activity for
2199 * intents that match a certain intent filter. This activity will remain the default intent
2200 * handler even if the set of potential event handlers for the intent filter changes and if
2201 * the intent preferences are reset.
2202 *
2203 * <p>The default disambiguation mechanism takes over if the activity is not installed
2204 * (anymore). When the activity is (re)installed, it is automatically reset as default
2205 * intent handler for the filter.
2206 *
2207 * <p>The calling device admin must be a profile owner or device owner. If it is not, a
2208 * security exception will be thrown.
2209 *
2210 * @param admin Which {@link DeviceAdminReceiver} this request is associated with.
2211 * @param filter The IntentFilter for which a default handler is added.
2212 * @param activity The Activity that is added as default intent handler.
2213 */
2214 public void addPersistentPreferredActivity(ComponentName admin, IntentFilter filter,
2215 ComponentName activity) {
2216 if (mService != null) {
2217 try {
2218 mService.addPersistentPreferredActivity(admin, filter, activity);
2219 } catch (RemoteException e) {
2220 Log.w(TAG, "Failed talking with device policy service", e);
2221 }
2222 }
2223 }
2224
2225 /**
2226 * Called by a profile owner or device owner to remove all persistent intent handler preferences
Torne (Richard Coles)875e2102014-02-24 14:11:56 +00002227 * associated with the given package that were set by {@link #addPersistentPreferredActivity}.
Sander Alewijnsef475ca32014-02-17 15:13:58 +00002228 *
2229 * <p>The calling device admin must be a profile owner. If it is not, a security
2230 * exception will be thrown.
2231 *
2232 * @param admin Which {@link DeviceAdminReceiver} this request is associated with.
2233 * @param packageName The name of the package for which preferences are removed.
2234 */
2235 public void clearPackagePersistentPreferredActivities(ComponentName admin,
2236 String packageName) {
2237 if (mService != null) {
2238 try {
2239 mService.clearPackagePersistentPreferredActivities(admin, packageName);
2240 } catch (RemoteException e) {
2241 Log.w(TAG, "Failed talking with device policy service", e);
2242 }
2243 }
2244 }
Robin Lee66e5d962014-04-09 16:44:21 +01002245
2246 /**
2247 * Called by a profile or device owner to set the application restrictions for a given target
2248 * application running in the managed profile.
2249 *
2250 * <p>The provided {@link Bundle} consists of key-value pairs, where the types of values may be
Amith Yamasanic8c84252014-07-13 17:12:12 -07002251 * boolean, int, String, or String[]. The recommended format for keys
Robin Lee66e5d962014-04-09 16:44:21 +01002252 * is "com.example.packagename/example-setting" to avoid naming conflicts with library
2253 * components such as {@link android.webkit.WebView}.
2254 *
2255 * <p>The application restrictions are only made visible to the target application and the
2256 * profile or device owner.
2257 *
2258 * <p>The calling device admin must be a profile or device owner; if it is not, a security
2259 * exception will be thrown.
2260 *
2261 * @param admin Which {@link DeviceAdminReceiver} this request is associated with.
2262 * @param packageName The name of the package to update restricted settings for.
2263 * @param settings A {@link Bundle} to be parsed by the receiving application, conveying a new
2264 * set of active restrictions.
2265 */
2266 public void setApplicationRestrictions(ComponentName admin, String packageName,
2267 Bundle settings) {
2268 if (mService != null) {
2269 try {
2270 mService.setApplicationRestrictions(admin, packageName, settings);
2271 } catch (RemoteException e) {
2272 Log.w(TAG, "Failed talking with device policy service", e);
2273 }
2274 }
2275 }
2276
2277 /**
Adam Connors210fe212014-07-17 15:41:43 +01002278 * Called by a profile owner to set whether caller-Id information from the managed
2279 * profile will be shown for incoming calls.
2280 *
2281 * <p>The calling device admin must be a profile owner. If it is not, a
2282 * security exception will be thrown.
2283 *
2284 * @param who Which {@link DeviceAdminReceiver} this request is associated with.
2285 * @param disabled If true caller-Id information in the managed profile is not displayed.
2286 */
2287 public void setCrossProfileCallerIdDisabled(ComponentName who, boolean disabled) {
2288 if (mService != null) {
2289 try {
2290 mService.setCrossProfileCallerIdDisabled(who, disabled);
2291 } catch (RemoteException e) {
2292 Log.w(TAG, "Failed talking with device policy service", e);
2293 }
2294 }
2295 }
2296
2297 /**
2298 * Determine whether or not caller-Id information has been disabled.
2299 *
2300 * <p>The calling device admin must be a profile owner. If it is not, a
2301 * security exception will be thrown.
2302 *
2303 * @param who Which {@link DeviceAdminReceiver} this request is associated with.
2304 */
2305 public boolean getCrossProfileCallerIdDisabled(ComponentName who) {
2306 if (mService != null) {
2307 try {
2308 return mService.getCrossProfileCallerIdDisabled(who);
2309 } catch (RemoteException e) {
2310 Log.w(TAG, "Failed talking with device policy service", e);
2311 }
2312 }
2313 return false;
2314 }
2315
2316 /**
Nicolas Prevot81948992014-05-16 18:25:26 +01002317 * Called by the profile owner so that some intents sent in the managed profile can also be
2318 * resolved in the parent, or vice versa.
Nicolas Prevot10fa67c2014-03-24 13:44:38 +00002319 * @param admin Which {@link DeviceAdminReceiver} this request is associated with.
Nicolas Prevot81948992014-05-16 18:25:26 +01002320 * @param filter The {@link IntentFilter} the intent has to match to be also resolved in the
2321 * other profile
Nicolas Prevot41d926e2014-06-09 11:48:56 +01002322 * @param flags {@link DevicePolicyManager#FLAG_MANAGED_CAN_ACCESS_PARENT} and
2323 * {@link DevicePolicyManager#FLAG_PARENT_CAN_ACCESS_MANAGED} are supported.
Nicolas Prevot10fa67c2014-03-24 13:44:38 +00002324 */
Nicolas Prevot81948992014-05-16 18:25:26 +01002325 public void addCrossProfileIntentFilter(ComponentName admin, IntentFilter filter, int flags) {
Nicolas Prevot10fa67c2014-03-24 13:44:38 +00002326 if (mService != null) {
2327 try {
Nicolas Prevot81948992014-05-16 18:25:26 +01002328 mService.addCrossProfileIntentFilter(admin, filter, flags);
Nicolas Prevot10fa67c2014-03-24 13:44:38 +00002329 } catch (RemoteException e) {
2330 Log.w(TAG, "Failed talking with device policy service", e);
2331 }
2332 }
2333 }
2334
2335 /**
Nicolas Prevot81948992014-05-16 18:25:26 +01002336 * Called by a profile owner to remove the cross-profile intent filters from the managed profile
2337 * and from the parent.
Nicolas Prevot10fa67c2014-03-24 13:44:38 +00002338 * @param admin Which {@link DeviceAdminReceiver} this request is associated with.
2339 */
Nicolas Prevot81948992014-05-16 18:25:26 +01002340 public void clearCrossProfileIntentFilters(ComponentName admin) {
Nicolas Prevot10fa67c2014-03-24 13:44:38 +00002341 if (mService != null) {
2342 try {
Nicolas Prevot81948992014-05-16 18:25:26 +01002343 mService.clearCrossProfileIntentFilters(admin);
Nicolas Prevot10fa67c2014-03-24 13:44:38 +00002344 } catch (RemoteException e) {
2345 Log.w(TAG, "Failed talking with device policy service", e);
2346 }
2347 }
2348 }
2349
2350 /**
Julia Reynolds1e958392014-05-16 14:25:21 -04002351 * Called by a device owner to create a user with the specified name. The UserHandle returned
2352 * by this method should not be persisted as user handles are recycled as users are removed and
2353 * created. If you need to persist an identifier for this user, use
2354 * {@link UserManager#getSerialNumberForUser}.
2355 *
2356 * @param admin Which {@link DeviceAdminReceiver} this request is associated with.
2357 * @param name the user's name
2358 * @see UserHandle
2359 * @return the UserHandle object for the created user, or null if the user could not be created.
2360 */
2361 public UserHandle createUser(ComponentName admin, String name) {
2362 try {
2363 return mService.createUser(admin, name);
2364 } catch (RemoteException re) {
2365 Log.w(TAG, "Could not create a user", re);
2366 }
2367 return null;
2368 }
2369
2370 /**
Jason Monk03978a42014-06-10 15:05:30 -04002371 * Called by a device owner to create a user with the specified name. The UserHandle returned
2372 * by this method should not be persisted as user handles are recycled as users are removed and
2373 * created. If you need to persist an identifier for this user, use
2374 * {@link UserManager#getSerialNumberForUser}. The new user will be started in the background
2375 * immediately.
2376 *
2377 * <p> profileOwnerComponent is the {@link DeviceAdminReceiver} to be the profile owner as well
2378 * as registered as an active admin on the new user. The profile owner package will be
2379 * installed on the new user if it already is installed on the device.
2380 *
2381 * <p>If the optionalInitializeData is not null, then the extras will be passed to the
2382 * profileOwnerComponent when onEnable is called.
2383 *
2384 * @param admin Which {@link DeviceAdminReceiver} this request is associated with.
2385 * @param name the user's name
2386 * @param ownerName the human readable name of the organisation associated with this DPM.
2387 * @param profileOwnerComponent The {@link DeviceAdminReceiver} that will be an active admin on
2388 * the user.
2389 * @param adminExtras Extras that will be passed to onEnable of the admin receiver
2390 * on the new user.
2391 * @see UserHandle
2392 * @return the UserHandle object for the created user, or null if the user could not be created.
2393 */
2394 public UserHandle createAndInitializeUser(ComponentName admin, String name, String ownerName,
2395 ComponentName profileOwnerComponent, Bundle adminExtras) {
2396 try {
2397 return mService.createAndInitializeUser(admin, name, ownerName, profileOwnerComponent,
2398 adminExtras);
2399 } catch (RemoteException re) {
2400 Log.w(TAG, "Could not create a user", re);
2401 }
2402 return null;
2403 }
2404
2405 /**
Julia Reynolds1e958392014-05-16 14:25:21 -04002406 * Called by a device owner to remove a user and all associated data. The primary user can
2407 * not be removed.
2408 *
2409 * @param admin Which {@link DeviceAdminReceiver} this request is associated with.
2410 * @param userHandle the user to remove.
2411 * @return {@code true} if the user was removed, {@code false} otherwise.
2412 */
2413 public boolean removeUser(ComponentName admin, UserHandle userHandle) {
2414 try {
2415 return mService.removeUser(admin, userHandle);
2416 } catch (RemoteException re) {
2417 Log.w(TAG, "Could not remove user ", re);
2418 return false;
2419 }
2420 }
2421
2422 /**
Jason Monk582d9112014-07-09 19:57:08 -04002423 * Called by a device owner to switch the specified user to the foreground.
2424 *
2425 * @param admin Which {@link DeviceAdminReceiver} this request is associated with.
2426 * @param userHandle the user to switch to; null will switch to primary.
2427 * @return {@code true} if the switch was successful, {@code false} otherwise.
2428 *
2429 * @see Intent#ACTION_USER_FOREGROUND
2430 */
2431 public boolean switchUser(ComponentName admin, UserHandle userHandle) {
2432 try {
2433 return mService.switchUser(admin, userHandle);
2434 } catch (RemoteException re) {
2435 Log.w(TAG, "Could not switch user ", re);
2436 return false;
2437 }
2438 }
2439
2440 /**
Robin Lee66e5d962014-04-09 16:44:21 +01002441 * Called by a profile or device owner to get the application restrictions for a given target
2442 * application running in the managed profile.
2443 *
2444 * <p>The calling device admin must be a profile or device owner; if it is not, a security
2445 * exception will be thrown.
2446 *
2447 * @param admin Which {@link DeviceAdminReceiver} this request is associated with.
2448 * @param packageName The name of the package to fetch restricted settings of.
2449 * @return {@link Bundle} of settings corresponding to what was set last time
2450 * {@link DevicePolicyManager#setApplicationRestrictions} was called, or an empty {@link Bundle}
2451 * if no restrictions have been set.
2452 */
2453 public Bundle getApplicationRestrictions(ComponentName admin, String packageName) {
2454 if (mService != null) {
2455 try {
2456 return mService.getApplicationRestrictions(admin, packageName);
2457 } catch (RemoteException e) {
2458 Log.w(TAG, "Failed talking with device policy service", e);
2459 }
2460 }
2461 return null;
2462 }
Amith Yamasanibe465322014-04-24 13:45:17 -07002463
2464 /**
2465 * Called by a profile or device owner to set a user restriction specified
2466 * by the key.
2467 * <p>
2468 * The calling device admin must be a profile or device owner; if it is not,
2469 * a security exception will be thrown.
Jim Millerdf2258b2014-04-27 20:10:26 -07002470 *
Amith Yamasanibe465322014-04-24 13:45:17 -07002471 * @param admin Which {@link DeviceAdminReceiver} this request is associated
2472 * with.
2473 * @param key The key of the restriction. See the constants in
2474 * {@link android.os.UserManager} for the list of keys.
2475 */
2476 public void addUserRestriction(ComponentName admin, String key) {
2477 if (mService != null) {
2478 try {
2479 mService.setUserRestriction(admin, key, true);
2480 } catch (RemoteException e) {
2481 Log.w(TAG, "Failed talking with device policy service", e);
2482 }
2483 }
2484 }
2485
2486 /**
2487 * Called by a profile or device owner to clear a user restriction specified
2488 * by the key.
2489 * <p>
2490 * The calling device admin must be a profile or device owner; if it is not,
2491 * a security exception will be thrown.
Jim Millerdf2258b2014-04-27 20:10:26 -07002492 *
Amith Yamasanibe465322014-04-24 13:45:17 -07002493 * @param admin Which {@link DeviceAdminReceiver} this request is associated
2494 * with.
2495 * @param key The key of the restriction. See the constants in
2496 * {@link android.os.UserManager} for the list of keys.
2497 */
2498 public void clearUserRestriction(ComponentName admin, String key) {
2499 if (mService != null) {
2500 try {
2501 mService.setUserRestriction(admin, key, false);
2502 } catch (RemoteException e) {
2503 Log.w(TAG, "Failed talking with device policy service", e);
2504 }
2505 }
2506 }
Adam Connors010cfd42014-04-16 12:48:13 +01002507
2508 /**
Julia Reynolds966881e2014-05-14 12:23:08 -04002509 * Called by device or profile owner to block or unblock packages. When a package is blocked it
2510 * is unavailable for use, but the data and actual package file remain.
2511 *
2512 * @param admin Which {@link DeviceAdminReceiver} this request is associated with.
2513 * @param packageName The name of the package to block or unblock.
2514 * @param blocked {@code true} if the package should be blocked, {@code false} if it should be
2515 * unblocked.
2516 * @return boolean Whether the blocked setting of the package was successfully updated.
2517 */
2518 public boolean setApplicationBlocked(ComponentName admin, String packageName,
2519 boolean blocked) {
2520 if (mService != null) {
2521 try {
2522 return mService.setApplicationBlocked(admin, packageName, blocked);
2523 } catch (RemoteException e) {
2524 Log.w(TAG, "Failed talking with device policy service", e);
2525 }
2526 }
2527 return false;
2528 }
2529
2530 /**
2531 * Called by profile or device owner to block or unblock currently installed packages. This
2532 * should only be called by a profile or device owner running within a managed profile.
2533 *
2534 * @param admin Which {@link DeviceAdminReceiver} this request is associated with.
2535 * @param intent An intent matching the app(s) to be updated. All apps that resolve for this
2536 * intent will be updated in the current profile.
2537 * @param blocked {@code true} if the packages should be blocked, {@code false} if they should
2538 * be unblocked.
2539 * @return int The number of activities that matched the intent and were updated.
2540 */
2541 public int setApplicationsBlocked(ComponentName admin, Intent intent, boolean blocked) {
2542 if (mService != null) {
2543 try {
2544 return mService.setApplicationsBlocked(admin, intent, blocked);
2545 } catch (RemoteException e) {
2546 Log.w(TAG, "Failed talking with device policy service", e);
2547 }
2548 }
2549 return 0;
2550 }
2551
2552 /**
2553 * Called by device or profile owner to determine if a package is blocked.
2554 *
2555 * @param admin Which {@link DeviceAdminReceiver} this request is associated with.
2556 * @param packageName The name of the package to retrieve the blocked status of.
2557 * @return boolean {@code true} if the package is blocked, {@code false} otherwise.
2558 */
2559 public boolean isApplicationBlocked(ComponentName admin, String packageName) {
2560 if (mService != null) {
2561 try {
2562 return mService.isApplicationBlocked(admin, packageName);
2563 } catch (RemoteException e) {
2564 Log.w(TAG, "Failed talking with device policy service", e);
2565 }
2566 }
2567 return false;
2568 }
2569
2570 /**
Adam Connors655be2a2014-07-14 09:01:25 +00002571 * Called by profile or device owner to re-enable a system app that was disabled by default
2572 * when the managed profile was created. This can only be called from a profile or device
2573 * owner running within a managed profile.
2574 *
2575 * @param admin Which {@link DeviceAdminReceiver} this request is associated with.
2576 * @param packageName The package to be re-enabled in the current profile.
2577 */
2578 public void enableSystemApp(ComponentName admin, String packageName) {
2579 if (mService != null) {
2580 try {
2581 mService.enableSystemApp(admin, packageName);
2582 } catch (RemoteException e) {
2583 Log.w(TAG, "Failed to install package: " + packageName);
2584 }
2585 }
2586 }
2587
2588 /**
2589 * Called by profile or device owner to re-enable system apps by intent that were disabled
2590 * by default when the managed profile was created. This can only be called from a profile
2591 * or device owner running within a managed profile.
2592 *
2593 * @param admin Which {@link DeviceAdminReceiver} this request is associated with.
2594 * @param intent An intent matching the app(s) to be installed. All apps that resolve for this
2595 * intent will be re-enabled in the current profile.
2596 * @return int The number of activities that matched the intent and were installed.
2597 */
2598 public int enableSystemApp(ComponentName admin, Intent intent) {
2599 if (mService != null) {
2600 try {
2601 return mService.enableSystemAppWithIntent(admin, intent);
2602 } catch (RemoteException e) {
2603 Log.w(TAG, "Failed to install packages matching filter: " + intent);
2604 }
2605 }
2606 return 0;
2607 }
2608
2609 /**
Sander Alewijnse650c3342014-05-08 18:00:50 +01002610 * Called by a profile owner to disable account management for a specific type of account.
2611 *
2612 * <p>The calling device admin must be a profile owner. If it is not, a
2613 * security exception will be thrown.
2614 *
2615 * <p>When account management is disabled for an account type, adding or removing an account
2616 * of that type will not be possible.
2617 *
2618 * @param admin Which {@link DeviceAdminReceiver} this request is associated with.
2619 * @param accountType For which account management is disabled or enabled.
2620 * @param disabled The boolean indicating that account management will be disabled (true) or
2621 * enabled (false).
2622 */
2623 public void setAccountManagementDisabled(ComponentName admin, String accountType,
2624 boolean disabled) {
2625 if (mService != null) {
2626 try {
2627 mService.setAccountManagementDisabled(admin, accountType, disabled);
2628 } catch (RemoteException e) {
2629 Log.w(TAG, "Failed talking with device policy service", e);
2630 }
2631 }
2632 }
2633
2634 /**
Sander Alewijnse5c02db62014-05-07 10:46:57 +01002635 * Gets the array of accounts for which account management is disabled by the profile owner.
2636 *
2637 * <p> Account management can be disabled/enabled by calling
2638 * {@link #setAccountManagementDisabled}.
2639 *
2640 * @return a list of account types for which account management has been disabled.
2641 *
2642 * @see #setAccountManagementDisabled
2643 */
2644 public String[] getAccountTypesWithManagementDisabled() {
Alexandra Gherghina999d3942014-07-03 11:40:08 +01002645 return getAccountTypesWithManagementDisabledAsUser(UserHandle.getCallingUserId());
2646 }
2647
2648 /**
2649 * @see #getAccountTypesWithManagementDisabled()
2650 * @hide
2651 */
2652 public String[] getAccountTypesWithManagementDisabledAsUser(int userId) {
Sander Alewijnse5c02db62014-05-07 10:46:57 +01002653 if (mService != null) {
2654 try {
Alexandra Gherghina999d3942014-07-03 11:40:08 +01002655 return mService.getAccountTypesWithManagementDisabledAsUser(userId);
Sander Alewijnse5c02db62014-05-07 10:46:57 +01002656 } catch (RemoteException e) {
2657 Log.w(TAG, "Failed talking with device policy service", e);
2658 }
2659 }
2660
2661 return null;
2662 }
justinzhang511e0d82014-03-24 16:09:24 -04002663
2664 /**
Jason Monkd7b86212014-06-16 13:15:38 -04002665 * Sets which packages may enter lock task mode.
2666 *
2667 * <p>Any packages that shares uid with an allowed package will also be allowed
2668 * to activate lock task.
justinzhang511e0d82014-03-24 16:09:24 -04002669 *
Jason Monkc5185f22014-06-24 11:12:42 -04002670 * This function can only be called by the device owner.
Jason Monkd7b86212014-06-16 13:15:38 -04002671 * @param packages The list of packages allowed to enter lock task mode
2672 *
2673 * @see Activity#startLockTask()
Jason Monk1c7c3192014-06-26 12:52:18 -04002674 * @see DeviceAdminReceiver#onLockTaskModeChanged(Context, Intent, boolean, String)
2675 * @see UserManager#DISALLOW_CREATE_WINDOWS
justinzhang511e0d82014-03-24 16:09:24 -04002676 */
Jason Monkd7b86212014-06-16 13:15:38 -04002677 public void setLockTaskPackages(String[] packages) throws SecurityException {
justinzhang511e0d82014-03-24 16:09:24 -04002678 if (mService != null) {
2679 try {
Jason Monkd7b86212014-06-16 13:15:38 -04002680 mService.setLockTaskPackages(packages);
justinzhang511e0d82014-03-24 16:09:24 -04002681 } catch (RemoteException e) {
2682 Log.w(TAG, "Failed talking with device policy service", e);
2683 }
2684 }
2685 }
2686
2687 /**
Jason Monkd7b86212014-06-16 13:15:38 -04002688 * This function returns the list of packages allowed to start the lock task mode.
justinzhang511e0d82014-03-24 16:09:24 -04002689 * @hide
2690 */
Jason Monkd7b86212014-06-16 13:15:38 -04002691 public String[] getLockTaskPackages() {
justinzhang511e0d82014-03-24 16:09:24 -04002692 if (mService != null) {
2693 try {
Jason Monkd7b86212014-06-16 13:15:38 -04002694 return mService.getLockTaskPackages();
justinzhang511e0d82014-03-24 16:09:24 -04002695 } catch (RemoteException e) {
2696 Log.w(TAG, "Failed talking with device policy service", e);
2697 }
2698 }
2699 return null;
2700 }
2701
2702 /**
2703 * This function lets the caller know whether the given component is allowed to start the
2704 * lock task mode.
Jason Monkd7b86212014-06-16 13:15:38 -04002705 * @param pkg The package to check
justinzhang511e0d82014-03-24 16:09:24 -04002706 */
Jason Monkd7b86212014-06-16 13:15:38 -04002707 public boolean isLockTaskPermitted(String pkg) {
justinzhang511e0d82014-03-24 16:09:24 -04002708 if (mService != null) {
2709 try {
Jason Monkd7b86212014-06-16 13:15:38 -04002710 return mService.isLockTaskPermitted(pkg);
justinzhang511e0d82014-03-24 16:09:24 -04002711 } catch (RemoteException e) {
2712 Log.w(TAG, "Failed talking with device policy service", e);
2713 }
2714 }
2715 return false;
2716 }
Julia Reynoldsda551652014-05-14 17:15:16 -04002717
2718 /**
2719 * Called by device owners to update {@link Settings.Global} settings. Validation that the value
2720 * of the setting is in the correct form for the setting type should be performed by the caller.
2721 *
2722 * @param admin Which {@link DeviceAdminReceiver} this request is associated with.
2723 * @param setting The name of the setting to update.
2724 * @param value The value to update the setting to.
2725 */
2726 public void setGlobalSetting(ComponentName admin, String setting, String value) {
2727 if (mService != null) {
2728 try {
2729 mService.setGlobalSetting(admin, setting, value);
2730 } catch (RemoteException e) {
2731 Log.w(TAG, "Failed talking with device policy service", e);
2732 }
2733 }
2734 }
2735
2736 /**
2737 * Called by profile or device owners to update {@link Settings.Secure} settings. Validation
2738 * that the value of the setting is in the correct form for the setting type should be performed
2739 * by the caller.
2740 *
2741 * @param admin Which {@link DeviceAdminReceiver} this request is associated with.
2742 * @param setting The name of the setting to update.
2743 * @param value The value to update the setting to.
2744 */
2745 public void setSecureSetting(ComponentName admin, String setting, String value) {
2746 if (mService != null) {
2747 try {
2748 mService.setSecureSetting(admin, setting, value);
2749 } catch (RemoteException e) {
2750 Log.w(TAG, "Failed talking with device policy service", e);
2751 }
2752 }
2753 }
2754
Amith Yamasanif20d6402014-05-24 15:34:37 -07002755 /**
Amith Yamasanif6e2fcc2014-07-10 13:41:55 -07002756 * Designates a specific service component as the provider for
Amith Yamasanif20d6402014-05-24 15:34:37 -07002757 * making permission requests of a local or remote administrator of the user.
2758 * <p/>
2759 * Only a profile owner can designate the restrictions provider.
2760 * @param admin Which {@link DeviceAdminReceiver} this request is associated with.
Amith Yamasanif6e2fcc2014-07-10 13:41:55 -07002761 * @param provider The component name of the service that implements
2762 * {@link AbstractRestrictionsProvider}. If this param is null,
Amith Yamasanif20d6402014-05-24 15:34:37 -07002763 * it removes the restrictions provider previously assigned.
2764 */
Amith Yamasanif6e2fcc2014-07-10 13:41:55 -07002765 public void setRestrictionsProvider(ComponentName admin, ComponentName provider) {
Amith Yamasanif20d6402014-05-24 15:34:37 -07002766 if (mService != null) {
2767 try {
Amith Yamasanif6e2fcc2014-07-10 13:41:55 -07002768 mService.setRestrictionsProvider(admin, provider);
Amith Yamasanif20d6402014-05-24 15:34:37 -07002769 } catch (RemoteException re) {
2770 Log.w(TAG, "Failed to set permission provider on device policy service");
2771 }
2772 }
2773 }
Julia Reynolds4a21b252014-06-04 11:11:43 -04002774
2775 /**
2776 * Called by profile or device owners to set the master volume mute on or off.
2777 *
2778 * @param admin Which {@link DeviceAdminReceiver} this request is associated with.
2779 * @param on {@code true} to mute master volume, {@code false} to turn mute off.
2780 */
2781 public void setMasterVolumeMuted(ComponentName admin, boolean on) {
2782 if (mService != null) {
2783 try {
2784 mService.setMasterVolumeMuted(admin, on);
2785 } catch (RemoteException re) {
2786 Log.w(TAG, "Failed to setMasterMute on device policy service");
2787 }
2788 }
2789 }
2790
2791 /**
2792 * Called by profile or device owners to check whether the master volume mute is on or off.
2793 *
2794 * @param admin Which {@link DeviceAdminReceiver} this request is associated with.
2795 * @return {@code true} if master volume is muted, {@code false} if it's not.
2796 */
2797 public boolean isMasterVolumeMuted(ComponentName admin) {
2798 if (mService != null) {
2799 try {
2800 return mService.isMasterVolumeMuted(admin);
2801 } catch (RemoteException re) {
2802 Log.w(TAG, "Failed to get isMasterMute on device policy service");
2803 }
2804 }
2805 return false;
2806 }
Kenny Guyc13053b2014-05-29 14:17:17 +01002807
2808 /**
2809 * Called by profile or device owners to change whether a user can uninstall
2810 * a package.
2811 *
2812 * @param admin Which {@link DeviceAdminReceiver} this request is associated with.
2813 * @param packageName package to change.
2814 * @param blockUninstall true if the user shouldn't be able to uninstall the package.
2815 */
2816 public void setBlockUninstall(ComponentName admin, String packageName, boolean blockUninstall) {
2817 if (mService != null) {
2818 try {
2819 mService.setBlockUninstall(admin, packageName, blockUninstall);
2820 } catch (RemoteException re) {
2821 Log.w(TAG, "Failed to call block uninstall on device policy service");
2822 }
2823 }
2824 }
2825
2826 /**
2827 * Called by profile or device owners to check whether a user has been blocked from
2828 * uninstalling a package.
2829 *
2830 * @param admin Which {@link DeviceAdminReceiver} this request is associated with.
2831 * @param packageName package to check.
2832 * @return true if the user shouldn't be able to uninstall the package.
2833 */
2834 public boolean getBlockUninstall(ComponentName admin, String packageName) {
2835 if (mService != null) {
2836 try {
2837 return mService.getBlockUninstall(admin, packageName);
2838 } catch (RemoteException re) {
2839 Log.w(TAG, "Failed to call block uninstall on device policy service");
2840 }
2841 }
2842 return false;
2843 }
Dianne Hackbornd6847842010-01-12 18:14:19 -08002844}