blob: f5da1032c718d56952bf83ec775491aaf5d04899 [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);
529 intent.addFlags(Intent.FLAG_RECEIVER_REGISTERED_ONLY);
530 intent.putExtras(extras);
531 mContext.sendBroadcastAsUser(intent, parentHandle);
532 }
533 }
534
535 @Override
536 public void setQuietModeEnabled(int userHandle, boolean enableQuietMode) {
537 checkManageUsersPermission("silence profile");
538 boolean changed = false;
539 UserInfo profile, parent;
540 synchronized (mPackagesLock) {
541 synchronized (mUsersLock) {
542 profile = getUserInfoLU(userHandle);
543 parent = getProfileParentLU(userHandle);
544
545 }
546 if (profile == null || !profile.isManagedProfile()) {
547 throw new IllegalArgumentException("User " + userHandle + " is not a profile");
548 }
549 if (profile.isQuietModeEnabled() != enableQuietMode) {
550 profile.flags ^= UserInfo.FLAG_QUIET_MODE;
551 writeUserLP(profile);
552 changed = true;
553 }
554 }
555 if (changed) {
556 Bundle extras = new Bundle();
557 extras.putBoolean(Intent.EXTRA_QUIET_MODE, enableQuietMode);
558 broadcastProfileAvailabilityChanges(profile.getUserHandle(),
559 parent != null ? parent.getUserHandle() : null, extras);
560 }
561 }
562
563 @Override
564 public boolean isQuietModeEnabled(int userHandle) {
565 synchronized (mPackagesLock) {
566 UserInfo info;
567 synchronized (mUsersLock) {
568 info = getUserInfoLU(userHandle);
569 }
570 if (info == null || !info.isManagedProfile()) {
571 throw new IllegalArgumentException("User " + userHandle + " is not a profile");
572 }
573 return info.isQuietModeEnabled();
574 }
575 }
576
Kenny Guya52dc3e2014-02-11 15:33:14 +0000577 @Override
Alexandra Gherghinadf35d572014-04-09 13:54:39 +0100578 public void setUserEnabled(int userId) {
579 checkManageUsersPermission("enable user");
580 synchronized (mPackagesLock) {
Fyodor Kupolov82402752015-10-28 14:54:51 -0700581 UserInfo info;
582 synchronized (mUsersLock) {
583 info = getUserInfoLU(userId);
584 }
Alexandra Gherghinadf35d572014-04-09 13:54:39 +0100585 if (info != null && !info.isEnabled()) {
586 info.flags ^= UserInfo.FLAG_DISABLED;
Fyodor Kupolov82402752015-10-28 14:54:51 -0700587 writeUserLP(info);
Alexandra Gherghinadf35d572014-04-09 13:54:39 +0100588 }
589 }
590 }
591
592 @Override
Amith Yamasani258848d2012-08-10 17:06:33 -0700593 public UserInfo getUserInfo(int userId) {
Amith Yamasani2a003292012-08-14 18:25:45 -0700594 checkManageUsersPermission("query user");
Fyodor Kupolov82402752015-10-28 14:54:51 -0700595 synchronized (mUsersLock) {
596 return getUserInfoLU(userId);
Amith Yamasani13593602012-03-22 16:16:17 -0700597 }
598 }
599
Amith Yamasani71e6c692013-03-24 17:39:28 -0700600 @Override
601 public boolean isRestricted() {
Fyodor Kupolov82402752015-10-28 14:54:51 -0700602 synchronized (mUsersLock) {
603 return getUserInfoLU(UserHandle.getCallingUserId()).isRestricted();
Amith Yamasani71e6c692013-03-24 17:39:28 -0700604 }
605 }
606
Fyodor Kupolov1c363152015-09-02 13:27:21 -0700607 @Override
608 public boolean canHaveRestrictedProfile(int userId) {
609 checkManageUsersPermission("canHaveRestrictedProfile");
Fyodor Kupolov82402752015-10-28 14:54:51 -0700610 synchronized (mUsersLock) {
611 final UserInfo userInfo = getUserInfoLU(userId);
Fyodor Kupolov1c363152015-09-02 13:27:21 -0700612 if (userInfo == null || !userInfo.canHaveProfile()) {
613 return false;
614 }
615 if (!userInfo.isAdmin()) {
616 return false;
617 }
Makoto Onukie7927da2015-11-25 10:05:17 -0800618 // restricted profile can be created if there is no DO set and the admin user has no PO;
619 return !mIsDeviceManaged && !mIsUserManaged.get(userId);
Fyodor Kupolov1c363152015-09-02 13:27:21 -0700620 }
Fyodor Kupolov1c363152015-09-02 13:27:21 -0700621 }
622
Amith Yamasani195263742012-08-21 15:40:12 -0700623 /*
624 * Should be locked on mUsers before calling this.
625 */
Fyodor Kupolov82402752015-10-28 14:54:51 -0700626 private UserInfo getUserInfoLU(int userId) {
Dianne Hackbornd4ac8d72012-09-27 23:20:10 -0700627 UserInfo ui = mUsers.get(userId);
Amith Yamasani16389312012-10-17 21:20:14 -0700628 // If it is partial and not in the process of being removed, return as unknown user.
Jeff Sharkeyffe0cb42012-11-05 17:24:43 -0800629 if (ui != null && ui.partial && !mRemovingUserIds.get(userId)) {
Dianne Hackbornd4ac8d72012-09-27 23:20:10 -0700630 Slog.w(LOG_TAG, "getUserInfo: unknown user #" + userId);
631 return null;
632 }
633 return ui;
Amith Yamasani195263742012-08-21 15:40:12 -0700634 }
635
Fyodor Kupolov82402752015-10-28 14:54:51 -0700636 /**
637 * Obtains {@link #mUsersLock} and return UserInfo from mUsers.
638 * <p>No permissions checking or any addition checks are made</p>
639 */
640 private UserInfo getUserInfoNoChecks(int userId) {
641 synchronized (mUsersLock) {
642 return mUsers.get(userId);
643 }
644 }
645
Amith Yamasani236b2b52015-08-18 14:32:14 -0700646 /** Called by PackageManagerService */
Amith Yamasani13593602012-03-22 16:16:17 -0700647 public boolean exists(int userId) {
Fyodor Kupolov82402752015-10-28 14:54:51 -0700648 return getUserInfoNoChecks(userId) != null;
Amith Yamasani13593602012-03-22 16:16:17 -0700649 }
650
Amith Yamasani258848d2012-08-10 17:06:33 -0700651 @Override
Amith Yamasanib8151ec2012-04-18 18:02:48 -0700652 public void setUserName(int userId, String name) {
Amith Yamasani2a003292012-08-14 18:25:45 -0700653 checkManageUsersPermission("rename users");
Dianne Hackbornd4ac8d72012-09-27 23:20:10 -0700654 boolean changed = false;
Dianne Hackborn4428e172012-08-24 17:43:05 -0700655 synchronized (mPackagesLock) {
Fyodor Kupolov82402752015-10-28 14:54:51 -0700656 UserInfo info = getUserInfoNoChecks(userId);
Dianne Hackbornd4ac8d72012-09-27 23:20:10 -0700657 if (info == null || info.partial) {
658 Slog.w(LOG_TAG, "setUserName: unknown user #" + userId);
659 return;
660 }
Amith Yamasani13593602012-03-22 16:16:17 -0700661 if (name != null && !name.equals(info.name)) {
662 info.name = name;
Fyodor Kupolov82402752015-10-28 14:54:51 -0700663 writeUserLP(info);
Dianne Hackbornd4ac8d72012-09-27 23:20:10 -0700664 changed = true;
Amith Yamasani13593602012-03-22 16:16:17 -0700665 }
666 }
Dianne Hackbornd4ac8d72012-09-27 23:20:10 -0700667 if (changed) {
668 sendUserInfoChangedBroadcast(userId);
669 }
Amith Yamasani4b2e9342011-03-31 12:38:53 -0700670 }
671
Amith Yamasani258848d2012-08-10 17:06:33 -0700672 @Override
Amith Yamasanie928d7d2012-09-17 21:46:51 -0700673 public void setUserIcon(int userId, Bitmap bitmap) {
Amith Yamasani2a003292012-08-14 18:25:45 -0700674 checkManageUsersPermission("update users");
Jason Monk9a944532014-07-08 09:31:21 -0400675 long ident = Binder.clearCallingIdentity();
676 try {
677 synchronized (mPackagesLock) {
Fyodor Kupolov82402752015-10-28 14:54:51 -0700678 UserInfo info = getUserInfoNoChecks(userId);
Jason Monk9a944532014-07-08 09:31:21 -0400679 if (info == null || info.partial) {
680 Slog.w(LOG_TAG, "setUserIcon: unknown user #" + userId);
681 return;
682 }
Fyodor Kupolov82402752015-10-28 14:54:51 -0700683 writeBitmapLP(info, bitmap);
684 writeUserLP(info);
Dianne Hackbornd4ac8d72012-09-27 23:20:10 -0700685 }
Jason Monk9a944532014-07-08 09:31:21 -0400686 sendUserInfoChangedBroadcast(userId);
687 } finally {
688 Binder.restoreCallingIdentity(ident);
Amith Yamasanib8151ec2012-04-18 18:02:48 -0700689 }
Amith Yamasanie928d7d2012-09-17 21:46:51 -0700690 }
691
692 private void sendUserInfoChangedBroadcast(int userId) {
693 Intent changedIntent = new Intent(Intent.ACTION_USER_INFO_CHANGED);
694 changedIntent.putExtra(Intent.EXTRA_USER_HANDLE, userId);
695 changedIntent.addFlags(Intent.FLAG_RECEIVER_REGISTERED_ONLY);
Amith Yamasani6fc1d4e2013-05-08 16:43:58 -0700696 mContext.sendBroadcastAsUser(changedIntent, UserHandle.ALL);
Amith Yamasanib8151ec2012-04-18 18:02:48 -0700697 }
698
Amith Yamasani258848d2012-08-10 17:06:33 -0700699 @Override
Adrian Roos1bdff912015-02-17 15:51:35 +0100700 public ParcelFileDescriptor getUserIcon(int userId) {
701 String iconPath;
Amith Yamasani3b49f072012-09-17 10:21:43 -0700702 synchronized (mPackagesLock) {
Fyodor Kupolov82402752015-10-28 14:54:51 -0700703 UserInfo info = getUserInfoNoChecks(userId);
Dianne Hackbornd4ac8d72012-09-27 23:20:10 -0700704 if (info == null || info.partial) {
705 Slog.w(LOG_TAG, "getUserIcon: unknown user #" + userId);
706 return null;
707 }
Fyodor Kupolov82402752015-10-28 14:54:51 -0700708 int callingGroupId = getUserInfoNoChecks(UserHandle.getCallingUserId()).profileGroupId;
Nicolas Prevot88cc3462014-05-14 14:51:48 +0100709 if (callingGroupId == UserInfo.NO_PROFILE_GROUP_ID
710 || callingGroupId != info.profileGroupId) {
711 checkManageUsersPermission("get the icon of a user who is not related");
712 }
Dianne Hackbornd4ac8d72012-09-27 23:20:10 -0700713 if (info.iconPath == null) {
714 return null;
715 }
Adrian Roos1bdff912015-02-17 15:51:35 +0100716 iconPath = info.iconPath;
Amith Yamasani3b49f072012-09-17 10:21:43 -0700717 }
Adrian Roos1bdff912015-02-17 15:51:35 +0100718
719 try {
720 return ParcelFileDescriptor.open(
721 new File(iconPath), ParcelFileDescriptor.MODE_READ_ONLY);
722 } catch (FileNotFoundException e) {
723 Log.e(LOG_TAG, "Couldn't find icon file", e);
724 }
725 return null;
Amith Yamasani3b49f072012-09-17 10:21:43 -0700726 }
727
Dianne Hackborn5dc5a002012-09-15 19:33:48 -0700728 public void makeInitialized(int userId) {
729 checkManageUsersPermission("makeInitialized");
Fyodor Kupolove80085d2015-11-06 18:21:39 -0800730 boolean scheduleWriteUser = false;
731 UserInfo info;
732 synchronized (mUsersLock) {
733 info = mUsers.get(userId);
Dianne Hackbornd4ac8d72012-09-27 23:20:10 -0700734 if (info == null || info.partial) {
735 Slog.w(LOG_TAG, "makeInitialized: unknown user #" + userId);
Fyodor Kupolove80085d2015-11-06 18:21:39 -0800736 return;
Dianne Hackbornd4ac8d72012-09-27 23:20:10 -0700737 }
Fyodor Kupolove80085d2015-11-06 18:21:39 -0800738 if ((info.flags & UserInfo.FLAG_INITIALIZED) == 0) {
Dianne Hackborn5dc5a002012-09-15 19:33:48 -0700739 info.flags |= UserInfo.FLAG_INITIALIZED;
Fyodor Kupolove80085d2015-11-06 18:21:39 -0800740 scheduleWriteUser = true;
Dianne Hackborn5dc5a002012-09-15 19:33:48 -0700741 }
742 }
Fyodor Kupolove80085d2015-11-06 18:21:39 -0800743 if (scheduleWriteUser) {
744 scheduleWriteUser(info);
745 }
Dianne Hackborn5dc5a002012-09-15 19:33:48 -0700746 }
747
Amith Yamasaniaa6634e2014-10-06 14:20:28 -0700748 /**
749 * If default guest restrictions haven't been initialized yet, add the basic
750 * restrictions.
751 */
752 private void initDefaultGuestRestrictions() {
Fyodor Kupolove80085d2015-11-06 18:21:39 -0800753 synchronized (mGuestRestrictions) {
754 if (mGuestRestrictions.isEmpty()) {
Fyodor Kupolove04462c2015-11-30 15:02:53 -0800755 mGuestRestrictions.putBoolean(UserManager.DISALLOW_INSTALL_UNKNOWN_SOURCES, true);
Fyodor Kupolove80085d2015-11-06 18:21:39 -0800756 mGuestRestrictions.putBoolean(UserManager.DISALLOW_OUTGOING_CALLS, true);
757 mGuestRestrictions.putBoolean(UserManager.DISALLOW_SMS, true);
758 }
Amith Yamasaniaa6634e2014-10-06 14:20:28 -0700759 }
760 }
761
Amith Yamasanie4cf7342012-12-17 11:12:09 -0800762 @Override
Amith Yamasanie4afaa32014-06-30 14:55:07 +0530763 public Bundle getDefaultGuestRestrictions() {
764 checkManageUsersPermission("getDefaultGuestRestrictions");
Fyodor Kupolove80085d2015-11-06 18:21:39 -0800765 synchronized (mGuestRestrictions) {
Amith Yamasanie4afaa32014-06-30 14:55:07 +0530766 return new Bundle(mGuestRestrictions);
767 }
768 }
769
770 @Override
771 public void setDefaultGuestRestrictions(Bundle restrictions) {
772 checkManageUsersPermission("setDefaultGuestRestrictions");
Fyodor Kupolove80085d2015-11-06 18:21:39 -0800773 synchronized (mGuestRestrictions) {
774 mGuestRestrictions.clear();
775 mGuestRestrictions.putAll(restrictions);
776 }
777 synchronized (mPackagesLock) {
778 writeUserListLP();
Amith Yamasanie4afaa32014-06-30 14:55:07 +0530779 }
780 }
781
Makoto Onuki1a2cd742015-11-16 13:51:27 -0800782 /**
783 * See {@link UserManagerInternal#setDevicePolicyUserRestrictions(int, Bundle, Bundle)}
784 */
785 void setDevicePolicyUserRestrictions(int userId, @NonNull Bundle local,
786 @Nullable Bundle global) {
787 Preconditions.checkNotNull(local);
788 boolean globalChanged = false;
789 boolean localChanged;
790 synchronized (mRestrictionsLock) {
791 if (global != null) {
792 // Update global.
793 globalChanged = !UserRestrictionsUtils.areEqual(
794 mDevicePolicyGlobalUserRestrictions, global);
795 if (globalChanged) {
796 mDevicePolicyGlobalUserRestrictions = global;
797 }
798 }
799 {
800 // Update local.
801 final Bundle prev = mDevicePolicyLocalUserRestrictions.get(userId);
802 localChanged = !UserRestrictionsUtils.areEqual(prev, local);
803 if (localChanged) {
804 mDevicePolicyLocalUserRestrictions.put(userId, local);
805 }
806 }
807 }
808 if (DBG) {
809 Log.d(LOG_TAG, "setDevicePolicyUserRestrictions: userId=" + userId
810 + " global=" + global + (globalChanged ? " (changed)" : "")
811 + " local=" + local + (localChanged ? " (changed)" : "")
812 );
813 }
814 // Don't call them within the mRestrictionsLock.
815 synchronized (mPackagesLock) {
816 if (globalChanged) {
817 writeUserListLP();
818 }
819 if (localChanged) {
820 writeUserLP(getUserInfoNoChecks(userId));
821 }
822 }
823
824 synchronized (mRestrictionsLock) {
825 if (globalChanged) {
826 applyUserRestrictionsForAllUsersLR();
827 } else if (localChanged) {
828 applyUserRestrictionsLR(userId);
829 }
830 }
831 }
832
Makoto Onuki068c54a2015-10-13 14:34:03 -0700833 @GuardedBy("mRestrictionsLock")
Fyodor Kupolov82402752015-10-28 14:54:51 -0700834 private Bundle computeEffectiveUserRestrictionsLR(int userId) {
Makoto Onuki1a2cd742015-11-16 13:51:27 -0800835 final Bundle baseRestrictions =
836 UserRestrictionsUtils.nonNull(mBaseUserRestrictions.get(userId));
837 final Bundle global = mDevicePolicyGlobalUserRestrictions;
838 final Bundle local = mDevicePolicyLocalUserRestrictions.get(userId);
Makoto Onuki068c54a2015-10-13 14:34:03 -0700839
Makoto Onuki1a2cd742015-11-16 13:51:27 -0800840 if (UserRestrictionsUtils.isEmpty(global) && UserRestrictionsUtils.isEmpty(local)) {
841 // Common case first.
842 return baseRestrictions;
Makoto Onuki068c54a2015-10-13 14:34:03 -0700843 }
Makoto Onuki1a2cd742015-11-16 13:51:27 -0800844 final Bundle effective = UserRestrictionsUtils.clone(baseRestrictions);
845 UserRestrictionsUtils.merge(effective, global);
846 UserRestrictionsUtils.merge(effective, local);
847
Makoto Onuki068c54a2015-10-13 14:34:03 -0700848 return effective;
849 }
850
851 @GuardedBy("mRestrictionsLock")
Fyodor Kupolov82402752015-10-28 14:54:51 -0700852 private void invalidateEffectiveUserRestrictionsLR(int userId) {
Makoto Onuki068c54a2015-10-13 14:34:03 -0700853 if (DBG) {
854 Log.d(LOG_TAG, "invalidateEffectiveUserRestrictions userId=" + userId);
855 }
856 mCachedEffectiveUserRestrictions.remove(userId);
857 }
858
859 private Bundle getEffectiveUserRestrictions(int userId) {
860 synchronized (mRestrictionsLock) {
861 Bundle restrictions = mCachedEffectiveUserRestrictions.get(userId);
862 if (restrictions == null) {
Fyodor Kupolov82402752015-10-28 14:54:51 -0700863 restrictions = computeEffectiveUserRestrictionsLR(userId);
Makoto Onuki068c54a2015-10-13 14:34:03 -0700864 mCachedEffectiveUserRestrictions.put(userId, restrictions);
865 }
866 return restrictions;
Amith Yamasani8cd28b52014-06-08 17:54:27 -0700867 }
868 }
869
Makoto Onuki068c54a2015-10-13 14:34:03 -0700870 /** @return a specific user restriction that's in effect currently. */
871 @Override
872 public boolean hasUserRestriction(String restrictionKey, int userId) {
873 Bundle restrictions = getEffectiveUserRestrictions(userId);
874 return restrictions != null && restrictions.getBoolean(restrictionKey);
875 }
876
877 /**
878 * @return UserRestrictions that are in effect currently. This always returns a new
879 * {@link Bundle}.
880 */
Amith Yamasani8cd28b52014-06-08 17:54:27 -0700881 @Override
Amith Yamasanie4cf7342012-12-17 11:12:09 -0800882 public Bundle getUserRestrictions(int userId) {
Makoto Onuki1a2cd742015-11-16 13:51:27 -0800883 return UserRestrictionsUtils.clone(getEffectiveUserRestrictions(userId));
Amith Yamasanie4cf7342012-12-17 11:12:09 -0800884 }
885
886 @Override
Zoltan Szatmary-Ban3bbcedd2015-11-26 13:45:51 +0000887 public boolean hasBaseUserRestriction(String restrictionKey, int userId) {
888 checkManageUsersPermission("hasBaseUserRestriction");
889 synchronized (mRestrictionsLock) {
890 Bundle bundle = mBaseUserRestrictions.get(userId);
891 return (bundle != null && bundle.getBoolean(restrictionKey, false));
892 }
893 }
894
895 @Override
Fyodor Kupolovb5013302015-04-17 17:59:14 -0700896 public void setUserRestriction(String key, boolean value, int userId) {
Fyodor Kupolovd4b26042015-07-27 14:30:59 -0700897 checkManageUsersPermission("setUserRestriction");
Makoto Onuki068c54a2015-10-13 14:34:03 -0700898 synchronized (mRestrictionsLock) {
899 // Note we can't modify Bundles stored in mBaseUserRestrictions directly, so create
900 // a copy.
Makoto Onuki1a2cd742015-11-16 13:51:27 -0800901 final Bundle newRestrictions = UserRestrictionsUtils.clone(
902 mBaseUserRestrictions.get(userId));
Makoto Onuki068c54a2015-10-13 14:34:03 -0700903 newRestrictions.putBoolean(key, value);
904
Fyodor Kupolov82402752015-10-28 14:54:51 -0700905 updateUserRestrictionsInternalLR(newRestrictions, userId);
Fyodor Kupolovb5013302015-04-17 17:59:14 -0700906 }
907 }
908
Makoto Onuki068c54a2015-10-13 14:34:03 -0700909 /**
Makoto Onuki1a2cd742015-11-16 13:51:27 -0800910 * Optionally updating user restrictions, calculate the effective user restrictions and also
911 * propagate to other services and system settings.
Makoto Onuki068c54a2015-10-13 14:34:03 -0700912 *
Makoto Onuki1a2cd742015-11-16 13:51:27 -0800913 * @param newRestrictions User restrictions to set.
914 * If null, will not update user restrictions and only does the propagation.
Makoto Onuki068c54a2015-10-13 14:34:03 -0700915 * @param userId target user ID.
916 */
917 @GuardedBy("mRestrictionsLock")
Fyodor Kupolov82402752015-10-28 14:54:51 -0700918 private void updateUserRestrictionsInternalLR(
Makoto Onuki068c54a2015-10-13 14:34:03 -0700919 @Nullable Bundle newRestrictions, int userId) {
Makoto Onuki1a2cd742015-11-16 13:51:27 -0800920
921 final Bundle prevAppliedRestrictions = UserRestrictionsUtils.nonNull(
922 mAppliedUserRestrictions.get(userId));
923
924 // Update base restrictions.
Makoto Onuki068c54a2015-10-13 14:34:03 -0700925 if (newRestrictions != null) {
926 // If newRestrictions == the current one, it's probably a bug.
Makoto Onuki1a2cd742015-11-16 13:51:27 -0800927 final Bundle prevBaseRestrictions = mBaseUserRestrictions.get(userId);
928
929 Preconditions.checkState(prevBaseRestrictions != newRestrictions);
Makoto Onuki068c54a2015-10-13 14:34:03 -0700930 Preconditions.checkState(mCachedEffectiveUserRestrictions.get(userId)
931 != newRestrictions);
Makoto Onuki1a2cd742015-11-16 13:51:27 -0800932
933 if (!UserRestrictionsUtils.areEqual(prevBaseRestrictions, newRestrictions)) {
934 mBaseUserRestrictions.put(userId, newRestrictions);
935 scheduleWriteUser(getUserInfoNoChecks(userId));
936 }
Makoto Onuki068c54a2015-10-13 14:34:03 -0700937 }
938
Fyodor Kupolov82402752015-10-28 14:54:51 -0700939 final Bundle effective = computeEffectiveUserRestrictionsLR(userId);
Makoto Onuki068c54a2015-10-13 14:34:03 -0700940
Makoto Onuki759a7632015-10-28 16:43:10 -0700941 mCachedEffectiveUserRestrictions.put(userId, effective);
942
Makoto Onuki1a2cd742015-11-16 13:51:27 -0800943 // Apply the new restrictions.
Makoto Onuki4f160732015-10-27 17:15:38 -0700944 if (DBG) {
Makoto Onuki1a2cd742015-11-16 13:51:27 -0800945 debug("Applying user restrictions: userId=" + userId
946 + " new=" + effective + " prev=" + prevAppliedRestrictions);
Makoto Onuki4f160732015-10-27 17:15:38 -0700947 }
948
Makoto Onuki1a2cd742015-11-16 13:51:27 -0800949 if (mAppOpsService != null) { // We skip it until system-ready.
950 final long token = Binder.clearCallingIdentity();
951 try {
952 mAppOpsService.setUserRestrictions(effective, userId);
953 } catch (RemoteException e) {
954 Log.w(LOG_TAG, "Unable to notify AppOpsService of UserRestrictions");
955 } finally {
956 Binder.restoreCallingIdentity(token);
957 }
Fyodor Kupolovb5013302015-04-17 17:59:14 -0700958 }
Makoto Onuki068c54a2015-10-13 14:34:03 -0700959
Makoto Onuki1a2cd742015-11-16 13:51:27 -0800960 propagateUserRestrictionsLR(userId, effective, prevAppliedRestrictions);
Makoto Onuki4f160732015-10-27 17:15:38 -0700961
Makoto Onuki1a2cd742015-11-16 13:51:27 -0800962 mAppliedUserRestrictions.put(userId, new Bundle(effective));
Makoto Onuki068c54a2015-10-13 14:34:03 -0700963 }
964
Makoto Onuki1a2cd742015-11-16 13:51:27 -0800965 private void propagateUserRestrictionsLR(final int userId,
Makoto Onukid45a4a22015-11-02 17:17:38 -0800966 Bundle newRestrictions, Bundle prevRestrictions) {
Makoto Onuki1a2cd742015-11-16 13:51:27 -0800967 // Note this method doesn't touch any state, meaning it doesn't require mRestrictionsLock
968 // actually, but we still need some kind of synchronization otherwise we might end up
969 // calling listeners out-of-order, thus "LR".
970
971 if (UserRestrictionsUtils.areEqual(newRestrictions, prevRestrictions)) {
972 return;
973 }
Makoto Onukid45a4a22015-11-02 17:17:38 -0800974
975 final Bundle newRestrictionsFinal = new Bundle(newRestrictions);
976 final Bundle prevRestrictionsFinal = new Bundle(prevRestrictions);
977
978 mHandler.post(new Runnable() {
979 @Override
980 public void run() {
Fyodor Kupolov9cbfc9e2015-10-07 15:52:33 -0700981 UserRestrictionsUtils.applyUserRestrictions(
982 mContext, userId, newRestrictionsFinal, prevRestrictionsFinal);
Makoto Onuki1a2cd742015-11-16 13:51:27 -0800983
Makoto Onukid45a4a22015-11-02 17:17:38 -0800984 final UserRestrictionsListener[] listeners;
985 synchronized (mUserRestrictionsListeners) {
986 listeners = new UserRestrictionsListener[mUserRestrictionsListeners.size()];
987 mUserRestrictionsListeners.toArray(listeners);
988 }
989 for (int i = 0; i < listeners.length; i++) {
990 listeners[i].onUserRestrictionsChanged(userId,
991 newRestrictionsFinal, prevRestrictionsFinal);
992 }
993 }
994 });
995 }
996
Makoto Onuki1a2cd742015-11-16 13:51:27 -0800997 // Package private for the inner class.
998 void applyUserRestrictionsLR(int userId) {
Fyodor Kupolov82402752015-10-28 14:54:51 -0700999 updateUserRestrictionsInternalLR(null, userId);
Makoto Onuki068c54a2015-10-13 14:34:03 -07001000 }
1001
1002 @GuardedBy("mRestrictionsLock")
Makoto Onuki1a2cd742015-11-16 13:51:27 -08001003 // Package private for the inner class.
1004 void applyUserRestrictionsForAllUsersLR() {
1005 if (DBG) {
1006 debug("applyUserRestrictionsForAllUsersLR");
1007 }
Makoto Onuki068c54a2015-10-13 14:34:03 -07001008 // First, invalidate all cached values.
Makoto Onuki4f160732015-10-27 17:15:38 -07001009 mCachedEffectiveUserRestrictions.clear();
1010
Makoto Onuki068c54a2015-10-13 14:34:03 -07001011 // We don't want to call into ActivityManagerNative while taking a lock, so we'll call
1012 // it on a handler.
1013 final Runnable r = new Runnable() {
1014 @Override
1015 public void run() {
1016 // Then get the list of running users.
1017 final int[] runningUsers;
1018 try {
1019 runningUsers = ActivityManagerNative.getDefault().getRunningUserIds();
1020 } catch (RemoteException e) {
1021 Log.w(LOG_TAG, "Unable to access ActivityManagerNative");
1022 return;
1023 }
1024 // Then re-calculate the effective restrictions and apply, only for running users.
1025 // It's okay if a new user has started after the getRunningUserIds() call,
1026 // because we'll do the same thing (re-calculate the restrictions and apply)
1027 // when we start a user.
Makoto Onuki068c54a2015-10-13 14:34:03 -07001028 synchronized (mRestrictionsLock) {
1029 for (int i = 0; i < runningUsers.length; i++) {
Makoto Onuki1a2cd742015-11-16 13:51:27 -08001030 applyUserRestrictionsLR(runningUsers[i]);
Makoto Onuki068c54a2015-10-13 14:34:03 -07001031 }
1032 }
1033 }
1034 };
1035 mHandler.post(r);
Fyodor Kupolovb5013302015-04-17 17:59:14 -07001036 }
1037
Amith Yamasani258848d2012-08-10 17:06:33 -07001038 /**
Amith Yamasanifaea76f2012-09-11 10:59:48 -07001039 * Check if we've hit the limit of how many users can be created.
1040 */
Fyodor Kupolov82402752015-10-28 14:54:51 -07001041 private boolean isUserLimitReached() {
1042 int count;
1043 synchronized (mUsersLock) {
1044 count = getAliveUsersExcludingGuestsCountLU();
1045 }
1046 return count >= UserManager.getMaxSupportedUsers();
Nicolas Prevot12678a92015-05-13 12:15:03 -07001047 }
1048
1049 @Override
Nicolas Prevot07387fe2015-10-30 17:53:30 +00001050 public boolean canAddMoreManagedProfiles(int userId, boolean allowedToRemoveOne) {
Nicolas Prevot12678a92015-05-13 12:15:03 -07001051 checkManageUsersPermission("check if more managed profiles can be added.");
1052 if (ActivityManager.isLowRamDeviceStatic()) {
1053 return false;
1054 }
Fyodor Kupolovb6157992015-06-05 15:32:28 -07001055 if (!mContext.getPackageManager().hasSystemFeature(
1056 PackageManager.FEATURE_MANAGED_USERS)) {
1057 return false;
1058 }
Nicolas Prevotb8186812015-08-06 15:00:03 +01001059 // Limit number of managed profiles that can be created
Nicolas Prevot07387fe2015-10-30 17:53:30 +00001060 final int managedProfilesCount = getProfiles(userId, true).size() - 1;
1061 final int profilesRemovedCount = managedProfilesCount > 0 && allowedToRemoveOne ? 1 : 0;
1062 if (managedProfilesCount - profilesRemovedCount >= MAX_MANAGED_PROFILES) {
Nicolas Prevotb8186812015-08-06 15:00:03 +01001063 return false;
1064 }
Fyodor Kupolov82402752015-10-28 14:54:51 -07001065 synchronized(mUsersLock) {
1066 UserInfo userInfo = getUserInfoLU(userId);
Nicolas Prevotb8186812015-08-06 15:00:03 +01001067 if (!userInfo.canHaveProfile()) {
Nicolas Prevot12678a92015-05-13 12:15:03 -07001068 return false;
1069 }
Nicolas Prevot07387fe2015-10-30 17:53:30 +00001070 int usersCountAfterRemoving = getAliveUsersExcludingGuestsCountLU()
1071 - profilesRemovedCount;
Nicolas Prevot12678a92015-05-13 12:15:03 -07001072 // We allow creating a managed profile in the special case where there is only one user.
Nicolas Prevot07387fe2015-10-30 17:53:30 +00001073 return usersCountAfterRemoving == 1
1074 || usersCountAfterRemoving < UserManager.getMaxSupportedUsers();
Nicolas Prevot12678a92015-05-13 12:15:03 -07001075 }
1076 }
1077
Fyodor Kupolov82402752015-10-28 14:54:51 -07001078 private int getAliveUsersExcludingGuestsCountLU() {
Amith Yamasanif584f012014-05-19 17:57:25 -07001079 int aliveUserCount = 0;
1080 final int totalUserCount = mUsers.size();
1081 // Skip over users being removed
1082 for (int i = 0; i < totalUserCount; i++) {
1083 UserInfo user = mUsers.valueAt(i);
Amith Yamasani95ab7842014-08-11 17:09:26 -07001084 if (!mRemovingUserIds.get(user.id)
Amith Yamasani1df14732014-08-29 21:37:27 -07001085 && !user.isGuest() && !user.partial) {
Amith Yamasanif584f012014-05-19 17:57:25 -07001086 aliveUserCount++;
1087 }
1088 }
Nicolas Prevot12678a92015-05-13 12:15:03 -07001089 return aliveUserCount;
Amith Yamasanifaea76f2012-09-11 10:59:48 -07001090 }
1091
1092 /**
Amith Yamasani195263742012-08-21 15:40:12 -07001093 * Enforces that only the system UID or root's UID or apps that have the
Xiaohui Chenb3b92582015-12-07 11:22:13 -08001094 * {@link android.Manifest.permission#MANAGE_USERS MANAGE_USERS} and
1095 * {@link android.Manifest.permission#INTERACT_ACROSS_USERS_FULL INTERACT_ACROSS_USERS_FULL}
1096 * permissions can make certain calls to the UserManager.
1097 *
1098 * @param message used as message if SecurityException is thrown
1099 * @throws SecurityException if the caller does not have enough privilege.
1100 */
1101 private static final void checkManageUserAndAcrossUsersFullPermission(String message) {
1102 final int uid = Binder.getCallingUid();
1103 if (uid != Process.SYSTEM_UID && uid != 0
1104 && ActivityManager.checkComponentPermission(
1105 Manifest.permission.MANAGE_USERS,
1106 uid, -1, true) != PackageManager.PERMISSION_GRANTED
1107 && ActivityManager.checkComponentPermission(
1108 Manifest.permission.INTERACT_ACROSS_USERS_FULL,
1109 uid, -1, true) != PackageManager.PERMISSION_GRANTED) {
1110 throw new SecurityException(
1111 "You need MANAGE_USERS and INTERACT_ACROSS_USERS_FULL permission to: "
1112 + message);
1113 }
1114 }
1115
1116 /**
1117 * Enforces that only the system UID or root's UID or apps that have the
Dianne Hackborn10ad9822014-03-17 11:28:36 -07001118 * {@link android.Manifest.permission#MANAGE_USERS MANAGE_USERS}
Amith Yamasani195263742012-08-21 15:40:12 -07001119 * permission can make certain calls to the UserManager.
Amith Yamasani258848d2012-08-10 17:06:33 -07001120 *
1121 * @param message used as message if SecurityException is thrown
1122 * @throws SecurityException if the caller is not system or root
1123 */
Amith Yamasanibe465322014-04-24 13:45:17 -07001124 private static final void checkManageUsersPermission(String message) {
Amith Yamasani258848d2012-08-10 17:06:33 -07001125 final int uid = Binder.getCallingUid();
Esteban Talavera5b9f1672015-12-11 15:22:34 +00001126 if (!UserHandle.isSameApp(uid, Process.SYSTEM_UID) && uid != Process.ROOT_UID
Emily Bernier7a2b4d12014-04-23 12:51:35 -04001127 && ActivityManager.checkComponentPermission(
1128 android.Manifest.permission.MANAGE_USERS,
Amith Yamasanibe465322014-04-24 13:45:17 -07001129 uid, -1, true) != PackageManager.PERMISSION_GRANTED) {
1130 throw new SecurityException("You need MANAGE_USERS permission to: " + message);
1131 }
Emily Bernier7a2b4d12014-04-23 12:51:35 -04001132 }
1133
Esteban Talavera5b9f1672015-12-11 15:22:34 +00001134 /**
1135 * Enforces that only the system UID or root's UID (on any user) can make certain calls to the
1136 * UserManager.
1137 *
1138 * @param message used as message if SecurityException is thrown
1139 * @throws SecurityException if the caller is not system or root
1140 */
1141 private static void checkSystemOrRoot(String message) {
1142 final int uid = Binder.getCallingUid();
1143 if (!UserHandle.isSameApp(uid, Process.SYSTEM_UID) && uid != Process.ROOT_UID) {
1144 throw new SecurityException("Only system may: " + message);
1145 }
1146 }
1147
Fyodor Kupolov82402752015-10-28 14:54:51 -07001148 private void writeBitmapLP(UserInfo info, Bitmap bitmap) {
Amith Yamasanib8151ec2012-04-18 18:02:48 -07001149 try {
1150 File dir = new File(mUsersDir, Integer.toString(info.id));
1151 File file = new File(dir, USER_PHOTO_FILENAME);
Adrian Roos1bdff912015-02-17 15:51:35 +01001152 File tmp = new File(dir, USER_PHOTO_FILENAME_TMP);
Amith Yamasanib8151ec2012-04-18 18:02:48 -07001153 if (!dir.exists()) {
1154 dir.mkdir();
1155 FileUtils.setPermissions(
1156 dir.getPath(),
1157 FileUtils.S_IRWXU|FileUtils.S_IRWXG|FileUtils.S_IXOTH,
1158 -1, -1);
1159 }
Amith Yamasanie928d7d2012-09-17 21:46:51 -07001160 FileOutputStream os;
Adrian Roos1bdff912015-02-17 15:51:35 +01001161 if (bitmap.compress(Bitmap.CompressFormat.PNG, 100, os = new FileOutputStream(tmp))
1162 && tmp.renameTo(file)) {
Amith Yamasani3b49f072012-09-17 10:21:43 -07001163 info.iconPath = file.getAbsolutePath();
1164 }
Amith Yamasanie928d7d2012-09-17 21:46:51 -07001165 try {
1166 os.close();
1167 } catch (IOException ioe) {
1168 // What the ... !
1169 }
Adrian Roos1bdff912015-02-17 15:51:35 +01001170 tmp.delete();
Amith Yamasanib8151ec2012-04-18 18:02:48 -07001171 } catch (FileNotFoundException e) {
Amith Yamasani2a003292012-08-14 18:25:45 -07001172 Slog.w(LOG_TAG, "Error setting photo for user ", e);
Amith Yamasanib8151ec2012-04-18 18:02:48 -07001173 }
Amith Yamasanib8151ec2012-04-18 18:02:48 -07001174 }
1175
Amith Yamasani0b285492011-04-14 17:35:23 -07001176 /**
1177 * Returns an array of user ids. This array is cached here for quick access, so do not modify or
1178 * cache it elsewhere.
1179 * @return the array of user ids.
1180 */
Dianne Hackborn1676c852012-09-10 14:52:30 -07001181 public int[] getUserIds() {
Fyodor Kupolov82402752015-10-28 14:54:51 -07001182 synchronized (mUsersLock) {
Dianne Hackborn7767eac2012-08-23 18:25:40 -07001183 return mUserIds;
1184 }
Amith Yamasani0b285492011-04-14 17:35:23 -07001185 }
1186
Fyodor Kupolove80085d2015-11-06 18:21:39 -08001187 private void readUserListLP() {
Amith Yamasani4b2e9342011-03-31 12:38:53 -07001188 if (!mUserListFile.exists()) {
Fyodor Kupolove80085d2015-11-06 18:21:39 -08001189 fallbackToSingleUserLP();
Amith Yamasani4b2e9342011-03-31 12:38:53 -07001190 return;
1191 }
1192 FileInputStream fis = null;
Amith Yamasani2a003292012-08-14 18:25:45 -07001193 AtomicFile userListFile = new AtomicFile(mUserListFile);
Amith Yamasani4b2e9342011-03-31 12:38:53 -07001194 try {
Amith Yamasani2a003292012-08-14 18:25:45 -07001195 fis = userListFile.openRead();
Amith Yamasani4b2e9342011-03-31 12:38:53 -07001196 XmlPullParser parser = Xml.newPullParser();
Wojciech Staszkiewicz9e9e2e72015-05-08 14:58:46 +01001197 parser.setInput(fis, StandardCharsets.UTF_8.name());
Amith Yamasani4b2e9342011-03-31 12:38:53 -07001198 int type;
1199 while ((type = parser.next()) != XmlPullParser.START_TAG
1200 && type != XmlPullParser.END_DOCUMENT) {
1201 ;
1202 }
1203
1204 if (type != XmlPullParser.START_TAG) {
Amith Yamasani0b285492011-04-14 17:35:23 -07001205 Slog.e(LOG_TAG, "Unable to read user list");
Fyodor Kupolove80085d2015-11-06 18:21:39 -08001206 fallbackToSingleUserLP();
Amith Yamasani4b2e9342011-03-31 12:38:53 -07001207 return;
1208 }
1209
Amith Yamasani2a003292012-08-14 18:25:45 -07001210 mNextSerialNumber = -1;
1211 if (parser.getName().equals(TAG_USERS)) {
1212 String lastSerialNumber = parser.getAttributeValue(null, ATTR_NEXT_SERIAL_NO);
1213 if (lastSerialNumber != null) {
1214 mNextSerialNumber = Integer.parseInt(lastSerialNumber);
1215 }
Amith Yamasani6f34b412012-10-22 18:19:27 -07001216 String versionNumber = parser.getAttributeValue(null, ATTR_USER_VERSION);
1217 if (versionNumber != null) {
1218 mUserVersion = Integer.parseInt(versionNumber);
1219 }
Amith Yamasani2a003292012-08-14 18:25:45 -07001220 }
1221
Makoto Onuki1a2cd742015-11-16 13:51:27 -08001222 final Bundle newDevicePolicyGlobalUserRestrictions = new Bundle();
1223
Amith Yamasani4b2e9342011-03-31 12:38:53 -07001224 while ((type = parser.next()) != XmlPullParser.END_DOCUMENT) {
Amith Yamasanie4afaa32014-06-30 14:55:07 +05301225 if (type == XmlPullParser.START_TAG) {
1226 final String name = parser.getName();
1227 if (name.equals(TAG_USER)) {
1228 String id = parser.getAttributeValue(null, ATTR_ID);
Xiaohui Chenb3b92582015-12-07 11:22:13 -08001229 Pair<UserInfo, String> userPair = readUserLP(Integer.parseInt(id));
Amith Yamasani6f34b412012-10-22 18:19:27 -07001230
Xiaohui Chenb3b92582015-12-07 11:22:13 -08001231 if (userPair != null) {
1232 UserInfo user = userPair.first;
1233 String account = userPair.second;
Fyodor Kupolov82402752015-10-28 14:54:51 -07001234 synchronized (mUsersLock) {
1235 mUsers.put(user.id, user);
Xiaohui Chenb3b92582015-12-07 11:22:13 -08001236 mUserAccounts.put(user.id, account);
Fyodor Kupolov82402752015-10-28 14:54:51 -07001237 if (mNextSerialNumber < 0 || mNextSerialNumber <= user.id) {
1238 mNextSerialNumber = user.id + 1;
1239 }
Amith Yamasanie4afaa32014-06-30 14:55:07 +05301240 }
Amith Yamasani2a003292012-08-14 18:25:45 -07001241 }
Amith Yamasanie4afaa32014-06-30 14:55:07 +05301242 } else if (name.equals(TAG_GUEST_RESTRICTIONS)) {
Amith Yamasanida0b1682014-11-21 12:58:17 -08001243 while ((type = parser.next()) != XmlPullParser.END_DOCUMENT
1244 && type != XmlPullParser.END_TAG) {
1245 if (type == XmlPullParser.START_TAG) {
1246 if (parser.getName().equals(TAG_RESTRICTIONS)) {
Fyodor Kupolove80085d2015-11-06 18:21:39 -08001247 synchronized (mGuestRestrictions) {
1248 UserRestrictionsUtils
1249 .readRestrictions(parser, mGuestRestrictions);
1250 }
Makoto Onuki1a2cd742015-11-16 13:51:27 -08001251 } else if (parser.getName().equals(TAG_DEVICE_POLICY_RESTRICTIONS)
1252 ) {
1253 UserRestrictionsUtils.readRestrictions(parser,
1254 newDevicePolicyGlobalUserRestrictions);
Amith Yamasanida0b1682014-11-21 12:58:17 -08001255 }
1256 break;
1257 }
1258 }
Amith Yamasani258848d2012-08-10 17:06:33 -07001259 }
Amith Yamasani4b2e9342011-03-31 12:38:53 -07001260 }
1261 }
Makoto Onuki1a2cd742015-11-16 13:51:27 -08001262 synchronized (mRestrictionsLock) {
1263 mDevicePolicyGlobalUserRestrictions = newDevicePolicyGlobalUserRestrictions;
1264 }
Fyodor Kupolov82402752015-10-28 14:54:51 -07001265 updateUserIds();
Fyodor Kupolove80085d2015-11-06 18:21:39 -08001266 upgradeIfNecessaryLP();
1267 } catch (IOException | XmlPullParserException e) {
1268 fallbackToSingleUserLP();
Dianne Hackbornbfd89b32011-12-15 18:22:54 -08001269 } finally {
Fyodor Kupolove80085d2015-11-06 18:21:39 -08001270 IoUtils.closeQuietly(fis);
Amith Yamasani4b2e9342011-03-31 12:38:53 -07001271 }
1272 }
1273
Amith Yamasani6f34b412012-10-22 18:19:27 -07001274 /**
Amith Yamasanibc9625052012-11-15 14:39:18 -08001275 * Upgrade steps between versions, either for fixing bugs or changing the data format.
Amith Yamasani6f34b412012-10-22 18:19:27 -07001276 */
Fyodor Kupolove80085d2015-11-06 18:21:39 -08001277 private void upgradeIfNecessaryLP() {
Makoto Onuki1a2cd742015-11-16 13:51:27 -08001278 final int originalVersion = mUserVersion;
Amith Yamasani6f34b412012-10-22 18:19:27 -07001279 int userVersion = mUserVersion;
1280 if (userVersion < 1) {
1281 // Assign a proper name for the owner, if not initialized correctly before
Fyodor Kupolov82402752015-10-28 14:54:51 -07001282 UserInfo user = getUserInfoNoChecks(UserHandle.USER_SYSTEM);
Amith Yamasani6f34b412012-10-22 18:19:27 -07001283 if ("Primary".equals(user.name)) {
1284 user.name = mContext.getResources().getString(com.android.internal.R.string.owner_name);
Makoto Onuki9e935a32015-11-06 14:24:24 -08001285 scheduleWriteUser(user);
Amith Yamasani6f34b412012-10-22 18:19:27 -07001286 }
1287 userVersion = 1;
1288 }
1289
Amith Yamasanibc9625052012-11-15 14:39:18 -08001290 if (userVersion < 2) {
1291 // Owner should be marked as initialized
Fyodor Kupolov82402752015-10-28 14:54:51 -07001292 UserInfo user = getUserInfoNoChecks(UserHandle.USER_SYSTEM);
Amith Yamasanibc9625052012-11-15 14:39:18 -08001293 if ((user.flags & UserInfo.FLAG_INITIALIZED) == 0) {
1294 user.flags |= UserInfo.FLAG_INITIALIZED;
Makoto Onuki9e935a32015-11-06 14:24:24 -08001295 scheduleWriteUser(user);
Amith Yamasanibc9625052012-11-15 14:39:18 -08001296 }
1297 userVersion = 2;
1298 }
1299
Amith Yamasani350962c2013-08-06 11:18:53 -07001300
Amith Yamasani5e486f52013-08-07 11:06:44 -07001301 if (userVersion < 4) {
Amith Yamasani5e486f52013-08-07 11:06:44 -07001302 userVersion = 4;
1303 }
1304
Amith Yamasaniaa6634e2014-10-06 14:20:28 -07001305 if (userVersion < 5) {
1306 initDefaultGuestRestrictions();
1307 userVersion = 5;
1308 }
1309
Fyodor Kupolov1c363152015-09-02 13:27:21 -07001310 if (userVersion < 6) {
1311 final boolean splitSystemUser = UserManager.isSplitSystemUser();
Fyodor Kupolov82402752015-10-28 14:54:51 -07001312 synchronized (mUsersLock) {
1313 for (int i = 0; i < mUsers.size(); i++) {
1314 UserInfo user = mUsers.valueAt(i);
1315 // In non-split mode, only user 0 can have restricted profiles
1316 if (!splitSystemUser && user.isRestricted()
1317 && (user.restrictedProfileParentId == UserInfo.NO_PROFILE_GROUP_ID)) {
1318 user.restrictedProfileParentId = UserHandle.USER_SYSTEM;
Makoto Onuki9e935a32015-11-06 14:24:24 -08001319 scheduleWriteUser(user);
Fyodor Kupolov82402752015-10-28 14:54:51 -07001320 }
Fyodor Kupolov1c363152015-09-02 13:27:21 -07001321 }
1322 }
1323 userVersion = 6;
1324 }
1325
Amith Yamasani6f34b412012-10-22 18:19:27 -07001326 if (userVersion < USER_VERSION) {
1327 Slog.w(LOG_TAG, "User version " + mUserVersion + " didn't upgrade as expected to "
1328 + USER_VERSION);
1329 } else {
1330 mUserVersion = userVersion;
Makoto Onuki1a2cd742015-11-16 13:51:27 -08001331
1332 if (originalVersion < mUserVersion) {
1333 writeUserListLP();
1334 }
Amith Yamasani6f34b412012-10-22 18:19:27 -07001335 }
1336 }
1337
Fyodor Kupolove80085d2015-11-06 18:21:39 -08001338 private void fallbackToSingleUserLP() {
Xiaohui Chenb31e14a2015-07-13 16:04:55 -07001339 int flags = UserInfo.FLAG_INITIALIZED;
1340 // In split system user mode, the admin and primary flags are assigned to the first human
1341 // user.
1342 if (!UserManager.isSplitSystemUser()) {
1343 flags |= UserInfo.FLAG_ADMIN | UserInfo.FLAG_PRIMARY;
1344 }
Xiaohui Chen70f6c382015-04-28 14:21:43 -07001345 // Create the system user
Xiaohui Chen70f6c382015-04-28 14:21:43 -07001346 UserInfo system = new UserInfo(UserHandle.USER_SYSTEM,
Amith Yamasani6f34b412012-10-22 18:19:27 -07001347 mContext.getResources().getString(com.android.internal.R.string.owner_name), null,
Xiaohui Chenb31e14a2015-07-13 16:04:55 -07001348 flags);
Fyodor Kupolov82402752015-10-28 14:54:51 -07001349 synchronized (mUsersLock) {
1350 mUsers.put(system.id, system);
1351 }
Amith Yamasani634cf312012-10-04 17:34:21 -07001352 mNextSerialNumber = MIN_USER_ID;
Geoffrey Borggaard15b8b2c2013-08-28 22:11:10 -04001353 mUserVersion = USER_VERSION;
Amith Yamasani67df64b2012-12-14 12:09:36 -08001354
Geoffrey Borggaarde45e45e32013-01-24 10:03:20 -05001355 Bundle restrictions = new Bundle();
Makoto Onuki068c54a2015-10-13 14:34:03 -07001356 synchronized (mRestrictionsLock) {
1357 mBaseUserRestrictions.append(UserHandle.USER_SYSTEM, restrictions);
1358 }
Amith Yamasani67df64b2012-12-14 12:09:36 -08001359
Fyodor Kupolov82402752015-10-28 14:54:51 -07001360 updateUserIds();
Amith Yamasaniaa6634e2014-10-06 14:20:28 -07001361 initDefaultGuestRestrictions();
Amith Yamasani4b2e9342011-03-31 12:38:53 -07001362
Fyodor Kupolove80085d2015-11-06 18:21:39 -08001363 writeUserListLP();
Fyodor Kupolov82402752015-10-28 14:54:51 -07001364 writeUserLP(system);
Amith Yamasani4b2e9342011-03-31 12:38:53 -07001365 }
1366
Makoto Onuki9e935a32015-11-06 14:24:24 -08001367 private void scheduleWriteUser(UserInfo userInfo) {
Makoto Onuki1a2cd742015-11-16 13:51:27 -08001368 if (DBG) {
1369 debug("scheduleWriteUser");
1370 }
Makoto Onuki9e935a32015-11-06 14:24:24 -08001371 // No need to wrap it within a lock -- worst case, we'll just post the same message
1372 // twice.
Fyodor Kupolov75d0ea82014-12-15 16:21:07 -08001373 if (!mHandler.hasMessages(WRITE_USER_MSG, userInfo)) {
1374 Message msg = mHandler.obtainMessage(WRITE_USER_MSG, userInfo);
1375 mHandler.sendMessageDelayed(msg, WRITE_USER_DELAY);
1376 }
1377 }
1378
Amith Yamasani4b2e9342011-03-31 12:38:53 -07001379 /*
1380 * Writes the user file in this format:
1381 *
1382 * <user flags="20039023" id="0">
1383 * <name>Primary</name>
1384 * </user>
1385 */
Fyodor Kupolov82402752015-10-28 14:54:51 -07001386 private void writeUserLP(UserInfo userInfo) {
Makoto Onuki1a2cd742015-11-16 13:51:27 -08001387 if (DBG) {
1388 debug("writeUserLP " + userInfo);
1389 }
Amith Yamasani742a6712011-05-04 14:49:28 -07001390 FileOutputStream fos = null;
Amith Yamasanifc95e702013-09-26 13:20:17 -07001391 AtomicFile userFile = new AtomicFile(new File(mUsersDir, userInfo.id + XML_SUFFIX));
Amith Yamasani4b2e9342011-03-31 12:38:53 -07001392 try {
Amith Yamasani2a003292012-08-14 18:25:45 -07001393 fos = userFile.startWrite();
Amith Yamasani4b2e9342011-03-31 12:38:53 -07001394 final BufferedOutputStream bos = new BufferedOutputStream(fos);
1395
1396 // XmlSerializer serializer = XmlUtils.serializerInstance();
1397 final XmlSerializer serializer = new FastXmlSerializer();
Wojciech Staszkiewicz9e9e2e72015-05-08 14:58:46 +01001398 serializer.setOutput(bos, StandardCharsets.UTF_8.name());
Amith Yamasani4b2e9342011-03-31 12:38:53 -07001399 serializer.startDocument(null, true);
1400 serializer.setFeature("http://xmlpull.org/v1/doc/features.html#indent-output", true);
1401
1402 serializer.startTag(null, TAG_USER);
1403 serializer.attribute(null, ATTR_ID, Integer.toString(userInfo.id));
Amith Yamasani2a003292012-08-14 18:25:45 -07001404 serializer.attribute(null, ATTR_SERIAL_NO, Integer.toString(userInfo.serialNumber));
Amith Yamasani4b2e9342011-03-31 12:38:53 -07001405 serializer.attribute(null, ATTR_FLAGS, Integer.toString(userInfo.flags));
Amith Yamasani920ace02012-09-20 22:15:37 -07001406 serializer.attribute(null, ATTR_CREATION_TIME, Long.toString(userInfo.creationTime));
1407 serializer.attribute(null, ATTR_LAST_LOGGED_IN_TIME,
1408 Long.toString(userInfo.lastLoggedInTime));
Amith Yamasanib8151ec2012-04-18 18:02:48 -07001409 if (userInfo.iconPath != null) {
1410 serializer.attribute(null, ATTR_ICON_PATH, userInfo.iconPath);
1411 }
Dianne Hackbornd4ac8d72012-09-27 23:20:10 -07001412 if (userInfo.partial) {
1413 serializer.attribute(null, ATTR_PARTIAL, "true");
1414 }
Adam Lesinskieddeb492014-09-08 17:50:03 -07001415 if (userInfo.guestToRemove) {
1416 serializer.attribute(null, ATTR_GUEST_TO_REMOVE, "true");
1417 }
Kenny Guy2a764942014-04-02 13:29:20 +01001418 if (userInfo.profileGroupId != UserInfo.NO_PROFILE_GROUP_ID) {
1419 serializer.attribute(null, ATTR_PROFILE_GROUP_ID,
1420 Integer.toString(userInfo.profileGroupId));
Kenny Guya52dc3e2014-02-11 15:33:14 +00001421 }
Fyodor Kupolov06a484a2015-08-21 16:33:20 -07001422 if (userInfo.restrictedProfileParentId != UserInfo.NO_PROFILE_GROUP_ID) {
1423 serializer.attribute(null, ATTR_RESTRICTED_PROFILE_PARENT_ID,
1424 Integer.toString(userInfo.restrictedProfileParentId));
1425 }
Amith Yamasani4b2e9342011-03-31 12:38:53 -07001426 serializer.startTag(null, TAG_NAME);
1427 serializer.text(userInfo.name);
1428 serializer.endTag(null, TAG_NAME);
Makoto Onuki068c54a2015-10-13 14:34:03 -07001429 synchronized (mRestrictionsLock) {
Makoto Onuki1a2cd742015-11-16 13:51:27 -08001430 UserRestrictionsUtils.writeRestrictions(serializer,
1431 mBaseUserRestrictions.get(userInfo.id), TAG_RESTRICTIONS);
1432 UserRestrictionsUtils.writeRestrictions(serializer,
1433 mDevicePolicyLocalUserRestrictions.get(userInfo.id),
1434 TAG_DEVICE_POLICY_RESTRICTIONS);
Amith Yamasanie4cf7342012-12-17 11:12:09 -08001435 }
Xiaohui Chenb3b92582015-12-07 11:22:13 -08001436 // Update the account field if it is set.
1437 String account;
1438 synchronized (mUsersLock) {
1439 account = mUserAccounts.get(userInfo.id);
1440 }
1441 if (account != null) {
1442 serializer.startTag(null, TAG_ACCOUNT);
1443 serializer.text(account);
1444 serializer.endTag(null, TAG_ACCOUNT);
1445 }
1446
Amith Yamasani4b2e9342011-03-31 12:38:53 -07001447 serializer.endTag(null, TAG_USER);
1448
1449 serializer.endDocument();
Amith Yamasani2a003292012-08-14 18:25:45 -07001450 userFile.finishWrite(fos);
1451 } catch (Exception ioe) {
Amith Yamasani0b285492011-04-14 17:35:23 -07001452 Slog.e(LOG_TAG, "Error writing user info " + userInfo.id + "\n" + ioe);
Amith Yamasani2a003292012-08-14 18:25:45 -07001453 userFile.failWrite(fos);
Amith Yamasani4b2e9342011-03-31 12:38:53 -07001454 }
1455 }
1456
1457 /*
1458 * Writes the user list file in this format:
1459 *
Amith Yamasani2a003292012-08-14 18:25:45 -07001460 * <users nextSerialNumber="3">
Amith Yamasani4b2e9342011-03-31 12:38:53 -07001461 * <user id="0"></user>
1462 * <user id="2"></user>
1463 * </users>
1464 */
Fyodor Kupolove80085d2015-11-06 18:21:39 -08001465 private void writeUserListLP() {
Makoto Onuki1a2cd742015-11-16 13:51:27 -08001466 if (DBG) {
1467 debug("writeUserList");
1468 }
Amith Yamasani742a6712011-05-04 14:49:28 -07001469 FileOutputStream fos = null;
Amith Yamasani2a003292012-08-14 18:25:45 -07001470 AtomicFile userListFile = new AtomicFile(mUserListFile);
Amith Yamasani4b2e9342011-03-31 12:38:53 -07001471 try {
Amith Yamasani2a003292012-08-14 18:25:45 -07001472 fos = userListFile.startWrite();
Amith Yamasani4b2e9342011-03-31 12:38:53 -07001473 final BufferedOutputStream bos = new BufferedOutputStream(fos);
1474
1475 // XmlSerializer serializer = XmlUtils.serializerInstance();
1476 final XmlSerializer serializer = new FastXmlSerializer();
Wojciech Staszkiewicz9e9e2e72015-05-08 14:58:46 +01001477 serializer.setOutput(bos, StandardCharsets.UTF_8.name());
Amith Yamasani4b2e9342011-03-31 12:38:53 -07001478 serializer.startDocument(null, true);
1479 serializer.setFeature("http://xmlpull.org/v1/doc/features.html#indent-output", true);
1480
1481 serializer.startTag(null, TAG_USERS);
Amith Yamasani2a003292012-08-14 18:25:45 -07001482 serializer.attribute(null, ATTR_NEXT_SERIAL_NO, Integer.toString(mNextSerialNumber));
Amith Yamasani6f34b412012-10-22 18:19:27 -07001483 serializer.attribute(null, ATTR_USER_VERSION, Integer.toString(mUserVersion));
Amith Yamasani4b2e9342011-03-31 12:38:53 -07001484
Adam Lesinskieddeb492014-09-08 17:50:03 -07001485 serializer.startTag(null, TAG_GUEST_RESTRICTIONS);
Fyodor Kupolove80085d2015-11-06 18:21:39 -08001486 synchronized (mGuestRestrictions) {
1487 UserRestrictionsUtils
1488 .writeRestrictions(serializer, mGuestRestrictions, TAG_RESTRICTIONS);
1489 }
Amith Yamasanie4afaa32014-06-30 14:55:07 +05301490 serializer.endTag(null, TAG_GUEST_RESTRICTIONS);
Makoto Onuki1a2cd742015-11-16 13:51:27 -08001491 synchronized (mRestrictionsLock) {
1492 UserRestrictionsUtils.writeRestrictions(serializer,
1493 mDevicePolicyGlobalUserRestrictions, TAG_DEVICE_POLICY_RESTRICTIONS);
1494 }
Fyodor Kupolov82402752015-10-28 14:54:51 -07001495 int[] userIdsToWrite;
1496 synchronized (mUsersLock) {
1497 userIdsToWrite = new int[mUsers.size()];
1498 for (int i = 0; i < userIdsToWrite.length; i++) {
1499 UserInfo user = mUsers.valueAt(i);
1500 userIdsToWrite[i] = user.id;
1501 }
1502 }
1503 for (int id : userIdsToWrite) {
Amith Yamasani4b2e9342011-03-31 12:38:53 -07001504 serializer.startTag(null, TAG_USER);
Fyodor Kupolov82402752015-10-28 14:54:51 -07001505 serializer.attribute(null, ATTR_ID, Integer.toString(id));
Amith Yamasani4b2e9342011-03-31 12:38:53 -07001506 serializer.endTag(null, TAG_USER);
Amith Yamasani4b2e9342011-03-31 12:38:53 -07001507 }
1508
1509 serializer.endTag(null, TAG_USERS);
1510
1511 serializer.endDocument();
Amith Yamasani2a003292012-08-14 18:25:45 -07001512 userListFile.finishWrite(fos);
1513 } catch (Exception e) {
1514 userListFile.failWrite(fos);
Amith Yamasani0b285492011-04-14 17:35:23 -07001515 Slog.e(LOG_TAG, "Error writing user list");
Amith Yamasani4b2e9342011-03-31 12:38:53 -07001516 }
1517 }
1518
Xiaohui Chenb3b92582015-12-07 11:22:13 -08001519 private Pair<UserInfo, String> readUserLP(int id) {
Amith Yamasani4b2e9342011-03-31 12:38:53 -07001520 int flags = 0;
Amith Yamasani2a003292012-08-14 18:25:45 -07001521 int serialNumber = id;
Amith Yamasani4b2e9342011-03-31 12:38:53 -07001522 String name = null;
Xiaohui Chenb3b92582015-12-07 11:22:13 -08001523 String account = null;
Amith Yamasanib8151ec2012-04-18 18:02:48 -07001524 String iconPath = null;
Amith Yamasani920ace02012-09-20 22:15:37 -07001525 long creationTime = 0L;
1526 long lastLoggedInTime = 0L;
Kenny Guy2a764942014-04-02 13:29:20 +01001527 int profileGroupId = UserInfo.NO_PROFILE_GROUP_ID;
Fyodor Kupolov06a484a2015-08-21 16:33:20 -07001528 int restrictedProfileParentId = UserInfo.NO_PROFILE_GROUP_ID;
Dianne Hackbornd4ac8d72012-09-27 23:20:10 -07001529 boolean partial = false;
Adam Lesinskieddeb492014-09-08 17:50:03 -07001530 boolean guestToRemove = false;
Makoto Onuki1a2cd742015-11-16 13:51:27 -08001531 Bundle baseRestrictions = new Bundle();
1532 Bundle localRestrictions = new Bundle();
Amith Yamasani4b2e9342011-03-31 12:38:53 -07001533
1534 FileInputStream fis = null;
1535 try {
Amith Yamasani2a003292012-08-14 18:25:45 -07001536 AtomicFile userFile =
Amith Yamasanifc95e702013-09-26 13:20:17 -07001537 new AtomicFile(new File(mUsersDir, Integer.toString(id) + XML_SUFFIX));
Amith Yamasani2a003292012-08-14 18:25:45 -07001538 fis = userFile.openRead();
Amith Yamasani4b2e9342011-03-31 12:38:53 -07001539 XmlPullParser parser = Xml.newPullParser();
Wojciech Staszkiewicz9e9e2e72015-05-08 14:58:46 +01001540 parser.setInput(fis, StandardCharsets.UTF_8.name());
Amith Yamasani4b2e9342011-03-31 12:38:53 -07001541 int type;
1542 while ((type = parser.next()) != XmlPullParser.START_TAG
1543 && type != XmlPullParser.END_DOCUMENT) {
1544 ;
1545 }
1546
1547 if (type != XmlPullParser.START_TAG) {
Amith Yamasani0b285492011-04-14 17:35:23 -07001548 Slog.e(LOG_TAG, "Unable to read user " + id);
Amith Yamasani4b2e9342011-03-31 12:38:53 -07001549 return null;
1550 }
1551
1552 if (type == XmlPullParser.START_TAG && parser.getName().equals(TAG_USER)) {
Amith Yamasani920ace02012-09-20 22:15:37 -07001553 int storedId = readIntAttribute(parser, ATTR_ID, -1);
1554 if (storedId != id) {
Amith Yamasani0b285492011-04-14 17:35:23 -07001555 Slog.e(LOG_TAG, "User id does not match the file name");
Amith Yamasani4b2e9342011-03-31 12:38:53 -07001556 return null;
1557 }
Amith Yamasani920ace02012-09-20 22:15:37 -07001558 serialNumber = readIntAttribute(parser, ATTR_SERIAL_NO, id);
1559 flags = readIntAttribute(parser, ATTR_FLAGS, 0);
Amith Yamasanib8151ec2012-04-18 18:02:48 -07001560 iconPath = parser.getAttributeValue(null, ATTR_ICON_PATH);
Amith Yamasani920ace02012-09-20 22:15:37 -07001561 creationTime = readLongAttribute(parser, ATTR_CREATION_TIME, 0);
1562 lastLoggedInTime = readLongAttribute(parser, ATTR_LAST_LOGGED_IN_TIME, 0);
Kenny Guy2a764942014-04-02 13:29:20 +01001563 profileGroupId = readIntAttribute(parser, ATTR_PROFILE_GROUP_ID,
1564 UserInfo.NO_PROFILE_GROUP_ID);
Fyodor Kupolov06a484a2015-08-21 16:33:20 -07001565 restrictedProfileParentId = readIntAttribute(parser,
1566 ATTR_RESTRICTED_PROFILE_PARENT_ID, UserInfo.NO_PROFILE_GROUP_ID);
Dianne Hackbornd4ac8d72012-09-27 23:20:10 -07001567 String valueString = parser.getAttributeValue(null, ATTR_PARTIAL);
1568 if ("true".equals(valueString)) {
1569 partial = true;
1570 }
Adam Lesinskieddeb492014-09-08 17:50:03 -07001571 valueString = parser.getAttributeValue(null, ATTR_GUEST_TO_REMOVE);
1572 if ("true".equals(valueString)) {
1573 guestToRemove = true;
1574 }
Amith Yamasani4b2e9342011-03-31 12:38:53 -07001575
Amith Yamasanie4cf7342012-12-17 11:12:09 -08001576 int outerDepth = parser.getDepth();
1577 while ((type = parser.next()) != XmlPullParser.END_DOCUMENT
1578 && (type != XmlPullParser.END_TAG || parser.getDepth() > outerDepth)) {
1579 if (type == XmlPullParser.END_TAG || type == XmlPullParser.TEXT) {
1580 continue;
1581 }
1582 String tag = parser.getName();
1583 if (TAG_NAME.equals(tag)) {
1584 type = parser.next();
1585 if (type == XmlPullParser.TEXT) {
1586 name = parser.getText();
1587 }
1588 } else if (TAG_RESTRICTIONS.equals(tag)) {
Makoto Onuki1a2cd742015-11-16 13:51:27 -08001589 UserRestrictionsUtils.readRestrictions(parser, baseRestrictions);
1590 } else if (TAG_DEVICE_POLICY_RESTRICTIONS.equals(tag)) {
1591 UserRestrictionsUtils.readRestrictions(parser, localRestrictions);
Xiaohui Chenb3b92582015-12-07 11:22:13 -08001592 } else if (TAG_ACCOUNT.equals(tag)) {
1593 type = parser.next();
1594 if (type == XmlPullParser.TEXT) {
1595 account = parser.getText();
1596 }
Amith Yamasani4b2e9342011-03-31 12:38:53 -07001597 }
1598 }
1599 }
Amith Yamasani4b2e9342011-03-31 12:38:53 -07001600
Amith Yamasanib8151ec2012-04-18 18:02:48 -07001601 UserInfo userInfo = new UserInfo(id, name, iconPath, flags);
Amith Yamasani2a003292012-08-14 18:25:45 -07001602 userInfo.serialNumber = serialNumber;
Amith Yamasani920ace02012-09-20 22:15:37 -07001603 userInfo.creationTime = creationTime;
1604 userInfo.lastLoggedInTime = lastLoggedInTime;
Dianne Hackbornd4ac8d72012-09-27 23:20:10 -07001605 userInfo.partial = partial;
Adam Lesinskieddeb492014-09-08 17:50:03 -07001606 userInfo.guestToRemove = guestToRemove;
Kenny Guy2a764942014-04-02 13:29:20 +01001607 userInfo.profileGroupId = profileGroupId;
Fyodor Kupolov06a484a2015-08-21 16:33:20 -07001608 userInfo.restrictedProfileParentId = restrictedProfileParentId;
Makoto Onuki068c54a2015-10-13 14:34:03 -07001609 synchronized (mRestrictionsLock) {
Makoto Onuki1a2cd742015-11-16 13:51:27 -08001610 mBaseUserRestrictions.put(id, baseRestrictions);
1611 mDevicePolicyLocalUserRestrictions.put(id, localRestrictions);
Makoto Onuki068c54a2015-10-13 14:34:03 -07001612 }
Xiaohui Chenb3b92582015-12-07 11:22:13 -08001613 return new Pair<>(userInfo, account);
Amith Yamasani4b2e9342011-03-31 12:38:53 -07001614
1615 } catch (IOException ioe) {
1616 } catch (XmlPullParserException pe) {
Dianne Hackbornbfd89b32011-12-15 18:22:54 -08001617 } finally {
1618 if (fis != null) {
1619 try {
1620 fis.close();
1621 } catch (IOException e) {
1622 }
1623 }
Amith Yamasani4b2e9342011-03-31 12:38:53 -07001624 }
1625 return null;
1626 }
1627
Amith Yamasani920ace02012-09-20 22:15:37 -07001628 private int readIntAttribute(XmlPullParser parser, String attr, int defaultValue) {
1629 String valueString = parser.getAttributeValue(null, attr);
1630 if (valueString == null) return defaultValue;
1631 try {
1632 return Integer.parseInt(valueString);
1633 } catch (NumberFormatException nfe) {
1634 return defaultValue;
1635 }
1636 }
1637
1638 private long readLongAttribute(XmlPullParser parser, String attr, long defaultValue) {
1639 String valueString = parser.getAttributeValue(null, attr);
1640 if (valueString == null) return defaultValue;
1641 try {
1642 return Long.parseLong(valueString);
1643 } catch (NumberFormatException nfe) {
1644 return defaultValue;
1645 }
1646 }
1647
Amith Yamasani1a7472e2013-07-02 11:17:30 -07001648 private boolean isPackageInstalled(String pkg, int userId) {
1649 final ApplicationInfo info = mPm.getApplicationInfo(pkg,
1650 PackageManager.GET_UNINSTALLED_PACKAGES,
1651 userId);
1652 if (info == null || (info.flags&ApplicationInfo.FLAG_INSTALLED) == 0) {
1653 return false;
1654 }
1655 return true;
1656 }
1657
Amith Yamasanib82add22013-07-09 11:24:44 -07001658 /**
Kenny Guyd21b2182014-07-17 16:38:55 +01001659 * Removes all the restrictions files (res_<packagename>) for a given user.
Amith Yamasanib82add22013-07-09 11:24:44 -07001660 * Does not do any permissions checking.
1661 */
Kenny Guyd21b2182014-07-17 16:38:55 +01001662 private void cleanAppRestrictions(int userId) {
Amith Yamasanib82add22013-07-09 11:24:44 -07001663 synchronized (mPackagesLock) {
1664 File dir = Environment.getUserSystemDirectory(userId);
1665 String[] files = dir.list();
1666 if (files == null) return;
1667 for (String fileName : files) {
1668 if (fileName.startsWith(RESTRICTIONS_FILE_PREFIX)) {
1669 File resFile = new File(dir, fileName);
1670 if (resFile.exists()) {
Kenny Guyd21b2182014-07-17 16:38:55 +01001671 resFile.delete();
Amith Yamasanib82add22013-07-09 11:24:44 -07001672 }
1673 }
1674 }
1675 }
1676 }
1677
Amith Yamasani1a7472e2013-07-02 11:17:30 -07001678 /**
1679 * Removes the app restrictions file for a specific package and user id, if it exists.
1680 */
1681 private void cleanAppRestrictionsForPackage(String pkg, int userId) {
1682 synchronized (mPackagesLock) {
1683 File dir = Environment.getUserSystemDirectory(userId);
Amith Yamasanifc95e702013-09-26 13:20:17 -07001684 File resFile = new File(dir, packageToRestrictionsFileName(pkg));
Amith Yamasani1a7472e2013-07-02 11:17:30 -07001685 if (resFile.exists()) {
1686 resFile.delete();
1687 }
1688 }
1689 }
1690
Kenny Guya52dc3e2014-02-11 15:33:14 +00001691 @Override
Kenny Guy2a764942014-04-02 13:29:20 +01001692 public UserInfo createProfileForUser(String name, int flags, int userId) {
Kenny Guya52dc3e2014-02-11 15:33:14 +00001693 checkManageUsersPermission("Only the system can create users");
Kenny Guy2a764942014-04-02 13:29:20 +01001694 return createUserInternal(name, flags, userId);
Kenny Guya52dc3e2014-02-11 15:33:14 +00001695 }
1696
Amith Yamasani258848d2012-08-10 17:06:33 -07001697 @Override
Amith Yamasani13593602012-03-22 16:16:17 -07001698 public UserInfo createUser(String name, int flags) {
Amith Yamasani2a003292012-08-14 18:25:45 -07001699 checkManageUsersPermission("Only the system can create users");
Nicolas Prevotc6d033e2014-02-27 13:11:09 +00001700 return createUserInternal(name, flags, UserHandle.USER_NULL);
Kenny Guya52dc3e2014-02-11 15:33:14 +00001701 }
Amith Yamasanifaea76f2012-09-11 10:59:48 -07001702
Jessica Hummelbe81c802014-04-22 15:49:22 +01001703 private UserInfo createUserInternal(String name, int flags, int parentId) {
Fyodor Kupolove80085d2015-11-06 18:21:39 -08001704 if (hasUserRestriction(UserManager.DISALLOW_ADD_USER, UserHandle.getCallingUserId())) {
Julia Reynolds75175022014-06-26 16:35:00 -04001705 Log.w(LOG_TAG, "Cannot add user. DISALLOW_ADD_USER is enabled.");
1706 return null;
1707 }
Nicolas Prevot12678a92015-05-13 12:15:03 -07001708 if (ActivityManager.isLowRamDeviceStatic()) {
1709 return null;
1710 }
Amith Yamasani95ab7842014-08-11 17:09:26 -07001711 final boolean isGuest = (flags & UserInfo.FLAG_GUEST) != 0;
Nicolas Prevot12678a92015-05-13 12:15:03 -07001712 final boolean isManagedProfile = (flags & UserInfo.FLAG_MANAGED_PROFILE) != 0;
Fyodor Kupolov06a484a2015-08-21 16:33:20 -07001713 final boolean isRestricted = (flags & UserInfo.FLAG_RESTRICTED) != 0;
Dianne Hackborn5dc5a002012-09-15 19:33:48 -07001714 final long ident = Binder.clearCallingIdentity();
Fyodor Kupolove80085d2015-11-06 18:21:39 -08001715 UserInfo userInfo;
Amith Yamasanibb054c92015-07-09 14:16:27 -07001716 final int userId;
Dianne Hackborn5dc5a002012-09-15 19:33:48 -07001717 try {
Fyodor Kupolove80085d2015-11-06 18:21:39 -08001718 synchronized (mPackagesLock) {
1719 UserInfo parent = null;
1720 if (parentId != UserHandle.USER_NULL) {
1721 synchronized (mUsersLock) {
1722 parent = getUserInfoLU(parentId);
Nicolas Prevotc6d033e2014-02-27 13:11:09 +00001723 }
Fyodor Kupolove80085d2015-11-06 18:21:39 -08001724 if (parent == null) return null;
1725 }
1726 if (isManagedProfile && !canAddMoreManagedProfiles(parentId, false)) {
1727 Log.e(LOG_TAG, "Cannot add more managed profiles for user " + parentId);
1728 return null;
1729 }
1730 if (!isGuest && !isManagedProfile && isUserLimitReached()) {
1731 // If we're not adding a guest user or a managed profile and the limit has
1732 // been reached, cannot add a user.
1733 return null;
1734 }
1735 // If we're adding a guest and there already exists one, bail.
1736 if (isGuest && findCurrentGuestUser() != null) {
1737 return null;
1738 }
1739 // In legacy mode, restricted profile's parent can only be the owner user
1740 if (isRestricted && !UserManager.isSplitSystemUser()
1741 && (parentId != UserHandle.USER_SYSTEM)) {
1742 Log.w(LOG_TAG, "Cannot add restricted profile - parent user must be owner");
1743 return null;
1744 }
1745 if (isRestricted && UserManager.isSplitSystemUser()) {
1746 if (parent == null) {
1747 Log.w(LOG_TAG, "Cannot add restricted profile - parent user must be "
1748 + "specified");
Nicolas Prevot12678a92015-05-13 12:15:03 -07001749 return null;
1750 }
Fyodor Kupolove80085d2015-11-06 18:21:39 -08001751 if (!parent.canHaveProfile()) {
1752 Log.w(LOG_TAG, "Cannot add restricted profile - profiles cannot be "
1753 + "created for the specified parent user id " + parentId);
Amith Yamasani95ab7842014-08-11 17:09:26 -07001754 return null;
1755 }
Fyodor Kupolove80085d2015-11-06 18:21:39 -08001756 }
1757 // In split system user mode, we assign the first human user the primary flag.
1758 // And if there is no device owner, we also assign the admin flag to primary user.
1759 if (UserManager.isSplitSystemUser()
1760 && !isGuest && !isManagedProfile && getPrimaryUser() == null) {
1761 flags |= UserInfo.FLAG_PRIMARY;
Makoto Onukie7927da2015-11-25 10:05:17 -08001762 synchronized (mUsersLock) {
1763 if (!mIsDeviceManaged) {
1764 flags |= UserInfo.FLAG_ADMIN;
1765 }
Amith Yamasani95ab7842014-08-11 17:09:26 -07001766 }
Fyodor Kupolove80085d2015-11-06 18:21:39 -08001767 }
Lenka Trochtovac4dd0212015-11-18 12:22:06 +01001768
1769 if (parent != null && parent.isEphemeral()) {
1770 flags |= UserInfo.FLAG_EPHEMERAL;
1771 }
Fyodor Kupolove80085d2015-11-06 18:21:39 -08001772 userId = getNextAvailableId();
1773 userInfo = new UserInfo(userId, name, null, flags);
1774 userInfo.serialNumber = mNextSerialNumber++;
1775 long now = System.currentTimeMillis();
1776 userInfo.creationTime = (now > EPOCH_PLUS_30_YEARS) ? now : 0;
1777 userInfo.partial = true;
1778 Environment.getUserSystemDirectory(userInfo.id).mkdirs();
1779 synchronized (mUsersLock) {
Dianne Hackborn5dc5a002012-09-15 19:33:48 -07001780 mUsers.put(userId, userInfo);
Fyodor Kupolove80085d2015-11-06 18:21:39 -08001781 }
1782 writeUserListLP();
1783 if (parent != null) {
1784 if (isManagedProfile) {
1785 if (parent.profileGroupId == UserInfo.NO_PROFILE_GROUP_ID) {
1786 parent.profileGroupId = parent.id;
1787 writeUserLP(parent);
Kenny Guya52dc3e2014-02-11 15:33:14 +00001788 }
Fyodor Kupolove80085d2015-11-06 18:21:39 -08001789 userInfo.profileGroupId = parent.profileGroupId;
1790 } else if (isRestricted) {
1791 if (parent.restrictedProfileParentId == UserInfo.NO_PROFILE_GROUP_ID) {
1792 parent.restrictedProfileParentId = parent.id;
1793 writeUserLP(parent);
Jeff Sharkey6dce4962015-07-03 18:08:41 -07001794 }
Fyodor Kupolove80085d2015-11-06 18:21:39 -08001795 userInfo.restrictedProfileParentId = parent.restrictedProfileParentId;
Makoto Onuki068c54a2015-10-13 14:34:03 -07001796 }
Dianne Hackborn5dc5a002012-09-15 19:33:48 -07001797 }
Dianne Hackborn4428e172012-08-24 17:43:05 -07001798 }
Fyodor Kupolove80085d2015-11-06 18:21:39 -08001799 final StorageManager storage = mContext.getSystemService(StorageManager.class);
Lenka Trochtovac4dd0212015-11-18 12:22:06 +01001800 storage.createUserKey(userId, userInfo.serialNumber, userInfo.isEphemeral());
Fyodor Kupolove80085d2015-11-06 18:21:39 -08001801 for (VolumeInfo vol : storage.getWritablePrivateVolumes()) {
1802 final String volumeUuid = vol.getFsUuid();
1803 try {
1804 final File userDir = Environment.getDataUserDirectory(volumeUuid, userId);
Lenka Trochtovac4dd0212015-11-18 12:22:06 +01001805 storage.prepareUserStorage(
1806 volumeUuid, userId, userInfo.serialNumber, userInfo.isEphemeral());
Fyodor Kupolove80085d2015-11-06 18:21:39 -08001807 enforceSerialNumber(userDir, userInfo.serialNumber);
1808 } catch (IOException e) {
1809 Log.wtf(LOG_TAG, "Failed to create user directory on " + volumeUuid, e);
1810 }
Dianne Hackborn5dc5a002012-09-15 19:33:48 -07001811 }
Fyodor Kupolove80085d2015-11-06 18:21:39 -08001812 mPm.createNewUser(userId);
1813 userInfo.partial = false;
1814 synchronized (mPackagesLock) {
1815 writeUserLP(userInfo);
1816 }
1817 updateUserIds();
1818 Bundle restrictions = new Bundle();
Fyodor Kupolove04462c2015-11-30 15:02:53 -08001819 if (isGuest) {
1820 synchronized (mGuestRestrictions) {
1821 restrictions.putAll(mGuestRestrictions);
1822 }
1823 }
Fyodor Kupolove80085d2015-11-06 18:21:39 -08001824 synchronized (mRestrictionsLock) {
1825 mBaseUserRestrictions.append(userId, restrictions);
1826 }
1827 mPm.newUserCreated(userId);
1828 Intent addedIntent = new Intent(Intent.ACTION_USER_ADDED);
1829 addedIntent.putExtra(Intent.EXTRA_USER_HANDLE, userId);
1830 mContext.sendBroadcastAsUser(addedIntent, UserHandle.ALL,
1831 android.Manifest.permission.MANAGE_USERS);
Dianne Hackborn5dc5a002012-09-15 19:33:48 -07001832 } finally {
1833 Binder.restoreCallingIdentity(ident);
Amith Yamasani258848d2012-08-10 17:06:33 -07001834 }
Amith Yamasani4b2e9342011-03-31 12:38:53 -07001835 return userInfo;
1836 }
1837
Amith Yamasani0b285492011-04-14 17:35:23 -07001838 /**
Fyodor Kupolov02cb6e72015-09-18 18:20:55 -07001839 * @hide
1840 */
1841 public UserInfo createRestrictedProfile(String name, int parentUserId) {
1842 checkManageUsersPermission("setupRestrictedProfile");
1843 final UserInfo user = createProfileForUser(name, UserInfo.FLAG_RESTRICTED, parentUserId);
1844 if (user == null) {
1845 return null;
1846 }
1847 setUserRestriction(UserManager.DISALLOW_MODIFY_ACCOUNTS, true, user.id);
1848 // Change the setting before applying the DISALLOW_SHARE_LOCATION restriction, otherwise
1849 // the putIntForUser() will fail.
1850 android.provider.Settings.Secure.putIntForUser(mContext.getContentResolver(),
1851 android.provider.Settings.Secure.LOCATION_MODE,
1852 android.provider.Settings.Secure.LOCATION_MODE_OFF, user.id);
1853 setUserRestriction(UserManager.DISALLOW_SHARE_LOCATION, true, user.id);
1854 return user;
1855 }
1856
1857 /**
Adam Lesinskieddeb492014-09-08 17:50:03 -07001858 * Find the current guest user. If the Guest user is partial,
1859 * then do not include it in the results as it is about to die.
Adam Lesinskieddeb492014-09-08 17:50:03 -07001860 */
Fyodor Kupolov82402752015-10-28 14:54:51 -07001861 private UserInfo findCurrentGuestUser() {
1862 synchronized (mUsersLock) {
1863 final int size = mUsers.size();
1864 for (int i = 0; i < size; i++) {
1865 final UserInfo user = mUsers.valueAt(i);
1866 if (user.isGuest() && !user.guestToRemove && !mRemovingUserIds.get(user.id)) {
1867 return user;
1868 }
Adam Lesinskieddeb492014-09-08 17:50:03 -07001869 }
1870 }
1871 return null;
1872 }
1873
1874 /**
Amith Yamasani1df14732014-08-29 21:37:27 -07001875 * Mark this guest user for deletion to allow us to create another guest
1876 * and switch to that user before actually removing this guest.
1877 * @param userHandle the userid of the current guest
1878 * @return whether the user could be marked for deletion
1879 */
1880 public boolean markGuestForDeletion(int userHandle) {
1881 checkManageUsersPermission("Only the system can remove users");
1882 if (getUserRestrictions(UserHandle.getCallingUserId()).getBoolean(
1883 UserManager.DISALLOW_REMOVE_USER, false)) {
1884 Log.w(LOG_TAG, "Cannot remove user. DISALLOW_REMOVE_USER is enabled.");
1885 return false;
1886 }
1887
1888 long ident = Binder.clearCallingIdentity();
1889 try {
1890 final UserInfo user;
1891 synchronized (mPackagesLock) {
Fyodor Kupolov82402752015-10-28 14:54:51 -07001892 synchronized (mUsersLock) {
1893 user = mUsers.get(userHandle);
1894 if (userHandle == 0 || user == null || mRemovingUserIds.get(userHandle)) {
1895 return false;
1896 }
Amith Yamasani1df14732014-08-29 21:37:27 -07001897 }
1898 if (!user.isGuest()) {
1899 return false;
1900 }
Adam Lesinskieddeb492014-09-08 17:50:03 -07001901 // We set this to a guest user that is to be removed. This is a temporary state
1902 // where we are allowed to add new Guest users, even if this one is still not
1903 // removed. This user will still show up in getUserInfo() calls.
1904 // If we don't get around to removing this Guest user, it will be purged on next
1905 // startup.
1906 user.guestToRemove = true;
Amith Yamasani1df14732014-08-29 21:37:27 -07001907 // Mark it as disabled, so that it isn't returned any more when
1908 // profiles are queried.
1909 user.flags |= UserInfo.FLAG_DISABLED;
Fyodor Kupolov82402752015-10-28 14:54:51 -07001910 writeUserLP(user);
Amith Yamasani1df14732014-08-29 21:37:27 -07001911 }
1912 } finally {
1913 Binder.restoreCallingIdentity(ident);
1914 }
1915 return true;
1916 }
1917
1918 /**
Amith Yamasani0b285492011-04-14 17:35:23 -07001919 * Removes a user and all data directories created for that user. This method should be called
1920 * after the user's processes have been terminated.
Dianne Hackborn10ad9822014-03-17 11:28:36 -07001921 * @param userHandle the user's id
Amith Yamasani0b285492011-04-14 17:35:23 -07001922 */
Amith Yamasani258848d2012-08-10 17:06:33 -07001923 public boolean removeUser(int userHandle) {
Amith Yamasani2a003292012-08-14 18:25:45 -07001924 checkManageUsersPermission("Only the system can remove users");
Julia Reynolds4ac5f852014-06-23 17:38:51 -04001925 if (getUserRestrictions(UserHandle.getCallingUserId()).getBoolean(
1926 UserManager.DISALLOW_REMOVE_USER, false)) {
1927 Log.w(LOG_TAG, "Cannot remove user. DISALLOW_REMOVE_USER is enabled.");
1928 return false;
1929 }
1930
Kenny Guyee58b4f2014-05-23 15:19:53 +01001931 long ident = Binder.clearCallingIdentity();
1932 try {
1933 final UserInfo user;
Fyodor Kupolov0df68cd2015-10-01 13:54:22 -07001934 int currentUser = ActivityManager.getCurrentUser();
1935 if (currentUser == userHandle) {
1936 Log.w(LOG_TAG, "Current user cannot be removed");
1937 return false;
1938 }
Kenny Guyee58b4f2014-05-23 15:19:53 +01001939 synchronized (mPackagesLock) {
Fyodor Kupolov82402752015-10-28 14:54:51 -07001940 synchronized (mUsersLock) {
1941 user = mUsers.get(userHandle);
1942 if (userHandle == 0 || user == null || mRemovingUserIds.get(userHandle)) {
1943 return false;
1944 }
Jeff Sharkey6eb09392014-11-14 15:57:59 -08001945
Fyodor Kupolov82402752015-10-28 14:54:51 -07001946 // We remember deleted user IDs to prevent them from being
1947 // reused during the current boot; they can still be reused
1948 // after a reboot.
1949 mRemovingUserIds.put(userHandle, true);
1950 }
Jeff Sharkey6eb09392014-11-14 15:57:59 -08001951
Kenny Guyee58b4f2014-05-23 15:19:53 +01001952 try {
1953 mAppOpsService.removeUser(userHandle);
1954 } catch (RemoteException e) {
1955 Log.w(LOG_TAG, "Unable to notify AppOpsService of removing user", e);
1956 }
1957 // Set this to a partially created user, so that the user will be purged
1958 // on next startup, in case the runtime stops now before stopping and
1959 // removing the user completely.
1960 user.partial = true;
1961 // Mark it as disabled, so that it isn't returned any more when
1962 // profiles are queried.
1963 user.flags |= UserInfo.FLAG_DISABLED;
Fyodor Kupolov82402752015-10-28 14:54:51 -07001964 writeUserLP(user);
Kenny Guyee58b4f2014-05-23 15:19:53 +01001965 }
1966
1967 if (user.profileGroupId != UserInfo.NO_PROFILE_GROUP_ID
1968 && user.isManagedProfile()) {
1969 // Send broadcast to notify system that the user removed was a
1970 // managed user.
1971 sendProfileRemovedBroadcast(user.profileGroupId, user.id);
1972 }
1973
1974 if (DBG) Slog.i(LOG_TAG, "Stopping user " + userHandle);
1975 int res;
1976 try {
Fyodor Kupolov9cbfc9e2015-10-07 15:52:33 -07001977 res = ActivityManagerNative.getDefault().stopUser(userHandle, /* force= */ true,
1978 new IStopUserCallback.Stub() {
Kenny Guyee58b4f2014-05-23 15:19:53 +01001979 @Override
1980 public void userStopped(int userId) {
1981 finishRemoveUser(userId);
1982 }
1983 @Override
1984 public void userStopAborted(int userId) {
1985 }
1986 });
1987 } catch (RemoteException e) {
Dianne Hackborn80a4af22012-08-27 19:18:31 -07001988 return false;
1989 }
Kenny Guyee58b4f2014-05-23 15:19:53 +01001990 return res == ActivityManager.USER_OP_SUCCESS;
1991 } finally {
1992 Binder.restoreCallingIdentity(ident);
Dianne Hackborn80a4af22012-08-27 19:18:31 -07001993 }
Dianne Hackborn80a4af22012-08-27 19:18:31 -07001994 }
1995
Amith Yamasanidb6a14c2012-10-17 21:16:52 -07001996 void finishRemoveUser(final int userHandle) {
Amith Yamasani16389312012-10-17 21:20:14 -07001997 if (DBG) Slog.i(LOG_TAG, "finishRemoveUser " + userHandle);
Amith Yamasanidb6a14c2012-10-17 21:16:52 -07001998 // Let other services shutdown any activity and clean up their state before completely
1999 // wiping the user's system directory and removing from the user list
Dianne Hackborn5dc5a002012-09-15 19:33:48 -07002000 long ident = Binder.clearCallingIdentity();
2001 try {
2002 Intent addedIntent = new Intent(Intent.ACTION_USER_REMOVED);
2003 addedIntent.putExtra(Intent.EXTRA_USER_HANDLE, userHandle);
Amith Yamasanidb6a14c2012-10-17 21:16:52 -07002004 mContext.sendOrderedBroadcastAsUser(addedIntent, UserHandle.ALL,
2005 android.Manifest.permission.MANAGE_USERS,
2006
2007 new BroadcastReceiver() {
2008 @Override
2009 public void onReceive(Context context, Intent intent) {
2010 if (DBG) {
2011 Slog.i(LOG_TAG,
2012 "USER_REMOVED broadcast sent, cleaning up user data "
2013 + userHandle);
2014 }
2015 new Thread() {
2016 public void run() {
Amith Yamasani515d4062015-09-28 11:30:06 -07002017 // Clean up any ActivityManager state
2018 LocalServices.getService(ActivityManagerInternal.class)
2019 .onUserRemoved(userHandle);
Fyodor Kupolove80085d2015-11-06 18:21:39 -08002020 removeUserState(userHandle);
Amith Yamasanidb6a14c2012-10-17 21:16:52 -07002021 }
2022 }.start();
2023 }
2024 },
2025
2026 null, Activity.RESULT_OK, null, null);
Dianne Hackborn5dc5a002012-09-15 19:33:48 -07002027 } finally {
2028 Binder.restoreCallingIdentity(ident);
2029 }
Amith Yamasani2a003292012-08-14 18:25:45 -07002030 }
2031
Fyodor Kupolove80085d2015-11-06 18:21:39 -08002032 private void removeUserState(final int userHandle) {
Jeff Sharkeyf9fc6d62015-11-08 16:46:05 -08002033 mContext.getSystemService(StorageManager.class).destroyUserKey(userHandle);
Dianne Hackbornd4ac8d72012-09-27 23:20:10 -07002034 // Cleanup package manager settings
Fyodor Kupolove80085d2015-11-06 18:21:39 -08002035 mPm.cleanUpUser(this, userHandle);
Dianne Hackbornd4ac8d72012-09-27 23:20:10 -07002036
2037 // Remove this user from the list
Fyodor Kupolov82402752015-10-28 14:54:51 -07002038 synchronized (mUsersLock) {
2039 mUsers.remove(userHandle);
Xiaohui Chenb3b92582015-12-07 11:22:13 -08002040 mUserAccounts.delete(userHandle);
Makoto Onukie7927da2015-11-25 10:05:17 -08002041 mIsUserManaged.delete(userHandle);
2042 }
2043 synchronized (mRestrictionsLock) {
2044 mBaseUserRestrictions.remove(userHandle);
2045 mAppliedUserRestrictions.remove(userHandle);
2046 mCachedEffectiveUserRestrictions.remove(userHandle);
2047 mDevicePolicyLocalUserRestrictions.remove(userHandle);
Fyodor Kupolov82402752015-10-28 14:54:51 -07002048 }
Dianne Hackbornd4ac8d72012-09-27 23:20:10 -07002049 // Remove user file
Amith Yamasanifc95e702013-09-26 13:20:17 -07002050 AtomicFile userFile = new AtomicFile(new File(mUsersDir, userHandle + XML_SUFFIX));
Dianne Hackbornd4ac8d72012-09-27 23:20:10 -07002051 userFile.delete();
2052 // Update the user list
Fyodor Kupolove80085d2015-11-06 18:21:39 -08002053 synchronized (mPackagesLock) {
2054 writeUserListLP();
2055 }
Fyodor Kupolov82402752015-10-28 14:54:51 -07002056 updateUserIds();
Dianne Hackbornd4ac8d72012-09-27 23:20:10 -07002057 removeDirectoryRecursive(Environment.getUserSystemDirectory(userHandle));
2058 }
2059
Amith Yamasani61f57372012-08-31 12:12:28 -07002060 private void removeDirectoryRecursive(File parent) {
2061 if (parent.isDirectory()) {
2062 String[] files = parent.list();
2063 for (String filename : files) {
2064 File child = new File(parent, filename);
2065 removeDirectoryRecursive(child);
2066 }
2067 }
2068 parent.delete();
2069 }
2070
Kenny Guyf8d3a232014-05-15 16:09:52 +01002071 private void sendProfileRemovedBroadcast(int parentUserId, int removedUserId) {
Adam Connors7b66ed52014-04-14 11:58:10 +01002072 Intent managedProfileIntent = new Intent(Intent.ACTION_MANAGED_PROFILE_REMOVED);
Adam Connorsd4b584e2014-06-09 13:55:47 +01002073 managedProfileIntent.addFlags(Intent.FLAG_RECEIVER_REGISTERED_ONLY |
2074 Intent.FLAG_RECEIVER_FOREGROUND);
Kenny Guyf8d3a232014-05-15 16:09:52 +01002075 managedProfileIntent.putExtra(Intent.EXTRA_USER, new UserHandle(removedUserId));
2076 mContext.sendBroadcastAsUser(managedProfileIntent, new UserHandle(parentUserId), null);
Adam Connors7b66ed52014-04-14 11:58:10 +01002077 }
2078
Amith Yamasani2a003292012-08-14 18:25:45 -07002079 @Override
Amith Yamasani7e99bc02013-04-16 18:24:51 -07002080 public Bundle getApplicationRestrictions(String packageName) {
2081 return getApplicationRestrictionsForUser(packageName, UserHandle.getCallingUserId());
2082 }
2083
2084 @Override
2085 public Bundle getApplicationRestrictionsForUser(String packageName, int userId) {
Amith Yamasanidf2e92a2013-03-01 17:04:38 -08002086 if (UserHandle.getCallingUserId() != userId
Amith Yamasani9429afb2013-04-10 18:40:51 -07002087 || !UserHandle.isSameApp(Binder.getCallingUid(), getUidForPackage(packageName))) {
Esteban Talavera5b9f1672015-12-11 15:22:34 +00002088 checkSystemOrRoot("get application restrictions for other users/apps");
Amith Yamasanidf2e92a2013-03-01 17:04:38 -08002089 }
2090 synchronized (mPackagesLock) {
2091 // Read the restrictions from XML
Fyodor Kupolov82402752015-10-28 14:54:51 -07002092 return readApplicationRestrictionsLP(packageName, userId);
Amith Yamasanidf2e92a2013-03-01 17:04:38 -08002093 }
2094 }
2095
2096 @Override
Amith Yamasani7e99bc02013-04-16 18:24:51 -07002097 public void setApplicationRestrictions(String packageName, Bundle restrictions,
Amith Yamasanidf2e92a2013-03-01 17:04:38 -08002098 int userId) {
Esteban Talavera5b9f1672015-12-11 15:22:34 +00002099 checkSystemOrRoot("set application restrictions");
Amith Yamasanidf2e92a2013-03-01 17:04:38 -08002100 synchronized (mPackagesLock) {
Kenny Guyd21b2182014-07-17 16:38:55 +01002101 if (restrictions == null || restrictions.isEmpty()) {
2102 cleanAppRestrictionsForPackage(packageName, userId);
2103 } else {
2104 // Write the restrictions to XML
Fyodor Kupolov82402752015-10-28 14:54:51 -07002105 writeApplicationRestrictionsLP(packageName, restrictions, userId);
Kenny Guyd21b2182014-07-17 16:38:55 +01002106 }
Amith Yamasanidf2e92a2013-03-01 17:04:38 -08002107 }
Robin Lee66e5d962014-04-09 16:44:21 +01002108
Kenny Guyd21b2182014-07-17 16:38:55 +01002109 if (isPackageInstalled(packageName, userId)) {
2110 // Notify package of changes via an intent - only sent to explicitly registered receivers.
2111 Intent changeIntent = new Intent(Intent.ACTION_APPLICATION_RESTRICTIONS_CHANGED);
2112 changeIntent.setPackage(packageName);
2113 changeIntent.addFlags(Intent.FLAG_RECEIVER_REGISTERED_ONLY);
2114 mContext.sendBroadcastAsUser(changeIntent, new UserHandle(userId));
2115 }
Amith Yamasanidf2e92a2013-03-01 17:04:38 -08002116 }
2117
Amith Yamasanie5bcff62014-07-19 15:44:09 -07002118 private void unhideAllInstalledAppsForUser(final int userHandle) {
Amith Yamasani1a7472e2013-07-02 11:17:30 -07002119 mHandler.post(new Runnable() {
2120 @Override
2121 public void run() {
2122 List<ApplicationInfo> apps =
2123 mPm.getInstalledApplications(PackageManager.GET_UNINSTALLED_PACKAGES,
2124 userHandle).getList();
2125 final long ident = Binder.clearCallingIdentity();
2126 try {
2127 for (ApplicationInfo appInfo : apps) {
2128 if ((appInfo.flags & ApplicationInfo.FLAG_INSTALLED) != 0
Alex Klyubinb9f8a522015-02-03 11:12:59 -08002129 && (appInfo.privateFlags & ApplicationInfo.PRIVATE_FLAG_HIDDEN)
2130 != 0) {
Amith Yamasanie5bcff62014-07-19 15:44:09 -07002131 mPm.setApplicationHiddenSettingAsUser(appInfo.packageName, false,
Amith Yamasani1a7472e2013-07-02 11:17:30 -07002132 userHandle);
2133 }
2134 }
2135 } finally {
2136 Binder.restoreCallingIdentity(ident);
2137 }
2138 }
2139 });
2140 }
Amith Yamasanidf2e92a2013-03-01 17:04:38 -08002141 private int getUidForPackage(String packageName) {
Amith Yamasani9429afb2013-04-10 18:40:51 -07002142 long ident = Binder.clearCallingIdentity();
Amith Yamasanidf2e92a2013-03-01 17:04:38 -08002143 try {
2144 return mContext.getPackageManager().getApplicationInfo(packageName,
2145 PackageManager.GET_UNINSTALLED_PACKAGES).uid;
2146 } catch (NameNotFoundException nnfe) {
2147 return -1;
Amith Yamasani9429afb2013-04-10 18:40:51 -07002148 } finally {
2149 Binder.restoreCallingIdentity(ident);
Amith Yamasanidf2e92a2013-03-01 17:04:38 -08002150 }
2151 }
2152
Fyodor Kupolov82402752015-10-28 14:54:51 -07002153 private Bundle readApplicationRestrictionsLP(String packageName, int userId) {
Fyodor Kupolov262f9952015-03-23 18:55:11 -07002154 AtomicFile restrictionsFile =
2155 new AtomicFile(new File(Environment.getUserSystemDirectory(userId),
2156 packageToRestrictionsFileName(packageName)));
Fyodor Kupolov82402752015-10-28 14:54:51 -07002157 return readApplicationRestrictionsLP(restrictionsFile);
Fyodor Kupolov262f9952015-03-23 18:55:11 -07002158 }
2159
2160 @VisibleForTesting
Fyodor Kupolov82402752015-10-28 14:54:51 -07002161 static Bundle readApplicationRestrictionsLP(AtomicFile restrictionsFile) {
Amith Yamasani7e99bc02013-04-16 18:24:51 -07002162 final Bundle restrictions = new Bundle();
Fyodor Kupolov262f9952015-03-23 18:55:11 -07002163 final ArrayList<String> values = new ArrayList<>();
Fyodor Kupolov6f34d362015-04-02 12:42:13 -07002164 if (!restrictionsFile.getBaseFile().exists()) {
Fyodor Kupolovf6ee2242015-04-06 10:15:07 -07002165 return restrictions;
Fyodor Kupolov6f34d362015-04-02 12:42:13 -07002166 }
Amith Yamasanidf2e92a2013-03-01 17:04:38 -08002167
2168 FileInputStream fis = null;
2169 try {
Amith Yamasanidf2e92a2013-03-01 17:04:38 -08002170 fis = restrictionsFile.openRead();
2171 XmlPullParser parser = Xml.newPullParser();
Wojciech Staszkiewicz9e9e2e72015-05-08 14:58:46 +01002172 parser.setInput(fis, StandardCharsets.UTF_8.name());
Fyodor Kupolov262f9952015-03-23 18:55:11 -07002173 XmlUtils.nextElement(parser);
2174 if (parser.getEventType() != XmlPullParser.START_TAG) {
Amith Yamasanidf2e92a2013-03-01 17:04:38 -08002175 Slog.e(LOG_TAG, "Unable to read restrictions file "
2176 + restrictionsFile.getBaseFile());
Amith Yamasani7e99bc02013-04-16 18:24:51 -07002177 return restrictions;
Amith Yamasanidf2e92a2013-03-01 17:04:38 -08002178 }
Fyodor Kupolov262f9952015-03-23 18:55:11 -07002179 while (parser.next() != XmlPullParser.END_DOCUMENT) {
2180 readEntry(restrictions, values, parser);
Amith Yamasanidf2e92a2013-03-01 17:04:38 -08002181 }
Fyodor Kupolov262f9952015-03-23 18:55:11 -07002182 } catch (IOException|XmlPullParserException e) {
2183 Log.w(LOG_TAG, "Error parsing " + restrictionsFile.getBaseFile(), e);
Amith Yamasanidf2e92a2013-03-01 17:04:38 -08002184 } finally {
Fyodor Kupolov262f9952015-03-23 18:55:11 -07002185 IoUtils.closeQuietly(fis);
Amith Yamasanidf2e92a2013-03-01 17:04:38 -08002186 }
Amith Yamasani7e99bc02013-04-16 18:24:51 -07002187 return restrictions;
Amith Yamasanidf2e92a2013-03-01 17:04:38 -08002188 }
2189
Fyodor Kupolov262f9952015-03-23 18:55:11 -07002190 private static void readEntry(Bundle restrictions, ArrayList<String> values,
2191 XmlPullParser parser) throws XmlPullParserException, IOException {
2192 int type = parser.getEventType();
2193 if (type == XmlPullParser.START_TAG && parser.getName().equals(TAG_ENTRY)) {
2194 String key = parser.getAttributeValue(null, ATTR_KEY);
2195 String valType = parser.getAttributeValue(null, ATTR_VALUE_TYPE);
2196 String multiple = parser.getAttributeValue(null, ATTR_MULTIPLE);
2197 if (multiple != null) {
2198 values.clear();
2199 int count = Integer.parseInt(multiple);
2200 while (count > 0 && (type = parser.next()) != XmlPullParser.END_DOCUMENT) {
2201 if (type == XmlPullParser.START_TAG
2202 && parser.getName().equals(TAG_VALUE)) {
2203 values.add(parser.nextText().trim());
2204 count--;
2205 }
2206 }
2207 String [] valueStrings = new String[values.size()];
2208 values.toArray(valueStrings);
2209 restrictions.putStringArray(key, valueStrings);
2210 } else if (ATTR_TYPE_BUNDLE.equals(valType)) {
2211 restrictions.putBundle(key, readBundleEntry(parser, values));
2212 } else if (ATTR_TYPE_BUNDLE_ARRAY.equals(valType)) {
2213 final int outerDepth = parser.getDepth();
2214 ArrayList<Bundle> bundleList = new ArrayList<>();
2215 while (XmlUtils.nextElementWithin(parser, outerDepth)) {
2216 Bundle childBundle = readBundleEntry(parser, values);
2217 bundleList.add(childBundle);
2218 }
2219 restrictions.putParcelableArray(key,
2220 bundleList.toArray(new Bundle[bundleList.size()]));
2221 } else {
2222 String value = parser.nextText().trim();
2223 if (ATTR_TYPE_BOOLEAN.equals(valType)) {
2224 restrictions.putBoolean(key, Boolean.parseBoolean(value));
2225 } else if (ATTR_TYPE_INTEGER.equals(valType)) {
2226 restrictions.putInt(key, Integer.parseInt(value));
2227 } else {
2228 restrictions.putString(key, value);
2229 }
2230 }
2231 }
2232 }
2233
2234 private static Bundle readBundleEntry(XmlPullParser parser, ArrayList<String> values)
2235 throws IOException, XmlPullParserException {
2236 Bundle childBundle = new Bundle();
2237 final int outerDepth = parser.getDepth();
2238 while (XmlUtils.nextElementWithin(parser, outerDepth)) {
2239 readEntry(childBundle, values, parser);
2240 }
2241 return childBundle;
2242 }
2243
Fyodor Kupolov82402752015-10-28 14:54:51 -07002244 private void writeApplicationRestrictionsLP(String packageName,
Amith Yamasani7e99bc02013-04-16 18:24:51 -07002245 Bundle restrictions, int userId) {
Amith Yamasanidf2e92a2013-03-01 17:04:38 -08002246 AtomicFile restrictionsFile = new AtomicFile(
2247 new File(Environment.getUserSystemDirectory(userId),
Amith Yamasanifc95e702013-09-26 13:20:17 -07002248 packageToRestrictionsFileName(packageName)));
Fyodor Kupolov82402752015-10-28 14:54:51 -07002249 writeApplicationRestrictionsLP(restrictions, restrictionsFile);
Fyodor Kupolov262f9952015-03-23 18:55:11 -07002250 }
2251
2252 @VisibleForTesting
Fyodor Kupolov82402752015-10-28 14:54:51 -07002253 static void writeApplicationRestrictionsLP(Bundle restrictions, AtomicFile restrictionsFile) {
Fyodor Kupolov262f9952015-03-23 18:55:11 -07002254 FileOutputStream fos = null;
Amith Yamasanidf2e92a2013-03-01 17:04:38 -08002255 try {
2256 fos = restrictionsFile.startWrite();
2257 final BufferedOutputStream bos = new BufferedOutputStream(fos);
2258
Amith Yamasanidf2e92a2013-03-01 17:04:38 -08002259 final XmlSerializer serializer = new FastXmlSerializer();
Wojciech Staszkiewicz9e9e2e72015-05-08 14:58:46 +01002260 serializer.setOutput(bos, StandardCharsets.UTF_8.name());
Amith Yamasanidf2e92a2013-03-01 17:04:38 -08002261 serializer.startDocument(null, true);
2262 serializer.setFeature("http://xmlpull.org/v1/doc/features.html#indent-output", true);
2263
2264 serializer.startTag(null, TAG_RESTRICTIONS);
Fyodor Kupolov262f9952015-03-23 18:55:11 -07002265 writeBundle(restrictions, serializer);
Amith Yamasanidf2e92a2013-03-01 17:04:38 -08002266 serializer.endTag(null, TAG_RESTRICTIONS);
2267
2268 serializer.endDocument();
2269 restrictionsFile.finishWrite(fos);
2270 } catch (Exception e) {
2271 restrictionsFile.failWrite(fos);
Fyodor Kupolov262f9952015-03-23 18:55:11 -07002272 Slog.e(LOG_TAG, "Error writing application restrictions list", e);
2273 }
2274 }
2275
2276 private static void writeBundle(Bundle restrictions, XmlSerializer serializer)
2277 throws IOException {
2278 for (String key : restrictions.keySet()) {
2279 Object value = restrictions.get(key);
2280 serializer.startTag(null, TAG_ENTRY);
2281 serializer.attribute(null, ATTR_KEY, key);
2282
2283 if (value instanceof Boolean) {
2284 serializer.attribute(null, ATTR_VALUE_TYPE, ATTR_TYPE_BOOLEAN);
2285 serializer.text(value.toString());
2286 } else if (value instanceof Integer) {
2287 serializer.attribute(null, ATTR_VALUE_TYPE, ATTR_TYPE_INTEGER);
2288 serializer.text(value.toString());
2289 } else if (value == null || value instanceof String) {
2290 serializer.attribute(null, ATTR_VALUE_TYPE, ATTR_TYPE_STRING);
2291 serializer.text(value != null ? (String) value : "");
2292 } else if (value instanceof Bundle) {
2293 serializer.attribute(null, ATTR_VALUE_TYPE, ATTR_TYPE_BUNDLE);
2294 writeBundle((Bundle) value, serializer);
2295 } else if (value instanceof Parcelable[]) {
2296 serializer.attribute(null, ATTR_VALUE_TYPE, ATTR_TYPE_BUNDLE_ARRAY);
2297 Parcelable[] array = (Parcelable[]) value;
2298 for (Parcelable parcelable : array) {
2299 if (!(parcelable instanceof Bundle)) {
2300 throw new IllegalArgumentException("bundle-array can only hold Bundles");
2301 }
2302 serializer.startTag(null, TAG_ENTRY);
2303 serializer.attribute(null, ATTR_VALUE_TYPE, ATTR_TYPE_BUNDLE);
2304 writeBundle((Bundle) parcelable, serializer);
2305 serializer.endTag(null, TAG_ENTRY);
2306 }
2307 } else {
2308 serializer.attribute(null, ATTR_VALUE_TYPE, ATTR_TYPE_STRING_ARRAY);
2309 String[] values = (String[]) value;
2310 serializer.attribute(null, ATTR_MULTIPLE, Integer.toString(values.length));
2311 for (String choice : values) {
2312 serializer.startTag(null, TAG_VALUE);
2313 serializer.text(choice != null ? choice : "");
2314 serializer.endTag(null, TAG_VALUE);
2315 }
2316 }
2317 serializer.endTag(null, TAG_ENTRY);
Amith Yamasanidf2e92a2013-03-01 17:04:38 -08002318 }
2319 }
2320
2321 @Override
Amith Yamasani2a003292012-08-14 18:25:45 -07002322 public int getUserSerialNumber(int userHandle) {
Fyodor Kupolov82402752015-10-28 14:54:51 -07002323 synchronized (mUsersLock) {
Amith Yamasani2a003292012-08-14 18:25:45 -07002324 if (!exists(userHandle)) return -1;
Fyodor Kupolov82402752015-10-28 14:54:51 -07002325 return getUserInfoLU(userHandle).serialNumber;
Amith Yamasani2a003292012-08-14 18:25:45 -07002326 }
2327 }
2328
2329 @Override
2330 public int getUserHandle(int userSerialNumber) {
Fyodor Kupolov82402752015-10-28 14:54:51 -07002331 synchronized (mUsersLock) {
Amith Yamasani2a003292012-08-14 18:25:45 -07002332 for (int userId : mUserIds) {
Fyodor Kupolov82402752015-10-28 14:54:51 -07002333 UserInfo info = getUserInfoLU(userId);
Kenny Guy945f8832015-02-10 15:17:26 +00002334 if (info != null && info.serialNumber == userSerialNumber) return userId;
Amith Yamasani2a003292012-08-14 18:25:45 -07002335 }
2336 // Not found
2337 return -1;
Amith Yamasani13593602012-03-22 16:16:17 -07002338 }
2339 }
2340
Fyodor Kupolovff7233e2015-04-08 11:28:52 -07002341 @Override
2342 public long getUserCreationTime(int userHandle) {
2343 int callingUserId = UserHandle.getCallingUserId();
2344 UserInfo userInfo = null;
Fyodor Kupolov82402752015-10-28 14:54:51 -07002345 synchronized (mUsersLock) {
Fyodor Kupolovff7233e2015-04-08 11:28:52 -07002346 if (callingUserId == userHandle) {
Fyodor Kupolov82402752015-10-28 14:54:51 -07002347 userInfo = getUserInfoLU(userHandle);
Fyodor Kupolovff7233e2015-04-08 11:28:52 -07002348 } else {
Fyodor Kupolov82402752015-10-28 14:54:51 -07002349 UserInfo parent = getProfileParentLU(userHandle);
Fyodor Kupolovff7233e2015-04-08 11:28:52 -07002350 if (parent != null && parent.id == callingUserId) {
Fyodor Kupolov82402752015-10-28 14:54:51 -07002351 userInfo = getUserInfoLU(userHandle);
Fyodor Kupolovff7233e2015-04-08 11:28:52 -07002352 }
2353 }
2354 }
2355 if (userInfo == null) {
2356 throw new SecurityException("userHandle can only be the calling user or a managed "
2357 + "profile associated with this user");
2358 }
2359 return userInfo.creationTime;
2360 }
2361
Amith Yamasani0b285492011-04-14 17:35:23 -07002362 /**
2363 * Caches the list of user ids in an array, adjusting the array size when necessary.
2364 */
Fyodor Kupolov82402752015-10-28 14:54:51 -07002365 private void updateUserIds() {
Dianne Hackbornd4ac8d72012-09-27 23:20:10 -07002366 int num = 0;
Fyodor Kupolov82402752015-10-28 14:54:51 -07002367 synchronized (mUsersLock) {
2368 final int userSize = mUsers.size();
2369 for (int i = 0; i < userSize; i++) {
2370 if (!mUsers.valueAt(i).partial) {
2371 num++;
2372 }
Dianne Hackbornd4ac8d72012-09-27 23:20:10 -07002373 }
Fyodor Kupolov82402752015-10-28 14:54:51 -07002374 final int[] newUsers = new int[num];
2375 int n = 0;
2376 for (int i = 0; i < userSize; i++) {
2377 if (!mUsers.valueAt(i).partial) {
2378 newUsers[n++] = mUsers.keyAt(i);
2379 }
Dianne Hackbornd4ac8d72012-09-27 23:20:10 -07002380 }
Fyodor Kupolov82402752015-10-28 14:54:51 -07002381 mUserIds = newUsers;
Amith Yamasani0b285492011-04-14 17:35:23 -07002382 }
2383 }
2384
2385 /**
Makoto Onuki1a2cd742015-11-16 13:51:27 -08002386 * Called right before a user starts. This will not be called for the system user.
2387 */
2388 public void onBeforeStartUser(int userId) {
2389 synchronized (mRestrictionsLock) {
2390 applyUserRestrictionsLR(userId);
2391 }
2392 }
2393
2394 /**
Amith Yamasani1a7472e2013-07-02 11:17:30 -07002395 * Make a note of the last started time of a user and do some cleanup.
Amith Yamasani920ace02012-09-20 22:15:37 -07002396 * @param userId the user that was just foregrounded
2397 */
Amith Yamasani06bf8242015-05-08 16:36:21 -07002398 public void onUserForeground(int userId) {
Fyodor Kupolove80085d2015-11-06 18:21:39 -08002399 UserInfo user = getUserInfoNoChecks(userId);
2400 if (user == null || user.partial) {
2401 Slog.w(LOG_TAG, "userForeground: unknown user #" + userId);
2402 return;
2403 }
2404 long now = System.currentTimeMillis();
2405 if (now > EPOCH_PLUS_30_YEARS) {
2406 user.lastLoggedInTime = now;
2407 scheduleWriteUser(user);
Amith Yamasani920ace02012-09-20 22:15:37 -07002408 }
2409 }
2410
2411 /**
Amith Yamasani0b285492011-04-14 17:35:23 -07002412 * Returns the next available user id, filling in any holes in the ids.
Amith Yamasani742a6712011-05-04 14:49:28 -07002413 * TODO: May not be a good idea to recycle ids, in case it results in confusion
2414 * for data and battery stats collection, or unexpected cross-talk.
Amith Yamasani0b285492011-04-14 17:35:23 -07002415 */
Fyodor Kupolov82402752015-10-28 14:54:51 -07002416 private int getNextAvailableId() {
2417 synchronized (mUsersLock) {
Jeff Sharkeyffe0cb42012-11-05 17:24:43 -08002418 int i = MIN_USER_ID;
Xiaohui Chen621b3fc2015-10-02 14:41:42 -07002419 while (i < MAX_USER_ID) {
Jeff Sharkeyffe0cb42012-11-05 17:24:43 -08002420 if (mUsers.indexOfKey(i) < 0 && !mRemovingUserIds.get(i)) {
Xiaohui Chen621b3fc2015-10-02 14:41:42 -07002421 return i;
Amith Yamasani195263742012-08-21 15:40:12 -07002422 }
2423 i++;
Amith Yamasani4b2e9342011-03-31 12:38:53 -07002424 }
Amith Yamasani4b2e9342011-03-31 12:38:53 -07002425 }
Xiaohui Chen621b3fc2015-10-02 14:41:42 -07002426 throw new IllegalStateException("No user id available!");
Amith Yamasani4b2e9342011-03-31 12:38:53 -07002427 }
Amith Yamasani920ace02012-09-20 22:15:37 -07002428
Amith Yamasanifc95e702013-09-26 13:20:17 -07002429 private String packageToRestrictionsFileName(String packageName) {
2430 return RESTRICTIONS_FILE_PREFIX + packageName + XML_SUFFIX;
2431 }
2432
Jeff Sharkey6dce4962015-07-03 18:08:41 -07002433 /**
Jeff Sharkey6dce4962015-07-03 18:08:41 -07002434 * Enforce that serial number stored in user directory inode matches the
2435 * given expected value. Gracefully sets the serial number if currently
2436 * undefined.
2437 *
2438 * @throws IOException when problem extracting serial number, or serial
2439 * number is mismatched.
2440 */
2441 public static void enforceSerialNumber(File file, int serialNumber) throws IOException {
2442 final int foundSerial = getSerialNumber(file);
2443 Slog.v(LOG_TAG, "Found " + file + " with serial number " + foundSerial);
2444
2445 if (foundSerial == -1) {
2446 Slog.d(LOG_TAG, "Serial number missing on " + file + "; assuming current is valid");
2447 try {
2448 setSerialNumber(file, serialNumber);
2449 } catch (IOException e) {
2450 Slog.w(LOG_TAG, "Failed to set serial number on " + file, e);
2451 }
2452
2453 } else if (foundSerial != serialNumber) {
2454 throw new IOException("Found serial number " + foundSerial
2455 + " doesn't match expected " + serialNumber);
2456 }
2457 }
2458
2459 /**
2460 * Set serial number stored in user directory inode.
2461 *
2462 * @throws IOException if serial number was already set
2463 */
2464 private static void setSerialNumber(File file, int serialNumber)
2465 throws IOException {
2466 try {
2467 final byte[] buf = Integer.toString(serialNumber).getBytes(StandardCharsets.UTF_8);
2468 Os.setxattr(file.getAbsolutePath(), XATTR_SERIAL, buf, OsConstants.XATTR_CREATE);
2469 } catch (ErrnoException e) {
2470 throw e.rethrowAsIOException();
2471 }
2472 }
2473
2474 /**
2475 * Return serial number stored in user directory inode.
2476 *
2477 * @return parsed serial number, or -1 if not set
2478 */
2479 private static int getSerialNumber(File file) throws IOException {
2480 try {
2481 final byte[] buf = new byte[256];
2482 final int len = Os.getxattr(file.getAbsolutePath(), XATTR_SERIAL, buf);
2483 final String serial = new String(buf, 0, len);
2484 try {
2485 return Integer.parseInt(serial);
2486 } catch (NumberFormatException e) {
2487 throw new IOException("Bad serial number: " + serial);
2488 }
2489 } catch (ErrnoException e) {
2490 if (e.errno == OsConstants.ENODATA) {
2491 return -1;
2492 } else {
2493 throw e.rethrowAsIOException();
2494 }
2495 }
2496 }
2497
Amith Yamasani920ace02012-09-20 22:15:37 -07002498 @Override
Todd Kennedy60459ab2015-10-30 11:32:16 -07002499 public void onShellCommand(FileDescriptor in, FileDescriptor out,
2500 FileDescriptor err, String[] args, ResultReceiver resultReceiver) {
2501 (new Shell()).exec(this, in, out, err, args, resultReceiver);
2502 }
2503
2504 int onShellCommand(Shell shell, String cmd) {
2505 if (cmd == null) {
2506 return shell.handleDefaultCommands(cmd);
2507 }
2508
2509 final PrintWriter pw = shell.getOutPrintWriter();
2510 try {
2511 switch(cmd) {
2512 case "list":
2513 return runList(pw);
2514 }
2515 } catch (RemoteException e) {
2516 pw.println("Remote exception: " + e);
2517 }
2518 return -1;
2519 }
2520
2521 private int runList(PrintWriter pw) throws RemoteException {
2522 final IActivityManager am = ActivityManagerNative.getDefault();
2523 final List<UserInfo> users = getUsers(false);
2524 if (users == null) {
2525 pw.println("Error: couldn't get users");
2526 return 1;
2527 } else {
2528 pw.println("Users:");
2529 for (int i = 0; i < users.size(); i++) {
Jeff Sharkeye17ac152015-11-06 22:40:29 -08002530 String running = am.isUserRunning(users.get(i).id, 0) ? " running" : "";
Todd Kennedy60459ab2015-10-30 11:32:16 -07002531 pw.println("\t" + users.get(i).toString() + running);
2532 }
2533 return 0;
2534 }
2535 }
2536
2537 @Override
Amith Yamasani920ace02012-09-20 22:15:37 -07002538 protected void dump(FileDescriptor fd, PrintWriter pw, String[] args) {
2539 if (mContext.checkCallingOrSelfPermission(android.Manifest.permission.DUMP)
2540 != PackageManager.PERMISSION_GRANTED) {
2541 pw.println("Permission Denial: can't dump UserManager from from pid="
2542 + Binder.getCallingPid()
2543 + ", uid=" + Binder.getCallingUid()
2544 + " without permission "
2545 + android.Manifest.permission.DUMP);
2546 return;
2547 }
2548
2549 long now = System.currentTimeMillis();
2550 StringBuilder sb = new StringBuilder();
2551 synchronized (mPackagesLock) {
Fyodor Kupolov82402752015-10-28 14:54:51 -07002552 synchronized (mUsersLock) {
2553 pw.println("Users:");
2554 for (int i = 0; i < mUsers.size(); i++) {
2555 UserInfo user = mUsers.valueAt(i);
2556 if (user == null) {
2557 continue;
2558 }
Makoto Onukie7927da2015-11-25 10:05:17 -08002559 final int userId = user.id;
Fyodor Kupolov82402752015-10-28 14:54:51 -07002560 pw.print(" "); pw.print(user);
2561 pw.print(" serialNo="); pw.print(user.serialNumber);
Makoto Onukie7927da2015-11-25 10:05:17 -08002562 if (mRemovingUserIds.get(userId)) {
Fyodor Kupolov82402752015-10-28 14:54:51 -07002563 pw.print(" <removing> ");
2564 }
2565 if (user.partial) {
2566 pw.print(" <partial>");
2567 }
2568 pw.println();
2569 pw.print(" Created: ");
2570 if (user.creationTime == 0) {
2571 pw.println("<unknown>");
2572 } else {
2573 sb.setLength(0);
2574 TimeUtils.formatDuration(now - user.creationTime, sb);
2575 sb.append(" ago");
2576 pw.println(sb);
2577 }
2578 pw.print(" Last logged in: ");
2579 if (user.lastLoggedInTime == 0) {
2580 pw.println("<unknown>");
2581 } else {
2582 sb.setLength(0);
2583 TimeUtils.formatDuration(now - user.lastLoggedInTime, sb);
2584 sb.append(" ago");
2585 pw.println(sb);
2586 }
Makoto Onukie7927da2015-11-25 10:05:17 -08002587 pw.print(" Has profile owner: ");
2588 pw.println(mIsUserManaged.get(userId));
Fyodor Kupolov82402752015-10-28 14:54:51 -07002589 pw.println(" Restrictions:");
2590 synchronized (mRestrictionsLock) {
2591 UserRestrictionsUtils.dumpRestrictions(
2592 pw, " ", mBaseUserRestrictions.get(user.id));
Makoto Onuki1a2cd742015-11-16 13:51:27 -08002593 pw.println(" Device policy local restrictions:");
2594 UserRestrictionsUtils.dumpRestrictions(
2595 pw, " ", mDevicePolicyLocalUserRestrictions.get(user.id));
Fyodor Kupolov82402752015-10-28 14:54:51 -07002596 pw.println(" Effective restrictions:");
2597 UserRestrictionsUtils.dumpRestrictions(
2598 pw, " ", mCachedEffectiveUserRestrictions.get(user.id));
2599 }
Makoto Onuki1a2cd742015-11-16 13:51:27 -08002600 pw.println();
Xiaohui Chenb3b92582015-12-07 11:22:13 -08002601 String accountName = mUserAccounts.get(userId);
2602 if (accountName != null) {
2603 pw.print(" Account name: " + accountName);
2604 pw.println();
2605 }
Amith Yamasani920ace02012-09-20 22:15:37 -07002606 }
Amith Yamasani920ace02012-09-20 22:15:37 -07002607 }
Makoto Onuki1a2cd742015-11-16 13:51:27 -08002608 pw.println(" Device policy global restrictions:");
2609 synchronized (mRestrictionsLock) {
2610 UserRestrictionsUtils
2611 .dumpRestrictions(pw, " ", mDevicePolicyGlobalUserRestrictions);
2612 }
Makoto Onukia4f11972015-10-01 13:19:58 -07002613 pw.println();
Makoto Onuki1a2cd742015-11-16 13:51:27 -08002614 pw.println(" Guest restrictions:");
Fyodor Kupolove80085d2015-11-06 18:21:39 -08002615 synchronized (mGuestRestrictions) {
Makoto Onuki1a2cd742015-11-16 13:51:27 -08002616 UserRestrictionsUtils.dumpRestrictions(pw, " ", mGuestRestrictions);
Fyodor Kupolove80085d2015-11-06 18:21:39 -08002617 }
Makoto Onukie7927da2015-11-25 10:05:17 -08002618 synchronized (mUsersLock) {
2619 pw.println();
2620 pw.println(" Device managed: " + mIsDeviceManaged);
2621 }
Amith Yamasani920ace02012-09-20 22:15:37 -07002622 }
2623 }
Fyodor Kupolov75d0ea82014-12-15 16:21:07 -08002624
2625 final class MainHandler extends Handler {
2626
2627 @Override
2628 public void handleMessage(Message msg) {
2629 switch (msg.what) {
2630 case WRITE_USER_MSG:
2631 removeMessages(WRITE_USER_MSG, msg.obj);
2632 synchronized (mPackagesLock) {
2633 int userId = ((UserInfo) msg.obj).id;
Fyodor Kupolov82402752015-10-28 14:54:51 -07002634 UserInfo userInfo = getUserInfoNoChecks(userId);
Fyodor Kupolov75d0ea82014-12-15 16:21:07 -08002635 if (userInfo != null) {
Fyodor Kupolov82402752015-10-28 14:54:51 -07002636 writeUserLP(userInfo);
Fyodor Kupolov75d0ea82014-12-15 16:21:07 -08002637 }
2638 }
2639 }
2640 }
2641 }
Amith Yamasanibb054c92015-07-09 14:16:27 -07002642
2643 /**
2644 * @param userId
2645 * @return whether the user has been initialized yet
2646 */
2647 boolean isInitialized(int userId) {
2648 return (getUserInfo(userId).flags & UserInfo.FLAG_INITIALIZED) != 0;
2649 }
Makoto Onuki068c54a2015-10-13 14:34:03 -07002650
2651 private class LocalService extends UserManagerInternal {
Makoto Onuki068c54a2015-10-13 14:34:03 -07002652 @Override
Makoto Onuki1a2cd742015-11-16 13:51:27 -08002653 public void setDevicePolicyUserRestrictions(int userId, @NonNull Bundle localRestrictions,
2654 @Nullable Bundle globalRestrictions) {
2655 UserManagerService.this.setDevicePolicyUserRestrictions(userId, localRestrictions,
2656 globalRestrictions);
Makoto Onuki068c54a2015-10-13 14:34:03 -07002657 }
2658
2659 @Override
2660 public Bundle getBaseUserRestrictions(int userId) {
2661 synchronized (mRestrictionsLock) {
2662 return mBaseUserRestrictions.get(userId);
2663 }
2664 }
2665
2666 @Override
2667 public void setBaseUserRestrictionsByDpmsForMigration(
2668 int userId, Bundle baseRestrictions) {
2669 synchronized (mRestrictionsLock) {
2670 mBaseUserRestrictions.put(userId, new Bundle(baseRestrictions));
Fyodor Kupolov82402752015-10-28 14:54:51 -07002671 invalidateEffectiveUserRestrictionsLR(userId);
Makoto Onuki068c54a2015-10-13 14:34:03 -07002672 }
2673
Fyodor Kupolov82402752015-10-28 14:54:51 -07002674 final UserInfo userInfo = getUserInfoNoChecks(userId);
Makoto Onuki068c54a2015-10-13 14:34:03 -07002675 synchronized (mPackagesLock) {
Makoto Onuki068c54a2015-10-13 14:34:03 -07002676 if (userInfo != null) {
Fyodor Kupolov82402752015-10-28 14:54:51 -07002677 writeUserLP(userInfo);
Makoto Onuki068c54a2015-10-13 14:34:03 -07002678 } else {
2679 Slog.w(LOG_TAG, "UserInfo not found for " + userId);
2680 }
2681 }
2682 }
Makoto Onukid45a4a22015-11-02 17:17:38 -08002683
2684 @Override
2685 public boolean getUserRestriction(int userId, String key) {
2686 return getUserRestrictions(userId).getBoolean(key);
2687 }
2688
2689 @Override
2690 public void addUserRestrictionsListener(UserRestrictionsListener listener) {
2691 synchronized (mUserRestrictionsListeners) {
2692 mUserRestrictionsListeners.add(listener);
2693 }
2694 }
2695
2696 @Override
2697 public void removeUserRestrictionsListener(UserRestrictionsListener listener) {
2698 synchronized (mUserRestrictionsListeners) {
2699 mUserRestrictionsListeners.remove(listener);
2700 }
2701 }
Makoto Onukie7927da2015-11-25 10:05:17 -08002702
2703 @Override
2704 public void setDeviceManaged(boolean isManaged) {
2705 synchronized (mUsersLock) {
2706 mIsDeviceManaged = isManaged;
2707 }
2708 }
2709
2710 @Override
2711 public void setUserManaged(int userId, boolean isManaged) {
2712 synchronized (mUsersLock) {
2713 mIsUserManaged.put(userId, isManaged);
2714 }
2715 }
Makoto Onuki068c54a2015-10-13 14:34:03 -07002716 }
Todd Kennedy60459ab2015-10-30 11:32:16 -07002717
2718 private class Shell extends ShellCommand {
2719 @Override
2720 public int onCommand(String cmd) {
2721 return onShellCommand(this, cmd);
2722 }
2723
2724 @Override
2725 public void onHelp() {
2726 final PrintWriter pw = getOutPrintWriter();
2727 pw.println("User manager (user) commands:");
2728 pw.println(" help");
2729 pw.println(" Print this help text.");
2730 pw.println("");
2731 pw.println(" list");
2732 pw.println(" Prints all users on the system.");
2733 }
2734 }
Makoto Onuki1a2cd742015-11-16 13:51:27 -08002735
2736 private static void debug(String message) {
2737 Log.d(LOG_TAG, message +
2738 (DBG_WITH_STACKTRACE ? " called at\n" + Debug.getCallers(10, " ") : ""));
2739 }
Amith Yamasani4b2e9342011-03-31 12:38:53 -07002740}