blob: 07584b3c9be5b346d7587aac35c43c67f3fa8d39 [file] [log] [blame]
Amith Yamasani4b2e9342011-03-31 12:38:53 -07001/*
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
Amith Yamasanidb6a14c2012-10-17 21:16:52 -070019import android.app.Activity;
Amith Yamasani2a003292012-08-14 18:25:45 -070020import android.app.ActivityManager;
Dianne Hackborn80a4af22012-08-27 19:18:31 -070021import android.app.ActivityManagerNative;
22import android.app.IStopUserCallback;
Amith Yamasanidb6a14c2012-10-17 21:16:52 -070023import android.content.BroadcastReceiver;
Amith Yamasani258848d2012-08-10 17:06:33 -070024import android.content.Context;
25import android.content.Intent;
Amith Yamasani1a7472e2013-07-02 11:17:30 -070026import android.content.pm.ApplicationInfo;
Amith Yamasani0b285492011-04-14 17:35:23 -070027import android.content.pm.PackageManager;
Amith Yamasanidf2e92a2013-03-01 17:04:38 -080028import android.content.pm.PackageManager.NameNotFoundException;
Amith Yamasani4b2e9342011-03-31 12:38:53 -070029import android.content.pm.UserInfo;
Amith Yamasanie928d7d2012-09-17 21:46:51 -070030import android.graphics.Bitmap;
31import android.graphics.BitmapFactory;
Amith Yamasani258848d2012-08-10 17:06:33 -070032import android.os.Binder;
Amith Yamasanie4cf7342012-12-17 11:12:09 -080033import android.os.Bundle;
Amith Yamasani4b2e9342011-03-31 12:38:53 -070034import android.os.Environment;
35import android.os.FileUtils;
Jeff Sharkeyffe0cb42012-11-05 17:24:43 -080036import android.os.Handler;
Amith Yamasani258848d2012-08-10 17:06:33 -070037import android.os.IUserManager;
Fyodor Kupolov75d0ea82014-12-15 16:21:07 -080038import android.os.Message;
Amith Yamasani258848d2012-08-10 17:06:33 -070039import android.os.Process;
Dianne Hackborn80a4af22012-08-27 19:18:31 -070040import android.os.RemoteException;
Jason Monk62062992014-05-06 09:55:28 -040041import android.os.ServiceManager;
Dianne Hackbornf02b60a2012-08-16 10:48:27 -070042import android.os.UserHandle;
Jeff Sharkey27bd34d2012-09-16 12:49:00 -070043import android.os.UserManager;
Amith Yamasani2a003292012-08-14 18:25:45 -070044import android.util.AtomicFile;
Amith Yamasani655d0e22013-06-12 14:19:10 -070045import android.util.Log;
Amith Yamasani4b2e9342011-03-31 12:38:53 -070046import android.util.Slog;
47import android.util.SparseArray;
Jeff Sharkeyffe0cb42012-11-05 17:24:43 -080048import android.util.SparseBooleanArray;
Amith Yamasani920ace02012-09-20 22:15:37 -070049import android.util.TimeUtils;
Amith Yamasani4b2e9342011-03-31 12:38:53 -070050import android.util.Xml;
51
Jason Monk62062992014-05-06 09:55:28 -040052import com.android.internal.app.IAppOpsService;
Jeff Sharkeyffe0cb42012-11-05 17:24:43 -080053import com.android.internal.util.ArrayUtils;
54import com.android.internal.util.FastXmlSerializer;
55
56import org.xmlpull.v1.XmlPullParser;
57import org.xmlpull.v1.XmlPullParserException;
58import org.xmlpull.v1.XmlSerializer;
59
Amith Yamasani4b2e9342011-03-31 12:38:53 -070060import java.io.BufferedOutputStream;
61import java.io.File;
Amith Yamasani920ace02012-09-20 22:15:37 -070062import java.io.FileDescriptor;
Amith Yamasani4b2e9342011-03-31 12:38:53 -070063import java.io.FileInputStream;
Amith Yamasanib8151ec2012-04-18 18:02:48 -070064import java.io.FileNotFoundException;
Amith Yamasani4b2e9342011-03-31 12:38:53 -070065import java.io.FileOutputStream;
66import java.io.IOException;
Amith Yamasani920ace02012-09-20 22:15:37 -070067import java.io.PrintWriter;
Amith Yamasani655d0e22013-06-12 14:19:10 -070068import java.security.MessageDigest;
69import java.security.NoSuchAlgorithmException;
70import java.security.SecureRandom;
Amith Yamasani4b2e9342011-03-31 12:38:53 -070071import java.util.ArrayList;
72import java.util.List;
73
Amith Yamasani258848d2012-08-10 17:06:33 -070074public class UserManagerService extends IUserManager.Stub {
Amith Yamasanib8151ec2012-04-18 18:02:48 -070075
Amith Yamasani2a003292012-08-14 18:25:45 -070076 private static final String LOG_TAG = "UserManagerService";
Amith Yamasanib8151ec2012-04-18 18:02:48 -070077
Amith Yamasani16389312012-10-17 21:20:14 -070078 private static final boolean DBG = false;
79
Amith Yamasani4b2e9342011-03-31 12:38:53 -070080 private static final String TAG_NAME = "name";
Amith Yamasani4b2e9342011-03-31 12:38:53 -070081 private static final String ATTR_FLAGS = "flags";
Amith Yamasanib8151ec2012-04-18 18:02:48 -070082 private static final String ATTR_ICON_PATH = "icon";
Amith Yamasani4b2e9342011-03-31 12:38:53 -070083 private static final String ATTR_ID = "id";
Amith Yamasani920ace02012-09-20 22:15:37 -070084 private static final String ATTR_CREATION_TIME = "created";
85 private static final String ATTR_LAST_LOGGED_IN_TIME = "lastLoggedIn";
Amith Yamasani655d0e22013-06-12 14:19:10 -070086 private static final String ATTR_SALT = "salt";
87 private static final String ATTR_PIN_HASH = "pinHash";
88 private static final String ATTR_FAILED_ATTEMPTS = "failedAttempts";
89 private static final String ATTR_LAST_RETRY_MS = "lastAttemptMs";
Amith Yamasani2a003292012-08-14 18:25:45 -070090 private static final String ATTR_SERIAL_NO = "serialNumber";
91 private static final String ATTR_NEXT_SERIAL_NO = "nextSerialNumber";
Dianne Hackbornd4ac8d72012-09-27 23:20:10 -070092 private static final String ATTR_PARTIAL = "partial";
Adam Lesinskieddeb492014-09-08 17:50:03 -070093 private static final String ATTR_GUEST_TO_REMOVE = "guestToRemove";
Amith Yamasani6f34b412012-10-22 18:19:27 -070094 private static final String ATTR_USER_VERSION = "version";
Kenny Guy2a764942014-04-02 13:29:20 +010095 private static final String ATTR_PROFILE_GROUP_ID = "profileGroupId";
Amith Yamasanie4afaa32014-06-30 14:55:07 +053096 private static final String TAG_GUEST_RESTRICTIONS = "guestRestrictions";
Amith Yamasani4b2e9342011-03-31 12:38:53 -070097 private static final String TAG_USERS = "users";
Amith Yamasani4b2e9342011-03-31 12:38:53 -070098 private static final String TAG_USER = "user";
Amith Yamasanie4cf7342012-12-17 11:12:09 -080099 private static final String TAG_RESTRICTIONS = "restrictions";
Amith Yamasanidf2e92a2013-03-01 17:04:38 -0800100 private static final String TAG_ENTRY = "entry";
101 private static final String TAG_VALUE = "value";
102 private static final String ATTR_KEY = "key";
Amith Yamasani7e99bc02013-04-16 18:24:51 -0700103 private static final String ATTR_VALUE_TYPE = "type";
Amith Yamasanidf2e92a2013-03-01 17:04:38 -0800104 private static final String ATTR_MULTIPLE = "m";
Amith Yamasani4b2e9342011-03-31 12:38:53 -0700105
Amith Yamasani7e99bc02013-04-16 18:24:51 -0700106 private static final String ATTR_TYPE_STRING_ARRAY = "sa";
107 private static final String ATTR_TYPE_STRING = "s";
108 private static final String ATTR_TYPE_BOOLEAN = "b";
Amith Yamasani5b5aa402014-06-01 20:10:14 -0700109 private static final String ATTR_TYPE_INTEGER = "i";
Amith Yamasani7e99bc02013-04-16 18:24:51 -0700110
Amith Yamasani0b285492011-04-14 17:35:23 -0700111 private static final String USER_INFO_DIR = "system" + File.separator + "users";
Amith Yamasani4b2e9342011-03-31 12:38:53 -0700112 private static final String USER_LIST_FILENAME = "userlist.xml";
Amith Yamasanib8151ec2012-04-18 18:02:48 -0700113 private static final String USER_PHOTO_FILENAME = "photo.png";
Amith Yamasani4b2e9342011-03-31 12:38:53 -0700114
Amith Yamasanidf2e92a2013-03-01 17:04:38 -0800115 private static final String RESTRICTIONS_FILE_PREFIX = "res_";
Amith Yamasanifc95e702013-09-26 13:20:17 -0700116 private static final String XML_SUFFIX = ".xml";
Amith Yamasanidf2e92a2013-03-01 17:04:38 -0800117
Amith Yamasani634cf312012-10-04 17:34:21 -0700118 private static final int MIN_USER_ID = 10;
119
Amith Yamasaniaa6634e2014-10-06 14:20:28 -0700120 private static final int USER_VERSION = 5;
Amith Yamasani6f34b412012-10-22 18:19:27 -0700121
Amith Yamasani920ace02012-09-20 22:15:37 -0700122 private static final long EPOCH_PLUS_30_YEARS = 30L * 365 * 24 * 60 * 60 * 1000L; // ms
123
Amith Yamasani655d0e22013-06-12 14:19:10 -0700124 // Number of attempts before jumping to the next BACKOFF_TIMES slot
125 private static final int BACKOFF_INC_INTERVAL = 5;
126
Amith Yamasani95ab7842014-08-11 17:09:26 -0700127 // Maximum number of managed profiles permitted is 1. This cannot be increased
128 // without first making sure that the rest of the framework is prepared for it.
129 private static final int MAX_MANAGED_PROFILES = 1;
130
Amith Yamasani655d0e22013-06-12 14:19:10 -0700131 // Amount of time to force the user to wait before entering the PIN again, after failing
132 // BACKOFF_INC_INTERVAL times.
133 private static final int[] BACKOFF_TIMES = { 0, 30*1000, 60*1000, 5*60*1000, 30*60*1000 };
134
Fyodor Kupolov75d0ea82014-12-15 16:21:07 -0800135 static final int WRITE_USER_MSG = 1;
136 static final int WRITE_USER_DELAY = 2*1000; // 2 seconds
Amith Yamasanie4afaa32014-06-30 14:55:07 +0530137
Dianne Hackborn4428e172012-08-24 17:43:05 -0700138 private final Context mContext;
139 private final PackageManagerService mPm;
140 private final Object mInstallLock;
141 private final Object mPackagesLock;
Amith Yamasani4b2e9342011-03-31 12:38:53 -0700142
Jeff Sharkeyffe0cb42012-11-05 17:24:43 -0800143 private final Handler mHandler;
144
Amith Yamasani4b2e9342011-03-31 12:38:53 -0700145 private final File mUsersDir;
146 private final File mUserListFile;
Dianne Hackborn4428e172012-08-24 17:43:05 -0700147 private final File mBaseUserPath;
148
Jeff Sharkeyffe0cb42012-11-05 17:24:43 -0800149 private final SparseArray<UserInfo> mUsers = new SparseArray<UserInfo>();
Amith Yamasanie4cf7342012-12-17 11:12:09 -0800150 private final SparseArray<Bundle> mUserRestrictions = new SparseArray<Bundle>();
Amith Yamasanie4afaa32014-06-30 14:55:07 +0530151 private final Bundle mGuestRestrictions = new Bundle();
Jeff Sharkeyffe0cb42012-11-05 17:24:43 -0800152
Amith Yamasani655d0e22013-06-12 14:19:10 -0700153 class RestrictionsPinState {
154 long salt;
155 String pinHash;
156 int failedAttempts;
157 long lastAttemptTime;
158 }
159
160 private final SparseArray<RestrictionsPinState> mRestrictionsPinStates =
161 new SparseArray<RestrictionsPinState>();
162
Jeff Sharkeyffe0cb42012-11-05 17:24:43 -0800163 /**
164 * Set of user IDs being actively removed. Removed IDs linger in this set
165 * for several seconds to work around a VFS caching issue.
166 */
167 // @GuardedBy("mPackagesLock")
168 private final SparseBooleanArray mRemovingUserIds = new SparseBooleanArray();
Dianne Hackborn4428e172012-08-24 17:43:05 -0700169
Amith Yamasani0b285492011-04-14 17:35:23 -0700170 private int[] mUserIds;
Amith Yamasani2a003292012-08-14 18:25:45 -0700171 private int mNextSerialNumber;
Amith Yamasani6f34b412012-10-22 18:19:27 -0700172 private int mUserVersion = 0;
Amith Yamasani0b285492011-04-14 17:35:23 -0700173
Jason Monk62062992014-05-06 09:55:28 -0400174 private IAppOpsService mAppOpsService;
175
Amith Yamasani258848d2012-08-10 17:06:33 -0700176 private static UserManagerService sInstance;
Amith Yamasani258848d2012-08-10 17:06:33 -0700177
Dianne Hackborn4428e172012-08-24 17:43:05 -0700178 public static UserManagerService getInstance() {
179 synchronized (UserManagerService.class) {
180 return sInstance;
Amith Yamasani258848d2012-08-10 17:06:33 -0700181 }
Amith Yamasani258848d2012-08-10 17:06:33 -0700182 }
Amith Yamasani4b2e9342011-03-31 12:38:53 -0700183
184 /**
185 * Available for testing purposes.
186 */
Amith Yamasani258848d2012-08-10 17:06:33 -0700187 UserManagerService(File dataDir, File baseUserPath) {
Dianne Hackborn4428e172012-08-24 17:43:05 -0700188 this(null, null, new Object(), new Object(), dataDir, baseUserPath);
Amith Yamasani4b2e9342011-03-31 12:38:53 -0700189 }
190
Dianne Hackborn4428e172012-08-24 17:43:05 -0700191 /**
192 * Called by package manager to create the service. This is closely
193 * associated with the package manager, and the given lock is the
194 * package manager's own lock.
195 */
196 UserManagerService(Context context, PackageManagerService pm,
197 Object installLock, Object packagesLock) {
198 this(context, pm, installLock, packagesLock,
199 Environment.getDataDirectory(),
200 new File(Environment.getDataDirectory(), "user"));
Amith Yamasani4b2e9342011-03-31 12:38:53 -0700201 }
202
Dianne Hackborn4428e172012-08-24 17:43:05 -0700203 /**
204 * Available for testing purposes.
205 */
206 private UserManagerService(Context context, PackageManagerService pm,
207 Object installLock, Object packagesLock,
208 File dataDir, File baseUserPath) {
Dianne Hackbornd4ac8d72012-09-27 23:20:10 -0700209 mContext = context;
210 mPm = pm;
211 mInstallLock = installLock;
212 mPackagesLock = packagesLock;
Fyodor Kupolov75d0ea82014-12-15 16:21:07 -0800213 mHandler = new MainHandler();
Dianne Hackbornd4ac8d72012-09-27 23:20:10 -0700214 synchronized (mInstallLock) {
215 synchronized (mPackagesLock) {
216 mUsersDir = new File(dataDir, USER_INFO_DIR);
217 mUsersDir.mkdirs();
218 // Make zeroth user directory, for services to migrate their files to that location
219 File userZeroDir = new File(mUsersDir, "0");
220 userZeroDir.mkdirs();
221 mBaseUserPath = baseUserPath;
222 FileUtils.setPermissions(mUsersDir.toString(),
223 FileUtils.S_IRWXU|FileUtils.S_IRWXG
224 |FileUtils.S_IROTH|FileUtils.S_IXOTH,
225 -1, -1);
226 mUserListFile = new File(mUsersDir, USER_LIST_FILENAME);
Amith Yamasanida0b1682014-11-21 12:58:17 -0800227 initDefaultGuestRestrictions();
Dianne Hackbornd4ac8d72012-09-27 23:20:10 -0700228 readUserListLocked();
Amith Yamasani756901d2012-10-12 12:30:07 -0700229 // Prune out any partially created/partially removed users.
Dianne Hackbornd4ac8d72012-09-27 23:20:10 -0700230 ArrayList<UserInfo> partials = new ArrayList<UserInfo>();
231 for (int i = 0; i < mUsers.size(); i++) {
232 UserInfo ui = mUsers.valueAt(i);
Adam Lesinskieddeb492014-09-08 17:50:03 -0700233 if ((ui.partial || ui.guestToRemove) && i != 0) {
Dianne Hackbornd4ac8d72012-09-27 23:20:10 -0700234 partials.add(ui);
235 }
236 }
237 for (int i = 0; i < partials.size(); i++) {
238 UserInfo ui = partials.get(i);
239 Slog.w(LOG_TAG, "Removing partially created user #" + i
240 + " (name=" + ui.name + ")");
241 removeUserStateLocked(ui.id);
242 }
243 sInstance = this;
244 }
Dianne Hackborn4428e172012-08-24 17:43:05 -0700245 }
Amith Yamasani1a7472e2013-07-02 11:17:30 -0700246 }
247
248 void systemReady() {
Amith Yamasani1a7472e2013-07-02 11:17:30 -0700249 userForeground(UserHandle.USER_OWNER);
Jason Monk62062992014-05-06 09:55:28 -0400250 mAppOpsService = IAppOpsService.Stub.asInterface(
251 ServiceManager.getService(Context.APP_OPS_SERVICE));
252 for (int i = 0; i < mUserIds.length; ++i) {
253 try {
254 mAppOpsService.setUserRestrictions(mUserRestrictions.get(mUserIds[i]), mUserIds[i]);
255 } catch (RemoteException e) {
256 Log.w(LOG_TAG, "Unable to notify AppOpsService of UserRestrictions");
257 }
258 }
Amith Yamasani258848d2012-08-10 17:06:33 -0700259 }
260
261 @Override
Amith Yamasani920ace02012-09-20 22:15:37 -0700262 public List<UserInfo> getUsers(boolean excludeDying) {
Amith Yamasani2a003292012-08-14 18:25:45 -0700263 checkManageUsersPermission("query users");
Dianne Hackborn4428e172012-08-24 17:43:05 -0700264 synchronized (mPackagesLock) {
Amith Yamasani13593602012-03-22 16:16:17 -0700265 ArrayList<UserInfo> users = new ArrayList<UserInfo>(mUsers.size());
266 for (int i = 0; i < mUsers.size(); i++) {
Dianne Hackbornd4ac8d72012-09-27 23:20:10 -0700267 UserInfo ui = mUsers.valueAt(i);
268 if (ui.partial) {
269 continue;
270 }
Jeff Sharkeyffe0cb42012-11-05 17:24:43 -0800271 if (!excludeDying || !mRemovingUserIds.get(ui.id)) {
Dianne Hackbornd4ac8d72012-09-27 23:20:10 -0700272 users.add(ui);
Amith Yamasani920ace02012-09-20 22:15:37 -0700273 }
Amith Yamasani13593602012-03-22 16:16:17 -0700274 }
275 return users;
Amith Yamasani4b2e9342011-03-31 12:38:53 -0700276 }
Amith Yamasani13593602012-03-22 16:16:17 -0700277 }
278
Amith Yamasani258848d2012-08-10 17:06:33 -0700279 @Override
Alexandra Gherghina385124d2014-04-03 13:37:39 +0100280 public List<UserInfo> getProfiles(int userId, boolean enabledOnly) {
Amith Yamasani4f582632014-02-19 14:31:52 -0800281 if (userId != UserHandle.getCallingUserId()) {
282 checkManageUsersPermission("getting profiles related to user " + userId);
283 }
Amith Yamasanibe465322014-04-24 13:45:17 -0700284 final long ident = Binder.clearCallingIdentity();
285 try {
286 synchronized (mPackagesLock) {
287 return getProfilesLocked(userId, enabledOnly);
Alexandra Gherghina385124d2014-04-03 13:37:39 +0100288 }
Amith Yamasanibe465322014-04-24 13:45:17 -0700289 } finally {
290 Binder.restoreCallingIdentity(ident);
Kenny Guya52dc3e2014-02-11 15:33:14 +0000291 }
292 }
293
Amith Yamasanibe465322014-04-24 13:45:17 -0700294 /** Assume permissions already checked and caller's identity cleared */
295 private List<UserInfo> getProfilesLocked(int userId, boolean enabledOnly) {
Amith Yamasanibe465322014-04-24 13:45:17 -0700296 UserInfo user = getUserInfoLocked(userId);
297 ArrayList<UserInfo> users = new ArrayList<UserInfo>(mUsers.size());
Amith Yamasanidda003f2014-08-28 18:06:51 -0700298 if (user == null) {
299 // Probably a dying user
300 return users;
301 }
Amith Yamasanibe465322014-04-24 13:45:17 -0700302 for (int i = 0; i < mUsers.size(); i++) {
303 UserInfo profile = mUsers.valueAt(i);
304 if (!isProfileOf(user, profile)) {
305 continue;
306 }
Alexandra Gherghinadf35d572014-04-09 13:54:39 +0100307 if (enabledOnly && !profile.isEnabled()) {
308 continue;
Amith Yamasanibe465322014-04-24 13:45:17 -0700309 }
Amith Yamasani70fcf0c2014-07-11 08:40:19 -0700310 if (mRemovingUserIds.get(profile.id)) {
311 continue;
312 }
Amith Yamasanibe465322014-04-24 13:45:17 -0700313 users.add(profile);
314 }
315 return users;
316 }
317
Jessica Hummelbe81c802014-04-22 15:49:22 +0100318 @Override
319 public UserInfo getProfileParent(int userHandle) {
320 checkManageUsersPermission("get the profile parent");
321 synchronized (mPackagesLock) {
322 UserInfo profile = getUserInfoLocked(userHandle);
Dianne Hackborn29cd7f12015-01-08 10:37:05 -0800323 if (profile == null) {
324 return null;
325 }
Jessica Hummelbe81c802014-04-22 15:49:22 +0100326 int parentUserId = profile.profileGroupId;
327 if (parentUserId == UserInfo.NO_PROFILE_GROUP_ID) {
328 return null;
329 } else {
330 return getUserInfoLocked(parentUserId);
331 }
332 }
333 }
334
Kenny Guy2a764942014-04-02 13:29:20 +0100335 private boolean isProfileOf(UserInfo user, UserInfo profile) {
336 return user.id == profile.id ||
337 (user.profileGroupId != UserInfo.NO_PROFILE_GROUP_ID
338 && user.profileGroupId == profile.profileGroupId);
Kenny Guya52dc3e2014-02-11 15:33:14 +0000339 }
340
341 @Override
Alexandra Gherghinadf35d572014-04-09 13:54:39 +0100342 public void setUserEnabled(int userId) {
343 checkManageUsersPermission("enable user");
344 synchronized (mPackagesLock) {
345 UserInfo info = getUserInfoLocked(userId);
346 if (info != null && !info.isEnabled()) {
347 info.flags ^= UserInfo.FLAG_DISABLED;
348 writeUserLocked(info);
349 }
350 }
351 }
352
353 @Override
Amith Yamasani258848d2012-08-10 17:06:33 -0700354 public UserInfo getUserInfo(int userId) {
Amith Yamasani2a003292012-08-14 18:25:45 -0700355 checkManageUsersPermission("query user");
Dianne Hackborn4428e172012-08-24 17:43:05 -0700356 synchronized (mPackagesLock) {
Amith Yamasani195263742012-08-21 15:40:12 -0700357 return getUserInfoLocked(userId);
Amith Yamasani13593602012-03-22 16:16:17 -0700358 }
359 }
360
Amith Yamasani71e6c692013-03-24 17:39:28 -0700361 @Override
362 public boolean isRestricted() {
363 synchronized (mPackagesLock) {
364 return getUserInfoLocked(UserHandle.getCallingUserId()).isRestricted();
365 }
366 }
367
Amith Yamasani195263742012-08-21 15:40:12 -0700368 /*
369 * Should be locked on mUsers before calling this.
370 */
371 private UserInfo getUserInfoLocked(int userId) {
Dianne Hackbornd4ac8d72012-09-27 23:20:10 -0700372 UserInfo ui = mUsers.get(userId);
Amith Yamasani16389312012-10-17 21:20:14 -0700373 // If it is partial and not in the process of being removed, return as unknown user.
Jeff Sharkeyffe0cb42012-11-05 17:24:43 -0800374 if (ui != null && ui.partial && !mRemovingUserIds.get(userId)) {
Dianne Hackbornd4ac8d72012-09-27 23:20:10 -0700375 Slog.w(LOG_TAG, "getUserInfo: unknown user #" + userId);
376 return null;
377 }
378 return ui;
Amith Yamasani195263742012-08-21 15:40:12 -0700379 }
380
Amith Yamasani13593602012-03-22 16:16:17 -0700381 public boolean exists(int userId) {
Dianne Hackborn4428e172012-08-24 17:43:05 -0700382 synchronized (mPackagesLock) {
Amith Yamasani13593602012-03-22 16:16:17 -0700383 return ArrayUtils.contains(mUserIds, userId);
384 }
385 }
386
Amith Yamasani258848d2012-08-10 17:06:33 -0700387 @Override
Amith Yamasanib8151ec2012-04-18 18:02:48 -0700388 public void setUserName(int userId, String name) {
Amith Yamasani2a003292012-08-14 18:25:45 -0700389 checkManageUsersPermission("rename users");
Dianne Hackbornd4ac8d72012-09-27 23:20:10 -0700390 boolean changed = false;
Dianne Hackborn4428e172012-08-24 17:43:05 -0700391 synchronized (mPackagesLock) {
Amith Yamasani13593602012-03-22 16:16:17 -0700392 UserInfo info = mUsers.get(userId);
Dianne Hackbornd4ac8d72012-09-27 23:20:10 -0700393 if (info == null || info.partial) {
394 Slog.w(LOG_TAG, "setUserName: unknown user #" + userId);
395 return;
396 }
Amith Yamasani13593602012-03-22 16:16:17 -0700397 if (name != null && !name.equals(info.name)) {
398 info.name = name;
399 writeUserLocked(info);
Dianne Hackbornd4ac8d72012-09-27 23:20:10 -0700400 changed = true;
Amith Yamasani13593602012-03-22 16:16:17 -0700401 }
402 }
Dianne Hackbornd4ac8d72012-09-27 23:20:10 -0700403 if (changed) {
404 sendUserInfoChangedBroadcast(userId);
405 }
Amith Yamasani4b2e9342011-03-31 12:38:53 -0700406 }
407
Amith Yamasani258848d2012-08-10 17:06:33 -0700408 @Override
Amith Yamasanie928d7d2012-09-17 21:46:51 -0700409 public void setUserIcon(int userId, Bitmap bitmap) {
Amith Yamasani2a003292012-08-14 18:25:45 -0700410 checkManageUsersPermission("update users");
Jason Monk9a944532014-07-08 09:31:21 -0400411 long ident = Binder.clearCallingIdentity();
412 try {
413 synchronized (mPackagesLock) {
414 UserInfo info = mUsers.get(userId);
415 if (info == null || info.partial) {
416 Slog.w(LOG_TAG, "setUserIcon: unknown user #" + userId);
417 return;
418 }
419 writeBitmapLocked(info, bitmap);
420 writeUserLocked(info);
Dianne Hackbornd4ac8d72012-09-27 23:20:10 -0700421 }
Jason Monk9a944532014-07-08 09:31:21 -0400422 sendUserInfoChangedBroadcast(userId);
423 } finally {
424 Binder.restoreCallingIdentity(ident);
Amith Yamasanib8151ec2012-04-18 18:02:48 -0700425 }
Amith Yamasanie928d7d2012-09-17 21:46:51 -0700426 }
427
428 private void sendUserInfoChangedBroadcast(int userId) {
429 Intent changedIntent = new Intent(Intent.ACTION_USER_INFO_CHANGED);
430 changedIntent.putExtra(Intent.EXTRA_USER_HANDLE, userId);
431 changedIntent.addFlags(Intent.FLAG_RECEIVER_REGISTERED_ONLY);
Amith Yamasani6fc1d4e2013-05-08 16:43:58 -0700432 mContext.sendBroadcastAsUser(changedIntent, UserHandle.ALL);
Amith Yamasanib8151ec2012-04-18 18:02:48 -0700433 }
434
Amith Yamasani258848d2012-08-10 17:06:33 -0700435 @Override
Amith Yamasanie928d7d2012-09-17 21:46:51 -0700436 public Bitmap getUserIcon(int userId) {
Amith Yamasani3b49f072012-09-17 10:21:43 -0700437 synchronized (mPackagesLock) {
438 UserInfo info = mUsers.get(userId);
Dianne Hackbornd4ac8d72012-09-27 23:20:10 -0700439 if (info == null || info.partial) {
440 Slog.w(LOG_TAG, "getUserIcon: unknown user #" + userId);
441 return null;
442 }
Nicolas Prevot88cc3462014-05-14 14:51:48 +0100443 int callingGroupId = mUsers.get(UserHandle.getCallingUserId()).profileGroupId;
444 if (callingGroupId == UserInfo.NO_PROFILE_GROUP_ID
445 || callingGroupId != info.profileGroupId) {
446 checkManageUsersPermission("get the icon of a user who is not related");
447 }
Dianne Hackbornd4ac8d72012-09-27 23:20:10 -0700448 if (info.iconPath == null) {
449 return null;
450 }
Amith Yamasanie928d7d2012-09-17 21:46:51 -0700451 return BitmapFactory.decodeFile(info.iconPath);
Amith Yamasani3b49f072012-09-17 10:21:43 -0700452 }
453 }
454
Dianne Hackborn5dc5a002012-09-15 19:33:48 -0700455 public void makeInitialized(int userId) {
456 checkManageUsersPermission("makeInitialized");
457 synchronized (mPackagesLock) {
458 UserInfo info = mUsers.get(userId);
Dianne Hackbornd4ac8d72012-09-27 23:20:10 -0700459 if (info == null || info.partial) {
460 Slog.w(LOG_TAG, "makeInitialized: unknown user #" + userId);
461 }
462 if ((info.flags&UserInfo.FLAG_INITIALIZED) == 0) {
Dianne Hackborn5dc5a002012-09-15 19:33:48 -0700463 info.flags |= UserInfo.FLAG_INITIALIZED;
Fyodor Kupolov75d0ea82014-12-15 16:21:07 -0800464 scheduleWriteUserLocked(info);
Dianne Hackborn5dc5a002012-09-15 19:33:48 -0700465 }
466 }
467 }
468
Amith Yamasaniaa6634e2014-10-06 14:20:28 -0700469 /**
470 * If default guest restrictions haven't been initialized yet, add the basic
471 * restrictions.
472 */
473 private void initDefaultGuestRestrictions() {
474 if (mGuestRestrictions.isEmpty()) {
475 mGuestRestrictions.putBoolean(UserManager.DISALLOW_OUTGOING_CALLS, true);
Amith Yamasanida0b1682014-11-21 12:58:17 -0800476 mGuestRestrictions.putBoolean(UserManager.DISALLOW_SMS, true);
Amith Yamasaniaa6634e2014-10-06 14:20:28 -0700477 }
478 }
479
Amith Yamasanie4cf7342012-12-17 11:12:09 -0800480 @Override
Amith Yamasanie4afaa32014-06-30 14:55:07 +0530481 public Bundle getDefaultGuestRestrictions() {
482 checkManageUsersPermission("getDefaultGuestRestrictions");
483 synchronized (mPackagesLock) {
484 return new Bundle(mGuestRestrictions);
485 }
486 }
487
488 @Override
489 public void setDefaultGuestRestrictions(Bundle restrictions) {
490 checkManageUsersPermission("setDefaultGuestRestrictions");
491 synchronized (mPackagesLock) {
492 mGuestRestrictions.clear();
493 mGuestRestrictions.putAll(restrictions);
494 writeUserListLocked();
495 }
496 }
497
498 @Override
Amith Yamasani8cd28b52014-06-08 17:54:27 -0700499 public boolean hasUserRestriction(String restrictionKey, int userId) {
500 synchronized (mPackagesLock) {
501 Bundle restrictions = mUserRestrictions.get(userId);
502 return restrictions != null ? restrictions.getBoolean(restrictionKey) : false;
503 }
504 }
505
506 @Override
Amith Yamasanie4cf7342012-12-17 11:12:09 -0800507 public Bundle getUserRestrictions(int userId) {
508 // checkManageUsersPermission("getUserRestrictions");
509
510 synchronized (mPackagesLock) {
511 Bundle restrictions = mUserRestrictions.get(userId);
Amith Yamasanibe465322014-04-24 13:45:17 -0700512 return restrictions != null ? new Bundle(restrictions) : new Bundle();
Amith Yamasanie4cf7342012-12-17 11:12:09 -0800513 }
514 }
515
516 @Override
517 public void setUserRestrictions(Bundle restrictions, int userId) {
Amith Yamasanibe465322014-04-24 13:45:17 -0700518 checkManageUsersPermission("setUserRestrictions");
Amith Yamasani0343ec32013-07-22 14:52:06 -0700519 if (restrictions == null) return;
Amith Yamasanie4cf7342012-12-17 11:12:09 -0800520
521 synchronized (mPackagesLock) {
Amith Yamasani350962c2013-08-06 11:18:53 -0700522 mUserRestrictions.get(userId).clear();
Amith Yamasanie4cf7342012-12-17 11:12:09 -0800523 mUserRestrictions.get(userId).putAll(restrictions);
Jason Monk62062992014-05-06 09:55:28 -0400524 long token = Binder.clearCallingIdentity();
525 try {
526 mAppOpsService.setUserRestrictions(mUserRestrictions.get(userId), userId);
527 } catch (RemoteException e) {
528 Log.w(LOG_TAG, "Unable to notify AppOpsService of UserRestrictions");
529 } finally {
530 Binder.restoreCallingIdentity(token);
531 }
Fyodor Kupolov75d0ea82014-12-15 16:21:07 -0800532 scheduleWriteUserLocked(mUsers.get(userId));
Amith Yamasanie4cf7342012-12-17 11:12:09 -0800533 }
534 }
535
Amith Yamasani258848d2012-08-10 17:06:33 -0700536 /**
Amith Yamasanifaea76f2012-09-11 10:59:48 -0700537 * Check if we've hit the limit of how many users can be created.
538 */
Dianne Hackborn5dc5a002012-09-15 19:33:48 -0700539 private boolean isUserLimitReachedLocked() {
Amith Yamasanif584f012014-05-19 17:57:25 -0700540 int aliveUserCount = 0;
541 final int totalUserCount = mUsers.size();
542 // Skip over users being removed
543 for (int i = 0; i < totalUserCount; i++) {
544 UserInfo user = mUsers.valueAt(i);
Amith Yamasani95ab7842014-08-11 17:09:26 -0700545 if (!mRemovingUserIds.get(user.id)
Amith Yamasani1df14732014-08-29 21:37:27 -0700546 && !user.isGuest() && !user.partial) {
Amith Yamasanif584f012014-05-19 17:57:25 -0700547 aliveUserCount++;
548 }
549 }
550 return aliveUserCount >= UserManager.getMaxSupportedUsers();
Amith Yamasanifaea76f2012-09-11 10:59:48 -0700551 }
552
553 /**
Amith Yamasani195263742012-08-21 15:40:12 -0700554 * Enforces that only the system UID or root's UID or apps that have the
Dianne Hackborn10ad9822014-03-17 11:28:36 -0700555 * {@link android.Manifest.permission#MANAGE_USERS MANAGE_USERS}
Amith Yamasani195263742012-08-21 15:40:12 -0700556 * permission can make certain calls to the UserManager.
Amith Yamasani258848d2012-08-10 17:06:33 -0700557 *
558 * @param message used as message if SecurityException is thrown
559 * @throws SecurityException if the caller is not system or root
560 */
Amith Yamasanibe465322014-04-24 13:45:17 -0700561 private static final void checkManageUsersPermission(String message) {
Amith Yamasani258848d2012-08-10 17:06:33 -0700562 final int uid = Binder.getCallingUid();
Amith Yamasanibe465322014-04-24 13:45:17 -0700563 if (uid != Process.SYSTEM_UID && uid != 0
Emily Bernier7a2b4d12014-04-23 12:51:35 -0400564 && ActivityManager.checkComponentPermission(
565 android.Manifest.permission.MANAGE_USERS,
Amith Yamasanibe465322014-04-24 13:45:17 -0700566 uid, -1, true) != PackageManager.PERMISSION_GRANTED) {
567 throw new SecurityException("You need MANAGE_USERS permission to: " + message);
568 }
Emily Bernier7a2b4d12014-04-23 12:51:35 -0400569 }
570
Amith Yamasanie928d7d2012-09-17 21:46:51 -0700571 private void writeBitmapLocked(UserInfo info, Bitmap bitmap) {
Amith Yamasanib8151ec2012-04-18 18:02:48 -0700572 try {
573 File dir = new File(mUsersDir, Integer.toString(info.id));
574 File file = new File(dir, USER_PHOTO_FILENAME);
575 if (!dir.exists()) {
576 dir.mkdir();
577 FileUtils.setPermissions(
578 dir.getPath(),
579 FileUtils.S_IRWXU|FileUtils.S_IRWXG|FileUtils.S_IXOTH,
580 -1, -1);
581 }
Amith Yamasanie928d7d2012-09-17 21:46:51 -0700582 FileOutputStream os;
583 if (bitmap.compress(Bitmap.CompressFormat.PNG, 100, os = new FileOutputStream(file))) {
Amith Yamasani3b49f072012-09-17 10:21:43 -0700584 info.iconPath = file.getAbsolutePath();
585 }
Amith Yamasanie928d7d2012-09-17 21:46:51 -0700586 try {
587 os.close();
588 } catch (IOException ioe) {
589 // What the ... !
590 }
Amith Yamasanib8151ec2012-04-18 18:02:48 -0700591 } catch (FileNotFoundException e) {
Amith Yamasani2a003292012-08-14 18:25:45 -0700592 Slog.w(LOG_TAG, "Error setting photo for user ", e);
Amith Yamasanib8151ec2012-04-18 18:02:48 -0700593 }
Amith Yamasanib8151ec2012-04-18 18:02:48 -0700594 }
595
Amith Yamasani0b285492011-04-14 17:35:23 -0700596 /**
597 * Returns an array of user ids. This array is cached here for quick access, so do not modify or
598 * cache it elsewhere.
599 * @return the array of user ids.
600 */
Dianne Hackborn1676c852012-09-10 14:52:30 -0700601 public int[] getUserIds() {
Dianne Hackborn4428e172012-08-24 17:43:05 -0700602 synchronized (mPackagesLock) {
Dianne Hackborn7767eac2012-08-23 18:25:40 -0700603 return mUserIds;
604 }
Amith Yamasani0b285492011-04-14 17:35:23 -0700605 }
606
Dianne Hackborn4428e172012-08-24 17:43:05 -0700607 int[] getUserIdsLPr() {
608 return mUserIds;
609 }
610
Amith Yamasani13593602012-03-22 16:16:17 -0700611 private void readUserListLocked() {
Amith Yamasani4b2e9342011-03-31 12:38:53 -0700612 if (!mUserListFile.exists()) {
Amith Yamasani13593602012-03-22 16:16:17 -0700613 fallbackToSingleUserLocked();
Amith Yamasani4b2e9342011-03-31 12:38:53 -0700614 return;
615 }
616 FileInputStream fis = null;
Amith Yamasani2a003292012-08-14 18:25:45 -0700617 AtomicFile userListFile = new AtomicFile(mUserListFile);
Amith Yamasani4b2e9342011-03-31 12:38:53 -0700618 try {
Amith Yamasani2a003292012-08-14 18:25:45 -0700619 fis = userListFile.openRead();
Amith Yamasani4b2e9342011-03-31 12:38:53 -0700620 XmlPullParser parser = Xml.newPullParser();
621 parser.setInput(fis, null);
622 int type;
623 while ((type = parser.next()) != XmlPullParser.START_TAG
624 && type != XmlPullParser.END_DOCUMENT) {
625 ;
626 }
627
628 if (type != XmlPullParser.START_TAG) {
Amith Yamasani0b285492011-04-14 17:35:23 -0700629 Slog.e(LOG_TAG, "Unable to read user list");
Amith Yamasani13593602012-03-22 16:16:17 -0700630 fallbackToSingleUserLocked();
Amith Yamasani4b2e9342011-03-31 12:38:53 -0700631 return;
632 }
633
Amith Yamasani2a003292012-08-14 18:25:45 -0700634 mNextSerialNumber = -1;
635 if (parser.getName().equals(TAG_USERS)) {
636 String lastSerialNumber = parser.getAttributeValue(null, ATTR_NEXT_SERIAL_NO);
637 if (lastSerialNumber != null) {
638 mNextSerialNumber = Integer.parseInt(lastSerialNumber);
639 }
Amith Yamasani6f34b412012-10-22 18:19:27 -0700640 String versionNumber = parser.getAttributeValue(null, ATTR_USER_VERSION);
641 if (versionNumber != null) {
642 mUserVersion = Integer.parseInt(versionNumber);
643 }
Amith Yamasani2a003292012-08-14 18:25:45 -0700644 }
645
Amith Yamasani4b2e9342011-03-31 12:38:53 -0700646 while ((type = parser.next()) != XmlPullParser.END_DOCUMENT) {
Amith Yamasanie4afaa32014-06-30 14:55:07 +0530647 if (type == XmlPullParser.START_TAG) {
648 final String name = parser.getName();
649 if (name.equals(TAG_USER)) {
650 String id = parser.getAttributeValue(null, ATTR_ID);
651 UserInfo user = readUserLocked(Integer.parseInt(id));
Amith Yamasani6f34b412012-10-22 18:19:27 -0700652
Amith Yamasanie4afaa32014-06-30 14:55:07 +0530653 if (user != null) {
654 mUsers.put(user.id, user);
655 if (mNextSerialNumber < 0 || mNextSerialNumber <= user.id) {
656 mNextSerialNumber = user.id + 1;
657 }
Amith Yamasani2a003292012-08-14 18:25:45 -0700658 }
Amith Yamasanie4afaa32014-06-30 14:55:07 +0530659 } else if (name.equals(TAG_GUEST_RESTRICTIONS)) {
Amith Yamasanida0b1682014-11-21 12:58:17 -0800660 while ((type = parser.next()) != XmlPullParser.END_DOCUMENT
661 && type != XmlPullParser.END_TAG) {
662 if (type == XmlPullParser.START_TAG) {
663 if (parser.getName().equals(TAG_RESTRICTIONS)) {
664 readRestrictionsLocked(parser, mGuestRestrictions);
665 }
666 break;
667 }
668 }
Amith Yamasani258848d2012-08-10 17:06:33 -0700669 }
Amith Yamasani4b2e9342011-03-31 12:38:53 -0700670 }
671 }
Amith Yamasani13593602012-03-22 16:16:17 -0700672 updateUserIdsLocked();
Amith Yamasani350962c2013-08-06 11:18:53 -0700673 upgradeIfNecessaryLocked();
Amith Yamasani4b2e9342011-03-31 12:38:53 -0700674 } catch (IOException ioe) {
Amith Yamasani13593602012-03-22 16:16:17 -0700675 fallbackToSingleUserLocked();
Amith Yamasani4b2e9342011-03-31 12:38:53 -0700676 } catch (XmlPullParserException pe) {
Amith Yamasani13593602012-03-22 16:16:17 -0700677 fallbackToSingleUserLocked();
Dianne Hackbornbfd89b32011-12-15 18:22:54 -0800678 } finally {
679 if (fis != null) {
680 try {
681 fis.close();
682 } catch (IOException e) {
683 }
684 }
Amith Yamasani4b2e9342011-03-31 12:38:53 -0700685 }
686 }
687
Amith Yamasani6f34b412012-10-22 18:19:27 -0700688 /**
Amith Yamasanibc9625052012-11-15 14:39:18 -0800689 * Upgrade steps between versions, either for fixing bugs or changing the data format.
Amith Yamasani6f34b412012-10-22 18:19:27 -0700690 */
Amith Yamasani350962c2013-08-06 11:18:53 -0700691 private void upgradeIfNecessaryLocked() {
Amith Yamasani6f34b412012-10-22 18:19:27 -0700692 int userVersion = mUserVersion;
693 if (userVersion < 1) {
694 // Assign a proper name for the owner, if not initialized correctly before
695 UserInfo user = mUsers.get(UserHandle.USER_OWNER);
696 if ("Primary".equals(user.name)) {
697 user.name = mContext.getResources().getString(com.android.internal.R.string.owner_name);
Fyodor Kupolov75d0ea82014-12-15 16:21:07 -0800698 scheduleWriteUserLocked(user);
Amith Yamasani6f34b412012-10-22 18:19:27 -0700699 }
700 userVersion = 1;
701 }
702
Amith Yamasanibc9625052012-11-15 14:39:18 -0800703 if (userVersion < 2) {
704 // Owner should be marked as initialized
705 UserInfo user = mUsers.get(UserHandle.USER_OWNER);
706 if ((user.flags & UserInfo.FLAG_INITIALIZED) == 0) {
707 user.flags |= UserInfo.FLAG_INITIALIZED;
Fyodor Kupolov75d0ea82014-12-15 16:21:07 -0800708 scheduleWriteUserLocked(user);
Amith Yamasanibc9625052012-11-15 14:39:18 -0800709 }
710 userVersion = 2;
711 }
712
Amith Yamasani350962c2013-08-06 11:18:53 -0700713
Amith Yamasani5e486f52013-08-07 11:06:44 -0700714 if (userVersion < 4) {
Amith Yamasani5e486f52013-08-07 11:06:44 -0700715 userVersion = 4;
716 }
717
Amith Yamasaniaa6634e2014-10-06 14:20:28 -0700718 if (userVersion < 5) {
719 initDefaultGuestRestrictions();
720 userVersion = 5;
721 }
722
Amith Yamasani6f34b412012-10-22 18:19:27 -0700723 if (userVersion < USER_VERSION) {
724 Slog.w(LOG_TAG, "User version " + mUserVersion + " didn't upgrade as expected to "
725 + USER_VERSION);
726 } else {
727 mUserVersion = userVersion;
728 writeUserListLocked();
729 }
730 }
731
Amith Yamasani13593602012-03-22 16:16:17 -0700732 private void fallbackToSingleUserLocked() {
Amith Yamasani4b2e9342011-03-31 12:38:53 -0700733 // Create the primary user
Amith Yamasani67df64b2012-12-14 12:09:36 -0800734 UserInfo primary = new UserInfo(UserHandle.USER_OWNER,
Amith Yamasani6f34b412012-10-22 18:19:27 -0700735 mContext.getResources().getString(com.android.internal.R.string.owner_name), null,
Amith Yamasani756901d2012-10-12 12:30:07 -0700736 UserInfo.FLAG_ADMIN | UserInfo.FLAG_PRIMARY | UserInfo.FLAG_INITIALIZED);
Amith Yamasani4b2e9342011-03-31 12:38:53 -0700737 mUsers.put(0, primary);
Amith Yamasani634cf312012-10-04 17:34:21 -0700738 mNextSerialNumber = MIN_USER_ID;
Geoffrey Borggaard15b8b2c2013-08-28 22:11:10 -0400739 mUserVersion = USER_VERSION;
Amith Yamasani67df64b2012-12-14 12:09:36 -0800740
Geoffrey Borggaarde45e45e32013-01-24 10:03:20 -0500741 Bundle restrictions = new Bundle();
Amith Yamasani67df64b2012-12-14 12:09:36 -0800742 mUserRestrictions.append(UserHandle.USER_OWNER, restrictions);
743
Amith Yamasani13593602012-03-22 16:16:17 -0700744 updateUserIdsLocked();
Amith Yamasaniaa6634e2014-10-06 14:20:28 -0700745 initDefaultGuestRestrictions();
Amith Yamasani4b2e9342011-03-31 12:38:53 -0700746
Amith Yamasani13593602012-03-22 16:16:17 -0700747 writeUserListLocked();
748 writeUserLocked(primary);
Amith Yamasani4b2e9342011-03-31 12:38:53 -0700749 }
750
Fyodor Kupolov75d0ea82014-12-15 16:21:07 -0800751 private void scheduleWriteUserLocked(UserInfo userInfo) {
752 if (!mHandler.hasMessages(WRITE_USER_MSG, userInfo)) {
753 Message msg = mHandler.obtainMessage(WRITE_USER_MSG, userInfo);
754 mHandler.sendMessageDelayed(msg, WRITE_USER_DELAY);
755 }
756 }
757
Amith Yamasani4b2e9342011-03-31 12:38:53 -0700758 /*
759 * Writes the user file in this format:
760 *
761 * <user flags="20039023" id="0">
762 * <name>Primary</name>
763 * </user>
764 */
Amith Yamasani13593602012-03-22 16:16:17 -0700765 private void writeUserLocked(UserInfo userInfo) {
Amith Yamasani742a6712011-05-04 14:49:28 -0700766 FileOutputStream fos = null;
Amith Yamasanifc95e702013-09-26 13:20:17 -0700767 AtomicFile userFile = new AtomicFile(new File(mUsersDir, userInfo.id + XML_SUFFIX));
Amith Yamasani4b2e9342011-03-31 12:38:53 -0700768 try {
Amith Yamasani2a003292012-08-14 18:25:45 -0700769 fos = userFile.startWrite();
Amith Yamasani4b2e9342011-03-31 12:38:53 -0700770 final BufferedOutputStream bos = new BufferedOutputStream(fos);
771
772 // XmlSerializer serializer = XmlUtils.serializerInstance();
773 final XmlSerializer serializer = new FastXmlSerializer();
774 serializer.setOutput(bos, "utf-8");
775 serializer.startDocument(null, true);
776 serializer.setFeature("http://xmlpull.org/v1/doc/features.html#indent-output", true);
777
778 serializer.startTag(null, TAG_USER);
779 serializer.attribute(null, ATTR_ID, Integer.toString(userInfo.id));
Amith Yamasani2a003292012-08-14 18:25:45 -0700780 serializer.attribute(null, ATTR_SERIAL_NO, Integer.toString(userInfo.serialNumber));
Amith Yamasani4b2e9342011-03-31 12:38:53 -0700781 serializer.attribute(null, ATTR_FLAGS, Integer.toString(userInfo.flags));
Amith Yamasani920ace02012-09-20 22:15:37 -0700782 serializer.attribute(null, ATTR_CREATION_TIME, Long.toString(userInfo.creationTime));
783 serializer.attribute(null, ATTR_LAST_LOGGED_IN_TIME,
784 Long.toString(userInfo.lastLoggedInTime));
Amith Yamasani655d0e22013-06-12 14:19:10 -0700785 RestrictionsPinState pinState = mRestrictionsPinStates.get(userInfo.id);
786 if (pinState != null) {
787 if (pinState.salt != 0) {
788 serializer.attribute(null, ATTR_SALT, Long.toString(pinState.salt));
789 }
790 if (pinState.pinHash != null) {
791 serializer.attribute(null, ATTR_PIN_HASH, pinState.pinHash);
792 }
793 if (pinState.failedAttempts != 0) {
794 serializer.attribute(null, ATTR_FAILED_ATTEMPTS,
795 Integer.toString(pinState.failedAttempts));
796 serializer.attribute(null, ATTR_LAST_RETRY_MS,
797 Long.toString(pinState.lastAttemptTime));
798 }
799 }
Amith Yamasanib8151ec2012-04-18 18:02:48 -0700800 if (userInfo.iconPath != null) {
801 serializer.attribute(null, ATTR_ICON_PATH, userInfo.iconPath);
802 }
Dianne Hackbornd4ac8d72012-09-27 23:20:10 -0700803 if (userInfo.partial) {
804 serializer.attribute(null, ATTR_PARTIAL, "true");
805 }
Adam Lesinskieddeb492014-09-08 17:50:03 -0700806 if (userInfo.guestToRemove) {
807 serializer.attribute(null, ATTR_GUEST_TO_REMOVE, "true");
808 }
Kenny Guy2a764942014-04-02 13:29:20 +0100809 if (userInfo.profileGroupId != UserInfo.NO_PROFILE_GROUP_ID) {
810 serializer.attribute(null, ATTR_PROFILE_GROUP_ID,
811 Integer.toString(userInfo.profileGroupId));
Kenny Guya52dc3e2014-02-11 15:33:14 +0000812 }
Amith Yamasani4b2e9342011-03-31 12:38:53 -0700813
814 serializer.startTag(null, TAG_NAME);
815 serializer.text(userInfo.name);
816 serializer.endTag(null, TAG_NAME);
Amith Yamasanie4cf7342012-12-17 11:12:09 -0800817 Bundle restrictions = mUserRestrictions.get(userInfo.id);
818 if (restrictions != null) {
Amith Yamasanie4afaa32014-06-30 14:55:07 +0530819 writeRestrictionsLocked(serializer, restrictions);
Amith Yamasanie4cf7342012-12-17 11:12:09 -0800820 }
Amith Yamasani4b2e9342011-03-31 12:38:53 -0700821 serializer.endTag(null, TAG_USER);
822
823 serializer.endDocument();
Amith Yamasani2a003292012-08-14 18:25:45 -0700824 userFile.finishWrite(fos);
825 } catch (Exception ioe) {
Amith Yamasani0b285492011-04-14 17:35:23 -0700826 Slog.e(LOG_TAG, "Error writing user info " + userInfo.id + "\n" + ioe);
Amith Yamasani2a003292012-08-14 18:25:45 -0700827 userFile.failWrite(fos);
Amith Yamasani4b2e9342011-03-31 12:38:53 -0700828 }
829 }
830
831 /*
832 * Writes the user list file in this format:
833 *
Amith Yamasani2a003292012-08-14 18:25:45 -0700834 * <users nextSerialNumber="3">
Amith Yamasani4b2e9342011-03-31 12:38:53 -0700835 * <user id="0"></user>
836 * <user id="2"></user>
837 * </users>
838 */
Amith Yamasani13593602012-03-22 16:16:17 -0700839 private void writeUserListLocked() {
Amith Yamasani742a6712011-05-04 14:49:28 -0700840 FileOutputStream fos = null;
Amith Yamasani2a003292012-08-14 18:25:45 -0700841 AtomicFile userListFile = new AtomicFile(mUserListFile);
Amith Yamasani4b2e9342011-03-31 12:38:53 -0700842 try {
Amith Yamasani2a003292012-08-14 18:25:45 -0700843 fos = userListFile.startWrite();
Amith Yamasani4b2e9342011-03-31 12:38:53 -0700844 final BufferedOutputStream bos = new BufferedOutputStream(fos);
845
846 // XmlSerializer serializer = XmlUtils.serializerInstance();
847 final XmlSerializer serializer = new FastXmlSerializer();
848 serializer.setOutput(bos, "utf-8");
849 serializer.startDocument(null, true);
850 serializer.setFeature("http://xmlpull.org/v1/doc/features.html#indent-output", true);
851
852 serializer.startTag(null, TAG_USERS);
Amith Yamasani2a003292012-08-14 18:25:45 -0700853 serializer.attribute(null, ATTR_NEXT_SERIAL_NO, Integer.toString(mNextSerialNumber));
Amith Yamasani6f34b412012-10-22 18:19:27 -0700854 serializer.attribute(null, ATTR_USER_VERSION, Integer.toString(mUserVersion));
Amith Yamasani4b2e9342011-03-31 12:38:53 -0700855
Adam Lesinskieddeb492014-09-08 17:50:03 -0700856 serializer.startTag(null, TAG_GUEST_RESTRICTIONS);
Amith Yamasanie4afaa32014-06-30 14:55:07 +0530857 writeRestrictionsLocked(serializer, mGuestRestrictions);
858 serializer.endTag(null, TAG_GUEST_RESTRICTIONS);
Amith Yamasani4b2e9342011-03-31 12:38:53 -0700859 for (int i = 0; i < mUsers.size(); i++) {
860 UserInfo user = mUsers.valueAt(i);
861 serializer.startTag(null, TAG_USER);
862 serializer.attribute(null, ATTR_ID, Integer.toString(user.id));
863 serializer.endTag(null, TAG_USER);
Amith Yamasani4b2e9342011-03-31 12:38:53 -0700864 }
865
866 serializer.endTag(null, TAG_USERS);
867
868 serializer.endDocument();
Amith Yamasani2a003292012-08-14 18:25:45 -0700869 userListFile.finishWrite(fos);
870 } catch (Exception e) {
871 userListFile.failWrite(fos);
Amith Yamasani0b285492011-04-14 17:35:23 -0700872 Slog.e(LOG_TAG, "Error writing user list");
Amith Yamasani4b2e9342011-03-31 12:38:53 -0700873 }
874 }
875
Amith Yamasanie4afaa32014-06-30 14:55:07 +0530876 private void writeRestrictionsLocked(XmlSerializer serializer, Bundle restrictions)
877 throws IOException {
878 serializer.startTag(null, TAG_RESTRICTIONS);
879 writeBoolean(serializer, restrictions, UserManager.DISALLOW_CONFIG_WIFI);
880 writeBoolean(serializer, restrictions, UserManager.DISALLOW_MODIFY_ACCOUNTS);
881 writeBoolean(serializer, restrictions, UserManager.DISALLOW_INSTALL_APPS);
882 writeBoolean(serializer, restrictions, UserManager.DISALLOW_UNINSTALL_APPS);
883 writeBoolean(serializer, restrictions, UserManager.DISALLOW_SHARE_LOCATION);
884 writeBoolean(serializer, restrictions,
885 UserManager.DISALLOW_INSTALL_UNKNOWN_SOURCES);
886 writeBoolean(serializer, restrictions, UserManager.DISALLOW_CONFIG_BLUETOOTH);
887 writeBoolean(serializer, restrictions, UserManager.DISALLOW_USB_FILE_TRANSFER);
888 writeBoolean(serializer, restrictions, UserManager.DISALLOW_CONFIG_CREDENTIALS);
889 writeBoolean(serializer, restrictions, UserManager.DISALLOW_REMOVE_USER);
890 writeBoolean(serializer, restrictions, UserManager.DISALLOW_DEBUGGING_FEATURES);
891 writeBoolean(serializer, restrictions, UserManager.DISALLOW_CONFIG_VPN);
892 writeBoolean(serializer, restrictions, UserManager.DISALLOW_CONFIG_TETHERING);
893 writeBoolean(serializer, restrictions, UserManager.DISALLOW_FACTORY_RESET);
894 writeBoolean(serializer, restrictions, UserManager.DISALLOW_ADD_USER);
895 writeBoolean(serializer, restrictions, UserManager.ENSURE_VERIFY_APPS);
896 writeBoolean(serializer, restrictions, UserManager.DISALLOW_CONFIG_CELL_BROADCASTS);
897 writeBoolean(serializer, restrictions, UserManager.DISALLOW_CONFIG_MOBILE_NETWORKS);
898 writeBoolean(serializer, restrictions, UserManager.DISALLOW_APPS_CONTROL);
899 writeBoolean(serializer, restrictions, UserManager.DISALLOW_MOUNT_PHYSICAL_MEDIA);
900 writeBoolean(serializer, restrictions, UserManager.DISALLOW_UNMUTE_MICROPHONE);
901 writeBoolean(serializer, restrictions, UserManager.DISALLOW_ADJUST_VOLUME);
Amith Yamasani390989d2014-07-17 10:52:03 -0700902 writeBoolean(serializer, restrictions, UserManager.DISALLOW_OUTGOING_CALLS);
903 writeBoolean(serializer, restrictions, UserManager.DISALLOW_SMS);
Jason Monk1c7c3192014-06-26 12:52:18 -0400904 writeBoolean(serializer, restrictions, UserManager.DISALLOW_CREATE_WINDOWS);
Amith Yamasani26af8292014-09-09 09:57:27 -0700905 writeBoolean(serializer, restrictions, UserManager.DISALLOW_CROSS_PROFILE_COPY_PASTE);
906 writeBoolean(serializer, restrictions, UserManager.DISALLOW_OUTGOING_BEAM);
Amith Yamasanie4afaa32014-06-30 14:55:07 +0530907 serializer.endTag(null, TAG_RESTRICTIONS);
908 }
909
Amith Yamasanie4cf7342012-12-17 11:12:09 -0800910 private UserInfo readUserLocked(int id) {
Amith Yamasani4b2e9342011-03-31 12:38:53 -0700911 int flags = 0;
Amith Yamasani2a003292012-08-14 18:25:45 -0700912 int serialNumber = id;
Amith Yamasani4b2e9342011-03-31 12:38:53 -0700913 String name = null;
Amith Yamasanib8151ec2012-04-18 18:02:48 -0700914 String iconPath = null;
Amith Yamasani920ace02012-09-20 22:15:37 -0700915 long creationTime = 0L;
916 long lastLoggedInTime = 0L;
Amith Yamasani655d0e22013-06-12 14:19:10 -0700917 long salt = 0L;
918 String pinHash = null;
919 int failedAttempts = 0;
Kenny Guy2a764942014-04-02 13:29:20 +0100920 int profileGroupId = UserInfo.NO_PROFILE_GROUP_ID;
Amith Yamasani655d0e22013-06-12 14:19:10 -0700921 long lastAttemptTime = 0L;
Dianne Hackbornd4ac8d72012-09-27 23:20:10 -0700922 boolean partial = false;
Adam Lesinskieddeb492014-09-08 17:50:03 -0700923 boolean guestToRemove = false;
Amith Yamasanie4cf7342012-12-17 11:12:09 -0800924 Bundle restrictions = new Bundle();
Amith Yamasani4b2e9342011-03-31 12:38:53 -0700925
926 FileInputStream fis = null;
927 try {
Amith Yamasani2a003292012-08-14 18:25:45 -0700928 AtomicFile userFile =
Amith Yamasanifc95e702013-09-26 13:20:17 -0700929 new AtomicFile(new File(mUsersDir, Integer.toString(id) + XML_SUFFIX));
Amith Yamasani2a003292012-08-14 18:25:45 -0700930 fis = userFile.openRead();
Amith Yamasani4b2e9342011-03-31 12:38:53 -0700931 XmlPullParser parser = Xml.newPullParser();
932 parser.setInput(fis, null);
933 int type;
934 while ((type = parser.next()) != XmlPullParser.START_TAG
935 && type != XmlPullParser.END_DOCUMENT) {
936 ;
937 }
938
939 if (type != XmlPullParser.START_TAG) {
Amith Yamasani0b285492011-04-14 17:35:23 -0700940 Slog.e(LOG_TAG, "Unable to read user " + id);
Amith Yamasani4b2e9342011-03-31 12:38:53 -0700941 return null;
942 }
943
944 if (type == XmlPullParser.START_TAG && parser.getName().equals(TAG_USER)) {
Amith Yamasani920ace02012-09-20 22:15:37 -0700945 int storedId = readIntAttribute(parser, ATTR_ID, -1);
946 if (storedId != id) {
Amith Yamasani0b285492011-04-14 17:35:23 -0700947 Slog.e(LOG_TAG, "User id does not match the file name");
Amith Yamasani4b2e9342011-03-31 12:38:53 -0700948 return null;
949 }
Amith Yamasani920ace02012-09-20 22:15:37 -0700950 serialNumber = readIntAttribute(parser, ATTR_SERIAL_NO, id);
951 flags = readIntAttribute(parser, ATTR_FLAGS, 0);
Amith Yamasanib8151ec2012-04-18 18:02:48 -0700952 iconPath = parser.getAttributeValue(null, ATTR_ICON_PATH);
Amith Yamasani920ace02012-09-20 22:15:37 -0700953 creationTime = readLongAttribute(parser, ATTR_CREATION_TIME, 0);
954 lastLoggedInTime = readLongAttribute(parser, ATTR_LAST_LOGGED_IN_TIME, 0);
Amith Yamasani655d0e22013-06-12 14:19:10 -0700955 salt = readLongAttribute(parser, ATTR_SALT, 0L);
956 pinHash = parser.getAttributeValue(null, ATTR_PIN_HASH);
957 failedAttempts = readIntAttribute(parser, ATTR_FAILED_ATTEMPTS, 0);
958 lastAttemptTime = readLongAttribute(parser, ATTR_LAST_RETRY_MS, 0L);
Kenny Guy2a764942014-04-02 13:29:20 +0100959 profileGroupId = readIntAttribute(parser, ATTR_PROFILE_GROUP_ID,
960 UserInfo.NO_PROFILE_GROUP_ID);
Dianne Hackbornd4ac8d72012-09-27 23:20:10 -0700961 String valueString = parser.getAttributeValue(null, ATTR_PARTIAL);
962 if ("true".equals(valueString)) {
963 partial = true;
964 }
Adam Lesinskieddeb492014-09-08 17:50:03 -0700965 valueString = parser.getAttributeValue(null, ATTR_GUEST_TO_REMOVE);
966 if ("true".equals(valueString)) {
967 guestToRemove = true;
968 }
Amith Yamasani4b2e9342011-03-31 12:38:53 -0700969
Amith Yamasanie4cf7342012-12-17 11:12:09 -0800970 int outerDepth = parser.getDepth();
971 while ((type = parser.next()) != XmlPullParser.END_DOCUMENT
972 && (type != XmlPullParser.END_TAG || parser.getDepth() > outerDepth)) {
973 if (type == XmlPullParser.END_TAG || type == XmlPullParser.TEXT) {
974 continue;
975 }
976 String tag = parser.getName();
977 if (TAG_NAME.equals(tag)) {
978 type = parser.next();
979 if (type == XmlPullParser.TEXT) {
980 name = parser.getText();
981 }
982 } else if (TAG_RESTRICTIONS.equals(tag)) {
Amith Yamasanie4afaa32014-06-30 14:55:07 +0530983 readRestrictionsLocked(parser, restrictions);
Amith Yamasani4b2e9342011-03-31 12:38:53 -0700984 }
985 }
986 }
Amith Yamasani4b2e9342011-03-31 12:38:53 -0700987
Amith Yamasanib8151ec2012-04-18 18:02:48 -0700988 UserInfo userInfo = new UserInfo(id, name, iconPath, flags);
Amith Yamasani2a003292012-08-14 18:25:45 -0700989 userInfo.serialNumber = serialNumber;
Amith Yamasani920ace02012-09-20 22:15:37 -0700990 userInfo.creationTime = creationTime;
991 userInfo.lastLoggedInTime = lastLoggedInTime;
Dianne Hackbornd4ac8d72012-09-27 23:20:10 -0700992 userInfo.partial = partial;
Adam Lesinskieddeb492014-09-08 17:50:03 -0700993 userInfo.guestToRemove = guestToRemove;
Kenny Guy2a764942014-04-02 13:29:20 +0100994 userInfo.profileGroupId = profileGroupId;
Amith Yamasanie4cf7342012-12-17 11:12:09 -0800995 mUserRestrictions.append(id, restrictions);
Amith Yamasani655d0e22013-06-12 14:19:10 -0700996 if (salt != 0L) {
997 RestrictionsPinState pinState = mRestrictionsPinStates.get(id);
998 if (pinState == null) {
999 pinState = new RestrictionsPinState();
1000 mRestrictionsPinStates.put(id, pinState);
1001 }
1002 pinState.salt = salt;
1003 pinState.pinHash = pinHash;
1004 pinState.failedAttempts = failedAttempts;
1005 pinState.lastAttemptTime = lastAttemptTime;
1006 }
Amith Yamasani4b2e9342011-03-31 12:38:53 -07001007 return userInfo;
1008
1009 } catch (IOException ioe) {
1010 } catch (XmlPullParserException pe) {
Dianne Hackbornbfd89b32011-12-15 18:22:54 -08001011 } finally {
1012 if (fis != null) {
1013 try {
1014 fis.close();
1015 } catch (IOException e) {
1016 }
1017 }
Amith Yamasani4b2e9342011-03-31 12:38:53 -07001018 }
1019 return null;
1020 }
1021
Amith Yamasanie4afaa32014-06-30 14:55:07 +05301022 private void readRestrictionsLocked(XmlPullParser parser, Bundle restrictions)
1023 throws IOException {
1024 readBoolean(parser, restrictions, UserManager.DISALLOW_CONFIG_WIFI);
1025 readBoolean(parser, restrictions, UserManager.DISALLOW_MODIFY_ACCOUNTS);
1026 readBoolean(parser, restrictions, UserManager.DISALLOW_INSTALL_APPS);
1027 readBoolean(parser, restrictions, UserManager.DISALLOW_UNINSTALL_APPS);
1028 readBoolean(parser, restrictions, UserManager.DISALLOW_SHARE_LOCATION);
1029 readBoolean(parser, restrictions,
1030 UserManager.DISALLOW_INSTALL_UNKNOWN_SOURCES);
1031 readBoolean(parser, restrictions, UserManager.DISALLOW_CONFIG_BLUETOOTH);
1032 readBoolean(parser, restrictions, UserManager.DISALLOW_USB_FILE_TRANSFER);
1033 readBoolean(parser, restrictions, UserManager.DISALLOW_CONFIG_CREDENTIALS);
1034 readBoolean(parser, restrictions, UserManager.DISALLOW_REMOVE_USER);
1035 readBoolean(parser, restrictions, UserManager.DISALLOW_DEBUGGING_FEATURES);
1036 readBoolean(parser, restrictions, UserManager.DISALLOW_CONFIG_VPN);
1037 readBoolean(parser, restrictions, UserManager.DISALLOW_CONFIG_TETHERING);
1038 readBoolean(parser, restrictions, UserManager.DISALLOW_FACTORY_RESET);
1039 readBoolean(parser, restrictions, UserManager.DISALLOW_ADD_USER);
1040 readBoolean(parser, restrictions, UserManager.ENSURE_VERIFY_APPS);
1041 readBoolean(parser, restrictions, UserManager.DISALLOW_CONFIG_CELL_BROADCASTS);
1042 readBoolean(parser, restrictions, UserManager.DISALLOW_CONFIG_MOBILE_NETWORKS);
1043 readBoolean(parser, restrictions, UserManager.DISALLOW_APPS_CONTROL);
1044 readBoolean(parser, restrictions,
1045 UserManager.DISALLOW_MOUNT_PHYSICAL_MEDIA);
1046 readBoolean(parser, restrictions, UserManager.DISALLOW_UNMUTE_MICROPHONE);
1047 readBoolean(parser, restrictions, UserManager.DISALLOW_ADJUST_VOLUME);
Amith Yamasani390989d2014-07-17 10:52:03 -07001048 readBoolean(parser, restrictions, UserManager.DISALLOW_OUTGOING_CALLS);
1049 readBoolean(parser, restrictions, UserManager.DISALLOW_SMS);
Jason Monk1c7c3192014-06-26 12:52:18 -04001050 readBoolean(parser, restrictions, UserManager.DISALLOW_CREATE_WINDOWS);
Amith Yamasani26af8292014-09-09 09:57:27 -07001051 readBoolean(parser, restrictions, UserManager.DISALLOW_CROSS_PROFILE_COPY_PASTE);
1052 readBoolean(parser, restrictions, UserManager.DISALLOW_OUTGOING_BEAM);
Amith Yamasanie4afaa32014-06-30 14:55:07 +05301053 }
1054
Amith Yamasanie4cf7342012-12-17 11:12:09 -08001055 private void readBoolean(XmlPullParser parser, Bundle restrictions,
1056 String restrictionKey) {
1057 String value = parser.getAttributeValue(null, restrictionKey);
Amith Yamasani71e6c692013-03-24 17:39:28 -07001058 if (value != null) {
1059 restrictions.putBoolean(restrictionKey, Boolean.parseBoolean(value));
1060 }
Amith Yamasanie4cf7342012-12-17 11:12:09 -08001061 }
1062
1063 private void writeBoolean(XmlSerializer xml, Bundle restrictions, String restrictionKey)
1064 throws IOException {
1065 if (restrictions.containsKey(restrictionKey)) {
1066 xml.attribute(null, restrictionKey,
1067 Boolean.toString(restrictions.getBoolean(restrictionKey)));
1068 }
1069 }
1070
Amith Yamasani920ace02012-09-20 22:15:37 -07001071 private int readIntAttribute(XmlPullParser parser, String attr, int defaultValue) {
1072 String valueString = parser.getAttributeValue(null, attr);
1073 if (valueString == null) return defaultValue;
1074 try {
1075 return Integer.parseInt(valueString);
1076 } catch (NumberFormatException nfe) {
1077 return defaultValue;
1078 }
1079 }
1080
1081 private long readLongAttribute(XmlPullParser parser, String attr, long defaultValue) {
1082 String valueString = parser.getAttributeValue(null, attr);
1083 if (valueString == null) return defaultValue;
1084 try {
1085 return Long.parseLong(valueString);
1086 } catch (NumberFormatException nfe) {
1087 return defaultValue;
1088 }
1089 }
1090
Amith Yamasani1a7472e2013-07-02 11:17:30 -07001091 private boolean isPackageInstalled(String pkg, int userId) {
1092 final ApplicationInfo info = mPm.getApplicationInfo(pkg,
1093 PackageManager.GET_UNINSTALLED_PACKAGES,
1094 userId);
1095 if (info == null || (info.flags&ApplicationInfo.FLAG_INSTALLED) == 0) {
1096 return false;
1097 }
1098 return true;
1099 }
1100
Amith Yamasanib82add22013-07-09 11:24:44 -07001101 /**
Kenny Guyd21b2182014-07-17 16:38:55 +01001102 * Removes all the restrictions files (res_<packagename>) for a given user.
Amith Yamasanib82add22013-07-09 11:24:44 -07001103 * Does not do any permissions checking.
1104 */
Kenny Guyd21b2182014-07-17 16:38:55 +01001105 private void cleanAppRestrictions(int userId) {
Amith Yamasanib82add22013-07-09 11:24:44 -07001106 synchronized (mPackagesLock) {
1107 File dir = Environment.getUserSystemDirectory(userId);
1108 String[] files = dir.list();
1109 if (files == null) return;
1110 for (String fileName : files) {
1111 if (fileName.startsWith(RESTRICTIONS_FILE_PREFIX)) {
1112 File resFile = new File(dir, fileName);
1113 if (resFile.exists()) {
Kenny Guyd21b2182014-07-17 16:38:55 +01001114 resFile.delete();
Amith Yamasanib82add22013-07-09 11:24:44 -07001115 }
1116 }
1117 }
1118 }
1119 }
1120
Amith Yamasani1a7472e2013-07-02 11:17:30 -07001121 /**
1122 * Removes the app restrictions file for a specific package and user id, if it exists.
1123 */
1124 private void cleanAppRestrictionsForPackage(String pkg, int userId) {
1125 synchronized (mPackagesLock) {
1126 File dir = Environment.getUserSystemDirectory(userId);
Amith Yamasanifc95e702013-09-26 13:20:17 -07001127 File resFile = new File(dir, packageToRestrictionsFileName(pkg));
Amith Yamasani1a7472e2013-07-02 11:17:30 -07001128 if (resFile.exists()) {
1129 resFile.delete();
1130 }
1131 }
1132 }
1133
Kenny Guya52dc3e2014-02-11 15:33:14 +00001134 @Override
Kenny Guy2a764942014-04-02 13:29:20 +01001135 public UserInfo createProfileForUser(String name, int flags, int userId) {
Kenny Guya52dc3e2014-02-11 15:33:14 +00001136 checkManageUsersPermission("Only the system can create users");
Kenny Guy2a764942014-04-02 13:29:20 +01001137 if (userId != UserHandle.USER_OWNER) {
1138 Slog.w(LOG_TAG, "Only user owner can have profiles");
Kenny Guya52dc3e2014-02-11 15:33:14 +00001139 return null;
1140 }
Kenny Guy2a764942014-04-02 13:29:20 +01001141 return createUserInternal(name, flags, userId);
Kenny Guya52dc3e2014-02-11 15:33:14 +00001142 }
1143
Amith Yamasani258848d2012-08-10 17:06:33 -07001144 @Override
Amith Yamasani13593602012-03-22 16:16:17 -07001145 public UserInfo createUser(String name, int flags) {
Amith Yamasani2a003292012-08-14 18:25:45 -07001146 checkManageUsersPermission("Only the system can create users");
Nicolas Prevotc6d033e2014-02-27 13:11:09 +00001147 return createUserInternal(name, flags, UserHandle.USER_NULL);
Kenny Guya52dc3e2014-02-11 15:33:14 +00001148 }
Amith Yamasanifaea76f2012-09-11 10:59:48 -07001149
Jessica Hummelbe81c802014-04-22 15:49:22 +01001150 private UserInfo createUserInternal(String name, int flags, int parentId) {
Julia Reynolds75175022014-06-26 16:35:00 -04001151 if (getUserRestrictions(UserHandle.getCallingUserId()).getBoolean(
1152 UserManager.DISALLOW_ADD_USER, false)) {
1153 Log.w(LOG_TAG, "Cannot add user. DISALLOW_ADD_USER is enabled.");
1154 return null;
1155 }
Amith Yamasani95ab7842014-08-11 17:09:26 -07001156 final boolean isGuest = (flags & UserInfo.FLAG_GUEST) != 0;
Dianne Hackborn5dc5a002012-09-15 19:33:48 -07001157 final long ident = Binder.clearCallingIdentity();
Nicolas Prevotc6d033e2014-02-27 13:11:09 +00001158 UserInfo userInfo = null;
Dianne Hackborn5dc5a002012-09-15 19:33:48 -07001159 try {
1160 synchronized (mInstallLock) {
1161 synchronized (mPackagesLock) {
Jessica Hummelbe81c802014-04-22 15:49:22 +01001162 UserInfo parent = null;
1163 if (parentId != UserHandle.USER_NULL) {
1164 parent = getUserInfoLocked(parentId);
1165 if (parent == null) return null;
Nicolas Prevotc6d033e2014-02-27 13:11:09 +00001166 }
Amith Yamasani95ab7842014-08-11 17:09:26 -07001167 // If we're not adding a guest user and the limit has been reached,
1168 // cannot add a user.
1169 if (!isGuest && isUserLimitReachedLocked()) {
1170 return null;
1171 }
1172 // If we're adding a guest and there already exists one, bail.
Adam Lesinskieddeb492014-09-08 17:50:03 -07001173 if (isGuest && findCurrentGuestUserLocked() != null) {
Amith Yamasani95ab7842014-08-11 17:09:26 -07001174 return null;
1175 }
1176 // Limit number of managed profiles that can be created
1177 if ((flags & UserInfo.FLAG_MANAGED_PROFILE) != 0
1178 && numberOfUsersOfTypeLocked(UserInfo.FLAG_MANAGED_PROFILE, true)
1179 >= MAX_MANAGED_PROFILES) {
1180 return null;
1181 }
Dianne Hackborn5dc5a002012-09-15 19:33:48 -07001182 int userId = getNextAvailableIdLocked();
1183 userInfo = new UserInfo(userId, name, null, flags);
1184 File userPath = new File(mBaseUserPath, Integer.toString(userId));
1185 userInfo.serialNumber = mNextSerialNumber++;
Amith Yamasani920ace02012-09-20 22:15:37 -07001186 long now = System.currentTimeMillis();
1187 userInfo.creationTime = (now > EPOCH_PLUS_30_YEARS) ? now : 0;
Dianne Hackbornd4ac8d72012-09-27 23:20:10 -07001188 userInfo.partial = true;
Amith Yamasani16389312012-10-17 21:20:14 -07001189 Environment.getUserSystemDirectory(userInfo.id).mkdirs();
Dianne Hackborn5dc5a002012-09-15 19:33:48 -07001190 mUsers.put(userId, userInfo);
1191 writeUserListLocked();
Jessica Hummelbe81c802014-04-22 15:49:22 +01001192 if (parent != null) {
1193 if (parent.profileGroupId == UserInfo.NO_PROFILE_GROUP_ID) {
1194 parent.profileGroupId = parent.id;
Fyodor Kupolov75d0ea82014-12-15 16:21:07 -08001195 scheduleWriteUserLocked(parent);
Kenny Guya52dc3e2014-02-11 15:33:14 +00001196 }
Jessica Hummelbe81c802014-04-22 15:49:22 +01001197 userInfo.profileGroupId = parent.profileGroupId;
Kenny Guya52dc3e2014-02-11 15:33:14 +00001198 }
Dianne Hackborn5dc5a002012-09-15 19:33:48 -07001199 mPm.createNewUserLILPw(userId, userPath);
Dianne Hackbornd4ac8d72012-09-27 23:20:10 -07001200 userInfo.partial = false;
Fyodor Kupolov75d0ea82014-12-15 16:21:07 -08001201 scheduleWriteUserLocked(userInfo);
Dianne Hackbornd4ac8d72012-09-27 23:20:10 -07001202 updateUserIdsLocked();
Geoffrey Borggaarde45e45e32013-01-24 10:03:20 -05001203 Bundle restrictions = new Bundle();
Geoffrey Borggaarde45e45e32013-01-24 10:03:20 -05001204 mUserRestrictions.append(userId, restrictions);
Dianne Hackborn5dc5a002012-09-15 19:33:48 -07001205 }
Dianne Hackborn4428e172012-08-24 17:43:05 -07001206 }
Dianne Hackborn5dc5a002012-09-15 19:33:48 -07001207 if (userInfo != null) {
1208 Intent addedIntent = new Intent(Intent.ACTION_USER_ADDED);
1209 addedIntent.putExtra(Intent.EXTRA_USER_HANDLE, userInfo.id);
1210 mContext.sendBroadcastAsUser(addedIntent, UserHandle.ALL,
1211 android.Manifest.permission.MANAGE_USERS);
1212 }
1213 } finally {
1214 Binder.restoreCallingIdentity(ident);
Amith Yamasani258848d2012-08-10 17:06:33 -07001215 }
Amith Yamasani4b2e9342011-03-31 12:38:53 -07001216 return userInfo;
1217 }
1218
Amith Yamasani95ab7842014-08-11 17:09:26 -07001219 private int numberOfUsersOfTypeLocked(int flags, boolean excludeDying) {
1220 int count = 0;
1221 for (int i = mUsers.size() - 1; i >= 0; i--) {
1222 UserInfo user = mUsers.valueAt(i);
1223 if (!excludeDying || !mRemovingUserIds.get(user.id)) {
1224 if ((user.flags & flags) != 0) {
1225 count++;
1226 }
1227 }
1228 }
1229 return count;
1230 }
1231
Amith Yamasani0b285492011-04-14 17:35:23 -07001232 /**
Adam Lesinskieddeb492014-09-08 17:50:03 -07001233 * Find the current guest user. If the Guest user is partial,
1234 * then do not include it in the results as it is about to die.
1235 * This is different than {@link #numberOfUsersOfTypeLocked(int, boolean)} due to
1236 * the special handling of Guests being removed.
1237 */
1238 private UserInfo findCurrentGuestUserLocked() {
1239 final int size = mUsers.size();
1240 for (int i = 0; i < size; i++) {
1241 final UserInfo user = mUsers.valueAt(i);
1242 if (user.isGuest() && !user.guestToRemove && !mRemovingUserIds.get(user.id)) {
1243 return user;
1244 }
1245 }
1246 return null;
1247 }
1248
1249 /**
Amith Yamasani1df14732014-08-29 21:37:27 -07001250 * Mark this guest user for deletion to allow us to create another guest
1251 * and switch to that user before actually removing this guest.
1252 * @param userHandle the userid of the current guest
1253 * @return whether the user could be marked for deletion
1254 */
1255 public boolean markGuestForDeletion(int userHandle) {
1256 checkManageUsersPermission("Only the system can remove users");
1257 if (getUserRestrictions(UserHandle.getCallingUserId()).getBoolean(
1258 UserManager.DISALLOW_REMOVE_USER, false)) {
1259 Log.w(LOG_TAG, "Cannot remove user. DISALLOW_REMOVE_USER is enabled.");
1260 return false;
1261 }
1262
1263 long ident = Binder.clearCallingIdentity();
1264 try {
1265 final UserInfo user;
1266 synchronized (mPackagesLock) {
1267 user = mUsers.get(userHandle);
1268 if (userHandle == 0 || user == null || mRemovingUserIds.get(userHandle)) {
1269 return false;
1270 }
1271 if (!user.isGuest()) {
1272 return false;
1273 }
Adam Lesinskieddeb492014-09-08 17:50:03 -07001274 // We set this to a guest user that is to be removed. This is a temporary state
1275 // where we are allowed to add new Guest users, even if this one is still not
1276 // removed. This user will still show up in getUserInfo() calls.
1277 // If we don't get around to removing this Guest user, it will be purged on next
1278 // startup.
1279 user.guestToRemove = true;
Amith Yamasani1df14732014-08-29 21:37:27 -07001280 // Mark it as disabled, so that it isn't returned any more when
1281 // profiles are queried.
1282 user.flags |= UserInfo.FLAG_DISABLED;
Amith Yamasani1df14732014-08-29 21:37:27 -07001283 writeUserLocked(user);
1284 }
1285 } finally {
1286 Binder.restoreCallingIdentity(ident);
1287 }
1288 return true;
1289 }
1290
1291 /**
Amith Yamasani0b285492011-04-14 17:35:23 -07001292 * Removes a user and all data directories created for that user. This method should be called
1293 * after the user's processes have been terminated.
Dianne Hackborn10ad9822014-03-17 11:28:36 -07001294 * @param userHandle the user's id
Amith Yamasani0b285492011-04-14 17:35:23 -07001295 */
Amith Yamasani258848d2012-08-10 17:06:33 -07001296 public boolean removeUser(int userHandle) {
Amith Yamasani2a003292012-08-14 18:25:45 -07001297 checkManageUsersPermission("Only the system can remove users");
Julia Reynolds4ac5f852014-06-23 17:38:51 -04001298 if (getUserRestrictions(UserHandle.getCallingUserId()).getBoolean(
1299 UserManager.DISALLOW_REMOVE_USER, false)) {
1300 Log.w(LOG_TAG, "Cannot remove user. DISALLOW_REMOVE_USER is enabled.");
1301 return false;
1302 }
1303
Kenny Guyee58b4f2014-05-23 15:19:53 +01001304 long ident = Binder.clearCallingIdentity();
1305 try {
1306 final UserInfo user;
1307 synchronized (mPackagesLock) {
1308 user = mUsers.get(userHandle);
Kenny Guy17c9d692014-06-13 13:51:42 +01001309 if (userHandle == 0 || user == null || mRemovingUserIds.get(userHandle)) {
Kenny Guyee58b4f2014-05-23 15:19:53 +01001310 return false;
1311 }
Jeff Sharkey6eb09392014-11-14 15:57:59 -08001312
1313 // We remember deleted user IDs to prevent them from being
1314 // reused during the current boot; they can still be reused
1315 // after a reboot.
Kenny Guyee58b4f2014-05-23 15:19:53 +01001316 mRemovingUserIds.put(userHandle, true);
Jeff Sharkey6eb09392014-11-14 15:57:59 -08001317
Kenny Guyee58b4f2014-05-23 15:19:53 +01001318 try {
1319 mAppOpsService.removeUser(userHandle);
1320 } catch (RemoteException e) {
1321 Log.w(LOG_TAG, "Unable to notify AppOpsService of removing user", e);
1322 }
1323 // Set this to a partially created user, so that the user will be purged
1324 // on next startup, in case the runtime stops now before stopping and
1325 // removing the user completely.
1326 user.partial = true;
1327 // Mark it as disabled, so that it isn't returned any more when
1328 // profiles are queried.
1329 user.flags |= UserInfo.FLAG_DISABLED;
1330 writeUserLocked(user);
1331 }
1332
1333 if (user.profileGroupId != UserInfo.NO_PROFILE_GROUP_ID
1334 && user.isManagedProfile()) {
1335 // Send broadcast to notify system that the user removed was a
1336 // managed user.
1337 sendProfileRemovedBroadcast(user.profileGroupId, user.id);
1338 }
1339
1340 if (DBG) Slog.i(LOG_TAG, "Stopping user " + userHandle);
1341 int res;
1342 try {
1343 res = ActivityManagerNative.getDefault().stopUser(userHandle,
1344 new IStopUserCallback.Stub() {
1345 @Override
1346 public void userStopped(int userId) {
1347 finishRemoveUser(userId);
1348 }
1349 @Override
1350 public void userStopAborted(int userId) {
1351 }
1352 });
1353 } catch (RemoteException e) {
Dianne Hackborn80a4af22012-08-27 19:18:31 -07001354 return false;
1355 }
Kenny Guyee58b4f2014-05-23 15:19:53 +01001356 return res == ActivityManager.USER_OP_SUCCESS;
1357 } finally {
1358 Binder.restoreCallingIdentity(ident);
Dianne Hackborn80a4af22012-08-27 19:18:31 -07001359 }
Dianne Hackborn80a4af22012-08-27 19:18:31 -07001360 }
1361
Amith Yamasanidb6a14c2012-10-17 21:16:52 -07001362 void finishRemoveUser(final int userHandle) {
Amith Yamasani16389312012-10-17 21:20:14 -07001363 if (DBG) Slog.i(LOG_TAG, "finishRemoveUser " + userHandle);
Amith Yamasanidb6a14c2012-10-17 21:16:52 -07001364 // Let other services shutdown any activity and clean up their state before completely
1365 // wiping the user's system directory and removing from the user list
Dianne Hackborn5dc5a002012-09-15 19:33:48 -07001366 long ident = Binder.clearCallingIdentity();
1367 try {
1368 Intent addedIntent = new Intent(Intent.ACTION_USER_REMOVED);
1369 addedIntent.putExtra(Intent.EXTRA_USER_HANDLE, userHandle);
Amith Yamasanidb6a14c2012-10-17 21:16:52 -07001370 mContext.sendOrderedBroadcastAsUser(addedIntent, UserHandle.ALL,
1371 android.Manifest.permission.MANAGE_USERS,
1372
1373 new BroadcastReceiver() {
1374 @Override
1375 public void onReceive(Context context, Intent intent) {
1376 if (DBG) {
1377 Slog.i(LOG_TAG,
1378 "USER_REMOVED broadcast sent, cleaning up user data "
1379 + userHandle);
1380 }
1381 new Thread() {
1382 public void run() {
1383 synchronized (mInstallLock) {
1384 synchronized (mPackagesLock) {
1385 removeUserStateLocked(userHandle);
1386 }
1387 }
1388 }
1389 }.start();
1390 }
1391 },
1392
1393 null, Activity.RESULT_OK, null, null);
Dianne Hackborn5dc5a002012-09-15 19:33:48 -07001394 } finally {
1395 Binder.restoreCallingIdentity(ident);
1396 }
Amith Yamasani2a003292012-08-14 18:25:45 -07001397 }
1398
Jeff Sharkeyffe0cb42012-11-05 17:24:43 -08001399 private void removeUserStateLocked(final int userHandle) {
Dianne Hackbornd4ac8d72012-09-27 23:20:10 -07001400 // Cleanup package manager settings
Amith Yamasanidda003f2014-08-28 18:06:51 -07001401 mPm.cleanUpUserLILPw(this, userHandle);
Dianne Hackbornd4ac8d72012-09-27 23:20:10 -07001402
1403 // Remove this user from the list
1404 mUsers.remove(userHandle);
Jeff Sharkeyffe0cb42012-11-05 17:24:43 -08001405
Amith Yamasani655d0e22013-06-12 14:19:10 -07001406 mRestrictionsPinStates.remove(userHandle);
Dianne Hackbornd4ac8d72012-09-27 23:20:10 -07001407 // Remove user file
Amith Yamasanifc95e702013-09-26 13:20:17 -07001408 AtomicFile userFile = new AtomicFile(new File(mUsersDir, userHandle + XML_SUFFIX));
Dianne Hackbornd4ac8d72012-09-27 23:20:10 -07001409 userFile.delete();
1410 // Update the user list
1411 writeUserListLocked();
1412 updateUserIdsLocked();
1413 removeDirectoryRecursive(Environment.getUserSystemDirectory(userHandle));
1414 }
1415
Amith Yamasani61f57372012-08-31 12:12:28 -07001416 private void removeDirectoryRecursive(File parent) {
1417 if (parent.isDirectory()) {
1418 String[] files = parent.list();
1419 for (String filename : files) {
1420 File child = new File(parent, filename);
1421 removeDirectoryRecursive(child);
1422 }
1423 }
1424 parent.delete();
1425 }
1426
Kenny Guyf8d3a232014-05-15 16:09:52 +01001427 private void sendProfileRemovedBroadcast(int parentUserId, int removedUserId) {
Adam Connors7b66ed52014-04-14 11:58:10 +01001428 Intent managedProfileIntent = new Intent(Intent.ACTION_MANAGED_PROFILE_REMOVED);
Adam Connorsd4b584e2014-06-09 13:55:47 +01001429 managedProfileIntent.addFlags(Intent.FLAG_RECEIVER_REGISTERED_ONLY |
1430 Intent.FLAG_RECEIVER_FOREGROUND);
Kenny Guyf8d3a232014-05-15 16:09:52 +01001431 managedProfileIntent.putExtra(Intent.EXTRA_USER, new UserHandle(removedUserId));
1432 mContext.sendBroadcastAsUser(managedProfileIntent, new UserHandle(parentUserId), null);
Adam Connors7b66ed52014-04-14 11:58:10 +01001433 }
1434
Amith Yamasani2a003292012-08-14 18:25:45 -07001435 @Override
Amith Yamasani7e99bc02013-04-16 18:24:51 -07001436 public Bundle getApplicationRestrictions(String packageName) {
1437 return getApplicationRestrictionsForUser(packageName, UserHandle.getCallingUserId());
1438 }
1439
1440 @Override
1441 public Bundle getApplicationRestrictionsForUser(String packageName, int userId) {
Amith Yamasanidf2e92a2013-03-01 17:04:38 -08001442 if (UserHandle.getCallingUserId() != userId
Amith Yamasani9429afb2013-04-10 18:40:51 -07001443 || !UserHandle.isSameApp(Binder.getCallingUid(), getUidForPackage(packageName))) {
Amith Yamasanibe465322014-04-24 13:45:17 -07001444 checkManageUsersPermission("Only system can get restrictions for other users/apps");
Amith Yamasanidf2e92a2013-03-01 17:04:38 -08001445 }
1446 synchronized (mPackagesLock) {
1447 // Read the restrictions from XML
1448 return readApplicationRestrictionsLocked(packageName, userId);
1449 }
1450 }
1451
1452 @Override
Amith Yamasani7e99bc02013-04-16 18:24:51 -07001453 public void setApplicationRestrictions(String packageName, Bundle restrictions,
Amith Yamasanidf2e92a2013-03-01 17:04:38 -08001454 int userId) {
1455 if (UserHandle.getCallingUserId() != userId
Amith Yamasani9429afb2013-04-10 18:40:51 -07001456 || !UserHandle.isSameApp(Binder.getCallingUid(), getUidForPackage(packageName))) {
Amith Yamasanibe465322014-04-24 13:45:17 -07001457 checkManageUsersPermission("Only system can set restrictions for other users/apps");
Amith Yamasanidf2e92a2013-03-01 17:04:38 -08001458 }
1459 synchronized (mPackagesLock) {
Kenny Guyd21b2182014-07-17 16:38:55 +01001460 if (restrictions == null || restrictions.isEmpty()) {
1461 cleanAppRestrictionsForPackage(packageName, userId);
1462 } else {
1463 // Write the restrictions to XML
1464 writeApplicationRestrictionsLocked(packageName, restrictions, userId);
1465 }
Amith Yamasanidf2e92a2013-03-01 17:04:38 -08001466 }
Robin Lee66e5d962014-04-09 16:44:21 +01001467
Kenny Guyd21b2182014-07-17 16:38:55 +01001468 if (isPackageInstalled(packageName, userId)) {
1469 // Notify package of changes via an intent - only sent to explicitly registered receivers.
1470 Intent changeIntent = new Intent(Intent.ACTION_APPLICATION_RESTRICTIONS_CHANGED);
1471 changeIntent.setPackage(packageName);
1472 changeIntent.addFlags(Intent.FLAG_RECEIVER_REGISTERED_ONLY);
1473 mContext.sendBroadcastAsUser(changeIntent, new UserHandle(userId));
1474 }
Amith Yamasanidf2e92a2013-03-01 17:04:38 -08001475 }
1476
Amith Yamasani655d0e22013-06-12 14:19:10 -07001477 @Override
Amith Yamasanid304af62013-09-05 09:30:23 -07001478 public boolean setRestrictionsChallenge(String newPin) {
Amith Yamasani655d0e22013-06-12 14:19:10 -07001479 checkManageUsersPermission("Only system can modify the restrictions pin");
1480 int userId = UserHandle.getCallingUserId();
1481 synchronized (mPackagesLock) {
1482 RestrictionsPinState pinState = mRestrictionsPinStates.get(userId);
1483 if (pinState == null) {
1484 pinState = new RestrictionsPinState();
1485 }
1486 if (newPin == null) {
1487 pinState.salt = 0;
1488 pinState.pinHash = null;
1489 } else {
1490 try {
1491 pinState.salt = SecureRandom.getInstance("SHA1PRNG").nextLong();
1492 } catch (NoSuchAlgorithmException e) {
1493 pinState.salt = (long) (Math.random() * Long.MAX_VALUE);
1494 }
1495 pinState.pinHash = passwordToHash(newPin, pinState.salt);
1496 pinState.failedAttempts = 0;
1497 }
1498 mRestrictionsPinStates.put(userId, pinState);
1499 writeUserLocked(mUsers.get(userId));
1500 }
1501 return true;
1502 }
1503
1504 @Override
Amith Yamasanid304af62013-09-05 09:30:23 -07001505 public int checkRestrictionsChallenge(String pin) {
Amith Yamasani655d0e22013-06-12 14:19:10 -07001506 checkManageUsersPermission("Only system can verify the restrictions pin");
1507 int userId = UserHandle.getCallingUserId();
1508 synchronized (mPackagesLock) {
1509 RestrictionsPinState pinState = mRestrictionsPinStates.get(userId);
1510 // If there's no pin set, return error code
1511 if (pinState == null || pinState.salt == 0 || pinState.pinHash == null) {
1512 return UserManager.PIN_VERIFICATION_FAILED_NOT_SET;
1513 } else if (pin == null) {
1514 // If just checking if user can be prompted, return remaining time
1515 int waitTime = getRemainingTimeForPinAttempt(pinState);
1516 Slog.d(LOG_TAG, "Remaining waittime peek=" + waitTime);
1517 return waitTime;
1518 } else {
1519 int waitTime = getRemainingTimeForPinAttempt(pinState);
1520 Slog.d(LOG_TAG, "Remaining waittime=" + waitTime);
1521 if (waitTime > 0) {
1522 return waitTime;
1523 }
1524 if (passwordToHash(pin, pinState.salt).equals(pinState.pinHash)) {
1525 pinState.failedAttempts = 0;
Fyodor Kupolov75d0ea82014-12-15 16:21:07 -08001526 scheduleWriteUserLocked(mUsers.get(userId));
Amith Yamasani655d0e22013-06-12 14:19:10 -07001527 return UserManager.PIN_VERIFICATION_SUCCESS;
1528 } else {
1529 pinState.failedAttempts++;
1530 pinState.lastAttemptTime = System.currentTimeMillis();
Fyodor Kupolov75d0ea82014-12-15 16:21:07 -08001531 scheduleWriteUserLocked(mUsers.get(userId));
Amith Yamasani655d0e22013-06-12 14:19:10 -07001532 return waitTime;
1533 }
1534 }
1535 }
1536 }
1537
1538 private int getRemainingTimeForPinAttempt(RestrictionsPinState pinState) {
1539 int backoffIndex = Math.min(pinState.failedAttempts / BACKOFF_INC_INTERVAL,
1540 BACKOFF_TIMES.length - 1);
1541 int backoffTime = (pinState.failedAttempts % BACKOFF_INC_INTERVAL) == 0 ?
1542 BACKOFF_TIMES[backoffIndex] : 0;
1543 return (int) Math.max(backoffTime + pinState.lastAttemptTime - System.currentTimeMillis(),
1544 0);
1545 }
1546
1547 @Override
Amith Yamasanid304af62013-09-05 09:30:23 -07001548 public boolean hasRestrictionsChallenge() {
Amith Yamasani655d0e22013-06-12 14:19:10 -07001549 int userId = UserHandle.getCallingUserId();
1550 synchronized (mPackagesLock) {
Amith Yamasani0343ec32013-07-22 14:52:06 -07001551 return hasRestrictionsPinLocked(userId);
1552 }
1553 }
1554
1555 private boolean hasRestrictionsPinLocked(int userId) {
1556 RestrictionsPinState pinState = mRestrictionsPinStates.get(userId);
1557 if (pinState == null || pinState.salt == 0 || pinState.pinHash == null) {
1558 return false;
Amith Yamasani655d0e22013-06-12 14:19:10 -07001559 }
1560 return true;
1561 }
1562
Amith Yamasani1a7472e2013-07-02 11:17:30 -07001563 @Override
1564 public void removeRestrictions() {
Amith Yamasanibe465322014-04-24 13:45:17 -07001565 checkManageUsersPermission("Only system can remove restrictions");
Amith Yamasani1a7472e2013-07-02 11:17:30 -07001566 final int userHandle = UserHandle.getCallingUserId();
Amith Yamasani5e486f52013-08-07 11:06:44 -07001567 removeRestrictionsForUser(userHandle, true);
Amith Yamasani350962c2013-08-06 11:18:53 -07001568 }
1569
Amith Yamasanie5bcff62014-07-19 15:44:09 -07001570 private void removeRestrictionsForUser(final int userHandle, boolean unhideApps) {
Amith Yamasani1a7472e2013-07-02 11:17:30 -07001571 synchronized (mPackagesLock) {
1572 // Remove all user restrictions
1573 setUserRestrictions(new Bundle(), userHandle);
1574 // Remove restrictions pin
Amith Yamasanid304af62013-09-05 09:30:23 -07001575 setRestrictionsChallenge(null);
Amith Yamasani1a7472e2013-07-02 11:17:30 -07001576 // Remove any app restrictions
Kenny Guyd21b2182014-07-17 16:38:55 +01001577 cleanAppRestrictions(userHandle);
Amith Yamasani1a7472e2013-07-02 11:17:30 -07001578 }
Amith Yamasanie5bcff62014-07-19 15:44:09 -07001579 if (unhideApps) {
1580 unhideAllInstalledAppsForUser(userHandle);
Amith Yamasani5e486f52013-08-07 11:06:44 -07001581 }
1582 }
1583
Amith Yamasanie5bcff62014-07-19 15:44:09 -07001584 private void unhideAllInstalledAppsForUser(final int userHandle) {
Amith Yamasani1a7472e2013-07-02 11:17:30 -07001585 mHandler.post(new Runnable() {
1586 @Override
1587 public void run() {
1588 List<ApplicationInfo> apps =
1589 mPm.getInstalledApplications(PackageManager.GET_UNINSTALLED_PACKAGES,
1590 userHandle).getList();
1591 final long ident = Binder.clearCallingIdentity();
1592 try {
1593 for (ApplicationInfo appInfo : apps) {
1594 if ((appInfo.flags & ApplicationInfo.FLAG_INSTALLED) != 0
Amith Yamasanie5bcff62014-07-19 15:44:09 -07001595 && (appInfo.flags & ApplicationInfo.FLAG_HIDDEN) != 0) {
1596 mPm.setApplicationHiddenSettingAsUser(appInfo.packageName, false,
Amith Yamasani1a7472e2013-07-02 11:17:30 -07001597 userHandle);
1598 }
1599 }
1600 } finally {
1601 Binder.restoreCallingIdentity(ident);
1602 }
1603 }
1604 });
1605 }
1606
Amith Yamasani655d0e22013-06-12 14:19:10 -07001607 /*
1608 * Generate a hash for the given password. To avoid brute force attacks, we use a salted hash.
1609 * Not the most secure, but it is at least a second level of protection. First level is that
1610 * the file is in a location only readable by the system process.
1611 * @param password the password.
1612 * @param salt the randomly generated salt
1613 * @return the hash of the pattern in a String.
1614 */
1615 private String passwordToHash(String password, long salt) {
1616 if (password == null) {
1617 return null;
1618 }
1619 String algo = null;
1620 String hashed = salt + password;
1621 try {
1622 byte[] saltedPassword = (password + salt).getBytes();
1623 byte[] sha1 = MessageDigest.getInstance(algo = "SHA-1").digest(saltedPassword);
1624 byte[] md5 = MessageDigest.getInstance(algo = "MD5").digest(saltedPassword);
1625 hashed = toHex(sha1) + toHex(md5);
1626 } catch (NoSuchAlgorithmException e) {
1627 Log.w(LOG_TAG, "Failed to encode string because of missing algorithm: " + algo);
1628 }
1629 return hashed;
1630 }
1631
1632 private static String toHex(byte[] ary) {
1633 final String hex = "0123456789ABCDEF";
1634 String ret = "";
1635 for (int i = 0; i < ary.length; i++) {
1636 ret += hex.charAt((ary[i] >> 4) & 0xf);
1637 ret += hex.charAt(ary[i] & 0xf);
1638 }
1639 return ret;
1640 }
1641
Amith Yamasanidf2e92a2013-03-01 17:04:38 -08001642 private int getUidForPackage(String packageName) {
Amith Yamasani9429afb2013-04-10 18:40:51 -07001643 long ident = Binder.clearCallingIdentity();
Amith Yamasanidf2e92a2013-03-01 17:04:38 -08001644 try {
1645 return mContext.getPackageManager().getApplicationInfo(packageName,
1646 PackageManager.GET_UNINSTALLED_PACKAGES).uid;
1647 } catch (NameNotFoundException nnfe) {
1648 return -1;
Amith Yamasani9429afb2013-04-10 18:40:51 -07001649 } finally {
1650 Binder.restoreCallingIdentity(ident);
Amith Yamasanidf2e92a2013-03-01 17:04:38 -08001651 }
1652 }
1653
Amith Yamasani7e99bc02013-04-16 18:24:51 -07001654 private Bundle readApplicationRestrictionsLocked(String packageName,
Amith Yamasanidf2e92a2013-03-01 17:04:38 -08001655 int userId) {
Amith Yamasani7e99bc02013-04-16 18:24:51 -07001656 final Bundle restrictions = new Bundle();
Amith Yamasanidf2e92a2013-03-01 17:04:38 -08001657 final ArrayList<String> values = new ArrayList<String>();
1658
1659 FileInputStream fis = null;
1660 try {
1661 AtomicFile restrictionsFile =
1662 new AtomicFile(new File(Environment.getUserSystemDirectory(userId),
Amith Yamasanifc95e702013-09-26 13:20:17 -07001663 packageToRestrictionsFileName(packageName)));
Amith Yamasanidf2e92a2013-03-01 17:04:38 -08001664 fis = restrictionsFile.openRead();
1665 XmlPullParser parser = Xml.newPullParser();
1666 parser.setInput(fis, null);
1667 int type;
1668 while ((type = parser.next()) != XmlPullParser.START_TAG
1669 && type != XmlPullParser.END_DOCUMENT) {
1670 ;
1671 }
1672
1673 if (type != XmlPullParser.START_TAG) {
1674 Slog.e(LOG_TAG, "Unable to read restrictions file "
1675 + restrictionsFile.getBaseFile());
Amith Yamasani7e99bc02013-04-16 18:24:51 -07001676 return restrictions;
Amith Yamasanidf2e92a2013-03-01 17:04:38 -08001677 }
1678
1679 while ((type = parser.next()) != XmlPullParser.END_DOCUMENT) {
1680 if (type == XmlPullParser.START_TAG && parser.getName().equals(TAG_ENTRY)) {
1681 String key = parser.getAttributeValue(null, ATTR_KEY);
Amith Yamasani7e99bc02013-04-16 18:24:51 -07001682 String valType = parser.getAttributeValue(null, ATTR_VALUE_TYPE);
Amith Yamasanidf2e92a2013-03-01 17:04:38 -08001683 String multiple = parser.getAttributeValue(null, ATTR_MULTIPLE);
1684 if (multiple != null) {
Amith Yamasanie0840392014-08-27 10:33:17 -07001685 values.clear();
Amith Yamasanidf2e92a2013-03-01 17:04:38 -08001686 int count = Integer.parseInt(multiple);
1687 while (count > 0 && (type = parser.next()) != XmlPullParser.END_DOCUMENT) {
1688 if (type == XmlPullParser.START_TAG
1689 && parser.getName().equals(TAG_VALUE)) {
1690 values.add(parser.nextText().trim());
1691 count--;
1692 }
1693 }
1694 String [] valueStrings = new String[values.size()];
1695 values.toArray(valueStrings);
Amith Yamasani7e99bc02013-04-16 18:24:51 -07001696 restrictions.putStringArray(key, valueStrings);
Amith Yamasanidf2e92a2013-03-01 17:04:38 -08001697 } else {
1698 String value = parser.nextText().trim();
Amith Yamasani5b5aa402014-06-01 20:10:14 -07001699 if (ATTR_TYPE_BOOLEAN.equals(valType)) {
1700 restrictions.putBoolean(key, Boolean.parseBoolean(value));
1701 } else if (ATTR_TYPE_INTEGER.equals(valType)) {
1702 restrictions.putInt(key, Integer.parseInt(value));
1703 } else {
1704 restrictions.putString(key, value);
1705 }
Amith Yamasanidf2e92a2013-03-01 17:04:38 -08001706 }
1707 }
1708 }
Amith Yamasanidf2e92a2013-03-01 17:04:38 -08001709 } catch (IOException ioe) {
1710 } catch (XmlPullParserException pe) {
1711 } finally {
1712 if (fis != null) {
1713 try {
1714 fis.close();
1715 } catch (IOException e) {
1716 }
1717 }
1718 }
Amith Yamasani7e99bc02013-04-16 18:24:51 -07001719 return restrictions;
Amith Yamasanidf2e92a2013-03-01 17:04:38 -08001720 }
1721
1722 private void writeApplicationRestrictionsLocked(String packageName,
Amith Yamasani7e99bc02013-04-16 18:24:51 -07001723 Bundle restrictions, int userId) {
Amith Yamasanidf2e92a2013-03-01 17:04:38 -08001724 FileOutputStream fos = null;
1725 AtomicFile restrictionsFile = new AtomicFile(
1726 new File(Environment.getUserSystemDirectory(userId),
Amith Yamasanifc95e702013-09-26 13:20:17 -07001727 packageToRestrictionsFileName(packageName)));
Amith Yamasanidf2e92a2013-03-01 17:04:38 -08001728 try {
1729 fos = restrictionsFile.startWrite();
1730 final BufferedOutputStream bos = new BufferedOutputStream(fos);
1731
1732 // XmlSerializer serializer = XmlUtils.serializerInstance();
1733 final XmlSerializer serializer = new FastXmlSerializer();
1734 serializer.setOutput(bos, "utf-8");
1735 serializer.startDocument(null, true);
1736 serializer.setFeature("http://xmlpull.org/v1/doc/features.html#indent-output", true);
1737
1738 serializer.startTag(null, TAG_RESTRICTIONS);
1739
Amith Yamasani7e99bc02013-04-16 18:24:51 -07001740 for (String key : restrictions.keySet()) {
1741 Object value = restrictions.get(key);
Amith Yamasanidf2e92a2013-03-01 17:04:38 -08001742 serializer.startTag(null, TAG_ENTRY);
Amith Yamasani7e99bc02013-04-16 18:24:51 -07001743 serializer.attribute(null, ATTR_KEY, key);
1744
1745 if (value instanceof Boolean) {
1746 serializer.attribute(null, ATTR_VALUE_TYPE, ATTR_TYPE_BOOLEAN);
1747 serializer.text(value.toString());
Amith Yamasani5b5aa402014-06-01 20:10:14 -07001748 } else if (value instanceof Integer) {
1749 serializer.attribute(null, ATTR_VALUE_TYPE, ATTR_TYPE_INTEGER);
1750 serializer.text(value.toString());
Amith Yamasani7e99bc02013-04-16 18:24:51 -07001751 } else if (value == null || value instanceof String) {
1752 serializer.attribute(null, ATTR_VALUE_TYPE, ATTR_TYPE_STRING);
1753 serializer.text(value != null ? (String) value : "");
Amith Yamasanidf2e92a2013-03-01 17:04:38 -08001754 } else {
Amith Yamasani7e99bc02013-04-16 18:24:51 -07001755 serializer.attribute(null, ATTR_VALUE_TYPE, ATTR_TYPE_STRING_ARRAY);
1756 String[] values = (String[]) value;
Amith Yamasanidf2e92a2013-03-01 17:04:38 -08001757 serializer.attribute(null, ATTR_MULTIPLE, Integer.toString(values.length));
Amith Yamasani7e99bc02013-04-16 18:24:51 -07001758 for (String choice : values) {
Amith Yamasanidf2e92a2013-03-01 17:04:38 -08001759 serializer.startTag(null, TAG_VALUE);
Amith Yamasani7e99bc02013-04-16 18:24:51 -07001760 serializer.text(choice != null ? choice : "");
Amith Yamasanidf2e92a2013-03-01 17:04:38 -08001761 serializer.endTag(null, TAG_VALUE);
1762 }
1763 }
1764 serializer.endTag(null, TAG_ENTRY);
1765 }
1766
1767 serializer.endTag(null, TAG_RESTRICTIONS);
1768
1769 serializer.endDocument();
1770 restrictionsFile.finishWrite(fos);
1771 } catch (Exception e) {
1772 restrictionsFile.failWrite(fos);
1773 Slog.e(LOG_TAG, "Error writing application restrictions list");
1774 }
1775 }
1776
1777 @Override
Amith Yamasani2a003292012-08-14 18:25:45 -07001778 public int getUserSerialNumber(int userHandle) {
Dianne Hackborn4428e172012-08-24 17:43:05 -07001779 synchronized (mPackagesLock) {
Amith Yamasani2a003292012-08-14 18:25:45 -07001780 if (!exists(userHandle)) return -1;
Amith Yamasani195263742012-08-21 15:40:12 -07001781 return getUserInfoLocked(userHandle).serialNumber;
Amith Yamasani2a003292012-08-14 18:25:45 -07001782 }
1783 }
1784
1785 @Override
1786 public int getUserHandle(int userSerialNumber) {
Dianne Hackborn4428e172012-08-24 17:43:05 -07001787 synchronized (mPackagesLock) {
Amith Yamasani2a003292012-08-14 18:25:45 -07001788 for (int userId : mUserIds) {
Kenny Guy945f8832015-02-10 15:17:26 +00001789 UserInfo info = getUserInfoLocked(userId);
1790 if (info != null && info.serialNumber == userSerialNumber) return userId;
Amith Yamasani2a003292012-08-14 18:25:45 -07001791 }
1792 // Not found
1793 return -1;
Amith Yamasani13593602012-03-22 16:16:17 -07001794 }
1795 }
1796
Amith Yamasani0b285492011-04-14 17:35:23 -07001797 /**
1798 * Caches the list of user ids in an array, adjusting the array size when necessary.
1799 */
Amith Yamasani13593602012-03-22 16:16:17 -07001800 private void updateUserIdsLocked() {
Dianne Hackbornd4ac8d72012-09-27 23:20:10 -07001801 int num = 0;
Amith Yamasani0b285492011-04-14 17:35:23 -07001802 for (int i = 0; i < mUsers.size(); i++) {
Dianne Hackbornd4ac8d72012-09-27 23:20:10 -07001803 if (!mUsers.valueAt(i).partial) {
1804 num++;
1805 }
1806 }
Amith Yamasani16389312012-10-17 21:20:14 -07001807 final int[] newUsers = new int[num];
1808 int n = 0;
Dianne Hackbornd4ac8d72012-09-27 23:20:10 -07001809 for (int i = 0; i < mUsers.size(); i++) {
1810 if (!mUsers.valueAt(i).partial) {
Amith Yamasani16389312012-10-17 21:20:14 -07001811 newUsers[n++] = mUsers.keyAt(i);
Dianne Hackbornd4ac8d72012-09-27 23:20:10 -07001812 }
Amith Yamasani0b285492011-04-14 17:35:23 -07001813 }
Dianne Hackborn7767eac2012-08-23 18:25:40 -07001814 mUserIds = newUsers;
Amith Yamasani0b285492011-04-14 17:35:23 -07001815 }
1816
1817 /**
Amith Yamasani1a7472e2013-07-02 11:17:30 -07001818 * Make a note of the last started time of a user and do some cleanup.
Amith Yamasani920ace02012-09-20 22:15:37 -07001819 * @param userId the user that was just foregrounded
1820 */
1821 public void userForeground(int userId) {
1822 synchronized (mPackagesLock) {
1823 UserInfo user = mUsers.get(userId);
1824 long now = System.currentTimeMillis();
Dianne Hackbornd4ac8d72012-09-27 23:20:10 -07001825 if (user == null || user.partial) {
1826 Slog.w(LOG_TAG, "userForeground: unknown user #" + userId);
1827 return;
1828 }
1829 if (now > EPOCH_PLUS_30_YEARS) {
Amith Yamasani920ace02012-09-20 22:15:37 -07001830 user.lastLoggedInTime = now;
Fyodor Kupolov75d0ea82014-12-15 16:21:07 -08001831 scheduleWriteUserLocked(user);
Amith Yamasani920ace02012-09-20 22:15:37 -07001832 }
1833 }
1834 }
1835
1836 /**
Amith Yamasani0b285492011-04-14 17:35:23 -07001837 * Returns the next available user id, filling in any holes in the ids.
Amith Yamasani742a6712011-05-04 14:49:28 -07001838 * TODO: May not be a good idea to recycle ids, in case it results in confusion
1839 * for data and battery stats collection, or unexpected cross-talk.
Amith Yamasani0b285492011-04-14 17:35:23 -07001840 * @return
1841 */
Dianne Hackborn5dc5a002012-09-15 19:33:48 -07001842 private int getNextAvailableIdLocked() {
Dianne Hackborn4428e172012-08-24 17:43:05 -07001843 synchronized (mPackagesLock) {
Jeff Sharkeyffe0cb42012-11-05 17:24:43 -08001844 int i = MIN_USER_ID;
Amith Yamasani195263742012-08-21 15:40:12 -07001845 while (i < Integer.MAX_VALUE) {
Jeff Sharkeyffe0cb42012-11-05 17:24:43 -08001846 if (mUsers.indexOfKey(i) < 0 && !mRemovingUserIds.get(i)) {
Amith Yamasani195263742012-08-21 15:40:12 -07001847 break;
1848 }
1849 i++;
Amith Yamasani4b2e9342011-03-31 12:38:53 -07001850 }
Amith Yamasani195263742012-08-21 15:40:12 -07001851 return i;
Amith Yamasani4b2e9342011-03-31 12:38:53 -07001852 }
Amith Yamasani4b2e9342011-03-31 12:38:53 -07001853 }
Amith Yamasani920ace02012-09-20 22:15:37 -07001854
Amith Yamasanifc95e702013-09-26 13:20:17 -07001855 private String packageToRestrictionsFileName(String packageName) {
1856 return RESTRICTIONS_FILE_PREFIX + packageName + XML_SUFFIX;
1857 }
1858
1859 private String restrictionsFileNameToPackage(String fileName) {
1860 return fileName.substring(RESTRICTIONS_FILE_PREFIX.length(),
1861 (int) (fileName.length() - XML_SUFFIX.length()));
1862 }
1863
Amith Yamasani920ace02012-09-20 22:15:37 -07001864 @Override
1865 protected void dump(FileDescriptor fd, PrintWriter pw, String[] args) {
1866 if (mContext.checkCallingOrSelfPermission(android.Manifest.permission.DUMP)
1867 != PackageManager.PERMISSION_GRANTED) {
1868 pw.println("Permission Denial: can't dump UserManager from from pid="
1869 + Binder.getCallingPid()
1870 + ", uid=" + Binder.getCallingUid()
1871 + " without permission "
1872 + android.Manifest.permission.DUMP);
1873 return;
1874 }
1875
1876 long now = System.currentTimeMillis();
1877 StringBuilder sb = new StringBuilder();
1878 synchronized (mPackagesLock) {
1879 pw.println("Users:");
1880 for (int i = 0; i < mUsers.size(); i++) {
1881 UserInfo user = mUsers.valueAt(i);
1882 if (user == null) continue;
Amith Yamasani634cf312012-10-04 17:34:21 -07001883 pw.print(" "); pw.print(user); pw.print(" serialNo="); pw.print(user.serialNumber);
Jeff Sharkeyffe0cb42012-11-05 17:24:43 -08001884 if (mRemovingUserIds.get(mUsers.keyAt(i))) pw.print(" <removing> ");
Dianne Hackbornd4ac8d72012-09-27 23:20:10 -07001885 if (user.partial) pw.print(" <partial>");
1886 pw.println();
Amith Yamasani920ace02012-09-20 22:15:37 -07001887 pw.print(" Created: ");
1888 if (user.creationTime == 0) {
1889 pw.println("<unknown>");
1890 } else {
1891 sb.setLength(0);
1892 TimeUtils.formatDuration(now - user.creationTime, sb);
1893 sb.append(" ago");
1894 pw.println(sb);
1895 }
1896 pw.print(" Last logged in: ");
1897 if (user.lastLoggedInTime == 0) {
1898 pw.println("<unknown>");
1899 } else {
1900 sb.setLength(0);
1901 TimeUtils.formatDuration(now - user.lastLoggedInTime, sb);
1902 sb.append(" ago");
1903 pw.println(sb);
1904 }
1905 }
1906 }
1907 }
Fyodor Kupolov75d0ea82014-12-15 16:21:07 -08001908
1909 final class MainHandler extends Handler {
1910
1911 @Override
1912 public void handleMessage(Message msg) {
1913 switch (msg.what) {
1914 case WRITE_USER_MSG:
1915 removeMessages(WRITE_USER_MSG, msg.obj);
1916 synchronized (mPackagesLock) {
1917 int userId = ((UserInfo) msg.obj).id;
1918 UserInfo userInfo = mUsers.get(userId);
1919 if (userInfo != null) {
1920 writeUserLocked(userInfo);
1921 }
1922 }
1923 }
1924 }
1925 }
Amith Yamasani4b2e9342011-03-31 12:38:53 -07001926}