UserManager.java revision c617f815453b6e70a0165924907e69a0f993e651
1/*
2 * Copyright (C) 2012 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 */
16package android.os;
17
18import android.app.ActivityManager;
19import android.app.ActivityManagerNative;
20import android.content.Context;
21import android.content.pm.UserInfo;
22import android.content.res.Resources;
23import android.graphics.Bitmap;
24import android.graphics.Canvas;
25import android.graphics.Bitmap.Config;
26import android.graphics.Rect;
27import android.graphics.drawable.BitmapDrawable;
28import android.graphics.drawable.Drawable;
29import android.provider.Settings;
30import android.util.Log;
31import android.view.WindowManager.LayoutParams;
32
33import com.android.internal.R;
34
35import java.util.ArrayList;
36import java.util.List;
37
38/**
39 * Manages users and user details on a multi-user system.
40 */
41public class UserManager {
42
43    private static String TAG = "UserManager";
44    private final IUserManager mService;
45    private final Context mContext;
46
47    /**
48     * Key for user restrictions. Specifies if a user is disallowed from adding and removing
49     * accounts.
50     * The default value is <code>false</code>.
51     * <p/>
52     * Type: Boolean
53     * @see #setUserRestrictions(Bundle)
54     * @see #getUserRestrictions()
55     */
56    public static final String DISALLOW_MODIFY_ACCOUNTS = "no_modify_accounts";
57
58    /**
59     * Key for user restrictions. Specifies if a user is disallowed from changing Wi-Fi
60     * access points.
61     * The default value is <code>false</code>.
62     * <p/>
63     * Type: Boolean
64     * @see #setUserRestrictions(Bundle)
65     * @see #getUserRestrictions()
66     */
67    public static final String DISALLOW_CONFIG_WIFI = "no_config_wifi";
68
69    /**
70     * Key for user restrictions. Specifies if a user is disallowed from installing applications.
71     * The default value is <code>false</code>.
72     * <p/>
73     * Type: Boolean
74     * @see #setUserRestrictions(Bundle)
75     * @see #getUserRestrictions()
76     */
77    public static final String DISALLOW_INSTALL_APPS = "no_install_apps";
78
79    /**
80     * Key for user restrictions. Specifies if a user is disallowed from uninstalling applications.
81     * The default value is <code>false</code>.
82     * <p/>
83     * Type: Boolean
84     * @see #setUserRestrictions(Bundle)
85     * @see #getUserRestrictions()
86     */
87    public static final String DISALLOW_UNINSTALL_APPS = "no_uninstall_apps";
88
89    /**
90     * Key for user restrictions. Specifies if a user is disallowed from toggling location sharing.
91     * The default value is <code>false</code>.
92     * <p/>
93     * Type: Boolean
94     * @see #setUserRestrictions(Bundle)
95     * @see #getUserRestrictions()
96     */
97    public static final String DISALLOW_SHARE_LOCATION = "no_share_location";
98
99    /**
100     * Key for user restrictions. Specifies if a user is disallowed from enabling the
101     * "Unknown Sources" setting, that allows installation of apps from unknown sources.
102     * The default value is <code>false</code>.
103     * <p/>
104     * Type: Boolean
105     * @see #setUserRestrictions(Bundle)
106     * @see #getUserRestrictions()
107     */
108    public static final String DISALLOW_INSTALL_UNKNOWN_SOURCES = "no_install_unknown_sources";
109
110    /**
111     * Key for user restrictions. Specifies if a user is disallowed from configuring bluetooth.
112     * The default value is <code>false</code>.
113     * <p/>
114     * Type: Boolean
115     * @see #setUserRestrictions(Bundle)
116     * @see #getUserRestrictions()
117     */
118    public static final String DISALLOW_CONFIG_BLUETOOTH = "no_config_bluetooth";
119
120    /**
121     * Key for user restrictions. Specifies if a user is disallowed from transferring files over
122     * USB. The default value is <code>false</code>.
123     * <p/>
124     * Type: Boolean
125     * @see #setUserRestrictions(Bundle)
126     * @see #getUserRestrictions()
127     */
128    public static final String DISALLOW_USB_FILE_TRANSFER = "no_usb_file_transfer";
129
130    /**
131     * Key for user restrictions. Specifies if a user is disallowed from configuring user
132     * credentials. The default value is <code>false</code>.
133     * <p/>
134     * Type: Boolean
135     * @see #setUserRestrictions(Bundle)
136     * @see #getUserRestrictions()
137     */
138    public static final String DISALLOW_CONFIG_CREDENTIALS = "no_config_credentials";
139
140    /**
141     * Key for user restrictions. Specifies if a user is disallowed from removing itself and other
142     * users.
143     * The default value is <code>false</code>.
144     * <p/>
145     * Type: Boolean
146     * @see #setUserRestrictions(Bundle)
147     * @see #getUserRestrictions()
148     */
149    public static final String DISALLOW_REMOVE_USER = "no_remove_user";
150
151    /**
152     * Key for user restrictions. Specifies if a user is disallowed from enabling or
153     * accessing debugging features. The default value is <code>false</code>.
154     * <p/>
155     * Type: Boolean
156     * @see #setUserRestrictions(Bundle)
157     * @see #getUserRestrictions()
158     */
159    public static final String DISALLOW_DEBUGGING_FEATURES = "no_debugging_features";
160
161    /**
162     * Key for user restrictions. Specifies if a user is disallowed from configuring VPN.
163     * The default value is <code>false</code>.
164     * <p/>
165     * Type: Boolean
166     * @see #setUserRestrictions(Bundle)
167     * @see #getUserRestrictions()
168     */
169    public static final String DISALLOW_CONFIG_VPN = "no_config_vpn";
170
171    /**
172     * Key for user restrictions. Specifies if a user is disallowed from configuring Tethering
173     * & portable hotspots. The default value is <code>false</code>.
174     * <p/>
175     * Type: Boolean
176     * @see #setUserRestrictions(Bundle)
177     * @see #getUserRestrictions()
178     */
179    public static final String DISALLOW_CONFIG_TETHERING = "no_config_tethering";
180
181    /**
182     * Key for user restrictions. Specifies if a user is disallowed from factory resetting
183     * from Settings.
184     * The default value is <code>false</code>.
185     * <p>
186     * @see #setUserRestrictions(Bundle)
187     * @see #getUserRestrictions()
188     */
189    public static final String DISALLOW_FACTORY_RESET = "no_factory_reset";
190
191    /**
192     * Key for user restrictions. Specifies if a user is disallowed from adding new users and
193     * profiles. The default value is <code>false</code>.
194     * <p>
195     * Type: Boolean
196     * @see #setUserRestrictions(Bundle)
197     * @see #getUserRestrictions()
198     */
199    public static final String DISALLOW_ADD_USER = "no_add_user";
200
201    /**
202     * Key for user restrictions. Specifies if a user is disallowed from disabling application
203     * verification. The default value is <code>false</code>.
204     * <p>
205     * Type: Boolean
206     * @see #setUserRestrictions(Bundle)
207     * @see #getUserRestrictions()
208     */
209    public static final String ENSURE_VERIFY_APPS = "ensure_verify_apps";
210
211    /**
212     * Key for user restrictions. Specifies if a user is disallowed from configuring cell
213     * broadcasts. The default value is <code>false</code>.
214     * <p>
215     * Type: Boolean
216     * @see #setUserRestrictions(Bundle)
217     * @see #getUserRestrictions()
218     */
219    public static final String DISALLOW_CONFIG_CELL_BROADCASTS = "no_config_cell_broadcasts";
220
221    /**
222     * Key for user restrictions. Specifies if a user is disallowed from configuring mobile
223     * networks. The default value is <code>false</code>.
224     * <p>
225     * Type: Boolean
226     * @see #setUserRestrictions(Bundle)
227     * @see #getUserRestrictions()
228     */
229    public static final String DISALLOW_CONFIG_MOBILE_NETWORKS = "no_config_mobile_networks";
230
231    /**
232     * Key for user restrictions. Specifies if a user is disallowed from modifying
233     * applications in Settings or launchers. The following actions will not be allowed when this
234     * restriction is enabled:
235     * <li>uninstalling apps</li>
236     * <li>disabling apps</li>
237     * <li>clearing app caches</li>
238     * <li>clearing app data</li>
239     * <li>force stopping apps</li>
240     * <li>clearing app defaults</li>
241     * <p>
242     * The default value is <code>false</code>.
243     * <p>
244     * Type: Boolean
245     * @see #setUserRestrictions(Bundle)
246     * @see #getUserRestrictions()
247     */
248    public static final String DISALLOW_APPS_CONTROL = "no_control_apps";
249
250    /**
251     * Key for user restrictions. Specifies if a user is disallowed from mounting
252     * physical external media. The default value is <code>false</code>.
253     * <p/>
254     * Type: Boolean
255     * @see #setUserRestrictions(Bundle)
256     * @see #getUserRestrictions()
257     */
258    public static final String DISALLOW_MOUNT_PHYSICAL_MEDIA = "no_physical_media";
259
260    /**
261     * Key for user restrictions. Specifies if a user is disallowed from adjusting microphone
262     * volume.
263     * The default value is <code>false</code>.
264     * <p/>
265     * Type: Boolean
266     * @see #setUserRestrictions(Bundle)
267     * @see #getUserRestrictions()
268     */
269    public static final String DISALLOW_UNMUTE_MICROPHONE = "no_unmute_microphone";
270
271    /**
272     * Key for user restrictions. Specifies if a user is disallowed from adjusting the master
273     * volume.
274     * The default value is <code>false</code>.
275     * <p/>
276     * Type: Boolean
277     * @see #setUserRestrictions(Bundle)
278     * @see #getUserRestrictions()
279     */
280    public static final String DISALLOW_ADJUST_VOLUME = "no_adjust_volume";
281
282    /**
283     * Key for user restrictions. Specifies that the user is not allowed to make outgoing
284     * phone calls. Emergency calls are still permitted.
285     * The default value is <code>false</code>.
286     * <p/>
287     * Type: Boolean
288     * @see #setUserRestrictions(Bundle)
289     * @see #getUserRestrictions()
290     */
291    public static final String DISALLOW_OUTGOING_CALLS = "no_outgoing_calls";
292
293    /**
294     * Key for user restrictions. Specifies that the user is not allowed to send or receive
295     * SMS messages.
296     * The default value is <code>false</code>.
297     * <p/>
298     * Type: Boolean
299     * @see #setUserRestrictions(Bundle)
300     * @see #getUserRestrictions()
301     */
302    public static final String DISALLOW_SMS = "no_sms";
303
304    /**
305     * Key for user restrictions. Specifies that windows besides app windows should not be
306     * created. This will block the creation of the following types of windows.
307     * <li>{@link LayoutParams#TYPE_TOAST}</li>
308     * <li>{@link LayoutParams#TYPE_PHONE}</li>
309     * <li>{@link LayoutParams#TYPE_PRIORITY_PHONE}</li>
310     * <li>{@link LayoutParams#TYPE_SYSTEM_ALERT}</li>
311     * <li>{@link LayoutParams#TYPE_SYSTEM_ERROR}</li>
312     * <li>{@link LayoutParams#TYPE_SYSTEM_OVERLAY}</li>
313     *
314     * <p>The default value is <code>false</code>.
315     * <p/>
316     * Type: Boolean
317     * @see #setUserRestrictions(Bundle)
318     * @see #getUserRestrictions()
319     */
320    public static final String DISALLOW_CREATE_WINDOWS = "no_create_windows";
321
322    /**
323     * Key for user restrictions. Specifies if what is copied in the clipboard of this profile can
324     * be pasted in related profiles. Does not restrict if the clipboard of related profiles can be
325     * pasted in this profile.
326     * The default value is <code>false</code>.
327     * <p/>
328     * Type: Boolean
329     * @see #setUserRestrictions(Bundle)
330     * @see #getUserRestrictions()
331     */
332    public static final String DISALLOW_CROSS_PROFILE_COPY_PASTE = "no_cross_profile_copy_paste";
333
334    /** @hide */
335    public static final int PIN_VERIFICATION_FAILED_INCORRECT = -3;
336    /** @hide */
337    public static final int PIN_VERIFICATION_FAILED_NOT_SET = -2;
338    /** @hide */
339    public static final int PIN_VERIFICATION_SUCCESS = -1;
340
341    private static UserManager sInstance = null;
342
343    /** @hide */
344    public synchronized static UserManager get(Context context) {
345        if (sInstance == null) {
346            sInstance = (UserManager) context.getSystemService(Context.USER_SERVICE);
347        }
348        return sInstance;
349    }
350
351    /** @hide */
352    public UserManager(Context context, IUserManager service) {
353        mService = service;
354        mContext = context;
355    }
356
357    /**
358     * Returns whether the system supports multiple users.
359     * @return true if multiple users can be created by user, false if it is a single user device.
360     * @hide
361     */
362    public static boolean supportsMultipleUsers() {
363        return getMaxSupportedUsers() > 1
364                && SystemProperties.getBoolean("fw.show_multiuserui",
365                Resources.getSystem().getBoolean(R.bool.config_enableMultiUserUI));
366    }
367
368    /**
369     * Returns the user handle for the user that the calling process is running on.
370     *
371     * @return the user handle of the user making this call.
372     * @hide
373     */
374    public int getUserHandle() {
375        return UserHandle.myUserId();
376    }
377
378    /**
379     * Returns the user name of the user making this call.  This call is only
380     * available to applications on the system image; it requires the
381     * MANAGE_USERS permission.
382     * @return the user name
383     */
384    public String getUserName() {
385        try {
386            return mService.getUserInfo(getUserHandle()).name;
387        } catch (RemoteException re) {
388            Log.w(TAG, "Could not get user name", re);
389            return "";
390        }
391    }
392
393   /**
394     * Used to determine whether the user making this call is subject to
395     * teleportations.
396     * @return whether the user making this call is a goat
397     */
398    public boolean isUserAGoat() {
399        return false;
400    }
401
402    /**
403     * Used to check if the user making this call is linked to another user. Linked users may have
404     * a reduced number of available apps, app restrictions and account restrictions.
405     * @return whether the user making this call is a linked user
406     * @hide
407     */
408    public boolean isLinkedUser() {
409        try {
410            return mService.isRestricted();
411        } catch (RemoteException re) {
412            Log.w(TAG, "Could not check if user is limited ", re);
413            return false;
414        }
415    }
416
417    /**
418     * Checks if the calling app is running as a guest user.
419     * @return whether the caller is a guest user.
420     * @hide
421     */
422    public boolean isGuestUser() {
423        UserInfo user = getUserInfo(UserHandle.myUserId());
424        return user != null ? user.isGuest() : false;
425    }
426
427    /**
428     * Return whether the given user is actively running.  This means that
429     * the user is in the "started" state, not "stopped" -- it is currently
430     * allowed to run code through scheduled alarms, receiving broadcasts,
431     * etc.  A started user may be either the current foreground user or a
432     * background user; the result here does not distinguish between the two.
433     * @param user The user to retrieve the running state for.
434     */
435    public boolean isUserRunning(UserHandle user) {
436        try {
437            return ActivityManagerNative.getDefault().isUserRunning(
438                    user.getIdentifier(), false);
439        } catch (RemoteException e) {
440            return false;
441        }
442    }
443
444    /**
445     * Return whether the given user is actively running <em>or</em> stopping.
446     * This is like {@link #isUserRunning(UserHandle)}, but will also return
447     * true if the user had been running but is in the process of being stopped
448     * (but is not yet fully stopped, and still running some code).
449     * @param user The user to retrieve the running state for.
450     */
451    public boolean isUserRunningOrStopping(UserHandle user) {
452        try {
453            return ActivityManagerNative.getDefault().isUserRunning(
454                    user.getIdentifier(), true);
455        } catch (RemoteException e) {
456            return false;
457        }
458    }
459
460    /**
461     * Returns the UserInfo object describing a specific user.
462     * Requires {@link android.Manifest.permission#MANAGE_USERS} permission.
463     * @param userHandle the user handle of the user whose information is being requested.
464     * @return the UserInfo object for a specific user.
465     * @hide
466     */
467    public UserInfo getUserInfo(int userHandle) {
468        try {
469            return mService.getUserInfo(userHandle);
470        } catch (RemoteException re) {
471            Log.w(TAG, "Could not get user info", re);
472            return null;
473        }
474    }
475
476    /**
477     * Returns the user-wide restrictions imposed on this user.
478     * @return a Bundle containing all the restrictions.
479     */
480    public Bundle getUserRestrictions() {
481        return getUserRestrictions(Process.myUserHandle());
482    }
483
484    /**
485     * Returns the user-wide restrictions imposed on the user specified by <code>userHandle</code>.
486     * @param userHandle the UserHandle of the user for whom to retrieve the restrictions.
487     * @return a Bundle containing all the restrictions.
488     */
489    public Bundle getUserRestrictions(UserHandle userHandle) {
490        try {
491            return mService.getUserRestrictions(userHandle.getIdentifier());
492        } catch (RemoteException re) {
493            Log.w(TAG, "Could not get user restrictions", re);
494            return Bundle.EMPTY;
495        }
496    }
497
498    /**
499     * Sets all the user-wide restrictions for this user.
500     * Requires the MANAGE_USERS permission.
501     * @param restrictions the Bundle containing all the restrictions.
502     */
503    public void setUserRestrictions(Bundle restrictions) {
504        setUserRestrictions(restrictions, Process.myUserHandle());
505    }
506
507    /**
508     * Sets all the user-wide restrictions for the specified user.
509     * Requires the MANAGE_USERS permission.
510     * @param restrictions the Bundle containing all the restrictions.
511     * @param userHandle the UserHandle of the user for whom to set the restrictions.
512     */
513    public void setUserRestrictions(Bundle restrictions, UserHandle userHandle) {
514        try {
515            mService.setUserRestrictions(restrictions, userHandle.getIdentifier());
516        } catch (RemoteException re) {
517            Log.w(TAG, "Could not set user restrictions", re);
518        }
519    }
520
521    /**
522     * Sets the value of a specific restriction.
523     * Requires the MANAGE_USERS permission.
524     * @param key the key of the restriction
525     * @param value the value for the restriction
526     */
527    public void setUserRestriction(String key, boolean value) {
528        Bundle bundle = getUserRestrictions();
529        bundle.putBoolean(key, value);
530        setUserRestrictions(bundle);
531    }
532
533    /**
534     * @hide
535     * Sets the value of a specific restriction on a specific user.
536     * Requires the MANAGE_USERS permission.
537     * @param key the key of the restriction
538     * @param value the value for the restriction
539     * @param userHandle the user whose restriction is to be changed.
540     */
541    public void setUserRestriction(String key, boolean value, UserHandle userHandle) {
542        Bundle bundle = getUserRestrictions(userHandle);
543        bundle.putBoolean(key, value);
544        setUserRestrictions(bundle, userHandle);
545    }
546
547    /**
548     * Returns whether the current user has been disallowed from performing certain actions
549     * or setting certain settings.
550     *
551     * @param restrictionKey The string key representing the restriction.
552     * @return {@code true} if the current user has the given restriction, {@code false} otherwise.
553     */
554    public boolean hasUserRestriction(String restrictionKey) {
555        return hasUserRestriction(restrictionKey, Process.myUserHandle());
556    }
557
558    /**
559     * @hide
560     * Returns whether the given user has been disallowed from performing certain actions
561     * or setting certain settings.
562     * @param restrictionKey the string key representing the restriction
563     * @param userHandle the UserHandle of the user for whom to retrieve the restrictions.
564     */
565    public boolean hasUserRestriction(String restrictionKey, UserHandle userHandle) {
566        return getUserRestrictions(userHandle).getBoolean(restrictionKey, false);
567    }
568
569    /**
570     * Return the serial number for a user.  This is a device-unique
571     * number assigned to that user; if the user is deleted and then a new
572     * user created, the new users will not be given the same serial number.
573     * @param user The user whose serial number is to be retrieved.
574     * @return The serial number of the given user; returns -1 if the
575     * given UserHandle does not exist.
576     * @see #getUserForSerialNumber(long)
577     */
578    public long getSerialNumberForUser(UserHandle user) {
579        return getUserSerialNumber(user.getIdentifier());
580    }
581
582    /**
583     * Return the user associated with a serial number previously
584     * returned by {@link #getSerialNumberForUser(UserHandle)}.
585     * @param serialNumber The serial number of the user that is being
586     * retrieved.
587     * @return Return the user associated with the serial number, or null
588     * if there is not one.
589     * @see #getSerialNumberForUser(UserHandle)
590     */
591    public UserHandle getUserForSerialNumber(long serialNumber) {
592        int ident = getUserHandle((int)serialNumber);
593        return ident >= 0 ? new UserHandle(ident) : null;
594    }
595
596    /**
597     * Creates a user with the specified name and options.
598     * Requires {@link android.Manifest.permission#MANAGE_USERS} permission.
599     *
600     * @param name the user's name
601     * @param flags flags that identify the type of user and other properties.
602     * @see UserInfo
603     *
604     * @return the UserInfo object for the created user, or null if the user could not be created.
605     * @hide
606     */
607    public UserInfo createUser(String name, int flags) {
608        try {
609            return mService.createUser(name, flags);
610        } catch (RemoteException re) {
611            Log.w(TAG, "Could not create a user", re);
612            return null;
613        }
614    }
615
616    /**
617     * Creates a guest user and configures it.
618     * @param context an application context
619     * @param name the name to set for the user
620     * @hide
621     */
622    public UserInfo createGuest(Context context, String name) {
623        UserInfo guest = createUser(name, UserInfo.FLAG_GUEST);
624        if (guest != null) {
625            Settings.Secure.putStringForUser(context.getContentResolver(),
626                    Settings.Secure.SKIP_FIRST_USE_HINTS, "1", guest.id);
627        }
628        return guest;
629    }
630
631    /**
632     * Creates a user with the specified name and options as a profile of another user.
633     * Requires {@link android.Manifest.permission#MANAGE_USERS} permission.
634     *
635     * @param name the user's name
636     * @param flags flags that identify the type of user and other properties.
637     * @see UserInfo
638     * @param userHandle new user will be a profile of this use.
639     *
640     * @return the UserInfo object for the created user, or null if the user could not be created.
641     * @hide
642     */
643    public UserInfo createProfileForUser(String name, int flags, int userHandle) {
644        try {
645            return mService.createProfileForUser(name, flags, userHandle);
646        } catch (RemoteException re) {
647            Log.w(TAG, "Could not create a user", re);
648            return null;
649        }
650    }
651
652    /**
653     * Sets the user as enabled, if such an user exists.
654     * Requires {@link android.Manifest.permission#MANAGE_USERS} permission.
655     * Note that the default is true, it's only that managed profiles might not be enabled.
656     *
657     * @param userHandle the id of the profile to enable
658     * @hide
659     */
660    public void setUserEnabled(int userHandle) {
661        try {
662            mService.setUserEnabled(userHandle);
663        } catch (RemoteException e) {
664            Log.w(TAG, "Could not enable the profile", e);
665        }
666    }
667
668    /**
669     * Return the number of users currently created on the device.
670     */
671    public int getUserCount() {
672        List<UserInfo> users = getUsers();
673        return users != null ? users.size() : 1;
674    }
675
676    /**
677     * Returns information for all users on this device.
678     * Requires {@link android.Manifest.permission#MANAGE_USERS} permission.
679     * @return the list of users that were created.
680     * @hide
681     */
682    public List<UserInfo> getUsers() {
683        try {
684            return mService.getUsers(false);
685        } catch (RemoteException re) {
686            Log.w(TAG, "Could not get user list", re);
687            return null;
688        }
689    }
690
691    /**
692     * Returns list of the profiles of userHandle including
693     * userHandle itself.
694     * Note that it this returns both enabled and not enabled profiles. See
695     * {@link #getUserProfiles()} if you need only the enabled ones.
696     *
697     * Requires {@link android.Manifest.permission#MANAGE_USERS} permission.
698     * @param userHandle profiles of this user will be returned.
699     * @return the list of profiles.
700     * @hide
701     */
702    public List<UserInfo> getProfiles(int userHandle) {
703        try {
704            return mService.getProfiles(userHandle, false /* enabledOnly */);
705        } catch (RemoteException re) {
706            Log.w(TAG, "Could not get user list", re);
707            return null;
708        }
709    }
710
711    /**
712     * Returns a list of UserHandles for profiles associated with the user that the calling process
713     * is running on, including the user itself.
714     *
715     * @return A non-empty list of UserHandles associated with the calling user.
716     */
717    public List<UserHandle> getUserProfiles() {
718        ArrayList<UserHandle> profiles = new ArrayList<UserHandle>();
719        List<UserInfo> users = new ArrayList<UserInfo>();
720        try {
721            users = mService.getProfiles(UserHandle.myUserId(), true /* enabledOnly */);
722        } catch (RemoteException re) {
723            Log.w(TAG, "Could not get user list", re);
724            return null;
725        }
726        for (UserInfo info : users) {
727            UserHandle userHandle = new UserHandle(info.id);
728            profiles.add(userHandle);
729        }
730        return profiles;
731    }
732
733    /**
734     * Returns the parent of the profile which this method is called from
735     * or null if called from a user that is not a profile.
736     *
737     * @hide
738     */
739    public UserInfo getProfileParent(int userHandle) {
740        try {
741            return mService.getProfileParent(userHandle);
742        } catch (RemoteException re) {
743            Log.w(TAG, "Could not get profile parent", re);
744            return null;
745        }
746    }
747
748    /**
749     * If the target user is a managed profile of the calling user or the caller
750     * is itself a managed profile, then this returns a badged copy of the given
751     * icon to be able to distinguish it from the original icon.
752     * <P>
753     * If the original drawable is not a BitmapDrawable, then the original
754     * drawable is returned.
755     * </P>
756     *
757     * @param icon The icon to badge.
758     * @param user The target user.
759     * @return A drawable that combines the original icon and a badge as
760     *         determined by the system.
761     */
762    public Drawable getBadgedDrawableForUser(Drawable icon, UserHandle user) {
763        int badgeResId = getBadgeResIdForUser(user.getIdentifier());
764        if (badgeResId == 0) {
765            return icon;
766        } else {
767            Drawable badgeIcon = mContext.getPackageManager()
768                    .getDrawable("system", badgeResId, null);
769            return getMergedDrawable(icon, badgeIcon);
770        }
771    }
772
773    /**
774     * If the target user is a managed profile of the calling user or the caller
775     * is itself a managed profile, then this returns a copy of the label with
776     * badging for accessibility services like talkback. E.g. passing in "Email"
777     * and it might return "Work Email" for Email in the work profile.
778     *
779     * @param label The label to change.
780     * @param user The target user.
781     * @return A label that combines the original label and a badge as
782     *         determined by the system.
783     */
784    public CharSequence getBadgedLabelForUser(CharSequence label, UserHandle user) {
785        UserInfo userInfo = getUserIfProfile(user.getIdentifier());
786        if (userInfo != null && userInfo.isManagedProfile()) {
787            return Resources.getSystem().getString(
788                    R.string.managed_profile_label_badge, label);
789        }
790        return label;
791    }
792
793    /**
794     * Kept during L development to simplify updating unbundled apps.
795     * TODO: Remove after 2014-08-04
796     * @hide
797     */
798    public String getBadgedLabelForUser(String label, UserHandle user) {
799        return (String) getBadgedLabelForUser((CharSequence) label, user);
800    }
801
802    /**
803     * If the target user is a managed profile of the calling user or the caller
804     * is itself a managed profile, then this returns a drawable to use as a small
805     * icon to include in a view to distinguish it from the original icon.
806     *
807     * @param user The target user.
808     * @return the drawable or null if no drawable is required.
809     * @hide
810     */
811    public Drawable getBadgeForUser(UserHandle user) {
812        UserInfo userInfo = getUserIfProfile(user.getIdentifier());
813        if (userInfo != null && userInfo.isManagedProfile()) {
814            return Resources.getSystem().getDrawable(
815                    com.android.internal.R.drawable.ic_corp_badge);
816        }
817        return null;
818    }
819
820    private int getBadgeResIdForUser(int userHandle) {
821        // Return the framework-provided badge.
822        UserInfo userInfo = getUserIfProfile(userHandle);
823        if (userInfo != null && userInfo.isManagedProfile()) {
824            return com.android.internal.R.drawable.ic_corp_icon_badge;
825        }
826        return 0;
827    }
828
829    /**
830     * @return UserInfo for userHandle if it exists and is a profile of the current
831     *         user or null.
832     */
833    private UserInfo getUserIfProfile(int userHandle) {
834        List<UserInfo> userProfiles = getProfiles(getUserHandle());
835        for (UserInfo user : userProfiles) {
836            if (user.id == userHandle) {
837                return user;
838            }
839        }
840        return null;
841    }
842
843    private Drawable getMergedDrawable(Drawable icon, Drawable badge) {
844        final int width = icon.getIntrinsicWidth();
845        final int height = icon.getIntrinsicHeight();
846        Bitmap bitmap = Bitmap.createBitmap(width, height, Config.ARGB_8888);
847        Canvas canvas = new Canvas(bitmap);
848        icon.setBounds(0, 0, width, height);
849        icon.draw(canvas);
850        badge.setBounds(0, 0, width, height);
851        badge.draw(canvas);
852        BitmapDrawable merged = new BitmapDrawable(bitmap);
853        if (icon instanceof BitmapDrawable) {
854            merged.setTargetDensity(((BitmapDrawable) icon).getBitmap().getDensity());
855        }
856        return merged;
857    }
858
859    /**
860     * Returns information for all users on this device. Requires
861     * {@link android.Manifest.permission#MANAGE_USERS} permission.
862     *
863     * @param excludeDying specify if the list should exclude users being
864     *            removed.
865     * @return the list of users that were created.
866     * @hide
867     */
868    public List<UserInfo> getUsers(boolean excludeDying) {
869        try {
870            return mService.getUsers(excludeDying);
871        } catch (RemoteException re) {
872            Log.w(TAG, "Could not get user list", re);
873            return null;
874        }
875    }
876
877    /**
878     * Removes a user and all associated data.
879     * Requires {@link android.Manifest.permission#MANAGE_USERS} permission.
880     * @param userHandle the integer handle of the user, where 0 is the primary user.
881     * @hide
882     */
883    public boolean removeUser(int userHandle) {
884        try {
885            return mService.removeUser(userHandle);
886        } catch (RemoteException re) {
887            Log.w(TAG, "Could not remove user ", re);
888            return false;
889        }
890    }
891
892    /**
893     * Updates the user's name.
894     * Requires {@link android.Manifest.permission#MANAGE_USERS} permission.
895     *
896     * @param userHandle the user's integer handle
897     * @param name the new name for the user
898     * @hide
899     */
900    public void setUserName(int userHandle, String name) {
901        try {
902            mService.setUserName(userHandle, name);
903        } catch (RemoteException re) {
904            Log.w(TAG, "Could not set the user name ", re);
905        }
906    }
907
908    /**
909     * Sets the user's photo.
910     * @param userHandle the user for whom to change the photo.
911     * @param icon the bitmap to set as the photo.
912     * @hide
913     */
914    public void setUserIcon(int userHandle, Bitmap icon) {
915        try {
916            mService.setUserIcon(userHandle, icon);
917        } catch (RemoteException re) {
918            Log.w(TAG, "Could not set the user icon ", re);
919        }
920    }
921
922    /**
923     * Returns a file descriptor for the user's photo. PNG data can be read from this file.
924     * @param userHandle the user whose photo we want to read.
925     * @return a {@link Bitmap} of the user's photo, or null if there's no photo.
926     * @hide
927     */
928    public Bitmap getUserIcon(int userHandle) {
929        try {
930            return mService.getUserIcon(userHandle);
931        } catch (RemoteException re) {
932            Log.w(TAG, "Could not get the user icon ", re);
933            return null;
934        }
935    }
936
937    /**
938     * Returns the maximum number of users that can be created on this device. A return value
939     * of 1 means that it is a single user device.
940     * @hide
941     * @return a value greater than or equal to 1
942     */
943    public static int getMaxSupportedUsers() {
944        // Don't allow multiple users on certain builds
945        if (android.os.Build.ID.startsWith("JVP")) return 1;
946        // Svelte devices don't get multi-user.
947        if (ActivityManager.isLowRamDeviceStatic()) return 1;
948        return SystemProperties.getInt("fw.max_users",
949                Resources.getSystem().getInteger(R.integer.config_multiuserMaximumUsers));
950    }
951
952    /**
953     * Returns true if the user switcher should be shown, this will be if there
954     * are multiple users that aren't managed profiles.
955     * @hide
956     * @return true if user switcher should be shown.
957     */
958    public boolean isUserSwitcherEnabled() {
959        List<UserInfo> users = getUsers(true);
960        if (users == null) {
961           return false;
962        }
963        int switchableUserCount = 0;
964        for (UserInfo user : users) {
965            if (user.supportsSwitchTo()) {
966                ++switchableUserCount;
967            }
968        }
969        final boolean guestEnabled = Settings.Global.getInt(mContext.getContentResolver(),
970                Settings.Global.GUEST_USER_ENABLED, 0) == 1;
971        return switchableUserCount > 1 || guestEnabled;
972    }
973
974    /**
975     * Returns a serial number on this device for a given userHandle. User handles can be recycled
976     * when deleting and creating users, but serial numbers are not reused until the device is wiped.
977     * @param userHandle
978     * @return a serial number associated with that user, or -1 if the userHandle is not valid.
979     * @hide
980     */
981    public int getUserSerialNumber(int userHandle) {
982        try {
983            return mService.getUserSerialNumber(userHandle);
984        } catch (RemoteException re) {
985            Log.w(TAG, "Could not get serial number for user " + userHandle);
986        }
987        return -1;
988    }
989
990    /**
991     * Returns a userHandle on this device for a given user serial number. User handles can be
992     * recycled when deleting and creating users, but serial numbers are not reused until the device
993     * is wiped.
994     * @param userSerialNumber
995     * @return the userHandle associated with that user serial number, or -1 if the serial number
996     * is not valid.
997     * @hide
998     */
999    public int getUserHandle(int userSerialNumber) {
1000        try {
1001            return mService.getUserHandle(userSerialNumber);
1002        } catch (RemoteException re) {
1003            Log.w(TAG, "Could not get userHandle for user " + userSerialNumber);
1004        }
1005        return -1;
1006    }
1007
1008    /**
1009     * Returns a Bundle containing any saved application restrictions for this user, for the
1010     * given package name. Only an application with this package name can call this method.
1011     * @param packageName the package name of the calling application
1012     * @return a Bundle with the restrictions as key/value pairs, or null if there are no
1013     * saved restrictions. The values can be of type Boolean, String or String[], depending
1014     * on the restriction type, as defined by the application.
1015     */
1016    public Bundle getApplicationRestrictions(String packageName) {
1017        try {
1018            return mService.getApplicationRestrictions(packageName);
1019        } catch (RemoteException re) {
1020            Log.w(TAG, "Could not get application restrictions for package " + packageName);
1021        }
1022        return null;
1023    }
1024
1025    /**
1026     * @hide
1027     */
1028    public Bundle getApplicationRestrictions(String packageName, UserHandle user) {
1029        try {
1030            return mService.getApplicationRestrictionsForUser(packageName, user.getIdentifier());
1031        } catch (RemoteException re) {
1032            Log.w(TAG, "Could not get application restrictions for user " + user.getIdentifier());
1033        }
1034        return null;
1035    }
1036
1037    /**
1038     * @hide
1039     */
1040    public void setApplicationRestrictions(String packageName, Bundle restrictions,
1041            UserHandle user) {
1042        try {
1043            mService.setApplicationRestrictions(packageName, restrictions, user.getIdentifier());
1044        } catch (RemoteException re) {
1045            Log.w(TAG, "Could not set application restrictions for user " + user.getIdentifier());
1046        }
1047    }
1048
1049    /**
1050     * Sets a new challenge PIN for restrictions. This is only for use by pre-installed
1051     * apps and requires the MANAGE_USERS permission.
1052     * @param newPin the PIN to use for challenge dialogs.
1053     * @return Returns true if the challenge PIN was set successfully.
1054     */
1055    public boolean setRestrictionsChallenge(String newPin) {
1056        try {
1057            return mService.setRestrictionsChallenge(newPin);
1058        } catch (RemoteException re) {
1059            Log.w(TAG, "Could not change restrictions pin");
1060        }
1061        return false;
1062    }
1063
1064    /**
1065     * @hide
1066     * @param pin The PIN to verify, or null to get the number of milliseconds to wait for before
1067     * allowing the user to enter the PIN.
1068     * @return Returns a positive number (including zero) for how many milliseconds before
1069     * you can accept another PIN, when the input is null or the input doesn't match the saved PIN.
1070     * Returns {@link #PIN_VERIFICATION_SUCCESS} if the input matches the saved PIN. Returns
1071     * {@link #PIN_VERIFICATION_FAILED_NOT_SET} if there is no PIN set.
1072     */
1073    public int checkRestrictionsChallenge(String pin) {
1074        try {
1075            return mService.checkRestrictionsChallenge(pin);
1076        } catch (RemoteException re) {
1077            Log.w(TAG, "Could not check restrictions pin");
1078        }
1079        return PIN_VERIFICATION_FAILED_INCORRECT;
1080    }
1081
1082    /**
1083     * @hide
1084     * Checks whether the user has restrictions that are PIN-protected. An application that
1085     * participates in restrictions can check if the owner has requested a PIN challenge for
1086     * any restricted operations. If there is a PIN in effect, the application should launch
1087     * the PIN challenge activity {@link android.content.Intent#ACTION_RESTRICTIONS_CHALLENGE}.
1088     * @see android.content.Intent#ACTION_RESTRICTIONS_CHALLENGE
1089     * @return whether a restrictions PIN is in effect.
1090     */
1091    public boolean hasRestrictionsChallenge() {
1092        try {
1093            return mService.hasRestrictionsChallenge();
1094        } catch (RemoteException re) {
1095            Log.w(TAG, "Could not change restrictions pin");
1096        }
1097        return false;
1098    }
1099
1100    /** @hide */
1101    public void removeRestrictions() {
1102        try {
1103            mService.removeRestrictions();
1104        } catch (RemoteException re) {
1105            Log.w(TAG, "Could not change restrictions pin");
1106        }
1107    }
1108
1109    /**
1110     * @hide
1111     * Set restrictions that should apply to any future guest user that's created.
1112     */
1113    public void setDefaultGuestRestrictions(Bundle restrictions) {
1114        try {
1115            mService.setDefaultGuestRestrictions(restrictions);
1116        } catch (RemoteException re) {
1117            Log.w(TAG, "Could not set guest restrictions");
1118        }
1119    }
1120
1121    /**
1122     * @hide
1123     * Gets the default guest restrictions.
1124     */
1125    public Bundle getDefaultGuestRestrictions() {
1126        try {
1127            return mService.getDefaultGuestRestrictions();
1128        } catch (RemoteException re) {
1129            Log.w(TAG, "Could not set guest restrictions");
1130        }
1131        return new Bundle();
1132    }
1133}
1134