blob: 13f48263b69e880fdf21fbf6ed906c657ae6bd83 [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
Xiaohui Chenb3b92582015-12-07 11:22:13 -080019import android.Manifest;
Xiaohui Chen594f2082015-08-18 11:04:20 -070020import android.annotation.NonNull;
Makoto Onuki068c54a2015-10-13 14:34:03 -070021import android.annotation.Nullable;
Amith Yamasanidb6a14c2012-10-17 21:16:52 -070022import android.app.Activity;
Amith Yamasani2a003292012-08-14 18:25:45 -070023import android.app.ActivityManager;
Amith Yamasani515d4062015-09-28 11:30:06 -070024import android.app.ActivityManagerInternal;
Dianne Hackborn80a4af22012-08-27 19:18:31 -070025import android.app.ActivityManagerNative;
Todd Kennedy60459ab2015-10-30 11:32:16 -070026import android.app.IActivityManager;
Dianne Hackborn80a4af22012-08-27 19:18:31 -070027import android.app.IStopUserCallback;
Amith Yamasanidb6a14c2012-10-17 21:16:52 -070028import android.content.BroadcastReceiver;
Amith Yamasani258848d2012-08-10 17:06:33 -070029import android.content.Context;
30import android.content.Intent;
Amith Yamasani1a7472e2013-07-02 11:17:30 -070031import android.content.pm.ApplicationInfo;
Amith Yamasani0b285492011-04-14 17:35:23 -070032import android.content.pm.PackageManager;
Amith Yamasanidf2e92a2013-03-01 17:04:38 -080033import android.content.pm.PackageManager.NameNotFoundException;
Amith Yamasani4b2e9342011-03-31 12:38:53 -070034import android.content.pm.UserInfo;
Amith Yamasanie928d7d2012-09-17 21:46:51 -070035import android.graphics.Bitmap;
Amith Yamasani258848d2012-08-10 17:06:33 -070036import android.os.Binder;
Amith Yamasanie4cf7342012-12-17 11:12:09 -080037import android.os.Bundle;
Makoto Onuki1a2cd742015-11-16 13:51:27 -080038import android.os.Debug;
Amith Yamasani4b2e9342011-03-31 12:38:53 -070039import android.os.Environment;
40import android.os.FileUtils;
Jeff Sharkeyffe0cb42012-11-05 17:24:43 -080041import android.os.Handler;
Amith Yamasani258848d2012-08-10 17:06:33 -070042import android.os.IUserManager;
Fyodor Kupolov75d0ea82014-12-15 16:21:07 -080043import android.os.Message;
Adrian Roos1bdff912015-02-17 15:51:35 +010044import android.os.ParcelFileDescriptor;
Fyodor Kupolov262f9952015-03-23 18:55:11 -070045import android.os.Parcelable;
Amith Yamasani258848d2012-08-10 17:06:33 -070046import android.os.Process;
Dianne Hackborn80a4af22012-08-27 19:18:31 -070047import android.os.RemoteException;
Todd Kennedy60459ab2015-10-30 11:32:16 -070048import android.os.ResultReceiver;
Jason Monk62062992014-05-06 09:55:28 -040049import android.os.ServiceManager;
Todd Kennedy60459ab2015-10-30 11:32:16 -070050import android.os.ShellCommand;
Dianne Hackbornf02b60a2012-08-16 10:48:27 -070051import android.os.UserHandle;
Jeff Sharkey27bd34d2012-09-16 12:49:00 -070052import android.os.UserManager;
Makoto Onuki068c54a2015-10-13 14:34:03 -070053import android.os.UserManagerInternal;
Makoto Onukid45a4a22015-11-02 17:17:38 -080054import android.os.UserManagerInternal.UserRestrictionsListener;
Paul Crowley85e4e812015-05-19 12:42:00 +010055import android.os.storage.StorageManager;
Jeff Sharkey6dce4962015-07-03 18:08:41 -070056import android.os.storage.VolumeInfo;
57import android.system.ErrnoException;
58import android.system.Os;
59import android.system.OsConstants;
Amith Yamasani2a003292012-08-14 18:25:45 -070060import android.util.AtomicFile;
Amith Yamasani655d0e22013-06-12 14:19:10 -070061import android.util.Log;
Xiaohui Chenb3b92582015-12-07 11:22:13 -080062import android.util.Pair;
Amith Yamasani4b2e9342011-03-31 12:38:53 -070063import android.util.Slog;
64import android.util.SparseArray;
Jeff Sharkeyffe0cb42012-11-05 17:24:43 -080065import android.util.SparseBooleanArray;
Amith Yamasani920ace02012-09-20 22:15:37 -070066import android.util.TimeUtils;
Amith Yamasani4b2e9342011-03-31 12:38:53 -070067import android.util.Xml;
68
Makoto Onuki068c54a2015-10-13 14:34:03 -070069import com.android.internal.annotations.GuardedBy;
Fyodor Kupolov262f9952015-03-23 18:55:11 -070070import com.android.internal.annotations.VisibleForTesting;
Jason Monk62062992014-05-06 09:55:28 -040071import com.android.internal.app.IAppOpsService;
Jeff Sharkeyffe0cb42012-11-05 17:24:43 -080072import com.android.internal.util.FastXmlSerializer;
Makoto Onuki068c54a2015-10-13 14:34:03 -070073import com.android.internal.util.Preconditions;
Fyodor Kupolov262f9952015-03-23 18:55:11 -070074import com.android.internal.util.XmlUtils;
Clara Bayarri10ad84a2015-12-01 17:38:05 +000075import com.android.internal.widget.LockPatternUtils;
Amith Yamasani515d4062015-09-28 11:30:06 -070076import com.android.server.LocalServices;
Jeff Sharkeyffe0cb42012-11-05 17:24:43 -080077
78import org.xmlpull.v1.XmlPullParser;
79import org.xmlpull.v1.XmlPullParserException;
80import org.xmlpull.v1.XmlSerializer;
81
Amith Yamasani4b2e9342011-03-31 12:38:53 -070082import java.io.BufferedOutputStream;
83import java.io.File;
Amith Yamasani920ace02012-09-20 22:15:37 -070084import java.io.FileDescriptor;
Amith Yamasani4b2e9342011-03-31 12:38:53 -070085import java.io.FileInputStream;
Amith Yamasanib8151ec2012-04-18 18:02:48 -070086import java.io.FileNotFoundException;
Amith Yamasani4b2e9342011-03-31 12:38:53 -070087import java.io.FileOutputStream;
88import java.io.IOException;
Amith Yamasani920ace02012-09-20 22:15:37 -070089import java.io.PrintWriter;
Wojciech Staszkiewicz9e9e2e72015-05-08 14:58:46 +010090import java.nio.charset.StandardCharsets;
Amith Yamasani4b2e9342011-03-31 12:38:53 -070091import java.util.ArrayList;
92import java.util.List;
93
Fyodor Kupolov262f9952015-03-23 18:55:11 -070094import libcore.io.IoUtils;
Xiaohui Chenb3b92582015-12-07 11:22:13 -080095import libcore.util.Objects;
Fyodor Kupolov262f9952015-03-23 18:55:11 -070096
Makoto Onuki068c54a2015-10-13 14:34:03 -070097/**
98 * Service for {@link UserManager}.
99 *
100 * Method naming convention:
Fyodor Kupolov82402752015-10-28 14:54:51 -0700101 * <ul>
Fyodor Kupolove80085d2015-11-06 18:21:39 -0800102 * <li> Methods suffixed with "LP" should be called within the {@link #mPackagesLock} lock.
Fyodor Kupolov82402752015-10-28 14:54:51 -0700103 * <li> Methods suffixed with "LR" should be called within the {@link #mRestrictionsLock} lock.
104 * <li> Methods suffixed with "LU" should be called within the {@link #mUsersLock} lock.
105 * </ul>
Makoto Onuki068c54a2015-10-13 14:34:03 -0700106 */
Amith Yamasani258848d2012-08-10 17:06:33 -0700107public class UserManagerService extends IUserManager.Stub {
Amith Yamasani2a003292012-08-14 18:25:45 -0700108 private static final String LOG_TAG = "UserManagerService";
Makoto Onuki1a2cd742015-11-16 13:51:27 -0800109 static final boolean DBG = false; // DO NOT SUBMIT WITH TRUE
110 private static final boolean DBG_WITH_STACKTRACE = false; // DO NOT SUBMIT WITH TRUE
Amith Yamasani16389312012-10-17 21:20:14 -0700111
Amith Yamasani4b2e9342011-03-31 12:38:53 -0700112 private static final String TAG_NAME = "name";
Xiaohui Chenb3b92582015-12-07 11:22:13 -0800113 private static final String TAG_ACCOUNT = "account";
Amith Yamasani4b2e9342011-03-31 12:38:53 -0700114 private static final String ATTR_FLAGS = "flags";
Amith Yamasanib8151ec2012-04-18 18:02:48 -0700115 private static final String ATTR_ICON_PATH = "icon";
Amith Yamasani4b2e9342011-03-31 12:38:53 -0700116 private static final String ATTR_ID = "id";
Amith Yamasani920ace02012-09-20 22:15:37 -0700117 private static final String ATTR_CREATION_TIME = "created";
118 private static final String ATTR_LAST_LOGGED_IN_TIME = "lastLoggedIn";
Amith Yamasani2a003292012-08-14 18:25:45 -0700119 private static final String ATTR_SERIAL_NO = "serialNumber";
120 private static final String ATTR_NEXT_SERIAL_NO = "nextSerialNumber";
Dianne Hackbornd4ac8d72012-09-27 23:20:10 -0700121 private static final String ATTR_PARTIAL = "partial";
Adam Lesinskieddeb492014-09-08 17:50:03 -0700122 private static final String ATTR_GUEST_TO_REMOVE = "guestToRemove";
Amith Yamasani6f34b412012-10-22 18:19:27 -0700123 private static final String ATTR_USER_VERSION = "version";
Kenny Guy2a764942014-04-02 13:29:20 +0100124 private static final String ATTR_PROFILE_GROUP_ID = "profileGroupId";
Fyodor Kupolov06a484a2015-08-21 16:33:20 -0700125 private static final String ATTR_RESTRICTED_PROFILE_PARENT_ID = "restrictedProfileParentId";
Amith Yamasanie4afaa32014-06-30 14:55:07 +0530126 private static final String TAG_GUEST_RESTRICTIONS = "guestRestrictions";
Amith Yamasani4b2e9342011-03-31 12:38:53 -0700127 private static final String TAG_USERS = "users";
Amith Yamasani4b2e9342011-03-31 12:38:53 -0700128 private static final String TAG_USER = "user";
Amith Yamasanie4cf7342012-12-17 11:12:09 -0800129 private static final String TAG_RESTRICTIONS = "restrictions";
Makoto Onuki1a2cd742015-11-16 13:51:27 -0800130 private static final String TAG_DEVICE_POLICY_RESTRICTIONS = "device_policy_restrictions";
Amith Yamasanidf2e92a2013-03-01 17:04:38 -0800131 private static final String TAG_ENTRY = "entry";
132 private static final String TAG_VALUE = "value";
133 private static final String ATTR_KEY = "key";
Amith Yamasani7e99bc02013-04-16 18:24:51 -0700134 private static final String ATTR_VALUE_TYPE = "type";
Amith Yamasanidf2e92a2013-03-01 17:04:38 -0800135 private static final String ATTR_MULTIPLE = "m";
Amith Yamasani4b2e9342011-03-31 12:38:53 -0700136
Amith Yamasani7e99bc02013-04-16 18:24:51 -0700137 private static final String ATTR_TYPE_STRING_ARRAY = "sa";
138 private static final String ATTR_TYPE_STRING = "s";
139 private static final String ATTR_TYPE_BOOLEAN = "b";
Amith Yamasani5b5aa402014-06-01 20:10:14 -0700140 private static final String ATTR_TYPE_INTEGER = "i";
Fyodor Kupolov262f9952015-03-23 18:55:11 -0700141 private static final String ATTR_TYPE_BUNDLE = "B";
142 private static final String ATTR_TYPE_BUNDLE_ARRAY = "BA";
Amith Yamasani7e99bc02013-04-16 18:24:51 -0700143
Amith Yamasani0b285492011-04-14 17:35:23 -0700144 private static final String USER_INFO_DIR = "system" + File.separator + "users";
Amith Yamasani4b2e9342011-03-31 12:38:53 -0700145 private static final String USER_LIST_FILENAME = "userlist.xml";
Amith Yamasanib8151ec2012-04-18 18:02:48 -0700146 private static final String USER_PHOTO_FILENAME = "photo.png";
Adrian Roos1bdff912015-02-17 15:51:35 +0100147 private static final String USER_PHOTO_FILENAME_TMP = USER_PHOTO_FILENAME + ".tmp";
Amith Yamasani4b2e9342011-03-31 12:38:53 -0700148
Amith Yamasanidf2e92a2013-03-01 17:04:38 -0800149 private static final String RESTRICTIONS_FILE_PREFIX = "res_";
Amith Yamasanifc95e702013-09-26 13:20:17 -0700150 private static final String XML_SUFFIX = ".xml";
Amith Yamasanidf2e92a2013-03-01 17:04:38 -0800151
Amith Yamasani634cf312012-10-04 17:34:21 -0700152 private static final int MIN_USER_ID = 10;
Xiaohui Chen621b3fc2015-10-02 14:41:42 -0700153 // We need to keep process uid within Integer.MAX_VALUE.
154 private static final int MAX_USER_ID = Integer.MAX_VALUE / UserHandle.PER_USER_RANGE;
Amith Yamasani634cf312012-10-04 17:34:21 -0700155
Fyodor Kupolov1c363152015-09-02 13:27:21 -0700156 private static final int USER_VERSION = 6;
Amith Yamasani6f34b412012-10-22 18:19:27 -0700157
Amith Yamasani920ace02012-09-20 22:15:37 -0700158 private static final long EPOCH_PLUS_30_YEARS = 30L * 365 * 24 * 60 * 60 * 1000L; // ms
159
Nicolas Prevotb8186812015-08-06 15:00:03 +0100160 // Maximum number of managed profiles permitted per user is 1. This cannot be increased
Amith Yamasani95ab7842014-08-11 17:09:26 -0700161 // without first making sure that the rest of the framework is prepared for it.
162 private static final int MAX_MANAGED_PROFILES = 1;
163
Fyodor Kupolov75d0ea82014-12-15 16:21:07 -0800164 static final int WRITE_USER_MSG = 1;
165 static final int WRITE_USER_DELAY = 2*1000; // 2 seconds
Amith Yamasanie4afaa32014-06-30 14:55:07 +0530166
Jeff Sharkey6dce4962015-07-03 18:08:41 -0700167 private static final String XATTR_SERIAL = "user.serial";
168
Dianne Hackborn4428e172012-08-24 17:43:05 -0700169 private final Context mContext;
170 private final PackageManagerService mPm;
Dianne Hackborn4428e172012-08-24 17:43:05 -0700171 private final Object mPackagesLock;
Fyodor Kupolov82402752015-10-28 14:54:51 -0700172 // Short-term lock for internal state, when interaction/sync with PM is not required
173 private final Object mUsersLock = new Object();
174 private final Object mRestrictionsLock = new Object();
Amith Yamasani4b2e9342011-03-31 12:38:53 -0700175
Jeff Sharkeyffe0cb42012-11-05 17:24:43 -0800176 private final Handler mHandler;
177
Amith Yamasani4b2e9342011-03-31 12:38:53 -0700178 private final File mUsersDir;
179 private final File mUserListFile;
Dianne Hackborn4428e172012-08-24 17:43:05 -0700180
Fyodor Kupolov82402752015-10-28 14:54:51 -0700181 @GuardedBy("mUsersLock")
182 private final SparseArray<UserInfo> mUsers = new SparseArray<>();
Makoto Onuki068c54a2015-10-13 14:34:03 -0700183
184 /**
Xiaohui Chenb3b92582015-12-07 11:22:13 -0800185 * This collection contains each user's account name if the user chose to set one up
186 * during the initial user creation process. Keeping this information separate from mUsers
187 * to avoid accidentally leak it.
188 */
189 @GuardedBy("mUsersLock")
190 private final SparseArray<String> mUserAccounts = new SparseArray<>();
191
192 /**
Makoto Onuki068c54a2015-10-13 14:34:03 -0700193 * User restrictions set via UserManager. This doesn't include restrictions set by
194 * device owner / profile owners.
195 *
196 * DO NOT Change existing {@link Bundle} in it. When changing a restriction for a user,
197 * a new {@link Bundle} should always be created and set. This is because a {@link Bundle}
198 * maybe shared between {@link #mBaseUserRestrictions} and
199 * {@link #mCachedEffectiveUserRestrictions}, but they should always updated separately.
200 * (Otherwise we won't be able to detect what restrictions have changed in
Fyodor Kupolov82402752015-10-28 14:54:51 -0700201 * {@link #updateUserRestrictionsInternalLR}.
Makoto Onuki068c54a2015-10-13 14:34:03 -0700202 */
203 @GuardedBy("mRestrictionsLock")
204 private final SparseArray<Bundle> mBaseUserRestrictions = new SparseArray<>();
205
206 /**
207 * Cached user restrictions that are in effect -- i.e. {@link #mBaseUserRestrictions} combined
208 * with device / profile owner restrictions. We'll initialize it lazily; use
209 * {@link #getEffectiveUserRestrictions} to access it.
210 *
211 * DO NOT Change existing {@link Bundle} in it. When changing a restriction for a user,
212 * a new {@link Bundle} should always be created and set. This is because a {@link Bundle}
213 * maybe shared between {@link #mBaseUserRestrictions} and
214 * {@link #mCachedEffectiveUserRestrictions}, but they should always updated separately.
215 * (Otherwise we won't be able to detect what restrictions have changed in
Fyodor Kupolov82402752015-10-28 14:54:51 -0700216 * {@link #updateUserRestrictionsInternalLR}.
Makoto Onuki068c54a2015-10-13 14:34:03 -0700217 */
218 @GuardedBy("mRestrictionsLock")
219 private final SparseArray<Bundle> mCachedEffectiveUserRestrictions = new SparseArray<>();
220
Makoto Onuki4f160732015-10-27 17:15:38 -0700221 /**
Makoto Onuki1a2cd742015-11-16 13:51:27 -0800222 * User restrictions that have already been applied in
223 * {@link #updateUserRestrictionsInternalLR(Bundle, int)}. We use it to detect restrictions
224 * that have changed since the last
225 * {@link #updateUserRestrictionsInternalLR(Bundle, int)} call.
Makoto Onuki4f160732015-10-27 17:15:38 -0700226 */
227 @GuardedBy("mRestrictionsLock")
228 private final SparseArray<Bundle> mAppliedUserRestrictions = new SparseArray<>();
229
Makoto Onuki1a2cd742015-11-16 13:51:27 -0800230 /**
Makoto Onukie7927da2015-11-25 10:05:17 -0800231 * User restrictions set by {@link com.android.server.devicepolicy.DevicePolicyManagerService}
232 * that should be applied to all users, including guests.
Makoto Onuki1a2cd742015-11-16 13:51:27 -0800233 */
234 @GuardedBy("mRestrictionsLock")
235 private Bundle mDevicePolicyGlobalUserRestrictions;
236
237 /**
Makoto Onukie7927da2015-11-25 10:05:17 -0800238 * User restrictions set by {@link com.android.server.devicepolicy.DevicePolicyManagerService}
239 * for each user.
Makoto Onuki1a2cd742015-11-16 13:51:27 -0800240 */
241 @GuardedBy("mRestrictionsLock")
242 private final SparseArray<Bundle> mDevicePolicyLocalUserRestrictions = new SparseArray<>();
243
Fyodor Kupolove80085d2015-11-06 18:21:39 -0800244 @GuardedBy("mGuestRestrictions")
Amith Yamasanie4afaa32014-06-30 14:55:07 +0530245 private final Bundle mGuestRestrictions = new Bundle();
Jeff Sharkeyffe0cb42012-11-05 17:24:43 -0800246
247 /**
248 * Set of user IDs being actively removed. Removed IDs linger in this set
249 * for several seconds to work around a VFS caching issue.
250 */
Fyodor Kupolov82402752015-10-28 14:54:51 -0700251 @GuardedBy("mUsersLock")
Jeff Sharkeyffe0cb42012-11-05 17:24:43 -0800252 private final SparseBooleanArray mRemovingUserIds = new SparseBooleanArray();
Dianne Hackborn4428e172012-08-24 17:43:05 -0700253
Fyodor Kupolov82402752015-10-28 14:54:51 -0700254 @GuardedBy("mUsersLock")
Amith Yamasani0b285492011-04-14 17:35:23 -0700255 private int[] mUserIds;
Fyodor Kupolove80085d2015-11-06 18:21:39 -0800256 @GuardedBy("mPackagesLock")
Amith Yamasani2a003292012-08-14 18:25:45 -0700257 private int mNextSerialNumber;
Amith Yamasani6f34b412012-10-22 18:19:27 -0700258 private int mUserVersion = 0;
Amith Yamasani0b285492011-04-14 17:35:23 -0700259
Jason Monk62062992014-05-06 09:55:28 -0400260 private IAppOpsService mAppOpsService;
261
Makoto Onuki068c54a2015-10-13 14:34:03 -0700262 private final LocalService mLocalService;
263
Makoto Onukie7927da2015-11-25 10:05:17 -0800264 @GuardedBy("mUsersLock")
265 private boolean mIsDeviceManaged;
266
267 @GuardedBy("mUsersLock")
268 private final SparseBooleanArray mIsUserManaged = new SparseBooleanArray();
269
Makoto Onukid45a4a22015-11-02 17:17:38 -0800270 @GuardedBy("mUserRestrictionsListeners")
271 private final ArrayList<UserRestrictionsListener> mUserRestrictionsListeners =
272 new ArrayList<>();
273
Amith Yamasani258848d2012-08-10 17:06:33 -0700274 private static UserManagerService sInstance;
Amith Yamasani258848d2012-08-10 17:06:33 -0700275
Dianne Hackborn4428e172012-08-24 17:43:05 -0700276 public static UserManagerService getInstance() {
277 synchronized (UserManagerService.class) {
278 return sInstance;
Amith Yamasani258848d2012-08-10 17:06:33 -0700279 }
Amith Yamasani258848d2012-08-10 17:06:33 -0700280 }
Amith Yamasani4b2e9342011-03-31 12:38:53 -0700281
Fyodor Kupolove80085d2015-11-06 18:21:39 -0800282 @VisibleForTesting
283 UserManagerService(File dataDir) {
284 this(null, null, new Object(), dataDir);
Amith Yamasani4b2e9342011-03-31 12:38:53 -0700285 }
286
Dianne Hackborn4428e172012-08-24 17:43:05 -0700287 /**
288 * Called by package manager to create the service. This is closely
289 * associated with the package manager, and the given lock is the
290 * package manager's own lock.
291 */
Fyodor Kupolove80085d2015-11-06 18:21:39 -0800292 UserManagerService(Context context, PackageManagerService pm, Object packagesLock) {
293 this(context, pm, packagesLock, Environment.getDataDirectory());
Amith Yamasani4b2e9342011-03-31 12:38:53 -0700294 }
295
Dianne Hackborn4428e172012-08-24 17:43:05 -0700296 private UserManagerService(Context context, PackageManagerService pm,
Fyodor Kupolove80085d2015-11-06 18:21:39 -0800297 Object packagesLock, File dataDir) {
Dianne Hackbornd4ac8d72012-09-27 23:20:10 -0700298 mContext = context;
299 mPm = pm;
Dianne Hackbornd4ac8d72012-09-27 23:20:10 -0700300 mPackagesLock = packagesLock;
Fyodor Kupolov75d0ea82014-12-15 16:21:07 -0800301 mHandler = new MainHandler();
Fyodor Kupolove80085d2015-11-06 18:21:39 -0800302 synchronized (mPackagesLock) {
303 mUsersDir = new File(dataDir, USER_INFO_DIR);
304 mUsersDir.mkdirs();
305 // Make zeroth user directory, for services to migrate their files to that location
306 File userZeroDir = new File(mUsersDir, String.valueOf(UserHandle.USER_SYSTEM));
307 userZeroDir.mkdirs();
308 FileUtils.setPermissions(mUsersDir.toString(),
309 FileUtils.S_IRWXU | FileUtils.S_IRWXG | FileUtils.S_IROTH | FileUtils.S_IXOTH,
310 -1, -1);
311 mUserListFile = new File(mUsersDir, USER_LIST_FILENAME);
312 initDefaultGuestRestrictions();
313 readUserListLP();
314 sInstance = this;
Xiaohui Chen4be96e42015-05-06 09:55:43 -0700315 }
Makoto Onuki068c54a2015-10-13 14:34:03 -0700316 mLocalService = new LocalService();
317 LocalServices.addService(UserManagerInternal.class, mLocalService);
Xiaohui Chen4be96e42015-05-06 09:55:43 -0700318 }
319
320 void systemReady() {
Lenka Trochtovac4dd0212015-11-18 12:22:06 +0100321 // Prune out any partially created, partially removed and ephemeral users.
Fyodor Kupolove80085d2015-11-06 18:21:39 -0800322 ArrayList<UserInfo> partials = new ArrayList<>();
323 synchronized (mUsersLock) {
324 final int userSize = mUsers.size();
325 for (int i = 0; i < userSize; i++) {
326 UserInfo ui = mUsers.valueAt(i);
Lenka Trochtovac4dd0212015-11-18 12:22:06 +0100327 if ((ui.partial || ui.guestToRemove || ui.isEphemeral()) && i != 0) {
Fyodor Kupolove80085d2015-11-06 18:21:39 -0800328 partials.add(ui);
Dianne Hackbornd4ac8d72012-09-27 23:20:10 -0700329 }
Dianne Hackbornd4ac8d72012-09-27 23:20:10 -0700330 }
Dianne Hackborn4428e172012-08-24 17:43:05 -0700331 }
Fyodor Kupolove80085d2015-11-06 18:21:39 -0800332 final int partialsSize = partials.size();
333 for (int i = 0; i < partialsSize; i++) {
334 UserInfo ui = partials.get(i);
335 Slog.w(LOG_TAG, "Removing partially created user " + ui.id
336 + " (name=" + ui.name + ")");
337 removeUserState(ui.id);
338 }
Makoto Onuki1a2cd742015-11-16 13:51:27 -0800339
Xiaohui Chen70f6c382015-04-28 14:21:43 -0700340 onUserForeground(UserHandle.USER_SYSTEM);
Makoto Onuki1a2cd742015-11-16 13:51:27 -0800341
Jason Monk62062992014-05-06 09:55:28 -0400342 mAppOpsService = IAppOpsService.Stub.asInterface(
343 ServiceManager.getService(Context.APP_OPS_SERVICE));
Makoto Onuki1a2cd742015-11-16 13:51:27 -0800344
345 synchronized (mRestrictionsLock) {
346 applyUserRestrictionsLR(UserHandle.USER_SYSTEM);
Jason Monk62062992014-05-06 09:55:28 -0400347 }
Amith Yamasani258848d2012-08-10 17:06:33 -0700348 }
349
350 @Override
Xiaohui Chenb3b92582015-12-07 11:22:13 -0800351 public String getUserAccount(int userId) {
352 checkManageUserAndAcrossUsersFullPermission("get user account");
353 synchronized (mUsersLock) {
354 return mUserAccounts.get(userId);
355 }
356 }
357
358 @Override
359 public void setUserAccount(int userId, String accountName) {
360 checkManageUserAndAcrossUsersFullPermission("set user account");
361 UserInfo userToUpdate = null;
362 synchronized (mPackagesLock) {
363 synchronized (mUsersLock) {
364 String currentAccount = mUserAccounts.get(userId);
365 if (!Objects.equal(currentAccount, accountName)) {
366 mUserAccounts.put(userId, accountName);
367 userToUpdate = mUsers.get(userId);
368 }
369 }
370
371 if (userToUpdate != null) {
372 writeUserLP(userToUpdate);
373 }
374 }
375 }
376
377 @Override
Xiaohui Chen70f6c382015-04-28 14:21:43 -0700378 public UserInfo getPrimaryUser() {
379 checkManageUsersPermission("query users");
Fyodor Kupolov82402752015-10-28 14:54:51 -0700380 synchronized (mUsersLock) {
Amith Yamasani515d4062015-09-28 11:30:06 -0700381 final int userSize = mUsers.size();
382 for (int i = 0; i < userSize; i++) {
Xiaohui Chen70f6c382015-04-28 14:21:43 -0700383 UserInfo ui = mUsers.valueAt(i);
Xiaohui Chend3e9e182015-11-18 13:37:32 -0800384 if (ui.isPrimary() && !mRemovingUserIds.get(ui.id)) {
Xiaohui Chen70f6c382015-04-28 14:21:43 -0700385 return ui;
386 }
387 }
388 }
389 return null;
390 }
391
392 @Override
Xiaohui Chen594f2082015-08-18 11:04:20 -0700393 public @NonNull List<UserInfo> getUsers(boolean excludeDying) {
Amith Yamasani2a003292012-08-14 18:25:45 -0700394 checkManageUsersPermission("query users");
Fyodor Kupolov82402752015-10-28 14:54:51 -0700395 synchronized (mUsersLock) {
Amith Yamasani13593602012-03-22 16:16:17 -0700396 ArrayList<UserInfo> users = new ArrayList<UserInfo>(mUsers.size());
Amith Yamasani515d4062015-09-28 11:30:06 -0700397 final int userSize = mUsers.size();
398 for (int i = 0; i < userSize; i++) {
Dianne Hackbornd4ac8d72012-09-27 23:20:10 -0700399 UserInfo ui = mUsers.valueAt(i);
400 if (ui.partial) {
401 continue;
402 }
Jeff Sharkeyffe0cb42012-11-05 17:24:43 -0800403 if (!excludeDying || !mRemovingUserIds.get(ui.id)) {
Dianne Hackbornd4ac8d72012-09-27 23:20:10 -0700404 users.add(ui);
Amith Yamasani920ace02012-09-20 22:15:37 -0700405 }
Amith Yamasani13593602012-03-22 16:16:17 -0700406 }
407 return users;
Amith Yamasani4b2e9342011-03-31 12:38:53 -0700408 }
Amith Yamasani13593602012-03-22 16:16:17 -0700409 }
410
Amith Yamasani258848d2012-08-10 17:06:33 -0700411 @Override
Alexandra Gherghina385124d2014-04-03 13:37:39 +0100412 public List<UserInfo> getProfiles(int userId, boolean enabledOnly) {
Amith Yamasani4f582632014-02-19 14:31:52 -0800413 if (userId != UserHandle.getCallingUserId()) {
414 checkManageUsersPermission("getting profiles related to user " + userId);
415 }
Amith Yamasanibe465322014-04-24 13:45:17 -0700416 final long ident = Binder.clearCallingIdentity();
417 try {
Fyodor Kupolov82402752015-10-28 14:54:51 -0700418 synchronized (mUsersLock) {
419 return getProfilesLU(userId, enabledOnly);
Alexandra Gherghina385124d2014-04-03 13:37:39 +0100420 }
Amith Yamasanibe465322014-04-24 13:45:17 -0700421 } finally {
422 Binder.restoreCallingIdentity(ident);
Kenny Guya52dc3e2014-02-11 15:33:14 +0000423 }
424 }
425
Amith Yamasanibe465322014-04-24 13:45:17 -0700426 /** Assume permissions already checked and caller's identity cleared */
Fyodor Kupolov82402752015-10-28 14:54:51 -0700427 private List<UserInfo> getProfilesLU(int userId, boolean enabledOnly) {
428 UserInfo user = getUserInfoLU(userId);
Amith Yamasanibe465322014-04-24 13:45:17 -0700429 ArrayList<UserInfo> users = new ArrayList<UserInfo>(mUsers.size());
Amith Yamasanidda003f2014-08-28 18:06:51 -0700430 if (user == null) {
431 // Probably a dying user
432 return users;
433 }
Amith Yamasani515d4062015-09-28 11:30:06 -0700434 final int userSize = mUsers.size();
435 for (int i = 0; i < userSize; i++) {
Amith Yamasanibe465322014-04-24 13:45:17 -0700436 UserInfo profile = mUsers.valueAt(i);
437 if (!isProfileOf(user, profile)) {
438 continue;
439 }
Alexandra Gherghinadf35d572014-04-09 13:54:39 +0100440 if (enabledOnly && !profile.isEnabled()) {
441 continue;
Amith Yamasanibe465322014-04-24 13:45:17 -0700442 }
Amith Yamasani70fcf0c2014-07-11 08:40:19 -0700443 if (mRemovingUserIds.get(profile.id)) {
444 continue;
445 }
Amith Yamasanibe465322014-04-24 13:45:17 -0700446 users.add(profile);
447 }
448 return users;
449 }
450
Jessica Hummelbe81c802014-04-22 15:49:22 +0100451 @Override
Andres Moralesc5548c02015-08-05 10:23:12 -0700452 public int getCredentialOwnerProfile(int userHandle) {
453 checkManageUsersPermission("get the credential owner");
Clara Bayarri10ad84a2015-12-01 17:38:05 +0000454 if (!LockPatternUtils.isSeparateWorkChallengeEnabled()) {
Fyodor Kupolov82402752015-10-28 14:54:51 -0700455 synchronized (mUsersLock) {
456 UserInfo profileParent = getProfileParentLU(userHandle);
Andres Moralesc5548c02015-08-05 10:23:12 -0700457 if (profileParent != null) {
458 return profileParent.id;
459 }
460 }
461 }
462
463 return userHandle;
464 }
465
466 @Override
Xiaohui Chenfd5b7742015-10-14 15:47:04 -0700467 public boolean isSameProfileGroup(int userId, int otherUserId) {
468 if (userId == otherUserId) return true;
469 checkManageUsersPermission("check if in the same profile group");
470 synchronized (mPackagesLock) {
Fyodor Kupolov82402752015-10-28 14:54:51 -0700471 return isSameProfileGroupLP(userId, otherUserId);
Xiaohui Chenfd5b7742015-10-14 15:47:04 -0700472 }
473 }
474
Fyodor Kupolov82402752015-10-28 14:54:51 -0700475 private boolean isSameProfileGroupLP(int userId, int otherUserId) {
476 synchronized (mUsersLock) {
477 UserInfo userInfo = getUserInfoLU(userId);
478 if (userInfo == null || userInfo.profileGroupId == UserInfo.NO_PROFILE_GROUP_ID) {
479 return false;
480 }
481 UserInfo otherUserInfo = getUserInfoLU(otherUserId);
482 if (otherUserInfo == null
483 || otherUserInfo.profileGroupId == UserInfo.NO_PROFILE_GROUP_ID) {
484 return false;
485 }
486 return userInfo.profileGroupId == otherUserInfo.profileGroupId;
Xiaohui Chenfd5b7742015-10-14 15:47:04 -0700487 }
Xiaohui Chenfd5b7742015-10-14 15:47:04 -0700488 }
489
490 @Override
Jessica Hummelbe81c802014-04-22 15:49:22 +0100491 public UserInfo getProfileParent(int userHandle) {
492 checkManageUsersPermission("get the profile parent");
Fyodor Kupolov82402752015-10-28 14:54:51 -0700493 synchronized (mUsersLock) {
494 return getProfileParentLU(userHandle);
Fyodor Kupolovff7233e2015-04-08 11:28:52 -0700495 }
496 }
497
Fyodor Kupolov82402752015-10-28 14:54:51 -0700498 private UserInfo getProfileParentLU(int userHandle) {
499 UserInfo profile = getUserInfoLU(userHandle);
Fyodor Kupolovff7233e2015-04-08 11:28:52 -0700500 if (profile == null) {
501 return null;
502 }
503 int parentUserId = profile.profileGroupId;
504 if (parentUserId == UserInfo.NO_PROFILE_GROUP_ID) {
505 return null;
506 } else {
Fyodor Kupolov82402752015-10-28 14:54:51 -0700507 return getUserInfoLU(parentUserId);
Jessica Hummelbe81c802014-04-22 15:49:22 +0100508 }
509 }
510
Fyodor Kupolov82402752015-10-28 14:54:51 -0700511 private static boolean isProfileOf(UserInfo user, UserInfo profile) {
Kenny Guy2a764942014-04-02 13:29:20 +0100512 return user.id == profile.id ||
513 (user.profileGroupId != UserInfo.NO_PROFILE_GROUP_ID
514 && user.profileGroupId == profile.profileGroupId);
Kenny Guya52dc3e2014-02-11 15:33:14 +0000515 }
516
Rubin Xu0a29ecd2015-11-04 15:11:48 +0000517 private void broadcastProfileAvailabilityChanges(UserHandle profileHandle,
518 UserHandle parentHandle, Bundle extras) {
519 // Send intent to profile
520 Intent intent = new Intent(Intent.ACTION_AVAILABILITY_CHANGED);
521 intent.addFlags(Intent.FLAG_RECEIVER_REGISTERED_ONLY);
522 intent.putExtras(extras);
523 mContext.sendBroadcastAsUser(intent, profileHandle);
524
525 // Send intent to parent
526 if (parentHandle != null) {
527 intent = new Intent(Intent.ACTION_MANAGED_PROFILE_AVAILABILITY_CHANGED);
528 intent.putExtra(Intent.EXTRA_USER, profileHandle);
Jeff Sharkeyaf6ec292015-12-17 11:19:00 -0700529 intent.putExtra(Intent.EXTRA_USER_HANDLE, profileHandle.getIdentifier());
Rubin Xu0a29ecd2015-11-04 15:11:48 +0000530 intent.addFlags(Intent.FLAG_RECEIVER_REGISTERED_ONLY);
531 intent.putExtras(extras);
532 mContext.sendBroadcastAsUser(intent, parentHandle);
533 }
534 }
535
536 @Override
537 public void setQuietModeEnabled(int userHandle, boolean enableQuietMode) {
538 checkManageUsersPermission("silence profile");
539 boolean changed = false;
540 UserInfo profile, parent;
541 synchronized (mPackagesLock) {
542 synchronized (mUsersLock) {
543 profile = getUserInfoLU(userHandle);
544 parent = getProfileParentLU(userHandle);
545
546 }
547 if (profile == null || !profile.isManagedProfile()) {
548 throw new IllegalArgumentException("User " + userHandle + " is not a profile");
549 }
550 if (profile.isQuietModeEnabled() != enableQuietMode) {
551 profile.flags ^= UserInfo.FLAG_QUIET_MODE;
552 writeUserLP(profile);
553 changed = true;
554 }
555 }
556 if (changed) {
557 Bundle extras = new Bundle();
558 extras.putBoolean(Intent.EXTRA_QUIET_MODE, enableQuietMode);
559 broadcastProfileAvailabilityChanges(profile.getUserHandle(),
560 parent != null ? parent.getUserHandle() : null, extras);
561 }
562 }
563
564 @Override
565 public boolean isQuietModeEnabled(int userHandle) {
566 synchronized (mPackagesLock) {
567 UserInfo info;
568 synchronized (mUsersLock) {
569 info = getUserInfoLU(userHandle);
570 }
571 if (info == null || !info.isManagedProfile()) {
572 throw new IllegalArgumentException("User " + userHandle + " is not a profile");
573 }
574 return info.isQuietModeEnabled();
575 }
576 }
577
Kenny Guya52dc3e2014-02-11 15:33:14 +0000578 @Override
Alexandra Gherghinadf35d572014-04-09 13:54:39 +0100579 public void setUserEnabled(int userId) {
580 checkManageUsersPermission("enable user");
581 synchronized (mPackagesLock) {
Fyodor Kupolov82402752015-10-28 14:54:51 -0700582 UserInfo info;
583 synchronized (mUsersLock) {
584 info = getUserInfoLU(userId);
585 }
Alexandra Gherghinadf35d572014-04-09 13:54:39 +0100586 if (info != null && !info.isEnabled()) {
587 info.flags ^= UserInfo.FLAG_DISABLED;
Fyodor Kupolov82402752015-10-28 14:54:51 -0700588 writeUserLP(info);
Alexandra Gherghinadf35d572014-04-09 13:54:39 +0100589 }
590 }
591 }
592
593 @Override
Amith Yamasani258848d2012-08-10 17:06:33 -0700594 public UserInfo getUserInfo(int userId) {
Amith Yamasani2a003292012-08-14 18:25:45 -0700595 checkManageUsersPermission("query user");
Fyodor Kupolov82402752015-10-28 14:54:51 -0700596 synchronized (mUsersLock) {
597 return getUserInfoLU(userId);
Amith Yamasani13593602012-03-22 16:16:17 -0700598 }
599 }
600
Amith Yamasani71e6c692013-03-24 17:39:28 -0700601 @Override
602 public boolean isRestricted() {
Fyodor Kupolov82402752015-10-28 14:54:51 -0700603 synchronized (mUsersLock) {
604 return getUserInfoLU(UserHandle.getCallingUserId()).isRestricted();
Amith Yamasani71e6c692013-03-24 17:39:28 -0700605 }
606 }
607
Fyodor Kupolov1c363152015-09-02 13:27:21 -0700608 @Override
609 public boolean canHaveRestrictedProfile(int userId) {
610 checkManageUsersPermission("canHaveRestrictedProfile");
Fyodor Kupolov82402752015-10-28 14:54:51 -0700611 synchronized (mUsersLock) {
612 final UserInfo userInfo = getUserInfoLU(userId);
Fyodor Kupolov1c363152015-09-02 13:27:21 -0700613 if (userInfo == null || !userInfo.canHaveProfile()) {
614 return false;
615 }
616 if (!userInfo.isAdmin()) {
617 return false;
618 }
Makoto Onukie7927da2015-11-25 10:05:17 -0800619 // restricted profile can be created if there is no DO set and the admin user has no PO;
620 return !mIsDeviceManaged && !mIsUserManaged.get(userId);
Fyodor Kupolov1c363152015-09-02 13:27:21 -0700621 }
Fyodor Kupolov1c363152015-09-02 13:27:21 -0700622 }
623
Amith Yamasani195263742012-08-21 15:40:12 -0700624 /*
625 * Should be locked on mUsers before calling this.
626 */
Fyodor Kupolov82402752015-10-28 14:54:51 -0700627 private UserInfo getUserInfoLU(int userId) {
Dianne Hackbornd4ac8d72012-09-27 23:20:10 -0700628 UserInfo ui = mUsers.get(userId);
Amith Yamasani16389312012-10-17 21:20:14 -0700629 // If it is partial and not in the process of being removed, return as unknown user.
Jeff Sharkeyffe0cb42012-11-05 17:24:43 -0800630 if (ui != null && ui.partial && !mRemovingUserIds.get(userId)) {
Dianne Hackbornd4ac8d72012-09-27 23:20:10 -0700631 Slog.w(LOG_TAG, "getUserInfo: unknown user #" + userId);
632 return null;
633 }
634 return ui;
Amith Yamasani195263742012-08-21 15:40:12 -0700635 }
636
Fyodor Kupolov82402752015-10-28 14:54:51 -0700637 /**
638 * Obtains {@link #mUsersLock} and return UserInfo from mUsers.
639 * <p>No permissions checking or any addition checks are made</p>
640 */
641 private UserInfo getUserInfoNoChecks(int userId) {
642 synchronized (mUsersLock) {
643 return mUsers.get(userId);
644 }
645 }
646
Amith Yamasani236b2b52015-08-18 14:32:14 -0700647 /** Called by PackageManagerService */
Amith Yamasani13593602012-03-22 16:16:17 -0700648 public boolean exists(int userId) {
Fyodor Kupolov82402752015-10-28 14:54:51 -0700649 return getUserInfoNoChecks(userId) != null;
Amith Yamasani13593602012-03-22 16:16:17 -0700650 }
651
Amith Yamasani258848d2012-08-10 17:06:33 -0700652 @Override
Amith Yamasanib8151ec2012-04-18 18:02:48 -0700653 public void setUserName(int userId, String name) {
Amith Yamasani2a003292012-08-14 18:25:45 -0700654 checkManageUsersPermission("rename users");
Dianne Hackbornd4ac8d72012-09-27 23:20:10 -0700655 boolean changed = false;
Dianne Hackborn4428e172012-08-24 17:43:05 -0700656 synchronized (mPackagesLock) {
Fyodor Kupolov82402752015-10-28 14:54:51 -0700657 UserInfo info = getUserInfoNoChecks(userId);
Dianne Hackbornd4ac8d72012-09-27 23:20:10 -0700658 if (info == null || info.partial) {
659 Slog.w(LOG_TAG, "setUserName: unknown user #" + userId);
660 return;
661 }
Amith Yamasani13593602012-03-22 16:16:17 -0700662 if (name != null && !name.equals(info.name)) {
663 info.name = name;
Fyodor Kupolov82402752015-10-28 14:54:51 -0700664 writeUserLP(info);
Dianne Hackbornd4ac8d72012-09-27 23:20:10 -0700665 changed = true;
Amith Yamasani13593602012-03-22 16:16:17 -0700666 }
667 }
Dianne Hackbornd4ac8d72012-09-27 23:20:10 -0700668 if (changed) {
669 sendUserInfoChangedBroadcast(userId);
670 }
Amith Yamasani4b2e9342011-03-31 12:38:53 -0700671 }
672
Amith Yamasani258848d2012-08-10 17:06:33 -0700673 @Override
Amith Yamasanie928d7d2012-09-17 21:46:51 -0700674 public void setUserIcon(int userId, Bitmap bitmap) {
Amith Yamasani2a003292012-08-14 18:25:45 -0700675 checkManageUsersPermission("update users");
Jason Monk9a944532014-07-08 09:31:21 -0400676 long ident = Binder.clearCallingIdentity();
677 try {
678 synchronized (mPackagesLock) {
Fyodor Kupolov82402752015-10-28 14:54:51 -0700679 UserInfo info = getUserInfoNoChecks(userId);
Jason Monk9a944532014-07-08 09:31:21 -0400680 if (info == null || info.partial) {
681 Slog.w(LOG_TAG, "setUserIcon: unknown user #" + userId);
682 return;
683 }
Fyodor Kupolov82402752015-10-28 14:54:51 -0700684 writeBitmapLP(info, bitmap);
685 writeUserLP(info);
Dianne Hackbornd4ac8d72012-09-27 23:20:10 -0700686 }
Jason Monk9a944532014-07-08 09:31:21 -0400687 sendUserInfoChangedBroadcast(userId);
688 } finally {
689 Binder.restoreCallingIdentity(ident);
Amith Yamasanib8151ec2012-04-18 18:02:48 -0700690 }
Amith Yamasanie928d7d2012-09-17 21:46:51 -0700691 }
692
693 private void sendUserInfoChangedBroadcast(int userId) {
694 Intent changedIntent = new Intent(Intent.ACTION_USER_INFO_CHANGED);
695 changedIntent.putExtra(Intent.EXTRA_USER_HANDLE, userId);
696 changedIntent.addFlags(Intent.FLAG_RECEIVER_REGISTERED_ONLY);
Amith Yamasani6fc1d4e2013-05-08 16:43:58 -0700697 mContext.sendBroadcastAsUser(changedIntent, UserHandle.ALL);
Amith Yamasanib8151ec2012-04-18 18:02:48 -0700698 }
699
Amith Yamasani258848d2012-08-10 17:06:33 -0700700 @Override
Adrian Roos1bdff912015-02-17 15:51:35 +0100701 public ParcelFileDescriptor getUserIcon(int userId) {
702 String iconPath;
Amith Yamasani3b49f072012-09-17 10:21:43 -0700703 synchronized (mPackagesLock) {
Fyodor Kupolov82402752015-10-28 14:54:51 -0700704 UserInfo info = getUserInfoNoChecks(userId);
Dianne Hackbornd4ac8d72012-09-27 23:20:10 -0700705 if (info == null || info.partial) {
706 Slog.w(LOG_TAG, "getUserIcon: unknown user #" + userId);
707 return null;
708 }
Fyodor Kupolov82402752015-10-28 14:54:51 -0700709 int callingGroupId = getUserInfoNoChecks(UserHandle.getCallingUserId()).profileGroupId;
Nicolas Prevot88cc3462014-05-14 14:51:48 +0100710 if (callingGroupId == UserInfo.NO_PROFILE_GROUP_ID
711 || callingGroupId != info.profileGroupId) {
712 checkManageUsersPermission("get the icon of a user who is not related");
713 }
Dianne Hackbornd4ac8d72012-09-27 23:20:10 -0700714 if (info.iconPath == null) {
715 return null;
716 }
Adrian Roos1bdff912015-02-17 15:51:35 +0100717 iconPath = info.iconPath;
Amith Yamasani3b49f072012-09-17 10:21:43 -0700718 }
Adrian Roos1bdff912015-02-17 15:51:35 +0100719
720 try {
721 return ParcelFileDescriptor.open(
722 new File(iconPath), ParcelFileDescriptor.MODE_READ_ONLY);
723 } catch (FileNotFoundException e) {
724 Log.e(LOG_TAG, "Couldn't find icon file", e);
725 }
726 return null;
Amith Yamasani3b49f072012-09-17 10:21:43 -0700727 }
728
Dianne Hackborn5dc5a002012-09-15 19:33:48 -0700729 public void makeInitialized(int userId) {
730 checkManageUsersPermission("makeInitialized");
Fyodor Kupolove80085d2015-11-06 18:21:39 -0800731 boolean scheduleWriteUser = false;
732 UserInfo info;
733 synchronized (mUsersLock) {
734 info = mUsers.get(userId);
Dianne Hackbornd4ac8d72012-09-27 23:20:10 -0700735 if (info == null || info.partial) {
736 Slog.w(LOG_TAG, "makeInitialized: unknown user #" + userId);
Fyodor Kupolove80085d2015-11-06 18:21:39 -0800737 return;
Dianne Hackbornd4ac8d72012-09-27 23:20:10 -0700738 }
Fyodor Kupolove80085d2015-11-06 18:21:39 -0800739 if ((info.flags & UserInfo.FLAG_INITIALIZED) == 0) {
Dianne Hackborn5dc5a002012-09-15 19:33:48 -0700740 info.flags |= UserInfo.FLAG_INITIALIZED;
Fyodor Kupolove80085d2015-11-06 18:21:39 -0800741 scheduleWriteUser = true;
Dianne Hackborn5dc5a002012-09-15 19:33:48 -0700742 }
743 }
Fyodor Kupolove80085d2015-11-06 18:21:39 -0800744 if (scheduleWriteUser) {
745 scheduleWriteUser(info);
746 }
Dianne Hackborn5dc5a002012-09-15 19:33:48 -0700747 }
748
Amith Yamasaniaa6634e2014-10-06 14:20:28 -0700749 /**
750 * If default guest restrictions haven't been initialized yet, add the basic
751 * restrictions.
752 */
753 private void initDefaultGuestRestrictions() {
Fyodor Kupolove80085d2015-11-06 18:21:39 -0800754 synchronized (mGuestRestrictions) {
755 if (mGuestRestrictions.isEmpty()) {
Fyodor Kupolove04462c2015-11-30 15:02:53 -0800756 mGuestRestrictions.putBoolean(UserManager.DISALLOW_INSTALL_UNKNOWN_SOURCES, true);
Fyodor Kupolove80085d2015-11-06 18:21:39 -0800757 mGuestRestrictions.putBoolean(UserManager.DISALLOW_OUTGOING_CALLS, true);
758 mGuestRestrictions.putBoolean(UserManager.DISALLOW_SMS, true);
759 }
Amith Yamasaniaa6634e2014-10-06 14:20:28 -0700760 }
761 }
762
Amith Yamasanie4cf7342012-12-17 11:12:09 -0800763 @Override
Amith Yamasanie4afaa32014-06-30 14:55:07 +0530764 public Bundle getDefaultGuestRestrictions() {
765 checkManageUsersPermission("getDefaultGuestRestrictions");
Fyodor Kupolove80085d2015-11-06 18:21:39 -0800766 synchronized (mGuestRestrictions) {
Amith Yamasanie4afaa32014-06-30 14:55:07 +0530767 return new Bundle(mGuestRestrictions);
768 }
769 }
770
771 @Override
772 public void setDefaultGuestRestrictions(Bundle restrictions) {
773 checkManageUsersPermission("setDefaultGuestRestrictions");
Fyodor Kupolove80085d2015-11-06 18:21:39 -0800774 synchronized (mGuestRestrictions) {
775 mGuestRestrictions.clear();
776 mGuestRestrictions.putAll(restrictions);
777 }
778 synchronized (mPackagesLock) {
779 writeUserListLP();
Amith Yamasanie4afaa32014-06-30 14:55:07 +0530780 }
781 }
782
Makoto Onuki1a2cd742015-11-16 13:51:27 -0800783 /**
784 * See {@link UserManagerInternal#setDevicePolicyUserRestrictions(int, Bundle, Bundle)}
785 */
786 void setDevicePolicyUserRestrictions(int userId, @NonNull Bundle local,
787 @Nullable Bundle global) {
788 Preconditions.checkNotNull(local);
789 boolean globalChanged = false;
790 boolean localChanged;
791 synchronized (mRestrictionsLock) {
792 if (global != null) {
793 // Update global.
794 globalChanged = !UserRestrictionsUtils.areEqual(
795 mDevicePolicyGlobalUserRestrictions, global);
796 if (globalChanged) {
797 mDevicePolicyGlobalUserRestrictions = global;
798 }
799 }
800 {
801 // Update local.
802 final Bundle prev = mDevicePolicyLocalUserRestrictions.get(userId);
803 localChanged = !UserRestrictionsUtils.areEqual(prev, local);
804 if (localChanged) {
805 mDevicePolicyLocalUserRestrictions.put(userId, local);
806 }
807 }
808 }
809 if (DBG) {
810 Log.d(LOG_TAG, "setDevicePolicyUserRestrictions: userId=" + userId
811 + " global=" + global + (globalChanged ? " (changed)" : "")
812 + " local=" + local + (localChanged ? " (changed)" : "")
813 );
814 }
815 // Don't call them within the mRestrictionsLock.
816 synchronized (mPackagesLock) {
817 if (globalChanged) {
818 writeUserListLP();
819 }
820 if (localChanged) {
821 writeUserLP(getUserInfoNoChecks(userId));
822 }
823 }
824
825 synchronized (mRestrictionsLock) {
826 if (globalChanged) {
827 applyUserRestrictionsForAllUsersLR();
828 } else if (localChanged) {
829 applyUserRestrictionsLR(userId);
830 }
831 }
832 }
833
Makoto Onuki068c54a2015-10-13 14:34:03 -0700834 @GuardedBy("mRestrictionsLock")
Fyodor Kupolov82402752015-10-28 14:54:51 -0700835 private Bundle computeEffectiveUserRestrictionsLR(int userId) {
Makoto Onuki1a2cd742015-11-16 13:51:27 -0800836 final Bundle baseRestrictions =
837 UserRestrictionsUtils.nonNull(mBaseUserRestrictions.get(userId));
838 final Bundle global = mDevicePolicyGlobalUserRestrictions;
839 final Bundle local = mDevicePolicyLocalUserRestrictions.get(userId);
Makoto Onuki068c54a2015-10-13 14:34:03 -0700840
Makoto Onuki1a2cd742015-11-16 13:51:27 -0800841 if (UserRestrictionsUtils.isEmpty(global) && UserRestrictionsUtils.isEmpty(local)) {
842 // Common case first.
843 return baseRestrictions;
Makoto Onuki068c54a2015-10-13 14:34:03 -0700844 }
Makoto Onuki1a2cd742015-11-16 13:51:27 -0800845 final Bundle effective = UserRestrictionsUtils.clone(baseRestrictions);
846 UserRestrictionsUtils.merge(effective, global);
847 UserRestrictionsUtils.merge(effective, local);
848
Makoto Onuki068c54a2015-10-13 14:34:03 -0700849 return effective;
850 }
851
852 @GuardedBy("mRestrictionsLock")
Fyodor Kupolov82402752015-10-28 14:54:51 -0700853 private void invalidateEffectiveUserRestrictionsLR(int userId) {
Makoto Onuki068c54a2015-10-13 14:34:03 -0700854 if (DBG) {
855 Log.d(LOG_TAG, "invalidateEffectiveUserRestrictions userId=" + userId);
856 }
857 mCachedEffectiveUserRestrictions.remove(userId);
858 }
859
860 private Bundle getEffectiveUserRestrictions(int userId) {
861 synchronized (mRestrictionsLock) {
862 Bundle restrictions = mCachedEffectiveUserRestrictions.get(userId);
863 if (restrictions == null) {
Fyodor Kupolov82402752015-10-28 14:54:51 -0700864 restrictions = computeEffectiveUserRestrictionsLR(userId);
Makoto Onuki068c54a2015-10-13 14:34:03 -0700865 mCachedEffectiveUserRestrictions.put(userId, restrictions);
866 }
867 return restrictions;
Amith Yamasani8cd28b52014-06-08 17:54:27 -0700868 }
869 }
870
Makoto Onuki068c54a2015-10-13 14:34:03 -0700871 /** @return a specific user restriction that's in effect currently. */
872 @Override
873 public boolean hasUserRestriction(String restrictionKey, int userId) {
874 Bundle restrictions = getEffectiveUserRestrictions(userId);
875 return restrictions != null && restrictions.getBoolean(restrictionKey);
876 }
877
878 /**
879 * @return UserRestrictions that are in effect currently. This always returns a new
880 * {@link Bundle}.
881 */
Amith Yamasani8cd28b52014-06-08 17:54:27 -0700882 @Override
Amith Yamasanie4cf7342012-12-17 11:12:09 -0800883 public Bundle getUserRestrictions(int userId) {
Makoto Onuki1a2cd742015-11-16 13:51:27 -0800884 return UserRestrictionsUtils.clone(getEffectiveUserRestrictions(userId));
Amith Yamasanie4cf7342012-12-17 11:12:09 -0800885 }
886
887 @Override
Zoltan Szatmary-Ban3bbcedd2015-11-26 13:45:51 +0000888 public boolean hasBaseUserRestriction(String restrictionKey, int userId) {
889 checkManageUsersPermission("hasBaseUserRestriction");
890 synchronized (mRestrictionsLock) {
891 Bundle bundle = mBaseUserRestrictions.get(userId);
892 return (bundle != null && bundle.getBoolean(restrictionKey, false));
893 }
894 }
895
896 @Override
Fyodor Kupolovb5013302015-04-17 17:59:14 -0700897 public void setUserRestriction(String key, boolean value, int userId) {
Fyodor Kupolovd4b26042015-07-27 14:30:59 -0700898 checkManageUsersPermission("setUserRestriction");
Makoto Onuki068c54a2015-10-13 14:34:03 -0700899 synchronized (mRestrictionsLock) {
900 // Note we can't modify Bundles stored in mBaseUserRestrictions directly, so create
901 // a copy.
Makoto Onuki1a2cd742015-11-16 13:51:27 -0800902 final Bundle newRestrictions = UserRestrictionsUtils.clone(
903 mBaseUserRestrictions.get(userId));
Makoto Onuki068c54a2015-10-13 14:34:03 -0700904 newRestrictions.putBoolean(key, value);
905
Fyodor Kupolov82402752015-10-28 14:54:51 -0700906 updateUserRestrictionsInternalLR(newRestrictions, userId);
Fyodor Kupolovb5013302015-04-17 17:59:14 -0700907 }
908 }
909
Makoto Onuki068c54a2015-10-13 14:34:03 -0700910 /**
Makoto Onuki1a2cd742015-11-16 13:51:27 -0800911 * Optionally updating user restrictions, calculate the effective user restrictions and also
912 * propagate to other services and system settings.
Makoto Onuki068c54a2015-10-13 14:34:03 -0700913 *
Makoto Onuki1a2cd742015-11-16 13:51:27 -0800914 * @param newRestrictions User restrictions to set.
915 * If null, will not update user restrictions and only does the propagation.
Makoto Onuki068c54a2015-10-13 14:34:03 -0700916 * @param userId target user ID.
917 */
918 @GuardedBy("mRestrictionsLock")
Fyodor Kupolov82402752015-10-28 14:54:51 -0700919 private void updateUserRestrictionsInternalLR(
Makoto Onuki068c54a2015-10-13 14:34:03 -0700920 @Nullable Bundle newRestrictions, int userId) {
Makoto Onuki1a2cd742015-11-16 13:51:27 -0800921
922 final Bundle prevAppliedRestrictions = UserRestrictionsUtils.nonNull(
923 mAppliedUserRestrictions.get(userId));
924
925 // Update base restrictions.
Makoto Onuki068c54a2015-10-13 14:34:03 -0700926 if (newRestrictions != null) {
927 // If newRestrictions == the current one, it's probably a bug.
Makoto Onuki1a2cd742015-11-16 13:51:27 -0800928 final Bundle prevBaseRestrictions = mBaseUserRestrictions.get(userId);
929
930 Preconditions.checkState(prevBaseRestrictions != newRestrictions);
Makoto Onuki068c54a2015-10-13 14:34:03 -0700931 Preconditions.checkState(mCachedEffectiveUserRestrictions.get(userId)
932 != newRestrictions);
Makoto Onuki1a2cd742015-11-16 13:51:27 -0800933
934 if (!UserRestrictionsUtils.areEqual(prevBaseRestrictions, newRestrictions)) {
935 mBaseUserRestrictions.put(userId, newRestrictions);
936 scheduleWriteUser(getUserInfoNoChecks(userId));
937 }
Makoto Onuki068c54a2015-10-13 14:34:03 -0700938 }
939
Fyodor Kupolov82402752015-10-28 14:54:51 -0700940 final Bundle effective = computeEffectiveUserRestrictionsLR(userId);
Makoto Onuki068c54a2015-10-13 14:34:03 -0700941
Makoto Onuki759a7632015-10-28 16:43:10 -0700942 mCachedEffectiveUserRestrictions.put(userId, effective);
943
Makoto Onuki1a2cd742015-11-16 13:51:27 -0800944 // Apply the new restrictions.
Makoto Onuki4f160732015-10-27 17:15:38 -0700945 if (DBG) {
Makoto Onuki1a2cd742015-11-16 13:51:27 -0800946 debug("Applying user restrictions: userId=" + userId
947 + " new=" + effective + " prev=" + prevAppliedRestrictions);
Makoto Onuki4f160732015-10-27 17:15:38 -0700948 }
949
Makoto Onuki1a2cd742015-11-16 13:51:27 -0800950 if (mAppOpsService != null) { // We skip it until system-ready.
951 final long token = Binder.clearCallingIdentity();
952 try {
953 mAppOpsService.setUserRestrictions(effective, userId);
954 } catch (RemoteException e) {
955 Log.w(LOG_TAG, "Unable to notify AppOpsService of UserRestrictions");
956 } finally {
957 Binder.restoreCallingIdentity(token);
958 }
Fyodor Kupolovb5013302015-04-17 17:59:14 -0700959 }
Makoto Onuki068c54a2015-10-13 14:34:03 -0700960
Makoto Onuki1a2cd742015-11-16 13:51:27 -0800961 propagateUserRestrictionsLR(userId, effective, prevAppliedRestrictions);
Makoto Onuki4f160732015-10-27 17:15:38 -0700962
Makoto Onuki1a2cd742015-11-16 13:51:27 -0800963 mAppliedUserRestrictions.put(userId, new Bundle(effective));
Makoto Onuki068c54a2015-10-13 14:34:03 -0700964 }
965
Makoto Onuki1a2cd742015-11-16 13:51:27 -0800966 private void propagateUserRestrictionsLR(final int userId,
Makoto Onukid45a4a22015-11-02 17:17:38 -0800967 Bundle newRestrictions, Bundle prevRestrictions) {
Makoto Onuki1a2cd742015-11-16 13:51:27 -0800968 // Note this method doesn't touch any state, meaning it doesn't require mRestrictionsLock
969 // actually, but we still need some kind of synchronization otherwise we might end up
970 // calling listeners out-of-order, thus "LR".
971
972 if (UserRestrictionsUtils.areEqual(newRestrictions, prevRestrictions)) {
973 return;
974 }
Makoto Onukid45a4a22015-11-02 17:17:38 -0800975
976 final Bundle newRestrictionsFinal = new Bundle(newRestrictions);
977 final Bundle prevRestrictionsFinal = new Bundle(prevRestrictions);
978
979 mHandler.post(new Runnable() {
980 @Override
981 public void run() {
Fyodor Kupolov9cbfc9e2015-10-07 15:52:33 -0700982 UserRestrictionsUtils.applyUserRestrictions(
983 mContext, userId, newRestrictionsFinal, prevRestrictionsFinal);
Makoto Onuki1a2cd742015-11-16 13:51:27 -0800984
Makoto Onukid45a4a22015-11-02 17:17:38 -0800985 final UserRestrictionsListener[] listeners;
986 synchronized (mUserRestrictionsListeners) {
987 listeners = new UserRestrictionsListener[mUserRestrictionsListeners.size()];
988 mUserRestrictionsListeners.toArray(listeners);
989 }
990 for (int i = 0; i < listeners.length; i++) {
991 listeners[i].onUserRestrictionsChanged(userId,
992 newRestrictionsFinal, prevRestrictionsFinal);
993 }
994 }
995 });
996 }
997
Makoto Onuki1a2cd742015-11-16 13:51:27 -0800998 // Package private for the inner class.
999 void applyUserRestrictionsLR(int userId) {
Fyodor Kupolov82402752015-10-28 14:54:51 -07001000 updateUserRestrictionsInternalLR(null, userId);
Makoto Onuki068c54a2015-10-13 14:34:03 -07001001 }
1002
1003 @GuardedBy("mRestrictionsLock")
Makoto Onuki1a2cd742015-11-16 13:51:27 -08001004 // Package private for the inner class.
1005 void applyUserRestrictionsForAllUsersLR() {
1006 if (DBG) {
1007 debug("applyUserRestrictionsForAllUsersLR");
1008 }
Makoto Onuki068c54a2015-10-13 14:34:03 -07001009 // First, invalidate all cached values.
Makoto Onuki4f160732015-10-27 17:15:38 -07001010 mCachedEffectiveUserRestrictions.clear();
1011
Makoto Onuki068c54a2015-10-13 14:34:03 -07001012 // We don't want to call into ActivityManagerNative while taking a lock, so we'll call
1013 // it on a handler.
1014 final Runnable r = new Runnable() {
1015 @Override
1016 public void run() {
1017 // Then get the list of running users.
1018 final int[] runningUsers;
1019 try {
1020 runningUsers = ActivityManagerNative.getDefault().getRunningUserIds();
1021 } catch (RemoteException e) {
1022 Log.w(LOG_TAG, "Unable to access ActivityManagerNative");
1023 return;
1024 }
1025 // Then re-calculate the effective restrictions and apply, only for running users.
1026 // It's okay if a new user has started after the getRunningUserIds() call,
1027 // because we'll do the same thing (re-calculate the restrictions and apply)
1028 // when we start a user.
Makoto Onuki068c54a2015-10-13 14:34:03 -07001029 synchronized (mRestrictionsLock) {
1030 for (int i = 0; i < runningUsers.length; i++) {
Makoto Onuki1a2cd742015-11-16 13:51:27 -08001031 applyUserRestrictionsLR(runningUsers[i]);
Makoto Onuki068c54a2015-10-13 14:34:03 -07001032 }
1033 }
1034 }
1035 };
1036 mHandler.post(r);
Fyodor Kupolovb5013302015-04-17 17:59:14 -07001037 }
1038
Amith Yamasani258848d2012-08-10 17:06:33 -07001039 /**
Amith Yamasanifaea76f2012-09-11 10:59:48 -07001040 * Check if we've hit the limit of how many users can be created.
1041 */
Fyodor Kupolov82402752015-10-28 14:54:51 -07001042 private boolean isUserLimitReached() {
1043 int count;
1044 synchronized (mUsersLock) {
1045 count = getAliveUsersExcludingGuestsCountLU();
1046 }
1047 return count >= UserManager.getMaxSupportedUsers();
Nicolas Prevot12678a92015-05-13 12:15:03 -07001048 }
1049
1050 @Override
Nicolas Prevot07387fe2015-10-30 17:53:30 +00001051 public boolean canAddMoreManagedProfiles(int userId, boolean allowedToRemoveOne) {
Nicolas Prevot12678a92015-05-13 12:15:03 -07001052 checkManageUsersPermission("check if more managed profiles can be added.");
1053 if (ActivityManager.isLowRamDeviceStatic()) {
1054 return false;
1055 }
Fyodor Kupolovb6157992015-06-05 15:32:28 -07001056 if (!mContext.getPackageManager().hasSystemFeature(
1057 PackageManager.FEATURE_MANAGED_USERS)) {
1058 return false;
1059 }
Nicolas Prevotb8186812015-08-06 15:00:03 +01001060 // Limit number of managed profiles that can be created
Nicolas Prevot07387fe2015-10-30 17:53:30 +00001061 final int managedProfilesCount = getProfiles(userId, true).size() - 1;
1062 final int profilesRemovedCount = managedProfilesCount > 0 && allowedToRemoveOne ? 1 : 0;
1063 if (managedProfilesCount - profilesRemovedCount >= MAX_MANAGED_PROFILES) {
Nicolas Prevotb8186812015-08-06 15:00:03 +01001064 return false;
1065 }
Fyodor Kupolov82402752015-10-28 14:54:51 -07001066 synchronized(mUsersLock) {
1067 UserInfo userInfo = getUserInfoLU(userId);
Nicolas Prevotb8186812015-08-06 15:00:03 +01001068 if (!userInfo.canHaveProfile()) {
Nicolas Prevot12678a92015-05-13 12:15:03 -07001069 return false;
1070 }
Nicolas Prevot07387fe2015-10-30 17:53:30 +00001071 int usersCountAfterRemoving = getAliveUsersExcludingGuestsCountLU()
1072 - profilesRemovedCount;
Nicolas Prevot12678a92015-05-13 12:15:03 -07001073 // We allow creating a managed profile in the special case where there is only one user.
Nicolas Prevot07387fe2015-10-30 17:53:30 +00001074 return usersCountAfterRemoving == 1
1075 || usersCountAfterRemoving < UserManager.getMaxSupportedUsers();
Nicolas Prevot12678a92015-05-13 12:15:03 -07001076 }
1077 }
1078
Fyodor Kupolov82402752015-10-28 14:54:51 -07001079 private int getAliveUsersExcludingGuestsCountLU() {
Amith Yamasanif584f012014-05-19 17:57:25 -07001080 int aliveUserCount = 0;
1081 final int totalUserCount = mUsers.size();
1082 // Skip over users being removed
1083 for (int i = 0; i < totalUserCount; i++) {
1084 UserInfo user = mUsers.valueAt(i);
Amith Yamasani95ab7842014-08-11 17:09:26 -07001085 if (!mRemovingUserIds.get(user.id)
Amith Yamasani1df14732014-08-29 21:37:27 -07001086 && !user.isGuest() && !user.partial) {
Amith Yamasanif584f012014-05-19 17:57:25 -07001087 aliveUserCount++;
1088 }
1089 }
Nicolas Prevot12678a92015-05-13 12:15:03 -07001090 return aliveUserCount;
Amith Yamasanifaea76f2012-09-11 10:59:48 -07001091 }
1092
1093 /**
Amith Yamasani195263742012-08-21 15:40:12 -07001094 * Enforces that only the system UID or root's UID or apps that have the
Xiaohui Chenb3b92582015-12-07 11:22:13 -08001095 * {@link android.Manifest.permission#MANAGE_USERS MANAGE_USERS} and
1096 * {@link android.Manifest.permission#INTERACT_ACROSS_USERS_FULL INTERACT_ACROSS_USERS_FULL}
1097 * permissions can make certain calls to the UserManager.
1098 *
1099 * @param message used as message if SecurityException is thrown
1100 * @throws SecurityException if the caller does not have enough privilege.
1101 */
1102 private static final void checkManageUserAndAcrossUsersFullPermission(String message) {
1103 final int uid = Binder.getCallingUid();
1104 if (uid != Process.SYSTEM_UID && uid != 0
1105 && ActivityManager.checkComponentPermission(
1106 Manifest.permission.MANAGE_USERS,
1107 uid, -1, true) != PackageManager.PERMISSION_GRANTED
1108 && ActivityManager.checkComponentPermission(
1109 Manifest.permission.INTERACT_ACROSS_USERS_FULL,
1110 uid, -1, true) != PackageManager.PERMISSION_GRANTED) {
1111 throw new SecurityException(
1112 "You need MANAGE_USERS and INTERACT_ACROSS_USERS_FULL permission to: "
1113 + message);
1114 }
1115 }
1116
1117 /**
1118 * Enforces that only the system UID or root's UID or apps that have the
Dianne Hackborn10ad9822014-03-17 11:28:36 -07001119 * {@link android.Manifest.permission#MANAGE_USERS MANAGE_USERS}
Amith Yamasani195263742012-08-21 15:40:12 -07001120 * permission can make certain calls to the UserManager.
Amith Yamasani258848d2012-08-10 17:06:33 -07001121 *
1122 * @param message used as message if SecurityException is thrown
1123 * @throws SecurityException if the caller is not system or root
1124 */
Amith Yamasanibe465322014-04-24 13:45:17 -07001125 private static final void checkManageUsersPermission(String message) {
Amith Yamasani258848d2012-08-10 17:06:33 -07001126 final int uid = Binder.getCallingUid();
Esteban Talavera5b9f1672015-12-11 15:22:34 +00001127 if (!UserHandle.isSameApp(uid, Process.SYSTEM_UID) && uid != Process.ROOT_UID
Emily Bernier7a2b4d12014-04-23 12:51:35 -04001128 && ActivityManager.checkComponentPermission(
1129 android.Manifest.permission.MANAGE_USERS,
Amith Yamasanibe465322014-04-24 13:45:17 -07001130 uid, -1, true) != PackageManager.PERMISSION_GRANTED) {
1131 throw new SecurityException("You need MANAGE_USERS permission to: " + message);
1132 }
Emily Bernier7a2b4d12014-04-23 12:51:35 -04001133 }
1134
Esteban Talavera5b9f1672015-12-11 15:22:34 +00001135 /**
1136 * Enforces that only the system UID or root's UID (on any user) can make certain calls to the
1137 * UserManager.
1138 *
1139 * @param message used as message if SecurityException is thrown
1140 * @throws SecurityException if the caller is not system or root
1141 */
1142 private static void checkSystemOrRoot(String message) {
1143 final int uid = Binder.getCallingUid();
1144 if (!UserHandle.isSameApp(uid, Process.SYSTEM_UID) && uid != Process.ROOT_UID) {
1145 throw new SecurityException("Only system may: " + message);
1146 }
1147 }
1148
Fyodor Kupolov82402752015-10-28 14:54:51 -07001149 private void writeBitmapLP(UserInfo info, Bitmap bitmap) {
Amith Yamasanib8151ec2012-04-18 18:02:48 -07001150 try {
1151 File dir = new File(mUsersDir, Integer.toString(info.id));
1152 File file = new File(dir, USER_PHOTO_FILENAME);
Adrian Roos1bdff912015-02-17 15:51:35 +01001153 File tmp = new File(dir, USER_PHOTO_FILENAME_TMP);
Amith Yamasanib8151ec2012-04-18 18:02:48 -07001154 if (!dir.exists()) {
1155 dir.mkdir();
1156 FileUtils.setPermissions(
1157 dir.getPath(),
1158 FileUtils.S_IRWXU|FileUtils.S_IRWXG|FileUtils.S_IXOTH,
1159 -1, -1);
1160 }
Amith Yamasanie928d7d2012-09-17 21:46:51 -07001161 FileOutputStream os;
Adrian Roos1bdff912015-02-17 15:51:35 +01001162 if (bitmap.compress(Bitmap.CompressFormat.PNG, 100, os = new FileOutputStream(tmp))
1163 && tmp.renameTo(file)) {
Amith Yamasani3b49f072012-09-17 10:21:43 -07001164 info.iconPath = file.getAbsolutePath();
1165 }
Amith Yamasanie928d7d2012-09-17 21:46:51 -07001166 try {
1167 os.close();
1168 } catch (IOException ioe) {
1169 // What the ... !
1170 }
Adrian Roos1bdff912015-02-17 15:51:35 +01001171 tmp.delete();
Amith Yamasanib8151ec2012-04-18 18:02:48 -07001172 } catch (FileNotFoundException e) {
Amith Yamasani2a003292012-08-14 18:25:45 -07001173 Slog.w(LOG_TAG, "Error setting photo for user ", e);
Amith Yamasanib8151ec2012-04-18 18:02:48 -07001174 }
Amith Yamasanib8151ec2012-04-18 18:02:48 -07001175 }
1176
Amith Yamasani0b285492011-04-14 17:35:23 -07001177 /**
1178 * Returns an array of user ids. This array is cached here for quick access, so do not modify or
1179 * cache it elsewhere.
1180 * @return the array of user ids.
1181 */
Dianne Hackborn1676c852012-09-10 14:52:30 -07001182 public int[] getUserIds() {
Fyodor Kupolov82402752015-10-28 14:54:51 -07001183 synchronized (mUsersLock) {
Dianne Hackborn7767eac2012-08-23 18:25:40 -07001184 return mUserIds;
1185 }
Amith Yamasani0b285492011-04-14 17:35:23 -07001186 }
1187
Fyodor Kupolove80085d2015-11-06 18:21:39 -08001188 private void readUserListLP() {
Amith Yamasani4b2e9342011-03-31 12:38:53 -07001189 if (!mUserListFile.exists()) {
Fyodor Kupolove80085d2015-11-06 18:21:39 -08001190 fallbackToSingleUserLP();
Amith Yamasani4b2e9342011-03-31 12:38:53 -07001191 return;
1192 }
1193 FileInputStream fis = null;
Amith Yamasani2a003292012-08-14 18:25:45 -07001194 AtomicFile userListFile = new AtomicFile(mUserListFile);
Amith Yamasani4b2e9342011-03-31 12:38:53 -07001195 try {
Amith Yamasani2a003292012-08-14 18:25:45 -07001196 fis = userListFile.openRead();
Amith Yamasani4b2e9342011-03-31 12:38:53 -07001197 XmlPullParser parser = Xml.newPullParser();
Wojciech Staszkiewicz9e9e2e72015-05-08 14:58:46 +01001198 parser.setInput(fis, StandardCharsets.UTF_8.name());
Amith Yamasani4b2e9342011-03-31 12:38:53 -07001199 int type;
1200 while ((type = parser.next()) != XmlPullParser.START_TAG
1201 && type != XmlPullParser.END_DOCUMENT) {
1202 ;
1203 }
1204
1205 if (type != XmlPullParser.START_TAG) {
Amith Yamasani0b285492011-04-14 17:35:23 -07001206 Slog.e(LOG_TAG, "Unable to read user list");
Fyodor Kupolove80085d2015-11-06 18:21:39 -08001207 fallbackToSingleUserLP();
Amith Yamasani4b2e9342011-03-31 12:38:53 -07001208 return;
1209 }
1210
Amith Yamasani2a003292012-08-14 18:25:45 -07001211 mNextSerialNumber = -1;
1212 if (parser.getName().equals(TAG_USERS)) {
1213 String lastSerialNumber = parser.getAttributeValue(null, ATTR_NEXT_SERIAL_NO);
1214 if (lastSerialNumber != null) {
1215 mNextSerialNumber = Integer.parseInt(lastSerialNumber);
1216 }
Amith Yamasani6f34b412012-10-22 18:19:27 -07001217 String versionNumber = parser.getAttributeValue(null, ATTR_USER_VERSION);
1218 if (versionNumber != null) {
1219 mUserVersion = Integer.parseInt(versionNumber);
1220 }
Amith Yamasani2a003292012-08-14 18:25:45 -07001221 }
1222
Makoto Onuki1a2cd742015-11-16 13:51:27 -08001223 final Bundle newDevicePolicyGlobalUserRestrictions = new Bundle();
1224
Amith Yamasani4b2e9342011-03-31 12:38:53 -07001225 while ((type = parser.next()) != XmlPullParser.END_DOCUMENT) {
Amith Yamasanie4afaa32014-06-30 14:55:07 +05301226 if (type == XmlPullParser.START_TAG) {
1227 final String name = parser.getName();
1228 if (name.equals(TAG_USER)) {
1229 String id = parser.getAttributeValue(null, ATTR_ID);
Xiaohui Chenb3b92582015-12-07 11:22:13 -08001230 Pair<UserInfo, String> userPair = readUserLP(Integer.parseInt(id));
Amith Yamasani6f34b412012-10-22 18:19:27 -07001231
Xiaohui Chenb3b92582015-12-07 11:22:13 -08001232 if (userPair != null) {
1233 UserInfo user = userPair.first;
1234 String account = userPair.second;
Fyodor Kupolov82402752015-10-28 14:54:51 -07001235 synchronized (mUsersLock) {
1236 mUsers.put(user.id, user);
Xiaohui Chenb3b92582015-12-07 11:22:13 -08001237 mUserAccounts.put(user.id, account);
Fyodor Kupolov82402752015-10-28 14:54:51 -07001238 if (mNextSerialNumber < 0 || mNextSerialNumber <= user.id) {
1239 mNextSerialNumber = user.id + 1;
1240 }
Amith Yamasanie4afaa32014-06-30 14:55:07 +05301241 }
Amith Yamasani2a003292012-08-14 18:25:45 -07001242 }
Amith Yamasanie4afaa32014-06-30 14:55:07 +05301243 } else if (name.equals(TAG_GUEST_RESTRICTIONS)) {
Amith Yamasanida0b1682014-11-21 12:58:17 -08001244 while ((type = parser.next()) != XmlPullParser.END_DOCUMENT
1245 && type != XmlPullParser.END_TAG) {
1246 if (type == XmlPullParser.START_TAG) {
1247 if (parser.getName().equals(TAG_RESTRICTIONS)) {
Fyodor Kupolove80085d2015-11-06 18:21:39 -08001248 synchronized (mGuestRestrictions) {
1249 UserRestrictionsUtils
1250 .readRestrictions(parser, mGuestRestrictions);
1251 }
Makoto Onuki1a2cd742015-11-16 13:51:27 -08001252 } else if (parser.getName().equals(TAG_DEVICE_POLICY_RESTRICTIONS)
1253 ) {
1254 UserRestrictionsUtils.readRestrictions(parser,
1255 newDevicePolicyGlobalUserRestrictions);
Amith Yamasanida0b1682014-11-21 12:58:17 -08001256 }
1257 break;
1258 }
1259 }
Amith Yamasani258848d2012-08-10 17:06:33 -07001260 }
Amith Yamasani4b2e9342011-03-31 12:38:53 -07001261 }
1262 }
Makoto Onuki1a2cd742015-11-16 13:51:27 -08001263 synchronized (mRestrictionsLock) {
1264 mDevicePolicyGlobalUserRestrictions = newDevicePolicyGlobalUserRestrictions;
1265 }
Fyodor Kupolov82402752015-10-28 14:54:51 -07001266 updateUserIds();
Fyodor Kupolove80085d2015-11-06 18:21:39 -08001267 upgradeIfNecessaryLP();
1268 } catch (IOException | XmlPullParserException e) {
1269 fallbackToSingleUserLP();
Dianne Hackbornbfd89b32011-12-15 18:22:54 -08001270 } finally {
Fyodor Kupolove80085d2015-11-06 18:21:39 -08001271 IoUtils.closeQuietly(fis);
Amith Yamasani4b2e9342011-03-31 12:38:53 -07001272 }
1273 }
1274
Amith Yamasani6f34b412012-10-22 18:19:27 -07001275 /**
Amith Yamasanibc9625052012-11-15 14:39:18 -08001276 * Upgrade steps between versions, either for fixing bugs or changing the data format.
Amith Yamasani6f34b412012-10-22 18:19:27 -07001277 */
Fyodor Kupolove80085d2015-11-06 18:21:39 -08001278 private void upgradeIfNecessaryLP() {
Makoto Onuki1a2cd742015-11-16 13:51:27 -08001279 final int originalVersion = mUserVersion;
Amith Yamasani6f34b412012-10-22 18:19:27 -07001280 int userVersion = mUserVersion;
1281 if (userVersion < 1) {
1282 // Assign a proper name for the owner, if not initialized correctly before
Fyodor Kupolov82402752015-10-28 14:54:51 -07001283 UserInfo user = getUserInfoNoChecks(UserHandle.USER_SYSTEM);
Amith Yamasani6f34b412012-10-22 18:19:27 -07001284 if ("Primary".equals(user.name)) {
1285 user.name = mContext.getResources().getString(com.android.internal.R.string.owner_name);
Makoto Onuki9e935a32015-11-06 14:24:24 -08001286 scheduleWriteUser(user);
Amith Yamasani6f34b412012-10-22 18:19:27 -07001287 }
1288 userVersion = 1;
1289 }
1290
Amith Yamasanibc9625052012-11-15 14:39:18 -08001291 if (userVersion < 2) {
1292 // Owner should be marked as initialized
Fyodor Kupolov82402752015-10-28 14:54:51 -07001293 UserInfo user = getUserInfoNoChecks(UserHandle.USER_SYSTEM);
Amith Yamasanibc9625052012-11-15 14:39:18 -08001294 if ((user.flags & UserInfo.FLAG_INITIALIZED) == 0) {
1295 user.flags |= UserInfo.FLAG_INITIALIZED;
Makoto Onuki9e935a32015-11-06 14:24:24 -08001296 scheduleWriteUser(user);
Amith Yamasanibc9625052012-11-15 14:39:18 -08001297 }
1298 userVersion = 2;
1299 }
1300
Amith Yamasani350962c2013-08-06 11:18:53 -07001301
Amith Yamasani5e486f52013-08-07 11:06:44 -07001302 if (userVersion < 4) {
Amith Yamasani5e486f52013-08-07 11:06:44 -07001303 userVersion = 4;
1304 }
1305
Amith Yamasaniaa6634e2014-10-06 14:20:28 -07001306 if (userVersion < 5) {
1307 initDefaultGuestRestrictions();
1308 userVersion = 5;
1309 }
1310
Fyodor Kupolov1c363152015-09-02 13:27:21 -07001311 if (userVersion < 6) {
1312 final boolean splitSystemUser = UserManager.isSplitSystemUser();
Fyodor Kupolov82402752015-10-28 14:54:51 -07001313 synchronized (mUsersLock) {
1314 for (int i = 0; i < mUsers.size(); i++) {
1315 UserInfo user = mUsers.valueAt(i);
1316 // In non-split mode, only user 0 can have restricted profiles
1317 if (!splitSystemUser && user.isRestricted()
1318 && (user.restrictedProfileParentId == UserInfo.NO_PROFILE_GROUP_ID)) {
1319 user.restrictedProfileParentId = UserHandle.USER_SYSTEM;
Makoto Onuki9e935a32015-11-06 14:24:24 -08001320 scheduleWriteUser(user);
Fyodor Kupolov82402752015-10-28 14:54:51 -07001321 }
Fyodor Kupolov1c363152015-09-02 13:27:21 -07001322 }
1323 }
1324 userVersion = 6;
1325 }
1326
Amith Yamasani6f34b412012-10-22 18:19:27 -07001327 if (userVersion < USER_VERSION) {
1328 Slog.w(LOG_TAG, "User version " + mUserVersion + " didn't upgrade as expected to "
1329 + USER_VERSION);
1330 } else {
1331 mUserVersion = userVersion;
Makoto Onuki1a2cd742015-11-16 13:51:27 -08001332
1333 if (originalVersion < mUserVersion) {
1334 writeUserListLP();
1335 }
Amith Yamasani6f34b412012-10-22 18:19:27 -07001336 }
1337 }
1338
Fyodor Kupolove80085d2015-11-06 18:21:39 -08001339 private void fallbackToSingleUserLP() {
Xiaohui Chenb31e14a2015-07-13 16:04:55 -07001340 int flags = UserInfo.FLAG_INITIALIZED;
1341 // In split system user mode, the admin and primary flags are assigned to the first human
1342 // user.
1343 if (!UserManager.isSplitSystemUser()) {
1344 flags |= UserInfo.FLAG_ADMIN | UserInfo.FLAG_PRIMARY;
1345 }
Xiaohui Chen70f6c382015-04-28 14:21:43 -07001346 // Create the system user
Xiaohui Chen70f6c382015-04-28 14:21:43 -07001347 UserInfo system = new UserInfo(UserHandle.USER_SYSTEM,
Amith Yamasani6f34b412012-10-22 18:19:27 -07001348 mContext.getResources().getString(com.android.internal.R.string.owner_name), null,
Xiaohui Chenb31e14a2015-07-13 16:04:55 -07001349 flags);
Fyodor Kupolov82402752015-10-28 14:54:51 -07001350 synchronized (mUsersLock) {
1351 mUsers.put(system.id, system);
1352 }
Amith Yamasani634cf312012-10-04 17:34:21 -07001353 mNextSerialNumber = MIN_USER_ID;
Geoffrey Borggaard15b8b2c2013-08-28 22:11:10 -04001354 mUserVersion = USER_VERSION;
Amith Yamasani67df64b2012-12-14 12:09:36 -08001355
Geoffrey Borggaarde45e45e32013-01-24 10:03:20 -05001356 Bundle restrictions = new Bundle();
Makoto Onuki068c54a2015-10-13 14:34:03 -07001357 synchronized (mRestrictionsLock) {
1358 mBaseUserRestrictions.append(UserHandle.USER_SYSTEM, restrictions);
1359 }
Amith Yamasani67df64b2012-12-14 12:09:36 -08001360
Fyodor Kupolov82402752015-10-28 14:54:51 -07001361 updateUserIds();
Amith Yamasaniaa6634e2014-10-06 14:20:28 -07001362 initDefaultGuestRestrictions();
Amith Yamasani4b2e9342011-03-31 12:38:53 -07001363
Fyodor Kupolove80085d2015-11-06 18:21:39 -08001364 writeUserListLP();
Fyodor Kupolov82402752015-10-28 14:54:51 -07001365 writeUserLP(system);
Amith Yamasani4b2e9342011-03-31 12:38:53 -07001366 }
1367
Makoto Onuki9e935a32015-11-06 14:24:24 -08001368 private void scheduleWriteUser(UserInfo userInfo) {
Makoto Onuki1a2cd742015-11-16 13:51:27 -08001369 if (DBG) {
1370 debug("scheduleWriteUser");
1371 }
Makoto Onuki9e935a32015-11-06 14:24:24 -08001372 // No need to wrap it within a lock -- worst case, we'll just post the same message
1373 // twice.
Fyodor Kupolov75d0ea82014-12-15 16:21:07 -08001374 if (!mHandler.hasMessages(WRITE_USER_MSG, userInfo)) {
1375 Message msg = mHandler.obtainMessage(WRITE_USER_MSG, userInfo);
1376 mHandler.sendMessageDelayed(msg, WRITE_USER_DELAY);
1377 }
1378 }
1379
Amith Yamasani4b2e9342011-03-31 12:38:53 -07001380 /*
1381 * Writes the user file in this format:
1382 *
1383 * <user flags="20039023" id="0">
1384 * <name>Primary</name>
1385 * </user>
1386 */
Fyodor Kupolov82402752015-10-28 14:54:51 -07001387 private void writeUserLP(UserInfo userInfo) {
Makoto Onuki1a2cd742015-11-16 13:51:27 -08001388 if (DBG) {
1389 debug("writeUserLP " + userInfo);
1390 }
Amith Yamasani742a6712011-05-04 14:49:28 -07001391 FileOutputStream fos = null;
Amith Yamasanifc95e702013-09-26 13:20:17 -07001392 AtomicFile userFile = new AtomicFile(new File(mUsersDir, userInfo.id + XML_SUFFIX));
Amith Yamasani4b2e9342011-03-31 12:38:53 -07001393 try {
Amith Yamasani2a003292012-08-14 18:25:45 -07001394 fos = userFile.startWrite();
Amith Yamasani4b2e9342011-03-31 12:38:53 -07001395 final BufferedOutputStream bos = new BufferedOutputStream(fos);
1396
1397 // XmlSerializer serializer = XmlUtils.serializerInstance();
1398 final XmlSerializer serializer = new FastXmlSerializer();
Wojciech Staszkiewicz9e9e2e72015-05-08 14:58:46 +01001399 serializer.setOutput(bos, StandardCharsets.UTF_8.name());
Amith Yamasani4b2e9342011-03-31 12:38:53 -07001400 serializer.startDocument(null, true);
1401 serializer.setFeature("http://xmlpull.org/v1/doc/features.html#indent-output", true);
1402
1403 serializer.startTag(null, TAG_USER);
1404 serializer.attribute(null, ATTR_ID, Integer.toString(userInfo.id));
Amith Yamasani2a003292012-08-14 18:25:45 -07001405 serializer.attribute(null, ATTR_SERIAL_NO, Integer.toString(userInfo.serialNumber));
Amith Yamasani4b2e9342011-03-31 12:38:53 -07001406 serializer.attribute(null, ATTR_FLAGS, Integer.toString(userInfo.flags));
Amith Yamasani920ace02012-09-20 22:15:37 -07001407 serializer.attribute(null, ATTR_CREATION_TIME, Long.toString(userInfo.creationTime));
1408 serializer.attribute(null, ATTR_LAST_LOGGED_IN_TIME,
1409 Long.toString(userInfo.lastLoggedInTime));
Amith Yamasanib8151ec2012-04-18 18:02:48 -07001410 if (userInfo.iconPath != null) {
1411 serializer.attribute(null, ATTR_ICON_PATH, userInfo.iconPath);
1412 }
Dianne Hackbornd4ac8d72012-09-27 23:20:10 -07001413 if (userInfo.partial) {
1414 serializer.attribute(null, ATTR_PARTIAL, "true");
1415 }
Adam Lesinskieddeb492014-09-08 17:50:03 -07001416 if (userInfo.guestToRemove) {
1417 serializer.attribute(null, ATTR_GUEST_TO_REMOVE, "true");
1418 }
Kenny Guy2a764942014-04-02 13:29:20 +01001419 if (userInfo.profileGroupId != UserInfo.NO_PROFILE_GROUP_ID) {
1420 serializer.attribute(null, ATTR_PROFILE_GROUP_ID,
1421 Integer.toString(userInfo.profileGroupId));
Kenny Guya52dc3e2014-02-11 15:33:14 +00001422 }
Fyodor Kupolov06a484a2015-08-21 16:33:20 -07001423 if (userInfo.restrictedProfileParentId != UserInfo.NO_PROFILE_GROUP_ID) {
1424 serializer.attribute(null, ATTR_RESTRICTED_PROFILE_PARENT_ID,
1425 Integer.toString(userInfo.restrictedProfileParentId));
1426 }
Amith Yamasani4b2e9342011-03-31 12:38:53 -07001427 serializer.startTag(null, TAG_NAME);
1428 serializer.text(userInfo.name);
1429 serializer.endTag(null, TAG_NAME);
Makoto Onuki068c54a2015-10-13 14:34:03 -07001430 synchronized (mRestrictionsLock) {
Makoto Onuki1a2cd742015-11-16 13:51:27 -08001431 UserRestrictionsUtils.writeRestrictions(serializer,
1432 mBaseUserRestrictions.get(userInfo.id), TAG_RESTRICTIONS);
1433 UserRestrictionsUtils.writeRestrictions(serializer,
1434 mDevicePolicyLocalUserRestrictions.get(userInfo.id),
1435 TAG_DEVICE_POLICY_RESTRICTIONS);
Amith Yamasanie4cf7342012-12-17 11:12:09 -08001436 }
Xiaohui Chenb3b92582015-12-07 11:22:13 -08001437 // Update the account field if it is set.
1438 String account;
1439 synchronized (mUsersLock) {
1440 account = mUserAccounts.get(userInfo.id);
1441 }
1442 if (account != null) {
1443 serializer.startTag(null, TAG_ACCOUNT);
1444 serializer.text(account);
1445 serializer.endTag(null, TAG_ACCOUNT);
1446 }
1447
Amith Yamasani4b2e9342011-03-31 12:38:53 -07001448 serializer.endTag(null, TAG_USER);
1449
1450 serializer.endDocument();
Amith Yamasani2a003292012-08-14 18:25:45 -07001451 userFile.finishWrite(fos);
1452 } catch (Exception ioe) {
Amith Yamasani0b285492011-04-14 17:35:23 -07001453 Slog.e(LOG_TAG, "Error writing user info " + userInfo.id + "\n" + ioe);
Amith Yamasani2a003292012-08-14 18:25:45 -07001454 userFile.failWrite(fos);
Amith Yamasani4b2e9342011-03-31 12:38:53 -07001455 }
1456 }
1457
1458 /*
1459 * Writes the user list file in this format:
1460 *
Amith Yamasani2a003292012-08-14 18:25:45 -07001461 * <users nextSerialNumber="3">
Amith Yamasani4b2e9342011-03-31 12:38:53 -07001462 * <user id="0"></user>
1463 * <user id="2"></user>
1464 * </users>
1465 */
Fyodor Kupolove80085d2015-11-06 18:21:39 -08001466 private void writeUserListLP() {
Makoto Onuki1a2cd742015-11-16 13:51:27 -08001467 if (DBG) {
1468 debug("writeUserList");
1469 }
Amith Yamasani742a6712011-05-04 14:49:28 -07001470 FileOutputStream fos = null;
Amith Yamasani2a003292012-08-14 18:25:45 -07001471 AtomicFile userListFile = new AtomicFile(mUserListFile);
Amith Yamasani4b2e9342011-03-31 12:38:53 -07001472 try {
Amith Yamasani2a003292012-08-14 18:25:45 -07001473 fos = userListFile.startWrite();
Amith Yamasani4b2e9342011-03-31 12:38:53 -07001474 final BufferedOutputStream bos = new BufferedOutputStream(fos);
1475
1476 // XmlSerializer serializer = XmlUtils.serializerInstance();
1477 final XmlSerializer serializer = new FastXmlSerializer();
Wojciech Staszkiewicz9e9e2e72015-05-08 14:58:46 +01001478 serializer.setOutput(bos, StandardCharsets.UTF_8.name());
Amith Yamasani4b2e9342011-03-31 12:38:53 -07001479 serializer.startDocument(null, true);
1480 serializer.setFeature("http://xmlpull.org/v1/doc/features.html#indent-output", true);
1481
1482 serializer.startTag(null, TAG_USERS);
Amith Yamasani2a003292012-08-14 18:25:45 -07001483 serializer.attribute(null, ATTR_NEXT_SERIAL_NO, Integer.toString(mNextSerialNumber));
Amith Yamasani6f34b412012-10-22 18:19:27 -07001484 serializer.attribute(null, ATTR_USER_VERSION, Integer.toString(mUserVersion));
Amith Yamasani4b2e9342011-03-31 12:38:53 -07001485
Adam Lesinskieddeb492014-09-08 17:50:03 -07001486 serializer.startTag(null, TAG_GUEST_RESTRICTIONS);
Fyodor Kupolove80085d2015-11-06 18:21:39 -08001487 synchronized (mGuestRestrictions) {
1488 UserRestrictionsUtils
1489 .writeRestrictions(serializer, mGuestRestrictions, TAG_RESTRICTIONS);
1490 }
Amith Yamasanie4afaa32014-06-30 14:55:07 +05301491 serializer.endTag(null, TAG_GUEST_RESTRICTIONS);
Makoto Onuki1a2cd742015-11-16 13:51:27 -08001492 synchronized (mRestrictionsLock) {
1493 UserRestrictionsUtils.writeRestrictions(serializer,
1494 mDevicePolicyGlobalUserRestrictions, TAG_DEVICE_POLICY_RESTRICTIONS);
1495 }
Fyodor Kupolov82402752015-10-28 14:54:51 -07001496 int[] userIdsToWrite;
1497 synchronized (mUsersLock) {
1498 userIdsToWrite = new int[mUsers.size()];
1499 for (int i = 0; i < userIdsToWrite.length; i++) {
1500 UserInfo user = mUsers.valueAt(i);
1501 userIdsToWrite[i] = user.id;
1502 }
1503 }
1504 for (int id : userIdsToWrite) {
Amith Yamasani4b2e9342011-03-31 12:38:53 -07001505 serializer.startTag(null, TAG_USER);
Fyodor Kupolov82402752015-10-28 14:54:51 -07001506 serializer.attribute(null, ATTR_ID, Integer.toString(id));
Amith Yamasani4b2e9342011-03-31 12:38:53 -07001507 serializer.endTag(null, TAG_USER);
Amith Yamasani4b2e9342011-03-31 12:38:53 -07001508 }
1509
1510 serializer.endTag(null, TAG_USERS);
1511
1512 serializer.endDocument();
Amith Yamasani2a003292012-08-14 18:25:45 -07001513 userListFile.finishWrite(fos);
1514 } catch (Exception e) {
1515 userListFile.failWrite(fos);
Amith Yamasani0b285492011-04-14 17:35:23 -07001516 Slog.e(LOG_TAG, "Error writing user list");
Amith Yamasani4b2e9342011-03-31 12:38:53 -07001517 }
1518 }
1519
Xiaohui Chenb3b92582015-12-07 11:22:13 -08001520 private Pair<UserInfo, String> readUserLP(int id) {
Amith Yamasani4b2e9342011-03-31 12:38:53 -07001521 int flags = 0;
Amith Yamasani2a003292012-08-14 18:25:45 -07001522 int serialNumber = id;
Amith Yamasani4b2e9342011-03-31 12:38:53 -07001523 String name = null;
Xiaohui Chenb3b92582015-12-07 11:22:13 -08001524 String account = null;
Amith Yamasanib8151ec2012-04-18 18:02:48 -07001525 String iconPath = null;
Amith Yamasani920ace02012-09-20 22:15:37 -07001526 long creationTime = 0L;
1527 long lastLoggedInTime = 0L;
Kenny Guy2a764942014-04-02 13:29:20 +01001528 int profileGroupId = UserInfo.NO_PROFILE_GROUP_ID;
Fyodor Kupolov06a484a2015-08-21 16:33:20 -07001529 int restrictedProfileParentId = UserInfo.NO_PROFILE_GROUP_ID;
Dianne Hackbornd4ac8d72012-09-27 23:20:10 -07001530 boolean partial = false;
Adam Lesinskieddeb492014-09-08 17:50:03 -07001531 boolean guestToRemove = false;
Makoto Onuki1a2cd742015-11-16 13:51:27 -08001532 Bundle baseRestrictions = new Bundle();
1533 Bundle localRestrictions = new Bundle();
Amith Yamasani4b2e9342011-03-31 12:38:53 -07001534
1535 FileInputStream fis = null;
1536 try {
Amith Yamasani2a003292012-08-14 18:25:45 -07001537 AtomicFile userFile =
Amith Yamasanifc95e702013-09-26 13:20:17 -07001538 new AtomicFile(new File(mUsersDir, Integer.toString(id) + XML_SUFFIX));
Amith Yamasani2a003292012-08-14 18:25:45 -07001539 fis = userFile.openRead();
Amith Yamasani4b2e9342011-03-31 12:38:53 -07001540 XmlPullParser parser = Xml.newPullParser();
Wojciech Staszkiewicz9e9e2e72015-05-08 14:58:46 +01001541 parser.setInput(fis, StandardCharsets.UTF_8.name());
Amith Yamasani4b2e9342011-03-31 12:38:53 -07001542 int type;
1543 while ((type = parser.next()) != XmlPullParser.START_TAG
1544 && type != XmlPullParser.END_DOCUMENT) {
1545 ;
1546 }
1547
1548 if (type != XmlPullParser.START_TAG) {
Amith Yamasani0b285492011-04-14 17:35:23 -07001549 Slog.e(LOG_TAG, "Unable to read user " + id);
Amith Yamasani4b2e9342011-03-31 12:38:53 -07001550 return null;
1551 }
1552
1553 if (type == XmlPullParser.START_TAG && parser.getName().equals(TAG_USER)) {
Amith Yamasani920ace02012-09-20 22:15:37 -07001554 int storedId = readIntAttribute(parser, ATTR_ID, -1);
1555 if (storedId != id) {
Amith Yamasani0b285492011-04-14 17:35:23 -07001556 Slog.e(LOG_TAG, "User id does not match the file name");
Amith Yamasani4b2e9342011-03-31 12:38:53 -07001557 return null;
1558 }
Amith Yamasani920ace02012-09-20 22:15:37 -07001559 serialNumber = readIntAttribute(parser, ATTR_SERIAL_NO, id);
1560 flags = readIntAttribute(parser, ATTR_FLAGS, 0);
Amith Yamasanib8151ec2012-04-18 18:02:48 -07001561 iconPath = parser.getAttributeValue(null, ATTR_ICON_PATH);
Amith Yamasani920ace02012-09-20 22:15:37 -07001562 creationTime = readLongAttribute(parser, ATTR_CREATION_TIME, 0);
1563 lastLoggedInTime = readLongAttribute(parser, ATTR_LAST_LOGGED_IN_TIME, 0);
Kenny Guy2a764942014-04-02 13:29:20 +01001564 profileGroupId = readIntAttribute(parser, ATTR_PROFILE_GROUP_ID,
1565 UserInfo.NO_PROFILE_GROUP_ID);
Fyodor Kupolov06a484a2015-08-21 16:33:20 -07001566 restrictedProfileParentId = readIntAttribute(parser,
1567 ATTR_RESTRICTED_PROFILE_PARENT_ID, UserInfo.NO_PROFILE_GROUP_ID);
Dianne Hackbornd4ac8d72012-09-27 23:20:10 -07001568 String valueString = parser.getAttributeValue(null, ATTR_PARTIAL);
1569 if ("true".equals(valueString)) {
1570 partial = true;
1571 }
Adam Lesinskieddeb492014-09-08 17:50:03 -07001572 valueString = parser.getAttributeValue(null, ATTR_GUEST_TO_REMOVE);
1573 if ("true".equals(valueString)) {
1574 guestToRemove = true;
1575 }
Amith Yamasani4b2e9342011-03-31 12:38:53 -07001576
Amith Yamasanie4cf7342012-12-17 11:12:09 -08001577 int outerDepth = parser.getDepth();
1578 while ((type = parser.next()) != XmlPullParser.END_DOCUMENT
1579 && (type != XmlPullParser.END_TAG || parser.getDepth() > outerDepth)) {
1580 if (type == XmlPullParser.END_TAG || type == XmlPullParser.TEXT) {
1581 continue;
1582 }
1583 String tag = parser.getName();
1584 if (TAG_NAME.equals(tag)) {
1585 type = parser.next();
1586 if (type == XmlPullParser.TEXT) {
1587 name = parser.getText();
1588 }
1589 } else if (TAG_RESTRICTIONS.equals(tag)) {
Makoto Onuki1a2cd742015-11-16 13:51:27 -08001590 UserRestrictionsUtils.readRestrictions(parser, baseRestrictions);
1591 } else if (TAG_DEVICE_POLICY_RESTRICTIONS.equals(tag)) {
1592 UserRestrictionsUtils.readRestrictions(parser, localRestrictions);
Xiaohui Chenb3b92582015-12-07 11:22:13 -08001593 } else if (TAG_ACCOUNT.equals(tag)) {
1594 type = parser.next();
1595 if (type == XmlPullParser.TEXT) {
1596 account = parser.getText();
1597 }
Amith Yamasani4b2e9342011-03-31 12:38:53 -07001598 }
1599 }
1600 }
Amith Yamasani4b2e9342011-03-31 12:38:53 -07001601
Amith Yamasanib8151ec2012-04-18 18:02:48 -07001602 UserInfo userInfo = new UserInfo(id, name, iconPath, flags);
Amith Yamasani2a003292012-08-14 18:25:45 -07001603 userInfo.serialNumber = serialNumber;
Amith Yamasani920ace02012-09-20 22:15:37 -07001604 userInfo.creationTime = creationTime;
1605 userInfo.lastLoggedInTime = lastLoggedInTime;
Dianne Hackbornd4ac8d72012-09-27 23:20:10 -07001606 userInfo.partial = partial;
Adam Lesinskieddeb492014-09-08 17:50:03 -07001607 userInfo.guestToRemove = guestToRemove;
Kenny Guy2a764942014-04-02 13:29:20 +01001608 userInfo.profileGroupId = profileGroupId;
Fyodor Kupolov06a484a2015-08-21 16:33:20 -07001609 userInfo.restrictedProfileParentId = restrictedProfileParentId;
Makoto Onuki068c54a2015-10-13 14:34:03 -07001610 synchronized (mRestrictionsLock) {
Makoto Onuki1a2cd742015-11-16 13:51:27 -08001611 mBaseUserRestrictions.put(id, baseRestrictions);
1612 mDevicePolicyLocalUserRestrictions.put(id, localRestrictions);
Makoto Onuki068c54a2015-10-13 14:34:03 -07001613 }
Xiaohui Chenb3b92582015-12-07 11:22:13 -08001614 return new Pair<>(userInfo, account);
Amith Yamasani4b2e9342011-03-31 12:38:53 -07001615
1616 } catch (IOException ioe) {
1617 } catch (XmlPullParserException pe) {
Dianne Hackbornbfd89b32011-12-15 18:22:54 -08001618 } finally {
1619 if (fis != null) {
1620 try {
1621 fis.close();
1622 } catch (IOException e) {
1623 }
1624 }
Amith Yamasani4b2e9342011-03-31 12:38:53 -07001625 }
1626 return null;
1627 }
1628
Amith Yamasani920ace02012-09-20 22:15:37 -07001629 private int readIntAttribute(XmlPullParser parser, String attr, int defaultValue) {
1630 String valueString = parser.getAttributeValue(null, attr);
1631 if (valueString == null) return defaultValue;
1632 try {
1633 return Integer.parseInt(valueString);
1634 } catch (NumberFormatException nfe) {
1635 return defaultValue;
1636 }
1637 }
1638
1639 private long readLongAttribute(XmlPullParser parser, String attr, long defaultValue) {
1640 String valueString = parser.getAttributeValue(null, attr);
1641 if (valueString == null) return defaultValue;
1642 try {
1643 return Long.parseLong(valueString);
1644 } catch (NumberFormatException nfe) {
1645 return defaultValue;
1646 }
1647 }
1648
Amith Yamasani1a7472e2013-07-02 11:17:30 -07001649 private boolean isPackageInstalled(String pkg, int userId) {
1650 final ApplicationInfo info = mPm.getApplicationInfo(pkg,
1651 PackageManager.GET_UNINSTALLED_PACKAGES,
1652 userId);
1653 if (info == null || (info.flags&ApplicationInfo.FLAG_INSTALLED) == 0) {
1654 return false;
1655 }
1656 return true;
1657 }
1658
Amith Yamasanib82add22013-07-09 11:24:44 -07001659 /**
Kenny Guyd21b2182014-07-17 16:38:55 +01001660 * Removes all the restrictions files (res_<packagename>) for a given user.
Amith Yamasanib82add22013-07-09 11:24:44 -07001661 * Does not do any permissions checking.
1662 */
Kenny Guyd21b2182014-07-17 16:38:55 +01001663 private void cleanAppRestrictions(int userId) {
Amith Yamasanib82add22013-07-09 11:24:44 -07001664 synchronized (mPackagesLock) {
1665 File dir = Environment.getUserSystemDirectory(userId);
1666 String[] files = dir.list();
1667 if (files == null) return;
1668 for (String fileName : files) {
1669 if (fileName.startsWith(RESTRICTIONS_FILE_PREFIX)) {
1670 File resFile = new File(dir, fileName);
1671 if (resFile.exists()) {
Kenny Guyd21b2182014-07-17 16:38:55 +01001672 resFile.delete();
Amith Yamasanib82add22013-07-09 11:24:44 -07001673 }
1674 }
1675 }
1676 }
1677 }
1678
Amith Yamasani1a7472e2013-07-02 11:17:30 -07001679 /**
1680 * Removes the app restrictions file for a specific package and user id, if it exists.
1681 */
1682 private void cleanAppRestrictionsForPackage(String pkg, int userId) {
1683 synchronized (mPackagesLock) {
1684 File dir = Environment.getUserSystemDirectory(userId);
Amith Yamasanifc95e702013-09-26 13:20:17 -07001685 File resFile = new File(dir, packageToRestrictionsFileName(pkg));
Amith Yamasani1a7472e2013-07-02 11:17:30 -07001686 if (resFile.exists()) {
1687 resFile.delete();
1688 }
1689 }
1690 }
1691
Kenny Guya52dc3e2014-02-11 15:33:14 +00001692 @Override
Kenny Guy2a764942014-04-02 13:29:20 +01001693 public UserInfo createProfileForUser(String name, int flags, int userId) {
Kenny Guya52dc3e2014-02-11 15:33:14 +00001694 checkManageUsersPermission("Only the system can create users");
Kenny Guy2a764942014-04-02 13:29:20 +01001695 return createUserInternal(name, flags, userId);
Kenny Guya52dc3e2014-02-11 15:33:14 +00001696 }
1697
Amith Yamasani258848d2012-08-10 17:06:33 -07001698 @Override
Amith Yamasani13593602012-03-22 16:16:17 -07001699 public UserInfo createUser(String name, int flags) {
Amith Yamasani2a003292012-08-14 18:25:45 -07001700 checkManageUsersPermission("Only the system can create users");
Nicolas Prevotc6d033e2014-02-27 13:11:09 +00001701 return createUserInternal(name, flags, UserHandle.USER_NULL);
Kenny Guya52dc3e2014-02-11 15:33:14 +00001702 }
Amith Yamasanifaea76f2012-09-11 10:59:48 -07001703
Jessica Hummelbe81c802014-04-22 15:49:22 +01001704 private UserInfo createUserInternal(String name, int flags, int parentId) {
Fyodor Kupolove80085d2015-11-06 18:21:39 -08001705 if (hasUserRestriction(UserManager.DISALLOW_ADD_USER, UserHandle.getCallingUserId())) {
Julia Reynolds75175022014-06-26 16:35:00 -04001706 Log.w(LOG_TAG, "Cannot add user. DISALLOW_ADD_USER is enabled.");
1707 return null;
1708 }
Nicolas Prevot12678a92015-05-13 12:15:03 -07001709 if (ActivityManager.isLowRamDeviceStatic()) {
1710 return null;
1711 }
Amith Yamasani95ab7842014-08-11 17:09:26 -07001712 final boolean isGuest = (flags & UserInfo.FLAG_GUEST) != 0;
Nicolas Prevot12678a92015-05-13 12:15:03 -07001713 final boolean isManagedProfile = (flags & UserInfo.FLAG_MANAGED_PROFILE) != 0;
Fyodor Kupolov06a484a2015-08-21 16:33:20 -07001714 final boolean isRestricted = (flags & UserInfo.FLAG_RESTRICTED) != 0;
Dianne Hackborn5dc5a002012-09-15 19:33:48 -07001715 final long ident = Binder.clearCallingIdentity();
Fyodor Kupolove80085d2015-11-06 18:21:39 -08001716 UserInfo userInfo;
Amith Yamasanibb054c92015-07-09 14:16:27 -07001717 final int userId;
Dianne Hackborn5dc5a002012-09-15 19:33:48 -07001718 try {
Fyodor Kupolove80085d2015-11-06 18:21:39 -08001719 synchronized (mPackagesLock) {
1720 UserInfo parent = null;
1721 if (parentId != UserHandle.USER_NULL) {
1722 synchronized (mUsersLock) {
1723 parent = getUserInfoLU(parentId);
Nicolas Prevotc6d033e2014-02-27 13:11:09 +00001724 }
Fyodor Kupolove80085d2015-11-06 18:21:39 -08001725 if (parent == null) return null;
1726 }
1727 if (isManagedProfile && !canAddMoreManagedProfiles(parentId, false)) {
1728 Log.e(LOG_TAG, "Cannot add more managed profiles for user " + parentId);
1729 return null;
1730 }
1731 if (!isGuest && !isManagedProfile && isUserLimitReached()) {
1732 // If we're not adding a guest user or a managed profile and the limit has
1733 // been reached, cannot add a user.
1734 return null;
1735 }
1736 // If we're adding a guest and there already exists one, bail.
1737 if (isGuest && findCurrentGuestUser() != null) {
1738 return null;
1739 }
1740 // In legacy mode, restricted profile's parent can only be the owner user
1741 if (isRestricted && !UserManager.isSplitSystemUser()
1742 && (parentId != UserHandle.USER_SYSTEM)) {
1743 Log.w(LOG_TAG, "Cannot add restricted profile - parent user must be owner");
1744 return null;
1745 }
1746 if (isRestricted && UserManager.isSplitSystemUser()) {
1747 if (parent == null) {
1748 Log.w(LOG_TAG, "Cannot add restricted profile - parent user must be "
1749 + "specified");
Nicolas Prevot12678a92015-05-13 12:15:03 -07001750 return null;
1751 }
Fyodor Kupolove80085d2015-11-06 18:21:39 -08001752 if (!parent.canHaveProfile()) {
1753 Log.w(LOG_TAG, "Cannot add restricted profile - profiles cannot be "
1754 + "created for the specified parent user id " + parentId);
Amith Yamasani95ab7842014-08-11 17:09:26 -07001755 return null;
1756 }
Fyodor Kupolove80085d2015-11-06 18:21:39 -08001757 }
1758 // In split system user mode, we assign the first human user the primary flag.
1759 // And if there is no device owner, we also assign the admin flag to primary user.
1760 if (UserManager.isSplitSystemUser()
1761 && !isGuest && !isManagedProfile && getPrimaryUser() == null) {
1762 flags |= UserInfo.FLAG_PRIMARY;
Makoto Onukie7927da2015-11-25 10:05:17 -08001763 synchronized (mUsersLock) {
1764 if (!mIsDeviceManaged) {
1765 flags |= UserInfo.FLAG_ADMIN;
1766 }
Amith Yamasani95ab7842014-08-11 17:09:26 -07001767 }
Fyodor Kupolove80085d2015-11-06 18:21:39 -08001768 }
Lenka Trochtovac4dd0212015-11-18 12:22:06 +01001769
1770 if (parent != null && parent.isEphemeral()) {
1771 flags |= UserInfo.FLAG_EPHEMERAL;
1772 }
Fyodor Kupolove80085d2015-11-06 18:21:39 -08001773 userId = getNextAvailableId();
1774 userInfo = new UserInfo(userId, name, null, flags);
1775 userInfo.serialNumber = mNextSerialNumber++;
1776 long now = System.currentTimeMillis();
1777 userInfo.creationTime = (now > EPOCH_PLUS_30_YEARS) ? now : 0;
1778 userInfo.partial = true;
1779 Environment.getUserSystemDirectory(userInfo.id).mkdirs();
1780 synchronized (mUsersLock) {
Dianne Hackborn5dc5a002012-09-15 19:33:48 -07001781 mUsers.put(userId, userInfo);
Fyodor Kupolove80085d2015-11-06 18:21:39 -08001782 }
1783 writeUserListLP();
1784 if (parent != null) {
1785 if (isManagedProfile) {
1786 if (parent.profileGroupId == UserInfo.NO_PROFILE_GROUP_ID) {
1787 parent.profileGroupId = parent.id;
1788 writeUserLP(parent);
Kenny Guya52dc3e2014-02-11 15:33:14 +00001789 }
Fyodor Kupolove80085d2015-11-06 18:21:39 -08001790 userInfo.profileGroupId = parent.profileGroupId;
1791 } else if (isRestricted) {
1792 if (parent.restrictedProfileParentId == UserInfo.NO_PROFILE_GROUP_ID) {
1793 parent.restrictedProfileParentId = parent.id;
1794 writeUserLP(parent);
Jeff Sharkey6dce4962015-07-03 18:08:41 -07001795 }
Fyodor Kupolove80085d2015-11-06 18:21:39 -08001796 userInfo.restrictedProfileParentId = parent.restrictedProfileParentId;
Makoto Onuki068c54a2015-10-13 14:34:03 -07001797 }
Dianne Hackborn5dc5a002012-09-15 19:33:48 -07001798 }
Dianne Hackborn4428e172012-08-24 17:43:05 -07001799 }
Fyodor Kupolove80085d2015-11-06 18:21:39 -08001800 final StorageManager storage = mContext.getSystemService(StorageManager.class);
Lenka Trochtovac4dd0212015-11-18 12:22:06 +01001801 storage.createUserKey(userId, userInfo.serialNumber, userInfo.isEphemeral());
Fyodor Kupolove80085d2015-11-06 18:21:39 -08001802 for (VolumeInfo vol : storage.getWritablePrivateVolumes()) {
1803 final String volumeUuid = vol.getFsUuid();
1804 try {
1805 final File userDir = Environment.getDataUserDirectory(volumeUuid, userId);
Lenka Trochtovac4dd0212015-11-18 12:22:06 +01001806 storage.prepareUserStorage(
1807 volumeUuid, userId, userInfo.serialNumber, userInfo.isEphemeral());
Fyodor Kupolove80085d2015-11-06 18:21:39 -08001808 enforceSerialNumber(userDir, userInfo.serialNumber);
1809 } catch (IOException e) {
1810 Log.wtf(LOG_TAG, "Failed to create user directory on " + volumeUuid, e);
1811 }
Dianne Hackborn5dc5a002012-09-15 19:33:48 -07001812 }
Fyodor Kupolove80085d2015-11-06 18:21:39 -08001813 mPm.createNewUser(userId);
1814 userInfo.partial = false;
1815 synchronized (mPackagesLock) {
1816 writeUserLP(userInfo);
1817 }
1818 updateUserIds();
1819 Bundle restrictions = new Bundle();
Fyodor Kupolove04462c2015-11-30 15:02:53 -08001820 if (isGuest) {
1821 synchronized (mGuestRestrictions) {
1822 restrictions.putAll(mGuestRestrictions);
1823 }
1824 }
Fyodor Kupolove80085d2015-11-06 18:21:39 -08001825 synchronized (mRestrictionsLock) {
1826 mBaseUserRestrictions.append(userId, restrictions);
1827 }
1828 mPm.newUserCreated(userId);
1829 Intent addedIntent = new Intent(Intent.ACTION_USER_ADDED);
1830 addedIntent.putExtra(Intent.EXTRA_USER_HANDLE, userId);
1831 mContext.sendBroadcastAsUser(addedIntent, UserHandle.ALL,
1832 android.Manifest.permission.MANAGE_USERS);
Dianne Hackborn5dc5a002012-09-15 19:33:48 -07001833 } finally {
1834 Binder.restoreCallingIdentity(ident);
Amith Yamasani258848d2012-08-10 17:06:33 -07001835 }
Amith Yamasani4b2e9342011-03-31 12:38:53 -07001836 return userInfo;
1837 }
1838
Amith Yamasani0b285492011-04-14 17:35:23 -07001839 /**
Fyodor Kupolov02cb6e72015-09-18 18:20:55 -07001840 * @hide
1841 */
1842 public UserInfo createRestrictedProfile(String name, int parentUserId) {
1843 checkManageUsersPermission("setupRestrictedProfile");
1844 final UserInfo user = createProfileForUser(name, UserInfo.FLAG_RESTRICTED, parentUserId);
1845 if (user == null) {
1846 return null;
1847 }
1848 setUserRestriction(UserManager.DISALLOW_MODIFY_ACCOUNTS, true, user.id);
1849 // Change the setting before applying the DISALLOW_SHARE_LOCATION restriction, otherwise
1850 // the putIntForUser() will fail.
1851 android.provider.Settings.Secure.putIntForUser(mContext.getContentResolver(),
1852 android.provider.Settings.Secure.LOCATION_MODE,
1853 android.provider.Settings.Secure.LOCATION_MODE_OFF, user.id);
1854 setUserRestriction(UserManager.DISALLOW_SHARE_LOCATION, true, user.id);
1855 return user;
1856 }
1857
1858 /**
Adam Lesinskieddeb492014-09-08 17:50:03 -07001859 * Find the current guest user. If the Guest user is partial,
1860 * then do not include it in the results as it is about to die.
Adam Lesinskieddeb492014-09-08 17:50:03 -07001861 */
Fyodor Kupolov82402752015-10-28 14:54:51 -07001862 private UserInfo findCurrentGuestUser() {
1863 synchronized (mUsersLock) {
1864 final int size = mUsers.size();
1865 for (int i = 0; i < size; i++) {
1866 final UserInfo user = mUsers.valueAt(i);
1867 if (user.isGuest() && !user.guestToRemove && !mRemovingUserIds.get(user.id)) {
1868 return user;
1869 }
Adam Lesinskieddeb492014-09-08 17:50:03 -07001870 }
1871 }
1872 return null;
1873 }
1874
1875 /**
Amith Yamasani1df14732014-08-29 21:37:27 -07001876 * Mark this guest user for deletion to allow us to create another guest
1877 * and switch to that user before actually removing this guest.
1878 * @param userHandle the userid of the current guest
1879 * @return whether the user could be marked for deletion
1880 */
1881 public boolean markGuestForDeletion(int userHandle) {
1882 checkManageUsersPermission("Only the system can remove users");
1883 if (getUserRestrictions(UserHandle.getCallingUserId()).getBoolean(
1884 UserManager.DISALLOW_REMOVE_USER, false)) {
1885 Log.w(LOG_TAG, "Cannot remove user. DISALLOW_REMOVE_USER is enabled.");
1886 return false;
1887 }
1888
1889 long ident = Binder.clearCallingIdentity();
1890 try {
1891 final UserInfo user;
1892 synchronized (mPackagesLock) {
Fyodor Kupolov82402752015-10-28 14:54:51 -07001893 synchronized (mUsersLock) {
1894 user = mUsers.get(userHandle);
1895 if (userHandle == 0 || user == null || mRemovingUserIds.get(userHandle)) {
1896 return false;
1897 }
Amith Yamasani1df14732014-08-29 21:37:27 -07001898 }
1899 if (!user.isGuest()) {
1900 return false;
1901 }
Adam Lesinskieddeb492014-09-08 17:50:03 -07001902 // We set this to a guest user that is to be removed. This is a temporary state
1903 // where we are allowed to add new Guest users, even if this one is still not
1904 // removed. This user will still show up in getUserInfo() calls.
1905 // If we don't get around to removing this Guest user, it will be purged on next
1906 // startup.
1907 user.guestToRemove = true;
Amith Yamasani1df14732014-08-29 21:37:27 -07001908 // Mark it as disabled, so that it isn't returned any more when
1909 // profiles are queried.
1910 user.flags |= UserInfo.FLAG_DISABLED;
Fyodor Kupolov82402752015-10-28 14:54:51 -07001911 writeUserLP(user);
Amith Yamasani1df14732014-08-29 21:37:27 -07001912 }
1913 } finally {
1914 Binder.restoreCallingIdentity(ident);
1915 }
1916 return true;
1917 }
1918
1919 /**
Amith Yamasani0b285492011-04-14 17:35:23 -07001920 * Removes a user and all data directories created for that user. This method should be called
1921 * after the user's processes have been terminated.
Dianne Hackborn10ad9822014-03-17 11:28:36 -07001922 * @param userHandle the user's id
Amith Yamasani0b285492011-04-14 17:35:23 -07001923 */
Amith Yamasani258848d2012-08-10 17:06:33 -07001924 public boolean removeUser(int userHandle) {
Amith Yamasani2a003292012-08-14 18:25:45 -07001925 checkManageUsersPermission("Only the system can remove users");
Julia Reynolds4ac5f852014-06-23 17:38:51 -04001926 if (getUserRestrictions(UserHandle.getCallingUserId()).getBoolean(
1927 UserManager.DISALLOW_REMOVE_USER, false)) {
1928 Log.w(LOG_TAG, "Cannot remove user. DISALLOW_REMOVE_USER is enabled.");
1929 return false;
1930 }
1931
Kenny Guyee58b4f2014-05-23 15:19:53 +01001932 long ident = Binder.clearCallingIdentity();
1933 try {
1934 final UserInfo user;
Fyodor Kupolov0df68cd2015-10-01 13:54:22 -07001935 int currentUser = ActivityManager.getCurrentUser();
1936 if (currentUser == userHandle) {
1937 Log.w(LOG_TAG, "Current user cannot be removed");
1938 return false;
1939 }
Kenny Guyee58b4f2014-05-23 15:19:53 +01001940 synchronized (mPackagesLock) {
Fyodor Kupolov82402752015-10-28 14:54:51 -07001941 synchronized (mUsersLock) {
1942 user = mUsers.get(userHandle);
1943 if (userHandle == 0 || user == null || mRemovingUserIds.get(userHandle)) {
1944 return false;
1945 }
Jeff Sharkey6eb09392014-11-14 15:57:59 -08001946
Fyodor Kupolov82402752015-10-28 14:54:51 -07001947 // We remember deleted user IDs to prevent them from being
1948 // reused during the current boot; they can still be reused
1949 // after a reboot.
1950 mRemovingUserIds.put(userHandle, true);
1951 }
Jeff Sharkey6eb09392014-11-14 15:57:59 -08001952
Kenny Guyee58b4f2014-05-23 15:19:53 +01001953 try {
1954 mAppOpsService.removeUser(userHandle);
1955 } catch (RemoteException e) {
1956 Log.w(LOG_TAG, "Unable to notify AppOpsService of removing user", e);
1957 }
1958 // Set this to a partially created user, so that the user will be purged
1959 // on next startup, in case the runtime stops now before stopping and
1960 // removing the user completely.
1961 user.partial = true;
1962 // Mark it as disabled, so that it isn't returned any more when
1963 // profiles are queried.
1964 user.flags |= UserInfo.FLAG_DISABLED;
Fyodor Kupolov82402752015-10-28 14:54:51 -07001965 writeUserLP(user);
Kenny Guyee58b4f2014-05-23 15:19:53 +01001966 }
1967
1968 if (user.profileGroupId != UserInfo.NO_PROFILE_GROUP_ID
1969 && user.isManagedProfile()) {
1970 // Send broadcast to notify system that the user removed was a
1971 // managed user.
1972 sendProfileRemovedBroadcast(user.profileGroupId, user.id);
1973 }
1974
1975 if (DBG) Slog.i(LOG_TAG, "Stopping user " + userHandle);
1976 int res;
1977 try {
Fyodor Kupolov9cbfc9e2015-10-07 15:52:33 -07001978 res = ActivityManagerNative.getDefault().stopUser(userHandle, /* force= */ true,
1979 new IStopUserCallback.Stub() {
Kenny Guyee58b4f2014-05-23 15:19:53 +01001980 @Override
1981 public void userStopped(int userId) {
1982 finishRemoveUser(userId);
1983 }
1984 @Override
1985 public void userStopAborted(int userId) {
1986 }
1987 });
1988 } catch (RemoteException e) {
Dianne Hackborn80a4af22012-08-27 19:18:31 -07001989 return false;
1990 }
Kenny Guyee58b4f2014-05-23 15:19:53 +01001991 return res == ActivityManager.USER_OP_SUCCESS;
1992 } finally {
1993 Binder.restoreCallingIdentity(ident);
Dianne Hackborn80a4af22012-08-27 19:18:31 -07001994 }
Dianne Hackborn80a4af22012-08-27 19:18:31 -07001995 }
1996
Amith Yamasanidb6a14c2012-10-17 21:16:52 -07001997 void finishRemoveUser(final int userHandle) {
Amith Yamasani16389312012-10-17 21:20:14 -07001998 if (DBG) Slog.i(LOG_TAG, "finishRemoveUser " + userHandle);
Amith Yamasanidb6a14c2012-10-17 21:16:52 -07001999 // Let other services shutdown any activity and clean up their state before completely
2000 // wiping the user's system directory and removing from the user list
Dianne Hackborn5dc5a002012-09-15 19:33:48 -07002001 long ident = Binder.clearCallingIdentity();
2002 try {
2003 Intent addedIntent = new Intent(Intent.ACTION_USER_REMOVED);
2004 addedIntent.putExtra(Intent.EXTRA_USER_HANDLE, userHandle);
Amith Yamasanidb6a14c2012-10-17 21:16:52 -07002005 mContext.sendOrderedBroadcastAsUser(addedIntent, UserHandle.ALL,
2006 android.Manifest.permission.MANAGE_USERS,
2007
2008 new BroadcastReceiver() {
2009 @Override
2010 public void onReceive(Context context, Intent intent) {
2011 if (DBG) {
2012 Slog.i(LOG_TAG,
2013 "USER_REMOVED broadcast sent, cleaning up user data "
2014 + userHandle);
2015 }
2016 new Thread() {
2017 public void run() {
Amith Yamasani515d4062015-09-28 11:30:06 -07002018 // Clean up any ActivityManager state
2019 LocalServices.getService(ActivityManagerInternal.class)
2020 .onUserRemoved(userHandle);
Fyodor Kupolove80085d2015-11-06 18:21:39 -08002021 removeUserState(userHandle);
Amith Yamasanidb6a14c2012-10-17 21:16:52 -07002022 }
2023 }.start();
2024 }
2025 },
2026
2027 null, Activity.RESULT_OK, null, null);
Dianne Hackborn5dc5a002012-09-15 19:33:48 -07002028 } finally {
2029 Binder.restoreCallingIdentity(ident);
2030 }
Amith Yamasani2a003292012-08-14 18:25:45 -07002031 }
2032
Fyodor Kupolove80085d2015-11-06 18:21:39 -08002033 private void removeUserState(final int userHandle) {
Jeff Sharkeyf9fc6d62015-11-08 16:46:05 -08002034 mContext.getSystemService(StorageManager.class).destroyUserKey(userHandle);
Dianne Hackbornd4ac8d72012-09-27 23:20:10 -07002035 // Cleanup package manager settings
Fyodor Kupolove80085d2015-11-06 18:21:39 -08002036 mPm.cleanUpUser(this, userHandle);
Dianne Hackbornd4ac8d72012-09-27 23:20:10 -07002037
2038 // Remove this user from the list
Fyodor Kupolov82402752015-10-28 14:54:51 -07002039 synchronized (mUsersLock) {
2040 mUsers.remove(userHandle);
Xiaohui Chenb3b92582015-12-07 11:22:13 -08002041 mUserAccounts.delete(userHandle);
Makoto Onukie7927da2015-11-25 10:05:17 -08002042 mIsUserManaged.delete(userHandle);
2043 }
2044 synchronized (mRestrictionsLock) {
2045 mBaseUserRestrictions.remove(userHandle);
2046 mAppliedUserRestrictions.remove(userHandle);
2047 mCachedEffectiveUserRestrictions.remove(userHandle);
2048 mDevicePolicyLocalUserRestrictions.remove(userHandle);
Fyodor Kupolov82402752015-10-28 14:54:51 -07002049 }
Dianne Hackbornd4ac8d72012-09-27 23:20:10 -07002050 // Remove user file
Amith Yamasanifc95e702013-09-26 13:20:17 -07002051 AtomicFile userFile = new AtomicFile(new File(mUsersDir, userHandle + XML_SUFFIX));
Dianne Hackbornd4ac8d72012-09-27 23:20:10 -07002052 userFile.delete();
2053 // Update the user list
Fyodor Kupolove80085d2015-11-06 18:21:39 -08002054 synchronized (mPackagesLock) {
2055 writeUserListLP();
2056 }
Fyodor Kupolov82402752015-10-28 14:54:51 -07002057 updateUserIds();
Dianne Hackbornd4ac8d72012-09-27 23:20:10 -07002058 removeDirectoryRecursive(Environment.getUserSystemDirectory(userHandle));
2059 }
2060
Amith Yamasani61f57372012-08-31 12:12:28 -07002061 private void removeDirectoryRecursive(File parent) {
2062 if (parent.isDirectory()) {
2063 String[] files = parent.list();
2064 for (String filename : files) {
2065 File child = new File(parent, filename);
2066 removeDirectoryRecursive(child);
2067 }
2068 }
2069 parent.delete();
2070 }
2071
Kenny Guyf8d3a232014-05-15 16:09:52 +01002072 private void sendProfileRemovedBroadcast(int parentUserId, int removedUserId) {
Adam Connors7b66ed52014-04-14 11:58:10 +01002073 Intent managedProfileIntent = new Intent(Intent.ACTION_MANAGED_PROFILE_REMOVED);
Adam Connorsd4b584e2014-06-09 13:55:47 +01002074 managedProfileIntent.addFlags(Intent.FLAG_RECEIVER_REGISTERED_ONLY |
2075 Intent.FLAG_RECEIVER_FOREGROUND);
Kenny Guyf8d3a232014-05-15 16:09:52 +01002076 managedProfileIntent.putExtra(Intent.EXTRA_USER, new UserHandle(removedUserId));
Jeff Sharkeyaf6ec292015-12-17 11:19:00 -07002077 managedProfileIntent.putExtra(Intent.EXTRA_USER_HANDLE, removedUserId);
Kenny Guyf8d3a232014-05-15 16:09:52 +01002078 mContext.sendBroadcastAsUser(managedProfileIntent, new UserHandle(parentUserId), null);
Adam Connors7b66ed52014-04-14 11:58:10 +01002079 }
2080
Amith Yamasani2a003292012-08-14 18:25:45 -07002081 @Override
Amith Yamasani7e99bc02013-04-16 18:24:51 -07002082 public Bundle getApplicationRestrictions(String packageName) {
2083 return getApplicationRestrictionsForUser(packageName, UserHandle.getCallingUserId());
2084 }
2085
2086 @Override
2087 public Bundle getApplicationRestrictionsForUser(String packageName, int userId) {
Amith Yamasanidf2e92a2013-03-01 17:04:38 -08002088 if (UserHandle.getCallingUserId() != userId
Amith Yamasani9429afb2013-04-10 18:40:51 -07002089 || !UserHandle.isSameApp(Binder.getCallingUid(), getUidForPackage(packageName))) {
Esteban Talavera5b9f1672015-12-11 15:22:34 +00002090 checkSystemOrRoot("get application restrictions for other users/apps");
Amith Yamasanidf2e92a2013-03-01 17:04:38 -08002091 }
2092 synchronized (mPackagesLock) {
2093 // Read the restrictions from XML
Fyodor Kupolov82402752015-10-28 14:54:51 -07002094 return readApplicationRestrictionsLP(packageName, userId);
Amith Yamasanidf2e92a2013-03-01 17:04:38 -08002095 }
2096 }
2097
2098 @Override
Amith Yamasani7e99bc02013-04-16 18:24:51 -07002099 public void setApplicationRestrictions(String packageName, Bundle restrictions,
Amith Yamasanidf2e92a2013-03-01 17:04:38 -08002100 int userId) {
Esteban Talavera5b9f1672015-12-11 15:22:34 +00002101 checkSystemOrRoot("set application restrictions");
Amith Yamasanidf2e92a2013-03-01 17:04:38 -08002102 synchronized (mPackagesLock) {
Kenny Guyd21b2182014-07-17 16:38:55 +01002103 if (restrictions == null || restrictions.isEmpty()) {
2104 cleanAppRestrictionsForPackage(packageName, userId);
2105 } else {
2106 // Write the restrictions to XML
Fyodor Kupolov82402752015-10-28 14:54:51 -07002107 writeApplicationRestrictionsLP(packageName, restrictions, userId);
Kenny Guyd21b2182014-07-17 16:38:55 +01002108 }
Amith Yamasanidf2e92a2013-03-01 17:04:38 -08002109 }
Robin Lee66e5d962014-04-09 16:44:21 +01002110
Kenny Guyd21b2182014-07-17 16:38:55 +01002111 if (isPackageInstalled(packageName, userId)) {
2112 // Notify package of changes via an intent - only sent to explicitly registered receivers.
2113 Intent changeIntent = new Intent(Intent.ACTION_APPLICATION_RESTRICTIONS_CHANGED);
2114 changeIntent.setPackage(packageName);
2115 changeIntent.addFlags(Intent.FLAG_RECEIVER_REGISTERED_ONLY);
2116 mContext.sendBroadcastAsUser(changeIntent, new UserHandle(userId));
2117 }
Amith Yamasanidf2e92a2013-03-01 17:04:38 -08002118 }
2119
Amith Yamasanie5bcff62014-07-19 15:44:09 -07002120 private void unhideAllInstalledAppsForUser(final int userHandle) {
Amith Yamasani1a7472e2013-07-02 11:17:30 -07002121 mHandler.post(new Runnable() {
2122 @Override
2123 public void run() {
2124 List<ApplicationInfo> apps =
2125 mPm.getInstalledApplications(PackageManager.GET_UNINSTALLED_PACKAGES,
2126 userHandle).getList();
2127 final long ident = Binder.clearCallingIdentity();
2128 try {
2129 for (ApplicationInfo appInfo : apps) {
2130 if ((appInfo.flags & ApplicationInfo.FLAG_INSTALLED) != 0
Alex Klyubinb9f8a522015-02-03 11:12:59 -08002131 && (appInfo.privateFlags & ApplicationInfo.PRIVATE_FLAG_HIDDEN)
2132 != 0) {
Amith Yamasanie5bcff62014-07-19 15:44:09 -07002133 mPm.setApplicationHiddenSettingAsUser(appInfo.packageName, false,
Amith Yamasani1a7472e2013-07-02 11:17:30 -07002134 userHandle);
2135 }
2136 }
2137 } finally {
2138 Binder.restoreCallingIdentity(ident);
2139 }
2140 }
2141 });
2142 }
Amith Yamasanidf2e92a2013-03-01 17:04:38 -08002143 private int getUidForPackage(String packageName) {
Amith Yamasani9429afb2013-04-10 18:40:51 -07002144 long ident = Binder.clearCallingIdentity();
Amith Yamasanidf2e92a2013-03-01 17:04:38 -08002145 try {
2146 return mContext.getPackageManager().getApplicationInfo(packageName,
2147 PackageManager.GET_UNINSTALLED_PACKAGES).uid;
2148 } catch (NameNotFoundException nnfe) {
2149 return -1;
Amith Yamasani9429afb2013-04-10 18:40:51 -07002150 } finally {
2151 Binder.restoreCallingIdentity(ident);
Amith Yamasanidf2e92a2013-03-01 17:04:38 -08002152 }
2153 }
2154
Fyodor Kupolov82402752015-10-28 14:54:51 -07002155 private Bundle readApplicationRestrictionsLP(String packageName, int userId) {
Fyodor Kupolov262f9952015-03-23 18:55:11 -07002156 AtomicFile restrictionsFile =
2157 new AtomicFile(new File(Environment.getUserSystemDirectory(userId),
2158 packageToRestrictionsFileName(packageName)));
Fyodor Kupolov82402752015-10-28 14:54:51 -07002159 return readApplicationRestrictionsLP(restrictionsFile);
Fyodor Kupolov262f9952015-03-23 18:55:11 -07002160 }
2161
2162 @VisibleForTesting
Fyodor Kupolov82402752015-10-28 14:54:51 -07002163 static Bundle readApplicationRestrictionsLP(AtomicFile restrictionsFile) {
Amith Yamasani7e99bc02013-04-16 18:24:51 -07002164 final Bundle restrictions = new Bundle();
Fyodor Kupolov262f9952015-03-23 18:55:11 -07002165 final ArrayList<String> values = new ArrayList<>();
Fyodor Kupolov6f34d362015-04-02 12:42:13 -07002166 if (!restrictionsFile.getBaseFile().exists()) {
Fyodor Kupolovf6ee2242015-04-06 10:15:07 -07002167 return restrictions;
Fyodor Kupolov6f34d362015-04-02 12:42:13 -07002168 }
Amith Yamasanidf2e92a2013-03-01 17:04:38 -08002169
2170 FileInputStream fis = null;
2171 try {
Amith Yamasanidf2e92a2013-03-01 17:04:38 -08002172 fis = restrictionsFile.openRead();
2173 XmlPullParser parser = Xml.newPullParser();
Wojciech Staszkiewicz9e9e2e72015-05-08 14:58:46 +01002174 parser.setInput(fis, StandardCharsets.UTF_8.name());
Fyodor Kupolov262f9952015-03-23 18:55:11 -07002175 XmlUtils.nextElement(parser);
2176 if (parser.getEventType() != XmlPullParser.START_TAG) {
Amith Yamasanidf2e92a2013-03-01 17:04:38 -08002177 Slog.e(LOG_TAG, "Unable to read restrictions file "
2178 + restrictionsFile.getBaseFile());
Amith Yamasani7e99bc02013-04-16 18:24:51 -07002179 return restrictions;
Amith Yamasanidf2e92a2013-03-01 17:04:38 -08002180 }
Fyodor Kupolov262f9952015-03-23 18:55:11 -07002181 while (parser.next() != XmlPullParser.END_DOCUMENT) {
2182 readEntry(restrictions, values, parser);
Amith Yamasanidf2e92a2013-03-01 17:04:38 -08002183 }
Fyodor Kupolov262f9952015-03-23 18:55:11 -07002184 } catch (IOException|XmlPullParserException e) {
2185 Log.w(LOG_TAG, "Error parsing " + restrictionsFile.getBaseFile(), e);
Amith Yamasanidf2e92a2013-03-01 17:04:38 -08002186 } finally {
Fyodor Kupolov262f9952015-03-23 18:55:11 -07002187 IoUtils.closeQuietly(fis);
Amith Yamasanidf2e92a2013-03-01 17:04:38 -08002188 }
Amith Yamasani7e99bc02013-04-16 18:24:51 -07002189 return restrictions;
Amith Yamasanidf2e92a2013-03-01 17:04:38 -08002190 }
2191
Fyodor Kupolov262f9952015-03-23 18:55:11 -07002192 private static void readEntry(Bundle restrictions, ArrayList<String> values,
2193 XmlPullParser parser) throws XmlPullParserException, IOException {
2194 int type = parser.getEventType();
2195 if (type == XmlPullParser.START_TAG && parser.getName().equals(TAG_ENTRY)) {
2196 String key = parser.getAttributeValue(null, ATTR_KEY);
2197 String valType = parser.getAttributeValue(null, ATTR_VALUE_TYPE);
2198 String multiple = parser.getAttributeValue(null, ATTR_MULTIPLE);
2199 if (multiple != null) {
2200 values.clear();
2201 int count = Integer.parseInt(multiple);
2202 while (count > 0 && (type = parser.next()) != XmlPullParser.END_DOCUMENT) {
2203 if (type == XmlPullParser.START_TAG
2204 && parser.getName().equals(TAG_VALUE)) {
2205 values.add(parser.nextText().trim());
2206 count--;
2207 }
2208 }
2209 String [] valueStrings = new String[values.size()];
2210 values.toArray(valueStrings);
2211 restrictions.putStringArray(key, valueStrings);
2212 } else if (ATTR_TYPE_BUNDLE.equals(valType)) {
2213 restrictions.putBundle(key, readBundleEntry(parser, values));
2214 } else if (ATTR_TYPE_BUNDLE_ARRAY.equals(valType)) {
2215 final int outerDepth = parser.getDepth();
2216 ArrayList<Bundle> bundleList = new ArrayList<>();
2217 while (XmlUtils.nextElementWithin(parser, outerDepth)) {
2218 Bundle childBundle = readBundleEntry(parser, values);
2219 bundleList.add(childBundle);
2220 }
2221 restrictions.putParcelableArray(key,
2222 bundleList.toArray(new Bundle[bundleList.size()]));
2223 } else {
2224 String value = parser.nextText().trim();
2225 if (ATTR_TYPE_BOOLEAN.equals(valType)) {
2226 restrictions.putBoolean(key, Boolean.parseBoolean(value));
2227 } else if (ATTR_TYPE_INTEGER.equals(valType)) {
2228 restrictions.putInt(key, Integer.parseInt(value));
2229 } else {
2230 restrictions.putString(key, value);
2231 }
2232 }
2233 }
2234 }
2235
2236 private static Bundle readBundleEntry(XmlPullParser parser, ArrayList<String> values)
2237 throws IOException, XmlPullParserException {
2238 Bundle childBundle = new Bundle();
2239 final int outerDepth = parser.getDepth();
2240 while (XmlUtils.nextElementWithin(parser, outerDepth)) {
2241 readEntry(childBundle, values, parser);
2242 }
2243 return childBundle;
2244 }
2245
Fyodor Kupolov82402752015-10-28 14:54:51 -07002246 private void writeApplicationRestrictionsLP(String packageName,
Amith Yamasani7e99bc02013-04-16 18:24:51 -07002247 Bundle restrictions, int userId) {
Amith Yamasanidf2e92a2013-03-01 17:04:38 -08002248 AtomicFile restrictionsFile = new AtomicFile(
2249 new File(Environment.getUserSystemDirectory(userId),
Amith Yamasanifc95e702013-09-26 13:20:17 -07002250 packageToRestrictionsFileName(packageName)));
Fyodor Kupolov82402752015-10-28 14:54:51 -07002251 writeApplicationRestrictionsLP(restrictions, restrictionsFile);
Fyodor Kupolov262f9952015-03-23 18:55:11 -07002252 }
2253
2254 @VisibleForTesting
Fyodor Kupolov82402752015-10-28 14:54:51 -07002255 static void writeApplicationRestrictionsLP(Bundle restrictions, AtomicFile restrictionsFile) {
Fyodor Kupolov262f9952015-03-23 18:55:11 -07002256 FileOutputStream fos = null;
Amith Yamasanidf2e92a2013-03-01 17:04:38 -08002257 try {
2258 fos = restrictionsFile.startWrite();
2259 final BufferedOutputStream bos = new BufferedOutputStream(fos);
2260
Amith Yamasanidf2e92a2013-03-01 17:04:38 -08002261 final XmlSerializer serializer = new FastXmlSerializer();
Wojciech Staszkiewicz9e9e2e72015-05-08 14:58:46 +01002262 serializer.setOutput(bos, StandardCharsets.UTF_8.name());
Amith Yamasanidf2e92a2013-03-01 17:04:38 -08002263 serializer.startDocument(null, true);
2264 serializer.setFeature("http://xmlpull.org/v1/doc/features.html#indent-output", true);
2265
2266 serializer.startTag(null, TAG_RESTRICTIONS);
Fyodor Kupolov262f9952015-03-23 18:55:11 -07002267 writeBundle(restrictions, serializer);
Amith Yamasanidf2e92a2013-03-01 17:04:38 -08002268 serializer.endTag(null, TAG_RESTRICTIONS);
2269
2270 serializer.endDocument();
2271 restrictionsFile.finishWrite(fos);
2272 } catch (Exception e) {
2273 restrictionsFile.failWrite(fos);
Fyodor Kupolov262f9952015-03-23 18:55:11 -07002274 Slog.e(LOG_TAG, "Error writing application restrictions list", e);
2275 }
2276 }
2277
2278 private static void writeBundle(Bundle restrictions, XmlSerializer serializer)
2279 throws IOException {
2280 for (String key : restrictions.keySet()) {
2281 Object value = restrictions.get(key);
2282 serializer.startTag(null, TAG_ENTRY);
2283 serializer.attribute(null, ATTR_KEY, key);
2284
2285 if (value instanceof Boolean) {
2286 serializer.attribute(null, ATTR_VALUE_TYPE, ATTR_TYPE_BOOLEAN);
2287 serializer.text(value.toString());
2288 } else if (value instanceof Integer) {
2289 serializer.attribute(null, ATTR_VALUE_TYPE, ATTR_TYPE_INTEGER);
2290 serializer.text(value.toString());
2291 } else if (value == null || value instanceof String) {
2292 serializer.attribute(null, ATTR_VALUE_TYPE, ATTR_TYPE_STRING);
2293 serializer.text(value != null ? (String) value : "");
2294 } else if (value instanceof Bundle) {
2295 serializer.attribute(null, ATTR_VALUE_TYPE, ATTR_TYPE_BUNDLE);
2296 writeBundle((Bundle) value, serializer);
2297 } else if (value instanceof Parcelable[]) {
2298 serializer.attribute(null, ATTR_VALUE_TYPE, ATTR_TYPE_BUNDLE_ARRAY);
2299 Parcelable[] array = (Parcelable[]) value;
2300 for (Parcelable parcelable : array) {
2301 if (!(parcelable instanceof Bundle)) {
2302 throw new IllegalArgumentException("bundle-array can only hold Bundles");
2303 }
2304 serializer.startTag(null, TAG_ENTRY);
2305 serializer.attribute(null, ATTR_VALUE_TYPE, ATTR_TYPE_BUNDLE);
2306 writeBundle((Bundle) parcelable, serializer);
2307 serializer.endTag(null, TAG_ENTRY);
2308 }
2309 } else {
2310 serializer.attribute(null, ATTR_VALUE_TYPE, ATTR_TYPE_STRING_ARRAY);
2311 String[] values = (String[]) value;
2312 serializer.attribute(null, ATTR_MULTIPLE, Integer.toString(values.length));
2313 for (String choice : values) {
2314 serializer.startTag(null, TAG_VALUE);
2315 serializer.text(choice != null ? choice : "");
2316 serializer.endTag(null, TAG_VALUE);
2317 }
2318 }
2319 serializer.endTag(null, TAG_ENTRY);
Amith Yamasanidf2e92a2013-03-01 17:04:38 -08002320 }
2321 }
2322
2323 @Override
Amith Yamasani2a003292012-08-14 18:25:45 -07002324 public int getUserSerialNumber(int userHandle) {
Fyodor Kupolov82402752015-10-28 14:54:51 -07002325 synchronized (mUsersLock) {
Amith Yamasani2a003292012-08-14 18:25:45 -07002326 if (!exists(userHandle)) return -1;
Fyodor Kupolov82402752015-10-28 14:54:51 -07002327 return getUserInfoLU(userHandle).serialNumber;
Amith Yamasani2a003292012-08-14 18:25:45 -07002328 }
2329 }
2330
2331 @Override
2332 public int getUserHandle(int userSerialNumber) {
Fyodor Kupolov82402752015-10-28 14:54:51 -07002333 synchronized (mUsersLock) {
Amith Yamasani2a003292012-08-14 18:25:45 -07002334 for (int userId : mUserIds) {
Fyodor Kupolov82402752015-10-28 14:54:51 -07002335 UserInfo info = getUserInfoLU(userId);
Kenny Guy945f8832015-02-10 15:17:26 +00002336 if (info != null && info.serialNumber == userSerialNumber) return userId;
Amith Yamasani2a003292012-08-14 18:25:45 -07002337 }
2338 // Not found
2339 return -1;
Amith Yamasani13593602012-03-22 16:16:17 -07002340 }
2341 }
2342
Fyodor Kupolovff7233e2015-04-08 11:28:52 -07002343 @Override
2344 public long getUserCreationTime(int userHandle) {
2345 int callingUserId = UserHandle.getCallingUserId();
2346 UserInfo userInfo = null;
Fyodor Kupolov82402752015-10-28 14:54:51 -07002347 synchronized (mUsersLock) {
Fyodor Kupolovff7233e2015-04-08 11:28:52 -07002348 if (callingUserId == userHandle) {
Fyodor Kupolov82402752015-10-28 14:54:51 -07002349 userInfo = getUserInfoLU(userHandle);
Fyodor Kupolovff7233e2015-04-08 11:28:52 -07002350 } else {
Fyodor Kupolov82402752015-10-28 14:54:51 -07002351 UserInfo parent = getProfileParentLU(userHandle);
Fyodor Kupolovff7233e2015-04-08 11:28:52 -07002352 if (parent != null && parent.id == callingUserId) {
Fyodor Kupolov82402752015-10-28 14:54:51 -07002353 userInfo = getUserInfoLU(userHandle);
Fyodor Kupolovff7233e2015-04-08 11:28:52 -07002354 }
2355 }
2356 }
2357 if (userInfo == null) {
2358 throw new SecurityException("userHandle can only be the calling user or a managed "
2359 + "profile associated with this user");
2360 }
2361 return userInfo.creationTime;
2362 }
2363
Amith Yamasani0b285492011-04-14 17:35:23 -07002364 /**
2365 * Caches the list of user ids in an array, adjusting the array size when necessary.
2366 */
Fyodor Kupolov82402752015-10-28 14:54:51 -07002367 private void updateUserIds() {
Dianne Hackbornd4ac8d72012-09-27 23:20:10 -07002368 int num = 0;
Fyodor Kupolov82402752015-10-28 14:54:51 -07002369 synchronized (mUsersLock) {
2370 final int userSize = mUsers.size();
2371 for (int i = 0; i < userSize; i++) {
2372 if (!mUsers.valueAt(i).partial) {
2373 num++;
2374 }
Dianne Hackbornd4ac8d72012-09-27 23:20:10 -07002375 }
Fyodor Kupolov82402752015-10-28 14:54:51 -07002376 final int[] newUsers = new int[num];
2377 int n = 0;
2378 for (int i = 0; i < userSize; i++) {
2379 if (!mUsers.valueAt(i).partial) {
2380 newUsers[n++] = mUsers.keyAt(i);
2381 }
Dianne Hackbornd4ac8d72012-09-27 23:20:10 -07002382 }
Fyodor Kupolov82402752015-10-28 14:54:51 -07002383 mUserIds = newUsers;
Amith Yamasani0b285492011-04-14 17:35:23 -07002384 }
2385 }
2386
2387 /**
Makoto Onuki1a2cd742015-11-16 13:51:27 -08002388 * Called right before a user starts. This will not be called for the system user.
2389 */
2390 public void onBeforeStartUser(int userId) {
2391 synchronized (mRestrictionsLock) {
2392 applyUserRestrictionsLR(userId);
2393 }
2394 }
2395
2396 /**
Amith Yamasani1a7472e2013-07-02 11:17:30 -07002397 * Make a note of the last started time of a user and do some cleanup.
Amith Yamasani920ace02012-09-20 22:15:37 -07002398 * @param userId the user that was just foregrounded
2399 */
Amith Yamasani06bf8242015-05-08 16:36:21 -07002400 public void onUserForeground(int userId) {
Fyodor Kupolove80085d2015-11-06 18:21:39 -08002401 UserInfo user = getUserInfoNoChecks(userId);
2402 if (user == null || user.partial) {
2403 Slog.w(LOG_TAG, "userForeground: unknown user #" + userId);
2404 return;
2405 }
2406 long now = System.currentTimeMillis();
2407 if (now > EPOCH_PLUS_30_YEARS) {
2408 user.lastLoggedInTime = now;
2409 scheduleWriteUser(user);
Amith Yamasani920ace02012-09-20 22:15:37 -07002410 }
2411 }
2412
2413 /**
Amith Yamasani0b285492011-04-14 17:35:23 -07002414 * Returns the next available user id, filling in any holes in the ids.
Amith Yamasani742a6712011-05-04 14:49:28 -07002415 * TODO: May not be a good idea to recycle ids, in case it results in confusion
2416 * for data and battery stats collection, or unexpected cross-talk.
Amith Yamasani0b285492011-04-14 17:35:23 -07002417 */
Fyodor Kupolov82402752015-10-28 14:54:51 -07002418 private int getNextAvailableId() {
2419 synchronized (mUsersLock) {
Jeff Sharkeyffe0cb42012-11-05 17:24:43 -08002420 int i = MIN_USER_ID;
Xiaohui Chen621b3fc2015-10-02 14:41:42 -07002421 while (i < MAX_USER_ID) {
Jeff Sharkeyffe0cb42012-11-05 17:24:43 -08002422 if (mUsers.indexOfKey(i) < 0 && !mRemovingUserIds.get(i)) {
Xiaohui Chen621b3fc2015-10-02 14:41:42 -07002423 return i;
Amith Yamasani195263742012-08-21 15:40:12 -07002424 }
2425 i++;
Amith Yamasani4b2e9342011-03-31 12:38:53 -07002426 }
Amith Yamasani4b2e9342011-03-31 12:38:53 -07002427 }
Xiaohui Chen621b3fc2015-10-02 14:41:42 -07002428 throw new IllegalStateException("No user id available!");
Amith Yamasani4b2e9342011-03-31 12:38:53 -07002429 }
Amith Yamasani920ace02012-09-20 22:15:37 -07002430
Amith Yamasanifc95e702013-09-26 13:20:17 -07002431 private String packageToRestrictionsFileName(String packageName) {
2432 return RESTRICTIONS_FILE_PREFIX + packageName + XML_SUFFIX;
2433 }
2434
Jeff Sharkey6dce4962015-07-03 18:08:41 -07002435 /**
Jeff Sharkey6dce4962015-07-03 18:08:41 -07002436 * Enforce that serial number stored in user directory inode matches the
2437 * given expected value. Gracefully sets the serial number if currently
2438 * undefined.
2439 *
2440 * @throws IOException when problem extracting serial number, or serial
2441 * number is mismatched.
2442 */
2443 public static void enforceSerialNumber(File file, int serialNumber) throws IOException {
2444 final int foundSerial = getSerialNumber(file);
2445 Slog.v(LOG_TAG, "Found " + file + " with serial number " + foundSerial);
2446
2447 if (foundSerial == -1) {
2448 Slog.d(LOG_TAG, "Serial number missing on " + file + "; assuming current is valid");
2449 try {
2450 setSerialNumber(file, serialNumber);
2451 } catch (IOException e) {
2452 Slog.w(LOG_TAG, "Failed to set serial number on " + file, e);
2453 }
2454
2455 } else if (foundSerial != serialNumber) {
2456 throw new IOException("Found serial number " + foundSerial
2457 + " doesn't match expected " + serialNumber);
2458 }
2459 }
2460
2461 /**
2462 * Set serial number stored in user directory inode.
2463 *
2464 * @throws IOException if serial number was already set
2465 */
2466 private static void setSerialNumber(File file, int serialNumber)
2467 throws IOException {
2468 try {
2469 final byte[] buf = Integer.toString(serialNumber).getBytes(StandardCharsets.UTF_8);
2470 Os.setxattr(file.getAbsolutePath(), XATTR_SERIAL, buf, OsConstants.XATTR_CREATE);
2471 } catch (ErrnoException e) {
2472 throw e.rethrowAsIOException();
2473 }
2474 }
2475
2476 /**
2477 * Return serial number stored in user directory inode.
2478 *
2479 * @return parsed serial number, or -1 if not set
2480 */
2481 private static int getSerialNumber(File file) throws IOException {
2482 try {
2483 final byte[] buf = new byte[256];
2484 final int len = Os.getxattr(file.getAbsolutePath(), XATTR_SERIAL, buf);
2485 final String serial = new String(buf, 0, len);
2486 try {
2487 return Integer.parseInt(serial);
2488 } catch (NumberFormatException e) {
2489 throw new IOException("Bad serial number: " + serial);
2490 }
2491 } catch (ErrnoException e) {
2492 if (e.errno == OsConstants.ENODATA) {
2493 return -1;
2494 } else {
2495 throw e.rethrowAsIOException();
2496 }
2497 }
2498 }
2499
Amith Yamasani920ace02012-09-20 22:15:37 -07002500 @Override
Todd Kennedy60459ab2015-10-30 11:32:16 -07002501 public void onShellCommand(FileDescriptor in, FileDescriptor out,
2502 FileDescriptor err, String[] args, ResultReceiver resultReceiver) {
2503 (new Shell()).exec(this, in, out, err, args, resultReceiver);
2504 }
2505
2506 int onShellCommand(Shell shell, String cmd) {
2507 if (cmd == null) {
2508 return shell.handleDefaultCommands(cmd);
2509 }
2510
2511 final PrintWriter pw = shell.getOutPrintWriter();
2512 try {
2513 switch(cmd) {
2514 case "list":
2515 return runList(pw);
2516 }
2517 } catch (RemoteException e) {
2518 pw.println("Remote exception: " + e);
2519 }
2520 return -1;
2521 }
2522
2523 private int runList(PrintWriter pw) throws RemoteException {
2524 final IActivityManager am = ActivityManagerNative.getDefault();
2525 final List<UserInfo> users = getUsers(false);
2526 if (users == null) {
2527 pw.println("Error: couldn't get users");
2528 return 1;
2529 } else {
2530 pw.println("Users:");
2531 for (int i = 0; i < users.size(); i++) {
Jeff Sharkeye17ac152015-11-06 22:40:29 -08002532 String running = am.isUserRunning(users.get(i).id, 0) ? " running" : "";
Todd Kennedy60459ab2015-10-30 11:32:16 -07002533 pw.println("\t" + users.get(i).toString() + running);
2534 }
2535 return 0;
2536 }
2537 }
2538
2539 @Override
Amith Yamasani920ace02012-09-20 22:15:37 -07002540 protected void dump(FileDescriptor fd, PrintWriter pw, String[] args) {
2541 if (mContext.checkCallingOrSelfPermission(android.Manifest.permission.DUMP)
2542 != PackageManager.PERMISSION_GRANTED) {
2543 pw.println("Permission Denial: can't dump UserManager from from pid="
2544 + Binder.getCallingPid()
2545 + ", uid=" + Binder.getCallingUid()
2546 + " without permission "
2547 + android.Manifest.permission.DUMP);
2548 return;
2549 }
2550
2551 long now = System.currentTimeMillis();
2552 StringBuilder sb = new StringBuilder();
2553 synchronized (mPackagesLock) {
Fyodor Kupolov82402752015-10-28 14:54:51 -07002554 synchronized (mUsersLock) {
2555 pw.println("Users:");
2556 for (int i = 0; i < mUsers.size(); i++) {
2557 UserInfo user = mUsers.valueAt(i);
2558 if (user == null) {
2559 continue;
2560 }
Makoto Onukie7927da2015-11-25 10:05:17 -08002561 final int userId = user.id;
Fyodor Kupolov82402752015-10-28 14:54:51 -07002562 pw.print(" "); pw.print(user);
2563 pw.print(" serialNo="); pw.print(user.serialNumber);
Makoto Onukie7927da2015-11-25 10:05:17 -08002564 if (mRemovingUserIds.get(userId)) {
Fyodor Kupolov82402752015-10-28 14:54:51 -07002565 pw.print(" <removing> ");
2566 }
2567 if (user.partial) {
2568 pw.print(" <partial>");
2569 }
2570 pw.println();
2571 pw.print(" Created: ");
2572 if (user.creationTime == 0) {
2573 pw.println("<unknown>");
2574 } else {
2575 sb.setLength(0);
2576 TimeUtils.formatDuration(now - user.creationTime, sb);
2577 sb.append(" ago");
2578 pw.println(sb);
2579 }
2580 pw.print(" Last logged in: ");
2581 if (user.lastLoggedInTime == 0) {
2582 pw.println("<unknown>");
2583 } else {
2584 sb.setLength(0);
2585 TimeUtils.formatDuration(now - user.lastLoggedInTime, sb);
2586 sb.append(" ago");
2587 pw.println(sb);
2588 }
Makoto Onukie7927da2015-11-25 10:05:17 -08002589 pw.print(" Has profile owner: ");
2590 pw.println(mIsUserManaged.get(userId));
Fyodor Kupolov82402752015-10-28 14:54:51 -07002591 pw.println(" Restrictions:");
2592 synchronized (mRestrictionsLock) {
2593 UserRestrictionsUtils.dumpRestrictions(
2594 pw, " ", mBaseUserRestrictions.get(user.id));
Makoto Onuki1a2cd742015-11-16 13:51:27 -08002595 pw.println(" Device policy local restrictions:");
2596 UserRestrictionsUtils.dumpRestrictions(
2597 pw, " ", mDevicePolicyLocalUserRestrictions.get(user.id));
Fyodor Kupolov82402752015-10-28 14:54:51 -07002598 pw.println(" Effective restrictions:");
2599 UserRestrictionsUtils.dumpRestrictions(
2600 pw, " ", mCachedEffectiveUserRestrictions.get(user.id));
2601 }
Makoto Onuki1a2cd742015-11-16 13:51:27 -08002602 pw.println();
Xiaohui Chenb3b92582015-12-07 11:22:13 -08002603 String accountName = mUserAccounts.get(userId);
2604 if (accountName != null) {
2605 pw.print(" Account name: " + accountName);
2606 pw.println();
2607 }
Amith Yamasani920ace02012-09-20 22:15:37 -07002608 }
Amith Yamasani920ace02012-09-20 22:15:37 -07002609 }
Makoto Onuki1a2cd742015-11-16 13:51:27 -08002610 pw.println(" Device policy global restrictions:");
2611 synchronized (mRestrictionsLock) {
2612 UserRestrictionsUtils
2613 .dumpRestrictions(pw, " ", mDevicePolicyGlobalUserRestrictions);
2614 }
Makoto Onukia4f11972015-10-01 13:19:58 -07002615 pw.println();
Makoto Onuki1a2cd742015-11-16 13:51:27 -08002616 pw.println(" Guest restrictions:");
Fyodor Kupolove80085d2015-11-06 18:21:39 -08002617 synchronized (mGuestRestrictions) {
Makoto Onuki1a2cd742015-11-16 13:51:27 -08002618 UserRestrictionsUtils.dumpRestrictions(pw, " ", mGuestRestrictions);
Fyodor Kupolove80085d2015-11-06 18:21:39 -08002619 }
Makoto Onukie7927da2015-11-25 10:05:17 -08002620 synchronized (mUsersLock) {
2621 pw.println();
2622 pw.println(" Device managed: " + mIsDeviceManaged);
2623 }
Amith Yamasani920ace02012-09-20 22:15:37 -07002624 }
2625 }
Fyodor Kupolov75d0ea82014-12-15 16:21:07 -08002626
2627 final class MainHandler extends Handler {
2628
2629 @Override
2630 public void handleMessage(Message msg) {
2631 switch (msg.what) {
2632 case WRITE_USER_MSG:
2633 removeMessages(WRITE_USER_MSG, msg.obj);
2634 synchronized (mPackagesLock) {
2635 int userId = ((UserInfo) msg.obj).id;
Fyodor Kupolov82402752015-10-28 14:54:51 -07002636 UserInfo userInfo = getUserInfoNoChecks(userId);
Fyodor Kupolov75d0ea82014-12-15 16:21:07 -08002637 if (userInfo != null) {
Fyodor Kupolov82402752015-10-28 14:54:51 -07002638 writeUserLP(userInfo);
Fyodor Kupolov75d0ea82014-12-15 16:21:07 -08002639 }
2640 }
2641 }
2642 }
2643 }
Amith Yamasanibb054c92015-07-09 14:16:27 -07002644
2645 /**
2646 * @param userId
2647 * @return whether the user has been initialized yet
2648 */
2649 boolean isInitialized(int userId) {
2650 return (getUserInfo(userId).flags & UserInfo.FLAG_INITIALIZED) != 0;
2651 }
Makoto Onuki068c54a2015-10-13 14:34:03 -07002652
2653 private class LocalService extends UserManagerInternal {
Makoto Onuki068c54a2015-10-13 14:34:03 -07002654 @Override
Makoto Onuki1a2cd742015-11-16 13:51:27 -08002655 public void setDevicePolicyUserRestrictions(int userId, @NonNull Bundle localRestrictions,
2656 @Nullable Bundle globalRestrictions) {
2657 UserManagerService.this.setDevicePolicyUserRestrictions(userId, localRestrictions,
2658 globalRestrictions);
Makoto Onuki068c54a2015-10-13 14:34:03 -07002659 }
2660
2661 @Override
2662 public Bundle getBaseUserRestrictions(int userId) {
2663 synchronized (mRestrictionsLock) {
2664 return mBaseUserRestrictions.get(userId);
2665 }
2666 }
2667
2668 @Override
2669 public void setBaseUserRestrictionsByDpmsForMigration(
2670 int userId, Bundle baseRestrictions) {
2671 synchronized (mRestrictionsLock) {
2672 mBaseUserRestrictions.put(userId, new Bundle(baseRestrictions));
Fyodor Kupolov82402752015-10-28 14:54:51 -07002673 invalidateEffectiveUserRestrictionsLR(userId);
Makoto Onuki068c54a2015-10-13 14:34:03 -07002674 }
2675
Fyodor Kupolov82402752015-10-28 14:54:51 -07002676 final UserInfo userInfo = getUserInfoNoChecks(userId);
Makoto Onuki068c54a2015-10-13 14:34:03 -07002677 synchronized (mPackagesLock) {
Makoto Onuki068c54a2015-10-13 14:34:03 -07002678 if (userInfo != null) {
Fyodor Kupolov82402752015-10-28 14:54:51 -07002679 writeUserLP(userInfo);
Makoto Onuki068c54a2015-10-13 14:34:03 -07002680 } else {
2681 Slog.w(LOG_TAG, "UserInfo not found for " + userId);
2682 }
2683 }
2684 }
Makoto Onukid45a4a22015-11-02 17:17:38 -08002685
2686 @Override
2687 public boolean getUserRestriction(int userId, String key) {
2688 return getUserRestrictions(userId).getBoolean(key);
2689 }
2690
2691 @Override
2692 public void addUserRestrictionsListener(UserRestrictionsListener listener) {
2693 synchronized (mUserRestrictionsListeners) {
2694 mUserRestrictionsListeners.add(listener);
2695 }
2696 }
2697
2698 @Override
2699 public void removeUserRestrictionsListener(UserRestrictionsListener listener) {
2700 synchronized (mUserRestrictionsListeners) {
2701 mUserRestrictionsListeners.remove(listener);
2702 }
2703 }
Makoto Onukie7927da2015-11-25 10:05:17 -08002704
2705 @Override
2706 public void setDeviceManaged(boolean isManaged) {
2707 synchronized (mUsersLock) {
2708 mIsDeviceManaged = isManaged;
2709 }
2710 }
2711
2712 @Override
2713 public void setUserManaged(int userId, boolean isManaged) {
2714 synchronized (mUsersLock) {
2715 mIsUserManaged.put(userId, isManaged);
2716 }
2717 }
Makoto Onuki068c54a2015-10-13 14:34:03 -07002718 }
Todd Kennedy60459ab2015-10-30 11:32:16 -07002719
2720 private class Shell extends ShellCommand {
2721 @Override
2722 public int onCommand(String cmd) {
2723 return onShellCommand(this, cmd);
2724 }
2725
2726 @Override
2727 public void onHelp() {
2728 final PrintWriter pw = getOutPrintWriter();
2729 pw.println("User manager (user) commands:");
2730 pw.println(" help");
2731 pw.println(" Print this help text.");
2732 pw.println("");
2733 pw.println(" list");
2734 pw.println(" Prints all users on the system.");
2735 }
2736 }
Makoto Onuki1a2cd742015-11-16 13:51:27 -08002737
2738 private static void debug(String message) {
2739 Log.d(LOG_TAG, message +
2740 (DBG_WITH_STACKTRACE ? " called at\n" + Debug.getCallers(10, " ") : ""));
2741 }
Amith Yamasani4b2e9342011-03-31 12:38:53 -07002742}