blob: 64288a56ebdfc89b1f26123a8473f7628808c03a [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
Jeff Sharkeyffe0cb42012-11-05 17:24:43 -080019import static android.text.format.DateUtils.MINUTE_IN_MILLIS;
Amith Yamasani4b2e9342011-03-31 12:38:53 -070020
Amith Yamasanidb6a14c2012-10-17 21:16:52 -070021import android.app.Activity;
Amith Yamasani2a003292012-08-14 18:25:45 -070022import android.app.ActivityManager;
Dianne Hackborn80a4af22012-08-27 19:18:31 -070023import android.app.ActivityManagerNative;
Amith Yamasani1a7472e2013-07-02 11:17:30 -070024import android.app.ActivityThread;
Dianne Hackborn80a4af22012-08-27 19:18:31 -070025import android.app.IStopUserCallback;
Amith Yamasanidb6a14c2012-10-17 21:16:52 -070026import android.content.BroadcastReceiver;
Amith Yamasani258848d2012-08-10 17:06:33 -070027import android.content.Context;
28import android.content.Intent;
Amith Yamasani1a7472e2013-07-02 11:17:30 -070029import android.content.pm.ApplicationInfo;
Amith Yamasani0b285492011-04-14 17:35:23 -070030import android.content.pm.PackageManager;
Amith Yamasanidf2e92a2013-03-01 17:04:38 -080031import android.content.pm.PackageManager.NameNotFoundException;
Amith Yamasani4b2e9342011-03-31 12:38:53 -070032import android.content.pm.UserInfo;
Amith Yamasanie928d7d2012-09-17 21:46:51 -070033import android.graphics.Bitmap;
34import android.graphics.BitmapFactory;
Amith Yamasani258848d2012-08-10 17:06:33 -070035import android.os.Binder;
Amith Yamasanie4cf7342012-12-17 11:12:09 -080036import android.os.Bundle;
Amith Yamasani4b2e9342011-03-31 12:38:53 -070037import android.os.Environment;
38import android.os.FileUtils;
Jeff Sharkeyffe0cb42012-11-05 17:24:43 -080039import android.os.Handler;
Amith Yamasani258848d2012-08-10 17:06:33 -070040import android.os.IUserManager;
Amith Yamasani258848d2012-08-10 17:06:33 -070041import android.os.Process;
Dianne Hackborn80a4af22012-08-27 19:18:31 -070042import android.os.RemoteException;
Jason Monk62062992014-05-06 09:55:28 -040043import android.os.ServiceManager;
Dianne Hackbornf02b60a2012-08-16 10:48:27 -070044import android.os.UserHandle;
Jeff Sharkey27bd34d2012-09-16 12:49:00 -070045import android.os.UserManager;
Amith Yamasani2a003292012-08-14 18:25:45 -070046import android.util.AtomicFile;
Amith Yamasani655d0e22013-06-12 14:19:10 -070047import android.util.Log;
Amith Yamasani4b2e9342011-03-31 12:38:53 -070048import android.util.Slog;
49import android.util.SparseArray;
Jeff Sharkeyffe0cb42012-11-05 17:24:43 -080050import android.util.SparseBooleanArray;
Amith Yamasani920ace02012-09-20 22:15:37 -070051import android.util.TimeUtils;
Amith Yamasani4b2e9342011-03-31 12:38:53 -070052import android.util.Xml;
53
Jason Monk62062992014-05-06 09:55:28 -040054import com.android.internal.app.IAppOpsService;
Amith Yamasani1a7472e2013-07-02 11:17:30 -070055import com.android.internal.content.PackageMonitor;
Jeff Sharkeyffe0cb42012-11-05 17:24:43 -080056import com.android.internal.util.ArrayUtils;
57import com.android.internal.util.FastXmlSerializer;
58
59import org.xmlpull.v1.XmlPullParser;
60import org.xmlpull.v1.XmlPullParserException;
61import org.xmlpull.v1.XmlSerializer;
62
Amith Yamasani4b2e9342011-03-31 12:38:53 -070063import java.io.BufferedOutputStream;
64import java.io.File;
Amith Yamasani920ace02012-09-20 22:15:37 -070065import java.io.FileDescriptor;
Amith Yamasani4b2e9342011-03-31 12:38:53 -070066import java.io.FileInputStream;
Amith Yamasanib8151ec2012-04-18 18:02:48 -070067import java.io.FileNotFoundException;
Amith Yamasani4b2e9342011-03-31 12:38:53 -070068import java.io.FileOutputStream;
69import java.io.IOException;
Amith Yamasani920ace02012-09-20 22:15:37 -070070import java.io.PrintWriter;
Amith Yamasani655d0e22013-06-12 14:19:10 -070071import java.security.MessageDigest;
72import java.security.NoSuchAlgorithmException;
73import java.security.SecureRandom;
Amith Yamasani4b2e9342011-03-31 12:38:53 -070074import java.util.ArrayList;
75import java.util.List;
76
Amith Yamasani258848d2012-08-10 17:06:33 -070077public class UserManagerService extends IUserManager.Stub {
Amith Yamasanib8151ec2012-04-18 18:02:48 -070078
Amith Yamasani2a003292012-08-14 18:25:45 -070079 private static final String LOG_TAG = "UserManagerService";
Amith Yamasanib8151ec2012-04-18 18:02:48 -070080
Amith Yamasani16389312012-10-17 21:20:14 -070081 private static final boolean DBG = false;
82
Amith Yamasani4b2e9342011-03-31 12:38:53 -070083 private static final String TAG_NAME = "name";
Amith Yamasani4b2e9342011-03-31 12:38:53 -070084 private static final String ATTR_FLAGS = "flags";
Amith Yamasanib8151ec2012-04-18 18:02:48 -070085 private static final String ATTR_ICON_PATH = "icon";
Amith Yamasani4b2e9342011-03-31 12:38:53 -070086 private static final String ATTR_ID = "id";
Amith Yamasani920ace02012-09-20 22:15:37 -070087 private static final String ATTR_CREATION_TIME = "created";
88 private static final String ATTR_LAST_LOGGED_IN_TIME = "lastLoggedIn";
Amith Yamasani655d0e22013-06-12 14:19:10 -070089 private static final String ATTR_SALT = "salt";
90 private static final String ATTR_PIN_HASH = "pinHash";
91 private static final String ATTR_FAILED_ATTEMPTS = "failedAttempts";
92 private static final String ATTR_LAST_RETRY_MS = "lastAttemptMs";
Amith Yamasani2a003292012-08-14 18:25:45 -070093 private static final String ATTR_SERIAL_NO = "serialNumber";
94 private static final String ATTR_NEXT_SERIAL_NO = "nextSerialNumber";
Dianne Hackbornd4ac8d72012-09-27 23:20:10 -070095 private static final String ATTR_PARTIAL = "partial";
Amith Yamasani6f34b412012-10-22 18:19:27 -070096 private static final String ATTR_USER_VERSION = "version";
Kenny Guy2a764942014-04-02 13:29:20 +010097 private static final String ATTR_PROFILE_GROUP_ID = "profileGroupId";
Amith Yamasanie4afaa32014-06-30 14:55:07 +053098 private static final String TAG_GUEST_RESTRICTIONS = "guestRestrictions";
Amith Yamasani4b2e9342011-03-31 12:38:53 -070099 private static final String TAG_USERS = "users";
Amith Yamasani4b2e9342011-03-31 12:38:53 -0700100 private static final String TAG_USER = "user";
Amith Yamasanie4cf7342012-12-17 11:12:09 -0800101 private static final String TAG_RESTRICTIONS = "restrictions";
Amith Yamasanidf2e92a2013-03-01 17:04:38 -0800102 private static final String TAG_ENTRY = "entry";
103 private static final String TAG_VALUE = "value";
104 private static final String ATTR_KEY = "key";
Amith Yamasani7e99bc02013-04-16 18:24:51 -0700105 private static final String ATTR_VALUE_TYPE = "type";
Amith Yamasanidf2e92a2013-03-01 17:04:38 -0800106 private static final String ATTR_MULTIPLE = "m";
Amith Yamasani4b2e9342011-03-31 12:38:53 -0700107
Amith Yamasani7e99bc02013-04-16 18:24:51 -0700108 private static final String ATTR_TYPE_STRING_ARRAY = "sa";
109 private static final String ATTR_TYPE_STRING = "s";
110 private static final String ATTR_TYPE_BOOLEAN = "b";
Amith Yamasani5b5aa402014-06-01 20:10:14 -0700111 private static final String ATTR_TYPE_INTEGER = "i";
Amith Yamasani7e99bc02013-04-16 18:24:51 -0700112
Amith Yamasani0b285492011-04-14 17:35:23 -0700113 private static final String USER_INFO_DIR = "system" + File.separator + "users";
Amith Yamasani4b2e9342011-03-31 12:38:53 -0700114 private static final String USER_LIST_FILENAME = "userlist.xml";
Amith Yamasanib8151ec2012-04-18 18:02:48 -0700115 private static final String USER_PHOTO_FILENAME = "photo.png";
Amith Yamasani4b2e9342011-03-31 12:38:53 -0700116
Amith Yamasanidf2e92a2013-03-01 17:04:38 -0800117 private static final String RESTRICTIONS_FILE_PREFIX = "res_";
Amith Yamasanifc95e702013-09-26 13:20:17 -0700118 private static final String XML_SUFFIX = ".xml";
Amith Yamasanidf2e92a2013-03-01 17:04:38 -0800119
Amith Yamasani634cf312012-10-04 17:34:21 -0700120 private static final int MIN_USER_ID = 10;
121
Amith Yamasani5e486f52013-08-07 11:06:44 -0700122 private static final int USER_VERSION = 4;
Amith Yamasani6f34b412012-10-22 18:19:27 -0700123
Amith Yamasani920ace02012-09-20 22:15:37 -0700124 private static final long EPOCH_PLUS_30_YEARS = 30L * 365 * 24 * 60 * 60 * 1000L; // ms
125
Amith Yamasani655d0e22013-06-12 14:19:10 -0700126 // Number of attempts before jumping to the next BACKOFF_TIMES slot
127 private static final int BACKOFF_INC_INTERVAL = 5;
128
129 // Amount of time to force the user to wait before entering the PIN again, after failing
130 // BACKOFF_INC_INTERVAL times.
131 private static final int[] BACKOFF_TIMES = { 0, 30*1000, 60*1000, 5*60*1000, 30*60*1000 };
132
Amith Yamasanie4afaa32014-06-30 14:55:07 +0530133
Dianne Hackborn4428e172012-08-24 17:43:05 -0700134 private final Context mContext;
135 private final PackageManagerService mPm;
136 private final Object mInstallLock;
137 private final Object mPackagesLock;
Amith Yamasani4b2e9342011-03-31 12:38:53 -0700138
Jeff Sharkeyffe0cb42012-11-05 17:24:43 -0800139 private final Handler mHandler;
140
Amith Yamasani4b2e9342011-03-31 12:38:53 -0700141 private final File mUsersDir;
142 private final File mUserListFile;
Dianne Hackborn4428e172012-08-24 17:43:05 -0700143 private final File mBaseUserPath;
144
Jeff Sharkeyffe0cb42012-11-05 17:24:43 -0800145 private final SparseArray<UserInfo> mUsers = new SparseArray<UserInfo>();
Amith Yamasanie4cf7342012-12-17 11:12:09 -0800146 private final SparseArray<Bundle> mUserRestrictions = new SparseArray<Bundle>();
Amith Yamasanie4afaa32014-06-30 14:55:07 +0530147 private final Bundle mGuestRestrictions = new Bundle();
Jeff Sharkeyffe0cb42012-11-05 17:24:43 -0800148
Amith Yamasani655d0e22013-06-12 14:19:10 -0700149 class RestrictionsPinState {
150 long salt;
151 String pinHash;
152 int failedAttempts;
153 long lastAttemptTime;
154 }
155
156 private final SparseArray<RestrictionsPinState> mRestrictionsPinStates =
157 new SparseArray<RestrictionsPinState>();
158
Jeff Sharkeyffe0cb42012-11-05 17:24:43 -0800159 /**
160 * Set of user IDs being actively removed. Removed IDs linger in this set
161 * for several seconds to work around a VFS caching issue.
162 */
163 // @GuardedBy("mPackagesLock")
164 private final SparseBooleanArray mRemovingUserIds = new SparseBooleanArray();
Dianne Hackborn4428e172012-08-24 17:43:05 -0700165
Amith Yamasani0b285492011-04-14 17:35:23 -0700166 private int[] mUserIds;
Amith Yamasani2a003292012-08-14 18:25:45 -0700167 private int mNextSerialNumber;
Amith Yamasani6f34b412012-10-22 18:19:27 -0700168 private int mUserVersion = 0;
Amith Yamasani0b285492011-04-14 17:35:23 -0700169
Jason Monk62062992014-05-06 09:55:28 -0400170 private IAppOpsService mAppOpsService;
171
Amith Yamasani258848d2012-08-10 17:06:33 -0700172 private static UserManagerService sInstance;
Amith Yamasani258848d2012-08-10 17:06:33 -0700173
Dianne Hackborn4428e172012-08-24 17:43:05 -0700174 public static UserManagerService getInstance() {
175 synchronized (UserManagerService.class) {
176 return sInstance;
Amith Yamasani258848d2012-08-10 17:06:33 -0700177 }
Amith Yamasani258848d2012-08-10 17:06:33 -0700178 }
Amith Yamasani4b2e9342011-03-31 12:38:53 -0700179
180 /**
181 * Available for testing purposes.
182 */
Amith Yamasani258848d2012-08-10 17:06:33 -0700183 UserManagerService(File dataDir, File baseUserPath) {
Dianne Hackborn4428e172012-08-24 17:43:05 -0700184 this(null, null, new Object(), new Object(), dataDir, baseUserPath);
Amith Yamasani4b2e9342011-03-31 12:38:53 -0700185 }
186
Dianne Hackborn4428e172012-08-24 17:43:05 -0700187 /**
188 * Called by package manager to create the service. This is closely
189 * associated with the package manager, and the given lock is the
190 * package manager's own lock.
191 */
192 UserManagerService(Context context, PackageManagerService pm,
193 Object installLock, Object packagesLock) {
194 this(context, pm, installLock, packagesLock,
195 Environment.getDataDirectory(),
196 new File(Environment.getDataDirectory(), "user"));
Amith Yamasani4b2e9342011-03-31 12:38:53 -0700197 }
198
Dianne Hackborn4428e172012-08-24 17:43:05 -0700199 /**
200 * Available for testing purposes.
201 */
202 private UserManagerService(Context context, PackageManagerService pm,
203 Object installLock, Object packagesLock,
204 File dataDir, File baseUserPath) {
Dianne Hackbornd4ac8d72012-09-27 23:20:10 -0700205 mContext = context;
206 mPm = pm;
207 mInstallLock = installLock;
208 mPackagesLock = packagesLock;
Jeff Sharkeyffe0cb42012-11-05 17:24:43 -0800209 mHandler = new Handler();
Dianne Hackbornd4ac8d72012-09-27 23:20:10 -0700210 synchronized (mInstallLock) {
211 synchronized (mPackagesLock) {
212 mUsersDir = new File(dataDir, USER_INFO_DIR);
213 mUsersDir.mkdirs();
214 // Make zeroth user directory, for services to migrate their files to that location
215 File userZeroDir = new File(mUsersDir, "0");
216 userZeroDir.mkdirs();
217 mBaseUserPath = baseUserPath;
218 FileUtils.setPermissions(mUsersDir.toString(),
219 FileUtils.S_IRWXU|FileUtils.S_IRWXG
220 |FileUtils.S_IROTH|FileUtils.S_IXOTH,
221 -1, -1);
222 mUserListFile = new File(mUsersDir, USER_LIST_FILENAME);
223 readUserListLocked();
Amith Yamasani756901d2012-10-12 12:30:07 -0700224 // Prune out any partially created/partially removed users.
Dianne Hackbornd4ac8d72012-09-27 23:20:10 -0700225 ArrayList<UserInfo> partials = new ArrayList<UserInfo>();
226 for (int i = 0; i < mUsers.size(); i++) {
227 UserInfo ui = mUsers.valueAt(i);
228 if (ui.partial && i != 0) {
229 partials.add(ui);
230 }
231 }
232 for (int i = 0; i < partials.size(); i++) {
233 UserInfo ui = partials.get(i);
234 Slog.w(LOG_TAG, "Removing partially created user #" + i
235 + " (name=" + ui.name + ")");
236 removeUserStateLocked(ui.id);
237 }
238 sInstance = this;
239 }
Dianne Hackborn4428e172012-08-24 17:43:05 -0700240 }
Amith Yamasani1a7472e2013-07-02 11:17:30 -0700241 }
242
243 void systemReady() {
Dianne Hackborn10ad9822014-03-17 11:28:36 -0700244 mUserPackageMonitor.register(mContext, null, UserHandle.ALL, false);
Amith Yamasani1a7472e2013-07-02 11:17:30 -0700245 userForeground(UserHandle.USER_OWNER);
Jason Monk62062992014-05-06 09:55:28 -0400246 mAppOpsService = IAppOpsService.Stub.asInterface(
247 ServiceManager.getService(Context.APP_OPS_SERVICE));
248 for (int i = 0; i < mUserIds.length; ++i) {
249 try {
250 mAppOpsService.setUserRestrictions(mUserRestrictions.get(mUserIds[i]), mUserIds[i]);
251 } catch (RemoteException e) {
252 Log.w(LOG_TAG, "Unable to notify AppOpsService of UserRestrictions");
253 }
254 }
Amith Yamasani258848d2012-08-10 17:06:33 -0700255 }
256
257 @Override
Amith Yamasani920ace02012-09-20 22:15:37 -0700258 public List<UserInfo> getUsers(boolean excludeDying) {
Amith Yamasani2a003292012-08-14 18:25:45 -0700259 checkManageUsersPermission("query users");
Dianne Hackborn4428e172012-08-24 17:43:05 -0700260 synchronized (mPackagesLock) {
Amith Yamasani13593602012-03-22 16:16:17 -0700261 ArrayList<UserInfo> users = new ArrayList<UserInfo>(mUsers.size());
262 for (int i = 0; i < mUsers.size(); i++) {
Dianne Hackbornd4ac8d72012-09-27 23:20:10 -0700263 UserInfo ui = mUsers.valueAt(i);
264 if (ui.partial) {
265 continue;
266 }
Jeff Sharkeyffe0cb42012-11-05 17:24:43 -0800267 if (!excludeDying || !mRemovingUserIds.get(ui.id)) {
Dianne Hackbornd4ac8d72012-09-27 23:20:10 -0700268 users.add(ui);
Amith Yamasani920ace02012-09-20 22:15:37 -0700269 }
Amith Yamasani13593602012-03-22 16:16:17 -0700270 }
271 return users;
Amith Yamasani4b2e9342011-03-31 12:38:53 -0700272 }
Amith Yamasani13593602012-03-22 16:16:17 -0700273 }
274
Amith Yamasani258848d2012-08-10 17:06:33 -0700275 @Override
Alexandra Gherghina385124d2014-04-03 13:37:39 +0100276 public List<UserInfo> getProfiles(int userId, boolean enabledOnly) {
Amith Yamasani4f582632014-02-19 14:31:52 -0800277 if (userId != UserHandle.getCallingUserId()) {
278 checkManageUsersPermission("getting profiles related to user " + userId);
279 }
Amith Yamasanibe465322014-04-24 13:45:17 -0700280 final long ident = Binder.clearCallingIdentity();
281 try {
282 synchronized (mPackagesLock) {
283 return getProfilesLocked(userId, enabledOnly);
Alexandra Gherghina385124d2014-04-03 13:37:39 +0100284 }
Amith Yamasanibe465322014-04-24 13:45:17 -0700285 } finally {
286 Binder.restoreCallingIdentity(ident);
Kenny Guya52dc3e2014-02-11 15:33:14 +0000287 }
288 }
289
Amith Yamasanibe465322014-04-24 13:45:17 -0700290 /** Assume permissions already checked and caller's identity cleared */
291 private List<UserInfo> getProfilesLocked(int userId, boolean enabledOnly) {
Amith Yamasanibe465322014-04-24 13:45:17 -0700292 UserInfo user = getUserInfoLocked(userId);
293 ArrayList<UserInfo> users = new ArrayList<UserInfo>(mUsers.size());
294 for (int i = 0; i < mUsers.size(); i++) {
295 UserInfo profile = mUsers.valueAt(i);
296 if (!isProfileOf(user, profile)) {
297 continue;
298 }
Alexandra Gherghinadf35d572014-04-09 13:54:39 +0100299 if (enabledOnly && !profile.isEnabled()) {
300 continue;
Amith Yamasanibe465322014-04-24 13:45:17 -0700301 }
302 users.add(profile);
303 }
304 return users;
305 }
306
Jessica Hummelbe81c802014-04-22 15:49:22 +0100307 @Override
308 public UserInfo getProfileParent(int userHandle) {
309 checkManageUsersPermission("get the profile parent");
310 synchronized (mPackagesLock) {
311 UserInfo profile = getUserInfoLocked(userHandle);
312 int parentUserId = profile.profileGroupId;
313 if (parentUserId == UserInfo.NO_PROFILE_GROUP_ID) {
314 return null;
315 } else {
316 return getUserInfoLocked(parentUserId);
317 }
318 }
319 }
320
Kenny Guy2a764942014-04-02 13:29:20 +0100321 private boolean isProfileOf(UserInfo user, UserInfo profile) {
322 return user.id == profile.id ||
323 (user.profileGroupId != UserInfo.NO_PROFILE_GROUP_ID
324 && user.profileGroupId == profile.profileGroupId);
Kenny Guya52dc3e2014-02-11 15:33:14 +0000325 }
326
327 @Override
Alexandra Gherghinadf35d572014-04-09 13:54:39 +0100328 public void setUserEnabled(int userId) {
329 checkManageUsersPermission("enable user");
330 synchronized (mPackagesLock) {
331 UserInfo info = getUserInfoLocked(userId);
332 if (info != null && !info.isEnabled()) {
333 info.flags ^= UserInfo.FLAG_DISABLED;
334 writeUserLocked(info);
335 }
336 }
337 }
338
339 @Override
Amith Yamasani258848d2012-08-10 17:06:33 -0700340 public UserInfo getUserInfo(int userId) {
Amith Yamasani2a003292012-08-14 18:25:45 -0700341 checkManageUsersPermission("query user");
Dianne Hackborn4428e172012-08-24 17:43:05 -0700342 synchronized (mPackagesLock) {
Amith Yamasani195263742012-08-21 15:40:12 -0700343 return getUserInfoLocked(userId);
Amith Yamasani13593602012-03-22 16:16:17 -0700344 }
345 }
346
Amith Yamasani71e6c692013-03-24 17:39:28 -0700347 @Override
348 public boolean isRestricted() {
349 synchronized (mPackagesLock) {
350 return getUserInfoLocked(UserHandle.getCallingUserId()).isRestricted();
351 }
352 }
353
Amith Yamasani195263742012-08-21 15:40:12 -0700354 /*
355 * Should be locked on mUsers before calling this.
356 */
357 private UserInfo getUserInfoLocked(int userId) {
Dianne Hackbornd4ac8d72012-09-27 23:20:10 -0700358 UserInfo ui = mUsers.get(userId);
Amith Yamasani16389312012-10-17 21:20:14 -0700359 // If it is partial and not in the process of being removed, return as unknown user.
Jeff Sharkeyffe0cb42012-11-05 17:24:43 -0800360 if (ui != null && ui.partial && !mRemovingUserIds.get(userId)) {
Dianne Hackbornd4ac8d72012-09-27 23:20:10 -0700361 Slog.w(LOG_TAG, "getUserInfo: unknown user #" + userId);
362 return null;
363 }
364 return ui;
Amith Yamasani195263742012-08-21 15:40:12 -0700365 }
366
Amith Yamasani13593602012-03-22 16:16:17 -0700367 public boolean exists(int userId) {
Dianne Hackborn4428e172012-08-24 17:43:05 -0700368 synchronized (mPackagesLock) {
Amith Yamasani13593602012-03-22 16:16:17 -0700369 return ArrayUtils.contains(mUserIds, userId);
370 }
371 }
372
Amith Yamasani258848d2012-08-10 17:06:33 -0700373 @Override
Amith Yamasanib8151ec2012-04-18 18:02:48 -0700374 public void setUserName(int userId, String name) {
Amith Yamasani2a003292012-08-14 18:25:45 -0700375 checkManageUsersPermission("rename users");
Dianne Hackbornd4ac8d72012-09-27 23:20:10 -0700376 boolean changed = false;
Dianne Hackborn4428e172012-08-24 17:43:05 -0700377 synchronized (mPackagesLock) {
Amith Yamasani13593602012-03-22 16:16:17 -0700378 UserInfo info = mUsers.get(userId);
Dianne Hackbornd4ac8d72012-09-27 23:20:10 -0700379 if (info == null || info.partial) {
380 Slog.w(LOG_TAG, "setUserName: unknown user #" + userId);
381 return;
382 }
Amith Yamasani13593602012-03-22 16:16:17 -0700383 if (name != null && !name.equals(info.name)) {
384 info.name = name;
385 writeUserLocked(info);
Dianne Hackbornd4ac8d72012-09-27 23:20:10 -0700386 changed = true;
Amith Yamasani13593602012-03-22 16:16:17 -0700387 }
388 }
Dianne Hackbornd4ac8d72012-09-27 23:20:10 -0700389 if (changed) {
390 sendUserInfoChangedBroadcast(userId);
391 }
Amith Yamasani4b2e9342011-03-31 12:38:53 -0700392 }
393
Amith Yamasani258848d2012-08-10 17:06:33 -0700394 @Override
Amith Yamasanie928d7d2012-09-17 21:46:51 -0700395 public void setUserIcon(int userId, Bitmap bitmap) {
Amith Yamasani2a003292012-08-14 18:25:45 -0700396 checkManageUsersPermission("update users");
Jason Monk9a944532014-07-08 09:31:21 -0400397 long ident = Binder.clearCallingIdentity();
398 try {
399 synchronized (mPackagesLock) {
400 UserInfo info = mUsers.get(userId);
401 if (info == null || info.partial) {
402 Slog.w(LOG_TAG, "setUserIcon: unknown user #" + userId);
403 return;
404 }
405 writeBitmapLocked(info, bitmap);
406 writeUserLocked(info);
Dianne Hackbornd4ac8d72012-09-27 23:20:10 -0700407 }
Jason Monk9a944532014-07-08 09:31:21 -0400408 sendUserInfoChangedBroadcast(userId);
409 } finally {
410 Binder.restoreCallingIdentity(ident);
Amith Yamasanib8151ec2012-04-18 18:02:48 -0700411 }
Amith Yamasanie928d7d2012-09-17 21:46:51 -0700412 }
413
414 private void sendUserInfoChangedBroadcast(int userId) {
415 Intent changedIntent = new Intent(Intent.ACTION_USER_INFO_CHANGED);
416 changedIntent.putExtra(Intent.EXTRA_USER_HANDLE, userId);
417 changedIntent.addFlags(Intent.FLAG_RECEIVER_REGISTERED_ONLY);
Amith Yamasani6fc1d4e2013-05-08 16:43:58 -0700418 mContext.sendBroadcastAsUser(changedIntent, UserHandle.ALL);
Amith Yamasanib8151ec2012-04-18 18:02:48 -0700419 }
420
Amith Yamasani258848d2012-08-10 17:06:33 -0700421 @Override
Amith Yamasanie928d7d2012-09-17 21:46:51 -0700422 public Bitmap getUserIcon(int userId) {
Amith Yamasani3b49f072012-09-17 10:21:43 -0700423 synchronized (mPackagesLock) {
424 UserInfo info = mUsers.get(userId);
Dianne Hackbornd4ac8d72012-09-27 23:20:10 -0700425 if (info == null || info.partial) {
426 Slog.w(LOG_TAG, "getUserIcon: unknown user #" + userId);
427 return null;
428 }
Nicolas Prevot88cc3462014-05-14 14:51:48 +0100429 int callingGroupId = mUsers.get(UserHandle.getCallingUserId()).profileGroupId;
430 if (callingGroupId == UserInfo.NO_PROFILE_GROUP_ID
431 || callingGroupId != info.profileGroupId) {
432 checkManageUsersPermission("get the icon of a user who is not related");
433 }
Dianne Hackbornd4ac8d72012-09-27 23:20:10 -0700434 if (info.iconPath == null) {
435 return null;
436 }
Amith Yamasanie928d7d2012-09-17 21:46:51 -0700437 return BitmapFactory.decodeFile(info.iconPath);
Amith Yamasani3b49f072012-09-17 10:21:43 -0700438 }
439 }
440
Dianne Hackborn5dc5a002012-09-15 19:33:48 -0700441 public void makeInitialized(int userId) {
442 checkManageUsersPermission("makeInitialized");
443 synchronized (mPackagesLock) {
444 UserInfo info = mUsers.get(userId);
Dianne Hackbornd4ac8d72012-09-27 23:20:10 -0700445 if (info == null || info.partial) {
446 Slog.w(LOG_TAG, "makeInitialized: unknown user #" + userId);
447 }
448 if ((info.flags&UserInfo.FLAG_INITIALIZED) == 0) {
Dianne Hackborn5dc5a002012-09-15 19:33:48 -0700449 info.flags |= UserInfo.FLAG_INITIALIZED;
450 writeUserLocked(info);
451 }
452 }
453 }
454
Amith Yamasanie4cf7342012-12-17 11:12:09 -0800455 @Override
Amith Yamasanie4afaa32014-06-30 14:55:07 +0530456 public Bundle getDefaultGuestRestrictions() {
457 checkManageUsersPermission("getDefaultGuestRestrictions");
458 synchronized (mPackagesLock) {
459 return new Bundle(mGuestRestrictions);
460 }
461 }
462
463 @Override
464 public void setDefaultGuestRestrictions(Bundle restrictions) {
465 checkManageUsersPermission("setDefaultGuestRestrictions");
466 synchronized (mPackagesLock) {
467 mGuestRestrictions.clear();
468 mGuestRestrictions.putAll(restrictions);
469 writeUserListLocked();
470 }
471 }
472
473 @Override
Amith Yamasanie4cf7342012-12-17 11:12:09 -0800474 public Bundle getUserRestrictions(int userId) {
475 // checkManageUsersPermission("getUserRestrictions");
476
477 synchronized (mPackagesLock) {
478 Bundle restrictions = mUserRestrictions.get(userId);
Amith Yamasanibe465322014-04-24 13:45:17 -0700479 return restrictions != null ? new Bundle(restrictions) : new Bundle();
Amith Yamasanie4cf7342012-12-17 11:12:09 -0800480 }
481 }
482
483 @Override
484 public void setUserRestrictions(Bundle restrictions, int userId) {
Amith Yamasanibe465322014-04-24 13:45:17 -0700485 checkManageUsersPermission("setUserRestrictions");
Amith Yamasani0343ec32013-07-22 14:52:06 -0700486 if (restrictions == null) return;
Amith Yamasanie4cf7342012-12-17 11:12:09 -0800487
488 synchronized (mPackagesLock) {
Amith Yamasani350962c2013-08-06 11:18:53 -0700489 mUserRestrictions.get(userId).clear();
Amith Yamasanie4cf7342012-12-17 11:12:09 -0800490 mUserRestrictions.get(userId).putAll(restrictions);
Jason Monk62062992014-05-06 09:55:28 -0400491 long token = Binder.clearCallingIdentity();
492 try {
493 mAppOpsService.setUserRestrictions(mUserRestrictions.get(userId), userId);
494 } catch (RemoteException e) {
495 Log.w(LOG_TAG, "Unable to notify AppOpsService of UserRestrictions");
496 } finally {
497 Binder.restoreCallingIdentity(token);
498 }
Amith Yamasanie4cf7342012-12-17 11:12:09 -0800499 writeUserLocked(mUsers.get(userId));
500 }
501 }
502
Amith Yamasani258848d2012-08-10 17:06:33 -0700503 /**
Amith Yamasanifaea76f2012-09-11 10:59:48 -0700504 * Check if we've hit the limit of how many users can be created.
505 */
Dianne Hackborn5dc5a002012-09-15 19:33:48 -0700506 private boolean isUserLimitReachedLocked() {
Amith Yamasanif584f012014-05-19 17:57:25 -0700507 int aliveUserCount = 0;
508 final int totalUserCount = mUsers.size();
509 // Skip over users being removed
510 for (int i = 0; i < totalUserCount; i++) {
511 UserInfo user = mUsers.valueAt(i);
512 if (!mRemovingUserIds.get(user.id)) {
513 aliveUserCount++;
514 }
515 }
516 return aliveUserCount >= UserManager.getMaxSupportedUsers();
Amith Yamasanifaea76f2012-09-11 10:59:48 -0700517 }
518
519 /**
Amith Yamasani195263742012-08-21 15:40:12 -0700520 * Enforces that only the system UID or root's UID or apps that have the
Dianne Hackborn10ad9822014-03-17 11:28:36 -0700521 * {@link android.Manifest.permission#MANAGE_USERS MANAGE_USERS}
Amith Yamasani195263742012-08-21 15:40:12 -0700522 * permission can make certain calls to the UserManager.
Amith Yamasani258848d2012-08-10 17:06:33 -0700523 *
524 * @param message used as message if SecurityException is thrown
525 * @throws SecurityException if the caller is not system or root
526 */
Amith Yamasanibe465322014-04-24 13:45:17 -0700527 private static final void checkManageUsersPermission(String message) {
Amith Yamasani258848d2012-08-10 17:06:33 -0700528 final int uid = Binder.getCallingUid();
Amith Yamasanibe465322014-04-24 13:45:17 -0700529 if (uid != Process.SYSTEM_UID && uid != 0
Emily Bernier7a2b4d12014-04-23 12:51:35 -0400530 && ActivityManager.checkComponentPermission(
531 android.Manifest.permission.MANAGE_USERS,
Amith Yamasanibe465322014-04-24 13:45:17 -0700532 uid, -1, true) != PackageManager.PERMISSION_GRANTED) {
533 throw new SecurityException("You need MANAGE_USERS permission to: " + message);
534 }
Emily Bernier7a2b4d12014-04-23 12:51:35 -0400535 }
536
Amith Yamasanie928d7d2012-09-17 21:46:51 -0700537 private void writeBitmapLocked(UserInfo info, Bitmap bitmap) {
Amith Yamasanib8151ec2012-04-18 18:02:48 -0700538 try {
539 File dir = new File(mUsersDir, Integer.toString(info.id));
540 File file = new File(dir, USER_PHOTO_FILENAME);
541 if (!dir.exists()) {
542 dir.mkdir();
543 FileUtils.setPermissions(
544 dir.getPath(),
545 FileUtils.S_IRWXU|FileUtils.S_IRWXG|FileUtils.S_IXOTH,
546 -1, -1);
547 }
Amith Yamasanie928d7d2012-09-17 21:46:51 -0700548 FileOutputStream os;
549 if (bitmap.compress(Bitmap.CompressFormat.PNG, 100, os = new FileOutputStream(file))) {
Amith Yamasani3b49f072012-09-17 10:21:43 -0700550 info.iconPath = file.getAbsolutePath();
551 }
Amith Yamasanie928d7d2012-09-17 21:46:51 -0700552 try {
553 os.close();
554 } catch (IOException ioe) {
555 // What the ... !
556 }
Amith Yamasanib8151ec2012-04-18 18:02:48 -0700557 } catch (FileNotFoundException e) {
Amith Yamasani2a003292012-08-14 18:25:45 -0700558 Slog.w(LOG_TAG, "Error setting photo for user ", e);
Amith Yamasanib8151ec2012-04-18 18:02:48 -0700559 }
Amith Yamasanib8151ec2012-04-18 18:02:48 -0700560 }
561
Amith Yamasani0b285492011-04-14 17:35:23 -0700562 /**
563 * Returns an array of user ids. This array is cached here for quick access, so do not modify or
564 * cache it elsewhere.
565 * @return the array of user ids.
566 */
Dianne Hackborn1676c852012-09-10 14:52:30 -0700567 public int[] getUserIds() {
Dianne Hackborn4428e172012-08-24 17:43:05 -0700568 synchronized (mPackagesLock) {
Dianne Hackborn7767eac2012-08-23 18:25:40 -0700569 return mUserIds;
570 }
Amith Yamasani0b285492011-04-14 17:35:23 -0700571 }
572
Dianne Hackborn4428e172012-08-24 17:43:05 -0700573 int[] getUserIdsLPr() {
574 return mUserIds;
575 }
576
Amith Yamasani13593602012-03-22 16:16:17 -0700577 private void readUserListLocked() {
Amith Yamasani4b2e9342011-03-31 12:38:53 -0700578 if (!mUserListFile.exists()) {
Amith Yamasani13593602012-03-22 16:16:17 -0700579 fallbackToSingleUserLocked();
Amith Yamasani4b2e9342011-03-31 12:38:53 -0700580 return;
581 }
582 FileInputStream fis = null;
Amith Yamasani2a003292012-08-14 18:25:45 -0700583 AtomicFile userListFile = new AtomicFile(mUserListFile);
Amith Yamasani4b2e9342011-03-31 12:38:53 -0700584 try {
Amith Yamasani2a003292012-08-14 18:25:45 -0700585 fis = userListFile.openRead();
Amith Yamasani4b2e9342011-03-31 12:38:53 -0700586 XmlPullParser parser = Xml.newPullParser();
587 parser.setInput(fis, null);
588 int type;
589 while ((type = parser.next()) != XmlPullParser.START_TAG
590 && type != XmlPullParser.END_DOCUMENT) {
591 ;
592 }
593
594 if (type != XmlPullParser.START_TAG) {
Amith Yamasani0b285492011-04-14 17:35:23 -0700595 Slog.e(LOG_TAG, "Unable to read user list");
Amith Yamasani13593602012-03-22 16:16:17 -0700596 fallbackToSingleUserLocked();
Amith Yamasani4b2e9342011-03-31 12:38:53 -0700597 return;
598 }
599
Amith Yamasani2a003292012-08-14 18:25:45 -0700600 mNextSerialNumber = -1;
601 if (parser.getName().equals(TAG_USERS)) {
602 String lastSerialNumber = parser.getAttributeValue(null, ATTR_NEXT_SERIAL_NO);
603 if (lastSerialNumber != null) {
604 mNextSerialNumber = Integer.parseInt(lastSerialNumber);
605 }
Amith Yamasani6f34b412012-10-22 18:19:27 -0700606 String versionNumber = parser.getAttributeValue(null, ATTR_USER_VERSION);
607 if (versionNumber != null) {
608 mUserVersion = Integer.parseInt(versionNumber);
609 }
Amith Yamasani2a003292012-08-14 18:25:45 -0700610 }
611
Amith Yamasani4b2e9342011-03-31 12:38:53 -0700612 while ((type = parser.next()) != XmlPullParser.END_DOCUMENT) {
Amith Yamasanie4afaa32014-06-30 14:55:07 +0530613 if (type == XmlPullParser.START_TAG) {
614 final String name = parser.getName();
615 if (name.equals(TAG_USER)) {
616 String id = parser.getAttributeValue(null, ATTR_ID);
617 UserInfo user = readUserLocked(Integer.parseInt(id));
Amith Yamasani6f34b412012-10-22 18:19:27 -0700618
Amith Yamasanie4afaa32014-06-30 14:55:07 +0530619 if (user != null) {
620 mUsers.put(user.id, user);
621 if (mNextSerialNumber < 0 || mNextSerialNumber <= user.id) {
622 mNextSerialNumber = user.id + 1;
623 }
Amith Yamasani2a003292012-08-14 18:25:45 -0700624 }
Amith Yamasanie4afaa32014-06-30 14:55:07 +0530625 } else if (name.equals(TAG_GUEST_RESTRICTIONS)) {
626 mGuestRestrictions.clear();
627 readRestrictionsLocked(parser, mGuestRestrictions);
Amith Yamasani258848d2012-08-10 17:06:33 -0700628 }
Amith Yamasani4b2e9342011-03-31 12:38:53 -0700629 }
630 }
Amith Yamasani13593602012-03-22 16:16:17 -0700631 updateUserIdsLocked();
Amith Yamasani350962c2013-08-06 11:18:53 -0700632 upgradeIfNecessaryLocked();
Amith Yamasani4b2e9342011-03-31 12:38:53 -0700633 } catch (IOException ioe) {
Amith Yamasani13593602012-03-22 16:16:17 -0700634 fallbackToSingleUserLocked();
Amith Yamasani4b2e9342011-03-31 12:38:53 -0700635 } catch (XmlPullParserException pe) {
Amith Yamasani13593602012-03-22 16:16:17 -0700636 fallbackToSingleUserLocked();
Dianne Hackbornbfd89b32011-12-15 18:22:54 -0800637 } finally {
638 if (fis != null) {
639 try {
640 fis.close();
641 } catch (IOException e) {
642 }
643 }
Amith Yamasani4b2e9342011-03-31 12:38:53 -0700644 }
645 }
646
Amith Yamasani6f34b412012-10-22 18:19:27 -0700647 /**
Amith Yamasanibc9625052012-11-15 14:39:18 -0800648 * Upgrade steps between versions, either for fixing bugs or changing the data format.
Amith Yamasani6f34b412012-10-22 18:19:27 -0700649 */
Amith Yamasani350962c2013-08-06 11:18:53 -0700650 private void upgradeIfNecessaryLocked() {
Amith Yamasani6f34b412012-10-22 18:19:27 -0700651 int userVersion = mUserVersion;
652 if (userVersion < 1) {
653 // Assign a proper name for the owner, if not initialized correctly before
654 UserInfo user = mUsers.get(UserHandle.USER_OWNER);
655 if ("Primary".equals(user.name)) {
656 user.name = mContext.getResources().getString(com.android.internal.R.string.owner_name);
657 writeUserLocked(user);
658 }
659 userVersion = 1;
660 }
661
Amith Yamasanibc9625052012-11-15 14:39:18 -0800662 if (userVersion < 2) {
663 // Owner should be marked as initialized
664 UserInfo user = mUsers.get(UserHandle.USER_OWNER);
665 if ((user.flags & UserInfo.FLAG_INITIALIZED) == 0) {
666 user.flags |= UserInfo.FLAG_INITIALIZED;
667 writeUserLocked(user);
668 }
669 userVersion = 2;
670 }
671
Amith Yamasani350962c2013-08-06 11:18:53 -0700672
Amith Yamasani5e486f52013-08-07 11:06:44 -0700673 if (userVersion < 4) {
Amith Yamasani5e486f52013-08-07 11:06:44 -0700674 userVersion = 4;
675 }
676
Amith Yamasani6f34b412012-10-22 18:19:27 -0700677 if (userVersion < USER_VERSION) {
678 Slog.w(LOG_TAG, "User version " + mUserVersion + " didn't upgrade as expected to "
679 + USER_VERSION);
680 } else {
681 mUserVersion = userVersion;
682 writeUserListLocked();
683 }
684 }
685
Amith Yamasani13593602012-03-22 16:16:17 -0700686 private void fallbackToSingleUserLocked() {
Amith Yamasani4b2e9342011-03-31 12:38:53 -0700687 // Create the primary user
Amith Yamasani67df64b2012-12-14 12:09:36 -0800688 UserInfo primary = new UserInfo(UserHandle.USER_OWNER,
Amith Yamasani6f34b412012-10-22 18:19:27 -0700689 mContext.getResources().getString(com.android.internal.R.string.owner_name), null,
Amith Yamasani756901d2012-10-12 12:30:07 -0700690 UserInfo.FLAG_ADMIN | UserInfo.FLAG_PRIMARY | UserInfo.FLAG_INITIALIZED);
Amith Yamasani4b2e9342011-03-31 12:38:53 -0700691 mUsers.put(0, primary);
Amith Yamasani634cf312012-10-04 17:34:21 -0700692 mNextSerialNumber = MIN_USER_ID;
Geoffrey Borggaard15b8b2c2013-08-28 22:11:10 -0400693 mUserVersion = USER_VERSION;
Amith Yamasani67df64b2012-12-14 12:09:36 -0800694
Geoffrey Borggaarde45e45e32013-01-24 10:03:20 -0500695 Bundle restrictions = new Bundle();
Amith Yamasani67df64b2012-12-14 12:09:36 -0800696 mUserRestrictions.append(UserHandle.USER_OWNER, restrictions);
697
Amith Yamasani13593602012-03-22 16:16:17 -0700698 updateUserIdsLocked();
Amith Yamasani4b2e9342011-03-31 12:38:53 -0700699
Amith Yamasani13593602012-03-22 16:16:17 -0700700 writeUserListLocked();
701 writeUserLocked(primary);
Amith Yamasani4b2e9342011-03-31 12:38:53 -0700702 }
703
704 /*
705 * Writes the user file in this format:
706 *
707 * <user flags="20039023" id="0">
708 * <name>Primary</name>
709 * </user>
710 */
Amith Yamasani13593602012-03-22 16:16:17 -0700711 private void writeUserLocked(UserInfo userInfo) {
Amith Yamasani742a6712011-05-04 14:49:28 -0700712 FileOutputStream fos = null;
Amith Yamasanifc95e702013-09-26 13:20:17 -0700713 AtomicFile userFile = new AtomicFile(new File(mUsersDir, userInfo.id + XML_SUFFIX));
Amith Yamasani4b2e9342011-03-31 12:38:53 -0700714 try {
Amith Yamasani2a003292012-08-14 18:25:45 -0700715 fos = userFile.startWrite();
Amith Yamasani4b2e9342011-03-31 12:38:53 -0700716 final BufferedOutputStream bos = new BufferedOutputStream(fos);
717
718 // XmlSerializer serializer = XmlUtils.serializerInstance();
719 final XmlSerializer serializer = new FastXmlSerializer();
720 serializer.setOutput(bos, "utf-8");
721 serializer.startDocument(null, true);
722 serializer.setFeature("http://xmlpull.org/v1/doc/features.html#indent-output", true);
723
724 serializer.startTag(null, TAG_USER);
725 serializer.attribute(null, ATTR_ID, Integer.toString(userInfo.id));
Amith Yamasani2a003292012-08-14 18:25:45 -0700726 serializer.attribute(null, ATTR_SERIAL_NO, Integer.toString(userInfo.serialNumber));
Amith Yamasani4b2e9342011-03-31 12:38:53 -0700727 serializer.attribute(null, ATTR_FLAGS, Integer.toString(userInfo.flags));
Amith Yamasani920ace02012-09-20 22:15:37 -0700728 serializer.attribute(null, ATTR_CREATION_TIME, Long.toString(userInfo.creationTime));
729 serializer.attribute(null, ATTR_LAST_LOGGED_IN_TIME,
730 Long.toString(userInfo.lastLoggedInTime));
Amith Yamasani655d0e22013-06-12 14:19:10 -0700731 RestrictionsPinState pinState = mRestrictionsPinStates.get(userInfo.id);
732 if (pinState != null) {
733 if (pinState.salt != 0) {
734 serializer.attribute(null, ATTR_SALT, Long.toString(pinState.salt));
735 }
736 if (pinState.pinHash != null) {
737 serializer.attribute(null, ATTR_PIN_HASH, pinState.pinHash);
738 }
739 if (pinState.failedAttempts != 0) {
740 serializer.attribute(null, ATTR_FAILED_ATTEMPTS,
741 Integer.toString(pinState.failedAttempts));
742 serializer.attribute(null, ATTR_LAST_RETRY_MS,
743 Long.toString(pinState.lastAttemptTime));
744 }
745 }
Amith Yamasanib8151ec2012-04-18 18:02:48 -0700746 if (userInfo.iconPath != null) {
747 serializer.attribute(null, ATTR_ICON_PATH, userInfo.iconPath);
748 }
Dianne Hackbornd4ac8d72012-09-27 23:20:10 -0700749 if (userInfo.partial) {
750 serializer.attribute(null, ATTR_PARTIAL, "true");
751 }
Kenny Guy2a764942014-04-02 13:29:20 +0100752 if (userInfo.profileGroupId != UserInfo.NO_PROFILE_GROUP_ID) {
753 serializer.attribute(null, ATTR_PROFILE_GROUP_ID,
754 Integer.toString(userInfo.profileGroupId));
Kenny Guya52dc3e2014-02-11 15:33:14 +0000755 }
Amith Yamasani4b2e9342011-03-31 12:38:53 -0700756
757 serializer.startTag(null, TAG_NAME);
758 serializer.text(userInfo.name);
759 serializer.endTag(null, TAG_NAME);
Amith Yamasanie4cf7342012-12-17 11:12:09 -0800760 Bundle restrictions = mUserRestrictions.get(userInfo.id);
761 if (restrictions != null) {
Amith Yamasanie4afaa32014-06-30 14:55:07 +0530762 writeRestrictionsLocked(serializer, restrictions);
Amith Yamasanie4cf7342012-12-17 11:12:09 -0800763 }
Amith Yamasani4b2e9342011-03-31 12:38:53 -0700764 serializer.endTag(null, TAG_USER);
765
766 serializer.endDocument();
Amith Yamasani2a003292012-08-14 18:25:45 -0700767 userFile.finishWrite(fos);
768 } catch (Exception ioe) {
Amith Yamasani0b285492011-04-14 17:35:23 -0700769 Slog.e(LOG_TAG, "Error writing user info " + userInfo.id + "\n" + ioe);
Amith Yamasani2a003292012-08-14 18:25:45 -0700770 userFile.failWrite(fos);
Amith Yamasani4b2e9342011-03-31 12:38:53 -0700771 }
772 }
773
774 /*
775 * Writes the user list file in this format:
776 *
Amith Yamasani2a003292012-08-14 18:25:45 -0700777 * <users nextSerialNumber="3">
Amith Yamasani4b2e9342011-03-31 12:38:53 -0700778 * <user id="0"></user>
779 * <user id="2"></user>
780 * </users>
781 */
Amith Yamasani13593602012-03-22 16:16:17 -0700782 private void writeUserListLocked() {
Amith Yamasani742a6712011-05-04 14:49:28 -0700783 FileOutputStream fos = null;
Amith Yamasani2a003292012-08-14 18:25:45 -0700784 AtomicFile userListFile = new AtomicFile(mUserListFile);
Amith Yamasani4b2e9342011-03-31 12:38:53 -0700785 try {
Amith Yamasani2a003292012-08-14 18:25:45 -0700786 fos = userListFile.startWrite();
Amith Yamasani4b2e9342011-03-31 12:38:53 -0700787 final BufferedOutputStream bos = new BufferedOutputStream(fos);
788
789 // XmlSerializer serializer = XmlUtils.serializerInstance();
790 final XmlSerializer serializer = new FastXmlSerializer();
791 serializer.setOutput(bos, "utf-8");
792 serializer.startDocument(null, true);
793 serializer.setFeature("http://xmlpull.org/v1/doc/features.html#indent-output", true);
794
795 serializer.startTag(null, TAG_USERS);
Amith Yamasani2a003292012-08-14 18:25:45 -0700796 serializer.attribute(null, ATTR_NEXT_SERIAL_NO, Integer.toString(mNextSerialNumber));
Amith Yamasani6f34b412012-10-22 18:19:27 -0700797 serializer.attribute(null, ATTR_USER_VERSION, Integer.toString(mUserVersion));
Amith Yamasani4b2e9342011-03-31 12:38:53 -0700798
Amith Yamasanie4afaa32014-06-30 14:55:07 +0530799 serializer.startTag(null, TAG_GUEST_RESTRICTIONS);
800 writeRestrictionsLocked(serializer, mGuestRestrictions);
801 serializer.endTag(null, TAG_GUEST_RESTRICTIONS);
Amith Yamasani4b2e9342011-03-31 12:38:53 -0700802 for (int i = 0; i < mUsers.size(); i++) {
803 UserInfo user = mUsers.valueAt(i);
804 serializer.startTag(null, TAG_USER);
805 serializer.attribute(null, ATTR_ID, Integer.toString(user.id));
806 serializer.endTag(null, TAG_USER);
Amith Yamasani4b2e9342011-03-31 12:38:53 -0700807 }
808
809 serializer.endTag(null, TAG_USERS);
810
811 serializer.endDocument();
Amith Yamasani2a003292012-08-14 18:25:45 -0700812 userListFile.finishWrite(fos);
813 } catch (Exception e) {
814 userListFile.failWrite(fos);
Amith Yamasani0b285492011-04-14 17:35:23 -0700815 Slog.e(LOG_TAG, "Error writing user list");
Amith Yamasani4b2e9342011-03-31 12:38:53 -0700816 }
817 }
818
Amith Yamasanie4afaa32014-06-30 14:55:07 +0530819 private void writeRestrictionsLocked(XmlSerializer serializer, Bundle restrictions)
820 throws IOException {
821 serializer.startTag(null, TAG_RESTRICTIONS);
822 writeBoolean(serializer, restrictions, UserManager.DISALLOW_CONFIG_WIFI);
823 writeBoolean(serializer, restrictions, UserManager.DISALLOW_MODIFY_ACCOUNTS);
824 writeBoolean(serializer, restrictions, UserManager.DISALLOW_INSTALL_APPS);
825 writeBoolean(serializer, restrictions, UserManager.DISALLOW_UNINSTALL_APPS);
826 writeBoolean(serializer, restrictions, UserManager.DISALLOW_SHARE_LOCATION);
827 writeBoolean(serializer, restrictions,
828 UserManager.DISALLOW_INSTALL_UNKNOWN_SOURCES);
829 writeBoolean(serializer, restrictions, UserManager.DISALLOW_CONFIG_BLUETOOTH);
830 writeBoolean(serializer, restrictions, UserManager.DISALLOW_USB_FILE_TRANSFER);
831 writeBoolean(serializer, restrictions, UserManager.DISALLOW_CONFIG_CREDENTIALS);
832 writeBoolean(serializer, restrictions, UserManager.DISALLOW_REMOVE_USER);
833 writeBoolean(serializer, restrictions, UserManager.DISALLOW_DEBUGGING_FEATURES);
834 writeBoolean(serializer, restrictions, UserManager.DISALLOW_CONFIG_VPN);
835 writeBoolean(serializer, restrictions, UserManager.DISALLOW_CONFIG_TETHERING);
836 writeBoolean(serializer, restrictions, UserManager.DISALLOW_FACTORY_RESET);
837 writeBoolean(serializer, restrictions, UserManager.DISALLOW_ADD_USER);
838 writeBoolean(serializer, restrictions, UserManager.ENSURE_VERIFY_APPS);
839 writeBoolean(serializer, restrictions, UserManager.DISALLOW_CONFIG_CELL_BROADCASTS);
840 writeBoolean(serializer, restrictions, UserManager.DISALLOW_CONFIG_MOBILE_NETWORKS);
841 writeBoolean(serializer, restrictions, UserManager.DISALLOW_APPS_CONTROL);
842 writeBoolean(serializer, restrictions, UserManager.DISALLOW_MOUNT_PHYSICAL_MEDIA);
843 writeBoolean(serializer, restrictions, UserManager.DISALLOW_UNMUTE_MICROPHONE);
844 writeBoolean(serializer, restrictions, UserManager.DISALLOW_ADJUST_VOLUME);
845 writeBoolean(serializer, restrictions, UserManager.DISALLOW_TELEPHONY);
Jason Monk1c7c3192014-06-26 12:52:18 -0400846 writeBoolean(serializer, restrictions, UserManager.DISALLOW_CREATE_WINDOWS);
Amith Yamasanie4afaa32014-06-30 14:55:07 +0530847 serializer.endTag(null, TAG_RESTRICTIONS);
848 }
849
Amith Yamasanie4cf7342012-12-17 11:12:09 -0800850 private UserInfo readUserLocked(int id) {
Amith Yamasani4b2e9342011-03-31 12:38:53 -0700851 int flags = 0;
Amith Yamasani2a003292012-08-14 18:25:45 -0700852 int serialNumber = id;
Amith Yamasani4b2e9342011-03-31 12:38:53 -0700853 String name = null;
Amith Yamasanib8151ec2012-04-18 18:02:48 -0700854 String iconPath = null;
Amith Yamasani920ace02012-09-20 22:15:37 -0700855 long creationTime = 0L;
856 long lastLoggedInTime = 0L;
Amith Yamasani655d0e22013-06-12 14:19:10 -0700857 long salt = 0L;
858 String pinHash = null;
859 int failedAttempts = 0;
Kenny Guy2a764942014-04-02 13:29:20 +0100860 int profileGroupId = UserInfo.NO_PROFILE_GROUP_ID;
Amith Yamasani655d0e22013-06-12 14:19:10 -0700861 long lastAttemptTime = 0L;
Dianne Hackbornd4ac8d72012-09-27 23:20:10 -0700862 boolean partial = false;
Amith Yamasanie4cf7342012-12-17 11:12:09 -0800863 Bundle restrictions = new Bundle();
Amith Yamasani4b2e9342011-03-31 12:38:53 -0700864
865 FileInputStream fis = null;
866 try {
Amith Yamasani2a003292012-08-14 18:25:45 -0700867 AtomicFile userFile =
Amith Yamasanifc95e702013-09-26 13:20:17 -0700868 new AtomicFile(new File(mUsersDir, Integer.toString(id) + XML_SUFFIX));
Amith Yamasani2a003292012-08-14 18:25:45 -0700869 fis = userFile.openRead();
Amith Yamasani4b2e9342011-03-31 12:38:53 -0700870 XmlPullParser parser = Xml.newPullParser();
871 parser.setInput(fis, null);
872 int type;
873 while ((type = parser.next()) != XmlPullParser.START_TAG
874 && type != XmlPullParser.END_DOCUMENT) {
875 ;
876 }
877
878 if (type != XmlPullParser.START_TAG) {
Amith Yamasani0b285492011-04-14 17:35:23 -0700879 Slog.e(LOG_TAG, "Unable to read user " + id);
Amith Yamasani4b2e9342011-03-31 12:38:53 -0700880 return null;
881 }
882
883 if (type == XmlPullParser.START_TAG && parser.getName().equals(TAG_USER)) {
Amith Yamasani920ace02012-09-20 22:15:37 -0700884 int storedId = readIntAttribute(parser, ATTR_ID, -1);
885 if (storedId != id) {
Amith Yamasani0b285492011-04-14 17:35:23 -0700886 Slog.e(LOG_TAG, "User id does not match the file name");
Amith Yamasani4b2e9342011-03-31 12:38:53 -0700887 return null;
888 }
Amith Yamasani920ace02012-09-20 22:15:37 -0700889 serialNumber = readIntAttribute(parser, ATTR_SERIAL_NO, id);
890 flags = readIntAttribute(parser, ATTR_FLAGS, 0);
Amith Yamasanib8151ec2012-04-18 18:02:48 -0700891 iconPath = parser.getAttributeValue(null, ATTR_ICON_PATH);
Amith Yamasani920ace02012-09-20 22:15:37 -0700892 creationTime = readLongAttribute(parser, ATTR_CREATION_TIME, 0);
893 lastLoggedInTime = readLongAttribute(parser, ATTR_LAST_LOGGED_IN_TIME, 0);
Amith Yamasani655d0e22013-06-12 14:19:10 -0700894 salt = readLongAttribute(parser, ATTR_SALT, 0L);
895 pinHash = parser.getAttributeValue(null, ATTR_PIN_HASH);
896 failedAttempts = readIntAttribute(parser, ATTR_FAILED_ATTEMPTS, 0);
897 lastAttemptTime = readLongAttribute(parser, ATTR_LAST_RETRY_MS, 0L);
Kenny Guy2a764942014-04-02 13:29:20 +0100898 profileGroupId = readIntAttribute(parser, ATTR_PROFILE_GROUP_ID,
899 UserInfo.NO_PROFILE_GROUP_ID);
900 if (profileGroupId == UserInfo.NO_PROFILE_GROUP_ID) {
901 // This attribute was added and renamed during development of L.
902 // TODO Remove upgrade path by 1st May 2014
903 profileGroupId = readIntAttribute(parser, "relatedGroupId",
904 UserInfo.NO_PROFILE_GROUP_ID);
905 }
Dianne Hackbornd4ac8d72012-09-27 23:20:10 -0700906 String valueString = parser.getAttributeValue(null, ATTR_PARTIAL);
907 if ("true".equals(valueString)) {
908 partial = true;
909 }
Amith Yamasani4b2e9342011-03-31 12:38:53 -0700910
Amith Yamasanie4cf7342012-12-17 11:12:09 -0800911 int outerDepth = parser.getDepth();
912 while ((type = parser.next()) != XmlPullParser.END_DOCUMENT
913 && (type != XmlPullParser.END_TAG || parser.getDepth() > outerDepth)) {
914 if (type == XmlPullParser.END_TAG || type == XmlPullParser.TEXT) {
915 continue;
916 }
917 String tag = parser.getName();
918 if (TAG_NAME.equals(tag)) {
919 type = parser.next();
920 if (type == XmlPullParser.TEXT) {
921 name = parser.getText();
922 }
923 } else if (TAG_RESTRICTIONS.equals(tag)) {
Amith Yamasanie4afaa32014-06-30 14:55:07 +0530924 readRestrictionsLocked(parser, restrictions);
Amith Yamasani4b2e9342011-03-31 12:38:53 -0700925 }
926 }
927 }
Amith Yamasani4b2e9342011-03-31 12:38:53 -0700928
Amith Yamasanib8151ec2012-04-18 18:02:48 -0700929 UserInfo userInfo = new UserInfo(id, name, iconPath, flags);
Amith Yamasani2a003292012-08-14 18:25:45 -0700930 userInfo.serialNumber = serialNumber;
Amith Yamasani920ace02012-09-20 22:15:37 -0700931 userInfo.creationTime = creationTime;
932 userInfo.lastLoggedInTime = lastLoggedInTime;
Dianne Hackbornd4ac8d72012-09-27 23:20:10 -0700933 userInfo.partial = partial;
Kenny Guy2a764942014-04-02 13:29:20 +0100934 userInfo.profileGroupId = profileGroupId;
Amith Yamasanie4cf7342012-12-17 11:12:09 -0800935 mUserRestrictions.append(id, restrictions);
Amith Yamasani655d0e22013-06-12 14:19:10 -0700936 if (salt != 0L) {
937 RestrictionsPinState pinState = mRestrictionsPinStates.get(id);
938 if (pinState == null) {
939 pinState = new RestrictionsPinState();
940 mRestrictionsPinStates.put(id, pinState);
941 }
942 pinState.salt = salt;
943 pinState.pinHash = pinHash;
944 pinState.failedAttempts = failedAttempts;
945 pinState.lastAttemptTime = lastAttemptTime;
946 }
Amith Yamasani4b2e9342011-03-31 12:38:53 -0700947 return userInfo;
948
949 } catch (IOException ioe) {
950 } catch (XmlPullParserException pe) {
Dianne Hackbornbfd89b32011-12-15 18:22:54 -0800951 } finally {
952 if (fis != null) {
953 try {
954 fis.close();
955 } catch (IOException e) {
956 }
957 }
Amith Yamasani4b2e9342011-03-31 12:38:53 -0700958 }
959 return null;
960 }
961
Amith Yamasanie4afaa32014-06-30 14:55:07 +0530962 private void readRestrictionsLocked(XmlPullParser parser, Bundle restrictions)
963 throws IOException {
964 readBoolean(parser, restrictions, UserManager.DISALLOW_CONFIG_WIFI);
965 readBoolean(parser, restrictions, UserManager.DISALLOW_MODIFY_ACCOUNTS);
966 readBoolean(parser, restrictions, UserManager.DISALLOW_INSTALL_APPS);
967 readBoolean(parser, restrictions, UserManager.DISALLOW_UNINSTALL_APPS);
968 readBoolean(parser, restrictions, UserManager.DISALLOW_SHARE_LOCATION);
969 readBoolean(parser, restrictions,
970 UserManager.DISALLOW_INSTALL_UNKNOWN_SOURCES);
971 readBoolean(parser, restrictions, UserManager.DISALLOW_CONFIG_BLUETOOTH);
972 readBoolean(parser, restrictions, UserManager.DISALLOW_USB_FILE_TRANSFER);
973 readBoolean(parser, restrictions, UserManager.DISALLOW_CONFIG_CREDENTIALS);
974 readBoolean(parser, restrictions, UserManager.DISALLOW_REMOVE_USER);
975 readBoolean(parser, restrictions, UserManager.DISALLOW_DEBUGGING_FEATURES);
976 readBoolean(parser, restrictions, UserManager.DISALLOW_CONFIG_VPN);
977 readBoolean(parser, restrictions, UserManager.DISALLOW_CONFIG_TETHERING);
978 readBoolean(parser, restrictions, UserManager.DISALLOW_FACTORY_RESET);
979 readBoolean(parser, restrictions, UserManager.DISALLOW_ADD_USER);
980 readBoolean(parser, restrictions, UserManager.ENSURE_VERIFY_APPS);
981 readBoolean(parser, restrictions, UserManager.DISALLOW_CONFIG_CELL_BROADCASTS);
982 readBoolean(parser, restrictions, UserManager.DISALLOW_CONFIG_MOBILE_NETWORKS);
983 readBoolean(parser, restrictions, UserManager.DISALLOW_APPS_CONTROL);
984 readBoolean(parser, restrictions,
985 UserManager.DISALLOW_MOUNT_PHYSICAL_MEDIA);
986 readBoolean(parser, restrictions, UserManager.DISALLOW_UNMUTE_MICROPHONE);
987 readBoolean(parser, restrictions, UserManager.DISALLOW_ADJUST_VOLUME);
988 readBoolean(parser, restrictions, UserManager.DISALLOW_TELEPHONY);
Jason Monk1c7c3192014-06-26 12:52:18 -0400989 readBoolean(parser, restrictions, UserManager.DISALLOW_CREATE_WINDOWS);
Amith Yamasanie4afaa32014-06-30 14:55:07 +0530990 }
991
Amith Yamasanie4cf7342012-12-17 11:12:09 -0800992 private void readBoolean(XmlPullParser parser, Bundle restrictions,
993 String restrictionKey) {
994 String value = parser.getAttributeValue(null, restrictionKey);
Amith Yamasani71e6c692013-03-24 17:39:28 -0700995 if (value != null) {
996 restrictions.putBoolean(restrictionKey, Boolean.parseBoolean(value));
997 }
Amith Yamasanie4cf7342012-12-17 11:12:09 -0800998 }
999
1000 private void writeBoolean(XmlSerializer xml, Bundle restrictions, String restrictionKey)
1001 throws IOException {
1002 if (restrictions.containsKey(restrictionKey)) {
1003 xml.attribute(null, restrictionKey,
1004 Boolean.toString(restrictions.getBoolean(restrictionKey)));
1005 }
1006 }
1007
Amith Yamasani920ace02012-09-20 22:15:37 -07001008 private int readIntAttribute(XmlPullParser parser, String attr, int defaultValue) {
1009 String valueString = parser.getAttributeValue(null, attr);
1010 if (valueString == null) return defaultValue;
1011 try {
1012 return Integer.parseInt(valueString);
1013 } catch (NumberFormatException nfe) {
1014 return defaultValue;
1015 }
1016 }
1017
1018 private long readLongAttribute(XmlPullParser parser, String attr, long defaultValue) {
1019 String valueString = parser.getAttributeValue(null, attr);
1020 if (valueString == null) return defaultValue;
1021 try {
1022 return Long.parseLong(valueString);
1023 } catch (NumberFormatException nfe) {
1024 return defaultValue;
1025 }
1026 }
1027
Amith Yamasani1a7472e2013-07-02 11:17:30 -07001028 private boolean isPackageInstalled(String pkg, int userId) {
1029 final ApplicationInfo info = mPm.getApplicationInfo(pkg,
1030 PackageManager.GET_UNINSTALLED_PACKAGES,
1031 userId);
1032 if (info == null || (info.flags&ApplicationInfo.FLAG_INSTALLED) == 0) {
1033 return false;
1034 }
1035 return true;
1036 }
1037
Amith Yamasanib82add22013-07-09 11:24:44 -07001038 /**
Amith Yamasani1a7472e2013-07-02 11:17:30 -07001039 * Removes all the restrictions files (res_<packagename>) for a given user, if all is true,
1040 * else removes only those packages that have been uninstalled.
Amith Yamasanib82add22013-07-09 11:24:44 -07001041 * Does not do any permissions checking.
1042 */
Amith Yamasani1a7472e2013-07-02 11:17:30 -07001043 private void cleanAppRestrictions(int userId, boolean all) {
Amith Yamasanib82add22013-07-09 11:24:44 -07001044 synchronized (mPackagesLock) {
1045 File dir = Environment.getUserSystemDirectory(userId);
1046 String[] files = dir.list();
1047 if (files == null) return;
1048 for (String fileName : files) {
1049 if (fileName.startsWith(RESTRICTIONS_FILE_PREFIX)) {
1050 File resFile = new File(dir, fileName);
1051 if (resFile.exists()) {
Amith Yamasani1a7472e2013-07-02 11:17:30 -07001052 if (all) {
1053 resFile.delete();
1054 } else {
Amith Yamasanifc95e702013-09-26 13:20:17 -07001055 String pkg = restrictionsFileNameToPackage(fileName);
Amith Yamasani1a7472e2013-07-02 11:17:30 -07001056 if (!isPackageInstalled(pkg, userId)) {
1057 resFile.delete();
1058 }
1059 }
Amith Yamasanib82add22013-07-09 11:24:44 -07001060 }
1061 }
1062 }
1063 }
1064 }
1065
Amith Yamasani1a7472e2013-07-02 11:17:30 -07001066 /**
1067 * Removes the app restrictions file for a specific package and user id, if it exists.
1068 */
1069 private void cleanAppRestrictionsForPackage(String pkg, int userId) {
1070 synchronized (mPackagesLock) {
1071 File dir = Environment.getUserSystemDirectory(userId);
Amith Yamasanifc95e702013-09-26 13:20:17 -07001072 File resFile = new File(dir, packageToRestrictionsFileName(pkg));
Amith Yamasani1a7472e2013-07-02 11:17:30 -07001073 if (resFile.exists()) {
1074 resFile.delete();
1075 }
1076 }
1077 }
1078
Kenny Guya52dc3e2014-02-11 15:33:14 +00001079 @Override
Kenny Guy2a764942014-04-02 13:29:20 +01001080 public UserInfo createProfileForUser(String name, int flags, int userId) {
Kenny Guya52dc3e2014-02-11 15:33:14 +00001081 checkManageUsersPermission("Only the system can create users");
Kenny Guy2a764942014-04-02 13:29:20 +01001082 if (userId != UserHandle.USER_OWNER) {
1083 Slog.w(LOG_TAG, "Only user owner can have profiles");
Kenny Guya52dc3e2014-02-11 15:33:14 +00001084 return null;
1085 }
Kenny Guy2a764942014-04-02 13:29:20 +01001086 return createUserInternal(name, flags, userId);
Kenny Guya52dc3e2014-02-11 15:33:14 +00001087 }
1088
Amith Yamasani258848d2012-08-10 17:06:33 -07001089 @Override
Amith Yamasani13593602012-03-22 16:16:17 -07001090 public UserInfo createUser(String name, int flags) {
Amith Yamasani2a003292012-08-14 18:25:45 -07001091 checkManageUsersPermission("Only the system can create users");
Nicolas Prevotc6d033e2014-02-27 13:11:09 +00001092 return createUserInternal(name, flags, UserHandle.USER_NULL);
Kenny Guya52dc3e2014-02-11 15:33:14 +00001093 }
Amith Yamasanifaea76f2012-09-11 10:59:48 -07001094
Jessica Hummelbe81c802014-04-22 15:49:22 +01001095 private UserInfo createUserInternal(String name, int flags, int parentId) {
Julia Reynolds75175022014-06-26 16:35:00 -04001096 if (getUserRestrictions(UserHandle.getCallingUserId()).getBoolean(
1097 UserManager.DISALLOW_ADD_USER, false)) {
1098 Log.w(LOG_TAG, "Cannot add user. DISALLOW_ADD_USER is enabled.");
1099 return null;
1100 }
Dianne Hackborn5dc5a002012-09-15 19:33:48 -07001101 final long ident = Binder.clearCallingIdentity();
Nicolas Prevotc6d033e2014-02-27 13:11:09 +00001102 UserInfo userInfo = null;
Dianne Hackborn5dc5a002012-09-15 19:33:48 -07001103 try {
1104 synchronized (mInstallLock) {
1105 synchronized (mPackagesLock) {
Jessica Hummelbe81c802014-04-22 15:49:22 +01001106 UserInfo parent = null;
1107 if (parentId != UserHandle.USER_NULL) {
1108 parent = getUserInfoLocked(parentId);
1109 if (parent == null) return null;
Nicolas Prevotc6d033e2014-02-27 13:11:09 +00001110 }
Dianne Hackborn5dc5a002012-09-15 19:33:48 -07001111 if (isUserLimitReachedLocked()) return null;
1112 int userId = getNextAvailableIdLocked();
1113 userInfo = new UserInfo(userId, name, null, flags);
1114 File userPath = new File(mBaseUserPath, Integer.toString(userId));
1115 userInfo.serialNumber = mNextSerialNumber++;
Amith Yamasani920ace02012-09-20 22:15:37 -07001116 long now = System.currentTimeMillis();
1117 userInfo.creationTime = (now > EPOCH_PLUS_30_YEARS) ? now : 0;
Dianne Hackbornd4ac8d72012-09-27 23:20:10 -07001118 userInfo.partial = true;
Amith Yamasani16389312012-10-17 21:20:14 -07001119 Environment.getUserSystemDirectory(userInfo.id).mkdirs();
Dianne Hackborn5dc5a002012-09-15 19:33:48 -07001120 mUsers.put(userId, userInfo);
1121 writeUserListLocked();
Jessica Hummelbe81c802014-04-22 15:49:22 +01001122 if (parent != null) {
1123 if (parent.profileGroupId == UserInfo.NO_PROFILE_GROUP_ID) {
1124 parent.profileGroupId = parent.id;
1125 writeUserLocked(parent);
Kenny Guya52dc3e2014-02-11 15:33:14 +00001126 }
Jessica Hummelbe81c802014-04-22 15:49:22 +01001127 userInfo.profileGroupId = parent.profileGroupId;
Kenny Guya52dc3e2014-02-11 15:33:14 +00001128 }
Dianne Hackborn5dc5a002012-09-15 19:33:48 -07001129 writeUserLocked(userInfo);
Dianne Hackborn5dc5a002012-09-15 19:33:48 -07001130 mPm.createNewUserLILPw(userId, userPath);
Dianne Hackbornd4ac8d72012-09-27 23:20:10 -07001131 userInfo.partial = false;
1132 writeUserLocked(userInfo);
1133 updateUserIdsLocked();
Geoffrey Borggaarde45e45e32013-01-24 10:03:20 -05001134 Bundle restrictions = new Bundle();
Geoffrey Borggaarde45e45e32013-01-24 10:03:20 -05001135 mUserRestrictions.append(userId, restrictions);
Dianne Hackborn5dc5a002012-09-15 19:33:48 -07001136 }
Dianne Hackborn4428e172012-08-24 17:43:05 -07001137 }
Dianne Hackborn5dc5a002012-09-15 19:33:48 -07001138 if (userInfo != null) {
1139 Intent addedIntent = new Intent(Intent.ACTION_USER_ADDED);
1140 addedIntent.putExtra(Intent.EXTRA_USER_HANDLE, userInfo.id);
1141 mContext.sendBroadcastAsUser(addedIntent, UserHandle.ALL,
1142 android.Manifest.permission.MANAGE_USERS);
1143 }
1144 } finally {
1145 Binder.restoreCallingIdentity(ident);
Amith Yamasani258848d2012-08-10 17:06:33 -07001146 }
Amith Yamasani4b2e9342011-03-31 12:38:53 -07001147 return userInfo;
1148 }
1149
Amith Yamasani0b285492011-04-14 17:35:23 -07001150 /**
1151 * Removes a user and all data directories created for that user. This method should be called
1152 * after the user's processes have been terminated.
Dianne Hackborn10ad9822014-03-17 11:28:36 -07001153 * @param userHandle the user's id
Amith Yamasani0b285492011-04-14 17:35:23 -07001154 */
Amith Yamasani258848d2012-08-10 17:06:33 -07001155 public boolean removeUser(int userHandle) {
Amith Yamasani2a003292012-08-14 18:25:45 -07001156 checkManageUsersPermission("Only the system can remove users");
Julia Reynolds4ac5f852014-06-23 17:38:51 -04001157 if (getUserRestrictions(UserHandle.getCallingUserId()).getBoolean(
1158 UserManager.DISALLOW_REMOVE_USER, false)) {
1159 Log.w(LOG_TAG, "Cannot remove user. DISALLOW_REMOVE_USER is enabled.");
1160 return false;
1161 }
1162
Kenny Guyee58b4f2014-05-23 15:19:53 +01001163 long ident = Binder.clearCallingIdentity();
1164 try {
1165 final UserInfo user;
1166 synchronized (mPackagesLock) {
1167 user = mUsers.get(userHandle);
Kenny Guy17c9d692014-06-13 13:51:42 +01001168 if (userHandle == 0 || user == null || mRemovingUserIds.get(userHandle)) {
Kenny Guyee58b4f2014-05-23 15:19:53 +01001169 return false;
1170 }
1171 mRemovingUserIds.put(userHandle, true);
1172 try {
1173 mAppOpsService.removeUser(userHandle);
1174 } catch (RemoteException e) {
1175 Log.w(LOG_TAG, "Unable to notify AppOpsService of removing user", e);
1176 }
1177 // Set this to a partially created user, so that the user will be purged
1178 // on next startup, in case the runtime stops now before stopping and
1179 // removing the user completely.
1180 user.partial = true;
1181 // Mark it as disabled, so that it isn't returned any more when
1182 // profiles are queried.
1183 user.flags |= UserInfo.FLAG_DISABLED;
1184 writeUserLocked(user);
1185 }
1186
1187 if (user.profileGroupId != UserInfo.NO_PROFILE_GROUP_ID
1188 && user.isManagedProfile()) {
1189 // Send broadcast to notify system that the user removed was a
1190 // managed user.
1191 sendProfileRemovedBroadcast(user.profileGroupId, user.id);
1192 }
1193
1194 if (DBG) Slog.i(LOG_TAG, "Stopping user " + userHandle);
1195 int res;
1196 try {
1197 res = ActivityManagerNative.getDefault().stopUser(userHandle,
1198 new IStopUserCallback.Stub() {
1199 @Override
1200 public void userStopped(int userId) {
1201 finishRemoveUser(userId);
1202 }
1203 @Override
1204 public void userStopAborted(int userId) {
1205 }
1206 });
1207 } catch (RemoteException e) {
Dianne Hackborn80a4af22012-08-27 19:18:31 -07001208 return false;
1209 }
Kenny Guyee58b4f2014-05-23 15:19:53 +01001210 return res == ActivityManager.USER_OP_SUCCESS;
1211 } finally {
1212 Binder.restoreCallingIdentity(ident);
Dianne Hackborn80a4af22012-08-27 19:18:31 -07001213 }
Dianne Hackborn80a4af22012-08-27 19:18:31 -07001214 }
1215
Amith Yamasanidb6a14c2012-10-17 21:16:52 -07001216 void finishRemoveUser(final int userHandle) {
Amith Yamasani16389312012-10-17 21:20:14 -07001217 if (DBG) Slog.i(LOG_TAG, "finishRemoveUser " + userHandle);
Amith Yamasanidb6a14c2012-10-17 21:16:52 -07001218 // Let other services shutdown any activity and clean up their state before completely
1219 // wiping the user's system directory and removing from the user list
Dianne Hackborn5dc5a002012-09-15 19:33:48 -07001220 long ident = Binder.clearCallingIdentity();
1221 try {
1222 Intent addedIntent = new Intent(Intent.ACTION_USER_REMOVED);
1223 addedIntent.putExtra(Intent.EXTRA_USER_HANDLE, userHandle);
Amith Yamasanidb6a14c2012-10-17 21:16:52 -07001224 mContext.sendOrderedBroadcastAsUser(addedIntent, UserHandle.ALL,
1225 android.Manifest.permission.MANAGE_USERS,
1226
1227 new BroadcastReceiver() {
1228 @Override
1229 public void onReceive(Context context, Intent intent) {
1230 if (DBG) {
1231 Slog.i(LOG_TAG,
1232 "USER_REMOVED broadcast sent, cleaning up user data "
1233 + userHandle);
1234 }
1235 new Thread() {
1236 public void run() {
1237 synchronized (mInstallLock) {
1238 synchronized (mPackagesLock) {
1239 removeUserStateLocked(userHandle);
1240 }
1241 }
1242 }
1243 }.start();
1244 }
1245 },
1246
1247 null, Activity.RESULT_OK, null, null);
Dianne Hackborn5dc5a002012-09-15 19:33:48 -07001248 } finally {
1249 Binder.restoreCallingIdentity(ident);
1250 }
Amith Yamasani2a003292012-08-14 18:25:45 -07001251 }
1252
Jeff Sharkeyffe0cb42012-11-05 17:24:43 -08001253 private void removeUserStateLocked(final int userHandle) {
Dianne Hackbornd4ac8d72012-09-27 23:20:10 -07001254 // Cleanup package manager settings
1255 mPm.cleanUpUserLILPw(userHandle);
1256
1257 // Remove this user from the list
1258 mUsers.remove(userHandle);
Jeff Sharkeyffe0cb42012-11-05 17:24:43 -08001259
1260 // Have user ID linger for several seconds to let external storage VFS
1261 // cache entries expire. This must be greater than the 'entry_valid'
1262 // timeout used by the FUSE daemon.
1263 mHandler.postDelayed(new Runnable() {
1264 @Override
1265 public void run() {
1266 synchronized (mPackagesLock) {
1267 mRemovingUserIds.delete(userHandle);
1268 }
1269 }
1270 }, MINUTE_IN_MILLIS);
1271
Amith Yamasani655d0e22013-06-12 14:19:10 -07001272 mRestrictionsPinStates.remove(userHandle);
Dianne Hackbornd4ac8d72012-09-27 23:20:10 -07001273 // Remove user file
Amith Yamasanifc95e702013-09-26 13:20:17 -07001274 AtomicFile userFile = new AtomicFile(new File(mUsersDir, userHandle + XML_SUFFIX));
Dianne Hackbornd4ac8d72012-09-27 23:20:10 -07001275 userFile.delete();
1276 // Update the user list
1277 writeUserListLocked();
1278 updateUserIdsLocked();
1279 removeDirectoryRecursive(Environment.getUserSystemDirectory(userHandle));
1280 }
1281
Amith Yamasani61f57372012-08-31 12:12:28 -07001282 private void removeDirectoryRecursive(File parent) {
1283 if (parent.isDirectory()) {
1284 String[] files = parent.list();
1285 for (String filename : files) {
1286 File child = new File(parent, filename);
1287 removeDirectoryRecursive(child);
1288 }
1289 }
1290 parent.delete();
1291 }
1292
Kenny Guyf8d3a232014-05-15 16:09:52 +01001293 private void sendProfileRemovedBroadcast(int parentUserId, int removedUserId) {
Adam Connors7b66ed52014-04-14 11:58:10 +01001294 Intent managedProfileIntent = new Intent(Intent.ACTION_MANAGED_PROFILE_REMOVED);
Adam Connorsd4b584e2014-06-09 13:55:47 +01001295 managedProfileIntent.addFlags(Intent.FLAG_RECEIVER_REGISTERED_ONLY |
1296 Intent.FLAG_RECEIVER_FOREGROUND);
Kenny Guyf8d3a232014-05-15 16:09:52 +01001297 managedProfileIntent.putExtra(Intent.EXTRA_USER, new UserHandle(removedUserId));
1298 mContext.sendBroadcastAsUser(managedProfileIntent, new UserHandle(parentUserId), null);
Adam Connors7b66ed52014-04-14 11:58:10 +01001299 }
1300
Amith Yamasani2a003292012-08-14 18:25:45 -07001301 @Override
Amith Yamasani7e99bc02013-04-16 18:24:51 -07001302 public Bundle getApplicationRestrictions(String packageName) {
1303 return getApplicationRestrictionsForUser(packageName, UserHandle.getCallingUserId());
1304 }
1305
1306 @Override
1307 public Bundle getApplicationRestrictionsForUser(String packageName, int userId) {
Amith Yamasanidf2e92a2013-03-01 17:04:38 -08001308 if (UserHandle.getCallingUserId() != userId
Amith Yamasani9429afb2013-04-10 18:40:51 -07001309 || !UserHandle.isSameApp(Binder.getCallingUid(), getUidForPackage(packageName))) {
Amith Yamasanibe465322014-04-24 13:45:17 -07001310 checkManageUsersPermission("Only system can get restrictions for other users/apps");
Amith Yamasanidf2e92a2013-03-01 17:04:38 -08001311 }
1312 synchronized (mPackagesLock) {
1313 // Read the restrictions from XML
1314 return readApplicationRestrictionsLocked(packageName, userId);
1315 }
1316 }
1317
1318 @Override
Amith Yamasani7e99bc02013-04-16 18:24:51 -07001319 public void setApplicationRestrictions(String packageName, Bundle restrictions,
Amith Yamasanidf2e92a2013-03-01 17:04:38 -08001320 int userId) {
1321 if (UserHandle.getCallingUserId() != userId
Amith Yamasani9429afb2013-04-10 18:40:51 -07001322 || !UserHandle.isSameApp(Binder.getCallingUid(), getUidForPackage(packageName))) {
Amith Yamasanibe465322014-04-24 13:45:17 -07001323 checkManageUsersPermission("Only system can set restrictions for other users/apps");
Amith Yamasanidf2e92a2013-03-01 17:04:38 -08001324 }
1325 synchronized (mPackagesLock) {
1326 // Write the restrictions to XML
Amith Yamasani7e99bc02013-04-16 18:24:51 -07001327 writeApplicationRestrictionsLocked(packageName, restrictions, userId);
Amith Yamasanidf2e92a2013-03-01 17:04:38 -08001328 }
Robin Lee66e5d962014-04-09 16:44:21 +01001329
1330 // Notify package of changes via an intent - only sent to explicitly registered receivers.
1331 Intent changeIntent = new Intent(Intent.ACTION_APPLICATION_RESTRICTIONS_CHANGED);
1332 changeIntent.setPackage(packageName);
1333 changeIntent.addFlags(Intent.FLAG_RECEIVER_REGISTERED_ONLY);
1334 mContext.sendBroadcastAsUser(changeIntent, new UserHandle(userId));
Amith Yamasanidf2e92a2013-03-01 17:04:38 -08001335 }
1336
Amith Yamasani655d0e22013-06-12 14:19:10 -07001337 @Override
Amith Yamasanid304af62013-09-05 09:30:23 -07001338 public boolean setRestrictionsChallenge(String newPin) {
Amith Yamasani655d0e22013-06-12 14:19:10 -07001339 checkManageUsersPermission("Only system can modify the restrictions pin");
1340 int userId = UserHandle.getCallingUserId();
1341 synchronized (mPackagesLock) {
1342 RestrictionsPinState pinState = mRestrictionsPinStates.get(userId);
1343 if (pinState == null) {
1344 pinState = new RestrictionsPinState();
1345 }
1346 if (newPin == null) {
1347 pinState.salt = 0;
1348 pinState.pinHash = null;
1349 } else {
1350 try {
1351 pinState.salt = SecureRandom.getInstance("SHA1PRNG").nextLong();
1352 } catch (NoSuchAlgorithmException e) {
1353 pinState.salt = (long) (Math.random() * Long.MAX_VALUE);
1354 }
1355 pinState.pinHash = passwordToHash(newPin, pinState.salt);
1356 pinState.failedAttempts = 0;
1357 }
1358 mRestrictionsPinStates.put(userId, pinState);
1359 writeUserLocked(mUsers.get(userId));
1360 }
1361 return true;
1362 }
1363
1364 @Override
Amith Yamasanid304af62013-09-05 09:30:23 -07001365 public int checkRestrictionsChallenge(String pin) {
Amith Yamasani655d0e22013-06-12 14:19:10 -07001366 checkManageUsersPermission("Only system can verify the restrictions pin");
1367 int userId = UserHandle.getCallingUserId();
1368 synchronized (mPackagesLock) {
1369 RestrictionsPinState pinState = mRestrictionsPinStates.get(userId);
1370 // If there's no pin set, return error code
1371 if (pinState == null || pinState.salt == 0 || pinState.pinHash == null) {
1372 return UserManager.PIN_VERIFICATION_FAILED_NOT_SET;
1373 } else if (pin == null) {
1374 // If just checking if user can be prompted, return remaining time
1375 int waitTime = getRemainingTimeForPinAttempt(pinState);
1376 Slog.d(LOG_TAG, "Remaining waittime peek=" + waitTime);
1377 return waitTime;
1378 } else {
1379 int waitTime = getRemainingTimeForPinAttempt(pinState);
1380 Slog.d(LOG_TAG, "Remaining waittime=" + waitTime);
1381 if (waitTime > 0) {
1382 return waitTime;
1383 }
1384 if (passwordToHash(pin, pinState.salt).equals(pinState.pinHash)) {
1385 pinState.failedAttempts = 0;
1386 writeUserLocked(mUsers.get(userId));
1387 return UserManager.PIN_VERIFICATION_SUCCESS;
1388 } else {
1389 pinState.failedAttempts++;
1390 pinState.lastAttemptTime = System.currentTimeMillis();
1391 writeUserLocked(mUsers.get(userId));
1392 return waitTime;
1393 }
1394 }
1395 }
1396 }
1397
1398 private int getRemainingTimeForPinAttempt(RestrictionsPinState pinState) {
1399 int backoffIndex = Math.min(pinState.failedAttempts / BACKOFF_INC_INTERVAL,
1400 BACKOFF_TIMES.length - 1);
1401 int backoffTime = (pinState.failedAttempts % BACKOFF_INC_INTERVAL) == 0 ?
1402 BACKOFF_TIMES[backoffIndex] : 0;
1403 return (int) Math.max(backoffTime + pinState.lastAttemptTime - System.currentTimeMillis(),
1404 0);
1405 }
1406
1407 @Override
Amith Yamasanid304af62013-09-05 09:30:23 -07001408 public boolean hasRestrictionsChallenge() {
Amith Yamasani655d0e22013-06-12 14:19:10 -07001409 int userId = UserHandle.getCallingUserId();
1410 synchronized (mPackagesLock) {
Amith Yamasani0343ec32013-07-22 14:52:06 -07001411 return hasRestrictionsPinLocked(userId);
1412 }
1413 }
1414
1415 private boolean hasRestrictionsPinLocked(int userId) {
1416 RestrictionsPinState pinState = mRestrictionsPinStates.get(userId);
1417 if (pinState == null || pinState.salt == 0 || pinState.pinHash == null) {
1418 return false;
Amith Yamasani655d0e22013-06-12 14:19:10 -07001419 }
1420 return true;
1421 }
1422
Amith Yamasani1a7472e2013-07-02 11:17:30 -07001423 @Override
1424 public void removeRestrictions() {
Amith Yamasanibe465322014-04-24 13:45:17 -07001425 checkManageUsersPermission("Only system can remove restrictions");
Amith Yamasani1a7472e2013-07-02 11:17:30 -07001426 final int userHandle = UserHandle.getCallingUserId();
Amith Yamasani5e486f52013-08-07 11:06:44 -07001427 removeRestrictionsForUser(userHandle, true);
Amith Yamasani350962c2013-08-06 11:18:53 -07001428 }
1429
Amith Yamasani5e486f52013-08-07 11:06:44 -07001430 private void removeRestrictionsForUser(final int userHandle, boolean unblockApps) {
Amith Yamasani1a7472e2013-07-02 11:17:30 -07001431 synchronized (mPackagesLock) {
1432 // Remove all user restrictions
1433 setUserRestrictions(new Bundle(), userHandle);
1434 // Remove restrictions pin
Amith Yamasanid304af62013-09-05 09:30:23 -07001435 setRestrictionsChallenge(null);
Amith Yamasani1a7472e2013-07-02 11:17:30 -07001436 // Remove any app restrictions
1437 cleanAppRestrictions(userHandle, true);
1438 }
Amith Yamasani5e486f52013-08-07 11:06:44 -07001439 if (unblockApps) {
1440 unblockAllAppsForUser(userHandle);
1441 }
1442 }
1443
1444 private void unblockAllAppsForUser(final int userHandle) {
Amith Yamasani1a7472e2013-07-02 11:17:30 -07001445 mHandler.post(new Runnable() {
1446 @Override
1447 public void run() {
1448 List<ApplicationInfo> apps =
1449 mPm.getInstalledApplications(PackageManager.GET_UNINSTALLED_PACKAGES,
1450 userHandle).getList();
1451 final long ident = Binder.clearCallingIdentity();
1452 try {
1453 for (ApplicationInfo appInfo : apps) {
1454 if ((appInfo.flags & ApplicationInfo.FLAG_INSTALLED) != 0
1455 && (appInfo.flags & ApplicationInfo.FLAG_BLOCKED) != 0) {
1456 mPm.setApplicationBlockedSettingAsUser(appInfo.packageName, false,
1457 userHandle);
1458 }
1459 }
1460 } finally {
1461 Binder.restoreCallingIdentity(ident);
1462 }
1463 }
1464 });
1465 }
1466
Amith Yamasani655d0e22013-06-12 14:19:10 -07001467 /*
1468 * Generate a hash for the given password. To avoid brute force attacks, we use a salted hash.
1469 * Not the most secure, but it is at least a second level of protection. First level is that
1470 * the file is in a location only readable by the system process.
1471 * @param password the password.
1472 * @param salt the randomly generated salt
1473 * @return the hash of the pattern in a String.
1474 */
1475 private String passwordToHash(String password, long salt) {
1476 if (password == null) {
1477 return null;
1478 }
1479 String algo = null;
1480 String hashed = salt + password;
1481 try {
1482 byte[] saltedPassword = (password + salt).getBytes();
1483 byte[] sha1 = MessageDigest.getInstance(algo = "SHA-1").digest(saltedPassword);
1484 byte[] md5 = MessageDigest.getInstance(algo = "MD5").digest(saltedPassword);
1485 hashed = toHex(sha1) + toHex(md5);
1486 } catch (NoSuchAlgorithmException e) {
1487 Log.w(LOG_TAG, "Failed to encode string because of missing algorithm: " + algo);
1488 }
1489 return hashed;
1490 }
1491
1492 private static String toHex(byte[] ary) {
1493 final String hex = "0123456789ABCDEF";
1494 String ret = "";
1495 for (int i = 0; i < ary.length; i++) {
1496 ret += hex.charAt((ary[i] >> 4) & 0xf);
1497 ret += hex.charAt(ary[i] & 0xf);
1498 }
1499 return ret;
1500 }
1501
Amith Yamasanidf2e92a2013-03-01 17:04:38 -08001502 private int getUidForPackage(String packageName) {
Amith Yamasani9429afb2013-04-10 18:40:51 -07001503 long ident = Binder.clearCallingIdentity();
Amith Yamasanidf2e92a2013-03-01 17:04:38 -08001504 try {
1505 return mContext.getPackageManager().getApplicationInfo(packageName,
1506 PackageManager.GET_UNINSTALLED_PACKAGES).uid;
1507 } catch (NameNotFoundException nnfe) {
1508 return -1;
Amith Yamasani9429afb2013-04-10 18:40:51 -07001509 } finally {
1510 Binder.restoreCallingIdentity(ident);
Amith Yamasanidf2e92a2013-03-01 17:04:38 -08001511 }
1512 }
1513
Amith Yamasani7e99bc02013-04-16 18:24:51 -07001514 private Bundle readApplicationRestrictionsLocked(String packageName,
Amith Yamasanidf2e92a2013-03-01 17:04:38 -08001515 int userId) {
Amith Yamasani7e99bc02013-04-16 18:24:51 -07001516 final Bundle restrictions = new Bundle();
Amith Yamasanidf2e92a2013-03-01 17:04:38 -08001517 final ArrayList<String> values = new ArrayList<String>();
1518
1519 FileInputStream fis = null;
1520 try {
1521 AtomicFile restrictionsFile =
1522 new AtomicFile(new File(Environment.getUserSystemDirectory(userId),
Amith Yamasanifc95e702013-09-26 13:20:17 -07001523 packageToRestrictionsFileName(packageName)));
Amith Yamasanidf2e92a2013-03-01 17:04:38 -08001524 fis = restrictionsFile.openRead();
1525 XmlPullParser parser = Xml.newPullParser();
1526 parser.setInput(fis, null);
1527 int type;
1528 while ((type = parser.next()) != XmlPullParser.START_TAG
1529 && type != XmlPullParser.END_DOCUMENT) {
1530 ;
1531 }
1532
1533 if (type != XmlPullParser.START_TAG) {
1534 Slog.e(LOG_TAG, "Unable to read restrictions file "
1535 + restrictionsFile.getBaseFile());
Amith Yamasani7e99bc02013-04-16 18:24:51 -07001536 return restrictions;
Amith Yamasanidf2e92a2013-03-01 17:04:38 -08001537 }
1538
1539 while ((type = parser.next()) != XmlPullParser.END_DOCUMENT) {
1540 if (type == XmlPullParser.START_TAG && parser.getName().equals(TAG_ENTRY)) {
1541 String key = parser.getAttributeValue(null, ATTR_KEY);
Amith Yamasani7e99bc02013-04-16 18:24:51 -07001542 String valType = parser.getAttributeValue(null, ATTR_VALUE_TYPE);
Amith Yamasanidf2e92a2013-03-01 17:04:38 -08001543 String multiple = parser.getAttributeValue(null, ATTR_MULTIPLE);
1544 if (multiple != null) {
1545 int count = Integer.parseInt(multiple);
1546 while (count > 0 && (type = parser.next()) != XmlPullParser.END_DOCUMENT) {
1547 if (type == XmlPullParser.START_TAG
1548 && parser.getName().equals(TAG_VALUE)) {
1549 values.add(parser.nextText().trim());
1550 count--;
1551 }
1552 }
1553 String [] valueStrings = new String[values.size()];
1554 values.toArray(valueStrings);
Amith Yamasani7e99bc02013-04-16 18:24:51 -07001555 restrictions.putStringArray(key, valueStrings);
Amith Yamasanidf2e92a2013-03-01 17:04:38 -08001556 } else {
1557 String value = parser.nextText().trim();
Amith Yamasani5b5aa402014-06-01 20:10:14 -07001558 if (ATTR_TYPE_BOOLEAN.equals(valType)) {
1559 restrictions.putBoolean(key, Boolean.parseBoolean(value));
1560 } else if (ATTR_TYPE_INTEGER.equals(valType)) {
1561 restrictions.putInt(key, Integer.parseInt(value));
1562 } else {
1563 restrictions.putString(key, value);
1564 }
Amith Yamasanidf2e92a2013-03-01 17:04:38 -08001565 }
1566 }
1567 }
Amith Yamasanidf2e92a2013-03-01 17:04:38 -08001568 } catch (IOException ioe) {
1569 } catch (XmlPullParserException pe) {
1570 } finally {
1571 if (fis != null) {
1572 try {
1573 fis.close();
1574 } catch (IOException e) {
1575 }
1576 }
1577 }
Amith Yamasani7e99bc02013-04-16 18:24:51 -07001578 return restrictions;
Amith Yamasanidf2e92a2013-03-01 17:04:38 -08001579 }
1580
1581 private void writeApplicationRestrictionsLocked(String packageName,
Amith Yamasani7e99bc02013-04-16 18:24:51 -07001582 Bundle restrictions, int userId) {
Amith Yamasanidf2e92a2013-03-01 17:04:38 -08001583 FileOutputStream fos = null;
1584 AtomicFile restrictionsFile = new AtomicFile(
1585 new File(Environment.getUserSystemDirectory(userId),
Amith Yamasanifc95e702013-09-26 13:20:17 -07001586 packageToRestrictionsFileName(packageName)));
Amith Yamasanidf2e92a2013-03-01 17:04:38 -08001587 try {
1588 fos = restrictionsFile.startWrite();
1589 final BufferedOutputStream bos = new BufferedOutputStream(fos);
1590
1591 // XmlSerializer serializer = XmlUtils.serializerInstance();
1592 final XmlSerializer serializer = new FastXmlSerializer();
1593 serializer.setOutput(bos, "utf-8");
1594 serializer.startDocument(null, true);
1595 serializer.setFeature("http://xmlpull.org/v1/doc/features.html#indent-output", true);
1596
1597 serializer.startTag(null, TAG_RESTRICTIONS);
1598
Amith Yamasani7e99bc02013-04-16 18:24:51 -07001599 for (String key : restrictions.keySet()) {
1600 Object value = restrictions.get(key);
Amith Yamasanidf2e92a2013-03-01 17:04:38 -08001601 serializer.startTag(null, TAG_ENTRY);
Amith Yamasani7e99bc02013-04-16 18:24:51 -07001602 serializer.attribute(null, ATTR_KEY, key);
1603
1604 if (value instanceof Boolean) {
1605 serializer.attribute(null, ATTR_VALUE_TYPE, ATTR_TYPE_BOOLEAN);
1606 serializer.text(value.toString());
Amith Yamasani5b5aa402014-06-01 20:10:14 -07001607 } else if (value instanceof Integer) {
1608 serializer.attribute(null, ATTR_VALUE_TYPE, ATTR_TYPE_INTEGER);
1609 serializer.text(value.toString());
Amith Yamasani7e99bc02013-04-16 18:24:51 -07001610 } else if (value == null || value instanceof String) {
1611 serializer.attribute(null, ATTR_VALUE_TYPE, ATTR_TYPE_STRING);
1612 serializer.text(value != null ? (String) value : "");
Amith Yamasanidf2e92a2013-03-01 17:04:38 -08001613 } else {
Amith Yamasani7e99bc02013-04-16 18:24:51 -07001614 serializer.attribute(null, ATTR_VALUE_TYPE, ATTR_TYPE_STRING_ARRAY);
1615 String[] values = (String[]) value;
Amith Yamasanidf2e92a2013-03-01 17:04:38 -08001616 serializer.attribute(null, ATTR_MULTIPLE, Integer.toString(values.length));
Amith Yamasani7e99bc02013-04-16 18:24:51 -07001617 for (String choice : values) {
Amith Yamasanidf2e92a2013-03-01 17:04:38 -08001618 serializer.startTag(null, TAG_VALUE);
Amith Yamasani7e99bc02013-04-16 18:24:51 -07001619 serializer.text(choice != null ? choice : "");
Amith Yamasanidf2e92a2013-03-01 17:04:38 -08001620 serializer.endTag(null, TAG_VALUE);
1621 }
1622 }
1623 serializer.endTag(null, TAG_ENTRY);
1624 }
1625
1626 serializer.endTag(null, TAG_RESTRICTIONS);
1627
1628 serializer.endDocument();
1629 restrictionsFile.finishWrite(fos);
1630 } catch (Exception e) {
1631 restrictionsFile.failWrite(fos);
1632 Slog.e(LOG_TAG, "Error writing application restrictions list");
1633 }
1634 }
1635
1636 @Override
Amith Yamasani2a003292012-08-14 18:25:45 -07001637 public int getUserSerialNumber(int userHandle) {
Dianne Hackborn4428e172012-08-24 17:43:05 -07001638 synchronized (mPackagesLock) {
Amith Yamasani2a003292012-08-14 18:25:45 -07001639 if (!exists(userHandle)) return -1;
Amith Yamasani195263742012-08-21 15:40:12 -07001640 return getUserInfoLocked(userHandle).serialNumber;
Amith Yamasani2a003292012-08-14 18:25:45 -07001641 }
1642 }
1643
1644 @Override
1645 public int getUserHandle(int userSerialNumber) {
Dianne Hackborn4428e172012-08-24 17:43:05 -07001646 synchronized (mPackagesLock) {
Amith Yamasani2a003292012-08-14 18:25:45 -07001647 for (int userId : mUserIds) {
Amith Yamasani195263742012-08-21 15:40:12 -07001648 if (getUserInfoLocked(userId).serialNumber == userSerialNumber) return userId;
Amith Yamasani2a003292012-08-14 18:25:45 -07001649 }
1650 // Not found
1651 return -1;
Amith Yamasani13593602012-03-22 16:16:17 -07001652 }
1653 }
1654
Amith Yamasani0b285492011-04-14 17:35:23 -07001655 /**
1656 * Caches the list of user ids in an array, adjusting the array size when necessary.
1657 */
Amith Yamasani13593602012-03-22 16:16:17 -07001658 private void updateUserIdsLocked() {
Dianne Hackbornd4ac8d72012-09-27 23:20:10 -07001659 int num = 0;
Amith Yamasani0b285492011-04-14 17:35:23 -07001660 for (int i = 0; i < mUsers.size(); i++) {
Dianne Hackbornd4ac8d72012-09-27 23:20:10 -07001661 if (!mUsers.valueAt(i).partial) {
1662 num++;
1663 }
1664 }
Amith Yamasani16389312012-10-17 21:20:14 -07001665 final int[] newUsers = new int[num];
1666 int n = 0;
Dianne Hackbornd4ac8d72012-09-27 23:20:10 -07001667 for (int i = 0; i < mUsers.size(); i++) {
1668 if (!mUsers.valueAt(i).partial) {
Amith Yamasani16389312012-10-17 21:20:14 -07001669 newUsers[n++] = mUsers.keyAt(i);
Dianne Hackbornd4ac8d72012-09-27 23:20:10 -07001670 }
Amith Yamasani0b285492011-04-14 17:35:23 -07001671 }
Dianne Hackborn7767eac2012-08-23 18:25:40 -07001672 mUserIds = newUsers;
Amith Yamasani0b285492011-04-14 17:35:23 -07001673 }
1674
1675 /**
Amith Yamasani1a7472e2013-07-02 11:17:30 -07001676 * Make a note of the last started time of a user and do some cleanup.
Amith Yamasani920ace02012-09-20 22:15:37 -07001677 * @param userId the user that was just foregrounded
1678 */
1679 public void userForeground(int userId) {
1680 synchronized (mPackagesLock) {
1681 UserInfo user = mUsers.get(userId);
1682 long now = System.currentTimeMillis();
Dianne Hackbornd4ac8d72012-09-27 23:20:10 -07001683 if (user == null || user.partial) {
1684 Slog.w(LOG_TAG, "userForeground: unknown user #" + userId);
1685 return;
1686 }
1687 if (now > EPOCH_PLUS_30_YEARS) {
Amith Yamasani920ace02012-09-20 22:15:37 -07001688 user.lastLoggedInTime = now;
1689 writeUserLocked(user);
1690 }
Amith Yamasani1a7472e2013-07-02 11:17:30 -07001691 // If this is not a restricted profile and there is no restrictions pin, clean up
1692 // all restrictions files that might have been left behind, else clean up just the
1693 // ones with uninstalled packages
1694 RestrictionsPinState pinState = mRestrictionsPinStates.get(userId);
1695 final long salt = pinState == null ? 0 : pinState.salt;
1696 cleanAppRestrictions(userId, (!user.isRestricted() && salt == 0));
Amith Yamasani920ace02012-09-20 22:15:37 -07001697 }
1698 }
1699
1700 /**
Amith Yamasani0b285492011-04-14 17:35:23 -07001701 * Returns the next available user id, filling in any holes in the ids.
Amith Yamasani742a6712011-05-04 14:49:28 -07001702 * TODO: May not be a good idea to recycle ids, in case it results in confusion
1703 * for data and battery stats collection, or unexpected cross-talk.
Amith Yamasani0b285492011-04-14 17:35:23 -07001704 * @return
1705 */
Dianne Hackborn5dc5a002012-09-15 19:33:48 -07001706 private int getNextAvailableIdLocked() {
Dianne Hackborn4428e172012-08-24 17:43:05 -07001707 synchronized (mPackagesLock) {
Jeff Sharkeyffe0cb42012-11-05 17:24:43 -08001708 int i = MIN_USER_ID;
Amith Yamasani195263742012-08-21 15:40:12 -07001709 while (i < Integer.MAX_VALUE) {
Jeff Sharkeyffe0cb42012-11-05 17:24:43 -08001710 if (mUsers.indexOfKey(i) < 0 && !mRemovingUserIds.get(i)) {
Amith Yamasani195263742012-08-21 15:40:12 -07001711 break;
1712 }
1713 i++;
Amith Yamasani4b2e9342011-03-31 12:38:53 -07001714 }
Amith Yamasani195263742012-08-21 15:40:12 -07001715 return i;
Amith Yamasani4b2e9342011-03-31 12:38:53 -07001716 }
Amith Yamasani4b2e9342011-03-31 12:38:53 -07001717 }
Amith Yamasani920ace02012-09-20 22:15:37 -07001718
Amith Yamasanifc95e702013-09-26 13:20:17 -07001719 private String packageToRestrictionsFileName(String packageName) {
1720 return RESTRICTIONS_FILE_PREFIX + packageName + XML_SUFFIX;
1721 }
1722
1723 private String restrictionsFileNameToPackage(String fileName) {
1724 return fileName.substring(RESTRICTIONS_FILE_PREFIX.length(),
1725 (int) (fileName.length() - XML_SUFFIX.length()));
1726 }
1727
Amith Yamasani920ace02012-09-20 22:15:37 -07001728 @Override
1729 protected void dump(FileDescriptor fd, PrintWriter pw, String[] args) {
1730 if (mContext.checkCallingOrSelfPermission(android.Manifest.permission.DUMP)
1731 != PackageManager.PERMISSION_GRANTED) {
1732 pw.println("Permission Denial: can't dump UserManager from from pid="
1733 + Binder.getCallingPid()
1734 + ", uid=" + Binder.getCallingUid()
1735 + " without permission "
1736 + android.Manifest.permission.DUMP);
1737 return;
1738 }
1739
1740 long now = System.currentTimeMillis();
1741 StringBuilder sb = new StringBuilder();
1742 synchronized (mPackagesLock) {
1743 pw.println("Users:");
1744 for (int i = 0; i < mUsers.size(); i++) {
1745 UserInfo user = mUsers.valueAt(i);
1746 if (user == null) continue;
Amith Yamasani634cf312012-10-04 17:34:21 -07001747 pw.print(" "); pw.print(user); pw.print(" serialNo="); pw.print(user.serialNumber);
Jeff Sharkeyffe0cb42012-11-05 17:24:43 -08001748 if (mRemovingUserIds.get(mUsers.keyAt(i))) pw.print(" <removing> ");
Dianne Hackbornd4ac8d72012-09-27 23:20:10 -07001749 if (user.partial) pw.print(" <partial>");
1750 pw.println();
Amith Yamasani920ace02012-09-20 22:15:37 -07001751 pw.print(" Created: ");
1752 if (user.creationTime == 0) {
1753 pw.println("<unknown>");
1754 } else {
1755 sb.setLength(0);
1756 TimeUtils.formatDuration(now - user.creationTime, sb);
1757 sb.append(" ago");
1758 pw.println(sb);
1759 }
1760 pw.print(" Last logged in: ");
1761 if (user.lastLoggedInTime == 0) {
1762 pw.println("<unknown>");
1763 } else {
1764 sb.setLength(0);
1765 TimeUtils.formatDuration(now - user.lastLoggedInTime, sb);
1766 sb.append(" ago");
1767 pw.println(sb);
1768 }
1769 }
1770 }
1771 }
Amith Yamasani1a7472e2013-07-02 11:17:30 -07001772
1773 private PackageMonitor mUserPackageMonitor = new PackageMonitor() {
1774 @Override
1775 public void onPackageRemoved(String pkg, int uid) {
1776 final int userId = this.getChangingUserId();
1777 // Package could be disappearing because it is being blocked, so also check if
1778 // it has been uninstalled.
1779 final boolean uninstalled = isPackageDisappearing(pkg) == PACKAGE_PERMANENT_CHANGE;
1780 if (uninstalled && userId >= 0 && !isPackageInstalled(pkg, userId)) {
1781 cleanAppRestrictionsForPackage(pkg, userId);
1782 }
1783 }
1784 };
Amith Yamasani4b2e9342011-03-31 12:38:53 -07001785}