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