blob: a3622b58cb4d74f3ecb6c89b0787b2871d55a48c [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;
Lenka Trochtovaf348e8e2016-01-07 17:20:34 +010031import android.content.IntentFilter;
Amith Yamasani1a7472e2013-07-02 11:17:30 -070032import android.content.pm.ApplicationInfo;
Amith Yamasani0b285492011-04-14 17:35:23 -070033import android.content.pm.PackageManager;
Amith Yamasanidf2e92a2013-03-01 17:04:38 -080034import android.content.pm.PackageManager.NameNotFoundException;
Amith Yamasani4b2e9342011-03-31 12:38:53 -070035import android.content.pm.UserInfo;
Lenka Trochtova02fee152015-12-22 14:26:18 +010036import android.content.res.Resources;
Amith Yamasanie928d7d2012-09-17 21:46:51 -070037import android.graphics.Bitmap;
Amith Yamasani258848d2012-08-10 17:06:33 -070038import android.os.Binder;
Amith Yamasanie4cf7342012-12-17 11:12:09 -080039import android.os.Bundle;
Makoto Onuki1a2cd742015-11-16 13:51:27 -080040import android.os.Debug;
Amith Yamasani4b2e9342011-03-31 12:38:53 -070041import android.os.Environment;
42import android.os.FileUtils;
Jeff Sharkeyffe0cb42012-11-05 17:24:43 -080043import android.os.Handler;
Svet Ganov9cea80cd2016-02-16 11:47:00 -080044import android.os.IBinder;
Amith Yamasani258848d2012-08-10 17:06:33 -070045import android.os.IUserManager;
Fyodor Kupolov75d0ea82014-12-15 16:21:07 -080046import android.os.Message;
Adrian Roos1bdff912015-02-17 15:51:35 +010047import android.os.ParcelFileDescriptor;
Fyodor Kupolov262f9952015-03-23 18:55:11 -070048import android.os.Parcelable;
Amith Yamasani12747872015-12-07 14:19:49 -080049import android.os.PersistableBundle;
Amith Yamasani258848d2012-08-10 17:06:33 -070050import android.os.Process;
Dianne Hackborn80a4af22012-08-27 19:18:31 -070051import android.os.RemoteException;
Todd Kennedy60459ab2015-10-30 11:32:16 -070052import android.os.ResultReceiver;
Oleksandr Peletskyicd6fa302016-02-25 16:28:39 +010053import android.os.SELinux;
Jason Monk62062992014-05-06 09:55:28 -040054import android.os.ServiceManager;
Todd Kennedy60459ab2015-10-30 11:32:16 -070055import android.os.ShellCommand;
Dianne Hackbornf02b60a2012-08-16 10:48:27 -070056import android.os.UserHandle;
Jeff Sharkey27bd34d2012-09-16 12:49:00 -070057import android.os.UserManager;
Makoto Onuki068c54a2015-10-13 14:34:03 -070058import android.os.UserManagerInternal;
Makoto Onukid45a4a22015-11-02 17:17:38 -080059import android.os.UserManagerInternal.UserRestrictionsListener;
Paul Crowley85e4e812015-05-19 12:42:00 +010060import android.os.storage.StorageManager;
Jeff Sharkey6dce4962015-07-03 18:08:41 -070061import android.os.storage.VolumeInfo;
62import android.system.ErrnoException;
63import android.system.Os;
64import android.system.OsConstants;
Amith Yamasani2a003292012-08-14 18:25:45 -070065import android.util.AtomicFile;
Amith Yamasani655d0e22013-06-12 14:19:10 -070066import android.util.Log;
Amith Yamasani4b2e9342011-03-31 12:38:53 -070067import android.util.Slog;
68import android.util.SparseArray;
Jeff Sharkeyffe0cb42012-11-05 17:24:43 -080069import android.util.SparseBooleanArray;
Amith Yamasani920ace02012-09-20 22:15:37 -070070import android.util.TimeUtils;
Amith Yamasani4b2e9342011-03-31 12:38:53 -070071import android.util.Xml;
72
Makoto Onuki068c54a2015-10-13 14:34:03 -070073import com.android.internal.annotations.GuardedBy;
Fyodor Kupolov262f9952015-03-23 18:55:11 -070074import com.android.internal.annotations.VisibleForTesting;
Jason Monk62062992014-05-06 09:55:28 -040075import com.android.internal.app.IAppOpsService;
Fyodor Kupolov8385e4b2015-12-29 18:15:32 -080076import com.android.internal.logging.MetricsLogger;
Jeff Sharkeyffe0cb42012-11-05 17:24:43 -080077import com.android.internal.util.FastXmlSerializer;
Makoto Onuki068c54a2015-10-13 14:34:03 -070078import com.android.internal.util.Preconditions;
Fyodor Kupolov262f9952015-03-23 18:55:11 -070079import com.android.internal.util.XmlUtils;
Clara Bayarri10ad84a2015-12-01 17:38:05 +000080import com.android.internal.widget.LockPatternUtils;
Amith Yamasani515d4062015-09-28 11:30:06 -070081import com.android.server.LocalServices;
Jeff Sharkey47f71082016-02-01 17:03:54 -070082
83import libcore.io.IoUtils;
84import libcore.util.Objects;
Jeff Sharkeyffe0cb42012-11-05 17:24:43 -080085
86import org.xmlpull.v1.XmlPullParser;
87import org.xmlpull.v1.XmlPullParserException;
88import org.xmlpull.v1.XmlSerializer;
89
Amith Yamasani4b2e9342011-03-31 12:38:53 -070090import java.io.BufferedOutputStream;
91import java.io.File;
Amith Yamasani920ace02012-09-20 22:15:37 -070092import java.io.FileDescriptor;
Amith Yamasani4b2e9342011-03-31 12:38:53 -070093import java.io.FileInputStream;
Amith Yamasanib8151ec2012-04-18 18:02:48 -070094import java.io.FileNotFoundException;
Amith Yamasani4b2e9342011-03-31 12:38:53 -070095import java.io.FileOutputStream;
96import java.io.IOException;
Amith Yamasani920ace02012-09-20 22:15:37 -070097import java.io.PrintWriter;
Wojciech Staszkiewicz9e9e2e72015-05-08 14:58:46 +010098import java.nio.charset.StandardCharsets;
Amith Yamasani4b2e9342011-03-31 12:38:53 -070099import java.util.ArrayList;
100import java.util.List;
101
Makoto Onuki068c54a2015-10-13 14:34:03 -0700102/**
103 * Service for {@link UserManager}.
104 *
105 * Method naming convention:
Fyodor Kupolov82402752015-10-28 14:54:51 -0700106 * <ul>
Fyodor Kupolove80085d2015-11-06 18:21:39 -0800107 * <li> Methods suffixed with "LP" should be called within the {@link #mPackagesLock} lock.
Fyodor Kupolov82402752015-10-28 14:54:51 -0700108 * <li> Methods suffixed with "LR" should be called within the {@link #mRestrictionsLock} lock.
109 * <li> Methods suffixed with "LU" should be called within the {@link #mUsersLock} lock.
110 * </ul>
Makoto Onuki068c54a2015-10-13 14:34:03 -0700111 */
Amith Yamasani258848d2012-08-10 17:06:33 -0700112public class UserManagerService extends IUserManager.Stub {
Amith Yamasani2a003292012-08-14 18:25:45 -0700113 private static final String LOG_TAG = "UserManagerService";
Makoto Onuki81c61ea2016-01-22 11:22:26 -0800114 static final boolean DBG = false; // DO NOT SUBMIT WITH TRUE
Makoto Onuki1a2cd742015-11-16 13:51:27 -0800115 private static final boolean DBG_WITH_STACKTRACE = false; // DO NOT SUBMIT WITH TRUE
Amith Yamasani16389312012-10-17 21:20:14 -0700116
Amith Yamasani4b2e9342011-03-31 12:38:53 -0700117 private static final String TAG_NAME = "name";
Xiaohui Chenb3b92582015-12-07 11:22:13 -0800118 private static final String TAG_ACCOUNT = "account";
Amith Yamasani4b2e9342011-03-31 12:38:53 -0700119 private static final String ATTR_FLAGS = "flags";
Amith Yamasanib8151ec2012-04-18 18:02:48 -0700120 private static final String ATTR_ICON_PATH = "icon";
Amith Yamasani4b2e9342011-03-31 12:38:53 -0700121 private static final String ATTR_ID = "id";
Amith Yamasani920ace02012-09-20 22:15:37 -0700122 private static final String ATTR_CREATION_TIME = "created";
123 private static final String ATTR_LAST_LOGGED_IN_TIME = "lastLoggedIn";
Amith Yamasani2a003292012-08-14 18:25:45 -0700124 private static final String ATTR_SERIAL_NO = "serialNumber";
125 private static final String ATTR_NEXT_SERIAL_NO = "nextSerialNumber";
Dianne Hackbornd4ac8d72012-09-27 23:20:10 -0700126 private static final String ATTR_PARTIAL = "partial";
Adam Lesinskieddeb492014-09-08 17:50:03 -0700127 private static final String ATTR_GUEST_TO_REMOVE = "guestToRemove";
Amith Yamasani6f34b412012-10-22 18:19:27 -0700128 private static final String ATTR_USER_VERSION = "version";
Kenny Guy2a764942014-04-02 13:29:20 +0100129 private static final String ATTR_PROFILE_GROUP_ID = "profileGroupId";
Fyodor Kupolov06a484a2015-08-21 16:33:20 -0700130 private static final String ATTR_RESTRICTED_PROFILE_PARENT_ID = "restrictedProfileParentId";
Amith Yamasani12747872015-12-07 14:19:49 -0800131 private static final String ATTR_SEED_ACCOUNT_NAME = "seedAccountName";
132 private static final String ATTR_SEED_ACCOUNT_TYPE = "seedAccountType";
Amith Yamasanie4afaa32014-06-30 14:55:07 +0530133 private static final String TAG_GUEST_RESTRICTIONS = "guestRestrictions";
Amith Yamasani4b2e9342011-03-31 12:38:53 -0700134 private static final String TAG_USERS = "users";
Amith Yamasani4b2e9342011-03-31 12:38:53 -0700135 private static final String TAG_USER = "user";
Amith Yamasanie4cf7342012-12-17 11:12:09 -0800136 private static final String TAG_RESTRICTIONS = "restrictions";
Makoto Onuki1a2cd742015-11-16 13:51:27 -0800137 private static final String TAG_DEVICE_POLICY_RESTRICTIONS = "device_policy_restrictions";
Amith Yamasanidf2e92a2013-03-01 17:04:38 -0800138 private static final String TAG_ENTRY = "entry";
139 private static final String TAG_VALUE = "value";
Amith Yamasani12747872015-12-07 14:19:49 -0800140 private static final String TAG_SEED_ACCOUNT_OPTIONS = "seedAccountOptions";
Amith Yamasanidf2e92a2013-03-01 17:04:38 -0800141 private static final String ATTR_KEY = "key";
Amith Yamasani7e99bc02013-04-16 18:24:51 -0700142 private static final String ATTR_VALUE_TYPE = "type";
Amith Yamasanidf2e92a2013-03-01 17:04:38 -0800143 private static final String ATTR_MULTIPLE = "m";
Amith Yamasani4b2e9342011-03-31 12:38:53 -0700144
Amith Yamasani7e99bc02013-04-16 18:24:51 -0700145 private static final String ATTR_TYPE_STRING_ARRAY = "sa";
146 private static final String ATTR_TYPE_STRING = "s";
147 private static final String ATTR_TYPE_BOOLEAN = "b";
Amith Yamasani5b5aa402014-06-01 20:10:14 -0700148 private static final String ATTR_TYPE_INTEGER = "i";
Fyodor Kupolov262f9952015-03-23 18:55:11 -0700149 private static final String ATTR_TYPE_BUNDLE = "B";
150 private static final String ATTR_TYPE_BUNDLE_ARRAY = "BA";
Amith Yamasani7e99bc02013-04-16 18:24:51 -0700151
Amith Yamasani0b285492011-04-14 17:35:23 -0700152 private static final String USER_INFO_DIR = "system" + File.separator + "users";
Amith Yamasani4b2e9342011-03-31 12:38:53 -0700153 private static final String USER_LIST_FILENAME = "userlist.xml";
Amith Yamasanib8151ec2012-04-18 18:02:48 -0700154 private static final String USER_PHOTO_FILENAME = "photo.png";
Adrian Roos1bdff912015-02-17 15:51:35 +0100155 private static final String USER_PHOTO_FILENAME_TMP = USER_PHOTO_FILENAME + ".tmp";
Amith Yamasani4b2e9342011-03-31 12:38:53 -0700156
Amith Yamasanidf2e92a2013-03-01 17:04:38 -0800157 private static final String RESTRICTIONS_FILE_PREFIX = "res_";
Amith Yamasanifc95e702013-09-26 13:20:17 -0700158 private static final String XML_SUFFIX = ".xml";
Amith Yamasanidf2e92a2013-03-01 17:04:38 -0800159
Amith Yamasani634cf312012-10-04 17:34:21 -0700160 private static final int MIN_USER_ID = 10;
Xiaohui Chen621b3fc2015-10-02 14:41:42 -0700161 // We need to keep process uid within Integer.MAX_VALUE.
162 private static final int MAX_USER_ID = Integer.MAX_VALUE / UserHandle.PER_USER_RANGE;
Amith Yamasani634cf312012-10-04 17:34:21 -0700163
Fyodor Kupolov1c363152015-09-02 13:27:21 -0700164 private static final int USER_VERSION = 6;
Amith Yamasani6f34b412012-10-22 18:19:27 -0700165
Amith Yamasani920ace02012-09-20 22:15:37 -0700166 private static final long EPOCH_PLUS_30_YEARS = 30L * 365 * 24 * 60 * 60 * 1000L; // ms
167
Nicolas Prevotb8186812015-08-06 15:00:03 +0100168 // Maximum number of managed profiles permitted per user is 1. This cannot be increased
Amith Yamasani95ab7842014-08-11 17:09:26 -0700169 // without first making sure that the rest of the framework is prepared for it.
170 private static final int MAX_MANAGED_PROFILES = 1;
171
Fyodor Kupolov75d0ea82014-12-15 16:21:07 -0800172 static final int WRITE_USER_MSG = 1;
173 static final int WRITE_USER_DELAY = 2*1000; // 2 seconds
Amith Yamasanie4afaa32014-06-30 14:55:07 +0530174
Jeff Sharkey6dce4962015-07-03 18:08:41 -0700175 private static final String XATTR_SERIAL = "user.serial";
176
Fyodor Kupolov8385e4b2015-12-29 18:15:32 -0800177 // Tron counters
178 private static final String TRON_GUEST_CREATED = "users_guest_created";
179 private static final String TRON_USER_CREATED = "users_user_created";
180
Dianne Hackborn4428e172012-08-24 17:43:05 -0700181 private final Context mContext;
182 private final PackageManagerService mPm;
Dianne Hackborn4428e172012-08-24 17:43:05 -0700183 private final Object mPackagesLock;
Fyodor Kupolov82402752015-10-28 14:54:51 -0700184 // Short-term lock for internal state, when interaction/sync with PM is not required
185 private final Object mUsersLock = new Object();
186 private final Object mRestrictionsLock = new Object();
Amith Yamasani4b2e9342011-03-31 12:38:53 -0700187
Jeff Sharkeyffe0cb42012-11-05 17:24:43 -0800188 private final Handler mHandler;
189
Amith Yamasani4b2e9342011-03-31 12:38:53 -0700190 private final File mUsersDir;
191 private final File mUserListFile;
Dianne Hackborn4428e172012-08-24 17:43:05 -0700192
Svet Ganov9cea80cd2016-02-16 11:47:00 -0800193 private static final IBinder mUserRestriconToken = new Binder();
194
Makoto Onuki068c54a2015-10-13 14:34:03 -0700195 /**
Amith Yamasani12747872015-12-07 14:19:49 -0800196 * User-related information that is used for persisting to flash. Only UserInfo is
197 * directly exposed to other system apps.
Xiaohui Chenb3b92582015-12-07 11:22:13 -0800198 */
Amith Yamasani12747872015-12-07 14:19:49 -0800199 private static class UserData {
200 // Basic user information and properties
201 UserInfo info;
202 // Account name used when there is a strong association between a user and an account
203 String account;
204 // Account information for seeding into a newly created user. This could also be
205 // used for login validation for an existing user, for updating their credentials.
206 // In the latter case, data may not need to be persisted as it is only valid for the
207 // current login session.
208 String seedAccountName;
209 String seedAccountType;
210 PersistableBundle seedAccountOptions;
211 // Whether to perist the seed account information to be available after a boot
212 boolean persistSeedData;
213
214 void clearSeedAccountData() {
215 seedAccountName = null;
216 seedAccountType = null;
217 seedAccountOptions = null;
218 persistSeedData = false;
219 }
220 }
221
Xiaohui Chenb3b92582015-12-07 11:22:13 -0800222 @GuardedBy("mUsersLock")
Amith Yamasani12747872015-12-07 14:19:49 -0800223 private final SparseArray<UserData> mUsers = new SparseArray<>();
Xiaohui Chenb3b92582015-12-07 11:22:13 -0800224
225 /**
Makoto Onuki068c54a2015-10-13 14:34:03 -0700226 * User restrictions set via UserManager. This doesn't include restrictions set by
227 * device owner / profile owners.
228 *
229 * DO NOT Change existing {@link Bundle} in it. When changing a restriction for a user,
230 * a new {@link Bundle} should always be created and set. This is because a {@link Bundle}
231 * maybe shared between {@link #mBaseUserRestrictions} and
232 * {@link #mCachedEffectiveUserRestrictions}, but they should always updated separately.
233 * (Otherwise we won't be able to detect what restrictions have changed in
Fyodor Kupolov82402752015-10-28 14:54:51 -0700234 * {@link #updateUserRestrictionsInternalLR}.
Makoto Onuki068c54a2015-10-13 14:34:03 -0700235 */
236 @GuardedBy("mRestrictionsLock")
237 private final SparseArray<Bundle> mBaseUserRestrictions = new SparseArray<>();
238
239 /**
240 * Cached user restrictions that are in effect -- i.e. {@link #mBaseUserRestrictions} combined
241 * with device / profile owner restrictions. We'll initialize it lazily; use
242 * {@link #getEffectiveUserRestrictions} to access it.
243 *
244 * DO NOT Change existing {@link Bundle} in it. When changing a restriction for a user,
245 * a new {@link Bundle} should always be created and set. This is because a {@link Bundle}
246 * maybe shared between {@link #mBaseUserRestrictions} and
247 * {@link #mCachedEffectiveUserRestrictions}, but they should always updated separately.
248 * (Otherwise we won't be able to detect what restrictions have changed in
Fyodor Kupolov82402752015-10-28 14:54:51 -0700249 * {@link #updateUserRestrictionsInternalLR}.
Makoto Onuki068c54a2015-10-13 14:34:03 -0700250 */
251 @GuardedBy("mRestrictionsLock")
252 private final SparseArray<Bundle> mCachedEffectiveUserRestrictions = new SparseArray<>();
253
Makoto Onuki4f160732015-10-27 17:15:38 -0700254 /**
Makoto Onuki1a2cd742015-11-16 13:51:27 -0800255 * User restrictions that have already been applied in
256 * {@link #updateUserRestrictionsInternalLR(Bundle, int)}. We use it to detect restrictions
257 * that have changed since the last
258 * {@link #updateUserRestrictionsInternalLR(Bundle, int)} call.
Makoto Onuki4f160732015-10-27 17:15:38 -0700259 */
260 @GuardedBy("mRestrictionsLock")
261 private final SparseArray<Bundle> mAppliedUserRestrictions = new SparseArray<>();
262
Makoto Onuki1a2cd742015-11-16 13:51:27 -0800263 /**
Makoto Onukie7927da2015-11-25 10:05:17 -0800264 * User restrictions set by {@link com.android.server.devicepolicy.DevicePolicyManagerService}
265 * that should be applied to all users, including guests.
Makoto Onuki1a2cd742015-11-16 13:51:27 -0800266 */
267 @GuardedBy("mRestrictionsLock")
268 private Bundle mDevicePolicyGlobalUserRestrictions;
269
270 /**
Makoto Onukie7927da2015-11-25 10:05:17 -0800271 * User restrictions set by {@link com.android.server.devicepolicy.DevicePolicyManagerService}
272 * for each user.
Makoto Onuki1a2cd742015-11-16 13:51:27 -0800273 */
274 @GuardedBy("mRestrictionsLock")
275 private final SparseArray<Bundle> mDevicePolicyLocalUserRestrictions = new SparseArray<>();
276
Fyodor Kupolove80085d2015-11-06 18:21:39 -0800277 @GuardedBy("mGuestRestrictions")
Amith Yamasanie4afaa32014-06-30 14:55:07 +0530278 private final Bundle mGuestRestrictions = new Bundle();
Jeff Sharkeyffe0cb42012-11-05 17:24:43 -0800279
280 /**
281 * Set of user IDs being actively removed. Removed IDs linger in this set
282 * for several seconds to work around a VFS caching issue.
283 */
Fyodor Kupolov82402752015-10-28 14:54:51 -0700284 @GuardedBy("mUsersLock")
Jeff Sharkeyffe0cb42012-11-05 17:24:43 -0800285 private final SparseBooleanArray mRemovingUserIds = new SparseBooleanArray();
Dianne Hackborn4428e172012-08-24 17:43:05 -0700286
Fyodor Kupolov82402752015-10-28 14:54:51 -0700287 @GuardedBy("mUsersLock")
Amith Yamasani0b285492011-04-14 17:35:23 -0700288 private int[] mUserIds;
Fyodor Kupolove80085d2015-11-06 18:21:39 -0800289 @GuardedBy("mPackagesLock")
Amith Yamasani2a003292012-08-14 18:25:45 -0700290 private int mNextSerialNumber;
Amith Yamasani6f34b412012-10-22 18:19:27 -0700291 private int mUserVersion = 0;
Amith Yamasani0b285492011-04-14 17:35:23 -0700292
Jason Monk62062992014-05-06 09:55:28 -0400293 private IAppOpsService mAppOpsService;
294
Makoto Onuki068c54a2015-10-13 14:34:03 -0700295 private final LocalService mLocalService;
296
Makoto Onukie7927da2015-11-25 10:05:17 -0800297 @GuardedBy("mUsersLock")
298 private boolean mIsDeviceManaged;
299
300 @GuardedBy("mUsersLock")
301 private final SparseBooleanArray mIsUserManaged = new SparseBooleanArray();
302
Makoto Onukid45a4a22015-11-02 17:17:38 -0800303 @GuardedBy("mUserRestrictionsListeners")
304 private final ArrayList<UserRestrictionsListener> mUserRestrictionsListeners =
305 new ArrayList<>();
306
Clara Bayarria1771112015-12-18 16:29:18 +0000307 private final LockPatternUtils mLockPatternUtils;
308
Lenka Trochtovaf348e8e2016-01-07 17:20:34 +0100309 /**
310 * Whether all users should be created ephemeral.
311 */
312 @GuardedBy("mUsersLock")
313 private boolean mForceEphemeralUsers;
314
Amith Yamasani258848d2012-08-10 17:06:33 -0700315 private static UserManagerService sInstance;
Amith Yamasani258848d2012-08-10 17:06:33 -0700316
Dianne Hackborn4428e172012-08-24 17:43:05 -0700317 public static UserManagerService getInstance() {
318 synchronized (UserManagerService.class) {
319 return sInstance;
Amith Yamasani258848d2012-08-10 17:06:33 -0700320 }
Amith Yamasani258848d2012-08-10 17:06:33 -0700321 }
Amith Yamasani4b2e9342011-03-31 12:38:53 -0700322
Fyodor Kupolove80085d2015-11-06 18:21:39 -0800323 @VisibleForTesting
324 UserManagerService(File dataDir) {
325 this(null, null, new Object(), dataDir);
Amith Yamasani4b2e9342011-03-31 12:38:53 -0700326 }
327
Dianne Hackborn4428e172012-08-24 17:43:05 -0700328 /**
329 * Called by package manager to create the service. This is closely
330 * associated with the package manager, and the given lock is the
331 * package manager's own lock.
332 */
Fyodor Kupolove80085d2015-11-06 18:21:39 -0800333 UserManagerService(Context context, PackageManagerService pm, Object packagesLock) {
334 this(context, pm, packagesLock, Environment.getDataDirectory());
Amith Yamasani4b2e9342011-03-31 12:38:53 -0700335 }
336
Dianne Hackborn4428e172012-08-24 17:43:05 -0700337 private UserManagerService(Context context, PackageManagerService pm,
Fyodor Kupolove80085d2015-11-06 18:21:39 -0800338 Object packagesLock, File dataDir) {
Dianne Hackbornd4ac8d72012-09-27 23:20:10 -0700339 mContext = context;
340 mPm = pm;
Dianne Hackbornd4ac8d72012-09-27 23:20:10 -0700341 mPackagesLock = packagesLock;
Fyodor Kupolov75d0ea82014-12-15 16:21:07 -0800342 mHandler = new MainHandler();
Fyodor Kupolove80085d2015-11-06 18:21:39 -0800343 synchronized (mPackagesLock) {
344 mUsersDir = new File(dataDir, USER_INFO_DIR);
345 mUsersDir.mkdirs();
346 // Make zeroth user directory, for services to migrate their files to that location
347 File userZeroDir = new File(mUsersDir, String.valueOf(UserHandle.USER_SYSTEM));
348 userZeroDir.mkdirs();
349 FileUtils.setPermissions(mUsersDir.toString(),
350 FileUtils.S_IRWXU | FileUtils.S_IRWXG | FileUtils.S_IROTH | FileUtils.S_IXOTH,
351 -1, -1);
352 mUserListFile = new File(mUsersDir, USER_LIST_FILENAME);
353 initDefaultGuestRestrictions();
354 readUserListLP();
355 sInstance = this;
Xiaohui Chen4be96e42015-05-06 09:55:43 -0700356 }
Makoto Onuki068c54a2015-10-13 14:34:03 -0700357 mLocalService = new LocalService();
358 LocalServices.addService(UserManagerInternal.class, mLocalService);
Clara Bayarria1771112015-12-18 16:29:18 +0000359 mLockPatternUtils = new LockPatternUtils(mContext);
Xiaohui Chen4be96e42015-05-06 09:55:43 -0700360 }
361
362 void systemReady() {
Lenka Trochtovac4dd0212015-11-18 12:22:06 +0100363 // Prune out any partially created, partially removed and ephemeral users.
Fyodor Kupolove80085d2015-11-06 18:21:39 -0800364 ArrayList<UserInfo> partials = new ArrayList<>();
365 synchronized (mUsersLock) {
366 final int userSize = mUsers.size();
367 for (int i = 0; i < userSize; i++) {
Amith Yamasani12747872015-12-07 14:19:49 -0800368 UserInfo ui = mUsers.valueAt(i).info;
Lenka Trochtovac4dd0212015-11-18 12:22:06 +0100369 if ((ui.partial || ui.guestToRemove || ui.isEphemeral()) && i != 0) {
Fyodor Kupolove80085d2015-11-06 18:21:39 -0800370 partials.add(ui);
Dianne Hackbornd4ac8d72012-09-27 23:20:10 -0700371 }
Dianne Hackbornd4ac8d72012-09-27 23:20:10 -0700372 }
Dianne Hackborn4428e172012-08-24 17:43:05 -0700373 }
Fyodor Kupolove80085d2015-11-06 18:21:39 -0800374 final int partialsSize = partials.size();
375 for (int i = 0; i < partialsSize; i++) {
376 UserInfo ui = partials.get(i);
377 Slog.w(LOG_TAG, "Removing partially created user " + ui.id
378 + " (name=" + ui.name + ")");
379 removeUserState(ui.id);
380 }
Makoto Onuki1a2cd742015-11-16 13:51:27 -0800381
Xiaohui Chen70f6c382015-04-28 14:21:43 -0700382 onUserForeground(UserHandle.USER_SYSTEM);
Makoto Onuki1a2cd742015-11-16 13:51:27 -0800383
Jason Monk62062992014-05-06 09:55:28 -0400384 mAppOpsService = IAppOpsService.Stub.asInterface(
385 ServiceManager.getService(Context.APP_OPS_SERVICE));
Makoto Onuki1a2cd742015-11-16 13:51:27 -0800386
387 synchronized (mRestrictionsLock) {
388 applyUserRestrictionsLR(UserHandle.USER_SYSTEM);
Jason Monk62062992014-05-06 09:55:28 -0400389 }
Samuel Tand9453b82016-03-14 15:57:02 -0700390
391 UserInfo currentGuestUser = findCurrentGuestUser();
392 if (currentGuestUser != null && !hasUserRestriction(
393 UserManager.DISALLOW_CONFIG_WIFI, currentGuestUser.id)) {
394 // If a guest user currently exists, apply the DISALLOW_CONFIG_WIFI option
395 // to it, in case this guest was created in a previous version where this
396 // user restriction was not a default guest restriction.
397 setUserRestriction(UserManager.DISALLOW_CONFIG_WIFI, true, currentGuestUser.id);
398 }
Amith Yamasani258848d2012-08-10 17:06:33 -0700399 }
400
401 @Override
Xiaohui Chenb3b92582015-12-07 11:22:13 -0800402 public String getUserAccount(int userId) {
403 checkManageUserAndAcrossUsersFullPermission("get user account");
404 synchronized (mUsersLock) {
Amith Yamasani12747872015-12-07 14:19:49 -0800405 return mUsers.get(userId).account;
Xiaohui Chenb3b92582015-12-07 11:22:13 -0800406 }
407 }
408
409 @Override
410 public void setUserAccount(int userId, String accountName) {
411 checkManageUserAndAcrossUsersFullPermission("set user account");
Amith Yamasani12747872015-12-07 14:19:49 -0800412 UserData userToUpdate = null;
Xiaohui Chenb3b92582015-12-07 11:22:13 -0800413 synchronized (mPackagesLock) {
414 synchronized (mUsersLock) {
Amith Yamasani12747872015-12-07 14:19:49 -0800415 final UserData userData = mUsers.get(userId);
416 if (userData == null) {
417 Slog.e(LOG_TAG, "User not found for setting user account: u" + userId);
418 return;
419 }
420 String currentAccount = userData.account;
Xiaohui Chenb3b92582015-12-07 11:22:13 -0800421 if (!Objects.equal(currentAccount, accountName)) {
Amith Yamasani12747872015-12-07 14:19:49 -0800422 userData.account = accountName;
423 userToUpdate = userData;
Xiaohui Chenb3b92582015-12-07 11:22:13 -0800424 }
425 }
426
427 if (userToUpdate != null) {
428 writeUserLP(userToUpdate);
429 }
430 }
431 }
432
433 @Override
Xiaohui Chen70f6c382015-04-28 14:21:43 -0700434 public UserInfo getPrimaryUser() {
435 checkManageUsersPermission("query users");
Fyodor Kupolov82402752015-10-28 14:54:51 -0700436 synchronized (mUsersLock) {
Amith Yamasani515d4062015-09-28 11:30:06 -0700437 final int userSize = mUsers.size();
438 for (int i = 0; i < userSize; i++) {
Amith Yamasani12747872015-12-07 14:19:49 -0800439 UserInfo ui = mUsers.valueAt(i).info;
Xiaohui Chend3e9e182015-11-18 13:37:32 -0800440 if (ui.isPrimary() && !mRemovingUserIds.get(ui.id)) {
Xiaohui Chen70f6c382015-04-28 14:21:43 -0700441 return ui;
442 }
443 }
444 }
445 return null;
446 }
447
448 @Override
Xiaohui Chen594f2082015-08-18 11:04:20 -0700449 public @NonNull List<UserInfo> getUsers(boolean excludeDying) {
Amith Yamasani2a003292012-08-14 18:25:45 -0700450 checkManageUsersPermission("query users");
Fyodor Kupolov82402752015-10-28 14:54:51 -0700451 synchronized (mUsersLock) {
Amith Yamasani13593602012-03-22 16:16:17 -0700452 ArrayList<UserInfo> users = new ArrayList<UserInfo>(mUsers.size());
Amith Yamasani515d4062015-09-28 11:30:06 -0700453 final int userSize = mUsers.size();
454 for (int i = 0; i < userSize; i++) {
Amith Yamasani12747872015-12-07 14:19:49 -0800455 UserInfo ui = mUsers.valueAt(i).info;
Dianne Hackbornd4ac8d72012-09-27 23:20:10 -0700456 if (ui.partial) {
457 continue;
458 }
Jeff Sharkeyffe0cb42012-11-05 17:24:43 -0800459 if (!excludeDying || !mRemovingUserIds.get(ui.id)) {
Dianne Hackbornd4ac8d72012-09-27 23:20:10 -0700460 users.add(ui);
Amith Yamasani920ace02012-09-20 22:15:37 -0700461 }
Amith Yamasani13593602012-03-22 16:16:17 -0700462 }
463 return users;
Amith Yamasani4b2e9342011-03-31 12:38:53 -0700464 }
Amith Yamasani13593602012-03-22 16:16:17 -0700465 }
466
Amith Yamasani258848d2012-08-10 17:06:33 -0700467 @Override
Alexandra Gherghina385124d2014-04-03 13:37:39 +0100468 public List<UserInfo> getProfiles(int userId, boolean enabledOnly) {
Amith Yamasani4f582632014-02-19 14:31:52 -0800469 if (userId != UserHandle.getCallingUserId()) {
470 checkManageUsersPermission("getting profiles related to user " + userId);
471 }
Amith Yamasanibe465322014-04-24 13:45:17 -0700472 final long ident = Binder.clearCallingIdentity();
473 try {
Fyodor Kupolov82402752015-10-28 14:54:51 -0700474 synchronized (mUsersLock) {
475 return getProfilesLU(userId, enabledOnly);
Alexandra Gherghina385124d2014-04-03 13:37:39 +0100476 }
Amith Yamasanibe465322014-04-24 13:45:17 -0700477 } finally {
478 Binder.restoreCallingIdentity(ident);
Kenny Guya52dc3e2014-02-11 15:33:14 +0000479 }
480 }
481
Amith Yamasanibe465322014-04-24 13:45:17 -0700482 /** Assume permissions already checked and caller's identity cleared */
Fyodor Kupolov82402752015-10-28 14:54:51 -0700483 private List<UserInfo> getProfilesLU(int userId, boolean enabledOnly) {
484 UserInfo user = getUserInfoLU(userId);
Amith Yamasanibe465322014-04-24 13:45:17 -0700485 ArrayList<UserInfo> users = new ArrayList<UserInfo>(mUsers.size());
Amith Yamasanidda003f2014-08-28 18:06:51 -0700486 if (user == null) {
487 // Probably a dying user
488 return users;
489 }
Amith Yamasani515d4062015-09-28 11:30:06 -0700490 final int userSize = mUsers.size();
491 for (int i = 0; i < userSize; i++) {
Amith Yamasani12747872015-12-07 14:19:49 -0800492 UserInfo profile = mUsers.valueAt(i).info;
Amith Yamasanibe465322014-04-24 13:45:17 -0700493 if (!isProfileOf(user, profile)) {
494 continue;
495 }
Alexandra Gherghinadf35d572014-04-09 13:54:39 +0100496 if (enabledOnly && !profile.isEnabled()) {
497 continue;
Amith Yamasanibe465322014-04-24 13:45:17 -0700498 }
Amith Yamasani70fcf0c2014-07-11 08:40:19 -0700499 if (mRemovingUserIds.get(profile.id)) {
500 continue;
501 }
Amith Yamasanibe465322014-04-24 13:45:17 -0700502 users.add(profile);
503 }
504 return users;
505 }
506
Jessica Hummelbe81c802014-04-22 15:49:22 +0100507 @Override
Andres Moralesc5548c02015-08-05 10:23:12 -0700508 public int getCredentialOwnerProfile(int userHandle) {
509 checkManageUsersPermission("get the credential owner");
Clara Bayarria1771112015-12-18 16:29:18 +0000510 if (!mLockPatternUtils.isSeparateProfileChallengeEnabled(userHandle)) {
Fyodor Kupolov82402752015-10-28 14:54:51 -0700511 synchronized (mUsersLock) {
512 UserInfo profileParent = getProfileParentLU(userHandle);
Andres Moralesc5548c02015-08-05 10:23:12 -0700513 if (profileParent != null) {
514 return profileParent.id;
515 }
516 }
517 }
518
519 return userHandle;
520 }
521
522 @Override
Xiaohui Chenfd5b7742015-10-14 15:47:04 -0700523 public boolean isSameProfileGroup(int userId, int otherUserId) {
524 if (userId == otherUserId) return true;
525 checkManageUsersPermission("check if in the same profile group");
526 synchronized (mPackagesLock) {
Fyodor Kupolov82402752015-10-28 14:54:51 -0700527 return isSameProfileGroupLP(userId, otherUserId);
Xiaohui Chenfd5b7742015-10-14 15:47:04 -0700528 }
529 }
530
Fyodor Kupolov82402752015-10-28 14:54:51 -0700531 private boolean isSameProfileGroupLP(int userId, int otherUserId) {
532 synchronized (mUsersLock) {
533 UserInfo userInfo = getUserInfoLU(userId);
534 if (userInfo == null || userInfo.profileGroupId == UserInfo.NO_PROFILE_GROUP_ID) {
535 return false;
536 }
537 UserInfo otherUserInfo = getUserInfoLU(otherUserId);
538 if (otherUserInfo == null
539 || otherUserInfo.profileGroupId == UserInfo.NO_PROFILE_GROUP_ID) {
540 return false;
541 }
542 return userInfo.profileGroupId == otherUserInfo.profileGroupId;
Xiaohui Chenfd5b7742015-10-14 15:47:04 -0700543 }
Xiaohui Chenfd5b7742015-10-14 15:47:04 -0700544 }
545
546 @Override
Jessica Hummelbe81c802014-04-22 15:49:22 +0100547 public UserInfo getProfileParent(int userHandle) {
548 checkManageUsersPermission("get the profile parent");
Fyodor Kupolov82402752015-10-28 14:54:51 -0700549 synchronized (mUsersLock) {
550 return getProfileParentLU(userHandle);
Fyodor Kupolovff7233e2015-04-08 11:28:52 -0700551 }
552 }
553
Fyodor Kupolov82402752015-10-28 14:54:51 -0700554 private UserInfo getProfileParentLU(int userHandle) {
555 UserInfo profile = getUserInfoLU(userHandle);
Fyodor Kupolovff7233e2015-04-08 11:28:52 -0700556 if (profile == null) {
557 return null;
558 }
559 int parentUserId = profile.profileGroupId;
560 if (parentUserId == UserInfo.NO_PROFILE_GROUP_ID) {
561 return null;
562 } else {
Fyodor Kupolov82402752015-10-28 14:54:51 -0700563 return getUserInfoLU(parentUserId);
Jessica Hummelbe81c802014-04-22 15:49:22 +0100564 }
565 }
566
Fyodor Kupolov82402752015-10-28 14:54:51 -0700567 private static boolean isProfileOf(UserInfo user, UserInfo profile) {
Kenny Guy2a764942014-04-02 13:29:20 +0100568 return user.id == profile.id ||
569 (user.profileGroupId != UserInfo.NO_PROFILE_GROUP_ID
570 && user.profileGroupId == profile.profileGroupId);
Kenny Guya52dc3e2014-02-11 15:33:14 +0000571 }
572
Rubin Xu0a29ecd2015-11-04 15:11:48 +0000573 private void broadcastProfileAvailabilityChanges(UserHandle profileHandle,
Rubin Xuf13c9802016-01-21 18:06:00 +0000574 UserHandle parentHandle, boolean inQuietMode) {
575 Intent intent = new Intent(Intent.ACTION_MANAGED_PROFILE_AVAILABILITY_CHANGED);
576 intent.putExtra(Intent.EXTRA_QUIET_MODE, inQuietMode);
577 intent.putExtra(Intent.EXTRA_USER, profileHandle);
578 intent.putExtra(Intent.EXTRA_USER_HANDLE, profileHandle.getIdentifier());
Rubin Xu0a29ecd2015-11-04 15:11:48 +0000579 intent.addFlags(Intent.FLAG_RECEIVER_REGISTERED_ONLY);
Rubin Xuf13c9802016-01-21 18:06:00 +0000580 mContext.sendBroadcastAsUser(intent, parentHandle);
Rubin Xu0a29ecd2015-11-04 15:11:48 +0000581 }
582
583 @Override
584 public void setQuietModeEnabled(int userHandle, boolean enableQuietMode) {
585 checkManageUsersPermission("silence profile");
586 boolean changed = false;
587 UserInfo profile, parent;
588 synchronized (mPackagesLock) {
589 synchronized (mUsersLock) {
590 profile = getUserInfoLU(userHandle);
591 parent = getProfileParentLU(userHandle);
592
593 }
594 if (profile == null || !profile.isManagedProfile()) {
595 throw new IllegalArgumentException("User " + userHandle + " is not a profile");
596 }
597 if (profile.isQuietModeEnabled() != enableQuietMode) {
598 profile.flags ^= UserInfo.FLAG_QUIET_MODE;
Amith Yamasani12747872015-12-07 14:19:49 -0800599 writeUserLP(getUserDataLU(profile.id));
Rubin Xu0a29ecd2015-11-04 15:11:48 +0000600 changed = true;
601 }
602 }
603 if (changed) {
Rubin Xuf13c9802016-01-21 18:06:00 +0000604 long identity = Binder.clearCallingIdentity();
605 try {
606 if (enableQuietMode) {
607 ActivityManagerNative.getDefault().stopUser(userHandle, /* force */true, null);
608 } else {
609 ActivityManagerNative.getDefault().startUserInBackground(userHandle);
610 }
611 } catch (RemoteException e) {
612 Slog.e(LOG_TAG, "fail to start/stop user for quiet mode", e);
613 } finally {
614 Binder.restoreCallingIdentity(identity);
615 }
616
617 broadcastProfileAvailabilityChanges(profile.getUserHandle(), parent.getUserHandle(),
618 enableQuietMode);
Rubin Xu0a29ecd2015-11-04 15:11:48 +0000619 }
620 }
621
622 @Override
623 public boolean isQuietModeEnabled(int userHandle) {
624 synchronized (mPackagesLock) {
625 UserInfo info;
626 synchronized (mUsersLock) {
627 info = getUserInfoLU(userHandle);
628 }
629 if (info == null || !info.isManagedProfile()) {
Rubin Xuf13c9802016-01-21 18:06:00 +0000630 return false;
Rubin Xu0a29ecd2015-11-04 15:11:48 +0000631 }
632 return info.isQuietModeEnabled();
633 }
634 }
635
Kenny Guya52dc3e2014-02-11 15:33:14 +0000636 @Override
Alexandra Gherghinadf35d572014-04-09 13:54:39 +0100637 public void setUserEnabled(int userId) {
638 checkManageUsersPermission("enable user");
639 synchronized (mPackagesLock) {
Fyodor Kupolov82402752015-10-28 14:54:51 -0700640 UserInfo info;
641 synchronized (mUsersLock) {
642 info = getUserInfoLU(userId);
643 }
Alexandra Gherghinadf35d572014-04-09 13:54:39 +0100644 if (info != null && !info.isEnabled()) {
645 info.flags ^= UserInfo.FLAG_DISABLED;
Amith Yamasani12747872015-12-07 14:19:49 -0800646 writeUserLP(getUserDataLU(info.id));
Alexandra Gherghinadf35d572014-04-09 13:54:39 +0100647 }
648 }
649 }
650
651 @Override
Amith Yamasani258848d2012-08-10 17:06:33 -0700652 public UserInfo getUserInfo(int userId) {
Tony Makb531d082016-03-16 14:49:52 +0000653 int callingUserId = UserHandle.getCallingUserId();
654 if (callingUserId != userId && !hasManageUsersPermission()) {
655 synchronized (mPackagesLock) {
656 if (!isSameProfileGroupLP(callingUserId, userId)) {
657 throw new SecurityException(
658 "You need MANAGE_USERS permission to: query users outside profile" +
659 " group");
660 }
661 }
Tony Mak4dc008c2016-03-16 10:46:49 +0000662 }
Fyodor Kupolov82402752015-10-28 14:54:51 -0700663 synchronized (mUsersLock) {
664 return getUserInfoLU(userId);
Amith Yamasani13593602012-03-22 16:16:17 -0700665 }
666 }
667
Amith Yamasani71e6c692013-03-24 17:39:28 -0700668 @Override
669 public boolean isRestricted() {
Fyodor Kupolov82402752015-10-28 14:54:51 -0700670 synchronized (mUsersLock) {
671 return getUserInfoLU(UserHandle.getCallingUserId()).isRestricted();
Amith Yamasani71e6c692013-03-24 17:39:28 -0700672 }
673 }
674
Fyodor Kupolov1c363152015-09-02 13:27:21 -0700675 @Override
676 public boolean canHaveRestrictedProfile(int userId) {
677 checkManageUsersPermission("canHaveRestrictedProfile");
Fyodor Kupolov82402752015-10-28 14:54:51 -0700678 synchronized (mUsersLock) {
679 final UserInfo userInfo = getUserInfoLU(userId);
Fyodor Kupolov1c363152015-09-02 13:27:21 -0700680 if (userInfo == null || !userInfo.canHaveProfile()) {
681 return false;
682 }
683 if (!userInfo.isAdmin()) {
684 return false;
685 }
Makoto Onukie7927da2015-11-25 10:05:17 -0800686 // restricted profile can be created if there is no DO set and the admin user has no PO;
687 return !mIsDeviceManaged && !mIsUserManaged.get(userId);
Fyodor Kupolov1c363152015-09-02 13:27:21 -0700688 }
Fyodor Kupolov1c363152015-09-02 13:27:21 -0700689 }
690
Amith Yamasani195263742012-08-21 15:40:12 -0700691 /*
692 * Should be locked on mUsers before calling this.
693 */
Fyodor Kupolov82402752015-10-28 14:54:51 -0700694 private UserInfo getUserInfoLU(int userId) {
Amith Yamasani12747872015-12-07 14:19:49 -0800695 final UserData userData = mUsers.get(userId);
Amith Yamasani16389312012-10-17 21:20:14 -0700696 // If it is partial and not in the process of being removed, return as unknown user.
Amith Yamasani12747872015-12-07 14:19:49 -0800697 if (userData != null && userData.info.partial && !mRemovingUserIds.get(userId)) {
Dianne Hackbornd4ac8d72012-09-27 23:20:10 -0700698 Slog.w(LOG_TAG, "getUserInfo: unknown user #" + userId);
699 return null;
700 }
Amith Yamasani12747872015-12-07 14:19:49 -0800701 return userData != null ? userData.info : null;
702 }
703
704 private UserData getUserDataLU(int userId) {
705 final UserData userData = mUsers.get(userId);
706 // If it is partial and not in the process of being removed, return as unknown user.
707 if (userData != null && userData.info.partial && !mRemovingUserIds.get(userId)) {
708 return null;
709 }
710 return userData;
Amith Yamasani195263742012-08-21 15:40:12 -0700711 }
712
Fyodor Kupolov82402752015-10-28 14:54:51 -0700713 /**
714 * Obtains {@link #mUsersLock} and return UserInfo from mUsers.
715 * <p>No permissions checking or any addition checks are made</p>
716 */
717 private UserInfo getUserInfoNoChecks(int userId) {
718 synchronized (mUsersLock) {
Amith Yamasani12747872015-12-07 14:19:49 -0800719 final UserData userData = mUsers.get(userId);
720 return userData != null ? userData.info : null;
721 }
722 }
723
724 /**
725 * Obtains {@link #mUsersLock} and return UserData from mUsers.
726 * <p>No permissions checking or any addition checks are made</p>
727 */
728 private UserData getUserDataNoChecks(int userId) {
729 synchronized (mUsersLock) {
Fyodor Kupolov82402752015-10-28 14:54:51 -0700730 return mUsers.get(userId);
731 }
732 }
733
Amith Yamasani236b2b52015-08-18 14:32:14 -0700734 /** Called by PackageManagerService */
Amith Yamasani13593602012-03-22 16:16:17 -0700735 public boolean exists(int userId) {
Fyodor Kupolov82402752015-10-28 14:54:51 -0700736 return getUserInfoNoChecks(userId) != null;
Amith Yamasani13593602012-03-22 16:16:17 -0700737 }
738
Amith Yamasani258848d2012-08-10 17:06:33 -0700739 @Override
Amith Yamasanib8151ec2012-04-18 18:02:48 -0700740 public void setUserName(int userId, String name) {
Amith Yamasani2a003292012-08-14 18:25:45 -0700741 checkManageUsersPermission("rename users");
Dianne Hackbornd4ac8d72012-09-27 23:20:10 -0700742 boolean changed = false;
Dianne Hackborn4428e172012-08-24 17:43:05 -0700743 synchronized (mPackagesLock) {
Amith Yamasani12747872015-12-07 14:19:49 -0800744 UserData userData = getUserDataNoChecks(userId);
745 if (userData == null || userData.info.partial) {
Dianne Hackbornd4ac8d72012-09-27 23:20:10 -0700746 Slog.w(LOG_TAG, "setUserName: unknown user #" + userId);
747 return;
748 }
Amith Yamasani12747872015-12-07 14:19:49 -0800749 if (name != null && !name.equals(userData.info.name)) {
750 userData.info.name = name;
751 writeUserLP(userData);
Dianne Hackbornd4ac8d72012-09-27 23:20:10 -0700752 changed = true;
Amith Yamasani13593602012-03-22 16:16:17 -0700753 }
754 }
Dianne Hackbornd4ac8d72012-09-27 23:20:10 -0700755 if (changed) {
756 sendUserInfoChangedBroadcast(userId);
757 }
Amith Yamasani4b2e9342011-03-31 12:38:53 -0700758 }
759
Amith Yamasani258848d2012-08-10 17:06:33 -0700760 @Override
Amith Yamasanie928d7d2012-09-17 21:46:51 -0700761 public void setUserIcon(int userId, Bitmap bitmap) {
Amith Yamasani2a003292012-08-14 18:25:45 -0700762 checkManageUsersPermission("update users");
Oleksandr Peletskyi7f1f1df2016-01-18 15:40:21 +0100763 if (hasUserRestriction(UserManager.DISALLOW_SET_USER_ICON, userId)) {
764 Log.w(LOG_TAG, "Cannot set user icon. DISALLOW_SET_USER_ICON is enabled.");
765 return;
Amith Yamasanib8151ec2012-04-18 18:02:48 -0700766 }
Oleksandr Peletskyi7f1f1df2016-01-18 15:40:21 +0100767 mLocalService.setUserIcon(userId, bitmap);
Amith Yamasanie928d7d2012-09-17 21:46:51 -0700768 }
769
Oleksandr Peletskyi7f1f1df2016-01-18 15:40:21 +0100770
771
Amith Yamasanie928d7d2012-09-17 21:46:51 -0700772 private void sendUserInfoChangedBroadcast(int userId) {
773 Intent changedIntent = new Intent(Intent.ACTION_USER_INFO_CHANGED);
774 changedIntent.putExtra(Intent.EXTRA_USER_HANDLE, userId);
775 changedIntent.addFlags(Intent.FLAG_RECEIVER_REGISTERED_ONLY);
Amith Yamasani6fc1d4e2013-05-08 16:43:58 -0700776 mContext.sendBroadcastAsUser(changedIntent, UserHandle.ALL);
Amith Yamasanib8151ec2012-04-18 18:02:48 -0700777 }
778
Amith Yamasani258848d2012-08-10 17:06:33 -0700779 @Override
Oleksandr Peletskyicd6fa302016-02-25 16:28:39 +0100780 public ParcelFileDescriptor getUserIcon(int targetUserId) {
Adrian Roos1bdff912015-02-17 15:51:35 +0100781 String iconPath;
Amith Yamasani3b49f072012-09-17 10:21:43 -0700782 synchronized (mPackagesLock) {
Oleksandr Peletskyicd6fa302016-02-25 16:28:39 +0100783 UserInfo targetUserInfo = getUserInfoNoChecks(targetUserId);
784 if (targetUserInfo == null || targetUserInfo.partial) {
785 Slog.w(LOG_TAG, "getUserIcon: unknown user #" + targetUserId);
Dianne Hackbornd4ac8d72012-09-27 23:20:10 -0700786 return null;
787 }
Oleksandr Peletskyicd6fa302016-02-25 16:28:39 +0100788
789 final int callingUserId = UserHandle.getCallingUserId();
790 final int callingGroupId = getUserInfoNoChecks(callingUserId).profileGroupId;
791 final int targetGroupId = targetUserInfo.profileGroupId;
792 final boolean sameGroup = (callingGroupId != UserInfo.NO_PROFILE_GROUP_ID
793 && callingGroupId == targetGroupId);
794 if ((callingUserId != targetUserId) && !sameGroup) {
Nicolas Prevot88cc3462014-05-14 14:51:48 +0100795 checkManageUsersPermission("get the icon of a user who is not related");
796 }
Oleksandr Peletskyicd6fa302016-02-25 16:28:39 +0100797
798 if (targetUserInfo.iconPath == null) {
Dianne Hackbornd4ac8d72012-09-27 23:20:10 -0700799 return null;
800 }
Oleksandr Peletskyicd6fa302016-02-25 16:28:39 +0100801 iconPath = targetUserInfo.iconPath;
Amith Yamasani3b49f072012-09-17 10:21:43 -0700802 }
Adrian Roos1bdff912015-02-17 15:51:35 +0100803
804 try {
805 return ParcelFileDescriptor.open(
806 new File(iconPath), ParcelFileDescriptor.MODE_READ_ONLY);
807 } catch (FileNotFoundException e) {
808 Log.e(LOG_TAG, "Couldn't find icon file", e);
809 }
810 return null;
Amith Yamasani3b49f072012-09-17 10:21:43 -0700811 }
812
Dianne Hackborn5dc5a002012-09-15 19:33:48 -0700813 public void makeInitialized(int userId) {
814 checkManageUsersPermission("makeInitialized");
Fyodor Kupolove80085d2015-11-06 18:21:39 -0800815 boolean scheduleWriteUser = false;
Amith Yamasani12747872015-12-07 14:19:49 -0800816 UserData userData;
Fyodor Kupolove80085d2015-11-06 18:21:39 -0800817 synchronized (mUsersLock) {
Amith Yamasani12747872015-12-07 14:19:49 -0800818 userData = mUsers.get(userId);
819 if (userData == null || userData.info.partial) {
Dianne Hackbornd4ac8d72012-09-27 23:20:10 -0700820 Slog.w(LOG_TAG, "makeInitialized: unknown user #" + userId);
Fyodor Kupolove80085d2015-11-06 18:21:39 -0800821 return;
Dianne Hackbornd4ac8d72012-09-27 23:20:10 -0700822 }
Amith Yamasani12747872015-12-07 14:19:49 -0800823 if ((userData.info.flags & UserInfo.FLAG_INITIALIZED) == 0) {
824 userData.info.flags |= UserInfo.FLAG_INITIALIZED;
Fyodor Kupolove80085d2015-11-06 18:21:39 -0800825 scheduleWriteUser = true;
Dianne Hackborn5dc5a002012-09-15 19:33:48 -0700826 }
827 }
Fyodor Kupolove80085d2015-11-06 18:21:39 -0800828 if (scheduleWriteUser) {
Amith Yamasani12747872015-12-07 14:19:49 -0800829 scheduleWriteUser(userData);
Fyodor Kupolove80085d2015-11-06 18:21:39 -0800830 }
Dianne Hackborn5dc5a002012-09-15 19:33:48 -0700831 }
832
Amith Yamasaniaa6634e2014-10-06 14:20:28 -0700833 /**
834 * If default guest restrictions haven't been initialized yet, add the basic
835 * restrictions.
836 */
837 private void initDefaultGuestRestrictions() {
Fyodor Kupolove80085d2015-11-06 18:21:39 -0800838 synchronized (mGuestRestrictions) {
839 if (mGuestRestrictions.isEmpty()) {
Samuel Tand9453b82016-03-14 15:57:02 -0700840 mGuestRestrictions.putBoolean(UserManager.DISALLOW_CONFIG_WIFI, true);
Fyodor Kupolove04462c2015-11-30 15:02:53 -0800841 mGuestRestrictions.putBoolean(UserManager.DISALLOW_INSTALL_UNKNOWN_SOURCES, true);
Fyodor Kupolove80085d2015-11-06 18:21:39 -0800842 mGuestRestrictions.putBoolean(UserManager.DISALLOW_OUTGOING_CALLS, true);
843 mGuestRestrictions.putBoolean(UserManager.DISALLOW_SMS, true);
844 }
Amith Yamasaniaa6634e2014-10-06 14:20:28 -0700845 }
846 }
847
Amith Yamasanie4cf7342012-12-17 11:12:09 -0800848 @Override
Amith Yamasanie4afaa32014-06-30 14:55:07 +0530849 public Bundle getDefaultGuestRestrictions() {
850 checkManageUsersPermission("getDefaultGuestRestrictions");
Fyodor Kupolove80085d2015-11-06 18:21:39 -0800851 synchronized (mGuestRestrictions) {
Amith Yamasanie4afaa32014-06-30 14:55:07 +0530852 return new Bundle(mGuestRestrictions);
853 }
854 }
855
856 @Override
857 public void setDefaultGuestRestrictions(Bundle restrictions) {
858 checkManageUsersPermission("setDefaultGuestRestrictions");
Fyodor Kupolove80085d2015-11-06 18:21:39 -0800859 synchronized (mGuestRestrictions) {
860 mGuestRestrictions.clear();
861 mGuestRestrictions.putAll(restrictions);
862 }
863 synchronized (mPackagesLock) {
864 writeUserListLP();
Amith Yamasanie4afaa32014-06-30 14:55:07 +0530865 }
866 }
867
Makoto Onuki1a2cd742015-11-16 13:51:27 -0800868 /**
869 * See {@link UserManagerInternal#setDevicePolicyUserRestrictions(int, Bundle, Bundle)}
870 */
Makoto Onuki2a3c3da2016-02-18 14:25:30 -0800871 void setDevicePolicyUserRestrictionsInner(int userId, @NonNull Bundle local,
Makoto Onuki1a2cd742015-11-16 13:51:27 -0800872 @Nullable Bundle global) {
873 Preconditions.checkNotNull(local);
874 boolean globalChanged = false;
875 boolean localChanged;
876 synchronized (mRestrictionsLock) {
877 if (global != null) {
878 // Update global.
879 globalChanged = !UserRestrictionsUtils.areEqual(
880 mDevicePolicyGlobalUserRestrictions, global);
881 if (globalChanged) {
882 mDevicePolicyGlobalUserRestrictions = global;
883 }
884 }
885 {
886 // Update local.
887 final Bundle prev = mDevicePolicyLocalUserRestrictions.get(userId);
888 localChanged = !UserRestrictionsUtils.areEqual(prev, local);
889 if (localChanged) {
890 mDevicePolicyLocalUserRestrictions.put(userId, local);
891 }
892 }
893 }
894 if (DBG) {
895 Log.d(LOG_TAG, "setDevicePolicyUserRestrictions: userId=" + userId
896 + " global=" + global + (globalChanged ? " (changed)" : "")
897 + " local=" + local + (localChanged ? " (changed)" : "")
898 );
899 }
900 // Don't call them within the mRestrictionsLock.
901 synchronized (mPackagesLock) {
902 if (globalChanged) {
903 writeUserListLP();
904 }
905 if (localChanged) {
Amith Yamasani12747872015-12-07 14:19:49 -0800906 writeUserLP(getUserDataNoChecks(userId));
Makoto Onuki1a2cd742015-11-16 13:51:27 -0800907 }
908 }
909
910 synchronized (mRestrictionsLock) {
911 if (globalChanged) {
912 applyUserRestrictionsForAllUsersLR();
913 } else if (localChanged) {
914 applyUserRestrictionsLR(userId);
915 }
916 }
917 }
918
Makoto Onuki068c54a2015-10-13 14:34:03 -0700919 @GuardedBy("mRestrictionsLock")
Fyodor Kupolov82402752015-10-28 14:54:51 -0700920 private Bundle computeEffectiveUserRestrictionsLR(int userId) {
Makoto Onuki1a2cd742015-11-16 13:51:27 -0800921 final Bundle baseRestrictions =
922 UserRestrictionsUtils.nonNull(mBaseUserRestrictions.get(userId));
923 final Bundle global = mDevicePolicyGlobalUserRestrictions;
924 final Bundle local = mDevicePolicyLocalUserRestrictions.get(userId);
Makoto Onuki068c54a2015-10-13 14:34:03 -0700925
Makoto Onuki1a2cd742015-11-16 13:51:27 -0800926 if (UserRestrictionsUtils.isEmpty(global) && UserRestrictionsUtils.isEmpty(local)) {
927 // Common case first.
928 return baseRestrictions;
Makoto Onuki068c54a2015-10-13 14:34:03 -0700929 }
Makoto Onuki1a2cd742015-11-16 13:51:27 -0800930 final Bundle effective = UserRestrictionsUtils.clone(baseRestrictions);
931 UserRestrictionsUtils.merge(effective, global);
932 UserRestrictionsUtils.merge(effective, local);
933
Makoto Onuki068c54a2015-10-13 14:34:03 -0700934 return effective;
935 }
936
937 @GuardedBy("mRestrictionsLock")
Fyodor Kupolov82402752015-10-28 14:54:51 -0700938 private void invalidateEffectiveUserRestrictionsLR(int userId) {
Makoto Onuki068c54a2015-10-13 14:34:03 -0700939 if (DBG) {
940 Log.d(LOG_TAG, "invalidateEffectiveUserRestrictions userId=" + userId);
941 }
942 mCachedEffectiveUserRestrictions.remove(userId);
943 }
944
945 private Bundle getEffectiveUserRestrictions(int userId) {
946 synchronized (mRestrictionsLock) {
947 Bundle restrictions = mCachedEffectiveUserRestrictions.get(userId);
948 if (restrictions == null) {
Fyodor Kupolov82402752015-10-28 14:54:51 -0700949 restrictions = computeEffectiveUserRestrictionsLR(userId);
Makoto Onuki068c54a2015-10-13 14:34:03 -0700950 mCachedEffectiveUserRestrictions.put(userId, restrictions);
951 }
952 return restrictions;
Amith Yamasani8cd28b52014-06-08 17:54:27 -0700953 }
954 }
955
Makoto Onuki068c54a2015-10-13 14:34:03 -0700956 /** @return a specific user restriction that's in effect currently. */
957 @Override
958 public boolean hasUserRestriction(String restrictionKey, int userId) {
Makoto Onuki1f1ceef2016-01-28 11:32:32 -0800959 if (!UserRestrictionsUtils.isValidRestriction(restrictionKey)) {
960 return false;
961 }
Makoto Onuki068c54a2015-10-13 14:34:03 -0700962 Bundle restrictions = getEffectiveUserRestrictions(userId);
963 return restrictions != null && restrictions.getBoolean(restrictionKey);
964 }
965
966 /**
967 * @return UserRestrictions that are in effect currently. This always returns a new
968 * {@link Bundle}.
969 */
Amith Yamasani8cd28b52014-06-08 17:54:27 -0700970 @Override
Amith Yamasanie4cf7342012-12-17 11:12:09 -0800971 public Bundle getUserRestrictions(int userId) {
Makoto Onuki1a2cd742015-11-16 13:51:27 -0800972 return UserRestrictionsUtils.clone(getEffectiveUserRestrictions(userId));
Amith Yamasanie4cf7342012-12-17 11:12:09 -0800973 }
974
975 @Override
Zoltan Szatmary-Ban3bbcedd2015-11-26 13:45:51 +0000976 public boolean hasBaseUserRestriction(String restrictionKey, int userId) {
977 checkManageUsersPermission("hasBaseUserRestriction");
Makoto Onuki1f1ceef2016-01-28 11:32:32 -0800978 if (!UserRestrictionsUtils.isValidRestriction(restrictionKey)) {
979 return false;
980 }
Zoltan Szatmary-Ban3bbcedd2015-11-26 13:45:51 +0000981 synchronized (mRestrictionsLock) {
982 Bundle bundle = mBaseUserRestrictions.get(userId);
983 return (bundle != null && bundle.getBoolean(restrictionKey, false));
984 }
985 }
986
987 @Override
Fyodor Kupolovb5013302015-04-17 17:59:14 -0700988 public void setUserRestriction(String key, boolean value, int userId) {
Fyodor Kupolovd4b26042015-07-27 14:30:59 -0700989 checkManageUsersPermission("setUserRestriction");
Makoto Onuki1f1ceef2016-01-28 11:32:32 -0800990 if (!UserRestrictionsUtils.isValidRestriction(key)) {
991 return;
992 }
Makoto Onuki068c54a2015-10-13 14:34:03 -0700993 synchronized (mRestrictionsLock) {
994 // Note we can't modify Bundles stored in mBaseUserRestrictions directly, so create
995 // a copy.
Makoto Onuki1a2cd742015-11-16 13:51:27 -0800996 final Bundle newRestrictions = UserRestrictionsUtils.clone(
997 mBaseUserRestrictions.get(userId));
Makoto Onuki068c54a2015-10-13 14:34:03 -0700998 newRestrictions.putBoolean(key, value);
999
Fyodor Kupolov82402752015-10-28 14:54:51 -07001000 updateUserRestrictionsInternalLR(newRestrictions, userId);
Fyodor Kupolovb5013302015-04-17 17:59:14 -07001001 }
1002 }
1003
Makoto Onuki068c54a2015-10-13 14:34:03 -07001004 /**
Makoto Onuki1a2cd742015-11-16 13:51:27 -08001005 * Optionally updating user restrictions, calculate the effective user restrictions and also
1006 * propagate to other services and system settings.
Makoto Onuki068c54a2015-10-13 14:34:03 -07001007 *
Makoto Onuki1a2cd742015-11-16 13:51:27 -08001008 * @param newRestrictions User restrictions to set.
1009 * If null, will not update user restrictions and only does the propagation.
Makoto Onuki068c54a2015-10-13 14:34:03 -07001010 * @param userId target user ID.
1011 */
1012 @GuardedBy("mRestrictionsLock")
Fyodor Kupolov82402752015-10-28 14:54:51 -07001013 private void updateUserRestrictionsInternalLR(
Makoto Onuki068c54a2015-10-13 14:34:03 -07001014 @Nullable Bundle newRestrictions, int userId) {
Makoto Onuki1a2cd742015-11-16 13:51:27 -08001015
1016 final Bundle prevAppliedRestrictions = UserRestrictionsUtils.nonNull(
1017 mAppliedUserRestrictions.get(userId));
1018
1019 // Update base restrictions.
Makoto Onuki068c54a2015-10-13 14:34:03 -07001020 if (newRestrictions != null) {
1021 // If newRestrictions == the current one, it's probably a bug.
Makoto Onuki1a2cd742015-11-16 13:51:27 -08001022 final Bundle prevBaseRestrictions = mBaseUserRestrictions.get(userId);
1023
1024 Preconditions.checkState(prevBaseRestrictions != newRestrictions);
Makoto Onuki068c54a2015-10-13 14:34:03 -07001025 Preconditions.checkState(mCachedEffectiveUserRestrictions.get(userId)
1026 != newRestrictions);
Makoto Onuki1a2cd742015-11-16 13:51:27 -08001027
1028 if (!UserRestrictionsUtils.areEqual(prevBaseRestrictions, newRestrictions)) {
1029 mBaseUserRestrictions.put(userId, newRestrictions);
Amith Yamasani12747872015-12-07 14:19:49 -08001030 scheduleWriteUser(getUserDataNoChecks(userId));
Makoto Onuki1a2cd742015-11-16 13:51:27 -08001031 }
Makoto Onuki068c54a2015-10-13 14:34:03 -07001032 }
1033
Fyodor Kupolov82402752015-10-28 14:54:51 -07001034 final Bundle effective = computeEffectiveUserRestrictionsLR(userId);
Makoto Onuki068c54a2015-10-13 14:34:03 -07001035
Makoto Onuki759a7632015-10-28 16:43:10 -07001036 mCachedEffectiveUserRestrictions.put(userId, effective);
1037
Makoto Onuki1a2cd742015-11-16 13:51:27 -08001038 // Apply the new restrictions.
Makoto Onuki4f160732015-10-27 17:15:38 -07001039 if (DBG) {
Makoto Onuki1a2cd742015-11-16 13:51:27 -08001040 debug("Applying user restrictions: userId=" + userId
1041 + " new=" + effective + " prev=" + prevAppliedRestrictions);
Makoto Onuki4f160732015-10-27 17:15:38 -07001042 }
1043
Makoto Onuki1a2cd742015-11-16 13:51:27 -08001044 if (mAppOpsService != null) { // We skip it until system-ready.
1045 final long token = Binder.clearCallingIdentity();
1046 try {
Svet Ganov9cea80cd2016-02-16 11:47:00 -08001047 mAppOpsService.setUserRestrictions(effective, mUserRestriconToken, userId);
Makoto Onuki1a2cd742015-11-16 13:51:27 -08001048 } catch (RemoteException e) {
1049 Log.w(LOG_TAG, "Unable to notify AppOpsService of UserRestrictions");
1050 } finally {
1051 Binder.restoreCallingIdentity(token);
1052 }
Fyodor Kupolovb5013302015-04-17 17:59:14 -07001053 }
Makoto Onuki068c54a2015-10-13 14:34:03 -07001054
Makoto Onuki1a2cd742015-11-16 13:51:27 -08001055 propagateUserRestrictionsLR(userId, effective, prevAppliedRestrictions);
Makoto Onuki4f160732015-10-27 17:15:38 -07001056
Makoto Onuki1a2cd742015-11-16 13:51:27 -08001057 mAppliedUserRestrictions.put(userId, new Bundle(effective));
Makoto Onuki068c54a2015-10-13 14:34:03 -07001058 }
1059
Makoto Onuki1a2cd742015-11-16 13:51:27 -08001060 private void propagateUserRestrictionsLR(final int userId,
Makoto Onukid45a4a22015-11-02 17:17:38 -08001061 Bundle newRestrictions, Bundle prevRestrictions) {
Makoto Onuki1a2cd742015-11-16 13:51:27 -08001062 // Note this method doesn't touch any state, meaning it doesn't require mRestrictionsLock
1063 // actually, but we still need some kind of synchronization otherwise we might end up
1064 // calling listeners out-of-order, thus "LR".
1065
1066 if (UserRestrictionsUtils.areEqual(newRestrictions, prevRestrictions)) {
1067 return;
1068 }
Makoto Onukid45a4a22015-11-02 17:17:38 -08001069
1070 final Bundle newRestrictionsFinal = new Bundle(newRestrictions);
1071 final Bundle prevRestrictionsFinal = new Bundle(prevRestrictions);
1072
1073 mHandler.post(new Runnable() {
1074 @Override
1075 public void run() {
Fyodor Kupolov9cbfc9e2015-10-07 15:52:33 -07001076 UserRestrictionsUtils.applyUserRestrictions(
1077 mContext, userId, newRestrictionsFinal, prevRestrictionsFinal);
Makoto Onuki1a2cd742015-11-16 13:51:27 -08001078
Makoto Onukid45a4a22015-11-02 17:17:38 -08001079 final UserRestrictionsListener[] listeners;
1080 synchronized (mUserRestrictionsListeners) {
1081 listeners = new UserRestrictionsListener[mUserRestrictionsListeners.size()];
1082 mUserRestrictionsListeners.toArray(listeners);
1083 }
1084 for (int i = 0; i < listeners.length; i++) {
1085 listeners[i].onUserRestrictionsChanged(userId,
1086 newRestrictionsFinal, prevRestrictionsFinal);
1087 }
1088 }
1089 });
1090 }
1091
Makoto Onuki1a2cd742015-11-16 13:51:27 -08001092 // Package private for the inner class.
1093 void applyUserRestrictionsLR(int userId) {
Fyodor Kupolov82402752015-10-28 14:54:51 -07001094 updateUserRestrictionsInternalLR(null, userId);
Makoto Onuki068c54a2015-10-13 14:34:03 -07001095 }
1096
1097 @GuardedBy("mRestrictionsLock")
Makoto Onuki1a2cd742015-11-16 13:51:27 -08001098 // Package private for the inner class.
1099 void applyUserRestrictionsForAllUsersLR() {
1100 if (DBG) {
1101 debug("applyUserRestrictionsForAllUsersLR");
1102 }
Makoto Onuki068c54a2015-10-13 14:34:03 -07001103 // First, invalidate all cached values.
Makoto Onuki4f160732015-10-27 17:15:38 -07001104 mCachedEffectiveUserRestrictions.clear();
1105
Makoto Onuki068c54a2015-10-13 14:34:03 -07001106 // We don't want to call into ActivityManagerNative while taking a lock, so we'll call
1107 // it on a handler.
1108 final Runnable r = new Runnable() {
1109 @Override
1110 public void run() {
1111 // Then get the list of running users.
1112 final int[] runningUsers;
1113 try {
1114 runningUsers = ActivityManagerNative.getDefault().getRunningUserIds();
1115 } catch (RemoteException e) {
1116 Log.w(LOG_TAG, "Unable to access ActivityManagerNative");
1117 return;
1118 }
1119 // Then re-calculate the effective restrictions and apply, only for running users.
1120 // It's okay if a new user has started after the getRunningUserIds() call,
1121 // because we'll do the same thing (re-calculate the restrictions and apply)
1122 // when we start a user.
Makoto Onuki068c54a2015-10-13 14:34:03 -07001123 synchronized (mRestrictionsLock) {
1124 for (int i = 0; i < runningUsers.length; i++) {
Makoto Onuki1a2cd742015-11-16 13:51:27 -08001125 applyUserRestrictionsLR(runningUsers[i]);
Makoto Onuki068c54a2015-10-13 14:34:03 -07001126 }
1127 }
1128 }
1129 };
1130 mHandler.post(r);
Fyodor Kupolovb5013302015-04-17 17:59:14 -07001131 }
1132
Amith Yamasani258848d2012-08-10 17:06:33 -07001133 /**
Amith Yamasanifaea76f2012-09-11 10:59:48 -07001134 * Check if we've hit the limit of how many users can be created.
1135 */
Fyodor Kupolov82402752015-10-28 14:54:51 -07001136 private boolean isUserLimitReached() {
1137 int count;
1138 synchronized (mUsersLock) {
1139 count = getAliveUsersExcludingGuestsCountLU();
1140 }
1141 return count >= UserManager.getMaxSupportedUsers();
Nicolas Prevot12678a92015-05-13 12:15:03 -07001142 }
1143
1144 @Override
Nicolas Prevot07387fe2015-10-30 17:53:30 +00001145 public boolean canAddMoreManagedProfiles(int userId, boolean allowedToRemoveOne) {
Nicolas Prevot12678a92015-05-13 12:15:03 -07001146 checkManageUsersPermission("check if more managed profiles can be added.");
1147 if (ActivityManager.isLowRamDeviceStatic()) {
1148 return false;
1149 }
Fyodor Kupolovb6157992015-06-05 15:32:28 -07001150 if (!mContext.getPackageManager().hasSystemFeature(
1151 PackageManager.FEATURE_MANAGED_USERS)) {
1152 return false;
1153 }
Nicolas Prevotb8186812015-08-06 15:00:03 +01001154 // Limit number of managed profiles that can be created
Nicolas Prevot07387fe2015-10-30 17:53:30 +00001155 final int managedProfilesCount = getProfiles(userId, true).size() - 1;
1156 final int profilesRemovedCount = managedProfilesCount > 0 && allowedToRemoveOne ? 1 : 0;
1157 if (managedProfilesCount - profilesRemovedCount >= MAX_MANAGED_PROFILES) {
Nicolas Prevotb8186812015-08-06 15:00:03 +01001158 return false;
1159 }
Fyodor Kupolov82402752015-10-28 14:54:51 -07001160 synchronized(mUsersLock) {
1161 UserInfo userInfo = getUserInfoLU(userId);
Nicolas Prevotb8186812015-08-06 15:00:03 +01001162 if (!userInfo.canHaveProfile()) {
Nicolas Prevot12678a92015-05-13 12:15:03 -07001163 return false;
1164 }
Nicolas Prevot07387fe2015-10-30 17:53:30 +00001165 int usersCountAfterRemoving = getAliveUsersExcludingGuestsCountLU()
1166 - profilesRemovedCount;
Nicolas Prevot12678a92015-05-13 12:15:03 -07001167 // We allow creating a managed profile in the special case where there is only one user.
Nicolas Prevot07387fe2015-10-30 17:53:30 +00001168 return usersCountAfterRemoving == 1
1169 || usersCountAfterRemoving < UserManager.getMaxSupportedUsers();
Nicolas Prevot12678a92015-05-13 12:15:03 -07001170 }
1171 }
1172
Fyodor Kupolov82402752015-10-28 14:54:51 -07001173 private int getAliveUsersExcludingGuestsCountLU() {
Amith Yamasanif584f012014-05-19 17:57:25 -07001174 int aliveUserCount = 0;
1175 final int totalUserCount = mUsers.size();
1176 // Skip over users being removed
1177 for (int i = 0; i < totalUserCount; i++) {
Amith Yamasani12747872015-12-07 14:19:49 -08001178 UserInfo user = mUsers.valueAt(i).info;
Amith Yamasani95ab7842014-08-11 17:09:26 -07001179 if (!mRemovingUserIds.get(user.id)
Amith Yamasani1df14732014-08-29 21:37:27 -07001180 && !user.isGuest() && !user.partial) {
Amith Yamasanif584f012014-05-19 17:57:25 -07001181 aliveUserCount++;
1182 }
1183 }
Nicolas Prevot12678a92015-05-13 12:15:03 -07001184 return aliveUserCount;
Amith Yamasanifaea76f2012-09-11 10:59:48 -07001185 }
1186
1187 /**
Amith Yamasani195263742012-08-21 15:40:12 -07001188 * Enforces that only the system UID or root's UID or apps that have the
Xiaohui Chenb3b92582015-12-07 11:22:13 -08001189 * {@link android.Manifest.permission#MANAGE_USERS MANAGE_USERS} and
1190 * {@link android.Manifest.permission#INTERACT_ACROSS_USERS_FULL INTERACT_ACROSS_USERS_FULL}
1191 * permissions can make certain calls to the UserManager.
1192 *
1193 * @param message used as message if SecurityException is thrown
1194 * @throws SecurityException if the caller does not have enough privilege.
1195 */
1196 private static final void checkManageUserAndAcrossUsersFullPermission(String message) {
1197 final int uid = Binder.getCallingUid();
1198 if (uid != Process.SYSTEM_UID && uid != 0
1199 && ActivityManager.checkComponentPermission(
1200 Manifest.permission.MANAGE_USERS,
1201 uid, -1, true) != PackageManager.PERMISSION_GRANTED
1202 && ActivityManager.checkComponentPermission(
1203 Manifest.permission.INTERACT_ACROSS_USERS_FULL,
1204 uid, -1, true) != PackageManager.PERMISSION_GRANTED) {
1205 throw new SecurityException(
1206 "You need MANAGE_USERS and INTERACT_ACROSS_USERS_FULL permission to: "
1207 + message);
1208 }
1209 }
1210
1211 /**
1212 * Enforces that only the system UID or root's UID or apps that have the
Dianne Hackborn10ad9822014-03-17 11:28:36 -07001213 * {@link android.Manifest.permission#MANAGE_USERS MANAGE_USERS}
Amith Yamasani195263742012-08-21 15:40:12 -07001214 * permission can make certain calls to the UserManager.
Amith Yamasani258848d2012-08-10 17:06:33 -07001215 *
1216 * @param message used as message if SecurityException is thrown
1217 * @throws SecurityException if the caller is not system or root
Tony Mak4dc008c2016-03-16 10:46:49 +00001218 * @see #hasManageUsersPermission()
Amith Yamasani258848d2012-08-10 17:06:33 -07001219 */
Amith Yamasanibe465322014-04-24 13:45:17 -07001220 private static final void checkManageUsersPermission(String message) {
Tony Mak4dc008c2016-03-16 10:46:49 +00001221 if (!hasManageUsersPermission()) {
Amith Yamasanibe465322014-04-24 13:45:17 -07001222 throw new SecurityException("You need MANAGE_USERS permission to: " + message);
1223 }
Emily Bernier7a2b4d12014-04-23 12:51:35 -04001224 }
1225
Esteban Talavera5b9f1672015-12-11 15:22:34 +00001226 /**
Tony Mak4dc008c2016-03-16 10:46:49 +00001227 * @return whether the calling UID is system UID or root's UID or the calling app has the
1228 * {@link android.Manifest.permission#MANAGE_USERS MANAGE_USERS}.
1229 */
1230 private static final boolean hasManageUsersPermission() {
1231 final int callingUid = Binder.getCallingUid();
1232 return UserHandle.isSameApp(callingUid, Process.SYSTEM_UID)
1233 || callingUid == Process.ROOT_UID
1234 || ActivityManager.checkComponentPermission(
1235 android.Manifest.permission.MANAGE_USERS,
1236 callingUid, -1, true) == PackageManager.PERMISSION_GRANTED;
1237 }
1238
1239 /**
Esteban Talavera5b9f1672015-12-11 15:22:34 +00001240 * Enforces that only the system UID or root's UID (on any user) can make certain calls to the
1241 * UserManager.
1242 *
1243 * @param message used as message if SecurityException is thrown
1244 * @throws SecurityException if the caller is not system or root
1245 */
1246 private static void checkSystemOrRoot(String message) {
1247 final int uid = Binder.getCallingUid();
1248 if (!UserHandle.isSameApp(uid, Process.SYSTEM_UID) && uid != Process.ROOT_UID) {
1249 throw new SecurityException("Only system may: " + message);
1250 }
1251 }
1252
Fyodor Kupolov82402752015-10-28 14:54:51 -07001253 private void writeBitmapLP(UserInfo info, Bitmap bitmap) {
Amith Yamasanib8151ec2012-04-18 18:02:48 -07001254 try {
1255 File dir = new File(mUsersDir, Integer.toString(info.id));
1256 File file = new File(dir, USER_PHOTO_FILENAME);
Adrian Roos1bdff912015-02-17 15:51:35 +01001257 File tmp = new File(dir, USER_PHOTO_FILENAME_TMP);
Amith Yamasanib8151ec2012-04-18 18:02:48 -07001258 if (!dir.exists()) {
1259 dir.mkdir();
1260 FileUtils.setPermissions(
1261 dir.getPath(),
1262 FileUtils.S_IRWXU|FileUtils.S_IRWXG|FileUtils.S_IXOTH,
1263 -1, -1);
1264 }
Amith Yamasanie928d7d2012-09-17 21:46:51 -07001265 FileOutputStream os;
Adrian Roos1bdff912015-02-17 15:51:35 +01001266 if (bitmap.compress(Bitmap.CompressFormat.PNG, 100, os = new FileOutputStream(tmp))
Oleksandr Peletskyicd6fa302016-02-25 16:28:39 +01001267 && tmp.renameTo(file) && SELinux.restorecon(file)) {
Amith Yamasani3b49f072012-09-17 10:21:43 -07001268 info.iconPath = file.getAbsolutePath();
1269 }
Amith Yamasanie928d7d2012-09-17 21:46:51 -07001270 try {
1271 os.close();
1272 } catch (IOException ioe) {
1273 // What the ... !
1274 }
Adrian Roos1bdff912015-02-17 15:51:35 +01001275 tmp.delete();
Amith Yamasanib8151ec2012-04-18 18:02:48 -07001276 } catch (FileNotFoundException e) {
Amith Yamasani2a003292012-08-14 18:25:45 -07001277 Slog.w(LOG_TAG, "Error setting photo for user ", e);
Amith Yamasanib8151ec2012-04-18 18:02:48 -07001278 }
Amith Yamasanib8151ec2012-04-18 18:02:48 -07001279 }
1280
Amith Yamasani0b285492011-04-14 17:35:23 -07001281 /**
1282 * Returns an array of user ids. This array is cached here for quick access, so do not modify or
1283 * cache it elsewhere.
1284 * @return the array of user ids.
1285 */
Dianne Hackborn1676c852012-09-10 14:52:30 -07001286 public int[] getUserIds() {
Fyodor Kupolov82402752015-10-28 14:54:51 -07001287 synchronized (mUsersLock) {
Dianne Hackborn7767eac2012-08-23 18:25:40 -07001288 return mUserIds;
1289 }
Amith Yamasani0b285492011-04-14 17:35:23 -07001290 }
1291
Fyodor Kupolove80085d2015-11-06 18:21:39 -08001292 private void readUserListLP() {
Amith Yamasani4b2e9342011-03-31 12:38:53 -07001293 if (!mUserListFile.exists()) {
Fyodor Kupolove80085d2015-11-06 18:21:39 -08001294 fallbackToSingleUserLP();
Amith Yamasani4b2e9342011-03-31 12:38:53 -07001295 return;
1296 }
1297 FileInputStream fis = null;
Amith Yamasani2a003292012-08-14 18:25:45 -07001298 AtomicFile userListFile = new AtomicFile(mUserListFile);
Amith Yamasani4b2e9342011-03-31 12:38:53 -07001299 try {
Amith Yamasani2a003292012-08-14 18:25:45 -07001300 fis = userListFile.openRead();
Amith Yamasani4b2e9342011-03-31 12:38:53 -07001301 XmlPullParser parser = Xml.newPullParser();
Wojciech Staszkiewicz9e9e2e72015-05-08 14:58:46 +01001302 parser.setInput(fis, StandardCharsets.UTF_8.name());
Amith Yamasani4b2e9342011-03-31 12:38:53 -07001303 int type;
1304 while ((type = parser.next()) != XmlPullParser.START_TAG
1305 && type != XmlPullParser.END_DOCUMENT) {
Amith Yamasani12747872015-12-07 14:19:49 -08001306 // Skip
Amith Yamasani4b2e9342011-03-31 12:38:53 -07001307 }
1308
1309 if (type != XmlPullParser.START_TAG) {
Amith Yamasani0b285492011-04-14 17:35:23 -07001310 Slog.e(LOG_TAG, "Unable to read user list");
Fyodor Kupolove80085d2015-11-06 18:21:39 -08001311 fallbackToSingleUserLP();
Amith Yamasani4b2e9342011-03-31 12:38:53 -07001312 return;
1313 }
1314
Amith Yamasani2a003292012-08-14 18:25:45 -07001315 mNextSerialNumber = -1;
1316 if (parser.getName().equals(TAG_USERS)) {
1317 String lastSerialNumber = parser.getAttributeValue(null, ATTR_NEXT_SERIAL_NO);
1318 if (lastSerialNumber != null) {
1319 mNextSerialNumber = Integer.parseInt(lastSerialNumber);
1320 }
Amith Yamasani6f34b412012-10-22 18:19:27 -07001321 String versionNumber = parser.getAttributeValue(null, ATTR_USER_VERSION);
1322 if (versionNumber != null) {
1323 mUserVersion = Integer.parseInt(versionNumber);
1324 }
Amith Yamasani2a003292012-08-14 18:25:45 -07001325 }
1326
Makoto Onuki1a2cd742015-11-16 13:51:27 -08001327 final Bundle newDevicePolicyGlobalUserRestrictions = new Bundle();
1328
Amith Yamasani4b2e9342011-03-31 12:38:53 -07001329 while ((type = parser.next()) != XmlPullParser.END_DOCUMENT) {
Amith Yamasanie4afaa32014-06-30 14:55:07 +05301330 if (type == XmlPullParser.START_TAG) {
1331 final String name = parser.getName();
1332 if (name.equals(TAG_USER)) {
1333 String id = parser.getAttributeValue(null, ATTR_ID);
Amith Yamasani6f34b412012-10-22 18:19:27 -07001334
Amith Yamasani12747872015-12-07 14:19:49 -08001335 UserData userData = readUserLP(Integer.parseInt(id));
1336
1337 if (userData != null) {
Fyodor Kupolov82402752015-10-28 14:54:51 -07001338 synchronized (mUsersLock) {
Amith Yamasani12747872015-12-07 14:19:49 -08001339 mUsers.put(userData.info.id, userData);
1340 if (mNextSerialNumber < 0
1341 || mNextSerialNumber <= userData.info.id) {
1342 mNextSerialNumber = userData.info.id + 1;
Fyodor Kupolov82402752015-10-28 14:54:51 -07001343 }
Amith Yamasanie4afaa32014-06-30 14:55:07 +05301344 }
Amith Yamasani2a003292012-08-14 18:25:45 -07001345 }
Amith Yamasanie4afaa32014-06-30 14:55:07 +05301346 } else if (name.equals(TAG_GUEST_RESTRICTIONS)) {
Amith Yamasanida0b1682014-11-21 12:58:17 -08001347 while ((type = parser.next()) != XmlPullParser.END_DOCUMENT
1348 && type != XmlPullParser.END_TAG) {
1349 if (type == XmlPullParser.START_TAG) {
1350 if (parser.getName().equals(TAG_RESTRICTIONS)) {
Fyodor Kupolove80085d2015-11-06 18:21:39 -08001351 synchronized (mGuestRestrictions) {
1352 UserRestrictionsUtils
1353 .readRestrictions(parser, mGuestRestrictions);
1354 }
Makoto Onuki1a2cd742015-11-16 13:51:27 -08001355 } else if (parser.getName().equals(TAG_DEVICE_POLICY_RESTRICTIONS)
1356 ) {
1357 UserRestrictionsUtils.readRestrictions(parser,
1358 newDevicePolicyGlobalUserRestrictions);
Amith Yamasanida0b1682014-11-21 12:58:17 -08001359 }
1360 break;
1361 }
1362 }
Amith Yamasani258848d2012-08-10 17:06:33 -07001363 }
Amith Yamasani4b2e9342011-03-31 12:38:53 -07001364 }
1365 }
Makoto Onuki1a2cd742015-11-16 13:51:27 -08001366 synchronized (mRestrictionsLock) {
1367 mDevicePolicyGlobalUserRestrictions = newDevicePolicyGlobalUserRestrictions;
1368 }
Fyodor Kupolov82402752015-10-28 14:54:51 -07001369 updateUserIds();
Fyodor Kupolove80085d2015-11-06 18:21:39 -08001370 upgradeIfNecessaryLP();
1371 } catch (IOException | XmlPullParserException e) {
1372 fallbackToSingleUserLP();
Dianne Hackbornbfd89b32011-12-15 18:22:54 -08001373 } finally {
Fyodor Kupolove80085d2015-11-06 18:21:39 -08001374 IoUtils.closeQuietly(fis);
Amith Yamasani4b2e9342011-03-31 12:38:53 -07001375 }
1376 }
1377
Amith Yamasani6f34b412012-10-22 18:19:27 -07001378 /**
Amith Yamasanibc9625052012-11-15 14:39:18 -08001379 * Upgrade steps between versions, either for fixing bugs or changing the data format.
Amith Yamasani6f34b412012-10-22 18:19:27 -07001380 */
Fyodor Kupolove80085d2015-11-06 18:21:39 -08001381 private void upgradeIfNecessaryLP() {
Makoto Onuki1a2cd742015-11-16 13:51:27 -08001382 final int originalVersion = mUserVersion;
Amith Yamasani6f34b412012-10-22 18:19:27 -07001383 int userVersion = mUserVersion;
1384 if (userVersion < 1) {
1385 // Assign a proper name for the owner, if not initialized correctly before
Amith Yamasani12747872015-12-07 14:19:49 -08001386 UserData userData = getUserDataNoChecks(UserHandle.USER_SYSTEM);
1387 if ("Primary".equals(userData.info.name)) {
1388 userData.info.name =
1389 mContext.getResources().getString(com.android.internal.R.string.owner_name);
1390 scheduleWriteUser(userData);
Amith Yamasani6f34b412012-10-22 18:19:27 -07001391 }
1392 userVersion = 1;
1393 }
1394
Amith Yamasanibc9625052012-11-15 14:39:18 -08001395 if (userVersion < 2) {
1396 // Owner should be marked as initialized
Amith Yamasani12747872015-12-07 14:19:49 -08001397 UserData userData = getUserDataNoChecks(UserHandle.USER_SYSTEM);
1398 if ((userData.info.flags & UserInfo.FLAG_INITIALIZED) == 0) {
1399 userData.info.flags |= UserInfo.FLAG_INITIALIZED;
1400 scheduleWriteUser(userData);
Amith Yamasanibc9625052012-11-15 14:39:18 -08001401 }
1402 userVersion = 2;
1403 }
1404
Amith Yamasani350962c2013-08-06 11:18:53 -07001405
Amith Yamasani5e486f52013-08-07 11:06:44 -07001406 if (userVersion < 4) {
Amith Yamasani5e486f52013-08-07 11:06:44 -07001407 userVersion = 4;
1408 }
1409
Amith Yamasaniaa6634e2014-10-06 14:20:28 -07001410 if (userVersion < 5) {
1411 initDefaultGuestRestrictions();
1412 userVersion = 5;
1413 }
1414
Fyodor Kupolov1c363152015-09-02 13:27:21 -07001415 if (userVersion < 6) {
1416 final boolean splitSystemUser = UserManager.isSplitSystemUser();
Fyodor Kupolov82402752015-10-28 14:54:51 -07001417 synchronized (mUsersLock) {
1418 for (int i = 0; i < mUsers.size(); i++) {
Amith Yamasani12747872015-12-07 14:19:49 -08001419 UserData userData = mUsers.valueAt(i);
Fyodor Kupolov82402752015-10-28 14:54:51 -07001420 // In non-split mode, only user 0 can have restricted profiles
Amith Yamasani12747872015-12-07 14:19:49 -08001421 if (!splitSystemUser && userData.info.isRestricted()
1422 && (userData.info.restrictedProfileParentId
1423 == UserInfo.NO_PROFILE_GROUP_ID)) {
1424 userData.info.restrictedProfileParentId = UserHandle.USER_SYSTEM;
1425 scheduleWriteUser(userData);
Fyodor Kupolov82402752015-10-28 14:54:51 -07001426 }
Fyodor Kupolov1c363152015-09-02 13:27:21 -07001427 }
1428 }
1429 userVersion = 6;
1430 }
1431
Amith Yamasani6f34b412012-10-22 18:19:27 -07001432 if (userVersion < USER_VERSION) {
1433 Slog.w(LOG_TAG, "User version " + mUserVersion + " didn't upgrade as expected to "
1434 + USER_VERSION);
1435 } else {
1436 mUserVersion = userVersion;
Makoto Onuki1a2cd742015-11-16 13:51:27 -08001437
1438 if (originalVersion < mUserVersion) {
1439 writeUserListLP();
1440 }
Amith Yamasani6f34b412012-10-22 18:19:27 -07001441 }
1442 }
1443
Fyodor Kupolove80085d2015-11-06 18:21:39 -08001444 private void fallbackToSingleUserLP() {
Xiaohui Chenb31e14a2015-07-13 16:04:55 -07001445 int flags = UserInfo.FLAG_INITIALIZED;
1446 // In split system user mode, the admin and primary flags are assigned to the first human
1447 // user.
1448 if (!UserManager.isSplitSystemUser()) {
1449 flags |= UserInfo.FLAG_ADMIN | UserInfo.FLAG_PRIMARY;
1450 }
Xiaohui Chen70f6c382015-04-28 14:21:43 -07001451 // Create the system user
Xiaohui Chen70f6c382015-04-28 14:21:43 -07001452 UserInfo system = new UserInfo(UserHandle.USER_SYSTEM,
Amith Yamasani6f34b412012-10-22 18:19:27 -07001453 mContext.getResources().getString(com.android.internal.R.string.owner_name), null,
Xiaohui Chenb31e14a2015-07-13 16:04:55 -07001454 flags);
Amith Yamasani12747872015-12-07 14:19:49 -08001455 UserData userData = new UserData();
1456 userData.info = system;
Fyodor Kupolov82402752015-10-28 14:54:51 -07001457 synchronized (mUsersLock) {
Amith Yamasani12747872015-12-07 14:19:49 -08001458 mUsers.put(system.id, userData);
Fyodor Kupolov82402752015-10-28 14:54:51 -07001459 }
Amith Yamasani634cf312012-10-04 17:34:21 -07001460 mNextSerialNumber = MIN_USER_ID;
Geoffrey Borggaard15b8b2c2013-08-28 22:11:10 -04001461 mUserVersion = USER_VERSION;
Amith Yamasani67df64b2012-12-14 12:09:36 -08001462
Geoffrey Borggaarde45e45e32013-01-24 10:03:20 -05001463 Bundle restrictions = new Bundle();
Makoto Onuki068c54a2015-10-13 14:34:03 -07001464 synchronized (mRestrictionsLock) {
1465 mBaseUserRestrictions.append(UserHandle.USER_SYSTEM, restrictions);
1466 }
Amith Yamasani67df64b2012-12-14 12:09:36 -08001467
Fyodor Kupolov82402752015-10-28 14:54:51 -07001468 updateUserIds();
Amith Yamasaniaa6634e2014-10-06 14:20:28 -07001469 initDefaultGuestRestrictions();
Amith Yamasani4b2e9342011-03-31 12:38:53 -07001470
Fyodor Kupolove80085d2015-11-06 18:21:39 -08001471 writeUserListLP();
Amith Yamasani12747872015-12-07 14:19:49 -08001472 writeUserLP(userData);
Amith Yamasani4b2e9342011-03-31 12:38:53 -07001473 }
1474
Amith Yamasani12747872015-12-07 14:19:49 -08001475 private void scheduleWriteUser(UserData UserData) {
Makoto Onuki1a2cd742015-11-16 13:51:27 -08001476 if (DBG) {
1477 debug("scheduleWriteUser");
1478 }
Makoto Onuki9e935a32015-11-06 14:24:24 -08001479 // No need to wrap it within a lock -- worst case, we'll just post the same message
1480 // twice.
Amith Yamasani12747872015-12-07 14:19:49 -08001481 if (!mHandler.hasMessages(WRITE_USER_MSG, UserData)) {
1482 Message msg = mHandler.obtainMessage(WRITE_USER_MSG, UserData);
Fyodor Kupolov75d0ea82014-12-15 16:21:07 -08001483 mHandler.sendMessageDelayed(msg, WRITE_USER_DELAY);
1484 }
1485 }
1486
Amith Yamasani4b2e9342011-03-31 12:38:53 -07001487 /*
1488 * Writes the user file in this format:
1489 *
1490 * <user flags="20039023" id="0">
1491 * <name>Primary</name>
1492 * </user>
1493 */
Amith Yamasani12747872015-12-07 14:19:49 -08001494 private void writeUserLP(UserData userData) {
Makoto Onuki1a2cd742015-11-16 13:51:27 -08001495 if (DBG) {
Amith Yamasani12747872015-12-07 14:19:49 -08001496 debug("writeUserLP " + userData);
Makoto Onuki1a2cd742015-11-16 13:51:27 -08001497 }
Amith Yamasani742a6712011-05-04 14:49:28 -07001498 FileOutputStream fos = null;
Amith Yamasani12747872015-12-07 14:19:49 -08001499 AtomicFile userFile = new AtomicFile(new File(mUsersDir, userData.info.id + XML_SUFFIX));
Amith Yamasani4b2e9342011-03-31 12:38:53 -07001500 try {
Amith Yamasani2a003292012-08-14 18:25:45 -07001501 fos = userFile.startWrite();
Amith Yamasani4b2e9342011-03-31 12:38:53 -07001502 final BufferedOutputStream bos = new BufferedOutputStream(fos);
1503
1504 // XmlSerializer serializer = XmlUtils.serializerInstance();
1505 final XmlSerializer serializer = new FastXmlSerializer();
Wojciech Staszkiewicz9e9e2e72015-05-08 14:58:46 +01001506 serializer.setOutput(bos, StandardCharsets.UTF_8.name());
Amith Yamasani4b2e9342011-03-31 12:38:53 -07001507 serializer.startDocument(null, true);
1508 serializer.setFeature("http://xmlpull.org/v1/doc/features.html#indent-output", true);
1509
Amith Yamasani12747872015-12-07 14:19:49 -08001510 final UserInfo userInfo = userData.info;
Amith Yamasani4b2e9342011-03-31 12:38:53 -07001511 serializer.startTag(null, TAG_USER);
1512 serializer.attribute(null, ATTR_ID, Integer.toString(userInfo.id));
Amith Yamasani2a003292012-08-14 18:25:45 -07001513 serializer.attribute(null, ATTR_SERIAL_NO, Integer.toString(userInfo.serialNumber));
Amith Yamasani4b2e9342011-03-31 12:38:53 -07001514 serializer.attribute(null, ATTR_FLAGS, Integer.toString(userInfo.flags));
Amith Yamasani920ace02012-09-20 22:15:37 -07001515 serializer.attribute(null, ATTR_CREATION_TIME, Long.toString(userInfo.creationTime));
1516 serializer.attribute(null, ATTR_LAST_LOGGED_IN_TIME,
1517 Long.toString(userInfo.lastLoggedInTime));
Amith Yamasanib8151ec2012-04-18 18:02:48 -07001518 if (userInfo.iconPath != null) {
1519 serializer.attribute(null, ATTR_ICON_PATH, userInfo.iconPath);
1520 }
Dianne Hackbornd4ac8d72012-09-27 23:20:10 -07001521 if (userInfo.partial) {
1522 serializer.attribute(null, ATTR_PARTIAL, "true");
1523 }
Adam Lesinskieddeb492014-09-08 17:50:03 -07001524 if (userInfo.guestToRemove) {
1525 serializer.attribute(null, ATTR_GUEST_TO_REMOVE, "true");
1526 }
Kenny Guy2a764942014-04-02 13:29:20 +01001527 if (userInfo.profileGroupId != UserInfo.NO_PROFILE_GROUP_ID) {
1528 serializer.attribute(null, ATTR_PROFILE_GROUP_ID,
1529 Integer.toString(userInfo.profileGroupId));
Kenny Guya52dc3e2014-02-11 15:33:14 +00001530 }
Fyodor Kupolov06a484a2015-08-21 16:33:20 -07001531 if (userInfo.restrictedProfileParentId != UserInfo.NO_PROFILE_GROUP_ID) {
1532 serializer.attribute(null, ATTR_RESTRICTED_PROFILE_PARENT_ID,
1533 Integer.toString(userInfo.restrictedProfileParentId));
1534 }
Amith Yamasani12747872015-12-07 14:19:49 -08001535 // Write seed data
1536 if (userData.persistSeedData) {
1537 if (userData.seedAccountName != null) {
1538 serializer.attribute(null, ATTR_SEED_ACCOUNT_NAME, userData.seedAccountName);
1539 }
1540 if (userData.seedAccountType != null) {
1541 serializer.attribute(null, ATTR_SEED_ACCOUNT_TYPE, userData.seedAccountType);
1542 }
1543 }
Amith Yamasani4b2e9342011-03-31 12:38:53 -07001544 serializer.startTag(null, TAG_NAME);
1545 serializer.text(userInfo.name);
1546 serializer.endTag(null, TAG_NAME);
Makoto Onuki068c54a2015-10-13 14:34:03 -07001547 synchronized (mRestrictionsLock) {
Makoto Onuki1a2cd742015-11-16 13:51:27 -08001548 UserRestrictionsUtils.writeRestrictions(serializer,
1549 mBaseUserRestrictions.get(userInfo.id), TAG_RESTRICTIONS);
1550 UserRestrictionsUtils.writeRestrictions(serializer,
1551 mDevicePolicyLocalUserRestrictions.get(userInfo.id),
1552 TAG_DEVICE_POLICY_RESTRICTIONS);
Amith Yamasanie4cf7342012-12-17 11:12:09 -08001553 }
Amith Yamasani12747872015-12-07 14:19:49 -08001554
1555 if (userData.account != null) {
Xiaohui Chenb3b92582015-12-07 11:22:13 -08001556 serializer.startTag(null, TAG_ACCOUNT);
Amith Yamasani12747872015-12-07 14:19:49 -08001557 serializer.text(userData.account);
Xiaohui Chenb3b92582015-12-07 11:22:13 -08001558 serializer.endTag(null, TAG_ACCOUNT);
1559 }
1560
Amith Yamasani12747872015-12-07 14:19:49 -08001561 if (userData.persistSeedData && userData.seedAccountOptions != null) {
1562 serializer.startTag(null, TAG_SEED_ACCOUNT_OPTIONS);
1563 userData.seedAccountOptions.saveToXml(serializer);
1564 serializer.endTag(null, TAG_SEED_ACCOUNT_OPTIONS);
1565 }
Amith Yamasani4b2e9342011-03-31 12:38:53 -07001566 serializer.endTag(null, TAG_USER);
1567
1568 serializer.endDocument();
Amith Yamasani2a003292012-08-14 18:25:45 -07001569 userFile.finishWrite(fos);
1570 } catch (Exception ioe) {
Amith Yamasani12747872015-12-07 14:19:49 -08001571 Slog.e(LOG_TAG, "Error writing user info " + userData.info.id + "\n" + ioe);
Amith Yamasani2a003292012-08-14 18:25:45 -07001572 userFile.failWrite(fos);
Amith Yamasani4b2e9342011-03-31 12:38:53 -07001573 }
1574 }
1575
1576 /*
1577 * Writes the user list file in this format:
1578 *
Amith Yamasani2a003292012-08-14 18:25:45 -07001579 * <users nextSerialNumber="3">
Amith Yamasani4b2e9342011-03-31 12:38:53 -07001580 * <user id="0"></user>
1581 * <user id="2"></user>
1582 * </users>
1583 */
Fyodor Kupolove80085d2015-11-06 18:21:39 -08001584 private void writeUserListLP() {
Makoto Onuki1a2cd742015-11-16 13:51:27 -08001585 if (DBG) {
1586 debug("writeUserList");
1587 }
Amith Yamasani742a6712011-05-04 14:49:28 -07001588 FileOutputStream fos = null;
Amith Yamasani2a003292012-08-14 18:25:45 -07001589 AtomicFile userListFile = new AtomicFile(mUserListFile);
Amith Yamasani4b2e9342011-03-31 12:38:53 -07001590 try {
Amith Yamasani2a003292012-08-14 18:25:45 -07001591 fos = userListFile.startWrite();
Amith Yamasani4b2e9342011-03-31 12:38:53 -07001592 final BufferedOutputStream bos = new BufferedOutputStream(fos);
1593
1594 // XmlSerializer serializer = XmlUtils.serializerInstance();
1595 final XmlSerializer serializer = new FastXmlSerializer();
Wojciech Staszkiewicz9e9e2e72015-05-08 14:58:46 +01001596 serializer.setOutput(bos, StandardCharsets.UTF_8.name());
Amith Yamasani4b2e9342011-03-31 12:38:53 -07001597 serializer.startDocument(null, true);
1598 serializer.setFeature("http://xmlpull.org/v1/doc/features.html#indent-output", true);
1599
1600 serializer.startTag(null, TAG_USERS);
Amith Yamasani2a003292012-08-14 18:25:45 -07001601 serializer.attribute(null, ATTR_NEXT_SERIAL_NO, Integer.toString(mNextSerialNumber));
Amith Yamasani6f34b412012-10-22 18:19:27 -07001602 serializer.attribute(null, ATTR_USER_VERSION, Integer.toString(mUserVersion));
Amith Yamasani4b2e9342011-03-31 12:38:53 -07001603
Adam Lesinskieddeb492014-09-08 17:50:03 -07001604 serializer.startTag(null, TAG_GUEST_RESTRICTIONS);
Fyodor Kupolove80085d2015-11-06 18:21:39 -08001605 synchronized (mGuestRestrictions) {
1606 UserRestrictionsUtils
1607 .writeRestrictions(serializer, mGuestRestrictions, TAG_RESTRICTIONS);
1608 }
Amith Yamasanie4afaa32014-06-30 14:55:07 +05301609 serializer.endTag(null, TAG_GUEST_RESTRICTIONS);
Makoto Onuki1a2cd742015-11-16 13:51:27 -08001610 synchronized (mRestrictionsLock) {
1611 UserRestrictionsUtils.writeRestrictions(serializer,
1612 mDevicePolicyGlobalUserRestrictions, TAG_DEVICE_POLICY_RESTRICTIONS);
1613 }
Fyodor Kupolov82402752015-10-28 14:54:51 -07001614 int[] userIdsToWrite;
1615 synchronized (mUsersLock) {
1616 userIdsToWrite = new int[mUsers.size()];
1617 for (int i = 0; i < userIdsToWrite.length; i++) {
Amith Yamasani12747872015-12-07 14:19:49 -08001618 UserInfo user = mUsers.valueAt(i).info;
Fyodor Kupolov82402752015-10-28 14:54:51 -07001619 userIdsToWrite[i] = user.id;
1620 }
1621 }
1622 for (int id : userIdsToWrite) {
Amith Yamasani4b2e9342011-03-31 12:38:53 -07001623 serializer.startTag(null, TAG_USER);
Fyodor Kupolov82402752015-10-28 14:54:51 -07001624 serializer.attribute(null, ATTR_ID, Integer.toString(id));
Amith Yamasani4b2e9342011-03-31 12:38:53 -07001625 serializer.endTag(null, TAG_USER);
Amith Yamasani4b2e9342011-03-31 12:38:53 -07001626 }
1627
1628 serializer.endTag(null, TAG_USERS);
1629
1630 serializer.endDocument();
Amith Yamasani2a003292012-08-14 18:25:45 -07001631 userListFile.finishWrite(fos);
1632 } catch (Exception e) {
1633 userListFile.failWrite(fos);
Amith Yamasani0b285492011-04-14 17:35:23 -07001634 Slog.e(LOG_TAG, "Error writing user list");
Amith Yamasani4b2e9342011-03-31 12:38:53 -07001635 }
1636 }
1637
Amith Yamasani12747872015-12-07 14:19:49 -08001638 private UserData readUserLP(int id) {
Amith Yamasani4b2e9342011-03-31 12:38:53 -07001639 int flags = 0;
Amith Yamasani2a003292012-08-14 18:25:45 -07001640 int serialNumber = id;
Amith Yamasani4b2e9342011-03-31 12:38:53 -07001641 String name = null;
Xiaohui Chenb3b92582015-12-07 11:22:13 -08001642 String account = null;
Amith Yamasanib8151ec2012-04-18 18:02:48 -07001643 String iconPath = null;
Amith Yamasani920ace02012-09-20 22:15:37 -07001644 long creationTime = 0L;
1645 long lastLoggedInTime = 0L;
Kenny Guy2a764942014-04-02 13:29:20 +01001646 int profileGroupId = UserInfo.NO_PROFILE_GROUP_ID;
Fyodor Kupolov06a484a2015-08-21 16:33:20 -07001647 int restrictedProfileParentId = UserInfo.NO_PROFILE_GROUP_ID;
Dianne Hackbornd4ac8d72012-09-27 23:20:10 -07001648 boolean partial = false;
Adam Lesinskieddeb492014-09-08 17:50:03 -07001649 boolean guestToRemove = false;
Amith Yamasani12747872015-12-07 14:19:49 -08001650 boolean persistSeedData = false;
1651 String seedAccountName = null;
1652 String seedAccountType = null;
1653 PersistableBundle seedAccountOptions = null;
Makoto Onuki1a2cd742015-11-16 13:51:27 -08001654 Bundle baseRestrictions = new Bundle();
1655 Bundle localRestrictions = new Bundle();
Amith Yamasani4b2e9342011-03-31 12:38:53 -07001656
1657 FileInputStream fis = null;
1658 try {
Amith Yamasani2a003292012-08-14 18:25:45 -07001659 AtomicFile userFile =
Amith Yamasanifc95e702013-09-26 13:20:17 -07001660 new AtomicFile(new File(mUsersDir, Integer.toString(id) + XML_SUFFIX));
Amith Yamasani2a003292012-08-14 18:25:45 -07001661 fis = userFile.openRead();
Amith Yamasani4b2e9342011-03-31 12:38:53 -07001662 XmlPullParser parser = Xml.newPullParser();
Wojciech Staszkiewicz9e9e2e72015-05-08 14:58:46 +01001663 parser.setInput(fis, StandardCharsets.UTF_8.name());
Amith Yamasani4b2e9342011-03-31 12:38:53 -07001664 int type;
1665 while ((type = parser.next()) != XmlPullParser.START_TAG
1666 && type != XmlPullParser.END_DOCUMENT) {
Amith Yamasani12747872015-12-07 14:19:49 -08001667 // Skip
Amith Yamasani4b2e9342011-03-31 12:38:53 -07001668 }
1669
1670 if (type != XmlPullParser.START_TAG) {
Amith Yamasani0b285492011-04-14 17:35:23 -07001671 Slog.e(LOG_TAG, "Unable to read user " + id);
Amith Yamasani4b2e9342011-03-31 12:38:53 -07001672 return null;
1673 }
1674
1675 if (type == XmlPullParser.START_TAG && parser.getName().equals(TAG_USER)) {
Amith Yamasani920ace02012-09-20 22:15:37 -07001676 int storedId = readIntAttribute(parser, ATTR_ID, -1);
1677 if (storedId != id) {
Amith Yamasani0b285492011-04-14 17:35:23 -07001678 Slog.e(LOG_TAG, "User id does not match the file name");
Amith Yamasani4b2e9342011-03-31 12:38:53 -07001679 return null;
1680 }
Amith Yamasani920ace02012-09-20 22:15:37 -07001681 serialNumber = readIntAttribute(parser, ATTR_SERIAL_NO, id);
1682 flags = readIntAttribute(parser, ATTR_FLAGS, 0);
Amith Yamasanib8151ec2012-04-18 18:02:48 -07001683 iconPath = parser.getAttributeValue(null, ATTR_ICON_PATH);
Amith Yamasani920ace02012-09-20 22:15:37 -07001684 creationTime = readLongAttribute(parser, ATTR_CREATION_TIME, 0);
1685 lastLoggedInTime = readLongAttribute(parser, ATTR_LAST_LOGGED_IN_TIME, 0);
Kenny Guy2a764942014-04-02 13:29:20 +01001686 profileGroupId = readIntAttribute(parser, ATTR_PROFILE_GROUP_ID,
1687 UserInfo.NO_PROFILE_GROUP_ID);
Fyodor Kupolov06a484a2015-08-21 16:33:20 -07001688 restrictedProfileParentId = readIntAttribute(parser,
1689 ATTR_RESTRICTED_PROFILE_PARENT_ID, UserInfo.NO_PROFILE_GROUP_ID);
Dianne Hackbornd4ac8d72012-09-27 23:20:10 -07001690 String valueString = parser.getAttributeValue(null, ATTR_PARTIAL);
1691 if ("true".equals(valueString)) {
1692 partial = true;
1693 }
Adam Lesinskieddeb492014-09-08 17:50:03 -07001694 valueString = parser.getAttributeValue(null, ATTR_GUEST_TO_REMOVE);
1695 if ("true".equals(valueString)) {
1696 guestToRemove = true;
1697 }
Amith Yamasani4b2e9342011-03-31 12:38:53 -07001698
Amith Yamasani12747872015-12-07 14:19:49 -08001699 seedAccountName = parser.getAttributeValue(null, ATTR_SEED_ACCOUNT_NAME);
1700 seedAccountType = parser.getAttributeValue(null, ATTR_SEED_ACCOUNT_TYPE);
1701 if (seedAccountName != null || seedAccountType != null) {
1702 persistSeedData = true;
1703 }
1704
Amith Yamasanie4cf7342012-12-17 11:12:09 -08001705 int outerDepth = parser.getDepth();
1706 while ((type = parser.next()) != XmlPullParser.END_DOCUMENT
1707 && (type != XmlPullParser.END_TAG || parser.getDepth() > outerDepth)) {
1708 if (type == XmlPullParser.END_TAG || type == XmlPullParser.TEXT) {
1709 continue;
1710 }
1711 String tag = parser.getName();
1712 if (TAG_NAME.equals(tag)) {
1713 type = parser.next();
1714 if (type == XmlPullParser.TEXT) {
1715 name = parser.getText();
1716 }
1717 } else if (TAG_RESTRICTIONS.equals(tag)) {
Makoto Onuki1a2cd742015-11-16 13:51:27 -08001718 UserRestrictionsUtils.readRestrictions(parser, baseRestrictions);
1719 } else if (TAG_DEVICE_POLICY_RESTRICTIONS.equals(tag)) {
1720 UserRestrictionsUtils.readRestrictions(parser, localRestrictions);
Xiaohui Chenb3b92582015-12-07 11:22:13 -08001721 } else if (TAG_ACCOUNT.equals(tag)) {
1722 type = parser.next();
1723 if (type == XmlPullParser.TEXT) {
1724 account = parser.getText();
1725 }
Amith Yamasani12747872015-12-07 14:19:49 -08001726 } else if (TAG_SEED_ACCOUNT_OPTIONS.equals(tag)) {
1727 seedAccountOptions = PersistableBundle.restoreFromXml(parser);
1728 persistSeedData = true;
Amith Yamasani4b2e9342011-03-31 12:38:53 -07001729 }
1730 }
1731 }
Amith Yamasani4b2e9342011-03-31 12:38:53 -07001732
Amith Yamasani12747872015-12-07 14:19:49 -08001733 // Create the UserInfo object that gets passed around
Amith Yamasanib8151ec2012-04-18 18:02:48 -07001734 UserInfo userInfo = new UserInfo(id, name, iconPath, flags);
Amith Yamasani2a003292012-08-14 18:25:45 -07001735 userInfo.serialNumber = serialNumber;
Amith Yamasani920ace02012-09-20 22:15:37 -07001736 userInfo.creationTime = creationTime;
1737 userInfo.lastLoggedInTime = lastLoggedInTime;
Dianne Hackbornd4ac8d72012-09-27 23:20:10 -07001738 userInfo.partial = partial;
Adam Lesinskieddeb492014-09-08 17:50:03 -07001739 userInfo.guestToRemove = guestToRemove;
Kenny Guy2a764942014-04-02 13:29:20 +01001740 userInfo.profileGroupId = profileGroupId;
Fyodor Kupolov06a484a2015-08-21 16:33:20 -07001741 userInfo.restrictedProfileParentId = restrictedProfileParentId;
Amith Yamasani12747872015-12-07 14:19:49 -08001742
1743 // Create the UserData object that's internal to this class
1744 UserData userData = new UserData();
1745 userData.info = userInfo;
1746 userData.account = account;
1747 userData.seedAccountName = seedAccountName;
1748 userData.seedAccountType = seedAccountType;
1749 userData.persistSeedData = persistSeedData;
1750 userData.seedAccountOptions = seedAccountOptions;
1751
Makoto Onuki068c54a2015-10-13 14:34:03 -07001752 synchronized (mRestrictionsLock) {
Makoto Onuki1a2cd742015-11-16 13:51:27 -08001753 mBaseUserRestrictions.put(id, baseRestrictions);
1754 mDevicePolicyLocalUserRestrictions.put(id, localRestrictions);
Makoto Onuki068c54a2015-10-13 14:34:03 -07001755 }
Amith Yamasani12747872015-12-07 14:19:49 -08001756 return userData;
Amith Yamasani4b2e9342011-03-31 12:38:53 -07001757 } catch (IOException ioe) {
1758 } catch (XmlPullParserException pe) {
Dianne Hackbornbfd89b32011-12-15 18:22:54 -08001759 } finally {
1760 if (fis != null) {
1761 try {
1762 fis.close();
1763 } catch (IOException e) {
1764 }
1765 }
Amith Yamasani4b2e9342011-03-31 12:38:53 -07001766 }
1767 return null;
1768 }
1769
Amith Yamasani920ace02012-09-20 22:15:37 -07001770 private int readIntAttribute(XmlPullParser parser, String attr, int defaultValue) {
1771 String valueString = parser.getAttributeValue(null, attr);
1772 if (valueString == null) return defaultValue;
1773 try {
1774 return Integer.parseInt(valueString);
1775 } catch (NumberFormatException nfe) {
1776 return defaultValue;
1777 }
1778 }
1779
1780 private long readLongAttribute(XmlPullParser parser, String attr, long defaultValue) {
1781 String valueString = parser.getAttributeValue(null, attr);
1782 if (valueString == null) return defaultValue;
1783 try {
1784 return Long.parseLong(valueString);
1785 } catch (NumberFormatException nfe) {
1786 return defaultValue;
1787 }
1788 }
1789
Amith Yamasanib82add22013-07-09 11:24:44 -07001790 /**
Amith Yamasani1a7472e2013-07-02 11:17:30 -07001791 * Removes the app restrictions file for a specific package and user id, if it exists.
1792 */
1793 private void cleanAppRestrictionsForPackage(String pkg, int userId) {
1794 synchronized (mPackagesLock) {
1795 File dir = Environment.getUserSystemDirectory(userId);
Amith Yamasanifc95e702013-09-26 13:20:17 -07001796 File resFile = new File(dir, packageToRestrictionsFileName(pkg));
Amith Yamasani1a7472e2013-07-02 11:17:30 -07001797 if (resFile.exists()) {
1798 resFile.delete();
1799 }
1800 }
1801 }
1802
Kenny Guya52dc3e2014-02-11 15:33:14 +00001803 @Override
Kenny Guy2a764942014-04-02 13:29:20 +01001804 public UserInfo createProfileForUser(String name, int flags, int userId) {
Kenny Guya52dc3e2014-02-11 15:33:14 +00001805 checkManageUsersPermission("Only the system can create users");
Kenny Guy2a764942014-04-02 13:29:20 +01001806 return createUserInternal(name, flags, userId);
Kenny Guya52dc3e2014-02-11 15:33:14 +00001807 }
1808
Amith Yamasani258848d2012-08-10 17:06:33 -07001809 @Override
Amith Yamasani13593602012-03-22 16:16:17 -07001810 public UserInfo createUser(String name, int flags) {
Amith Yamasani2a003292012-08-14 18:25:45 -07001811 checkManageUsersPermission("Only the system can create users");
Nicolas Prevotc6d033e2014-02-27 13:11:09 +00001812 return createUserInternal(name, flags, UserHandle.USER_NULL);
Kenny Guya52dc3e2014-02-11 15:33:14 +00001813 }
Amith Yamasanifaea76f2012-09-11 10:59:48 -07001814
Jessica Hummelbe81c802014-04-22 15:49:22 +01001815 private UserInfo createUserInternal(String name, int flags, int parentId) {
Fyodor Kupolove80085d2015-11-06 18:21:39 -08001816 if (hasUserRestriction(UserManager.DISALLOW_ADD_USER, UserHandle.getCallingUserId())) {
Julia Reynolds75175022014-06-26 16:35:00 -04001817 Log.w(LOG_TAG, "Cannot add user. DISALLOW_ADD_USER is enabled.");
1818 return null;
1819 }
phweisse9c44062016-02-10 12:57:38 +01001820 return createUserInternalUnchecked(name, flags, parentId);
1821 }
1822
1823 private UserInfo createUserInternalUnchecked(String name, int flags, int parentId) {
Nicolas Prevot12678a92015-05-13 12:15:03 -07001824 if (ActivityManager.isLowRamDeviceStatic()) {
1825 return null;
1826 }
Amith Yamasani95ab7842014-08-11 17:09:26 -07001827 final boolean isGuest = (flags & UserInfo.FLAG_GUEST) != 0;
Nicolas Prevot12678a92015-05-13 12:15:03 -07001828 final boolean isManagedProfile = (flags & UserInfo.FLAG_MANAGED_PROFILE) != 0;
Fyodor Kupolov06a484a2015-08-21 16:33:20 -07001829 final boolean isRestricted = (flags & UserInfo.FLAG_RESTRICTED) != 0;
Dianne Hackborn5dc5a002012-09-15 19:33:48 -07001830 final long ident = Binder.clearCallingIdentity();
Fyodor Kupolove80085d2015-11-06 18:21:39 -08001831 UserInfo userInfo;
Amith Yamasani12747872015-12-07 14:19:49 -08001832 UserData userData;
Amith Yamasanibb054c92015-07-09 14:16:27 -07001833 final int userId;
Dianne Hackborn5dc5a002012-09-15 19:33:48 -07001834 try {
Fyodor Kupolove80085d2015-11-06 18:21:39 -08001835 synchronized (mPackagesLock) {
Amith Yamasani12747872015-12-07 14:19:49 -08001836 UserData parent = null;
Fyodor Kupolove80085d2015-11-06 18:21:39 -08001837 if (parentId != UserHandle.USER_NULL) {
1838 synchronized (mUsersLock) {
Amith Yamasani12747872015-12-07 14:19:49 -08001839 parent = getUserDataLU(parentId);
Nicolas Prevotc6d033e2014-02-27 13:11:09 +00001840 }
Fyodor Kupolove80085d2015-11-06 18:21:39 -08001841 if (parent == null) return null;
1842 }
1843 if (isManagedProfile && !canAddMoreManagedProfiles(parentId, false)) {
1844 Log.e(LOG_TAG, "Cannot add more managed profiles for user " + parentId);
1845 return null;
1846 }
1847 if (!isGuest && !isManagedProfile && isUserLimitReached()) {
1848 // If we're not adding a guest user or a managed profile and the limit has
1849 // been reached, cannot add a user.
1850 return null;
1851 }
1852 // If we're adding a guest and there already exists one, bail.
1853 if (isGuest && findCurrentGuestUser() != null) {
1854 return null;
1855 }
1856 // In legacy mode, restricted profile's parent can only be the owner user
1857 if (isRestricted && !UserManager.isSplitSystemUser()
1858 && (parentId != UserHandle.USER_SYSTEM)) {
1859 Log.w(LOG_TAG, "Cannot add restricted profile - parent user must be owner");
1860 return null;
1861 }
1862 if (isRestricted && UserManager.isSplitSystemUser()) {
1863 if (parent == null) {
1864 Log.w(LOG_TAG, "Cannot add restricted profile - parent user must be "
1865 + "specified");
Nicolas Prevot12678a92015-05-13 12:15:03 -07001866 return null;
1867 }
Amith Yamasani12747872015-12-07 14:19:49 -08001868 if (!parent.info.canHaveProfile()) {
Fyodor Kupolove80085d2015-11-06 18:21:39 -08001869 Log.w(LOG_TAG, "Cannot add restricted profile - profiles cannot be "
1870 + "created for the specified parent user id " + parentId);
Amith Yamasani95ab7842014-08-11 17:09:26 -07001871 return null;
1872 }
Fyodor Kupolove80085d2015-11-06 18:21:39 -08001873 }
Lenka Trochtova024f9792016-02-17 13:55:17 +01001874 if (!UserManager.isSplitSystemUser() && (flags & UserInfo.FLAG_EPHEMERAL) != 0) {
1875 Log.e(LOG_TAG,
1876 "Ephemeral users are supported on split-system-user systems only.");
1877 return null;
1878 }
Fyodor Kupolove80085d2015-11-06 18:21:39 -08001879 // In split system user mode, we assign the first human user the primary flag.
1880 // And if there is no device owner, we also assign the admin flag to primary user.
1881 if (UserManager.isSplitSystemUser()
1882 && !isGuest && !isManagedProfile && getPrimaryUser() == null) {
1883 flags |= UserInfo.FLAG_PRIMARY;
Makoto Onukie7927da2015-11-25 10:05:17 -08001884 synchronized (mUsersLock) {
1885 if (!mIsDeviceManaged) {
1886 flags |= UserInfo.FLAG_ADMIN;
1887 }
Amith Yamasani95ab7842014-08-11 17:09:26 -07001888 }
Fyodor Kupolove80085d2015-11-06 18:21:39 -08001889 }
Lenka Trochtovac4dd0212015-11-18 12:22:06 +01001890
Lenka Trochtovaf348e8e2016-01-07 17:20:34 +01001891 userId = getNextAvailableId();
1892 Environment.getUserSystemDirectory(userId).mkdirs();
Lenka Trochtova02fee152015-12-22 14:26:18 +01001893 boolean ephemeralGuests = Resources.getSystem()
1894 .getBoolean(com.android.internal.R.bool.config_guestUserEphemeral);
Lenka Trochtovaf348e8e2016-01-07 17:20:34 +01001895
Fyodor Kupolove80085d2015-11-06 18:21:39 -08001896 synchronized (mUsersLock) {
Lenka Trochtovaf348e8e2016-01-07 17:20:34 +01001897 // Add ephemeral flag to guests/users if required. Also inherit it from parent.
1898 if ((isGuest && ephemeralGuests) || mForceEphemeralUsers
1899 || (parent != null && parent.info.isEphemeral())) {
1900 flags |= UserInfo.FLAG_EPHEMERAL;
1901 }
1902
1903 userInfo = new UserInfo(userId, name, null, flags);
1904 userInfo.serialNumber = mNextSerialNumber++;
1905 long now = System.currentTimeMillis();
1906 userInfo.creationTime = (now > EPOCH_PLUS_30_YEARS) ? now : 0;
1907 userInfo.partial = true;
1908 userData = new UserData();
1909 userData.info = userInfo;
Amith Yamasani12747872015-12-07 14:19:49 -08001910 mUsers.put(userId, userData);
Fyodor Kupolove80085d2015-11-06 18:21:39 -08001911 }
1912 writeUserListLP();
1913 if (parent != null) {
1914 if (isManagedProfile) {
Amith Yamasani12747872015-12-07 14:19:49 -08001915 if (parent.info.profileGroupId == UserInfo.NO_PROFILE_GROUP_ID) {
1916 parent.info.profileGroupId = parent.info.id;
Fyodor Kupolove80085d2015-11-06 18:21:39 -08001917 writeUserLP(parent);
Kenny Guya52dc3e2014-02-11 15:33:14 +00001918 }
Amith Yamasani12747872015-12-07 14:19:49 -08001919 userInfo.profileGroupId = parent.info.profileGroupId;
Fyodor Kupolove80085d2015-11-06 18:21:39 -08001920 } else if (isRestricted) {
Amith Yamasani12747872015-12-07 14:19:49 -08001921 if (parent.info.restrictedProfileParentId == UserInfo.NO_PROFILE_GROUP_ID) {
1922 parent.info.restrictedProfileParentId = parent.info.id;
Fyodor Kupolove80085d2015-11-06 18:21:39 -08001923 writeUserLP(parent);
Jeff Sharkey6dce4962015-07-03 18:08:41 -07001924 }
Amith Yamasani12747872015-12-07 14:19:49 -08001925 userInfo.restrictedProfileParentId = parent.info.restrictedProfileParentId;
Makoto Onuki068c54a2015-10-13 14:34:03 -07001926 }
Dianne Hackborn5dc5a002012-09-15 19:33:48 -07001927 }
Dianne Hackborn4428e172012-08-24 17:43:05 -07001928 }
Fyodor Kupolove80085d2015-11-06 18:21:39 -08001929 final StorageManager storage = mContext.getSystemService(StorageManager.class);
Lenka Trochtovac4dd0212015-11-18 12:22:06 +01001930 storage.createUserKey(userId, userInfo.serialNumber, userInfo.isEphemeral());
Jeff Sharkey47f71082016-02-01 17:03:54 -07001931 prepareUserStorage(userId, userInfo.serialNumber,
1932 StorageManager.FLAG_STORAGE_DE | StorageManager.FLAG_STORAGE_CE);
Fyodor Kupolove80085d2015-11-06 18:21:39 -08001933 mPm.createNewUser(userId);
1934 userInfo.partial = false;
1935 synchronized (mPackagesLock) {
Amith Yamasani12747872015-12-07 14:19:49 -08001936 writeUserLP(userData);
Fyodor Kupolove80085d2015-11-06 18:21:39 -08001937 }
1938 updateUserIds();
1939 Bundle restrictions = new Bundle();
Fyodor Kupolove04462c2015-11-30 15:02:53 -08001940 if (isGuest) {
1941 synchronized (mGuestRestrictions) {
1942 restrictions.putAll(mGuestRestrictions);
1943 }
1944 }
Fyodor Kupolove80085d2015-11-06 18:21:39 -08001945 synchronized (mRestrictionsLock) {
1946 mBaseUserRestrictions.append(userId, restrictions);
1947 }
1948 mPm.newUserCreated(userId);
1949 Intent addedIntent = new Intent(Intent.ACTION_USER_ADDED);
1950 addedIntent.putExtra(Intent.EXTRA_USER_HANDLE, userId);
1951 mContext.sendBroadcastAsUser(addedIntent, UserHandle.ALL,
1952 android.Manifest.permission.MANAGE_USERS);
Fyodor Kupolov8385e4b2015-12-29 18:15:32 -08001953 MetricsLogger.count(mContext, isGuest ? TRON_GUEST_CREATED : TRON_USER_CREATED, 1);
Dianne Hackborn5dc5a002012-09-15 19:33:48 -07001954 } finally {
1955 Binder.restoreCallingIdentity(ident);
Amith Yamasani258848d2012-08-10 17:06:33 -07001956 }
Amith Yamasani4b2e9342011-03-31 12:38:53 -07001957 return userInfo;
1958 }
1959
Amith Yamasani0b285492011-04-14 17:35:23 -07001960 /**
Fyodor Kupolov02cb6e72015-09-18 18:20:55 -07001961 * @hide
1962 */
Amith Yamasani12747872015-12-07 14:19:49 -08001963 @Override
Fyodor Kupolov02cb6e72015-09-18 18:20:55 -07001964 public UserInfo createRestrictedProfile(String name, int parentUserId) {
1965 checkManageUsersPermission("setupRestrictedProfile");
1966 final UserInfo user = createProfileForUser(name, UserInfo.FLAG_RESTRICTED, parentUserId);
1967 if (user == null) {
1968 return null;
1969 }
Fyodor Kupolov9e912ba2016-02-09 18:29:43 -08001970 long identity = Binder.clearCallingIdentity();
1971 try {
1972 setUserRestriction(UserManager.DISALLOW_MODIFY_ACCOUNTS, true, user.id);
1973 // Change the setting before applying the DISALLOW_SHARE_LOCATION restriction, otherwise
1974 // the putIntForUser() will fail.
1975 android.provider.Settings.Secure.putIntForUser(mContext.getContentResolver(),
1976 android.provider.Settings.Secure.LOCATION_MODE,
1977 android.provider.Settings.Secure.LOCATION_MODE_OFF, user.id);
1978 setUserRestriction(UserManager.DISALLOW_SHARE_LOCATION, true, user.id);
1979 } finally {
1980 Binder.restoreCallingIdentity(identity);
1981 }
Fyodor Kupolov02cb6e72015-09-18 18:20:55 -07001982 return user;
1983 }
1984
1985 /**
Adam Lesinskieddeb492014-09-08 17:50:03 -07001986 * Find the current guest user. If the Guest user is partial,
1987 * then do not include it in the results as it is about to die.
Adam Lesinskieddeb492014-09-08 17:50:03 -07001988 */
Fyodor Kupolov82402752015-10-28 14:54:51 -07001989 private UserInfo findCurrentGuestUser() {
1990 synchronized (mUsersLock) {
1991 final int size = mUsers.size();
1992 for (int i = 0; i < size; i++) {
Amith Yamasani12747872015-12-07 14:19:49 -08001993 final UserInfo user = mUsers.valueAt(i).info;
Fyodor Kupolov82402752015-10-28 14:54:51 -07001994 if (user.isGuest() && !user.guestToRemove && !mRemovingUserIds.get(user.id)) {
1995 return user;
1996 }
Adam Lesinskieddeb492014-09-08 17:50:03 -07001997 }
1998 }
1999 return null;
2000 }
2001
2002 /**
Amith Yamasani1df14732014-08-29 21:37:27 -07002003 * Mark this guest user for deletion to allow us to create another guest
2004 * and switch to that user before actually removing this guest.
2005 * @param userHandle the userid of the current guest
2006 * @return whether the user could be marked for deletion
2007 */
Amith Yamasani12747872015-12-07 14:19:49 -08002008 @Override
Amith Yamasani1df14732014-08-29 21:37:27 -07002009 public boolean markGuestForDeletion(int userHandle) {
2010 checkManageUsersPermission("Only the system can remove users");
2011 if (getUserRestrictions(UserHandle.getCallingUserId()).getBoolean(
2012 UserManager.DISALLOW_REMOVE_USER, false)) {
2013 Log.w(LOG_TAG, "Cannot remove user. DISALLOW_REMOVE_USER is enabled.");
2014 return false;
2015 }
2016
2017 long ident = Binder.clearCallingIdentity();
2018 try {
Amith Yamasani12747872015-12-07 14:19:49 -08002019 final UserData userData;
Amith Yamasani1df14732014-08-29 21:37:27 -07002020 synchronized (mPackagesLock) {
Fyodor Kupolov82402752015-10-28 14:54:51 -07002021 synchronized (mUsersLock) {
Amith Yamasani12747872015-12-07 14:19:49 -08002022 userData = mUsers.get(userHandle);
2023 if (userHandle == 0 || userData == null || mRemovingUserIds.get(userHandle)) {
Fyodor Kupolov82402752015-10-28 14:54:51 -07002024 return false;
2025 }
Amith Yamasani1df14732014-08-29 21:37:27 -07002026 }
Amith Yamasani12747872015-12-07 14:19:49 -08002027 if (!userData.info.isGuest()) {
Amith Yamasani1df14732014-08-29 21:37:27 -07002028 return false;
2029 }
Adam Lesinskieddeb492014-09-08 17:50:03 -07002030 // We set this to a guest user that is to be removed. This is a temporary state
2031 // where we are allowed to add new Guest users, even if this one is still not
2032 // removed. This user will still show up in getUserInfo() calls.
2033 // If we don't get around to removing this Guest user, it will be purged on next
2034 // startup.
Amith Yamasani12747872015-12-07 14:19:49 -08002035 userData.info.guestToRemove = true;
Amith Yamasani1df14732014-08-29 21:37:27 -07002036 // Mark it as disabled, so that it isn't returned any more when
2037 // profiles are queried.
Amith Yamasani12747872015-12-07 14:19:49 -08002038 userData.info.flags |= UserInfo.FLAG_DISABLED;
2039 writeUserLP(userData);
Amith Yamasani1df14732014-08-29 21:37:27 -07002040 }
2041 } finally {
2042 Binder.restoreCallingIdentity(ident);
2043 }
2044 return true;
2045 }
2046
2047 /**
Amith Yamasani0b285492011-04-14 17:35:23 -07002048 * Removes a user and all data directories created for that user. This method should be called
2049 * after the user's processes have been terminated.
Dianne Hackborn10ad9822014-03-17 11:28:36 -07002050 * @param userHandle the user's id
Amith Yamasani0b285492011-04-14 17:35:23 -07002051 */
Amith Yamasani12747872015-12-07 14:19:49 -08002052 @Override
Amith Yamasani258848d2012-08-10 17:06:33 -07002053 public boolean removeUser(int userHandle) {
Amith Yamasani2a003292012-08-14 18:25:45 -07002054 checkManageUsersPermission("Only the system can remove users");
Julia Reynolds4ac5f852014-06-23 17:38:51 -04002055 if (getUserRestrictions(UserHandle.getCallingUserId()).getBoolean(
2056 UserManager.DISALLOW_REMOVE_USER, false)) {
2057 Log.w(LOG_TAG, "Cannot remove user. DISALLOW_REMOVE_USER is enabled.");
2058 return false;
2059 }
2060
Kenny Guyee58b4f2014-05-23 15:19:53 +01002061 long ident = Binder.clearCallingIdentity();
2062 try {
Amith Yamasani12747872015-12-07 14:19:49 -08002063 final UserData userData;
Fyodor Kupolov0df68cd2015-10-01 13:54:22 -07002064 int currentUser = ActivityManager.getCurrentUser();
2065 if (currentUser == userHandle) {
2066 Log.w(LOG_TAG, "Current user cannot be removed");
2067 return false;
2068 }
Kenny Guyee58b4f2014-05-23 15:19:53 +01002069 synchronized (mPackagesLock) {
Fyodor Kupolov82402752015-10-28 14:54:51 -07002070 synchronized (mUsersLock) {
Amith Yamasani12747872015-12-07 14:19:49 -08002071 userData = mUsers.get(userHandle);
2072 if (userHandle == 0 || userData == null || mRemovingUserIds.get(userHandle)) {
Fyodor Kupolov82402752015-10-28 14:54:51 -07002073 return false;
2074 }
Jeff Sharkey6eb09392014-11-14 15:57:59 -08002075
Fyodor Kupolov82402752015-10-28 14:54:51 -07002076 // We remember deleted user IDs to prevent them from being
2077 // reused during the current boot; they can still be reused
2078 // after a reboot.
2079 mRemovingUserIds.put(userHandle, true);
2080 }
Jeff Sharkey6eb09392014-11-14 15:57:59 -08002081
Kenny Guyee58b4f2014-05-23 15:19:53 +01002082 try {
2083 mAppOpsService.removeUser(userHandle);
2084 } catch (RemoteException e) {
2085 Log.w(LOG_TAG, "Unable to notify AppOpsService of removing user", e);
2086 }
2087 // Set this to a partially created user, so that the user will be purged
2088 // on next startup, in case the runtime stops now before stopping and
2089 // removing the user completely.
Amith Yamasani12747872015-12-07 14:19:49 -08002090 userData.info.partial = true;
Kenny Guyee58b4f2014-05-23 15:19:53 +01002091 // Mark it as disabled, so that it isn't returned any more when
2092 // profiles are queried.
Amith Yamasani12747872015-12-07 14:19:49 -08002093 userData.info.flags |= UserInfo.FLAG_DISABLED;
2094 writeUserLP(userData);
Kenny Guyee58b4f2014-05-23 15:19:53 +01002095 }
2096
Amith Yamasani12747872015-12-07 14:19:49 -08002097 if (userData.info.profileGroupId != UserInfo.NO_PROFILE_GROUP_ID
2098 && userData.info.isManagedProfile()) {
Kenny Guyee58b4f2014-05-23 15:19:53 +01002099 // Send broadcast to notify system that the user removed was a
2100 // managed user.
Amith Yamasani12747872015-12-07 14:19:49 -08002101 sendProfileRemovedBroadcast(userData.info.profileGroupId, userData.info.id);
Kenny Guyee58b4f2014-05-23 15:19:53 +01002102 }
2103
2104 if (DBG) Slog.i(LOG_TAG, "Stopping user " + userHandle);
2105 int res;
2106 try {
Fyodor Kupolov9cbfc9e2015-10-07 15:52:33 -07002107 res = ActivityManagerNative.getDefault().stopUser(userHandle, /* force= */ true,
2108 new IStopUserCallback.Stub() {
Kenny Guyee58b4f2014-05-23 15:19:53 +01002109 @Override
2110 public void userStopped(int userId) {
2111 finishRemoveUser(userId);
2112 }
2113 @Override
2114 public void userStopAborted(int userId) {
2115 }
2116 });
2117 } catch (RemoteException e) {
Dianne Hackborn80a4af22012-08-27 19:18:31 -07002118 return false;
2119 }
Kenny Guyee58b4f2014-05-23 15:19:53 +01002120 return res == ActivityManager.USER_OP_SUCCESS;
2121 } finally {
2122 Binder.restoreCallingIdentity(ident);
Dianne Hackborn80a4af22012-08-27 19:18:31 -07002123 }
Dianne Hackborn80a4af22012-08-27 19:18:31 -07002124 }
2125
Amith Yamasanidb6a14c2012-10-17 21:16:52 -07002126 void finishRemoveUser(final int userHandle) {
Amith Yamasani16389312012-10-17 21:20:14 -07002127 if (DBG) Slog.i(LOG_TAG, "finishRemoveUser " + userHandle);
Amith Yamasanidb6a14c2012-10-17 21:16:52 -07002128 // Let other services shutdown any activity and clean up their state before completely
2129 // wiping the user's system directory and removing from the user list
Dianne Hackborn5dc5a002012-09-15 19:33:48 -07002130 long ident = Binder.clearCallingIdentity();
2131 try {
2132 Intent addedIntent = new Intent(Intent.ACTION_USER_REMOVED);
2133 addedIntent.putExtra(Intent.EXTRA_USER_HANDLE, userHandle);
Amith Yamasanidb6a14c2012-10-17 21:16:52 -07002134 mContext.sendOrderedBroadcastAsUser(addedIntent, UserHandle.ALL,
2135 android.Manifest.permission.MANAGE_USERS,
2136
2137 new BroadcastReceiver() {
2138 @Override
2139 public void onReceive(Context context, Intent intent) {
2140 if (DBG) {
2141 Slog.i(LOG_TAG,
2142 "USER_REMOVED broadcast sent, cleaning up user data "
2143 + userHandle);
2144 }
2145 new Thread() {
Amith Yamasani12747872015-12-07 14:19:49 -08002146 @Override
Amith Yamasanidb6a14c2012-10-17 21:16:52 -07002147 public void run() {
Amith Yamasani515d4062015-09-28 11:30:06 -07002148 // Clean up any ActivityManager state
2149 LocalServices.getService(ActivityManagerInternal.class)
2150 .onUserRemoved(userHandle);
Fyodor Kupolove80085d2015-11-06 18:21:39 -08002151 removeUserState(userHandle);
Amith Yamasanidb6a14c2012-10-17 21:16:52 -07002152 }
2153 }.start();
2154 }
2155 },
2156
2157 null, Activity.RESULT_OK, null, null);
Dianne Hackborn5dc5a002012-09-15 19:33:48 -07002158 } finally {
2159 Binder.restoreCallingIdentity(ident);
2160 }
Amith Yamasani2a003292012-08-14 18:25:45 -07002161 }
2162
Fyodor Kupolove80085d2015-11-06 18:21:39 -08002163 private void removeUserState(final int userHandle) {
Jeff Sharkeyf9fc6d62015-11-08 16:46:05 -08002164 mContext.getSystemService(StorageManager.class).destroyUserKey(userHandle);
Dianne Hackbornd4ac8d72012-09-27 23:20:10 -07002165 // Cleanup package manager settings
Fyodor Kupolove80085d2015-11-06 18:21:39 -08002166 mPm.cleanUpUser(this, userHandle);
Dianne Hackbornd4ac8d72012-09-27 23:20:10 -07002167
2168 // Remove this user from the list
Fyodor Kupolov82402752015-10-28 14:54:51 -07002169 synchronized (mUsersLock) {
2170 mUsers.remove(userHandle);
Makoto Onukie7927da2015-11-25 10:05:17 -08002171 mIsUserManaged.delete(userHandle);
2172 }
2173 synchronized (mRestrictionsLock) {
2174 mBaseUserRestrictions.remove(userHandle);
2175 mAppliedUserRestrictions.remove(userHandle);
2176 mCachedEffectiveUserRestrictions.remove(userHandle);
2177 mDevicePolicyLocalUserRestrictions.remove(userHandle);
Fyodor Kupolov82402752015-10-28 14:54:51 -07002178 }
Dianne Hackbornd4ac8d72012-09-27 23:20:10 -07002179 // Remove user file
Amith Yamasanifc95e702013-09-26 13:20:17 -07002180 AtomicFile userFile = new AtomicFile(new File(mUsersDir, userHandle + XML_SUFFIX));
Dianne Hackbornd4ac8d72012-09-27 23:20:10 -07002181 userFile.delete();
2182 // Update the user list
Fyodor Kupolove80085d2015-11-06 18:21:39 -08002183 synchronized (mPackagesLock) {
2184 writeUserListLP();
2185 }
Fyodor Kupolov82402752015-10-28 14:54:51 -07002186 updateUserIds();
Amith Yamasani12747872015-12-07 14:19:49 -08002187 File userDir = Environment.getUserSystemDirectory(userHandle);
2188 File renamedUserDir = Environment.getUserSystemDirectory(UserHandle.USER_NULL - userHandle);
2189 if (userDir.renameTo(renamedUserDir)) {
2190 removeDirectoryRecursive(renamedUserDir);
2191 } else {
2192 removeDirectoryRecursive(userDir);
2193 }
Dianne Hackbornd4ac8d72012-09-27 23:20:10 -07002194 }
2195
Amith Yamasani61f57372012-08-31 12:12:28 -07002196 private void removeDirectoryRecursive(File parent) {
2197 if (parent.isDirectory()) {
2198 String[] files = parent.list();
2199 for (String filename : files) {
2200 File child = new File(parent, filename);
2201 removeDirectoryRecursive(child);
2202 }
2203 }
2204 parent.delete();
2205 }
2206
Kenny Guyf8d3a232014-05-15 16:09:52 +01002207 private void sendProfileRemovedBroadcast(int parentUserId, int removedUserId) {
Adam Connors7b66ed52014-04-14 11:58:10 +01002208 Intent managedProfileIntent = new Intent(Intent.ACTION_MANAGED_PROFILE_REMOVED);
Adam Connorsd4b584e2014-06-09 13:55:47 +01002209 managedProfileIntent.addFlags(Intent.FLAG_RECEIVER_REGISTERED_ONLY |
2210 Intent.FLAG_RECEIVER_FOREGROUND);
Kenny Guyf8d3a232014-05-15 16:09:52 +01002211 managedProfileIntent.putExtra(Intent.EXTRA_USER, new UserHandle(removedUserId));
Jeff Sharkeyaf6ec292015-12-17 11:19:00 -07002212 managedProfileIntent.putExtra(Intent.EXTRA_USER_HANDLE, removedUserId);
Kenny Guyf8d3a232014-05-15 16:09:52 +01002213 mContext.sendBroadcastAsUser(managedProfileIntent, new UserHandle(parentUserId), null);
Adam Connors7b66ed52014-04-14 11:58:10 +01002214 }
2215
Amith Yamasani2a003292012-08-14 18:25:45 -07002216 @Override
Amith Yamasani7e99bc02013-04-16 18:24:51 -07002217 public Bundle getApplicationRestrictions(String packageName) {
2218 return getApplicationRestrictionsForUser(packageName, UserHandle.getCallingUserId());
2219 }
2220
2221 @Override
2222 public Bundle getApplicationRestrictionsForUser(String packageName, int userId) {
Amith Yamasanidf2e92a2013-03-01 17:04:38 -08002223 if (UserHandle.getCallingUserId() != userId
Amith Yamasani9429afb2013-04-10 18:40:51 -07002224 || !UserHandle.isSameApp(Binder.getCallingUid(), getUidForPackage(packageName))) {
Esteban Talavera5b9f1672015-12-11 15:22:34 +00002225 checkSystemOrRoot("get application restrictions for other users/apps");
Amith Yamasanidf2e92a2013-03-01 17:04:38 -08002226 }
2227 synchronized (mPackagesLock) {
2228 // Read the restrictions from XML
Fyodor Kupolov82402752015-10-28 14:54:51 -07002229 return readApplicationRestrictionsLP(packageName, userId);
Amith Yamasanidf2e92a2013-03-01 17:04:38 -08002230 }
2231 }
2232
2233 @Override
Amith Yamasani7e99bc02013-04-16 18:24:51 -07002234 public void setApplicationRestrictions(String packageName, Bundle restrictions,
Amith Yamasanidf2e92a2013-03-01 17:04:38 -08002235 int userId) {
Esteban Talavera5b9f1672015-12-11 15:22:34 +00002236 checkSystemOrRoot("set application restrictions");
Amith Yamasanidf2e92a2013-03-01 17:04:38 -08002237 synchronized (mPackagesLock) {
Kenny Guyd21b2182014-07-17 16:38:55 +01002238 if (restrictions == null || restrictions.isEmpty()) {
2239 cleanAppRestrictionsForPackage(packageName, userId);
2240 } else {
2241 // Write the restrictions to XML
Fyodor Kupolov82402752015-10-28 14:54:51 -07002242 writeApplicationRestrictionsLP(packageName, restrictions, userId);
Kenny Guyd21b2182014-07-17 16:38:55 +01002243 }
Amith Yamasanidf2e92a2013-03-01 17:04:38 -08002244 }
Robin Lee66e5d962014-04-09 16:44:21 +01002245
Fyodor Kupolovd2846122016-02-11 18:06:34 -08002246 // Notify package of changes via an intent - only sent to explicitly registered receivers.
2247 Intent changeIntent = new Intent(Intent.ACTION_APPLICATION_RESTRICTIONS_CHANGED);
2248 changeIntent.setPackage(packageName);
2249 changeIntent.addFlags(Intent.FLAG_RECEIVER_REGISTERED_ONLY);
2250 mContext.sendBroadcastAsUser(changeIntent, UserHandle.of(userId));
Amith Yamasanidf2e92a2013-03-01 17:04:38 -08002251 }
2252
2253 private int getUidForPackage(String packageName) {
Amith Yamasani9429afb2013-04-10 18:40:51 -07002254 long ident = Binder.clearCallingIdentity();
Amith Yamasanidf2e92a2013-03-01 17:04:38 -08002255 try {
2256 return mContext.getPackageManager().getApplicationInfo(packageName,
Fyodor Kupolovd2846122016-02-11 18:06:34 -08002257 PackageManager.MATCH_UNINSTALLED_PACKAGES).uid;
Amith Yamasanidf2e92a2013-03-01 17:04:38 -08002258 } catch (NameNotFoundException nnfe) {
2259 return -1;
Amith Yamasani9429afb2013-04-10 18:40:51 -07002260 } finally {
2261 Binder.restoreCallingIdentity(ident);
Amith Yamasanidf2e92a2013-03-01 17:04:38 -08002262 }
2263 }
2264
Fyodor Kupolov82402752015-10-28 14:54:51 -07002265 private Bundle readApplicationRestrictionsLP(String packageName, int userId) {
Fyodor Kupolov262f9952015-03-23 18:55:11 -07002266 AtomicFile restrictionsFile =
2267 new AtomicFile(new File(Environment.getUserSystemDirectory(userId),
2268 packageToRestrictionsFileName(packageName)));
Fyodor Kupolov82402752015-10-28 14:54:51 -07002269 return readApplicationRestrictionsLP(restrictionsFile);
Fyodor Kupolov262f9952015-03-23 18:55:11 -07002270 }
2271
2272 @VisibleForTesting
Fyodor Kupolov82402752015-10-28 14:54:51 -07002273 static Bundle readApplicationRestrictionsLP(AtomicFile restrictionsFile) {
Amith Yamasani7e99bc02013-04-16 18:24:51 -07002274 final Bundle restrictions = new Bundle();
Fyodor Kupolov262f9952015-03-23 18:55:11 -07002275 final ArrayList<String> values = new ArrayList<>();
Fyodor Kupolov6f34d362015-04-02 12:42:13 -07002276 if (!restrictionsFile.getBaseFile().exists()) {
Fyodor Kupolovf6ee2242015-04-06 10:15:07 -07002277 return restrictions;
Fyodor Kupolov6f34d362015-04-02 12:42:13 -07002278 }
Amith Yamasanidf2e92a2013-03-01 17:04:38 -08002279
2280 FileInputStream fis = null;
2281 try {
Amith Yamasanidf2e92a2013-03-01 17:04:38 -08002282 fis = restrictionsFile.openRead();
2283 XmlPullParser parser = Xml.newPullParser();
Wojciech Staszkiewicz9e9e2e72015-05-08 14:58:46 +01002284 parser.setInput(fis, StandardCharsets.UTF_8.name());
Fyodor Kupolov262f9952015-03-23 18:55:11 -07002285 XmlUtils.nextElement(parser);
2286 if (parser.getEventType() != XmlPullParser.START_TAG) {
Amith Yamasanidf2e92a2013-03-01 17:04:38 -08002287 Slog.e(LOG_TAG, "Unable to read restrictions file "
2288 + restrictionsFile.getBaseFile());
Amith Yamasani7e99bc02013-04-16 18:24:51 -07002289 return restrictions;
Amith Yamasanidf2e92a2013-03-01 17:04:38 -08002290 }
Fyodor Kupolov262f9952015-03-23 18:55:11 -07002291 while (parser.next() != XmlPullParser.END_DOCUMENT) {
2292 readEntry(restrictions, values, parser);
Amith Yamasanidf2e92a2013-03-01 17:04:38 -08002293 }
Fyodor Kupolov262f9952015-03-23 18:55:11 -07002294 } catch (IOException|XmlPullParserException e) {
2295 Log.w(LOG_TAG, "Error parsing " + restrictionsFile.getBaseFile(), e);
Amith Yamasanidf2e92a2013-03-01 17:04:38 -08002296 } finally {
Fyodor Kupolov262f9952015-03-23 18:55:11 -07002297 IoUtils.closeQuietly(fis);
Amith Yamasanidf2e92a2013-03-01 17:04:38 -08002298 }
Amith Yamasani7e99bc02013-04-16 18:24:51 -07002299 return restrictions;
Amith Yamasanidf2e92a2013-03-01 17:04:38 -08002300 }
2301
Fyodor Kupolov262f9952015-03-23 18:55:11 -07002302 private static void readEntry(Bundle restrictions, ArrayList<String> values,
2303 XmlPullParser parser) throws XmlPullParserException, IOException {
2304 int type = parser.getEventType();
2305 if (type == XmlPullParser.START_TAG && parser.getName().equals(TAG_ENTRY)) {
2306 String key = parser.getAttributeValue(null, ATTR_KEY);
2307 String valType = parser.getAttributeValue(null, ATTR_VALUE_TYPE);
2308 String multiple = parser.getAttributeValue(null, ATTR_MULTIPLE);
2309 if (multiple != null) {
2310 values.clear();
2311 int count = Integer.parseInt(multiple);
2312 while (count > 0 && (type = parser.next()) != XmlPullParser.END_DOCUMENT) {
2313 if (type == XmlPullParser.START_TAG
2314 && parser.getName().equals(TAG_VALUE)) {
2315 values.add(parser.nextText().trim());
2316 count--;
2317 }
2318 }
2319 String [] valueStrings = new String[values.size()];
2320 values.toArray(valueStrings);
2321 restrictions.putStringArray(key, valueStrings);
2322 } else if (ATTR_TYPE_BUNDLE.equals(valType)) {
2323 restrictions.putBundle(key, readBundleEntry(parser, values));
2324 } else if (ATTR_TYPE_BUNDLE_ARRAY.equals(valType)) {
2325 final int outerDepth = parser.getDepth();
2326 ArrayList<Bundle> bundleList = new ArrayList<>();
2327 while (XmlUtils.nextElementWithin(parser, outerDepth)) {
2328 Bundle childBundle = readBundleEntry(parser, values);
2329 bundleList.add(childBundle);
2330 }
2331 restrictions.putParcelableArray(key,
2332 bundleList.toArray(new Bundle[bundleList.size()]));
2333 } else {
2334 String value = parser.nextText().trim();
2335 if (ATTR_TYPE_BOOLEAN.equals(valType)) {
2336 restrictions.putBoolean(key, Boolean.parseBoolean(value));
2337 } else if (ATTR_TYPE_INTEGER.equals(valType)) {
2338 restrictions.putInt(key, Integer.parseInt(value));
2339 } else {
2340 restrictions.putString(key, value);
2341 }
2342 }
2343 }
2344 }
2345
2346 private static Bundle readBundleEntry(XmlPullParser parser, ArrayList<String> values)
2347 throws IOException, XmlPullParserException {
2348 Bundle childBundle = new Bundle();
2349 final int outerDepth = parser.getDepth();
2350 while (XmlUtils.nextElementWithin(parser, outerDepth)) {
2351 readEntry(childBundle, values, parser);
2352 }
2353 return childBundle;
2354 }
2355
Fyodor Kupolov82402752015-10-28 14:54:51 -07002356 private void writeApplicationRestrictionsLP(String packageName,
Amith Yamasani7e99bc02013-04-16 18:24:51 -07002357 Bundle restrictions, int userId) {
Amith Yamasanidf2e92a2013-03-01 17:04:38 -08002358 AtomicFile restrictionsFile = new AtomicFile(
2359 new File(Environment.getUserSystemDirectory(userId),
Amith Yamasanifc95e702013-09-26 13:20:17 -07002360 packageToRestrictionsFileName(packageName)));
Fyodor Kupolov82402752015-10-28 14:54:51 -07002361 writeApplicationRestrictionsLP(restrictions, restrictionsFile);
Fyodor Kupolov262f9952015-03-23 18:55:11 -07002362 }
2363
2364 @VisibleForTesting
Fyodor Kupolov82402752015-10-28 14:54:51 -07002365 static void writeApplicationRestrictionsLP(Bundle restrictions, AtomicFile restrictionsFile) {
Fyodor Kupolov262f9952015-03-23 18:55:11 -07002366 FileOutputStream fos = null;
Amith Yamasanidf2e92a2013-03-01 17:04:38 -08002367 try {
2368 fos = restrictionsFile.startWrite();
2369 final BufferedOutputStream bos = new BufferedOutputStream(fos);
2370
Amith Yamasanidf2e92a2013-03-01 17:04:38 -08002371 final XmlSerializer serializer = new FastXmlSerializer();
Wojciech Staszkiewicz9e9e2e72015-05-08 14:58:46 +01002372 serializer.setOutput(bos, StandardCharsets.UTF_8.name());
Amith Yamasanidf2e92a2013-03-01 17:04:38 -08002373 serializer.startDocument(null, true);
2374 serializer.setFeature("http://xmlpull.org/v1/doc/features.html#indent-output", true);
2375
2376 serializer.startTag(null, TAG_RESTRICTIONS);
Fyodor Kupolov262f9952015-03-23 18:55:11 -07002377 writeBundle(restrictions, serializer);
Amith Yamasanidf2e92a2013-03-01 17:04:38 -08002378 serializer.endTag(null, TAG_RESTRICTIONS);
2379
2380 serializer.endDocument();
2381 restrictionsFile.finishWrite(fos);
2382 } catch (Exception e) {
2383 restrictionsFile.failWrite(fos);
Fyodor Kupolov262f9952015-03-23 18:55:11 -07002384 Slog.e(LOG_TAG, "Error writing application restrictions list", e);
2385 }
2386 }
2387
2388 private static void writeBundle(Bundle restrictions, XmlSerializer serializer)
2389 throws IOException {
2390 for (String key : restrictions.keySet()) {
2391 Object value = restrictions.get(key);
2392 serializer.startTag(null, TAG_ENTRY);
2393 serializer.attribute(null, ATTR_KEY, key);
2394
2395 if (value instanceof Boolean) {
2396 serializer.attribute(null, ATTR_VALUE_TYPE, ATTR_TYPE_BOOLEAN);
2397 serializer.text(value.toString());
2398 } else if (value instanceof Integer) {
2399 serializer.attribute(null, ATTR_VALUE_TYPE, ATTR_TYPE_INTEGER);
2400 serializer.text(value.toString());
2401 } else if (value == null || value instanceof String) {
2402 serializer.attribute(null, ATTR_VALUE_TYPE, ATTR_TYPE_STRING);
2403 serializer.text(value != null ? (String) value : "");
2404 } else if (value instanceof Bundle) {
2405 serializer.attribute(null, ATTR_VALUE_TYPE, ATTR_TYPE_BUNDLE);
2406 writeBundle((Bundle) value, serializer);
2407 } else if (value instanceof Parcelable[]) {
2408 serializer.attribute(null, ATTR_VALUE_TYPE, ATTR_TYPE_BUNDLE_ARRAY);
2409 Parcelable[] array = (Parcelable[]) value;
2410 for (Parcelable parcelable : array) {
2411 if (!(parcelable instanceof Bundle)) {
2412 throw new IllegalArgumentException("bundle-array can only hold Bundles");
2413 }
2414 serializer.startTag(null, TAG_ENTRY);
2415 serializer.attribute(null, ATTR_VALUE_TYPE, ATTR_TYPE_BUNDLE);
2416 writeBundle((Bundle) parcelable, serializer);
2417 serializer.endTag(null, TAG_ENTRY);
2418 }
2419 } else {
2420 serializer.attribute(null, ATTR_VALUE_TYPE, ATTR_TYPE_STRING_ARRAY);
2421 String[] values = (String[]) value;
2422 serializer.attribute(null, ATTR_MULTIPLE, Integer.toString(values.length));
2423 for (String choice : values) {
2424 serializer.startTag(null, TAG_VALUE);
2425 serializer.text(choice != null ? choice : "");
2426 serializer.endTag(null, TAG_VALUE);
2427 }
2428 }
2429 serializer.endTag(null, TAG_ENTRY);
Amith Yamasanidf2e92a2013-03-01 17:04:38 -08002430 }
2431 }
2432
2433 @Override
Amith Yamasani2a003292012-08-14 18:25:45 -07002434 public int getUserSerialNumber(int userHandle) {
Fyodor Kupolov82402752015-10-28 14:54:51 -07002435 synchronized (mUsersLock) {
Amith Yamasani2a003292012-08-14 18:25:45 -07002436 if (!exists(userHandle)) return -1;
Fyodor Kupolov82402752015-10-28 14:54:51 -07002437 return getUserInfoLU(userHandle).serialNumber;
Amith Yamasani2a003292012-08-14 18:25:45 -07002438 }
2439 }
2440
2441 @Override
2442 public int getUserHandle(int userSerialNumber) {
Fyodor Kupolov82402752015-10-28 14:54:51 -07002443 synchronized (mUsersLock) {
Amith Yamasani2a003292012-08-14 18:25:45 -07002444 for (int userId : mUserIds) {
Fyodor Kupolov82402752015-10-28 14:54:51 -07002445 UserInfo info = getUserInfoLU(userId);
Kenny Guy945f8832015-02-10 15:17:26 +00002446 if (info != null && info.serialNumber == userSerialNumber) return userId;
Amith Yamasani2a003292012-08-14 18:25:45 -07002447 }
2448 // Not found
2449 return -1;
Amith Yamasani13593602012-03-22 16:16:17 -07002450 }
2451 }
2452
Fyodor Kupolovff7233e2015-04-08 11:28:52 -07002453 @Override
2454 public long getUserCreationTime(int userHandle) {
2455 int callingUserId = UserHandle.getCallingUserId();
2456 UserInfo userInfo = null;
Fyodor Kupolov82402752015-10-28 14:54:51 -07002457 synchronized (mUsersLock) {
Fyodor Kupolovff7233e2015-04-08 11:28:52 -07002458 if (callingUserId == userHandle) {
Fyodor Kupolov82402752015-10-28 14:54:51 -07002459 userInfo = getUserInfoLU(userHandle);
Fyodor Kupolovff7233e2015-04-08 11:28:52 -07002460 } else {
Fyodor Kupolov82402752015-10-28 14:54:51 -07002461 UserInfo parent = getProfileParentLU(userHandle);
Fyodor Kupolovff7233e2015-04-08 11:28:52 -07002462 if (parent != null && parent.id == callingUserId) {
Fyodor Kupolov82402752015-10-28 14:54:51 -07002463 userInfo = getUserInfoLU(userHandle);
Fyodor Kupolovff7233e2015-04-08 11:28:52 -07002464 }
2465 }
2466 }
2467 if (userInfo == null) {
2468 throw new SecurityException("userHandle can only be the calling user or a managed "
2469 + "profile associated with this user");
2470 }
2471 return userInfo.creationTime;
2472 }
2473
Amith Yamasani0b285492011-04-14 17:35:23 -07002474 /**
2475 * Caches the list of user ids in an array, adjusting the array size when necessary.
2476 */
Fyodor Kupolov82402752015-10-28 14:54:51 -07002477 private void updateUserIds() {
Dianne Hackbornd4ac8d72012-09-27 23:20:10 -07002478 int num = 0;
Fyodor Kupolov82402752015-10-28 14:54:51 -07002479 synchronized (mUsersLock) {
2480 final int userSize = mUsers.size();
2481 for (int i = 0; i < userSize; i++) {
Amith Yamasani12747872015-12-07 14:19:49 -08002482 if (!mUsers.valueAt(i).info.partial) {
Fyodor Kupolov82402752015-10-28 14:54:51 -07002483 num++;
2484 }
Dianne Hackbornd4ac8d72012-09-27 23:20:10 -07002485 }
Fyodor Kupolov82402752015-10-28 14:54:51 -07002486 final int[] newUsers = new int[num];
2487 int n = 0;
2488 for (int i = 0; i < userSize; i++) {
Amith Yamasani12747872015-12-07 14:19:49 -08002489 if (!mUsers.valueAt(i).info.partial) {
Fyodor Kupolov82402752015-10-28 14:54:51 -07002490 newUsers[n++] = mUsers.keyAt(i);
2491 }
Dianne Hackbornd4ac8d72012-09-27 23:20:10 -07002492 }
Fyodor Kupolov82402752015-10-28 14:54:51 -07002493 mUserIds = newUsers;
Amith Yamasani0b285492011-04-14 17:35:23 -07002494 }
2495 }
2496
2497 /**
Jeff Sharkey47f71082016-02-01 17:03:54 -07002498 * Prepare storage areas for given user on all mounted devices.
2499 */
2500 private void prepareUserStorage(int userId, int userSerial, int flags) {
2501 final StorageManager storage = mContext.getSystemService(StorageManager.class);
2502 for (VolumeInfo vol : storage.getWritablePrivateVolumes()) {
2503 final String volumeUuid = vol.getFsUuid();
2504 storage.prepareUserStorage(volumeUuid, userId, userSerial, flags);
2505 }
2506 }
2507
2508 /**
Jeff Sharkey0e62384c2016-01-13 18:52:55 -07002509 * Called right before a user is started. This gives us a chance to prepare
2510 * app storage and apply any user restrictions.
Makoto Onuki1a2cd742015-11-16 13:51:27 -08002511 */
2512 public void onBeforeStartUser(int userId) {
Jeff Sharkey47f71082016-02-01 17:03:54 -07002513 final int userSerial = getUserSerialNumber(userId);
2514 prepareUserStorage(userId, userSerial, StorageManager.FLAG_STORAGE_DE);
2515 mPm.reconcileAppsData(userId, StorageManager.FLAG_STORAGE_DE);
Jeff Sharkey0e62384c2016-01-13 18:52:55 -07002516
2517 if (userId != UserHandle.USER_SYSTEM) {
2518 synchronized (mRestrictionsLock) {
2519 applyUserRestrictionsLR(userId);
2520 }
Makoto Onuki1a2cd742015-11-16 13:51:27 -08002521 }
2522 }
2523
2524 /**
Jeff Sharkey0e62384c2016-01-13 18:52:55 -07002525 * Called right before a user is unlocked. This gives us a chance to prepare
2526 * app storage.
2527 */
2528 public void onBeforeUnlockUser(int userId) {
Jeff Sharkey47f71082016-02-01 17:03:54 -07002529 final int userSerial = getUserSerialNumber(userId);
2530 prepareUserStorage(userId, userSerial, StorageManager.FLAG_STORAGE_CE);
2531 mPm.reconcileAppsData(userId, StorageManager.FLAG_STORAGE_CE);
Jeff Sharkey0e62384c2016-01-13 18:52:55 -07002532 }
2533
2534 /**
Amith Yamasani1a7472e2013-07-02 11:17:30 -07002535 * Make a note of the last started time of a user and do some cleanup.
Amith Yamasani920ace02012-09-20 22:15:37 -07002536 * @param userId the user that was just foregrounded
2537 */
Amith Yamasani06bf8242015-05-08 16:36:21 -07002538 public void onUserForeground(int userId) {
Amith Yamasani12747872015-12-07 14:19:49 -08002539 UserData userData = getUserDataNoChecks(userId);
2540 if (userData == null || userData.info.partial) {
Fyodor Kupolove80085d2015-11-06 18:21:39 -08002541 Slog.w(LOG_TAG, "userForeground: unknown user #" + userId);
2542 return;
2543 }
2544 long now = System.currentTimeMillis();
2545 if (now > EPOCH_PLUS_30_YEARS) {
Amith Yamasani12747872015-12-07 14:19:49 -08002546 userData.info.lastLoggedInTime = now;
2547 scheduleWriteUser(userData);
Amith Yamasani920ace02012-09-20 22:15:37 -07002548 }
2549 }
2550
2551 /**
Amith Yamasani0b285492011-04-14 17:35:23 -07002552 * Returns the next available user id, filling in any holes in the ids.
Amith Yamasani742a6712011-05-04 14:49:28 -07002553 * TODO: May not be a good idea to recycle ids, in case it results in confusion
2554 * for data and battery stats collection, or unexpected cross-talk.
Amith Yamasani0b285492011-04-14 17:35:23 -07002555 */
Fyodor Kupolov82402752015-10-28 14:54:51 -07002556 private int getNextAvailableId() {
2557 synchronized (mUsersLock) {
Jeff Sharkeyffe0cb42012-11-05 17:24:43 -08002558 int i = MIN_USER_ID;
Xiaohui Chen621b3fc2015-10-02 14:41:42 -07002559 while (i < MAX_USER_ID) {
Jeff Sharkeyffe0cb42012-11-05 17:24:43 -08002560 if (mUsers.indexOfKey(i) < 0 && !mRemovingUserIds.get(i)) {
Xiaohui Chen621b3fc2015-10-02 14:41:42 -07002561 return i;
Amith Yamasani195263742012-08-21 15:40:12 -07002562 }
2563 i++;
Amith Yamasani4b2e9342011-03-31 12:38:53 -07002564 }
Amith Yamasani4b2e9342011-03-31 12:38:53 -07002565 }
Xiaohui Chen621b3fc2015-10-02 14:41:42 -07002566 throw new IllegalStateException("No user id available!");
Amith Yamasani4b2e9342011-03-31 12:38:53 -07002567 }
Amith Yamasani920ace02012-09-20 22:15:37 -07002568
Amith Yamasanifc95e702013-09-26 13:20:17 -07002569 private String packageToRestrictionsFileName(String packageName) {
2570 return RESTRICTIONS_FILE_PREFIX + packageName + XML_SUFFIX;
2571 }
2572
Jeff Sharkey6dce4962015-07-03 18:08:41 -07002573 /**
Jeff Sharkey6dce4962015-07-03 18:08:41 -07002574 * Enforce that serial number stored in user directory inode matches the
2575 * given expected value. Gracefully sets the serial number if currently
2576 * undefined.
2577 *
2578 * @throws IOException when problem extracting serial number, or serial
2579 * number is mismatched.
2580 */
2581 public static void enforceSerialNumber(File file, int serialNumber) throws IOException {
2582 final int foundSerial = getSerialNumber(file);
2583 Slog.v(LOG_TAG, "Found " + file + " with serial number " + foundSerial);
2584
2585 if (foundSerial == -1) {
2586 Slog.d(LOG_TAG, "Serial number missing on " + file + "; assuming current is valid");
2587 try {
2588 setSerialNumber(file, serialNumber);
2589 } catch (IOException e) {
2590 Slog.w(LOG_TAG, "Failed to set serial number on " + file, e);
2591 }
2592
2593 } else if (foundSerial != serialNumber) {
2594 throw new IOException("Found serial number " + foundSerial
2595 + " doesn't match expected " + serialNumber);
2596 }
2597 }
2598
2599 /**
2600 * Set serial number stored in user directory inode.
2601 *
2602 * @throws IOException if serial number was already set
2603 */
2604 private static void setSerialNumber(File file, int serialNumber)
2605 throws IOException {
2606 try {
2607 final byte[] buf = Integer.toString(serialNumber).getBytes(StandardCharsets.UTF_8);
2608 Os.setxattr(file.getAbsolutePath(), XATTR_SERIAL, buf, OsConstants.XATTR_CREATE);
2609 } catch (ErrnoException e) {
2610 throw e.rethrowAsIOException();
2611 }
2612 }
2613
2614 /**
2615 * Return serial number stored in user directory inode.
2616 *
2617 * @return parsed serial number, or -1 if not set
2618 */
2619 private static int getSerialNumber(File file) throws IOException {
2620 try {
2621 final byte[] buf = new byte[256];
2622 final int len = Os.getxattr(file.getAbsolutePath(), XATTR_SERIAL, buf);
2623 final String serial = new String(buf, 0, len);
2624 try {
2625 return Integer.parseInt(serial);
2626 } catch (NumberFormatException e) {
2627 throw new IOException("Bad serial number: " + serial);
2628 }
2629 } catch (ErrnoException e) {
2630 if (e.errno == OsConstants.ENODATA) {
2631 return -1;
2632 } else {
2633 throw e.rethrowAsIOException();
2634 }
2635 }
2636 }
2637
Amith Yamasani920ace02012-09-20 22:15:37 -07002638 @Override
Amith Yamasani12747872015-12-07 14:19:49 -08002639 public void setSeedAccountData(int userId, String accountName, String accountType,
2640 PersistableBundle accountOptions, boolean persist) {
2641 checkManageUsersPermission("Require MANAGE_USERS permission to set user seed data");
2642 synchronized (mPackagesLock) {
2643 final UserData userData;
2644 synchronized (mUsersLock) {
2645 userData = getUserDataLU(userId);
2646 if (userData == null) {
2647 Slog.e(LOG_TAG, "No such user for settings seed data u=" + userId);
2648 return;
2649 }
2650 userData.seedAccountName = accountName;
2651 userData.seedAccountType = accountType;
2652 userData.seedAccountOptions = accountOptions;
2653 userData.persistSeedData = persist;
2654 }
2655 if (persist) {
2656 writeUserLP(userData);
2657 }
2658 }
2659 }
2660
2661 @Override
2662 public String getSeedAccountName() throws RemoteException {
2663 checkManageUsersPermission("Cannot get seed account information");
2664 synchronized (mUsersLock) {
2665 UserData userData = getUserDataLU(UserHandle.getCallingUserId());
2666 return userData.seedAccountName;
2667 }
2668 }
2669
2670 @Override
2671 public String getSeedAccountType() throws RemoteException {
2672 checkManageUsersPermission("Cannot get seed account information");
2673 synchronized (mUsersLock) {
2674 UserData userData = getUserDataLU(UserHandle.getCallingUserId());
2675 return userData.seedAccountType;
2676 }
2677 }
2678
2679 @Override
2680 public PersistableBundle getSeedAccountOptions() throws RemoteException {
2681 checkManageUsersPermission("Cannot get seed account information");
2682 synchronized (mUsersLock) {
2683 UserData userData = getUserDataLU(UserHandle.getCallingUserId());
2684 return userData.seedAccountOptions;
2685 }
2686 }
2687
2688 @Override
2689 public void clearSeedAccountData() throws RemoteException {
2690 checkManageUsersPermission("Cannot clear seed account information");
2691 synchronized (mPackagesLock) {
2692 UserData userData;
2693 synchronized (mUsersLock) {
2694 userData = getUserDataLU(UserHandle.getCallingUserId());
2695 if (userData == null) return;
2696 userData.clearSeedAccountData();
2697 }
2698 writeUserLP(userData);
2699 }
2700 }
2701
2702 @Override
2703 public boolean someUserHasSeedAccount(String accountName, String accountType)
2704 throws RemoteException {
2705 checkManageUsersPermission("Cannot check seed account information");
2706 synchronized (mUsersLock) {
2707 final int userSize = mUsers.size();
2708 for (int i = 0; i < userSize; i++) {
2709 final UserData data = mUsers.valueAt(i);
2710 if (data.info.isInitialized()) continue;
2711 if (data.seedAccountName == null || !data.seedAccountName.equals(accountName)) {
2712 continue;
2713 }
2714 if (data.seedAccountType == null || !data.seedAccountType.equals(accountType)) {
2715 continue;
2716 }
2717 return true;
2718 }
2719 }
2720 return false;
2721 }
2722
2723 @Override
Todd Kennedy60459ab2015-10-30 11:32:16 -07002724 public void onShellCommand(FileDescriptor in, FileDescriptor out,
2725 FileDescriptor err, String[] args, ResultReceiver resultReceiver) {
2726 (new Shell()).exec(this, in, out, err, args, resultReceiver);
2727 }
2728
2729 int onShellCommand(Shell shell, String cmd) {
2730 if (cmd == null) {
2731 return shell.handleDefaultCommands(cmd);
2732 }
2733
2734 final PrintWriter pw = shell.getOutPrintWriter();
2735 try {
2736 switch(cmd) {
2737 case "list":
2738 return runList(pw);
2739 }
2740 } catch (RemoteException e) {
2741 pw.println("Remote exception: " + e);
2742 }
2743 return -1;
2744 }
2745
2746 private int runList(PrintWriter pw) throws RemoteException {
2747 final IActivityManager am = ActivityManagerNative.getDefault();
2748 final List<UserInfo> users = getUsers(false);
2749 if (users == null) {
2750 pw.println("Error: couldn't get users");
2751 return 1;
2752 } else {
2753 pw.println("Users:");
2754 for (int i = 0; i < users.size(); i++) {
Jeff Sharkeye17ac152015-11-06 22:40:29 -08002755 String running = am.isUserRunning(users.get(i).id, 0) ? " running" : "";
Todd Kennedy60459ab2015-10-30 11:32:16 -07002756 pw.println("\t" + users.get(i).toString() + running);
2757 }
2758 return 0;
2759 }
2760 }
2761
2762 @Override
Amith Yamasani920ace02012-09-20 22:15:37 -07002763 protected void dump(FileDescriptor fd, PrintWriter pw, String[] args) {
2764 if (mContext.checkCallingOrSelfPermission(android.Manifest.permission.DUMP)
2765 != PackageManager.PERMISSION_GRANTED) {
2766 pw.println("Permission Denial: can't dump UserManager from from pid="
2767 + Binder.getCallingPid()
2768 + ", uid=" + Binder.getCallingUid()
2769 + " without permission "
2770 + android.Manifest.permission.DUMP);
2771 return;
2772 }
2773
2774 long now = System.currentTimeMillis();
2775 StringBuilder sb = new StringBuilder();
2776 synchronized (mPackagesLock) {
Fyodor Kupolov82402752015-10-28 14:54:51 -07002777 synchronized (mUsersLock) {
2778 pw.println("Users:");
2779 for (int i = 0; i < mUsers.size(); i++) {
Amith Yamasani12747872015-12-07 14:19:49 -08002780 UserData userData = mUsers.valueAt(i);
2781 if (userData == null) {
Fyodor Kupolov82402752015-10-28 14:54:51 -07002782 continue;
2783 }
Amith Yamasani12747872015-12-07 14:19:49 -08002784 UserInfo userInfo = userData.info;
2785 final int userId = userInfo.id;
2786 pw.print(" "); pw.print(userInfo);
2787 pw.print(" serialNo="); pw.print(userInfo.serialNumber);
Makoto Onukie7927da2015-11-25 10:05:17 -08002788 if (mRemovingUserIds.get(userId)) {
Fyodor Kupolov82402752015-10-28 14:54:51 -07002789 pw.print(" <removing> ");
2790 }
Amith Yamasani12747872015-12-07 14:19:49 -08002791 if (userInfo.partial) {
Fyodor Kupolov82402752015-10-28 14:54:51 -07002792 pw.print(" <partial>");
2793 }
2794 pw.println();
2795 pw.print(" Created: ");
Amith Yamasani12747872015-12-07 14:19:49 -08002796 if (userInfo.creationTime == 0) {
Fyodor Kupolov82402752015-10-28 14:54:51 -07002797 pw.println("<unknown>");
2798 } else {
2799 sb.setLength(0);
Amith Yamasani12747872015-12-07 14:19:49 -08002800 TimeUtils.formatDuration(now - userInfo.creationTime, sb);
Fyodor Kupolov82402752015-10-28 14:54:51 -07002801 sb.append(" ago");
2802 pw.println(sb);
2803 }
2804 pw.print(" Last logged in: ");
Amith Yamasani12747872015-12-07 14:19:49 -08002805 if (userInfo.lastLoggedInTime == 0) {
Fyodor Kupolov82402752015-10-28 14:54:51 -07002806 pw.println("<unknown>");
2807 } else {
2808 sb.setLength(0);
Amith Yamasani12747872015-12-07 14:19:49 -08002809 TimeUtils.formatDuration(now - userInfo.lastLoggedInTime, sb);
Fyodor Kupolov82402752015-10-28 14:54:51 -07002810 sb.append(" ago");
2811 pw.println(sb);
2812 }
Makoto Onukie7927da2015-11-25 10:05:17 -08002813 pw.print(" Has profile owner: ");
2814 pw.println(mIsUserManaged.get(userId));
Fyodor Kupolov82402752015-10-28 14:54:51 -07002815 pw.println(" Restrictions:");
2816 synchronized (mRestrictionsLock) {
2817 UserRestrictionsUtils.dumpRestrictions(
Amith Yamasani12747872015-12-07 14:19:49 -08002818 pw, " ", mBaseUserRestrictions.get(userInfo.id));
Makoto Onuki1a2cd742015-11-16 13:51:27 -08002819 pw.println(" Device policy local restrictions:");
2820 UserRestrictionsUtils.dumpRestrictions(
Amith Yamasani12747872015-12-07 14:19:49 -08002821 pw, " ", mDevicePolicyLocalUserRestrictions.get(userInfo.id));
Fyodor Kupolov82402752015-10-28 14:54:51 -07002822 pw.println(" Effective restrictions:");
2823 UserRestrictionsUtils.dumpRestrictions(
Amith Yamasani12747872015-12-07 14:19:49 -08002824 pw, " ", mCachedEffectiveUserRestrictions.get(userInfo.id));
Fyodor Kupolov82402752015-10-28 14:54:51 -07002825 }
Amith Yamasani12747872015-12-07 14:19:49 -08002826
2827 if (userData.account != null) {
2828 pw.print(" Account name: " + userData.account);
Xiaohui Chenb3b92582015-12-07 11:22:13 -08002829 pw.println();
2830 }
Amith Yamasani12747872015-12-07 14:19:49 -08002831
2832 if (userData.seedAccountName != null) {
2833 pw.print(" Seed account name: " + userData.seedAccountName);
2834 pw.println();
2835 if (userData.seedAccountType != null) {
2836 pw.print(" account type: " + userData.seedAccountType);
2837 pw.println();
2838 }
2839 if (userData.seedAccountOptions != null) {
2840 pw.print(" account options exist");
2841 pw.println();
2842 }
2843 }
Amith Yamasani920ace02012-09-20 22:15:37 -07002844 }
Amith Yamasani920ace02012-09-20 22:15:37 -07002845 }
Amith Yamasani12747872015-12-07 14:19:49 -08002846 pw.println();
Makoto Onuki1a2cd742015-11-16 13:51:27 -08002847 pw.println(" Device policy global restrictions:");
2848 synchronized (mRestrictionsLock) {
2849 UserRestrictionsUtils
2850 .dumpRestrictions(pw, " ", mDevicePolicyGlobalUserRestrictions);
2851 }
Makoto Onukia4f11972015-10-01 13:19:58 -07002852 pw.println();
Makoto Onuki1a2cd742015-11-16 13:51:27 -08002853 pw.println(" Guest restrictions:");
Fyodor Kupolove80085d2015-11-06 18:21:39 -08002854 synchronized (mGuestRestrictions) {
Makoto Onuki1a2cd742015-11-16 13:51:27 -08002855 UserRestrictionsUtils.dumpRestrictions(pw, " ", mGuestRestrictions);
Fyodor Kupolove80085d2015-11-06 18:21:39 -08002856 }
Makoto Onukie7927da2015-11-25 10:05:17 -08002857 synchronized (mUsersLock) {
2858 pw.println();
2859 pw.println(" Device managed: " + mIsDeviceManaged);
2860 }
Amith Yamasani12747872015-12-07 14:19:49 -08002861 // Dump some capabilities
2862 pw.println();
2863 pw.println(" Max users: " + UserManager.getMaxSupportedUsers());
2864 pw.println(" Supports switchable users: " + UserManager.supportsMultipleUsers());
Lenka Trochtova02fee152015-12-22 14:26:18 +01002865 pw.println(" All guests ephemeral: " + Resources.getSystem().getBoolean(
2866 com.android.internal.R.bool.config_guestUserEphemeral));
Amith Yamasani920ace02012-09-20 22:15:37 -07002867 }
2868 }
Fyodor Kupolov75d0ea82014-12-15 16:21:07 -08002869
2870 final class MainHandler extends Handler {
2871
2872 @Override
2873 public void handleMessage(Message msg) {
2874 switch (msg.what) {
2875 case WRITE_USER_MSG:
2876 removeMessages(WRITE_USER_MSG, msg.obj);
2877 synchronized (mPackagesLock) {
Amith Yamasani12747872015-12-07 14:19:49 -08002878 int userId = ((UserData) msg.obj).info.id;
2879 UserData userData = getUserDataNoChecks(userId);
2880 if (userData != null) {
2881 writeUserLP(userData);
Fyodor Kupolov75d0ea82014-12-15 16:21:07 -08002882 }
2883 }
2884 }
2885 }
2886 }
Amith Yamasanibb054c92015-07-09 14:16:27 -07002887
2888 /**
2889 * @param userId
2890 * @return whether the user has been initialized yet
2891 */
2892 boolean isInitialized(int userId) {
2893 return (getUserInfo(userId).flags & UserInfo.FLAG_INITIALIZED) != 0;
2894 }
Makoto Onuki068c54a2015-10-13 14:34:03 -07002895
2896 private class LocalService extends UserManagerInternal {
Makoto Onuki068c54a2015-10-13 14:34:03 -07002897 @Override
Makoto Onuki1a2cd742015-11-16 13:51:27 -08002898 public void setDevicePolicyUserRestrictions(int userId, @NonNull Bundle localRestrictions,
2899 @Nullable Bundle globalRestrictions) {
Makoto Onuki2a3c3da2016-02-18 14:25:30 -08002900 UserManagerService.this.setDevicePolicyUserRestrictionsInner(userId, localRestrictions,
Makoto Onuki1a2cd742015-11-16 13:51:27 -08002901 globalRestrictions);
Makoto Onuki068c54a2015-10-13 14:34:03 -07002902 }
2903
2904 @Override
2905 public Bundle getBaseUserRestrictions(int userId) {
2906 synchronized (mRestrictionsLock) {
2907 return mBaseUserRestrictions.get(userId);
2908 }
2909 }
2910
2911 @Override
2912 public void setBaseUserRestrictionsByDpmsForMigration(
2913 int userId, Bundle baseRestrictions) {
2914 synchronized (mRestrictionsLock) {
2915 mBaseUserRestrictions.put(userId, new Bundle(baseRestrictions));
Fyodor Kupolov82402752015-10-28 14:54:51 -07002916 invalidateEffectiveUserRestrictionsLR(userId);
Makoto Onuki068c54a2015-10-13 14:34:03 -07002917 }
2918
Amith Yamasani12747872015-12-07 14:19:49 -08002919 final UserData userData = getUserDataNoChecks(userId);
Makoto Onuki068c54a2015-10-13 14:34:03 -07002920 synchronized (mPackagesLock) {
Amith Yamasani12747872015-12-07 14:19:49 -08002921 if (userData != null) {
2922 writeUserLP(userData);
Makoto Onuki068c54a2015-10-13 14:34:03 -07002923 } else {
2924 Slog.w(LOG_TAG, "UserInfo not found for " + userId);
2925 }
2926 }
2927 }
Makoto Onukid45a4a22015-11-02 17:17:38 -08002928
2929 @Override
2930 public boolean getUserRestriction(int userId, String key) {
2931 return getUserRestrictions(userId).getBoolean(key);
2932 }
2933
2934 @Override
2935 public void addUserRestrictionsListener(UserRestrictionsListener listener) {
2936 synchronized (mUserRestrictionsListeners) {
2937 mUserRestrictionsListeners.add(listener);
2938 }
2939 }
2940
2941 @Override
2942 public void removeUserRestrictionsListener(UserRestrictionsListener listener) {
2943 synchronized (mUserRestrictionsListeners) {
2944 mUserRestrictionsListeners.remove(listener);
2945 }
2946 }
Makoto Onukie7927da2015-11-25 10:05:17 -08002947
2948 @Override
2949 public void setDeviceManaged(boolean isManaged) {
2950 synchronized (mUsersLock) {
2951 mIsDeviceManaged = isManaged;
2952 }
2953 }
2954
2955 @Override
2956 public void setUserManaged(int userId, boolean isManaged) {
2957 synchronized (mUsersLock) {
2958 mIsUserManaged.put(userId, isManaged);
2959 }
2960 }
Oleksandr Peletskyi7f1f1df2016-01-18 15:40:21 +01002961
2962 @Override
2963 public void setUserIcon(int userId, Bitmap bitmap) {
2964 long ident = Binder.clearCallingIdentity();
2965 try {
2966 synchronized (mPackagesLock) {
2967 UserData userData = getUserDataNoChecks(userId);
2968 if (userData == null || userData.info.partial) {
2969 Slog.w(LOG_TAG, "setUserIcon: unknown user #" + userId);
2970 return;
2971 }
2972 writeBitmapLP(userData.info, bitmap);
2973 writeUserLP(userData);
2974 }
2975 sendUserInfoChangedBroadcast(userId);
2976 } finally {
2977 Binder.restoreCallingIdentity(ident);
2978 }
2979 }
Lenka Trochtovaf348e8e2016-01-07 17:20:34 +01002980
2981 @Override
2982 public void setForceEphemeralUsers(boolean forceEphemeralUsers) {
2983 synchronized (mUsersLock) {
2984 mForceEphemeralUsers = forceEphemeralUsers;
2985 }
2986 }
2987
2988 @Override
2989 public void removeAllUsers() {
2990 if (UserHandle.USER_SYSTEM == ActivityManager.getCurrentUser()) {
2991 // Remove the non-system users straight away.
2992 removeNonSystemUsers();
2993 } else {
2994 // Switch to the system user first and then remove the other users.
2995 BroadcastReceiver userSwitchedReceiver = new BroadcastReceiver() {
2996 @Override
2997 public void onReceive(Context context, Intent intent) {
2998 int userId =
2999 intent.getIntExtra(Intent.EXTRA_USER_HANDLE, UserHandle.USER_NULL);
3000 if (userId != UserHandle.USER_SYSTEM) {
3001 return;
3002 }
3003 mContext.unregisterReceiver(this);
3004 removeNonSystemUsers();
3005 }
3006 };
3007 IntentFilter userSwitchedFilter = new IntentFilter();
3008 userSwitchedFilter.addAction(Intent.ACTION_USER_SWITCHED);
3009 mContext.registerReceiver(
3010 userSwitchedReceiver, userSwitchedFilter, null, mHandler);
3011
3012 // Switch to the system user.
3013 ActivityManager am =
3014 (ActivityManager) mContext.getSystemService(Context.ACTIVITY_SERVICE);
3015 am.switchUser(UserHandle.USER_SYSTEM);
3016 }
3017 }
phweisse9c44062016-02-10 12:57:38 +01003018
3019 @Override
Lenka Trochtova1ddda472016-02-12 10:42:12 +01003020 public void onEphemeralUserStop(int userId) {
3021 synchronized (mUsersLock) {
3022 UserInfo userInfo = getUserInfoLU(userId);
3023 if (userInfo != null && userInfo.isEphemeral()) {
3024 // Do not allow switching back to the ephemeral user again as the user is going
3025 // to be deleted.
3026 userInfo.flags |= UserInfo.FLAG_DISABLED;
3027 if (userInfo.isGuest()) {
3028 // Indicate that the guest will be deleted after it stops.
3029 userInfo.guestToRemove = true;
3030 }
3031 }
3032 }
3033 }
3034
3035 @Override
phweisse9c44062016-02-10 12:57:38 +01003036 public UserInfo createUserEvenWhenDisallowed(String name, int flags) {
3037 UserInfo user = createUserInternalUnchecked(name, flags, UserHandle.USER_NULL);
3038 // Keep this in sync with UserManager.createUser
3039 if (user != null && !user.isAdmin()) {
3040 setUserRestriction(UserManager.DISALLOW_SMS, true, user.id);
3041 setUserRestriction(UserManager.DISALLOW_OUTGOING_CALLS, true, user.id);
3042 }
3043 return user;
3044 }
Lenka Trochtovaf348e8e2016-01-07 17:20:34 +01003045 }
3046
3047 /* Remove all the users except of the system one. */
3048 private void removeNonSystemUsers() {
3049 ArrayList<UserInfo> usersToRemove = new ArrayList<>();
3050 synchronized (mUsersLock) {
3051 final int userSize = mUsers.size();
3052 for (int i = 0; i < userSize; i++) {
3053 UserInfo ui = mUsers.valueAt(i).info;
3054 if (ui.id != UserHandle.USER_SYSTEM) {
3055 usersToRemove.add(ui);
3056 }
3057 }
3058 }
3059 for (UserInfo ui: usersToRemove) {
3060 removeUser(ui.id);
3061 }
Makoto Onuki068c54a2015-10-13 14:34:03 -07003062 }
Todd Kennedy60459ab2015-10-30 11:32:16 -07003063
3064 private class Shell extends ShellCommand {
3065 @Override
3066 public int onCommand(String cmd) {
3067 return onShellCommand(this, cmd);
3068 }
3069
3070 @Override
3071 public void onHelp() {
3072 final PrintWriter pw = getOutPrintWriter();
3073 pw.println("User manager (user) commands:");
3074 pw.println(" help");
3075 pw.println(" Print this help text.");
3076 pw.println("");
3077 pw.println(" list");
3078 pw.println(" Prints all users on the system.");
3079 }
3080 }
Makoto Onuki1a2cd742015-11-16 13:51:27 -08003081
3082 private static void debug(String message) {
3083 Log.d(LOG_TAG, message +
3084 (DBG_WITH_STACKTRACE ? " called at\n" + Debug.getCallers(10, " ") : ""));
3085 }
Amith Yamasani4b2e9342011-03-31 12:38:53 -07003086}