UserManagerService.java revision 75d0ea8785163d5b0fddaec339f68bacdf52df82
1/*
2 * Copyright (C) 2011 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 *      http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17package com.android.server.pm;
18
19import android.app.Activity;
20import android.app.ActivityManager;
21import android.app.ActivityManagerNative;
22import android.app.IStopUserCallback;
23import android.content.BroadcastReceiver;
24import android.content.Context;
25import android.content.Intent;
26import android.content.pm.ApplicationInfo;
27import android.content.pm.PackageManager;
28import android.content.pm.PackageManager.NameNotFoundException;
29import android.content.pm.UserInfo;
30import android.graphics.Bitmap;
31import android.graphics.BitmapFactory;
32import android.os.Binder;
33import android.os.Bundle;
34import android.os.Environment;
35import android.os.FileUtils;
36import android.os.Handler;
37import android.os.IUserManager;
38import android.os.Message;
39import android.os.Process;
40import android.os.RemoteException;
41import android.os.ServiceManager;
42import android.os.UserHandle;
43import android.os.UserManager;
44import android.util.AtomicFile;
45import android.util.Log;
46import android.util.Slog;
47import android.util.SparseArray;
48import android.util.SparseBooleanArray;
49import android.util.TimeUtils;
50import android.util.Xml;
51
52import com.android.internal.app.IAppOpsService;
53import com.android.internal.util.ArrayUtils;
54import com.android.internal.util.FastXmlSerializer;
55
56import org.xmlpull.v1.XmlPullParser;
57import org.xmlpull.v1.XmlPullParserException;
58import org.xmlpull.v1.XmlSerializer;
59
60import java.io.BufferedOutputStream;
61import java.io.File;
62import java.io.FileDescriptor;
63import java.io.FileInputStream;
64import java.io.FileNotFoundException;
65import java.io.FileOutputStream;
66import java.io.IOException;
67import java.io.PrintWriter;
68import java.security.MessageDigest;
69import java.security.NoSuchAlgorithmException;
70import java.security.SecureRandom;
71import java.util.ArrayList;
72import java.util.List;
73
74public class UserManagerService extends IUserManager.Stub {
75
76    private static final String LOG_TAG = "UserManagerService";
77
78    private static final boolean DBG = false;
79
80    private static final String TAG_NAME = "name";
81    private static final String ATTR_FLAGS = "flags";
82    private static final String ATTR_ICON_PATH = "icon";
83    private static final String ATTR_ID = "id";
84    private static final String ATTR_CREATION_TIME = "created";
85    private static final String ATTR_LAST_LOGGED_IN_TIME = "lastLoggedIn";
86    private static final String ATTR_SALT = "salt";
87    private static final String ATTR_PIN_HASH = "pinHash";
88    private static final String ATTR_FAILED_ATTEMPTS = "failedAttempts";
89    private static final String ATTR_LAST_RETRY_MS = "lastAttemptMs";
90    private static final String ATTR_SERIAL_NO = "serialNumber";
91    private static final String ATTR_NEXT_SERIAL_NO = "nextSerialNumber";
92    private static final String ATTR_PARTIAL = "partial";
93    private static final String ATTR_GUEST_TO_REMOVE = "guestToRemove";
94    private static final String ATTR_USER_VERSION = "version";
95    private static final String ATTR_PROFILE_GROUP_ID = "profileGroupId";
96    private static final String TAG_GUEST_RESTRICTIONS = "guestRestrictions";
97    private static final String TAG_USERS = "users";
98    private static final String TAG_USER = "user";
99    private static final String TAG_RESTRICTIONS = "restrictions";
100    private static final String TAG_ENTRY = "entry";
101    private static final String TAG_VALUE = "value";
102    private static final String ATTR_KEY = "key";
103    private static final String ATTR_VALUE_TYPE = "type";
104    private static final String ATTR_MULTIPLE = "m";
105
106    private static final String ATTR_TYPE_STRING_ARRAY = "sa";
107    private static final String ATTR_TYPE_STRING = "s";
108    private static final String ATTR_TYPE_BOOLEAN = "b";
109    private static final String ATTR_TYPE_INTEGER = "i";
110
111    private static final String USER_INFO_DIR = "system" + File.separator + "users";
112    private static final String USER_LIST_FILENAME = "userlist.xml";
113    private static final String USER_PHOTO_FILENAME = "photo.png";
114
115    private static final String RESTRICTIONS_FILE_PREFIX = "res_";
116    private static final String XML_SUFFIX = ".xml";
117
118    private static final int MIN_USER_ID = 10;
119
120    private static final int USER_VERSION = 5;
121
122    private static final long EPOCH_PLUS_30_YEARS = 30L * 365 * 24 * 60 * 60 * 1000L; // ms
123
124    // Number of attempts before jumping to the next BACKOFF_TIMES slot
125    private static final int BACKOFF_INC_INTERVAL = 5;
126
127    // Maximum number of managed profiles permitted is 1. This cannot be increased
128    // without first making sure that the rest of the framework is prepared for it.
129    private static final int MAX_MANAGED_PROFILES = 1;
130
131    // Amount of time to force the user to wait before entering the PIN again, after failing
132    // BACKOFF_INC_INTERVAL times.
133    private static final int[] BACKOFF_TIMES = { 0, 30*1000, 60*1000, 5*60*1000, 30*60*1000 };
134
135    static final int WRITE_USER_MSG = 1;
136    static final int WRITE_USER_DELAY = 2*1000;  // 2 seconds
137
138    private final Context mContext;
139    private final PackageManagerService mPm;
140    private final Object mInstallLock;
141    private final Object mPackagesLock;
142
143    private final Handler mHandler;
144
145    private final File mUsersDir;
146    private final File mUserListFile;
147    private final File mBaseUserPath;
148
149    private final SparseArray<UserInfo> mUsers = new SparseArray<UserInfo>();
150    private final SparseArray<Bundle> mUserRestrictions = new SparseArray<Bundle>();
151    private final Bundle mGuestRestrictions = new Bundle();
152
153    class RestrictionsPinState {
154        long salt;
155        String pinHash;
156        int failedAttempts;
157        long lastAttemptTime;
158    }
159
160    private final SparseArray<RestrictionsPinState> mRestrictionsPinStates =
161            new SparseArray<RestrictionsPinState>();
162
163    /**
164     * Set of user IDs being actively removed. Removed IDs linger in this set
165     * for several seconds to work around a VFS caching issue.
166     */
167    // @GuardedBy("mPackagesLock")
168    private final SparseBooleanArray mRemovingUserIds = new SparseBooleanArray();
169
170    private int[] mUserIds;
171    private int mNextSerialNumber;
172    private int mUserVersion = 0;
173
174    private IAppOpsService mAppOpsService;
175
176    private static UserManagerService sInstance;
177
178    public static UserManagerService getInstance() {
179        synchronized (UserManagerService.class) {
180            return sInstance;
181        }
182    }
183
184    /**
185     * Available for testing purposes.
186     */
187    UserManagerService(File dataDir, File baseUserPath) {
188        this(null, null, new Object(), new Object(), dataDir, baseUserPath);
189    }
190
191    /**
192     * Called by package manager to create the service.  This is closely
193     * associated with the package manager, and the given lock is the
194     * package manager's own lock.
195     */
196    UserManagerService(Context context, PackageManagerService pm,
197            Object installLock, Object packagesLock) {
198        this(context, pm, installLock, packagesLock,
199                Environment.getDataDirectory(),
200                new File(Environment.getDataDirectory(), "user"));
201    }
202
203    /**
204     * Available for testing purposes.
205     */
206    private UserManagerService(Context context, PackageManagerService pm,
207            Object installLock, Object packagesLock,
208            File dataDir, File baseUserPath) {
209        mContext = context;
210        mPm = pm;
211        mInstallLock = installLock;
212        mPackagesLock = packagesLock;
213        mHandler = new MainHandler();
214        synchronized (mInstallLock) {
215            synchronized (mPackagesLock) {
216                mUsersDir = new File(dataDir, USER_INFO_DIR);
217                mUsersDir.mkdirs();
218                // Make zeroth user directory, for services to migrate their files to that location
219                File userZeroDir = new File(mUsersDir, "0");
220                userZeroDir.mkdirs();
221                mBaseUserPath = baseUserPath;
222                FileUtils.setPermissions(mUsersDir.toString(),
223                        FileUtils.S_IRWXU|FileUtils.S_IRWXG
224                        |FileUtils.S_IROTH|FileUtils.S_IXOTH,
225                        -1, -1);
226                mUserListFile = new File(mUsersDir, USER_LIST_FILENAME);
227                initDefaultGuestRestrictions();
228                readUserListLocked();
229                // Prune out any partially created/partially removed users.
230                ArrayList<UserInfo> partials = new ArrayList<UserInfo>();
231                for (int i = 0; i < mUsers.size(); i++) {
232                    UserInfo ui = mUsers.valueAt(i);
233                    if ((ui.partial || ui.guestToRemove) && i != 0) {
234                        partials.add(ui);
235                    }
236                }
237                for (int i = 0; i < partials.size(); i++) {
238                    UserInfo ui = partials.get(i);
239                    Slog.w(LOG_TAG, "Removing partially created user #" + i
240                            + " (name=" + ui.name + ")");
241                    removeUserStateLocked(ui.id);
242                }
243                sInstance = this;
244            }
245        }
246    }
247
248    void systemReady() {
249        userForeground(UserHandle.USER_OWNER);
250        mAppOpsService = IAppOpsService.Stub.asInterface(
251                ServiceManager.getService(Context.APP_OPS_SERVICE));
252        for (int i = 0; i < mUserIds.length; ++i) {
253            try {
254                mAppOpsService.setUserRestrictions(mUserRestrictions.get(mUserIds[i]), mUserIds[i]);
255            } catch (RemoteException e) {
256                Log.w(LOG_TAG, "Unable to notify AppOpsService of UserRestrictions");
257            }
258        }
259    }
260
261    @Override
262    public List<UserInfo> getUsers(boolean excludeDying) {
263        checkManageUsersPermission("query users");
264        synchronized (mPackagesLock) {
265            ArrayList<UserInfo> users = new ArrayList<UserInfo>(mUsers.size());
266            for (int i = 0; i < mUsers.size(); i++) {
267                UserInfo ui = mUsers.valueAt(i);
268                if (ui.partial) {
269                    continue;
270                }
271                if (!excludeDying || !mRemovingUserIds.get(ui.id)) {
272                    users.add(ui);
273                }
274            }
275            return users;
276        }
277    }
278
279    @Override
280    public List<UserInfo> getProfiles(int userId, boolean enabledOnly) {
281        if (userId != UserHandle.getCallingUserId()) {
282            checkManageUsersPermission("getting profiles related to user " + userId);
283        }
284        final long ident = Binder.clearCallingIdentity();
285        try {
286            synchronized (mPackagesLock) {
287                return getProfilesLocked(userId, enabledOnly);
288            }
289        } finally {
290            Binder.restoreCallingIdentity(ident);
291        }
292    }
293
294    /** Assume permissions already checked and caller's identity cleared */
295    private List<UserInfo> getProfilesLocked(int userId, boolean enabledOnly) {
296        UserInfo user = getUserInfoLocked(userId);
297        ArrayList<UserInfo> users = new ArrayList<UserInfo>(mUsers.size());
298        if (user == null) {
299            // Probably a dying user
300            return users;
301        }
302        for (int i = 0; i < mUsers.size(); i++) {
303            UserInfo profile = mUsers.valueAt(i);
304            if (!isProfileOf(user, profile)) {
305                continue;
306            }
307            if (enabledOnly && !profile.isEnabled()) {
308                continue;
309            }
310            if (mRemovingUserIds.get(profile.id)) {
311                continue;
312            }
313            users.add(profile);
314        }
315        return users;
316    }
317
318    @Override
319    public UserInfo getProfileParent(int userHandle) {
320        checkManageUsersPermission("get the profile parent");
321        synchronized (mPackagesLock) {
322            UserInfo profile = getUserInfoLocked(userHandle);
323            int parentUserId = profile.profileGroupId;
324            if (parentUserId == UserInfo.NO_PROFILE_GROUP_ID) {
325                return null;
326            } else {
327                return getUserInfoLocked(parentUserId);
328            }
329        }
330    }
331
332    private boolean isProfileOf(UserInfo user, UserInfo profile) {
333        return user.id == profile.id ||
334                (user.profileGroupId != UserInfo.NO_PROFILE_GROUP_ID
335                && user.profileGroupId == profile.profileGroupId);
336    }
337
338    @Override
339    public void setUserEnabled(int userId) {
340        checkManageUsersPermission("enable user");
341        synchronized (mPackagesLock) {
342            UserInfo info = getUserInfoLocked(userId);
343            if (info != null && !info.isEnabled()) {
344                info.flags ^= UserInfo.FLAG_DISABLED;
345                writeUserLocked(info);
346            }
347        }
348    }
349
350    @Override
351    public UserInfo getUserInfo(int userId) {
352        checkManageUsersPermission("query user");
353        synchronized (mPackagesLock) {
354            return getUserInfoLocked(userId);
355        }
356    }
357
358    @Override
359    public boolean isRestricted() {
360        synchronized (mPackagesLock) {
361            return getUserInfoLocked(UserHandle.getCallingUserId()).isRestricted();
362        }
363    }
364
365    /*
366     * Should be locked on mUsers before calling this.
367     */
368    private UserInfo getUserInfoLocked(int userId) {
369        UserInfo ui = mUsers.get(userId);
370        // If it is partial and not in the process of being removed, return as unknown user.
371        if (ui != null && ui.partial && !mRemovingUserIds.get(userId)) {
372            Slog.w(LOG_TAG, "getUserInfo: unknown user #" + userId);
373            return null;
374        }
375        return ui;
376    }
377
378    public boolean exists(int userId) {
379        synchronized (mPackagesLock) {
380            return ArrayUtils.contains(mUserIds, userId);
381        }
382    }
383
384    @Override
385    public void setUserName(int userId, String name) {
386        checkManageUsersPermission("rename users");
387        boolean changed = false;
388        synchronized (mPackagesLock) {
389            UserInfo info = mUsers.get(userId);
390            if (info == null || info.partial) {
391                Slog.w(LOG_TAG, "setUserName: unknown user #" + userId);
392                return;
393            }
394            if (name != null && !name.equals(info.name)) {
395                info.name = name;
396                writeUserLocked(info);
397                changed = true;
398            }
399        }
400        if (changed) {
401            sendUserInfoChangedBroadcast(userId);
402        }
403    }
404
405    @Override
406    public void setUserIcon(int userId, Bitmap bitmap) {
407        checkManageUsersPermission("update users");
408        long ident = Binder.clearCallingIdentity();
409        try {
410            synchronized (mPackagesLock) {
411                UserInfo info = mUsers.get(userId);
412                if (info == null || info.partial) {
413                    Slog.w(LOG_TAG, "setUserIcon: unknown user #" + userId);
414                    return;
415                }
416                writeBitmapLocked(info, bitmap);
417                writeUserLocked(info);
418            }
419            sendUserInfoChangedBroadcast(userId);
420        } finally {
421            Binder.restoreCallingIdentity(ident);
422        }
423    }
424
425    private void sendUserInfoChangedBroadcast(int userId) {
426        Intent changedIntent = new Intent(Intent.ACTION_USER_INFO_CHANGED);
427        changedIntent.putExtra(Intent.EXTRA_USER_HANDLE, userId);
428        changedIntent.addFlags(Intent.FLAG_RECEIVER_REGISTERED_ONLY);
429        mContext.sendBroadcastAsUser(changedIntent, UserHandle.ALL);
430    }
431
432    @Override
433    public Bitmap getUserIcon(int userId) {
434        synchronized (mPackagesLock) {
435            UserInfo info = mUsers.get(userId);
436            if (info == null || info.partial) {
437                Slog.w(LOG_TAG, "getUserIcon: unknown user #" + userId);
438                return null;
439            }
440            int callingGroupId = mUsers.get(UserHandle.getCallingUserId()).profileGroupId;
441            if (callingGroupId == UserInfo.NO_PROFILE_GROUP_ID
442                    || callingGroupId != info.profileGroupId) {
443                checkManageUsersPermission("get the icon of a user who is not related");
444            }
445            if (info.iconPath == null) {
446                return null;
447            }
448            return BitmapFactory.decodeFile(info.iconPath);
449        }
450    }
451
452    public void makeInitialized(int userId) {
453        checkManageUsersPermission("makeInitialized");
454        synchronized (mPackagesLock) {
455            UserInfo info = mUsers.get(userId);
456            if (info == null || info.partial) {
457                Slog.w(LOG_TAG, "makeInitialized: unknown user #" + userId);
458            }
459            if ((info.flags&UserInfo.FLAG_INITIALIZED) == 0) {
460                info.flags |= UserInfo.FLAG_INITIALIZED;
461                scheduleWriteUserLocked(info);
462            }
463        }
464    }
465
466    /**
467     * If default guest restrictions haven't been initialized yet, add the basic
468     * restrictions.
469     */
470    private void initDefaultGuestRestrictions() {
471        if (mGuestRestrictions.isEmpty()) {
472            mGuestRestrictions.putBoolean(UserManager.DISALLOW_OUTGOING_CALLS, true);
473            mGuestRestrictions.putBoolean(UserManager.DISALLOW_SMS, true);
474        }
475    }
476
477    @Override
478    public Bundle getDefaultGuestRestrictions() {
479        checkManageUsersPermission("getDefaultGuestRestrictions");
480        synchronized (mPackagesLock) {
481            return new Bundle(mGuestRestrictions);
482        }
483    }
484
485    @Override
486    public void setDefaultGuestRestrictions(Bundle restrictions) {
487        checkManageUsersPermission("setDefaultGuestRestrictions");
488        synchronized (mPackagesLock) {
489            mGuestRestrictions.clear();
490            mGuestRestrictions.putAll(restrictions);
491            writeUserListLocked();
492        }
493    }
494
495    @Override
496    public boolean hasUserRestriction(String restrictionKey, int userId) {
497        synchronized (mPackagesLock) {
498            Bundle restrictions = mUserRestrictions.get(userId);
499            return restrictions != null ? restrictions.getBoolean(restrictionKey) : false;
500        }
501    }
502
503    @Override
504    public Bundle getUserRestrictions(int userId) {
505        // checkManageUsersPermission("getUserRestrictions");
506
507        synchronized (mPackagesLock) {
508            Bundle restrictions = mUserRestrictions.get(userId);
509            return restrictions != null ? new Bundle(restrictions) : new Bundle();
510        }
511    }
512
513    @Override
514    public void setUserRestrictions(Bundle restrictions, int userId) {
515        checkManageUsersPermission("setUserRestrictions");
516        if (restrictions == null) return;
517
518        synchronized (mPackagesLock) {
519            mUserRestrictions.get(userId).clear();
520            mUserRestrictions.get(userId).putAll(restrictions);
521            long token = Binder.clearCallingIdentity();
522            try {
523                mAppOpsService.setUserRestrictions(mUserRestrictions.get(userId), userId);
524            } catch (RemoteException e) {
525                Log.w(LOG_TAG, "Unable to notify AppOpsService of UserRestrictions");
526            } finally {
527                Binder.restoreCallingIdentity(token);
528            }
529            scheduleWriteUserLocked(mUsers.get(userId));
530        }
531    }
532
533    /**
534     * Check if we've hit the limit of how many users can be created.
535     */
536    private boolean isUserLimitReachedLocked() {
537        int aliveUserCount = 0;
538        final int totalUserCount = mUsers.size();
539        // Skip over users being removed
540        for (int i = 0; i < totalUserCount; i++) {
541            UserInfo user = mUsers.valueAt(i);
542            if (!mRemovingUserIds.get(user.id)
543                    && !user.isGuest() && !user.partial) {
544                aliveUserCount++;
545            }
546        }
547        return aliveUserCount >= UserManager.getMaxSupportedUsers();
548    }
549
550    /**
551     * Enforces that only the system UID or root's UID or apps that have the
552     * {@link android.Manifest.permission#MANAGE_USERS MANAGE_USERS}
553     * permission can make certain calls to the UserManager.
554     *
555     * @param message used as message if SecurityException is thrown
556     * @throws SecurityException if the caller is not system or root
557     */
558    private static final void checkManageUsersPermission(String message) {
559        final int uid = Binder.getCallingUid();
560        if (uid != Process.SYSTEM_UID && uid != 0
561                && ActivityManager.checkComponentPermission(
562                        android.Manifest.permission.MANAGE_USERS,
563                        uid, -1, true) != PackageManager.PERMISSION_GRANTED) {
564            throw new SecurityException("You need MANAGE_USERS permission to: " + message);
565        }
566    }
567
568    private void writeBitmapLocked(UserInfo info, Bitmap bitmap) {
569        try {
570            File dir = new File(mUsersDir, Integer.toString(info.id));
571            File file = new File(dir, USER_PHOTO_FILENAME);
572            if (!dir.exists()) {
573                dir.mkdir();
574                FileUtils.setPermissions(
575                        dir.getPath(),
576                        FileUtils.S_IRWXU|FileUtils.S_IRWXG|FileUtils.S_IXOTH,
577                        -1, -1);
578            }
579            FileOutputStream os;
580            if (bitmap.compress(Bitmap.CompressFormat.PNG, 100, os = new FileOutputStream(file))) {
581                info.iconPath = file.getAbsolutePath();
582            }
583            try {
584                os.close();
585            } catch (IOException ioe) {
586                // What the ... !
587            }
588        } catch (FileNotFoundException e) {
589            Slog.w(LOG_TAG, "Error setting photo for user ", e);
590        }
591    }
592
593    /**
594     * Returns an array of user ids. This array is cached here for quick access, so do not modify or
595     * cache it elsewhere.
596     * @return the array of user ids.
597     */
598    public int[] getUserIds() {
599        synchronized (mPackagesLock) {
600            return mUserIds;
601        }
602    }
603
604    int[] getUserIdsLPr() {
605        return mUserIds;
606    }
607
608    private void readUserListLocked() {
609        if (!mUserListFile.exists()) {
610            fallbackToSingleUserLocked();
611            return;
612        }
613        FileInputStream fis = null;
614        AtomicFile userListFile = new AtomicFile(mUserListFile);
615        try {
616            fis = userListFile.openRead();
617            XmlPullParser parser = Xml.newPullParser();
618            parser.setInput(fis, null);
619            int type;
620            while ((type = parser.next()) != XmlPullParser.START_TAG
621                    && type != XmlPullParser.END_DOCUMENT) {
622                ;
623            }
624
625            if (type != XmlPullParser.START_TAG) {
626                Slog.e(LOG_TAG, "Unable to read user list");
627                fallbackToSingleUserLocked();
628                return;
629            }
630
631            mNextSerialNumber = -1;
632            if (parser.getName().equals(TAG_USERS)) {
633                String lastSerialNumber = parser.getAttributeValue(null, ATTR_NEXT_SERIAL_NO);
634                if (lastSerialNumber != null) {
635                    mNextSerialNumber = Integer.parseInt(lastSerialNumber);
636                }
637                String versionNumber = parser.getAttributeValue(null, ATTR_USER_VERSION);
638                if (versionNumber != null) {
639                    mUserVersion = Integer.parseInt(versionNumber);
640                }
641            }
642
643            while ((type = parser.next()) != XmlPullParser.END_DOCUMENT) {
644                if (type == XmlPullParser.START_TAG) {
645                    final String name = parser.getName();
646                    if (name.equals(TAG_USER)) {
647                        String id = parser.getAttributeValue(null, ATTR_ID);
648                        UserInfo user = readUserLocked(Integer.parseInt(id));
649
650                        if (user != null) {
651                            mUsers.put(user.id, user);
652                            if (mNextSerialNumber < 0 || mNextSerialNumber <= user.id) {
653                                mNextSerialNumber = user.id + 1;
654                            }
655                        }
656                    } else if (name.equals(TAG_GUEST_RESTRICTIONS)) {
657                        while ((type = parser.next()) != XmlPullParser.END_DOCUMENT
658                                && type != XmlPullParser.END_TAG) {
659                            if (type == XmlPullParser.START_TAG) {
660                                if (parser.getName().equals(TAG_RESTRICTIONS)) {
661                                    readRestrictionsLocked(parser, mGuestRestrictions);
662                                }
663                                break;
664                            }
665                        }
666                    }
667                }
668            }
669            updateUserIdsLocked();
670            upgradeIfNecessaryLocked();
671        } catch (IOException ioe) {
672            fallbackToSingleUserLocked();
673        } catch (XmlPullParserException pe) {
674            fallbackToSingleUserLocked();
675        } finally {
676            if (fis != null) {
677                try {
678                    fis.close();
679                } catch (IOException e) {
680                }
681            }
682        }
683    }
684
685    /**
686     * Upgrade steps between versions, either for fixing bugs or changing the data format.
687     */
688    private void upgradeIfNecessaryLocked() {
689        int userVersion = mUserVersion;
690        if (userVersion < 1) {
691            // Assign a proper name for the owner, if not initialized correctly before
692            UserInfo user = mUsers.get(UserHandle.USER_OWNER);
693            if ("Primary".equals(user.name)) {
694                user.name = mContext.getResources().getString(com.android.internal.R.string.owner_name);
695                scheduleWriteUserLocked(user);
696            }
697            userVersion = 1;
698        }
699
700        if (userVersion < 2) {
701            // Owner should be marked as initialized
702            UserInfo user = mUsers.get(UserHandle.USER_OWNER);
703            if ((user.flags & UserInfo.FLAG_INITIALIZED) == 0) {
704                user.flags |= UserInfo.FLAG_INITIALIZED;
705                scheduleWriteUserLocked(user);
706            }
707            userVersion = 2;
708        }
709
710
711        if (userVersion < 4) {
712            userVersion = 4;
713        }
714
715        if (userVersion < 5) {
716            initDefaultGuestRestrictions();
717            userVersion = 5;
718        }
719
720        if (userVersion < USER_VERSION) {
721            Slog.w(LOG_TAG, "User version " + mUserVersion + " didn't upgrade as expected to "
722                    + USER_VERSION);
723        } else {
724            mUserVersion = userVersion;
725            writeUserListLocked();
726        }
727    }
728
729    private void fallbackToSingleUserLocked() {
730        // Create the primary user
731        UserInfo primary = new UserInfo(UserHandle.USER_OWNER,
732                mContext.getResources().getString(com.android.internal.R.string.owner_name), null,
733                UserInfo.FLAG_ADMIN | UserInfo.FLAG_PRIMARY | UserInfo.FLAG_INITIALIZED);
734        mUsers.put(0, primary);
735        mNextSerialNumber = MIN_USER_ID;
736        mUserVersion = USER_VERSION;
737
738        Bundle restrictions = new Bundle();
739        mUserRestrictions.append(UserHandle.USER_OWNER, restrictions);
740
741        updateUserIdsLocked();
742        initDefaultGuestRestrictions();
743
744        writeUserListLocked();
745        writeUserLocked(primary);
746    }
747
748    private void scheduleWriteUserLocked(UserInfo userInfo) {
749        if (!mHandler.hasMessages(WRITE_USER_MSG, userInfo)) {
750            Message msg = mHandler.obtainMessage(WRITE_USER_MSG, userInfo);
751            mHandler.sendMessageDelayed(msg, WRITE_USER_DELAY);
752        }
753    }
754
755    /*
756     * Writes the user file in this format:
757     *
758     * <user flags="20039023" id="0">
759     *   <name>Primary</name>
760     * </user>
761     */
762    private void writeUserLocked(UserInfo userInfo) {
763        FileOutputStream fos = null;
764        AtomicFile userFile = new AtomicFile(new File(mUsersDir, userInfo.id + XML_SUFFIX));
765        try {
766            fos = userFile.startWrite();
767            final BufferedOutputStream bos = new BufferedOutputStream(fos);
768
769            // XmlSerializer serializer = XmlUtils.serializerInstance();
770            final XmlSerializer serializer = new FastXmlSerializer();
771            serializer.setOutput(bos, "utf-8");
772            serializer.startDocument(null, true);
773            serializer.setFeature("http://xmlpull.org/v1/doc/features.html#indent-output", true);
774
775            serializer.startTag(null, TAG_USER);
776            serializer.attribute(null, ATTR_ID, Integer.toString(userInfo.id));
777            serializer.attribute(null, ATTR_SERIAL_NO, Integer.toString(userInfo.serialNumber));
778            serializer.attribute(null, ATTR_FLAGS, Integer.toString(userInfo.flags));
779            serializer.attribute(null, ATTR_CREATION_TIME, Long.toString(userInfo.creationTime));
780            serializer.attribute(null, ATTR_LAST_LOGGED_IN_TIME,
781                    Long.toString(userInfo.lastLoggedInTime));
782            RestrictionsPinState pinState = mRestrictionsPinStates.get(userInfo.id);
783            if (pinState != null) {
784                if (pinState.salt != 0) {
785                    serializer.attribute(null, ATTR_SALT, Long.toString(pinState.salt));
786                }
787                if (pinState.pinHash != null) {
788                    serializer.attribute(null, ATTR_PIN_HASH, pinState.pinHash);
789                }
790                if (pinState.failedAttempts != 0) {
791                    serializer.attribute(null, ATTR_FAILED_ATTEMPTS,
792                            Integer.toString(pinState.failedAttempts));
793                    serializer.attribute(null, ATTR_LAST_RETRY_MS,
794                            Long.toString(pinState.lastAttemptTime));
795                }
796            }
797            if (userInfo.iconPath != null) {
798                serializer.attribute(null,  ATTR_ICON_PATH, userInfo.iconPath);
799            }
800            if (userInfo.partial) {
801                serializer.attribute(null, ATTR_PARTIAL, "true");
802            }
803            if (userInfo.guestToRemove) {
804                serializer.attribute(null, ATTR_GUEST_TO_REMOVE, "true");
805            }
806            if (userInfo.profileGroupId != UserInfo.NO_PROFILE_GROUP_ID) {
807                serializer.attribute(null, ATTR_PROFILE_GROUP_ID,
808                        Integer.toString(userInfo.profileGroupId));
809            }
810
811            serializer.startTag(null, TAG_NAME);
812            serializer.text(userInfo.name);
813            serializer.endTag(null, TAG_NAME);
814            Bundle restrictions = mUserRestrictions.get(userInfo.id);
815            if (restrictions != null) {
816                writeRestrictionsLocked(serializer, restrictions);
817            }
818            serializer.endTag(null, TAG_USER);
819
820            serializer.endDocument();
821            userFile.finishWrite(fos);
822        } catch (Exception ioe) {
823            Slog.e(LOG_TAG, "Error writing user info " + userInfo.id + "\n" + ioe);
824            userFile.failWrite(fos);
825        }
826    }
827
828    /*
829     * Writes the user list file in this format:
830     *
831     * <users nextSerialNumber="3">
832     *   <user id="0"></user>
833     *   <user id="2"></user>
834     * </users>
835     */
836    private void writeUserListLocked() {
837        FileOutputStream fos = null;
838        AtomicFile userListFile = new AtomicFile(mUserListFile);
839        try {
840            fos = userListFile.startWrite();
841            final BufferedOutputStream bos = new BufferedOutputStream(fos);
842
843            // XmlSerializer serializer = XmlUtils.serializerInstance();
844            final XmlSerializer serializer = new FastXmlSerializer();
845            serializer.setOutput(bos, "utf-8");
846            serializer.startDocument(null, true);
847            serializer.setFeature("http://xmlpull.org/v1/doc/features.html#indent-output", true);
848
849            serializer.startTag(null, TAG_USERS);
850            serializer.attribute(null, ATTR_NEXT_SERIAL_NO, Integer.toString(mNextSerialNumber));
851            serializer.attribute(null, ATTR_USER_VERSION, Integer.toString(mUserVersion));
852
853            serializer.startTag(null, TAG_GUEST_RESTRICTIONS);
854            writeRestrictionsLocked(serializer, mGuestRestrictions);
855            serializer.endTag(null, TAG_GUEST_RESTRICTIONS);
856            for (int i = 0; i < mUsers.size(); i++) {
857                UserInfo user = mUsers.valueAt(i);
858                serializer.startTag(null, TAG_USER);
859                serializer.attribute(null, ATTR_ID, Integer.toString(user.id));
860                serializer.endTag(null, TAG_USER);
861            }
862
863            serializer.endTag(null, TAG_USERS);
864
865            serializer.endDocument();
866            userListFile.finishWrite(fos);
867        } catch (Exception e) {
868            userListFile.failWrite(fos);
869            Slog.e(LOG_TAG, "Error writing user list");
870        }
871    }
872
873    private void writeRestrictionsLocked(XmlSerializer serializer, Bundle restrictions)
874            throws IOException {
875        serializer.startTag(null, TAG_RESTRICTIONS);
876        writeBoolean(serializer, restrictions, UserManager.DISALLOW_CONFIG_WIFI);
877        writeBoolean(serializer, restrictions, UserManager.DISALLOW_MODIFY_ACCOUNTS);
878        writeBoolean(serializer, restrictions, UserManager.DISALLOW_INSTALL_APPS);
879        writeBoolean(serializer, restrictions, UserManager.DISALLOW_UNINSTALL_APPS);
880        writeBoolean(serializer, restrictions, UserManager.DISALLOW_SHARE_LOCATION);
881        writeBoolean(serializer, restrictions,
882                UserManager.DISALLOW_INSTALL_UNKNOWN_SOURCES);
883        writeBoolean(serializer, restrictions, UserManager.DISALLOW_CONFIG_BLUETOOTH);
884        writeBoolean(serializer, restrictions, UserManager.DISALLOW_USB_FILE_TRANSFER);
885        writeBoolean(serializer, restrictions, UserManager.DISALLOW_CONFIG_CREDENTIALS);
886        writeBoolean(serializer, restrictions, UserManager.DISALLOW_REMOVE_USER);
887        writeBoolean(serializer, restrictions, UserManager.DISALLOW_DEBUGGING_FEATURES);
888        writeBoolean(serializer, restrictions, UserManager.DISALLOW_CONFIG_VPN);
889        writeBoolean(serializer, restrictions, UserManager.DISALLOW_CONFIG_TETHERING);
890        writeBoolean(serializer, restrictions, UserManager.DISALLOW_FACTORY_RESET);
891        writeBoolean(serializer, restrictions, UserManager.DISALLOW_ADD_USER);
892        writeBoolean(serializer, restrictions, UserManager.ENSURE_VERIFY_APPS);
893        writeBoolean(serializer, restrictions, UserManager.DISALLOW_CONFIG_CELL_BROADCASTS);
894        writeBoolean(serializer, restrictions, UserManager.DISALLOW_CONFIG_MOBILE_NETWORKS);
895        writeBoolean(serializer, restrictions, UserManager.DISALLOW_APPS_CONTROL);
896        writeBoolean(serializer, restrictions, UserManager.DISALLOW_MOUNT_PHYSICAL_MEDIA);
897        writeBoolean(serializer, restrictions, UserManager.DISALLOW_UNMUTE_MICROPHONE);
898        writeBoolean(serializer, restrictions, UserManager.DISALLOW_ADJUST_VOLUME);
899        writeBoolean(serializer, restrictions, UserManager.DISALLOW_OUTGOING_CALLS);
900        writeBoolean(serializer, restrictions, UserManager.DISALLOW_SMS);
901        writeBoolean(serializer, restrictions, UserManager.DISALLOW_CREATE_WINDOWS);
902        writeBoolean(serializer, restrictions, UserManager.DISALLOW_CROSS_PROFILE_COPY_PASTE);
903        writeBoolean(serializer, restrictions, UserManager.DISALLOW_OUTGOING_BEAM);
904        serializer.endTag(null, TAG_RESTRICTIONS);
905    }
906
907    private UserInfo readUserLocked(int id) {
908        int flags = 0;
909        int serialNumber = id;
910        String name = null;
911        String iconPath = null;
912        long creationTime = 0L;
913        long lastLoggedInTime = 0L;
914        long salt = 0L;
915        String pinHash = null;
916        int failedAttempts = 0;
917        int profileGroupId = UserInfo.NO_PROFILE_GROUP_ID;
918        long lastAttemptTime = 0L;
919        boolean partial = false;
920        boolean guestToRemove = false;
921        Bundle restrictions = new Bundle();
922
923        FileInputStream fis = null;
924        try {
925            AtomicFile userFile =
926                    new AtomicFile(new File(mUsersDir, Integer.toString(id) + XML_SUFFIX));
927            fis = userFile.openRead();
928            XmlPullParser parser = Xml.newPullParser();
929            parser.setInput(fis, null);
930            int type;
931            while ((type = parser.next()) != XmlPullParser.START_TAG
932                    && type != XmlPullParser.END_DOCUMENT) {
933                ;
934            }
935
936            if (type != XmlPullParser.START_TAG) {
937                Slog.e(LOG_TAG, "Unable to read user " + id);
938                return null;
939            }
940
941            if (type == XmlPullParser.START_TAG && parser.getName().equals(TAG_USER)) {
942                int storedId = readIntAttribute(parser, ATTR_ID, -1);
943                if (storedId != id) {
944                    Slog.e(LOG_TAG, "User id does not match the file name");
945                    return null;
946                }
947                serialNumber = readIntAttribute(parser, ATTR_SERIAL_NO, id);
948                flags = readIntAttribute(parser, ATTR_FLAGS, 0);
949                iconPath = parser.getAttributeValue(null, ATTR_ICON_PATH);
950                creationTime = readLongAttribute(parser, ATTR_CREATION_TIME, 0);
951                lastLoggedInTime = readLongAttribute(parser, ATTR_LAST_LOGGED_IN_TIME, 0);
952                salt = readLongAttribute(parser, ATTR_SALT, 0L);
953                pinHash = parser.getAttributeValue(null, ATTR_PIN_HASH);
954                failedAttempts = readIntAttribute(parser, ATTR_FAILED_ATTEMPTS, 0);
955                lastAttemptTime = readLongAttribute(parser, ATTR_LAST_RETRY_MS, 0L);
956                profileGroupId = readIntAttribute(parser, ATTR_PROFILE_GROUP_ID,
957                        UserInfo.NO_PROFILE_GROUP_ID);
958                if (profileGroupId == UserInfo.NO_PROFILE_GROUP_ID) {
959                    // This attribute was added and renamed during development of L.
960                    // TODO Remove upgrade path by 1st May 2014
961                    profileGroupId = readIntAttribute(parser, "relatedGroupId",
962                            UserInfo.NO_PROFILE_GROUP_ID);
963                }
964                String valueString = parser.getAttributeValue(null, ATTR_PARTIAL);
965                if ("true".equals(valueString)) {
966                    partial = true;
967                }
968                valueString = parser.getAttributeValue(null, ATTR_GUEST_TO_REMOVE);
969                if ("true".equals(valueString)) {
970                    guestToRemove = true;
971                }
972
973                int outerDepth = parser.getDepth();
974                while ((type = parser.next()) != XmlPullParser.END_DOCUMENT
975                       && (type != XmlPullParser.END_TAG || parser.getDepth() > outerDepth)) {
976                    if (type == XmlPullParser.END_TAG || type == XmlPullParser.TEXT) {
977                        continue;
978                    }
979                    String tag = parser.getName();
980                    if (TAG_NAME.equals(tag)) {
981                        type = parser.next();
982                        if (type == XmlPullParser.TEXT) {
983                            name = parser.getText();
984                        }
985                    } else if (TAG_RESTRICTIONS.equals(tag)) {
986                        readRestrictionsLocked(parser, restrictions);
987                    }
988                }
989            }
990
991            UserInfo userInfo = new UserInfo(id, name, iconPath, flags);
992            userInfo.serialNumber = serialNumber;
993            userInfo.creationTime = creationTime;
994            userInfo.lastLoggedInTime = lastLoggedInTime;
995            userInfo.partial = partial;
996            userInfo.guestToRemove = guestToRemove;
997            userInfo.profileGroupId = profileGroupId;
998            mUserRestrictions.append(id, restrictions);
999            if (salt != 0L) {
1000                RestrictionsPinState pinState = mRestrictionsPinStates.get(id);
1001                if (pinState == null) {
1002                    pinState = new RestrictionsPinState();
1003                    mRestrictionsPinStates.put(id, pinState);
1004                }
1005                pinState.salt = salt;
1006                pinState.pinHash = pinHash;
1007                pinState.failedAttempts = failedAttempts;
1008                pinState.lastAttemptTime = lastAttemptTime;
1009            }
1010            return userInfo;
1011
1012        } catch (IOException ioe) {
1013        } catch (XmlPullParserException pe) {
1014        } finally {
1015            if (fis != null) {
1016                try {
1017                    fis.close();
1018                } catch (IOException e) {
1019                }
1020            }
1021        }
1022        return null;
1023    }
1024
1025    private void readRestrictionsLocked(XmlPullParser parser, Bundle restrictions)
1026            throws IOException {
1027        readBoolean(parser, restrictions, UserManager.DISALLOW_CONFIG_WIFI);
1028        readBoolean(parser, restrictions, UserManager.DISALLOW_MODIFY_ACCOUNTS);
1029        readBoolean(parser, restrictions, UserManager.DISALLOW_INSTALL_APPS);
1030        readBoolean(parser, restrictions, UserManager.DISALLOW_UNINSTALL_APPS);
1031        readBoolean(parser, restrictions, UserManager.DISALLOW_SHARE_LOCATION);
1032        readBoolean(parser, restrictions,
1033                UserManager.DISALLOW_INSTALL_UNKNOWN_SOURCES);
1034        readBoolean(parser, restrictions, UserManager.DISALLOW_CONFIG_BLUETOOTH);
1035        readBoolean(parser, restrictions, UserManager.DISALLOW_USB_FILE_TRANSFER);
1036        readBoolean(parser, restrictions, UserManager.DISALLOW_CONFIG_CREDENTIALS);
1037        readBoolean(parser, restrictions, UserManager.DISALLOW_REMOVE_USER);
1038        readBoolean(parser, restrictions, UserManager.DISALLOW_DEBUGGING_FEATURES);
1039        readBoolean(parser, restrictions, UserManager.DISALLOW_CONFIG_VPN);
1040        readBoolean(parser, restrictions, UserManager.DISALLOW_CONFIG_TETHERING);
1041        readBoolean(parser, restrictions, UserManager.DISALLOW_FACTORY_RESET);
1042        readBoolean(parser, restrictions, UserManager.DISALLOW_ADD_USER);
1043        readBoolean(parser, restrictions, UserManager.ENSURE_VERIFY_APPS);
1044        readBoolean(parser, restrictions, UserManager.DISALLOW_CONFIG_CELL_BROADCASTS);
1045        readBoolean(parser, restrictions, UserManager.DISALLOW_CONFIG_MOBILE_NETWORKS);
1046        readBoolean(parser, restrictions, UserManager.DISALLOW_APPS_CONTROL);
1047        readBoolean(parser, restrictions,
1048                UserManager.DISALLOW_MOUNT_PHYSICAL_MEDIA);
1049        readBoolean(parser, restrictions, UserManager.DISALLOW_UNMUTE_MICROPHONE);
1050        readBoolean(parser, restrictions, UserManager.DISALLOW_ADJUST_VOLUME);
1051        readBoolean(parser, restrictions, UserManager.DISALLOW_OUTGOING_CALLS);
1052        readBoolean(parser, restrictions, UserManager.DISALLOW_SMS);
1053        readBoolean(parser, restrictions, UserManager.DISALLOW_CREATE_WINDOWS);
1054        readBoolean(parser, restrictions, UserManager.DISALLOW_CROSS_PROFILE_COPY_PASTE);
1055        readBoolean(parser, restrictions, UserManager.DISALLOW_OUTGOING_BEAM);
1056    }
1057
1058    private void readBoolean(XmlPullParser parser, Bundle restrictions,
1059            String restrictionKey) {
1060        String value = parser.getAttributeValue(null, restrictionKey);
1061        if (value != null) {
1062            restrictions.putBoolean(restrictionKey, Boolean.parseBoolean(value));
1063        }
1064    }
1065
1066    private void writeBoolean(XmlSerializer xml, Bundle restrictions, String restrictionKey)
1067            throws IOException {
1068        if (restrictions.containsKey(restrictionKey)) {
1069            xml.attribute(null, restrictionKey,
1070                    Boolean.toString(restrictions.getBoolean(restrictionKey)));
1071        }
1072    }
1073
1074    private int readIntAttribute(XmlPullParser parser, String attr, int defaultValue) {
1075        String valueString = parser.getAttributeValue(null, attr);
1076        if (valueString == null) return defaultValue;
1077        try {
1078            return Integer.parseInt(valueString);
1079        } catch (NumberFormatException nfe) {
1080            return defaultValue;
1081        }
1082    }
1083
1084    private long readLongAttribute(XmlPullParser parser, String attr, long defaultValue) {
1085        String valueString = parser.getAttributeValue(null, attr);
1086        if (valueString == null) return defaultValue;
1087        try {
1088            return Long.parseLong(valueString);
1089        } catch (NumberFormatException nfe) {
1090            return defaultValue;
1091        }
1092    }
1093
1094    private boolean isPackageInstalled(String pkg, int userId) {
1095        final ApplicationInfo info = mPm.getApplicationInfo(pkg,
1096                PackageManager.GET_UNINSTALLED_PACKAGES,
1097                userId);
1098        if (info == null || (info.flags&ApplicationInfo.FLAG_INSTALLED) == 0) {
1099            return false;
1100        }
1101        return true;
1102    }
1103
1104    /**
1105     * Removes all the restrictions files (res_<packagename>) for a given user.
1106     * Does not do any permissions checking.
1107     */
1108    private void cleanAppRestrictions(int userId) {
1109        synchronized (mPackagesLock) {
1110            File dir = Environment.getUserSystemDirectory(userId);
1111            String[] files = dir.list();
1112            if (files == null) return;
1113            for (String fileName : files) {
1114                if (fileName.startsWith(RESTRICTIONS_FILE_PREFIX)) {
1115                    File resFile = new File(dir, fileName);
1116                    if (resFile.exists()) {
1117                        resFile.delete();
1118                    }
1119                }
1120            }
1121        }
1122    }
1123
1124    /**
1125     * Removes the app restrictions file for a specific package and user id, if it exists.
1126     */
1127    private void cleanAppRestrictionsForPackage(String pkg, int userId) {
1128        synchronized (mPackagesLock) {
1129            File dir = Environment.getUserSystemDirectory(userId);
1130            File resFile = new File(dir, packageToRestrictionsFileName(pkg));
1131            if (resFile.exists()) {
1132                resFile.delete();
1133            }
1134        }
1135    }
1136
1137    @Override
1138    public UserInfo createProfileForUser(String name, int flags, int userId) {
1139        checkManageUsersPermission("Only the system can create users");
1140        if (userId != UserHandle.USER_OWNER) {
1141            Slog.w(LOG_TAG, "Only user owner can have profiles");
1142            return null;
1143        }
1144        return createUserInternal(name, flags, userId);
1145    }
1146
1147    @Override
1148    public UserInfo createUser(String name, int flags) {
1149        checkManageUsersPermission("Only the system can create users");
1150        return createUserInternal(name, flags, UserHandle.USER_NULL);
1151    }
1152
1153    private UserInfo createUserInternal(String name, int flags, int parentId) {
1154        if (getUserRestrictions(UserHandle.getCallingUserId()).getBoolean(
1155                UserManager.DISALLOW_ADD_USER, false)) {
1156            Log.w(LOG_TAG, "Cannot add user. DISALLOW_ADD_USER is enabled.");
1157            return null;
1158        }
1159        final boolean isGuest = (flags & UserInfo.FLAG_GUEST) != 0;
1160        final long ident = Binder.clearCallingIdentity();
1161        UserInfo userInfo = null;
1162        try {
1163            synchronized (mInstallLock) {
1164                synchronized (mPackagesLock) {
1165                    UserInfo parent = null;
1166                    if (parentId != UserHandle.USER_NULL) {
1167                        parent = getUserInfoLocked(parentId);
1168                        if (parent == null) return null;
1169                    }
1170                    // If we're not adding a guest user and the limit has been reached,
1171                    // cannot add a user.
1172                    if (!isGuest && isUserLimitReachedLocked()) {
1173                        return null;
1174                    }
1175                    // If we're adding a guest and there already exists one, bail.
1176                    if (isGuest && findCurrentGuestUserLocked() != null) {
1177                        return null;
1178                    }
1179                    // Limit number of managed profiles that can be created
1180                    if ((flags & UserInfo.FLAG_MANAGED_PROFILE) != 0
1181                            && numberOfUsersOfTypeLocked(UserInfo.FLAG_MANAGED_PROFILE, true)
1182                                >= MAX_MANAGED_PROFILES) {
1183                        return null;
1184                    }
1185                    int userId = getNextAvailableIdLocked();
1186                    userInfo = new UserInfo(userId, name, null, flags);
1187                    File userPath = new File(mBaseUserPath, Integer.toString(userId));
1188                    userInfo.serialNumber = mNextSerialNumber++;
1189                    long now = System.currentTimeMillis();
1190                    userInfo.creationTime = (now > EPOCH_PLUS_30_YEARS) ? now : 0;
1191                    userInfo.partial = true;
1192                    Environment.getUserSystemDirectory(userInfo.id).mkdirs();
1193                    mUsers.put(userId, userInfo);
1194                    writeUserListLocked();
1195                    if (parent != null) {
1196                        if (parent.profileGroupId == UserInfo.NO_PROFILE_GROUP_ID) {
1197                            parent.profileGroupId = parent.id;
1198                            scheduleWriteUserLocked(parent);
1199                        }
1200                        userInfo.profileGroupId = parent.profileGroupId;
1201                    }
1202                    mPm.createNewUserLILPw(userId, userPath);
1203                    userInfo.partial = false;
1204                    scheduleWriteUserLocked(userInfo);
1205                    updateUserIdsLocked();
1206                    Bundle restrictions = new Bundle();
1207                    mUserRestrictions.append(userId, restrictions);
1208                }
1209            }
1210            if (userInfo != null) {
1211                Intent addedIntent = new Intent(Intent.ACTION_USER_ADDED);
1212                addedIntent.putExtra(Intent.EXTRA_USER_HANDLE, userInfo.id);
1213                mContext.sendBroadcastAsUser(addedIntent, UserHandle.ALL,
1214                        android.Manifest.permission.MANAGE_USERS);
1215            }
1216        } finally {
1217            Binder.restoreCallingIdentity(ident);
1218        }
1219        return userInfo;
1220    }
1221
1222    private int numberOfUsersOfTypeLocked(int flags, boolean excludeDying) {
1223        int count = 0;
1224        for (int i = mUsers.size() - 1; i >= 0; i--) {
1225            UserInfo user = mUsers.valueAt(i);
1226            if (!excludeDying || !mRemovingUserIds.get(user.id)) {
1227                if ((user.flags & flags) != 0) {
1228                    count++;
1229                }
1230            }
1231        }
1232        return count;
1233    }
1234
1235    /**
1236     * Find the current guest user. If the Guest user is partial,
1237     * then do not include it in the results as it is about to die.
1238     * This is different than {@link #numberOfUsersOfTypeLocked(int, boolean)} due to
1239     * the special handling of Guests being removed.
1240     */
1241    private UserInfo findCurrentGuestUserLocked() {
1242        final int size = mUsers.size();
1243        for (int i = 0; i < size; i++) {
1244            final UserInfo user = mUsers.valueAt(i);
1245            if (user.isGuest() && !user.guestToRemove && !mRemovingUserIds.get(user.id)) {
1246                return user;
1247            }
1248        }
1249        return null;
1250    }
1251
1252    /**
1253     * Mark this guest user for deletion to allow us to create another guest
1254     * and switch to that user before actually removing this guest.
1255     * @param userHandle the userid of the current guest
1256     * @return whether the user could be marked for deletion
1257     */
1258    public boolean markGuestForDeletion(int userHandle) {
1259        checkManageUsersPermission("Only the system can remove users");
1260        if (getUserRestrictions(UserHandle.getCallingUserId()).getBoolean(
1261                UserManager.DISALLOW_REMOVE_USER, false)) {
1262            Log.w(LOG_TAG, "Cannot remove user. DISALLOW_REMOVE_USER is enabled.");
1263            return false;
1264        }
1265
1266        long ident = Binder.clearCallingIdentity();
1267        try {
1268            final UserInfo user;
1269            synchronized (mPackagesLock) {
1270                user = mUsers.get(userHandle);
1271                if (userHandle == 0 || user == null || mRemovingUserIds.get(userHandle)) {
1272                    return false;
1273                }
1274                if (!user.isGuest()) {
1275                    return false;
1276                }
1277                // We set this to a guest user that is to be removed. This is a temporary state
1278                // where we are allowed to add new Guest users, even if this one is still not
1279                // removed. This user will still show up in getUserInfo() calls.
1280                // If we don't get around to removing this Guest user, it will be purged on next
1281                // startup.
1282                user.guestToRemove = true;
1283                // Mark it as disabled, so that it isn't returned any more when
1284                // profiles are queried.
1285                user.flags |= UserInfo.FLAG_DISABLED;
1286                writeUserLocked(user);
1287            }
1288        } finally {
1289            Binder.restoreCallingIdentity(ident);
1290        }
1291        return true;
1292    }
1293
1294    /**
1295     * Removes a user and all data directories created for that user. This method should be called
1296     * after the user's processes have been terminated.
1297     * @param userHandle the user's id
1298     */
1299    public boolean removeUser(int userHandle) {
1300        checkManageUsersPermission("Only the system can remove users");
1301        if (getUserRestrictions(UserHandle.getCallingUserId()).getBoolean(
1302                UserManager.DISALLOW_REMOVE_USER, false)) {
1303            Log.w(LOG_TAG, "Cannot remove user. DISALLOW_REMOVE_USER is enabled.");
1304            return false;
1305        }
1306
1307        long ident = Binder.clearCallingIdentity();
1308        try {
1309            final UserInfo user;
1310            synchronized (mPackagesLock) {
1311                user = mUsers.get(userHandle);
1312                if (userHandle == 0 || user == null || mRemovingUserIds.get(userHandle)) {
1313                    return false;
1314                }
1315
1316                // We remember deleted user IDs to prevent them from being
1317                // reused during the current boot; they can still be reused
1318                // after a reboot.
1319                mRemovingUserIds.put(userHandle, true);
1320
1321                try {
1322                    mAppOpsService.removeUser(userHandle);
1323                } catch (RemoteException e) {
1324                    Log.w(LOG_TAG, "Unable to notify AppOpsService of removing user", e);
1325                }
1326                // Set this to a partially created user, so that the user will be purged
1327                // on next startup, in case the runtime stops now before stopping and
1328                // removing the user completely.
1329                user.partial = true;
1330                // Mark it as disabled, so that it isn't returned any more when
1331                // profiles are queried.
1332                user.flags |= UserInfo.FLAG_DISABLED;
1333                writeUserLocked(user);
1334            }
1335
1336            if (user.profileGroupId != UserInfo.NO_PROFILE_GROUP_ID
1337                    && user.isManagedProfile()) {
1338                // Send broadcast to notify system that the user removed was a
1339                // managed user.
1340                sendProfileRemovedBroadcast(user.profileGroupId, user.id);
1341            }
1342
1343            if (DBG) Slog.i(LOG_TAG, "Stopping user " + userHandle);
1344            int res;
1345            try {
1346                res = ActivityManagerNative.getDefault().stopUser(userHandle,
1347                        new IStopUserCallback.Stub() {
1348                            @Override
1349                            public void userStopped(int userId) {
1350                                finishRemoveUser(userId);
1351                            }
1352                            @Override
1353                            public void userStopAborted(int userId) {
1354                            }
1355                        });
1356            } catch (RemoteException e) {
1357                return false;
1358            }
1359            return res == ActivityManager.USER_OP_SUCCESS;
1360        } finally {
1361            Binder.restoreCallingIdentity(ident);
1362        }
1363    }
1364
1365    void finishRemoveUser(final int userHandle) {
1366        if (DBG) Slog.i(LOG_TAG, "finishRemoveUser " + userHandle);
1367        // Let other services shutdown any activity and clean up their state before completely
1368        // wiping the user's system directory and removing from the user list
1369        long ident = Binder.clearCallingIdentity();
1370        try {
1371            Intent addedIntent = new Intent(Intent.ACTION_USER_REMOVED);
1372            addedIntent.putExtra(Intent.EXTRA_USER_HANDLE, userHandle);
1373            mContext.sendOrderedBroadcastAsUser(addedIntent, UserHandle.ALL,
1374                    android.Manifest.permission.MANAGE_USERS,
1375
1376                    new BroadcastReceiver() {
1377                        @Override
1378                        public void onReceive(Context context, Intent intent) {
1379                            if (DBG) {
1380                                Slog.i(LOG_TAG,
1381                                        "USER_REMOVED broadcast sent, cleaning up user data "
1382                                        + userHandle);
1383                            }
1384                            new Thread() {
1385                                public void run() {
1386                                    synchronized (mInstallLock) {
1387                                        synchronized (mPackagesLock) {
1388                                            removeUserStateLocked(userHandle);
1389                                        }
1390                                    }
1391                                }
1392                            }.start();
1393                        }
1394                    },
1395
1396                    null, Activity.RESULT_OK, null, null);
1397        } finally {
1398            Binder.restoreCallingIdentity(ident);
1399        }
1400    }
1401
1402    private void removeUserStateLocked(final int userHandle) {
1403        // Cleanup package manager settings
1404        mPm.cleanUpUserLILPw(this, userHandle);
1405
1406        // Remove this user from the list
1407        mUsers.remove(userHandle);
1408
1409        mRestrictionsPinStates.remove(userHandle);
1410        // Remove user file
1411        AtomicFile userFile = new AtomicFile(new File(mUsersDir, userHandle + XML_SUFFIX));
1412        userFile.delete();
1413        // Update the user list
1414        writeUserListLocked();
1415        updateUserIdsLocked();
1416        removeDirectoryRecursive(Environment.getUserSystemDirectory(userHandle));
1417    }
1418
1419    private void removeDirectoryRecursive(File parent) {
1420        if (parent.isDirectory()) {
1421            String[] files = parent.list();
1422            for (String filename : files) {
1423                File child = new File(parent, filename);
1424                removeDirectoryRecursive(child);
1425            }
1426        }
1427        parent.delete();
1428    }
1429
1430    private void sendProfileRemovedBroadcast(int parentUserId, int removedUserId) {
1431        Intent managedProfileIntent = new Intent(Intent.ACTION_MANAGED_PROFILE_REMOVED);
1432        managedProfileIntent.addFlags(Intent.FLAG_RECEIVER_REGISTERED_ONLY |
1433                Intent.FLAG_RECEIVER_FOREGROUND);
1434        managedProfileIntent.putExtra(Intent.EXTRA_USER, new UserHandle(removedUserId));
1435        mContext.sendBroadcastAsUser(managedProfileIntent, new UserHandle(parentUserId), null);
1436    }
1437
1438    @Override
1439    public Bundle getApplicationRestrictions(String packageName) {
1440        return getApplicationRestrictionsForUser(packageName, UserHandle.getCallingUserId());
1441    }
1442
1443    @Override
1444    public Bundle getApplicationRestrictionsForUser(String packageName, int userId) {
1445        if (UserHandle.getCallingUserId() != userId
1446                || !UserHandle.isSameApp(Binder.getCallingUid(), getUidForPackage(packageName))) {
1447            checkManageUsersPermission("Only system can get restrictions for other users/apps");
1448        }
1449        synchronized (mPackagesLock) {
1450            // Read the restrictions from XML
1451            return readApplicationRestrictionsLocked(packageName, userId);
1452        }
1453    }
1454
1455    @Override
1456    public void setApplicationRestrictions(String packageName, Bundle restrictions,
1457            int userId) {
1458        if (UserHandle.getCallingUserId() != userId
1459                || !UserHandle.isSameApp(Binder.getCallingUid(), getUidForPackage(packageName))) {
1460            checkManageUsersPermission("Only system can set restrictions for other users/apps");
1461        }
1462        synchronized (mPackagesLock) {
1463            if (restrictions == null || restrictions.isEmpty()) {
1464                cleanAppRestrictionsForPackage(packageName, userId);
1465            } else {
1466                // Write the restrictions to XML
1467                writeApplicationRestrictionsLocked(packageName, restrictions, userId);
1468            }
1469        }
1470
1471        if (isPackageInstalled(packageName, userId)) {
1472            // Notify package of changes via an intent - only sent to explicitly registered receivers.
1473            Intent changeIntent = new Intent(Intent.ACTION_APPLICATION_RESTRICTIONS_CHANGED);
1474            changeIntent.setPackage(packageName);
1475            changeIntent.addFlags(Intent.FLAG_RECEIVER_REGISTERED_ONLY);
1476            mContext.sendBroadcastAsUser(changeIntent, new UserHandle(userId));
1477        }
1478    }
1479
1480    @Override
1481    public boolean setRestrictionsChallenge(String newPin) {
1482        checkManageUsersPermission("Only system can modify the restrictions pin");
1483        int userId = UserHandle.getCallingUserId();
1484        synchronized (mPackagesLock) {
1485            RestrictionsPinState pinState = mRestrictionsPinStates.get(userId);
1486            if (pinState == null) {
1487                pinState = new RestrictionsPinState();
1488            }
1489            if (newPin == null) {
1490                pinState.salt = 0;
1491                pinState.pinHash = null;
1492            } else {
1493                try {
1494                    pinState.salt = SecureRandom.getInstance("SHA1PRNG").nextLong();
1495                } catch (NoSuchAlgorithmException e) {
1496                    pinState.salt = (long) (Math.random() * Long.MAX_VALUE);
1497                }
1498                pinState.pinHash = passwordToHash(newPin, pinState.salt);
1499                pinState.failedAttempts = 0;
1500            }
1501            mRestrictionsPinStates.put(userId, pinState);
1502            writeUserLocked(mUsers.get(userId));
1503        }
1504        return true;
1505    }
1506
1507    @Override
1508    public int checkRestrictionsChallenge(String pin) {
1509        checkManageUsersPermission("Only system can verify the restrictions pin");
1510        int userId = UserHandle.getCallingUserId();
1511        synchronized (mPackagesLock) {
1512            RestrictionsPinState pinState = mRestrictionsPinStates.get(userId);
1513            // If there's no pin set, return error code
1514            if (pinState == null || pinState.salt == 0 || pinState.pinHash == null) {
1515                return UserManager.PIN_VERIFICATION_FAILED_NOT_SET;
1516            } else if (pin == null) {
1517                // If just checking if user can be prompted, return remaining time
1518                int waitTime = getRemainingTimeForPinAttempt(pinState);
1519                Slog.d(LOG_TAG, "Remaining waittime peek=" + waitTime);
1520                return waitTime;
1521            } else {
1522                int waitTime = getRemainingTimeForPinAttempt(pinState);
1523                Slog.d(LOG_TAG, "Remaining waittime=" + waitTime);
1524                if (waitTime > 0) {
1525                    return waitTime;
1526                }
1527                if (passwordToHash(pin, pinState.salt).equals(pinState.pinHash)) {
1528                    pinState.failedAttempts = 0;
1529                    scheduleWriteUserLocked(mUsers.get(userId));
1530                    return UserManager.PIN_VERIFICATION_SUCCESS;
1531                } else {
1532                    pinState.failedAttempts++;
1533                    pinState.lastAttemptTime = System.currentTimeMillis();
1534                    scheduleWriteUserLocked(mUsers.get(userId));
1535                    return waitTime;
1536                }
1537            }
1538        }
1539    }
1540
1541    private int getRemainingTimeForPinAttempt(RestrictionsPinState pinState) {
1542        int backoffIndex = Math.min(pinState.failedAttempts / BACKOFF_INC_INTERVAL,
1543                BACKOFF_TIMES.length - 1);
1544        int backoffTime = (pinState.failedAttempts % BACKOFF_INC_INTERVAL) == 0 ?
1545                BACKOFF_TIMES[backoffIndex] : 0;
1546        return (int) Math.max(backoffTime + pinState.lastAttemptTime - System.currentTimeMillis(),
1547                0);
1548    }
1549
1550    @Override
1551    public boolean hasRestrictionsChallenge() {
1552        int userId = UserHandle.getCallingUserId();
1553        synchronized (mPackagesLock) {
1554            return hasRestrictionsPinLocked(userId);
1555        }
1556    }
1557
1558    private boolean hasRestrictionsPinLocked(int userId) {
1559        RestrictionsPinState pinState = mRestrictionsPinStates.get(userId);
1560        if (pinState == null || pinState.salt == 0 || pinState.pinHash == null) {
1561            return false;
1562        }
1563        return true;
1564    }
1565
1566    @Override
1567    public void removeRestrictions() {
1568        checkManageUsersPermission("Only system can remove restrictions");
1569        final int userHandle = UserHandle.getCallingUserId();
1570        removeRestrictionsForUser(userHandle, true);
1571    }
1572
1573    private void removeRestrictionsForUser(final int userHandle, boolean unhideApps) {
1574        synchronized (mPackagesLock) {
1575            // Remove all user restrictions
1576            setUserRestrictions(new Bundle(), userHandle);
1577            // Remove restrictions pin
1578            setRestrictionsChallenge(null);
1579            // Remove any app restrictions
1580            cleanAppRestrictions(userHandle);
1581        }
1582        if (unhideApps) {
1583            unhideAllInstalledAppsForUser(userHandle);
1584        }
1585    }
1586
1587    private void unhideAllInstalledAppsForUser(final int userHandle) {
1588        mHandler.post(new Runnable() {
1589            @Override
1590            public void run() {
1591                List<ApplicationInfo> apps =
1592                        mPm.getInstalledApplications(PackageManager.GET_UNINSTALLED_PACKAGES,
1593                                userHandle).getList();
1594                final long ident = Binder.clearCallingIdentity();
1595                try {
1596                    for (ApplicationInfo appInfo : apps) {
1597                        if ((appInfo.flags & ApplicationInfo.FLAG_INSTALLED) != 0
1598                                && (appInfo.flags & ApplicationInfo.FLAG_HIDDEN) != 0) {
1599                            mPm.setApplicationHiddenSettingAsUser(appInfo.packageName, false,
1600                                    userHandle);
1601                        }
1602                    }
1603                } finally {
1604                    Binder.restoreCallingIdentity(ident);
1605                }
1606            }
1607        });
1608    }
1609
1610    /*
1611     * Generate a hash for the given password. To avoid brute force attacks, we use a salted hash.
1612     * Not the most secure, but it is at least a second level of protection. First level is that
1613     * the file is in a location only readable by the system process.
1614     * @param password the password.
1615     * @param salt the randomly generated salt
1616     * @return the hash of the pattern in a String.
1617     */
1618    private String passwordToHash(String password, long salt) {
1619        if (password == null) {
1620            return null;
1621        }
1622        String algo = null;
1623        String hashed = salt + password;
1624        try {
1625            byte[] saltedPassword = (password + salt).getBytes();
1626            byte[] sha1 = MessageDigest.getInstance(algo = "SHA-1").digest(saltedPassword);
1627            byte[] md5 = MessageDigest.getInstance(algo = "MD5").digest(saltedPassword);
1628            hashed = toHex(sha1) + toHex(md5);
1629        } catch (NoSuchAlgorithmException e) {
1630            Log.w(LOG_TAG, "Failed to encode string because of missing algorithm: " + algo);
1631        }
1632        return hashed;
1633    }
1634
1635    private static String toHex(byte[] ary) {
1636        final String hex = "0123456789ABCDEF";
1637        String ret = "";
1638        for (int i = 0; i < ary.length; i++) {
1639            ret += hex.charAt((ary[i] >> 4) & 0xf);
1640            ret += hex.charAt(ary[i] & 0xf);
1641        }
1642        return ret;
1643    }
1644
1645    private int getUidForPackage(String packageName) {
1646        long ident = Binder.clearCallingIdentity();
1647        try {
1648            return mContext.getPackageManager().getApplicationInfo(packageName,
1649                    PackageManager.GET_UNINSTALLED_PACKAGES).uid;
1650        } catch (NameNotFoundException nnfe) {
1651            return -1;
1652        } finally {
1653            Binder.restoreCallingIdentity(ident);
1654        }
1655    }
1656
1657    private Bundle readApplicationRestrictionsLocked(String packageName,
1658            int userId) {
1659        final Bundle restrictions = new Bundle();
1660        final ArrayList<String> values = new ArrayList<String>();
1661
1662        FileInputStream fis = null;
1663        try {
1664            AtomicFile restrictionsFile =
1665                    new AtomicFile(new File(Environment.getUserSystemDirectory(userId),
1666                            packageToRestrictionsFileName(packageName)));
1667            fis = restrictionsFile.openRead();
1668            XmlPullParser parser = Xml.newPullParser();
1669            parser.setInput(fis, null);
1670            int type;
1671            while ((type = parser.next()) != XmlPullParser.START_TAG
1672                    && type != XmlPullParser.END_DOCUMENT) {
1673                ;
1674            }
1675
1676            if (type != XmlPullParser.START_TAG) {
1677                Slog.e(LOG_TAG, "Unable to read restrictions file "
1678                        + restrictionsFile.getBaseFile());
1679                return restrictions;
1680            }
1681
1682            while ((type = parser.next()) != XmlPullParser.END_DOCUMENT) {
1683                if (type == XmlPullParser.START_TAG && parser.getName().equals(TAG_ENTRY)) {
1684                    String key = parser.getAttributeValue(null, ATTR_KEY);
1685                    String valType = parser.getAttributeValue(null, ATTR_VALUE_TYPE);
1686                    String multiple = parser.getAttributeValue(null, ATTR_MULTIPLE);
1687                    if (multiple != null) {
1688                        values.clear();
1689                        int count = Integer.parseInt(multiple);
1690                        while (count > 0 && (type = parser.next()) != XmlPullParser.END_DOCUMENT) {
1691                            if (type == XmlPullParser.START_TAG
1692                                    && parser.getName().equals(TAG_VALUE)) {
1693                                values.add(parser.nextText().trim());
1694                                count--;
1695                            }
1696                        }
1697                        String [] valueStrings = new String[values.size()];
1698                        values.toArray(valueStrings);
1699                        restrictions.putStringArray(key, valueStrings);
1700                    } else {
1701                        String value = parser.nextText().trim();
1702                        if (ATTR_TYPE_BOOLEAN.equals(valType)) {
1703                            restrictions.putBoolean(key, Boolean.parseBoolean(value));
1704                        } else if (ATTR_TYPE_INTEGER.equals(valType)) {
1705                            restrictions.putInt(key, Integer.parseInt(value));
1706                        } else {
1707                            restrictions.putString(key, value);
1708                        }
1709                    }
1710                }
1711            }
1712        } catch (IOException ioe) {
1713        } catch (XmlPullParserException pe) {
1714        } finally {
1715            if (fis != null) {
1716                try {
1717                    fis.close();
1718                } catch (IOException e) {
1719                }
1720            }
1721        }
1722        return restrictions;
1723    }
1724
1725    private void writeApplicationRestrictionsLocked(String packageName,
1726            Bundle restrictions, int userId) {
1727        FileOutputStream fos = null;
1728        AtomicFile restrictionsFile = new AtomicFile(
1729                new File(Environment.getUserSystemDirectory(userId),
1730                        packageToRestrictionsFileName(packageName)));
1731        try {
1732            fos = restrictionsFile.startWrite();
1733            final BufferedOutputStream bos = new BufferedOutputStream(fos);
1734
1735            // XmlSerializer serializer = XmlUtils.serializerInstance();
1736            final XmlSerializer serializer = new FastXmlSerializer();
1737            serializer.setOutput(bos, "utf-8");
1738            serializer.startDocument(null, true);
1739            serializer.setFeature("http://xmlpull.org/v1/doc/features.html#indent-output", true);
1740
1741            serializer.startTag(null, TAG_RESTRICTIONS);
1742
1743            for (String key : restrictions.keySet()) {
1744                Object value = restrictions.get(key);
1745                serializer.startTag(null, TAG_ENTRY);
1746                serializer.attribute(null, ATTR_KEY, key);
1747
1748                if (value instanceof Boolean) {
1749                    serializer.attribute(null, ATTR_VALUE_TYPE, ATTR_TYPE_BOOLEAN);
1750                    serializer.text(value.toString());
1751                } else if (value instanceof Integer) {
1752                    serializer.attribute(null, ATTR_VALUE_TYPE, ATTR_TYPE_INTEGER);
1753                    serializer.text(value.toString());
1754                } else if (value == null || value instanceof String) {
1755                    serializer.attribute(null, ATTR_VALUE_TYPE, ATTR_TYPE_STRING);
1756                    serializer.text(value != null ? (String) value : "");
1757                } else {
1758                    serializer.attribute(null, ATTR_VALUE_TYPE, ATTR_TYPE_STRING_ARRAY);
1759                    String[] values = (String[]) value;
1760                    serializer.attribute(null, ATTR_MULTIPLE, Integer.toString(values.length));
1761                    for (String choice : values) {
1762                        serializer.startTag(null, TAG_VALUE);
1763                        serializer.text(choice != null ? choice : "");
1764                        serializer.endTag(null, TAG_VALUE);
1765                    }
1766                }
1767                serializer.endTag(null, TAG_ENTRY);
1768            }
1769
1770            serializer.endTag(null, TAG_RESTRICTIONS);
1771
1772            serializer.endDocument();
1773            restrictionsFile.finishWrite(fos);
1774        } catch (Exception e) {
1775            restrictionsFile.failWrite(fos);
1776            Slog.e(LOG_TAG, "Error writing application restrictions list");
1777        }
1778    }
1779
1780    @Override
1781    public int getUserSerialNumber(int userHandle) {
1782        synchronized (mPackagesLock) {
1783            if (!exists(userHandle)) return -1;
1784            return getUserInfoLocked(userHandle).serialNumber;
1785        }
1786    }
1787
1788    @Override
1789    public int getUserHandle(int userSerialNumber) {
1790        synchronized (mPackagesLock) {
1791            for (int userId : mUserIds) {
1792                if (getUserInfoLocked(userId).serialNumber == userSerialNumber) return userId;
1793            }
1794            // Not found
1795            return -1;
1796        }
1797    }
1798
1799    /**
1800     * Caches the list of user ids in an array, adjusting the array size when necessary.
1801     */
1802    private void updateUserIdsLocked() {
1803        int num = 0;
1804        for (int i = 0; i < mUsers.size(); i++) {
1805            if (!mUsers.valueAt(i).partial) {
1806                num++;
1807            }
1808        }
1809        final int[] newUsers = new int[num];
1810        int n = 0;
1811        for (int i = 0; i < mUsers.size(); i++) {
1812            if (!mUsers.valueAt(i).partial) {
1813                newUsers[n++] = mUsers.keyAt(i);
1814            }
1815        }
1816        mUserIds = newUsers;
1817    }
1818
1819    /**
1820     * Make a note of the last started time of a user and do some cleanup.
1821     * @param userId the user that was just foregrounded
1822     */
1823    public void userForeground(int userId) {
1824        synchronized (mPackagesLock) {
1825            UserInfo user = mUsers.get(userId);
1826            long now = System.currentTimeMillis();
1827            if (user == null || user.partial) {
1828                Slog.w(LOG_TAG, "userForeground: unknown user #" + userId);
1829                return;
1830            }
1831            if (now > EPOCH_PLUS_30_YEARS) {
1832                user.lastLoggedInTime = now;
1833                scheduleWriteUserLocked(user);
1834            }
1835        }
1836    }
1837
1838    /**
1839     * Returns the next available user id, filling in any holes in the ids.
1840     * TODO: May not be a good idea to recycle ids, in case it results in confusion
1841     * for data and battery stats collection, or unexpected cross-talk.
1842     * @return
1843     */
1844    private int getNextAvailableIdLocked() {
1845        synchronized (mPackagesLock) {
1846            int i = MIN_USER_ID;
1847            while (i < Integer.MAX_VALUE) {
1848                if (mUsers.indexOfKey(i) < 0 && !mRemovingUserIds.get(i)) {
1849                    break;
1850                }
1851                i++;
1852            }
1853            return i;
1854        }
1855    }
1856
1857    private String packageToRestrictionsFileName(String packageName) {
1858        return RESTRICTIONS_FILE_PREFIX + packageName + XML_SUFFIX;
1859    }
1860
1861    private String restrictionsFileNameToPackage(String fileName) {
1862        return fileName.substring(RESTRICTIONS_FILE_PREFIX.length(),
1863                (int) (fileName.length() - XML_SUFFIX.length()));
1864    }
1865
1866    @Override
1867    protected void dump(FileDescriptor fd, PrintWriter pw, String[] args) {
1868        if (mContext.checkCallingOrSelfPermission(android.Manifest.permission.DUMP)
1869                != PackageManager.PERMISSION_GRANTED) {
1870            pw.println("Permission Denial: can't dump UserManager from from pid="
1871                    + Binder.getCallingPid()
1872                    + ", uid=" + Binder.getCallingUid()
1873                    + " without permission "
1874                    + android.Manifest.permission.DUMP);
1875            return;
1876        }
1877
1878        long now = System.currentTimeMillis();
1879        StringBuilder sb = new StringBuilder();
1880        synchronized (mPackagesLock) {
1881            pw.println("Users:");
1882            for (int i = 0; i < mUsers.size(); i++) {
1883                UserInfo user = mUsers.valueAt(i);
1884                if (user == null) continue;
1885                pw.print("  "); pw.print(user); pw.print(" serialNo="); pw.print(user.serialNumber);
1886                if (mRemovingUserIds.get(mUsers.keyAt(i))) pw.print(" <removing> ");
1887                if (user.partial) pw.print(" <partial>");
1888                pw.println();
1889                pw.print("    Created: ");
1890                if (user.creationTime == 0) {
1891                    pw.println("<unknown>");
1892                } else {
1893                    sb.setLength(0);
1894                    TimeUtils.formatDuration(now - user.creationTime, sb);
1895                    sb.append(" ago");
1896                    pw.println(sb);
1897                }
1898                pw.print("    Last logged in: ");
1899                if (user.lastLoggedInTime == 0) {
1900                    pw.println("<unknown>");
1901                } else {
1902                    sb.setLength(0);
1903                    TimeUtils.formatDuration(now - user.lastLoggedInTime, sb);
1904                    sb.append(" ago");
1905                    pw.println(sb);
1906                }
1907            }
1908        }
1909    }
1910
1911    final class MainHandler extends Handler {
1912
1913        @Override
1914        public void handleMessage(Message msg) {
1915            switch (msg.what) {
1916                case WRITE_USER_MSG:
1917                    removeMessages(WRITE_USER_MSG, msg.obj);
1918                    synchronized (mPackagesLock) {
1919                        int userId = ((UserInfo) msg.obj).id;
1920                        UserInfo userInfo = mUsers.get(userId);
1921                        if (userInfo != null) {
1922                            writeUserLocked(userInfo);
1923                        }
1924                    }
1925            }
1926        }
1927    }
1928}
1929