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