blob: 8ddfad9ec81c80baf4bfd05410ac74b6d8df87ae [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
Benjamin Franzf02420c2016-04-04 18:52:21 +010019import static android.content.Intent.FLAG_ACTIVITY_EXCLUDE_FROM_RECENTS;
20import static android.content.Intent.FLAG_ACTIVITY_NEW_TASK;
21
Xiaohui Chenb3b92582015-12-07 11:22:13 -080022import android.Manifest;
Bookatz029832a2019-10-04 16:50:22 -070023import android.annotation.ColorRes;
24import android.annotation.DrawableRes;
Xiaohui Chen594f2082015-08-18 11:04:20 -070025import android.annotation.NonNull;
Makoto Onuki068c54a2015-10-13 14:34:03 -070026import android.annotation.Nullable;
Bookatz029832a2019-10-04 16:50:22 -070027import android.annotation.StringRes;
Jeff Sharkeybd91e2f2016-03-22 15:32:31 -060028import android.annotation.UserIdInt;
Amith Yamasanidb6a14c2012-10-17 21:16:52 -070029import android.app.Activity;
Amith Yamasani2a003292012-08-14 18:25:45 -070030import android.app.ActivityManager;
Amith Yamasani515d4062015-09-28 11:30:06 -070031import android.app.ActivityManagerInternal;
Andrew Scull85a63bc2016-10-24 13:47:47 +010032import android.app.ActivityManagerNative;
Todd Kennedy60459ab2015-10-30 11:32:16 -070033import android.app.IActivityManager;
Dianne Hackborn80a4af22012-08-27 19:18:31 -070034import android.app.IStopUserCallback;
Benjamin Franzf02420c2016-04-04 18:52:21 +010035import android.app.KeyguardManager;
Ricky Waib1dd80b2016-06-07 18:00:55 +010036import android.app.PendingIntent;
arangelov9b632d72018-12-07 23:21:22 +000037import android.app.admin.DevicePolicyEventLogger;
Amith Yamasanidb6a14c2012-10-17 21:16:52 -070038import android.content.BroadcastReceiver;
Amith Yamasani258848d2012-08-10 17:06:33 -070039import android.content.Context;
40import android.content.Intent;
Lenka Trochtovaf348e8e2016-01-07 17:20:34 +010041import android.content.IntentFilter;
Benjamin Franzf02420c2016-04-04 18:52:21 +010042import android.content.IntentSender;
Amith Yamasani0b285492011-04-14 17:35:23 -070043import android.content.pm.PackageManager;
Amith Yamasanidf2e92a2013-03-01 17:04:38 -080044import android.content.pm.PackageManager.NameNotFoundException;
Tony Make3d1f652017-12-12 11:00:37 +000045import android.content.pm.ShortcutServiceInternal;
Amith Yamasani4b2e9342011-03-31 12:38:53 -070046import android.content.pm.UserInfo;
Felipe Lemec1ca4412019-09-11 09:23:26 -070047import android.content.pm.UserInfo.UserInfoFlag;
Lenka Trochtova02fee152015-12-22 14:26:18 +010048import android.content.res.Resources;
Amith Yamasanie928d7d2012-09-17 21:46:51 -070049import android.graphics.Bitmap;
Amith Yamasani258848d2012-08-10 17:06:33 -070050import android.os.Binder;
Jeff Sharkeybd91e2f2016-03-22 15:32:31 -060051import android.os.Build;
Amith Yamasanie4cf7342012-12-17 11:12:09 -080052import android.os.Bundle;
Makoto Onuki1a2cd742015-11-16 13:51:27 -080053import android.os.Debug;
Amith Yamasani4b2e9342011-03-31 12:38:53 -070054import android.os.Environment;
55import android.os.FileUtils;
Jeff Sharkeyffe0cb42012-11-05 17:24:43 -080056import android.os.Handler;
Svet Ganov9cea80cd2016-02-16 11:47:00 -080057import android.os.IBinder;
Tony Mak64fd8c02017-12-01 19:11:59 +000058import android.os.IProgressListener;
Amith Yamasani258848d2012-08-10 17:06:33 -070059import android.os.IUserManager;
Christopher Tate65fb2e42019-10-11 17:00:23 -070060import android.os.IUserRestrictionsListener;
Fyodor Kupolov75d0ea82014-12-15 16:21:07 -080061import android.os.Message;
Adrian Roos1bdff912015-02-17 15:51:35 +010062import android.os.ParcelFileDescriptor;
Fyodor Kupolov262f9952015-03-23 18:55:11 -070063import android.os.Parcelable;
Amith Yamasani12747872015-12-07 14:19:49 -080064import android.os.PersistableBundle;
Amith Yamasani258848d2012-08-10 17:06:33 -070065import android.os.Process;
Dianne Hackborn80a4af22012-08-27 19:18:31 -070066import android.os.RemoteException;
Todd Kennedy60459ab2015-10-30 11:32:16 -070067import android.os.ResultReceiver;
Oleksandr Peletskyicd6fa302016-02-25 16:28:39 +010068import android.os.SELinux;
Jason Monk62062992014-05-06 09:55:28 -040069import android.os.ServiceManager;
Dianne Hackborn354736e2016-08-22 17:00:05 -070070import android.os.ShellCallback;
Todd Kennedy60459ab2015-10-30 11:32:16 -070071import android.os.ShellCommand;
Makoto Onuki73dded22017-12-20 13:14:48 +090072import android.os.SystemClock;
Kenny Guy02c89902016-11-15 19:36:38 +000073import android.os.SystemProperties;
Dianne Hackbornf02b60a2012-08-16 10:48:27 -070074import android.os.UserHandle;
Jeff Sharkey27bd34d2012-09-16 12:49:00 -070075import android.os.UserManager;
Pavel Grafov6a40f092016-10-25 15:46:51 +010076import android.os.UserManager.EnforcingUser;
Makoto Onuki068c54a2015-10-13 14:34:03 -070077import android.os.UserManagerInternal;
Makoto Onukid45a4a22015-11-02 17:17:38 -080078import android.os.UserManagerInternal.UserRestrictionsListener;
Paul Crowley85e4e812015-05-19 12:42:00 +010079import android.os.storage.StorageManager;
Amith Yamasanid04aaa32016-06-13 12:09:36 -070080import android.security.GateKeeper;
81import android.service.gatekeeper.IGateKeeperService;
arangelov9b632d72018-12-07 23:21:22 +000082import android.stats.devicepolicy.DevicePolicyEnums;
Bookatz029832a2019-10-04 16:50:22 -070083import android.util.ArrayMap;
Bookatz75f0a072019-08-05 14:12:16 -070084import android.util.ArraySet;
Amith Yamasani2a003292012-08-14 18:25:45 -070085import android.util.AtomicFile;
Fyodor Kupolov7f98aa42016-04-07 14:56:25 -070086import android.util.IntArray;
Amith Yamasani655d0e22013-06-12 14:19:10 -070087import android.util.Log;
Amith Yamasani4b2e9342011-03-31 12:38:53 -070088import android.util.Slog;
89import android.util.SparseArray;
Jeff Sharkeyffe0cb42012-11-05 17:24:43 -080090import android.util.SparseBooleanArray;
Amith Yamasaniea1b9d72016-05-27 15:57:38 +000091import android.util.SparseIntArray;
Amith Yamasani920ace02012-09-20 22:15:37 -070092import android.util.TimeUtils;
Amith Yamasani4b2e9342011-03-31 12:38:53 -070093import android.util.Xml;
94
Makoto Onuki068c54a2015-10-13 14:34:03 -070095import com.android.internal.annotations.GuardedBy;
Fyodor Kupolov262f9952015-03-23 18:55:11 -070096import com.android.internal.annotations.VisibleForTesting;
Jason Monk62062992014-05-06 09:55:28 -040097import com.android.internal.app.IAppOpsService;
Fyodor Kupolov8385e4b2015-12-29 18:15:32 -080098import com.android.internal.logging.MetricsLogger;
Fyodor Kupolova68a2862018-01-30 18:22:00 -080099import com.android.internal.os.BackgroundThread;
Jeff Sharkeyfe9a53b2017-03-31 14:08:23 -0600100import com.android.internal.util.DumpUtils;
Jeff Sharkeyffe0cb42012-11-05 17:24:43 -0800101import com.android.internal.util.FastXmlSerializer;
Makoto Onuki068c54a2015-10-13 14:34:03 -0700102import com.android.internal.util.Preconditions;
Fyodor Kupolov262f9952015-03-23 18:55:11 -0700103import com.android.internal.util.XmlUtils;
Clara Bayarri10ad84a2015-12-01 17:38:05 +0000104import com.android.internal.widget.LockPatternUtils;
Amith Yamasani515d4062015-09-28 11:30:06 -0700105import com.android.server.LocalServices;
Jeff Sharkey5f3e9342017-03-13 14:53:11 -0600106import com.android.server.LockGuard;
Amith Yamasanid04aaa32016-06-13 12:09:36 -0700107import com.android.server.SystemService;
Amith Yamasaniea1b9d72016-05-27 15:57:38 +0000108import com.android.server.am.UserState;
Suprabh Shuklac5e057c2016-08-08 16:22:44 -0700109import com.android.server.storage.DeviceStorageMonitorInternal;
Felipe Leme3aad1be2019-05-31 11:43:12 -0700110import com.android.server.utils.TimingsTraceAndSlog;
Wale Ogunwale9e4f3e02018-05-17 09:35:39 -0700111import com.android.server.wm.ActivityTaskManagerInternal;
Jeff Sharkeyffe0cb42012-11-05 17:24:43 -0800112
arangelov9b632d72018-12-07 23:21:22 +0000113import libcore.io.IoUtils;
114
Jeff Sharkeyffe0cb42012-11-05 17:24:43 -0800115import org.xmlpull.v1.XmlPullParser;
116import org.xmlpull.v1.XmlPullParserException;
117import org.xmlpull.v1.XmlSerializer;
118
Amith Yamasani4b2e9342011-03-31 12:38:53 -0700119import java.io.BufferedOutputStream;
120import java.io.File;
Amith Yamasani920ace02012-09-20 22:15:37 -0700121import java.io.FileDescriptor;
Amith Yamasani4b2e9342011-03-31 12:38:53 -0700122import java.io.FileInputStream;
Amith Yamasanib8151ec2012-04-18 18:02:48 -0700123import java.io.FileNotFoundException;
Amith Yamasani4b2e9342011-03-31 12:38:53 -0700124import java.io.FileOutputStream;
Tony Mak64fd8c02017-12-01 19:11:59 +0000125import java.io.IOException;
Kenny Guy02c89902016-11-15 19:36:38 +0000126import java.io.InputStream;
127import java.io.OutputStream;
Amith Yamasani920ace02012-09-20 22:15:37 -0700128import java.io.PrintWriter;
Wojciech Staszkiewicz9e9e2e72015-05-08 14:58:46 +0100129import java.nio.charset.StandardCharsets;
Amith Yamasani4b2e9342011-03-31 12:38:53 -0700130import java.util.ArrayList;
Pavel Grafov6a40f092016-10-25 15:46:51 +0100131import java.util.Collections;
Fyodor Kupolov0f4533d2016-05-18 18:43:12 -0700132import java.util.LinkedList;
Amith Yamasani4b2e9342011-03-31 12:38:53 -0700133import java.util.List;
Narayan Kamath607223f2018-02-19 14:09:02 +0000134import java.util.Objects;
Bookatz75f0a072019-08-05 14:12:16 -0700135import java.util.Set;
Amith Yamasani4b2e9342011-03-31 12:38:53 -0700136
Makoto Onuki068c54a2015-10-13 14:34:03 -0700137/**
138 * Service for {@link UserManager}.
139 *
140 * Method naming convention:
Fyodor Kupolov82402752015-10-28 14:54:51 -0700141 * <ul>
Fyodor Kupolovd31cee92017-09-05 16:31:08 -0700142 * <li> Methods suffixed with "LAr" should be called within the {@link #mAppRestrictionsLock} lock.
Fyodor Kupolove80085d2015-11-06 18:21:39 -0800143 * <li> Methods suffixed with "LP" should be called within the {@link #mPackagesLock} lock.
Fyodor Kupolov82402752015-10-28 14:54:51 -0700144 * <li> Methods suffixed with "LR" should be called within the {@link #mRestrictionsLock} lock.
145 * <li> Methods suffixed with "LU" should be called within the {@link #mUsersLock} lock.
146 * </ul>
Makoto Onuki068c54a2015-10-13 14:34:03 -0700147 */
Amith Yamasani258848d2012-08-10 17:06:33 -0700148public class UserManagerService extends IUserManager.Stub {
Amith Yamasanid04aaa32016-06-13 12:09:36 -0700149
Amith Yamasani2a003292012-08-14 18:25:45 -0700150 private static final String LOG_TAG = "UserManagerService";
Makoto Onuki81c61ea2016-01-22 11:22:26 -0800151 static final boolean DBG = false; // DO NOT SUBMIT WITH TRUE
Makoto Onuki1a2cd742015-11-16 13:51:27 -0800152 private static final boolean DBG_WITH_STACKTRACE = false; // DO NOT SUBMIT WITH TRUE
Fyodor Kupolov0f4533d2016-05-18 18:43:12 -0700153 // Can be used for manual testing of id recycling
154 private static final boolean RELEASE_DELETED_USER_ID = false; // DO NOT SUBMIT WITH TRUE
Amith Yamasani16389312012-10-17 21:20:14 -0700155
Amith Yamasani4b2e9342011-03-31 12:38:53 -0700156 private static final String TAG_NAME = "name";
Xiaohui Chenb3b92582015-12-07 11:22:13 -0800157 private static final String TAG_ACCOUNT = "account";
Amith Yamasani4b2e9342011-03-31 12:38:53 -0700158 private static final String ATTR_FLAGS = "flags";
Bookatz029832a2019-10-04 16:50:22 -0700159 private static final String ATTR_TYPE = "type";
Amith Yamasanib8151ec2012-04-18 18:02:48 -0700160 private static final String ATTR_ICON_PATH = "icon";
Amith Yamasani4b2e9342011-03-31 12:38:53 -0700161 private static final String ATTR_ID = "id";
Amith Yamasani920ace02012-09-20 22:15:37 -0700162 private static final String ATTR_CREATION_TIME = "created";
163 private static final String ATTR_LAST_LOGGED_IN_TIME = "lastLoggedIn";
Jeff Sharkeybd91e2f2016-03-22 15:32:31 -0600164 private static final String ATTR_LAST_LOGGED_IN_FINGERPRINT = "lastLoggedInFingerprint";
Amith Yamasani2a003292012-08-14 18:25:45 -0700165 private static final String ATTR_SERIAL_NO = "serialNumber";
166 private static final String ATTR_NEXT_SERIAL_NO = "nextSerialNumber";
Dianne Hackbornd4ac8d72012-09-27 23:20:10 -0700167 private static final String ATTR_PARTIAL = "partial";
Felipe Lemec1ca4412019-09-11 09:23:26 -0700168 private static final String ATTR_PRE_CREATED = "preCreated";
Adam Lesinskieddeb492014-09-08 17:50:03 -0700169 private static final String ATTR_GUEST_TO_REMOVE = "guestToRemove";
Amith Yamasani6f34b412012-10-22 18:19:27 -0700170 private static final String ATTR_USER_VERSION = "version";
Kenny Guy2a764942014-04-02 13:29:20 +0100171 private static final String ATTR_PROFILE_GROUP_ID = "profileGroupId";
Kenny Guy02c89902016-11-15 19:36:38 +0000172 private static final String ATTR_PROFILE_BADGE = "profileBadge";
Fyodor Kupolov06a484a2015-08-21 16:33:20 -0700173 private static final String ATTR_RESTRICTED_PROFILE_PARENT_ID = "restrictedProfileParentId";
Amith Yamasani12747872015-12-07 14:19:49 -0800174 private static final String ATTR_SEED_ACCOUNT_NAME = "seedAccountName";
175 private static final String ATTR_SEED_ACCOUNT_TYPE = "seedAccountType";
Amith Yamasanie4afaa32014-06-30 14:55:07 +0530176 private static final String TAG_GUEST_RESTRICTIONS = "guestRestrictions";
Amith Yamasani4b2e9342011-03-31 12:38:53 -0700177 private static final String TAG_USERS = "users";
Amith Yamasani4b2e9342011-03-31 12:38:53 -0700178 private static final String TAG_USER = "user";
Amith Yamasanie4cf7342012-12-17 11:12:09 -0800179 private static final String TAG_RESTRICTIONS = "restrictions";
Makoto Onuki1a2cd742015-11-16 13:51:27 -0800180 private static final String TAG_DEVICE_POLICY_RESTRICTIONS = "device_policy_restrictions";
Pavel Grafov6a40f092016-10-25 15:46:51 +0100181 private static final String TAG_DEVICE_POLICY_GLOBAL_RESTRICTIONS =
182 "device_policy_global_restrictions";
183 /** Legacy name for device owner id tag. */
Zoltan Szatmary-Bane7834602016-04-08 18:41:11 +0100184 private static final String TAG_GLOBAL_RESTRICTION_OWNER_ID = "globalRestrictionOwnerUserId";
Pavel Grafov6a40f092016-10-25 15:46:51 +0100185 private static final String TAG_DEVICE_OWNER_USER_ID = "deviceOwnerUserId";
Amith Yamasanidf2e92a2013-03-01 17:04:38 -0800186 private static final String TAG_ENTRY = "entry";
187 private static final String TAG_VALUE = "value";
Amith Yamasani12747872015-12-07 14:19:49 -0800188 private static final String TAG_SEED_ACCOUNT_OPTIONS = "seedAccountOptions";
arangelov9b632d72018-12-07 23:21:22 +0000189 private static final String TAG_LAST_REQUEST_QUIET_MODE_ENABLED_CALL =
190 "lastRequestQuietModeEnabledCall";
Amith Yamasanidf2e92a2013-03-01 17:04:38 -0800191 private static final String ATTR_KEY = "key";
Amith Yamasani7e99bc02013-04-16 18:24:51 -0700192 private static final String ATTR_VALUE_TYPE = "type";
Amith Yamasanidf2e92a2013-03-01 17:04:38 -0800193 private static final String ATTR_MULTIPLE = "m";
Amith Yamasani4b2e9342011-03-31 12:38:53 -0700194
Amith Yamasani7e99bc02013-04-16 18:24:51 -0700195 private static final String ATTR_TYPE_STRING_ARRAY = "sa";
196 private static final String ATTR_TYPE_STRING = "s";
197 private static final String ATTR_TYPE_BOOLEAN = "b";
Amith Yamasani5b5aa402014-06-01 20:10:14 -0700198 private static final String ATTR_TYPE_INTEGER = "i";
Fyodor Kupolov262f9952015-03-23 18:55:11 -0700199 private static final String ATTR_TYPE_BUNDLE = "B";
200 private static final String ATTR_TYPE_BUNDLE_ARRAY = "BA";
Amith Yamasani7e99bc02013-04-16 18:24:51 -0700201
Amith Yamasani0b285492011-04-14 17:35:23 -0700202 private static final String USER_INFO_DIR = "system" + File.separator + "users";
Amith Yamasani4b2e9342011-03-31 12:38:53 -0700203 private static final String USER_LIST_FILENAME = "userlist.xml";
Amith Yamasanib8151ec2012-04-18 18:02:48 -0700204 private static final String USER_PHOTO_FILENAME = "photo.png";
Adrian Roos1bdff912015-02-17 15:51:35 +0100205 private static final String USER_PHOTO_FILENAME_TMP = USER_PHOTO_FILENAME + ".tmp";
Amith Yamasani4b2e9342011-03-31 12:38:53 -0700206
Amith Yamasanidf2e92a2013-03-01 17:04:38 -0800207 private static final String RESTRICTIONS_FILE_PREFIX = "res_";
Amith Yamasanifc95e702013-09-26 13:20:17 -0700208 private static final String XML_SUFFIX = ".xml";
Amith Yamasanidf2e92a2013-03-01 17:04:38 -0800209
Sudheer Shankaf5cea032016-06-08 17:13:24 -0700210 private static final int ALLOWED_FLAGS_FOR_CREATE_USERS_PERMISSION =
211 UserInfo.FLAG_MANAGED_PROFILE
212 | UserInfo.FLAG_EPHEMERAL
213 | UserInfo.FLAG_RESTRICTED
Sudheer Shanka234d1af2016-08-26 15:42:53 -0700214 | UserInfo.FLAG_GUEST
215 | UserInfo.FLAG_DEMO;
Sudheer Shankaf5cea032016-06-08 17:13:24 -0700216
Fyodor Kupolov0f4533d2016-05-18 18:43:12 -0700217 @VisibleForTesting
Makoto Onukiacf38582019-10-04 11:53:42 -0700218 static final int MIN_USER_ID = UserHandle.MIN_SECONDARY_USER_ID;
219
Xiaohui Chen621b3fc2015-10-02 14:41:42 -0700220 // We need to keep process uid within Integer.MAX_VALUE.
Fyodor Kupolov0f4533d2016-05-18 18:43:12 -0700221 @VisibleForTesting
222 static final int MAX_USER_ID = Integer.MAX_VALUE / UserHandle.PER_USER_RANGE;
223
224 // Max size of the queue of recently removed users
225 @VisibleForTesting
226 static final int MAX_RECENTLY_REMOVED_IDS_SIZE = 100;
Amith Yamasani634cf312012-10-04 17:34:21 -0700227
Bookatz029832a2019-10-04 16:50:22 -0700228 private static final int USER_VERSION = 9;
Amith Yamasani6f34b412012-10-22 18:19:27 -0700229
Amith Yamasani920ace02012-09-20 22:15:37 -0700230 private static final long EPOCH_PLUS_30_YEARS = 30L * 365 * 24 * 60 * 60 * 1000L; // ms
231
Fyodor Kupolov75d0ea82014-12-15 16:21:07 -0800232 static final int WRITE_USER_MSG = 1;
233 static final int WRITE_USER_DELAY = 2*1000; // 2 seconds
Amith Yamasanie4afaa32014-06-30 14:55:07 +0530234
Fyodor Kupolov8385e4b2015-12-29 18:15:32 -0800235 // Tron counters
236 private static final String TRON_GUEST_CREATED = "users_guest_created";
237 private static final String TRON_USER_CREATED = "users_user_created";
Christine Franks88220562017-05-24 11:11:21 -0700238 private static final String TRON_DEMO_CREATED = "users_demo_created";
Fyodor Kupolov8385e4b2015-12-29 18:15:32 -0800239
Dianne Hackborn4428e172012-08-24 17:43:05 -0700240 private final Context mContext;
241 private final PackageManagerService mPm;
Dianne Hackborn4428e172012-08-24 17:43:05 -0700242 private final Object mPackagesLock;
Fyodor Kupolov5c0ecfd2017-01-27 11:11:57 -0800243 private final UserDataPreparer mUserDataPreparer;
Fyodor Kupolov82402752015-10-28 14:54:51 -0700244 // Short-term lock for internal state, when interaction/sync with PM is not required
Jeff Sharkey5f3e9342017-03-13 14:53:11 -0600245 private final Object mUsersLock = LockGuard.installNewLock(LockGuard.INDEX_USER);
Fyodor Kupolov82402752015-10-28 14:54:51 -0700246 private final Object mRestrictionsLock = new Object();
Fyodor Kupolovd31cee92017-09-05 16:31:08 -0700247 // Used for serializing access to app restriction files
248 private final Object mAppRestrictionsLock = new Object();
Amith Yamasani4b2e9342011-03-31 12:38:53 -0700249
Jeff Sharkeyffe0cb42012-11-05 17:24:43 -0800250 private final Handler mHandler;
251
Amith Yamasani4b2e9342011-03-31 12:38:53 -0700252 private final File mUsersDir;
253 private final File mUserListFile;
Dianne Hackborn4428e172012-08-24 17:43:05 -0700254
Svet Ganov9cea80cd2016-02-16 11:47:00 -0800255 private static final IBinder mUserRestriconToken = new Binder();
256
Bookatz04d7ae52019-08-05 14:07:12 -0700257 /** Installs system packages based on user-type. */
258 private final UserSystemPackageInstaller mSystemPackageInstaller;
259
Makoto Onuki068c54a2015-10-13 14:34:03 -0700260 /**
Makoto Onuki73dded22017-12-20 13:14:48 +0900261 * Internal non-parcelable wrapper for UserInfo that is not exposed to other system apps.
Xiaohui Chenb3b92582015-12-07 11:22:13 -0800262 */
Kenny Guy02c89902016-11-15 19:36:38 +0000263 @VisibleForTesting
264 static class UserData {
Amith Yamasani12747872015-12-07 14:19:49 -0800265 // Basic user information and properties
266 UserInfo info;
267 // Account name used when there is a strong association between a user and an account
268 String account;
269 // Account information for seeding into a newly created user. This could also be
270 // used for login validation for an existing user, for updating their credentials.
271 // In the latter case, data may not need to be persisted as it is only valid for the
272 // current login session.
273 String seedAccountName;
274 String seedAccountType;
275 PersistableBundle seedAccountOptions;
276 // Whether to perist the seed account information to be available after a boot
277 boolean persistSeedData;
278
Makoto Onuki73dded22017-12-20 13:14:48 +0900279 /** Elapsed realtime since boot when the user started. */
280 long startRealtime;
281
282 /** Elapsed realtime since boot when the user was unlocked. */
283 long unlockRealtime;
284
arangelov9b632d72018-12-07 23:21:22 +0000285 private long mLastRequestQuietModeEnabledMillis;
286
287 void setLastRequestQuietModeEnabledMillis(long millis) {
288 mLastRequestQuietModeEnabledMillis = millis;
289 }
290
291 long getLastRequestQuietModeEnabledMillis() {
292 return mLastRequestQuietModeEnabledMillis;
293 }
294
Amith Yamasani12747872015-12-07 14:19:49 -0800295 void clearSeedAccountData() {
296 seedAccountName = null;
297 seedAccountType = null;
298 seedAccountOptions = null;
299 persistSeedData = false;
300 }
301 }
302
Xiaohui Chenb3b92582015-12-07 11:22:13 -0800303 @GuardedBy("mUsersLock")
Amith Yamasani12747872015-12-07 14:19:49 -0800304 private final SparseArray<UserData> mUsers = new SparseArray<>();
Xiaohui Chenb3b92582015-12-07 11:22:13 -0800305
306 /**
Bookatz029832a2019-10-04 16:50:22 -0700307 * Map of user type names to their corresponding {@link UserTypeDetails}.
308 * Should not be modified after UserManagerService constructor finishes.
309 */
310 private final ArrayMap<String, UserTypeDetails> mUserTypes;
311
312 /**
Makoto Onuki068c54a2015-10-13 14:34:03 -0700313 * User restrictions set via UserManager. This doesn't include restrictions set by
Pavel Grafov6a40f092016-10-25 15:46:51 +0100314 * device owner / profile owners. Only non-empty restriction bundles are stored.
Makoto Onuki068c54a2015-10-13 14:34:03 -0700315 *
316 * DO NOT Change existing {@link Bundle} in it. When changing a restriction for a user,
317 * a new {@link Bundle} should always be created and set. This is because a {@link Bundle}
318 * maybe shared between {@link #mBaseUserRestrictions} and
319 * {@link #mCachedEffectiveUserRestrictions}, but they should always updated separately.
320 * (Otherwise we won't be able to detect what restrictions have changed in
Fyodor Kupolov82402752015-10-28 14:54:51 -0700321 * {@link #updateUserRestrictionsInternalLR}.
Makoto Onuki068c54a2015-10-13 14:34:03 -0700322 */
323 @GuardedBy("mRestrictionsLock")
324 private final SparseArray<Bundle> mBaseUserRestrictions = new SparseArray<>();
325
326 /**
327 * Cached user restrictions that are in effect -- i.e. {@link #mBaseUserRestrictions} combined
328 * with device / profile owner restrictions. We'll initialize it lazily; use
329 * {@link #getEffectiveUserRestrictions} to access it.
330 *
331 * DO NOT Change existing {@link Bundle} in it. When changing a restriction for a user,
332 * a new {@link Bundle} should always be created and set. This is because a {@link Bundle}
333 * maybe shared between {@link #mBaseUserRestrictions} and
334 * {@link #mCachedEffectiveUserRestrictions}, but they should always updated separately.
335 * (Otherwise we won't be able to detect what restrictions have changed in
Fyodor Kupolov82402752015-10-28 14:54:51 -0700336 * {@link #updateUserRestrictionsInternalLR}.
Makoto Onuki068c54a2015-10-13 14:34:03 -0700337 */
338 @GuardedBy("mRestrictionsLock")
339 private final SparseArray<Bundle> mCachedEffectiveUserRestrictions = new SparseArray<>();
340
Makoto Onuki4f160732015-10-27 17:15:38 -0700341 /**
Makoto Onuki1a2cd742015-11-16 13:51:27 -0800342 * User restrictions that have already been applied in
343 * {@link #updateUserRestrictionsInternalLR(Bundle, int)}. We use it to detect restrictions
344 * that have changed since the last
345 * {@link #updateUserRestrictionsInternalLR(Bundle, int)} call.
Makoto Onuki4f160732015-10-27 17:15:38 -0700346 */
347 @GuardedBy("mRestrictionsLock")
348 private final SparseArray<Bundle> mAppliedUserRestrictions = new SparseArray<>();
349
Makoto Onuki1a2cd742015-11-16 13:51:27 -0800350 /**
Makoto Onukie7927da2015-11-25 10:05:17 -0800351 * User restrictions set by {@link com.android.server.devicepolicy.DevicePolicyManagerService}
Pavel Grafov6a40f092016-10-25 15:46:51 +0100352 * that should be applied to all users, including guests. Only non-empty restriction bundles are
353 * stored.
Makoto Onuki1a2cd742015-11-16 13:51:27 -0800354 */
355 @GuardedBy("mRestrictionsLock")
Pavel Grafov6a40f092016-10-25 15:46:51 +0100356 private final SparseArray<Bundle> mDevicePolicyGlobalUserRestrictions = new SparseArray<>();
Makoto Onuki1a2cd742015-11-16 13:51:27 -0800357
358 /**
Zoltan Szatmary-Bane7834602016-04-08 18:41:11 +0100359 * Id of the user that set global restrictions.
360 */
361 @GuardedBy("mRestrictionsLock")
Pavel Grafov6a40f092016-10-25 15:46:51 +0100362 private int mDeviceOwnerUserId = UserHandle.USER_NULL;
Zoltan Szatmary-Bane7834602016-04-08 18:41:11 +0100363
364 /**
Makoto Onukie7927da2015-11-25 10:05:17 -0800365 * User restrictions set by {@link com.android.server.devicepolicy.DevicePolicyManagerService}
Pavel Grafov6a40f092016-10-25 15:46:51 +0100366 * for each user. Only non-empty restriction bundles are stored.
Makoto Onuki1a2cd742015-11-16 13:51:27 -0800367 */
368 @GuardedBy("mRestrictionsLock")
369 private final SparseArray<Bundle> mDevicePolicyLocalUserRestrictions = new SparseArray<>();
370
Fyodor Kupolove80085d2015-11-06 18:21:39 -0800371 @GuardedBy("mGuestRestrictions")
Amith Yamasanie4afaa32014-06-30 14:55:07 +0530372 private final Bundle mGuestRestrictions = new Bundle();
Jeff Sharkeyffe0cb42012-11-05 17:24:43 -0800373
374 /**
375 * Set of user IDs being actively removed. Removed IDs linger in this set
376 * for several seconds to work around a VFS caching issue.
Fyodor Kupolov0f4533d2016-05-18 18:43:12 -0700377 * Use {@link #addRemovingUserIdLocked(int)} to add elements to this array
Jeff Sharkeyffe0cb42012-11-05 17:24:43 -0800378 */
Fyodor Kupolov82402752015-10-28 14:54:51 -0700379 @GuardedBy("mUsersLock")
Jeff Sharkeyffe0cb42012-11-05 17:24:43 -0800380 private final SparseBooleanArray mRemovingUserIds = new SparseBooleanArray();
Dianne Hackborn4428e172012-08-24 17:43:05 -0700381
Fyodor Kupolov0f4533d2016-05-18 18:43:12 -0700382 /**
383 * Queue of recently removed userIds. Used for recycling of userIds
384 */
385 @GuardedBy("mUsersLock")
386 private final LinkedList<Integer> mRecentlyRemovedIds = new LinkedList<>();
387
Fyodor Kupolov82402752015-10-28 14:54:51 -0700388 @GuardedBy("mUsersLock")
Amith Yamasani0b285492011-04-14 17:35:23 -0700389 private int[] mUserIds;
Fyodor Kupolove80085d2015-11-06 18:21:39 -0800390 @GuardedBy("mPackagesLock")
Amith Yamasani2a003292012-08-14 18:25:45 -0700391 private int mNextSerialNumber;
Amith Yamasani6f34b412012-10-22 18:19:27 -0700392 private int mUserVersion = 0;
Amith Yamasani0b285492011-04-14 17:35:23 -0700393
Jason Monk62062992014-05-06 09:55:28 -0400394 private IAppOpsService mAppOpsService;
395
Makoto Onuki068c54a2015-10-13 14:34:03 -0700396 private final LocalService mLocalService;
397
Makoto Onukie7927da2015-11-25 10:05:17 -0800398 @GuardedBy("mUsersLock")
399 private boolean mIsDeviceManaged;
400
401 @GuardedBy("mUsersLock")
402 private final SparseBooleanArray mIsUserManaged = new SparseBooleanArray();
403
Makoto Onukid45a4a22015-11-02 17:17:38 -0800404 @GuardedBy("mUserRestrictionsListeners")
405 private final ArrayList<UserRestrictionsListener> mUserRestrictionsListeners =
406 new ArrayList<>();
407
Clara Bayarria1771112015-12-18 16:29:18 +0000408 private final LockPatternUtils mLockPatternUtils;
409
Ricky Waib1dd80b2016-06-07 18:00:55 +0100410 private final String ACTION_DISABLE_QUIET_MODE_AFTER_UNLOCK =
411 "com.android.server.pm.DISABLE_QUIET_MODE_AFTER_UNLOCK";
412
413 private final BroadcastReceiver mDisableQuietModeCallback = new BroadcastReceiver() {
414 @Override
415 public void onReceive(Context context, Intent intent) {
Tony Mak64fd8c02017-12-01 19:11:59 +0000416 if (!ACTION_DISABLE_QUIET_MODE_AFTER_UNLOCK.equals(intent.getAction())) {
417 return;
Ricky Waib1dd80b2016-06-07 18:00:55 +0100418 }
Tony Mak64fd8c02017-12-01 19:11:59 +0000419 final IntentSender target = intent.getParcelableExtra(Intent.EXTRA_INTENT);
Bookatzf56f2582019-09-04 16:06:41 -0700420 final int userId = intent.getIntExtra(Intent.EXTRA_USER_ID, UserHandle.USER_NULL);
Fyodor Kupolova68a2862018-01-30 18:22:00 -0800421 // Call setQuietModeEnabled on bg thread to avoid ANR
arangelov9b632d72018-12-07 23:21:22 +0000422 BackgroundThread.getHandler().post(() ->
Bookatzf56f2582019-09-04 16:06:41 -0700423 setQuietModeEnabled(userId, false, target, /* callingPackage */ null));
Ricky Waib1dd80b2016-06-07 18:00:55 +0100424 }
425 };
426
Lenka Trochtovaf348e8e2016-01-07 17:20:34 +0100427 /**
Tony Mak64fd8c02017-12-01 19:11:59 +0000428 * Start an {@link IntentSender} when user is unlocked after disabling quiet mode.
429 *
Tony Makbece85d2018-01-12 12:10:17 +0000430 * @see {@link #requestQuietModeEnabled(String, boolean, int, IntentSender)}
Tony Mak64fd8c02017-12-01 19:11:59 +0000431 */
432 private class DisableQuietModeUserUnlockedCallback extends IProgressListener.Stub {
433 private final IntentSender mTarget;
434
435 public DisableQuietModeUserUnlockedCallback(IntentSender target) {
436 Preconditions.checkNotNull(target);
437 mTarget = target;
438 }
439
440 @Override
441 public void onStarted(int id, Bundle extras) {}
442
443 @Override
444 public void onProgress(int id, int progress, Bundle extras) {}
445
446 @Override
447 public void onFinished(int id, Bundle extras) {
448 try {
449 mContext.startIntentSender(mTarget, null, 0, 0, 0);
450 } catch (IntentSender.SendIntentException e) {
451 Slog.e(LOG_TAG, "Failed to start the target in the callback", e);
452 }
453 }
454 }
455
456 /**
Lenka Trochtovaf348e8e2016-01-07 17:20:34 +0100457 * Whether all users should be created ephemeral.
458 */
459 @GuardedBy("mUsersLock")
460 private boolean mForceEphemeralUsers;
461
Amith Yamasaniea1b9d72016-05-27 15:57:38 +0000462 @GuardedBy("mUserStates")
463 private final SparseIntArray mUserStates = new SparseIntArray();
Fyodor Kupolov6c915ea2016-05-09 19:10:53 -0700464
Amith Yamasani258848d2012-08-10 17:06:33 -0700465 private static UserManagerService sInstance;
Amith Yamasani258848d2012-08-10 17:06:33 -0700466
Dianne Hackborn4428e172012-08-24 17:43:05 -0700467 public static UserManagerService getInstance() {
468 synchronized (UserManagerService.class) {
469 return sInstance;
Amith Yamasani258848d2012-08-10 17:06:33 -0700470 }
Amith Yamasani258848d2012-08-10 17:06:33 -0700471 }
Amith Yamasani4b2e9342011-03-31 12:38:53 -0700472
Amith Yamasanid04aaa32016-06-13 12:09:36 -0700473 public static class LifeCycle extends SystemService {
474
475 private UserManagerService mUms;
476
477 /**
478 * @param context
479 */
480 public LifeCycle(Context context) {
481 super(context);
482 }
483
484 @Override
485 public void onStart() {
486 mUms = UserManagerService.getInstance();
487 publishBinderService(Context.USER_SERVICE, mUms);
488 }
489
490 @Override
491 public void onBootPhase(int phase) {
492 if (phase == SystemService.PHASE_ACTIVITY_MANAGER_READY) {
493 mUms.cleanupPartialUsers();
494 }
495 }
Makoto Onuki73dded22017-12-20 13:14:48 +0900496
497 @Override
Bookatzf56f2582019-09-04 16:06:41 -0700498 public void onStartUser(@UserIdInt int userId) {
Makoto Onuki73dded22017-12-20 13:14:48 +0900499 synchronized (mUms.mUsersLock) {
Bookatzf56f2582019-09-04 16:06:41 -0700500 final UserData user = mUms.getUserDataLU(userId);
Makoto Onuki73dded22017-12-20 13:14:48 +0900501 if (user != null) {
502 user.startRealtime = SystemClock.elapsedRealtime();
503 }
504 }
505 }
506
507 @Override
Bookatzf56f2582019-09-04 16:06:41 -0700508 public void onUnlockUser(@UserIdInt int userId) {
Makoto Onuki73dded22017-12-20 13:14:48 +0900509 synchronized (mUms.mUsersLock) {
Bookatzf56f2582019-09-04 16:06:41 -0700510 final UserData user = mUms.getUserDataLU(userId);
Makoto Onuki73dded22017-12-20 13:14:48 +0900511 if (user != null) {
512 user.unlockRealtime = SystemClock.elapsedRealtime();
513 }
514 }
515 }
516
517 @Override
Bookatzf56f2582019-09-04 16:06:41 -0700518 public void onStopUser(@UserIdInt int userId) {
Makoto Onuki73dded22017-12-20 13:14:48 +0900519 synchronized (mUms.mUsersLock) {
Bookatzf56f2582019-09-04 16:06:41 -0700520 final UserData user = mUms.getUserDataLU(userId);
Makoto Onuki73dded22017-12-20 13:14:48 +0900521 if (user != null) {
522 user.startRealtime = 0;
523 user.unlockRealtime = 0;
524 }
525 }
526 }
Amith Yamasanid04aaa32016-06-13 12:09:36 -0700527 }
528
Fyodor Kupolov0f4533d2016-05-18 18:43:12 -0700529 // TODO b/28848102 Add support for test dependencies injection
Fyodor Kupolove80085d2015-11-06 18:21:39 -0800530 @VisibleForTesting
Fyodor Kupolov0f4533d2016-05-18 18:43:12 -0700531 UserManagerService(Context context) {
Fyodor Kupolov5c0ecfd2017-01-27 11:11:57 -0800532 this(context, null, null, new Object(), context.getCacheDir());
Amith Yamasani4b2e9342011-03-31 12:38:53 -0700533 }
534
Dianne Hackborn4428e172012-08-24 17:43:05 -0700535 /**
536 * Called by package manager to create the service. This is closely
537 * associated with the package manager, and the given lock is the
538 * package manager's own lock.
539 */
Fyodor Kupolov5c0ecfd2017-01-27 11:11:57 -0800540 UserManagerService(Context context, PackageManagerService pm, UserDataPreparer userDataPreparer,
541 Object packagesLock) {
542 this(context, pm, userDataPreparer, packagesLock, Environment.getDataDirectory());
Amith Yamasani4b2e9342011-03-31 12:38:53 -0700543 }
544
Dianne Hackborn4428e172012-08-24 17:43:05 -0700545 private UserManagerService(Context context, PackageManagerService pm,
Fyodor Kupolov5c0ecfd2017-01-27 11:11:57 -0800546 UserDataPreparer userDataPreparer, Object packagesLock, File dataDir) {
Dianne Hackbornd4ac8d72012-09-27 23:20:10 -0700547 mContext = context;
548 mPm = pm;
Dianne Hackbornd4ac8d72012-09-27 23:20:10 -0700549 mPackagesLock = packagesLock;
Fyodor Kupolov75d0ea82014-12-15 16:21:07 -0800550 mHandler = new MainHandler();
Fyodor Kupolov5c0ecfd2017-01-27 11:11:57 -0800551 mUserDataPreparer = userDataPreparer;
Bookatz029832a2019-10-04 16:50:22 -0700552 mUserTypes = UserTypeFactory.getUserTypes();
Fyodor Kupolove80085d2015-11-06 18:21:39 -0800553 synchronized (mPackagesLock) {
554 mUsersDir = new File(dataDir, USER_INFO_DIR);
555 mUsersDir.mkdirs();
556 // Make zeroth user directory, for services to migrate their files to that location
557 File userZeroDir = new File(mUsersDir, String.valueOf(UserHandle.USER_SYSTEM));
558 userZeroDir.mkdirs();
559 FileUtils.setPermissions(mUsersDir.toString(),
560 FileUtils.S_IRWXU | FileUtils.S_IRWXG | FileUtils.S_IROTH | FileUtils.S_IXOTH,
561 -1, -1);
562 mUserListFile = new File(mUsersDir, USER_LIST_FILENAME);
563 initDefaultGuestRestrictions();
564 readUserListLP();
565 sInstance = this;
Xiaohui Chen4be96e42015-05-06 09:55:43 -0700566 }
Bookatz04d7ae52019-08-05 14:07:12 -0700567 mSystemPackageInstaller = new UserSystemPackageInstaller(this);
Makoto Onuki068c54a2015-10-13 14:34:03 -0700568 mLocalService = new LocalService();
569 LocalServices.addService(UserManagerInternal.class, mLocalService);
Clara Bayarria1771112015-12-18 16:29:18 +0000570 mLockPatternUtils = new LockPatternUtils(mContext);
Amith Yamasaniea1b9d72016-05-27 15:57:38 +0000571 mUserStates.put(UserHandle.USER_SYSTEM, UserState.STATE_BOOTING);
Xiaohui Chen4be96e42015-05-06 09:55:43 -0700572 }
573
574 void systemReady() {
Jason Monk62062992014-05-06 09:55:28 -0400575 mAppOpsService = IAppOpsService.Stub.asInterface(
576 ServiceManager.getService(Context.APP_OPS_SERVICE));
Makoto Onuki1a2cd742015-11-16 13:51:27 -0800577
578 synchronized (mRestrictionsLock) {
579 applyUserRestrictionsLR(UserHandle.USER_SYSTEM);
Jason Monk62062992014-05-06 09:55:28 -0400580 }
Samuel Tand9453b82016-03-14 15:57:02 -0700581
582 UserInfo currentGuestUser = findCurrentGuestUser();
583 if (currentGuestUser != null && !hasUserRestriction(
584 UserManager.DISALLOW_CONFIG_WIFI, currentGuestUser.id)) {
585 // If a guest user currently exists, apply the DISALLOW_CONFIG_WIFI option
586 // to it, in case this guest was created in a previous version where this
587 // user restriction was not a default guest restriction.
588 setUserRestriction(UserManager.DISALLOW_CONFIG_WIFI, true, currentGuestUser.id);
589 }
Amith Yamasanieb437d42016-04-29 09:31:25 -0700590
Ricky Waib1dd80b2016-06-07 18:00:55 +0100591 mContext.registerReceiver(mDisableQuietModeCallback,
592 new IntentFilter(ACTION_DISABLE_QUIET_MODE_AFTER_UNLOCK),
593 null, mHandler);
Amith Yamasani258848d2012-08-10 17:06:33 -0700594 }
595
Patrick Baumann6ae7afc2019-07-30 13:11:28 -0700596 /**
597 * This method retrieves the {@link UserManagerInternal} only for the purpose of
598 * PackageManagerService construction.
599 */
600 UserManagerInternal getInternalForInjectorOnly() {
601 return mLocalService;
602 }
603
Amith Yamasanid04aaa32016-06-13 12:09:36 -0700604 void cleanupPartialUsers() {
605 // Prune out any partially created, partially removed and ephemeral users.
606 ArrayList<UserInfo> partials = new ArrayList<>();
607 synchronized (mUsersLock) {
608 final int userSize = mUsers.size();
609 for (int i = 0; i < userSize; i++) {
610 UserInfo ui = mUsers.valueAt(i).info;
Felipe Lemec1ca4412019-09-11 09:23:26 -0700611 if ((ui.partial || ui.guestToRemove || (ui.isEphemeral() && !ui.preCreated))
612 && i != 0) {
Amith Yamasanid04aaa32016-06-13 12:09:36 -0700613 partials.add(ui);
Fyodor Kupolov0f4533d2016-05-18 18:43:12 -0700614 addRemovingUserIdLocked(ui.id);
Amith Yamasaniae261892016-06-27 10:40:09 -0700615 ui.partial = true;
Amith Yamasanid04aaa32016-06-13 12:09:36 -0700616 }
617 }
618 }
619 final int partialsSize = partials.size();
620 for (int i = 0; i < partialsSize; i++) {
621 UserInfo ui = partials.get(i);
622 Slog.w(LOG_TAG, "Removing partially created user " + ui.id
623 + " (name=" + ui.name + ")");
624 removeUserState(ui.id);
625 }
626 }
627
Amith Yamasani258848d2012-08-10 17:06:33 -0700628 @Override
Bookatzf56f2582019-09-04 16:06:41 -0700629 public String getUserAccount(@UserIdInt int userId) {
Xiaohui Chenb3b92582015-12-07 11:22:13 -0800630 checkManageUserAndAcrossUsersFullPermission("get user account");
631 synchronized (mUsersLock) {
Amith Yamasani12747872015-12-07 14:19:49 -0800632 return mUsers.get(userId).account;
Xiaohui Chenb3b92582015-12-07 11:22:13 -0800633 }
634 }
635
636 @Override
Bookatzf56f2582019-09-04 16:06:41 -0700637 public void setUserAccount(@UserIdInt int userId, String accountName) {
Xiaohui Chenb3b92582015-12-07 11:22:13 -0800638 checkManageUserAndAcrossUsersFullPermission("set user account");
Amith Yamasani12747872015-12-07 14:19:49 -0800639 UserData userToUpdate = null;
Xiaohui Chenb3b92582015-12-07 11:22:13 -0800640 synchronized (mPackagesLock) {
641 synchronized (mUsersLock) {
Amith Yamasani12747872015-12-07 14:19:49 -0800642 final UserData userData = mUsers.get(userId);
643 if (userData == null) {
644 Slog.e(LOG_TAG, "User not found for setting user account: u" + userId);
645 return;
646 }
647 String currentAccount = userData.account;
Narayan Kamath607223f2018-02-19 14:09:02 +0000648 if (!Objects.equals(currentAccount, accountName)) {
Amith Yamasani12747872015-12-07 14:19:49 -0800649 userData.account = accountName;
650 userToUpdate = userData;
Xiaohui Chenb3b92582015-12-07 11:22:13 -0800651 }
652 }
653
654 if (userToUpdate != null) {
655 writeUserLP(userToUpdate);
656 }
657 }
658 }
659
660 @Override
Xiaohui Chen70f6c382015-04-28 14:21:43 -0700661 public UserInfo getPrimaryUser() {
662 checkManageUsersPermission("query users");
Fyodor Kupolov82402752015-10-28 14:54:51 -0700663 synchronized (mUsersLock) {
Amith Yamasani515d4062015-09-28 11:30:06 -0700664 final int userSize = mUsers.size();
665 for (int i = 0; i < userSize; i++) {
Amith Yamasani12747872015-12-07 14:19:49 -0800666 UserInfo ui = mUsers.valueAt(i).info;
Xiaohui Chend3e9e182015-11-18 13:37:32 -0800667 if (ui.isPrimary() && !mRemovingUserIds.get(ui.id)) {
Xiaohui Chen70f6c382015-04-28 14:21:43 -0700668 return ui;
669 }
670 }
671 }
672 return null;
673 }
674
Xiaohui Chen594f2082015-08-18 11:04:20 -0700675 public @NonNull List<UserInfo> getUsers(boolean excludeDying) {
Felipe Lemec1ca4412019-09-11 09:23:26 -0700676 return getUsers(/*excludePartial= */ true, excludeDying, /* excludePreCreated= */ true);
677 }
678
Felipe Leme09a7f2d2019-10-02 16:27:46 -0700679 @Override
680 public @NonNull List<UserInfo> getUsers(boolean excludePartial, boolean excludeDying,
Felipe Lemec1ca4412019-09-11 09:23:26 -0700681 boolean excludePreCreated) {
Sudheer Shankaf5cea032016-06-08 17:13:24 -0700682 checkManageOrCreateUsersPermission("query users");
Fyodor Kupolov82402752015-10-28 14:54:51 -0700683 synchronized (mUsersLock) {
Amith Yamasani13593602012-03-22 16:16:17 -0700684 ArrayList<UserInfo> users = new ArrayList<UserInfo>(mUsers.size());
Amith Yamasani515d4062015-09-28 11:30:06 -0700685 final int userSize = mUsers.size();
686 for (int i = 0; i < userSize; i++) {
Amith Yamasani12747872015-12-07 14:19:49 -0800687 UserInfo ui = mUsers.valueAt(i).info;
Felipe Lemec1ca4412019-09-11 09:23:26 -0700688 if ((excludePartial && ui.partial)
689 || (excludeDying && mRemovingUserIds.get(ui.id))
690 || (excludePreCreated && ui.preCreated)) {
Dianne Hackbornd4ac8d72012-09-27 23:20:10 -0700691 continue;
692 }
Felipe Lemec1ca4412019-09-11 09:23:26 -0700693 users.add(userWithName(ui));
Amith Yamasani13593602012-03-22 16:16:17 -0700694 }
695 return users;
Amith Yamasani4b2e9342011-03-31 12:38:53 -0700696 }
Amith Yamasani13593602012-03-22 16:16:17 -0700697 }
698
Amith Yamasani258848d2012-08-10 17:06:33 -0700699 @Override
Bookatzf56f2582019-09-04 16:06:41 -0700700 public List<UserInfo> getProfiles(@UserIdInt int userId, boolean enabledOnly) {
Fyodor Kupolovc533b562016-04-01 14:37:07 -0700701 boolean returnFullInfo = true;
Amith Yamasani4f582632014-02-19 14:31:52 -0800702 if (userId != UserHandle.getCallingUserId()) {
Sudheer Shanka74680912016-07-29 11:03:37 -0700703 checkManageOrCreateUsersPermission("getting profiles related to user " + userId);
Fyodor Kupolovc533b562016-04-01 14:37:07 -0700704 } else {
705 returnFullInfo = hasManageUsersPermission();
Amith Yamasani4f582632014-02-19 14:31:52 -0800706 }
Amith Yamasanibe465322014-04-24 13:45:17 -0700707 final long ident = Binder.clearCallingIdentity();
708 try {
Fyodor Kupolov82402752015-10-28 14:54:51 -0700709 synchronized (mUsersLock) {
Bookatz029832a2019-10-04 16:50:22 -0700710 return getProfilesLU(userId, /* userType */ null, enabledOnly, returnFullInfo);
Alexandra Gherghina385124d2014-04-03 13:37:39 +0100711 }
Amith Yamasanibe465322014-04-24 13:45:17 -0700712 } finally {
713 Binder.restoreCallingIdentity(ident);
Kenny Guya52dc3e2014-02-11 15:33:14 +0000714 }
715 }
716
Bookatz029832a2019-10-04 16:50:22 -0700717 // TODO(b/142482943): Will probably need a getProfiles(userType). But permissions may vary.
718
Fyodor Kupolov7f98aa42016-04-07 14:56:25 -0700719 @Override
Bookatzf56f2582019-09-04 16:06:41 -0700720 public int[] getProfileIds(@UserIdInt int userId, boolean enabledOnly) {
Bookatz029832a2019-10-04 16:50:22 -0700721 return getProfileIds(userId, null, enabledOnly);
722 }
723
724 // TODO(b/142482943): Probably @Override and make this accessible in UserManager.
725 /**
726 * Returns all the users of type userType that are in the same profile group as userId
727 * (including userId itself, if it is of the appropriate user type).
728 *
729 * <p>If userType is non-{@code null}, only returns users that are of type userType.
730 * If enabledOnly, only returns users that are not {@link UserInfo#FLAG_DISABLED}.
731 */
732 public int[] getProfileIds(@UserIdInt int userId, @Nullable String userType,
733 boolean enabledOnly) {
Fyodor Kupolov7f98aa42016-04-07 14:56:25 -0700734 if (userId != UserHandle.getCallingUserId()) {
bohu12d23a12016-09-26 16:20:07 -0700735 checkManageOrCreateUsersPermission("getting profiles related to user " + userId);
Fyodor Kupolov7f98aa42016-04-07 14:56:25 -0700736 }
737 final long ident = Binder.clearCallingIdentity();
738 try {
739 synchronized (mUsersLock) {
Bookatz029832a2019-10-04 16:50:22 -0700740 return getProfileIdsLU(userId, userType, enabledOnly).toArray();
Fyodor Kupolov7f98aa42016-04-07 14:56:25 -0700741 }
742 } finally {
743 Binder.restoreCallingIdentity(ident);
744 }
745 }
746
Amith Yamasanibe465322014-04-24 13:45:17 -0700747 /** Assume permissions already checked and caller's identity cleared */
Andreas Gampe2e8c7672018-07-20 13:01:08 -0700748 @GuardedBy("mUsersLock")
Bookatz029832a2019-10-04 16:50:22 -0700749 private List<UserInfo> getProfilesLU(@UserIdInt int userId, @Nullable String userType,
750 boolean enabledOnly, boolean fullInfo) {
751 IntArray profileIds = getProfileIdsLU(userId, userType, enabledOnly);
Fyodor Kupolov7f98aa42016-04-07 14:56:25 -0700752 ArrayList<UserInfo> users = new ArrayList<>(profileIds.size());
753 for (int i = 0; i < profileIds.size(); i++) {
754 int profileId = profileIds.get(i);
755 UserInfo userInfo = mUsers.get(profileId).info;
756 // If full info is not required - clear PII data to prevent 3P apps from reading it
757 if (!fullInfo) {
758 userInfo = new UserInfo(userInfo);
759 userInfo.name = null;
760 userInfo.iconPath = null;
761 } else {
762 userInfo = userWithName(userInfo);
763 }
764 users.add(userInfo);
765 }
766 return users;
767 }
768
769 /**
770 * Assume permissions already checked and caller's identity cleared
Bookatz029832a2019-10-04 16:50:22 -0700771 * <p>If userType is {@code null}, returns all profiles for user; else, only returns
772 * profiles of that type.
Fyodor Kupolov7f98aa42016-04-07 14:56:25 -0700773 */
Andreas Gampe2e8c7672018-07-20 13:01:08 -0700774 @GuardedBy("mUsersLock")
Bookatz029832a2019-10-04 16:50:22 -0700775 private IntArray getProfileIdsLU(@UserIdInt int userId, @Nullable String userType,
776 boolean enabledOnly) {
Fyodor Kupolov82402752015-10-28 14:54:51 -0700777 UserInfo user = getUserInfoLU(userId);
Fyodor Kupolov7f98aa42016-04-07 14:56:25 -0700778 IntArray result = new IntArray(mUsers.size());
Amith Yamasanidda003f2014-08-28 18:06:51 -0700779 if (user == null) {
780 // Probably a dying user
Fyodor Kupolov7f98aa42016-04-07 14:56:25 -0700781 return result;
Amith Yamasanidda003f2014-08-28 18:06:51 -0700782 }
Amith Yamasani515d4062015-09-28 11:30:06 -0700783 final int userSize = mUsers.size();
784 for (int i = 0; i < userSize; i++) {
Amith Yamasani12747872015-12-07 14:19:49 -0800785 UserInfo profile = mUsers.valueAt(i).info;
Amith Yamasanibe465322014-04-24 13:45:17 -0700786 if (!isProfileOf(user, profile)) {
787 continue;
788 }
Alexandra Gherghinadf35d572014-04-09 13:54:39 +0100789 if (enabledOnly && !profile.isEnabled()) {
790 continue;
Amith Yamasanibe465322014-04-24 13:45:17 -0700791 }
Amith Yamasani70fcf0c2014-07-11 08:40:19 -0700792 if (mRemovingUserIds.get(profile.id)) {
793 continue;
794 }
Tony Mak80189cd2016-04-05 17:21:42 +0100795 if (profile.partial) {
796 continue;
797 }
Bookatz029832a2019-10-04 16:50:22 -0700798 if (userType != null && !userType.equals(profile.userType)) {
799 continue;
800 }
Fyodor Kupolov7f98aa42016-04-07 14:56:25 -0700801 result.add(profile.id);
Amith Yamasanibe465322014-04-24 13:45:17 -0700802 }
Fyodor Kupolov7f98aa42016-04-07 14:56:25 -0700803 return result;
Amith Yamasanibe465322014-04-24 13:45:17 -0700804 }
805
Jessica Hummelbe81c802014-04-22 15:49:22 +0100806 @Override
Bookatzf56f2582019-09-04 16:06:41 -0700807 public int getCredentialOwnerProfile(@UserIdInt int userId) {
Andres Moralesc5548c02015-08-05 10:23:12 -0700808 checkManageUsersPermission("get the credential owner");
Bookatzf56f2582019-09-04 16:06:41 -0700809 if (!mLockPatternUtils.isSeparateProfileChallengeEnabled(userId)) {
Fyodor Kupolov82402752015-10-28 14:54:51 -0700810 synchronized (mUsersLock) {
Bookatzf56f2582019-09-04 16:06:41 -0700811 UserInfo profileParent = getProfileParentLU(userId);
Andres Moralesc5548c02015-08-05 10:23:12 -0700812 if (profileParent != null) {
813 return profileParent.id;
814 }
815 }
816 }
817
Bookatzf56f2582019-09-04 16:06:41 -0700818 return userId;
Andres Moralesc5548c02015-08-05 10:23:12 -0700819 }
820
821 @Override
Bookatzf56f2582019-09-04 16:06:41 -0700822 public boolean isSameProfileGroup(@UserIdInt int userId, int otherUserId) {
Xiaohui Chenfd5b7742015-10-14 15:47:04 -0700823 if (userId == otherUserId) return true;
824 checkManageUsersPermission("check if in the same profile group");
Fyodor Kupolov0fb772e2016-10-13 16:27:34 -0700825 return isSameProfileGroupNoChecks(userId, otherUserId);
826 }
827
Bookatzf56f2582019-09-04 16:06:41 -0700828 private boolean isSameProfileGroupNoChecks(@UserIdInt int userId, int otherUserId) {
Fyodor Kupolov82402752015-10-28 14:54:51 -0700829 synchronized (mUsersLock) {
830 UserInfo userInfo = getUserInfoLU(userId);
831 if (userInfo == null || userInfo.profileGroupId == UserInfo.NO_PROFILE_GROUP_ID) {
832 return false;
833 }
834 UserInfo otherUserInfo = getUserInfoLU(otherUserId);
835 if (otherUserInfo == null
836 || otherUserInfo.profileGroupId == UserInfo.NO_PROFILE_GROUP_ID) {
837 return false;
838 }
839 return userInfo.profileGroupId == otherUserInfo.profileGroupId;
Xiaohui Chenfd5b7742015-10-14 15:47:04 -0700840 }
Xiaohui Chenfd5b7742015-10-14 15:47:04 -0700841 }
842
843 @Override
Bookatzf56f2582019-09-04 16:06:41 -0700844 public UserInfo getProfileParent(@UserIdInt int userId) {
Jessica Hummelbe81c802014-04-22 15:49:22 +0100845 checkManageUsersPermission("get the profile parent");
Fyodor Kupolov82402752015-10-28 14:54:51 -0700846 synchronized (mUsersLock) {
Bookatzf56f2582019-09-04 16:06:41 -0700847 return getProfileParentLU(userId);
Fyodor Kupolovff7233e2015-04-08 11:28:52 -0700848 }
849 }
850
Jakub Pawlowski0f1f5b72017-11-15 14:50:43 -0800851 @Override
Bookatzf56f2582019-09-04 16:06:41 -0700852 public int getProfileParentId(@UserIdInt int userId) {
Jakub Pawlowski0f1f5b72017-11-15 14:50:43 -0800853 checkManageUsersPermission("get the profile parent");
Bookatzf56f2582019-09-04 16:06:41 -0700854 return mLocalService.getProfileParentId(userId);
Jakub Pawlowski0f1f5b72017-11-15 14:50:43 -0800855 }
856
Andreas Gampe2e8c7672018-07-20 13:01:08 -0700857 @GuardedBy("mUsersLock")
Bookatzf56f2582019-09-04 16:06:41 -0700858 private UserInfo getProfileParentLU(@UserIdInt int userId) {
859 UserInfo profile = getUserInfoLU(userId);
Fyodor Kupolovff7233e2015-04-08 11:28:52 -0700860 if (profile == null) {
861 return null;
862 }
863 int parentUserId = profile.profileGroupId;
Bookatzf56f2582019-09-04 16:06:41 -0700864 if (parentUserId == userId || parentUserId == UserInfo.NO_PROFILE_GROUP_ID) {
Fyodor Kupolovff7233e2015-04-08 11:28:52 -0700865 return null;
866 } else {
Fyodor Kupolov82402752015-10-28 14:54:51 -0700867 return getUserInfoLU(parentUserId);
Jessica Hummelbe81c802014-04-22 15:49:22 +0100868 }
869 }
870
Fyodor Kupolov82402752015-10-28 14:54:51 -0700871 private static boolean isProfileOf(UserInfo user, UserInfo profile) {
Kenny Guy2a764942014-04-02 13:29:20 +0100872 return user.id == profile.id ||
873 (user.profileGroupId != UserInfo.NO_PROFILE_GROUP_ID
874 && user.profileGroupId == profile.profileGroupId);
Kenny Guya52dc3e2014-02-11 15:33:14 +0000875 }
876
Rubin Xu0a29ecd2015-11-04 15:11:48 +0000877 private void broadcastProfileAvailabilityChanges(UserHandle profileHandle,
Rubin Xuf13c9802016-01-21 18:06:00 +0000878 UserHandle parentHandle, boolean inQuietMode) {
Rubin Xue95057a2016-04-01 16:49:25 +0100879 Intent intent = new Intent();
880 if (inQuietMode) {
881 intent.setAction(Intent.ACTION_MANAGED_PROFILE_UNAVAILABLE);
882 } else {
883 intent.setAction(Intent.ACTION_MANAGED_PROFILE_AVAILABLE);
884 }
Rubin Xuf13c9802016-01-21 18:06:00 +0000885 intent.putExtra(Intent.EXTRA_QUIET_MODE, inQuietMode);
886 intent.putExtra(Intent.EXTRA_USER, profileHandle);
887 intent.putExtra(Intent.EXTRA_USER_HANDLE, profileHandle.getIdentifier());
Rubin Xu0a29ecd2015-11-04 15:11:48 +0000888 intent.addFlags(Intent.FLAG_RECEIVER_REGISTERED_ONLY);
Rubin Xuf13c9802016-01-21 18:06:00 +0000889 mContext.sendBroadcastAsUser(intent, parentHandle);
Rubin Xu0a29ecd2015-11-04 15:11:48 +0000890 }
891
892 @Override
Tony Makbece85d2018-01-12 12:10:17 +0000893 public boolean requestQuietModeEnabled(@NonNull String callingPackage, boolean enableQuietMode,
Bookatzf56f2582019-09-04 16:06:41 -0700894 @UserIdInt int userId, @Nullable IntentSender target) {
Tony Make3d1f652017-12-12 11:00:37 +0000895 Preconditions.checkNotNull(callingPackage);
896
Tony Makb7e6fd42017-12-05 19:40:28 +0000897 if (enableQuietMode && target != null) {
898 throw new IllegalArgumentException(
899 "target should only be specified when we are disabling quiet mode.");
900 }
Rubin Xu0a29ecd2015-11-04 15:11:48 +0000901
Bookatz3cb67df2019-10-16 17:20:06 -0400902 ensureCanModifyQuietMode(callingPackage, Binder.getCallingUid(), userId, target != null);
Tony Makb7e6fd42017-12-05 19:40:28 +0000903 final long identity = Binder.clearCallingIdentity();
904 try {
arangelov9b632d72018-12-07 23:21:22 +0000905 boolean result = false;
Tony Makb7e6fd42017-12-05 19:40:28 +0000906 if (enableQuietMode) {
arangelov9b632d72018-12-07 23:21:22 +0000907 setQuietModeEnabled(
Bookatzf56f2582019-09-04 16:06:41 -0700908 userId, true /* enableQuietMode */, target, callingPackage);
arangelov9b632d72018-12-07 23:21:22 +0000909 result = true;
Tony Makb7e6fd42017-12-05 19:40:28 +0000910 } else {
911 boolean needToShowConfirmCredential =
Bookatzf56f2582019-09-04 16:06:41 -0700912 mLockPatternUtils.isSecure(userId)
913 && !StorageManager.isUserKeyUnlocked(userId);
Tony Makb7e6fd42017-12-05 19:40:28 +0000914 if (needToShowConfirmCredential) {
Bookatzf56f2582019-09-04 16:06:41 -0700915 showConfirmCredentialToDisableQuietMode(userId, target);
Tony Makb7e6fd42017-12-05 19:40:28 +0000916 } else {
arangelov9b632d72018-12-07 23:21:22 +0000917 setQuietModeEnabled(
Bookatzf56f2582019-09-04 16:06:41 -0700918 userId, false /* enableQuietMode */, target, callingPackage);
arangelov9b632d72018-12-07 23:21:22 +0000919 result = true;
Tony Makb7e6fd42017-12-05 19:40:28 +0000920 }
Rubin Xu0a29ecd2015-11-04 15:11:48 +0000921 }
arangelov9b632d72018-12-07 23:21:22 +0000922 return result;
Tony Makb7e6fd42017-12-05 19:40:28 +0000923 } finally {
924 Binder.restoreCallingIdentity(identity);
925 }
926 }
927
Tony Make3d1f652017-12-12 11:00:37 +0000928 /**
Tony Makd390ae92017-12-28 13:23:10 +0000929 * The caller can modify quiet mode if it meets one of these conditions:
Tony Make3d1f652017-12-12 11:00:37 +0000930 * <ul>
931 * <li>Has system UID or root UID</li>
932 * <li>Has {@link Manifest.permission#MODIFY_QUIET_MODE}</li>
933 * <li>Has {@link Manifest.permission#MANAGE_USERS}</li>
Bookatz3cb67df2019-10-16 17:20:06 -0400934 * <li>Is the foreground default launcher app</li>
Tony Make3d1f652017-12-12 11:00:37 +0000935 * </ul>
Tony Makd390ae92017-12-28 13:23:10 +0000936 * <p>
Bookatz3cb67df2019-10-16 17:20:06 -0400937 * If caller wants to start an intent after disabling the quiet mode, or if it is targeting a
938 * user in a different profile group from the caller, it must have
Tony Makd390ae92017-12-28 13:23:10 +0000939 * {@link Manifest.permission#MANAGE_USERS}.
Tony Make3d1f652017-12-12 11:00:37 +0000940 */
Tony Makd390ae92017-12-28 13:23:10 +0000941 private void ensureCanModifyQuietMode(String callingPackage, int callingUid,
Bookatz3cb67df2019-10-16 17:20:06 -0400942 @UserIdInt int targetUserId, boolean startIntent) {
Tony Make3d1f652017-12-12 11:00:37 +0000943 if (hasManageUsersPermission()) {
Tony Makd390ae92017-12-28 13:23:10 +0000944 return;
Tony Make3d1f652017-12-12 11:00:37 +0000945 }
Tony Makd390ae92017-12-28 13:23:10 +0000946 if (startIntent) {
947 throw new SecurityException("MANAGE_USERS permission is required to start intent "
948 + "after disabling quiet mode.");
949 }
Bookatz3cb67df2019-10-16 17:20:06 -0400950 if (!isSameProfileGroupNoChecks(UserHandle.getUserId(callingUid), targetUserId)) {
951 throw new SecurityException("MANAGE_USERS permission is required to modify quiet mode "
952 + "for a different profile group.");
953 }
jovanakf24ad492018-05-18 12:15:59 -0700954 final boolean hasModifyQuietModePermission = hasPermissionGranted(
955 Manifest.permission.MODIFY_QUIET_MODE, callingUid);
Tony Make3d1f652017-12-12 11:00:37 +0000956 if (hasModifyQuietModePermission) {
Tony Makd390ae92017-12-28 13:23:10 +0000957 return;
Tony Make3d1f652017-12-12 11:00:37 +0000958 }
959
Tony Makd390ae92017-12-28 13:23:10 +0000960 verifyCallingPackage(callingPackage, callingUid);
Tony Make3d1f652017-12-12 11:00:37 +0000961 final ShortcutServiceInternal shortcutInternal =
962 LocalServices.getService(ShortcutServiceInternal.class);
963 if (shortcutInternal != null) {
964 boolean isForegroundLauncher =
965 shortcutInternal.isForegroundDefaultLauncher(callingPackage, callingUid);
966 if (isForegroundLauncher) {
Tony Makd390ae92017-12-28 13:23:10 +0000967 return;
Tony Make3d1f652017-12-12 11:00:37 +0000968 }
969 }
Tony Makd390ae92017-12-28 13:23:10 +0000970 throw new SecurityException("Can't modify quiet mode, caller is neither foreground "
971 + "default launcher nor has MANAGE_USERS/MODIFY_QUIET_MODE permission");
Tony Make3d1f652017-12-12 11:00:37 +0000972 }
973
Bookatzf56f2582019-09-04 16:06:41 -0700974 private void setQuietModeEnabled(@UserIdInt int userId, boolean enableQuietMode,
arangelov9b632d72018-12-07 23:21:22 +0000975 IntentSender target, @Nullable String callingPackage) {
Tony Makb7e6fd42017-12-05 19:40:28 +0000976 final UserInfo profile, parent;
977 final UserData profileUserData;
978 synchronized (mUsersLock) {
Bookatzf56f2582019-09-04 16:06:41 -0700979 profile = getUserInfoLU(userId);
980 parent = getProfileParentLU(userId);
Tony Makb7e6fd42017-12-05 19:40:28 +0000981
Rubin Xu0a29ecd2015-11-04 15:11:48 +0000982 if (profile == null || !profile.isManagedProfile()) {
Bookatzf56f2582019-09-04 16:06:41 -0700983 throw new IllegalArgumentException("User " + userId + " is not a profile");
Rubin Xu0a29ecd2015-11-04 15:11:48 +0000984 }
Tony Makb7e6fd42017-12-05 19:40:28 +0000985 if (profile.isQuietModeEnabled() == enableQuietMode) {
986 Slog.i(LOG_TAG, "Quiet mode is already " + enableQuietMode);
987 return;
Rubin Xu0a29ecd2015-11-04 15:11:48 +0000988 }
Tony Makb7e6fd42017-12-05 19:40:28 +0000989 profile.flags ^= UserInfo.FLAG_QUIET_MODE;
990 profileUserData = getUserDataLU(profile.id);
Rubin Xu0a29ecd2015-11-04 15:11:48 +0000991 }
Tony Makb7e6fd42017-12-05 19:40:28 +0000992 synchronized (mPackagesLock) {
993 writeUserLP(profileUserData);
994 }
995 try {
996 if (enableQuietMode) {
Bookatzf56f2582019-09-04 16:06:41 -0700997 ActivityManager.getService().stopUser(userId, /* force */true, null);
Tony Makb7e6fd42017-12-05 19:40:28 +0000998 LocalServices.getService(ActivityManagerInternal.class)
Bookatzf56f2582019-09-04 16:06:41 -0700999 .killForegroundAppsForUser(userId);
Tony Makb7e6fd42017-12-05 19:40:28 +00001000 } else {
1001 IProgressListener callback = target != null
1002 ? new DisableQuietModeUserUnlockedCallback(target)
1003 : null;
1004 ActivityManager.getService().startUserInBackgroundWithListener(
Bookatzf56f2582019-09-04 16:06:41 -07001005 userId, callback);
Rubin Xuf13c9802016-01-21 18:06:00 +00001006 }
Bookatzf56f2582019-09-04 16:06:41 -07001007 logQuietModeEnabled(userId, enableQuietMode, callingPackage);
Tony Makb7e6fd42017-12-05 19:40:28 +00001008 } catch (RemoteException e) {
1009 // Should not happen, same process.
1010 e.rethrowAsRuntimeException();
Rubin Xu0a29ecd2015-11-04 15:11:48 +00001011 }
Tony Makb7e6fd42017-12-05 19:40:28 +00001012 broadcastProfileAvailabilityChanges(profile.getUserHandle(), parent.getUserHandle(),
1013 enableQuietMode);
Rubin Xu0a29ecd2015-11-04 15:11:48 +00001014 }
1015
Bookatzf56f2582019-09-04 16:06:41 -07001016 private void logQuietModeEnabled(@UserIdInt int userId, boolean enableQuietMode,
arangelov9b632d72018-12-07 23:21:22 +00001017 @Nullable String callingPackage) {
1018 UserData userData;
1019 synchronized (mUsersLock) {
Bookatzf56f2582019-09-04 16:06:41 -07001020 userData = getUserDataLU(userId);
arangelov9b632d72018-12-07 23:21:22 +00001021 }
1022 if (userData == null) {
1023 return;
1024 }
1025 final long now = System.currentTimeMillis();
1026 final long period = (userData.getLastRequestQuietModeEnabledMillis() != 0L
1027 ? now - userData.getLastRequestQuietModeEnabledMillis()
1028 : now - userData.info.creationTime);
1029 DevicePolicyEventLogger
1030 .createEvent(DevicePolicyEnums.REQUEST_QUIET_MODE_ENABLED)
1031 .setStrings(callingPackage)
1032 .setBoolean(enableQuietMode)
1033 .setTimePeriod(period)
1034 .write();
1035 userData.setLastRequestQuietModeEnabledMillis(now);
1036 }
1037
Rubin Xu0a29ecd2015-11-04 15:11:48 +00001038 @Override
Bookatzf56f2582019-09-04 16:06:41 -07001039 public boolean isQuietModeEnabled(@UserIdInt int userId) {
Rubin Xu0a29ecd2015-11-04 15:11:48 +00001040 synchronized (mPackagesLock) {
1041 UserInfo info;
1042 synchronized (mUsersLock) {
Bookatzf56f2582019-09-04 16:06:41 -07001043 info = getUserInfoLU(userId);
Rubin Xu0a29ecd2015-11-04 15:11:48 +00001044 }
1045 if (info == null || !info.isManagedProfile()) {
Rubin Xuf13c9802016-01-21 18:06:00 +00001046 return false;
Rubin Xu0a29ecd2015-11-04 15:11:48 +00001047 }
1048 return info.isQuietModeEnabled();
1049 }
1050 }
1051
Tony Makb7e6fd42017-12-05 19:40:28 +00001052 /**
1053 * Show confirm credential screen to unlock user in order to turn off quiet mode.
1054 */
1055 private void showConfirmCredentialToDisableQuietMode(
Bookatzf56f2582019-09-04 16:06:41 -07001056 @UserIdInt int userId, @Nullable IntentSender target) {
Tony Makb7e6fd42017-12-05 19:40:28 +00001057 // otherwise, we show a profile challenge to trigger decryption of the user
1058 final KeyguardManager km = (KeyguardManager) mContext.getSystemService(
1059 Context.KEYGUARD_SERVICE);
Bookatzf56f2582019-09-04 16:06:41 -07001060 // We should use userId not credentialOwnerUserId here, as even if it is unified
Tony Makb7e6fd42017-12-05 19:40:28 +00001061 // lock, confirm screenlock page will know and show personal challenge, and unlock
1062 // work profile when personal challenge is correct
Bookatzf56f2582019-09-04 16:06:41 -07001063 final Intent unlockIntent = km.createConfirmDeviceCredentialIntent(null, null, userId);
Tony Makb7e6fd42017-12-05 19:40:28 +00001064 if (unlockIntent == null) {
1065 return;
Benjamin Franzf02420c2016-04-04 18:52:21 +01001066 }
Tony Makb7e6fd42017-12-05 19:40:28 +00001067 final Intent callBackIntent = new Intent(
1068 ACTION_DISABLE_QUIET_MODE_AFTER_UNLOCK);
1069 if (target != null) {
1070 callBackIntent.putExtra(Intent.EXTRA_INTENT, target);
Benjamin Franzf02420c2016-04-04 18:52:21 +01001071 }
Bookatzf56f2582019-09-04 16:06:41 -07001072 callBackIntent.putExtra(Intent.EXTRA_USER_ID, userId);
Tony Makb7e6fd42017-12-05 19:40:28 +00001073 callBackIntent.setPackage(mContext.getPackageName());
1074 callBackIntent.addFlags(Intent.FLAG_RECEIVER_FOREGROUND);
1075 final PendingIntent pendingIntent = PendingIntent.getBroadcast(
1076 mContext,
1077 0,
1078 callBackIntent,
1079 PendingIntent.FLAG_CANCEL_CURRENT |
1080 PendingIntent.FLAG_ONE_SHOT |
1081 PendingIntent.FLAG_IMMUTABLE);
1082 // After unlocking the challenge, it will disable quiet mode and run the original
1083 // intentSender
1084 unlockIntent.putExtra(Intent.EXTRA_INTENT, pendingIntent.getIntentSender());
1085 unlockIntent.setFlags(FLAG_ACTIVITY_NEW_TASK | FLAG_ACTIVITY_EXCLUDE_FROM_RECENTS);
1086 mContext.startActivity(unlockIntent);
Benjamin Franzf02420c2016-04-04 18:52:21 +01001087 }
1088
1089 @Override
Bookatzf56f2582019-09-04 16:06:41 -07001090 public void setUserEnabled(@UserIdInt int userId) {
Alexandra Gherghinadf35d572014-04-09 13:54:39 +01001091 checkManageUsersPermission("enable user");
1092 synchronized (mPackagesLock) {
Fyodor Kupolov82402752015-10-28 14:54:51 -07001093 UserInfo info;
1094 synchronized (mUsersLock) {
1095 info = getUserInfoLU(userId);
1096 }
Alexandra Gherghinadf35d572014-04-09 13:54:39 +01001097 if (info != null && !info.isEnabled()) {
1098 info.flags ^= UserInfo.FLAG_DISABLED;
Amith Yamasani12747872015-12-07 14:19:49 -08001099 writeUserLP(getUserDataLU(info.id));
Alexandra Gherghinadf35d572014-04-09 13:54:39 +01001100 }
1101 }
1102 }
1103
jovanakf24ad492018-05-18 12:15:59 -07001104 @Override
Bookatzf56f2582019-09-04 16:06:41 -07001105 public void setUserAdmin(@UserIdInt int userId) {
jovanakf24ad492018-05-18 12:15:59 -07001106 checkManageUserAndAcrossUsersFullPermission("set user admin");
1107
1108 synchronized (mPackagesLock) {
1109 UserInfo info;
1110 synchronized (mUsersLock) {
1111 info = getUserInfoLU(userId);
1112 }
1113 if (info == null || info.isAdmin()) {
1114 // Exit if no user found with that id, or the user is already an Admin.
1115 return;
1116 }
1117
1118 info.flags ^= UserInfo.FLAG_ADMIN;
1119 writeUserLP(getUserDataLU(info.id));
1120 }
1121
1122 // Remove non-admin restrictions.
1123 // Keep synchronized with createUserEvenWhenDisallowed.
1124 setUserRestriction(UserManager.DISALLOW_SMS, false, userId);
1125 setUserRestriction(UserManager.DISALLOW_OUTGOING_CALLS, false, userId);
1126 }
1127
Andrew Scull85a63bc2016-10-24 13:47:47 +01001128 /**
1129 * Evicts a user's CE key by stopping and restarting the user.
1130 *
1131 * The key is evicted automatically by the user controller when the user has stopped.
1132 */
1133 @Override
1134 public void evictCredentialEncryptionKey(@UserIdInt int userId) {
1135 checkManageUsersPermission("evict CE key");
1136 final IActivityManager am = ActivityManagerNative.getDefault();
1137 final long identity = Binder.clearCallingIdentity();
1138 try {
1139 am.restartUserInBackground(userId);
1140 } catch (RemoteException re) {
1141 throw re.rethrowAsRuntimeException();
1142 } finally {
1143 Binder.restoreCallingIdentity(identity);
1144 }
1145 }
1146
Bookatz029832a2019-10-04 16:50:22 -07001147 /**
1148 * Returns the user type, e.g. {@link UserManager#USER_TYPE_FULL_GUEST}, of the given userId,
1149 * or null if the user doesn't exist.
1150 */
1151 @Override
1152 public @Nullable String getUserTypeForUser(@UserIdInt int userId) {
1153 // TODO(b/142482943): Decide on the appropriate permission requirements.
1154 checkManageOrInteractPermIfCallerInOtherProfileGroup(userId, "getUserTypeForUser");
1155 return getUserTypeNoChecks(userId);
1156 }
1157
1158 /**
1159 * Returns the user type of the given userId, or null if the user doesn't exist.
1160 * <p>No permissions checks are made (but userId checks may be made).
1161 */
1162 private @Nullable String getUserTypeNoChecks(@UserIdInt int userId) {
1163 synchronized (mUsersLock) {
1164 final UserInfo userInfo = getUserInfoLU(userId);
1165 return userInfo != null ? userInfo.userType : null;
1166 }
1167 }
1168
1169 /**
1170 * Returns the UserTypeDetails of the given userId's user type, or null if the no such user.
1171 * <p>No permissions checks are made (but userId checks may be made).
1172 */
1173 private @Nullable UserTypeDetails getUserTypeDetailsNoChecks(@UserIdInt int userId) {
1174 final String typeStr = getUserTypeNoChecks(userId);
1175 return typeStr != null ? mUserTypes.get(typeStr) : null;
1176 }
1177
1178 /**
1179 * Returns the UserTypeDetails of the given userInfo's user type (or null for a null userInfo).
1180 */
1181 private @Nullable UserTypeDetails getUserTypeDetails(@Nullable UserInfo userInfo) {
1182 final String typeStr = userInfo != null ? userInfo.userType : null;
1183 return typeStr != null ? mUserTypes.get(typeStr) : null;
1184 }
1185
Alexandra Gherghinadf35d572014-04-09 13:54:39 +01001186 @Override
Bookatzf56f2582019-09-04 16:06:41 -07001187 public UserInfo getUserInfo(@UserIdInt int userId) {
Sudheer Shankaaccaa082016-06-14 16:22:57 -07001188 checkManageOrCreateUsersPermission("query user");
Tony Mak8673b282016-03-21 21:10:59 +00001189 synchronized (mUsersLock) {
Amith Yamasani6f48d6e2016-03-23 14:28:25 -07001190 return userWithName(getUserInfoLU(userId));
1191 }
1192 }
1193
1194 /**
1195 * Returns a UserInfo object with the name filled in, for Owner, or the original
1196 * if the name is already set.
1197 */
1198 private UserInfo userWithName(UserInfo orig) {
1199 if (orig != null && orig.name == null && orig.id == UserHandle.USER_SYSTEM) {
1200 UserInfo withName = new UserInfo(orig);
1201 withName.name = getOwnerName();
1202 return withName;
1203 } else {
1204 return orig;
Tony Mak8673b282016-03-21 21:10:59 +00001205 }
1206 }
1207
1208 @Override
Bookatz029832a2019-10-04 16:50:22 -07001209 public boolean hasBadge(@UserIdInt int userId) {
1210 checkManageOrInteractPermIfCallerInOtherProfileGroup(userId, "hasBadge");
1211 final UserTypeDetails userTypeDetails = getUserTypeDetailsNoChecks(userId);
1212 return userTypeDetails != null && userTypeDetails.hasBadge();
1213 }
1214
1215 @Override
1216 public @StringRes int getUserBadgeLabelResId(@UserIdInt int userId) {
1217 checkManageOrInteractPermIfCallerInOtherProfileGroup(userId, "getUserBadgeLabelResId");
1218 final UserInfo userInfo = getUserInfoNoChecks(userId);
1219 final UserTypeDetails userTypeDetails = getUserTypeDetails(userInfo);
1220 if (userInfo == null || userTypeDetails == null || !userTypeDetails.hasBadge()) {
1221 Slog.e(LOG_TAG, "Requested badge label for non-badged user " + userId);
1222 return Resources.ID_NULL;
1223 }
1224 final int badgeIndex = userInfo.profileBadge;
1225 return userTypeDetails.getBadgeLabel(badgeIndex);
1226 }
1227
1228 @Override
1229 public @ColorRes int getUserBadgeColorResId(@UserIdInt int userId) {
1230 checkManageOrInteractPermIfCallerInOtherProfileGroup(userId, "getUserBadgeColorResId");
1231 final UserInfo userInfo = getUserInfoNoChecks(userId);
1232 final UserTypeDetails userTypeDetails = getUserTypeDetails(userInfo);
1233 if (userInfo == null || userTypeDetails == null || !userTypeDetails.hasBadge()) {
1234 Slog.e(LOG_TAG, "Requested badge color for non-badged user " + userId);
1235 return Resources.ID_NULL;
1236 }
1237 final int badgeIndex = userInfo.profileBadge;
1238 return userTypeDetails.getBadgeColor(badgeIndex);
1239 }
1240
1241 @Override
1242 public @DrawableRes int getUserIconBadgeResId(@UserIdInt int userId) {
1243 checkManageOrInteractPermIfCallerInOtherProfileGroup(userId, "getUserIconBadgeResId");
1244 final UserTypeDetails userTypeDetails = getUserTypeDetailsNoChecks(userId);
1245 if (userTypeDetails == null || !userTypeDetails.hasBadge()) {
1246 Slog.e(LOG_TAG, "Requested icon badge for non-badged user " + userId);
1247 return Resources.ID_NULL;
1248 }
1249 return userTypeDetails.getIconBadge();
1250 }
1251
1252 @Override
1253 public @DrawableRes int getUserBadgeResId(@UserIdInt int userId) {
1254 checkManageOrInteractPermIfCallerInOtherProfileGroup(userId, "getUserBadgeResId");
1255 final UserTypeDetails userTypeDetails = getUserTypeDetailsNoChecks(userId);
1256 if (userTypeDetails == null || !userTypeDetails.hasBadge()) {
1257 Slog.e(LOG_TAG, "Requested badge for non-badged user " + userId);
1258 return Resources.ID_NULL;
1259 }
1260 return userTypeDetails.getBadgePlain();
1261 }
1262
1263 @Override
1264 public @DrawableRes int getUserBadgeNoBackgroundResId(@UserIdInt int userId) {
1265 checkManageOrInteractPermIfCallerInOtherProfileGroup(userId,
1266 "getUserBadgeNoBackgroundResId");
1267 final UserTypeDetails userTypeDetails = getUserTypeDetailsNoChecks(userId);
1268 if (userTypeDetails == null || !userTypeDetails.hasBadge()) {
1269 Slog.e(LOG_TAG, "Requested badge (no background) for non-badged user " + userId);
1270 return Resources.ID_NULL;
1271 }
1272 return userTypeDetails.getBadgeNoBackground();
1273 }
1274
1275 @Override
1276 public boolean isProfile(@UserIdInt int userId) {
1277 checkManageOrInteractPermIfCallerInOtherProfileGroup(userId, "isProfile");
Kenny Guy02c89902016-11-15 19:36:38 +00001278 synchronized (mUsersLock) {
1279 UserInfo userInfo = getUserInfoLU(userId);
Bookatz029832a2019-10-04 16:50:22 -07001280 return userInfo != null && userInfo.isProfile();
Kenny Guy02c89902016-11-15 19:36:38 +00001281 }
1282 }
1283
1284 @Override
Bookatzf56f2582019-09-04 16:06:41 -07001285 public boolean isManagedProfile(@UserIdInt int userId) {
Jon Miranda2b340a22019-01-25 14:03:49 -08001286 checkManageOrInteractPermIfCallerInOtherProfileGroup(userId, "isManagedProfile");
Fyodor Kupolov82402752015-10-28 14:54:51 -07001287 synchronized (mUsersLock) {
Amith Yamasani1c41dc82016-06-28 16:13:15 -07001288 UserInfo userInfo = getUserInfoLU(userId);
Tony Mak8673b282016-03-21 21:10:59 +00001289 return userInfo != null && userInfo.isManagedProfile();
Amith Yamasani13593602012-03-22 16:16:17 -07001290 }
1291 }
1292
Amith Yamasani71e6c692013-03-24 17:39:28 -07001293 @Override
Bookatzf56f2582019-09-04 16:06:41 -07001294 public boolean isUserUnlockingOrUnlocked(@UserIdInt int userId) {
Fyodor Kupolov2e7e0962016-12-01 18:09:17 -08001295 checkManageOrInteractPermIfCallerInOtherProfileGroup(userId, "isUserUnlockingOrUnlocked");
Fyodor Kupolovc413f702016-10-06 17:11:14 -07001296 return mLocalService.isUserUnlockingOrUnlocked(userId);
1297 }
1298
1299 @Override
Bookatzf56f2582019-09-04 16:06:41 -07001300 public boolean isUserUnlocked(@UserIdInt int userId) {
Fyodor Kupolov2e7e0962016-12-01 18:09:17 -08001301 checkManageOrInteractPermIfCallerInOtherProfileGroup(userId, "isUserUnlocked");
Fyodor Kupolov0468ee92017-05-25 17:06:17 -07001302 return mLocalService.isUserUnlocked(userId);
Fyodor Kupolov2e7e0962016-12-01 18:09:17 -08001303 }
1304
1305 @Override
Bookatzf56f2582019-09-04 16:06:41 -07001306 public boolean isUserRunning(@UserIdInt int userId) {
Fyodor Kupolov2e7e0962016-12-01 18:09:17 -08001307 checkManageOrInteractPermIfCallerInOtherProfileGroup(userId, "isUserRunning");
1308 return mLocalService.isUserRunning(userId);
1309 }
1310
Makoto Onuki73dded22017-12-20 13:14:48 +09001311 @Override
Bookatzcde3d922019-03-08 14:30:00 -08001312 public String getUserName() {
1313 if (!hasManageUsersOrPermission(android.Manifest.permission.GET_ACCOUNTS_PRIVILEGED)) {
1314 throw new SecurityException("You need MANAGE_USERS or GET_ACCOUNTS_PRIVILEGED "
1315 + "permissions to: get user name");
1316 }
1317 final int userId = UserHandle.getUserId(Binder.getCallingUid());
1318 synchronized (mUsersLock) {
1319 UserInfo userInfo = userWithName(getUserInfoLU(userId));
1320 return userInfo == null ? "" : userInfo.name;
1321 }
1322 }
1323
1324 @Override
Makoto Onuki73dded22017-12-20 13:14:48 +09001325 public long getUserStartRealtime() {
1326 final int userId = UserHandle.getUserId(Binder.getCallingUid());
1327 synchronized (mUsersLock) {
1328 final UserData user = getUserDataLU(userId);
1329 if (user != null) {
1330 return user.startRealtime;
1331 }
1332 return 0;
1333 }
1334 }
1335
1336 @Override
1337 public long getUserUnlockRealtime() {
1338 synchronized (mUsersLock) {
1339 final UserData user = getUserDataLU(UserHandle.getUserId(Binder.getCallingUid()));
1340 if (user != null) {
1341 return user.unlockRealtime;
1342 }
1343 return 0;
1344 }
1345 }
1346
Bookatzf56f2582019-09-04 16:06:41 -07001347 private void checkManageOrInteractPermIfCallerInOtherProfileGroup(@UserIdInt int userId,
1348 String name) {
Felipe Lemec1ca4412019-09-11 09:23:26 -07001349 final int callingUserId = UserHandle.getCallingUserId();
Fyodor Kupolov2e7e0962016-12-01 18:09:17 -08001350 if (callingUserId == userId || isSameProfileGroupNoChecks(callingUserId, userId) ||
1351 hasManageUsersPermission()) {
1352 return;
1353 }
jovanakf24ad492018-05-18 12:15:59 -07001354 if (!hasPermissionGranted(Manifest.permission.INTERACT_ACROSS_USERS,
1355 Binder.getCallingUid())) {
Fyodor Kupolov2e7e0962016-12-01 18:09:17 -08001356 throw new SecurityException("You need INTERACT_ACROSS_USERS or MANAGE_USERS permission "
1357 + "to: check " + name);
1358 }
1359 }
1360
1361 @Override
Bookatzf56f2582019-09-04 16:06:41 -07001362 public boolean isDemoUser(@UserIdInt int userId) {
Felipe Lemec1ca4412019-09-11 09:23:26 -07001363 final int callingUserId = UserHandle.getCallingUserId();
Amith Yamasani1c41dc82016-06-28 16:13:15 -07001364 if (callingUserId != userId && !hasManageUsersPermission()) {
1365 throw new SecurityException("You need MANAGE_USERS permission to query if u=" + userId
1366 + " is a demo user");
1367 }
1368 synchronized (mUsersLock) {
1369 UserInfo userInfo = getUserInfoLU(userId);
1370 return userInfo != null && userInfo.isDemo();
1371 }
1372 }
1373
1374 @Override
Felipe Lemec1ca4412019-09-11 09:23:26 -07001375 public boolean isPreCreated(@UserIdInt int userId) {
1376 final int callingUserId = UserHandle.getCallingUserId();
1377 if (callingUserId != userId && !hasManageUsersPermission()) {
1378 throw new SecurityException("You need MANAGE_USERS permission to query if u=" + userId
1379 + " is pre-created");
1380 }
1381 synchronized (mUsersLock) {
1382 UserInfo userInfo = getUserInfoLU(userId);
1383 return userInfo != null && userInfo.preCreated;
1384 }
1385 }
1386
1387 @Override
Amith Yamasani71e6c692013-03-24 17:39:28 -07001388 public boolean isRestricted() {
Fyodor Kupolov82402752015-10-28 14:54:51 -07001389 synchronized (mUsersLock) {
1390 return getUserInfoLU(UserHandle.getCallingUserId()).isRestricted();
Amith Yamasani71e6c692013-03-24 17:39:28 -07001391 }
1392 }
1393
Fyodor Kupolov1c363152015-09-02 13:27:21 -07001394 @Override
Bookatzf56f2582019-09-04 16:06:41 -07001395 public boolean canHaveRestrictedProfile(@UserIdInt int userId) {
Fyodor Kupolov1c363152015-09-02 13:27:21 -07001396 checkManageUsersPermission("canHaveRestrictedProfile");
Fyodor Kupolov82402752015-10-28 14:54:51 -07001397 synchronized (mUsersLock) {
1398 final UserInfo userInfo = getUserInfoLU(userId);
Fyodor Kupolov1c363152015-09-02 13:27:21 -07001399 if (userInfo == null || !userInfo.canHaveProfile()) {
1400 return false;
1401 }
1402 if (!userInfo.isAdmin()) {
1403 return false;
1404 }
Makoto Onukie7927da2015-11-25 10:05:17 -08001405 // restricted profile can be created if there is no DO set and the admin user has no PO;
1406 return !mIsDeviceManaged && !mIsUserManaged.get(userId);
Fyodor Kupolov1c363152015-09-02 13:27:21 -07001407 }
Fyodor Kupolov1c363152015-09-02 13:27:21 -07001408 }
1409
Fyodor Kupolovca177562017-11-09 17:43:01 -08001410 @Override
1411 public boolean hasRestrictedProfiles() {
1412 checkManageUsersPermission("hasRestrictedProfiles");
1413 final int callingUserId = UserHandle.getCallingUserId();
1414 synchronized (mUsersLock) {
1415 final int userSize = mUsers.size();
1416 for (int i = 0; i < userSize; i++) {
1417 UserInfo profile = mUsers.valueAt(i).info;
1418 if (callingUserId != profile.id
1419 && profile.restrictedProfileParentId == callingUserId) {
1420 return true;
1421 }
1422 }
1423 return false;
1424 }
1425 }
1426
Amith Yamasani195263742012-08-21 15:40:12 -07001427 /*
1428 * Should be locked on mUsers before calling this.
1429 */
Andreas Gampe2e8c7672018-07-20 13:01:08 -07001430 @GuardedBy("mUsersLock")
Bookatzf56f2582019-09-04 16:06:41 -07001431 private UserInfo getUserInfoLU(@UserIdInt int userId) {
Amith Yamasani12747872015-12-07 14:19:49 -08001432 final UserData userData = mUsers.get(userId);
Amith Yamasani16389312012-10-17 21:20:14 -07001433 // If it is partial and not in the process of being removed, return as unknown user.
Amith Yamasani12747872015-12-07 14:19:49 -08001434 if (userData != null && userData.info.partial && !mRemovingUserIds.get(userId)) {
Dianne Hackbornd4ac8d72012-09-27 23:20:10 -07001435 Slog.w(LOG_TAG, "getUserInfo: unknown user #" + userId);
1436 return null;
1437 }
Amith Yamasani12747872015-12-07 14:19:49 -08001438 return userData != null ? userData.info : null;
1439 }
1440
Andreas Gampe2e8c7672018-07-20 13:01:08 -07001441 @GuardedBy("mUsersLock")
Bookatzf56f2582019-09-04 16:06:41 -07001442 private UserData getUserDataLU(@UserIdInt int userId) {
Amith Yamasani12747872015-12-07 14:19:49 -08001443 final UserData userData = mUsers.get(userId);
1444 // If it is partial and not in the process of being removed, return as unknown user.
1445 if (userData != null && userData.info.partial && !mRemovingUserIds.get(userId)) {
1446 return null;
1447 }
1448 return userData;
Amith Yamasani195263742012-08-21 15:40:12 -07001449 }
1450
Fyodor Kupolov82402752015-10-28 14:54:51 -07001451 /**
1452 * Obtains {@link #mUsersLock} and return UserInfo from mUsers.
1453 * <p>No permissions checking or any addition checks are made</p>
1454 */
Bookatzf56f2582019-09-04 16:06:41 -07001455 private UserInfo getUserInfoNoChecks(@UserIdInt int userId) {
Fyodor Kupolov82402752015-10-28 14:54:51 -07001456 synchronized (mUsersLock) {
Amith Yamasani12747872015-12-07 14:19:49 -08001457 final UserData userData = mUsers.get(userId);
1458 return userData != null ? userData.info : null;
1459 }
1460 }
1461
1462 /**
1463 * Obtains {@link #mUsersLock} and return UserData from mUsers.
1464 * <p>No permissions checking or any addition checks are made</p>
1465 */
Bookatzf56f2582019-09-04 16:06:41 -07001466 private UserData getUserDataNoChecks(@UserIdInt int userId) {
Amith Yamasani12747872015-12-07 14:19:49 -08001467 synchronized (mUsersLock) {
Fyodor Kupolov82402752015-10-28 14:54:51 -07001468 return mUsers.get(userId);
1469 }
1470 }
1471
Amith Yamasani236b2b52015-08-18 14:32:14 -07001472 /** Called by PackageManagerService */
Bookatzf56f2582019-09-04 16:06:41 -07001473 public boolean exists(@UserIdInt int userId) {
Todd Kennedy0eb97382017-10-03 16:57:22 -07001474 return mLocalService.exists(userId);
Amith Yamasani13593602012-03-22 16:16:17 -07001475 }
1476
Amith Yamasani258848d2012-08-10 17:06:33 -07001477 @Override
Bookatzf56f2582019-09-04 16:06:41 -07001478 public void setUserName(@UserIdInt int userId, String name) {
Amith Yamasani2a003292012-08-14 18:25:45 -07001479 checkManageUsersPermission("rename users");
Dianne Hackbornd4ac8d72012-09-27 23:20:10 -07001480 boolean changed = false;
Dianne Hackborn4428e172012-08-24 17:43:05 -07001481 synchronized (mPackagesLock) {
Amith Yamasani12747872015-12-07 14:19:49 -08001482 UserData userData = getUserDataNoChecks(userId);
1483 if (userData == null || userData.info.partial) {
Dianne Hackbornd4ac8d72012-09-27 23:20:10 -07001484 Slog.w(LOG_TAG, "setUserName: unknown user #" + userId);
1485 return;
1486 }
Amith Yamasani12747872015-12-07 14:19:49 -08001487 if (name != null && !name.equals(userData.info.name)) {
1488 userData.info.name = name;
1489 writeUserLP(userData);
Dianne Hackbornd4ac8d72012-09-27 23:20:10 -07001490 changed = true;
Amith Yamasani13593602012-03-22 16:16:17 -07001491 }
1492 }
Dianne Hackbornd4ac8d72012-09-27 23:20:10 -07001493 if (changed) {
Bookatzf9368552019-03-14 11:57:09 -07001494 long ident = Binder.clearCallingIdentity();
1495 try {
1496 sendUserInfoChangedBroadcast(userId);
1497 } finally {
1498 Binder.restoreCallingIdentity(ident);
1499 }
Dianne Hackbornd4ac8d72012-09-27 23:20:10 -07001500 }
Amith Yamasani4b2e9342011-03-31 12:38:53 -07001501 }
1502
Amith Yamasani258848d2012-08-10 17:06:33 -07001503 @Override
Bookatzf56f2582019-09-04 16:06:41 -07001504 public void setUserIcon(@UserIdInt int userId, Bitmap bitmap) {
Amith Yamasani2a003292012-08-14 18:25:45 -07001505 checkManageUsersPermission("update users");
Oleksandr Peletskyi7f1f1df2016-01-18 15:40:21 +01001506 if (hasUserRestriction(UserManager.DISALLOW_SET_USER_ICON, userId)) {
1507 Log.w(LOG_TAG, "Cannot set user icon. DISALLOW_SET_USER_ICON is enabled.");
1508 return;
Amith Yamasanib8151ec2012-04-18 18:02:48 -07001509 }
Oleksandr Peletskyi7f1f1df2016-01-18 15:40:21 +01001510 mLocalService.setUserIcon(userId, bitmap);
Amith Yamasanie928d7d2012-09-17 21:46:51 -07001511 }
1512
Oleksandr Peletskyi7f1f1df2016-01-18 15:40:21 +01001513
1514
Bookatzf56f2582019-09-04 16:06:41 -07001515 private void sendUserInfoChangedBroadcast(@UserIdInt int userId) {
Amith Yamasanie928d7d2012-09-17 21:46:51 -07001516 Intent changedIntent = new Intent(Intent.ACTION_USER_INFO_CHANGED);
1517 changedIntent.putExtra(Intent.EXTRA_USER_HANDLE, userId);
1518 changedIntent.addFlags(Intent.FLAG_RECEIVER_REGISTERED_ONLY);
Amith Yamasani6fc1d4e2013-05-08 16:43:58 -07001519 mContext.sendBroadcastAsUser(changedIntent, UserHandle.ALL);
Amith Yamasanib8151ec2012-04-18 18:02:48 -07001520 }
1521
Amith Yamasani258848d2012-08-10 17:06:33 -07001522 @Override
Oleksandr Peletskyicd6fa302016-02-25 16:28:39 +01001523 public ParcelFileDescriptor getUserIcon(int targetUserId) {
Bookatzcde3d922019-03-08 14:30:00 -08001524 if (!hasManageUsersOrPermission(android.Manifest.permission.GET_ACCOUNTS_PRIVILEGED)) {
1525 throw new SecurityException("You need MANAGE_USERS or GET_ACCOUNTS_PRIVILEGED "
1526 + "permissions to: get user icon");
1527 }
Adrian Roos1bdff912015-02-17 15:51:35 +01001528 String iconPath;
Amith Yamasani3b49f072012-09-17 10:21:43 -07001529 synchronized (mPackagesLock) {
Oleksandr Peletskyicd6fa302016-02-25 16:28:39 +01001530 UserInfo targetUserInfo = getUserInfoNoChecks(targetUserId);
1531 if (targetUserInfo == null || targetUserInfo.partial) {
1532 Slog.w(LOG_TAG, "getUserIcon: unknown user #" + targetUserId);
Dianne Hackbornd4ac8d72012-09-27 23:20:10 -07001533 return null;
1534 }
Oleksandr Peletskyicd6fa302016-02-25 16:28:39 +01001535
1536 final int callingUserId = UserHandle.getCallingUserId();
1537 final int callingGroupId = getUserInfoNoChecks(callingUserId).profileGroupId;
1538 final int targetGroupId = targetUserInfo.profileGroupId;
1539 final boolean sameGroup = (callingGroupId != UserInfo.NO_PROFILE_GROUP_ID
1540 && callingGroupId == targetGroupId);
1541 if ((callingUserId != targetUserId) && !sameGroup) {
Nicolas Prevot88cc3462014-05-14 14:51:48 +01001542 checkManageUsersPermission("get the icon of a user who is not related");
1543 }
Oleksandr Peletskyicd6fa302016-02-25 16:28:39 +01001544
1545 if (targetUserInfo.iconPath == null) {
Dianne Hackbornd4ac8d72012-09-27 23:20:10 -07001546 return null;
1547 }
Oleksandr Peletskyicd6fa302016-02-25 16:28:39 +01001548 iconPath = targetUserInfo.iconPath;
Amith Yamasani3b49f072012-09-17 10:21:43 -07001549 }
Adrian Roos1bdff912015-02-17 15:51:35 +01001550
1551 try {
1552 return ParcelFileDescriptor.open(
1553 new File(iconPath), ParcelFileDescriptor.MODE_READ_ONLY);
1554 } catch (FileNotFoundException e) {
1555 Log.e(LOG_TAG, "Couldn't find icon file", e);
1556 }
1557 return null;
Amith Yamasani3b49f072012-09-17 10:21:43 -07001558 }
1559
Bookatzf56f2582019-09-04 16:06:41 -07001560 public void makeInitialized(@UserIdInt int userId) {
Dianne Hackborn5dc5a002012-09-15 19:33:48 -07001561 checkManageUsersPermission("makeInitialized");
Fyodor Kupolove80085d2015-11-06 18:21:39 -08001562 boolean scheduleWriteUser = false;
Amith Yamasani12747872015-12-07 14:19:49 -08001563 UserData userData;
Fyodor Kupolove80085d2015-11-06 18:21:39 -08001564 synchronized (mUsersLock) {
Amith Yamasani12747872015-12-07 14:19:49 -08001565 userData = mUsers.get(userId);
1566 if (userData == null || userData.info.partial) {
Dianne Hackbornd4ac8d72012-09-27 23:20:10 -07001567 Slog.w(LOG_TAG, "makeInitialized: unknown user #" + userId);
Fyodor Kupolove80085d2015-11-06 18:21:39 -08001568 return;
Dianne Hackbornd4ac8d72012-09-27 23:20:10 -07001569 }
Amith Yamasani12747872015-12-07 14:19:49 -08001570 if ((userData.info.flags & UserInfo.FLAG_INITIALIZED) == 0) {
1571 userData.info.flags |= UserInfo.FLAG_INITIALIZED;
Fyodor Kupolove80085d2015-11-06 18:21:39 -08001572 scheduleWriteUser = true;
Dianne Hackborn5dc5a002012-09-15 19:33:48 -07001573 }
1574 }
Fyodor Kupolove80085d2015-11-06 18:21:39 -08001575 if (scheduleWriteUser) {
Amith Yamasani12747872015-12-07 14:19:49 -08001576 scheduleWriteUser(userData);
Fyodor Kupolove80085d2015-11-06 18:21:39 -08001577 }
Dianne Hackborn5dc5a002012-09-15 19:33:48 -07001578 }
1579
Amith Yamasaniaa6634e2014-10-06 14:20:28 -07001580 /**
1581 * If default guest restrictions haven't been initialized yet, add the basic
1582 * restrictions.
1583 */
1584 private void initDefaultGuestRestrictions() {
Fyodor Kupolove80085d2015-11-06 18:21:39 -08001585 synchronized (mGuestRestrictions) {
1586 if (mGuestRestrictions.isEmpty()) {
Samuel Tand9453b82016-03-14 15:57:02 -07001587 mGuestRestrictions.putBoolean(UserManager.DISALLOW_CONFIG_WIFI, true);
Fyodor Kupolove04462c2015-11-30 15:02:53 -08001588 mGuestRestrictions.putBoolean(UserManager.DISALLOW_INSTALL_UNKNOWN_SOURCES, true);
Fyodor Kupolove80085d2015-11-06 18:21:39 -08001589 mGuestRestrictions.putBoolean(UserManager.DISALLOW_OUTGOING_CALLS, true);
1590 mGuestRestrictions.putBoolean(UserManager.DISALLOW_SMS, true);
1591 }
Amith Yamasaniaa6634e2014-10-06 14:20:28 -07001592 }
1593 }
1594
Amith Yamasanie4cf7342012-12-17 11:12:09 -08001595 @Override
Amith Yamasanie4afaa32014-06-30 14:55:07 +05301596 public Bundle getDefaultGuestRestrictions() {
1597 checkManageUsersPermission("getDefaultGuestRestrictions");
Fyodor Kupolove80085d2015-11-06 18:21:39 -08001598 synchronized (mGuestRestrictions) {
Amith Yamasanie4afaa32014-06-30 14:55:07 +05301599 return new Bundle(mGuestRestrictions);
1600 }
1601 }
1602
1603 @Override
1604 public void setDefaultGuestRestrictions(Bundle restrictions) {
1605 checkManageUsersPermission("setDefaultGuestRestrictions");
Fyodor Kupolove80085d2015-11-06 18:21:39 -08001606 synchronized (mGuestRestrictions) {
1607 mGuestRestrictions.clear();
1608 mGuestRestrictions.putAll(restrictions);
1609 }
1610 synchronized (mPackagesLock) {
1611 writeUserListLP();
Amith Yamasanie4afaa32014-06-30 14:55:07 +05301612 }
1613 }
1614
Makoto Onuki1a2cd742015-11-16 13:51:27 -08001615 /**
Pavel Grafov6a40f092016-10-25 15:46:51 +01001616 * See {@link UserManagerInternal#setDevicePolicyUserRestrictions}
Makoto Onuki1a2cd742015-11-16 13:51:27 -08001617 */
Bookatzf56f2582019-09-04 16:06:41 -07001618 private void setDevicePolicyUserRestrictionsInner(@UserIdInt int userId,
1619 @Nullable Bundle restrictions, boolean isDeviceOwner, int cameraRestrictionScope) {
Pavel Grafov6a40f092016-10-25 15:46:51 +01001620 final Bundle global = new Bundle();
1621 final Bundle local = new Bundle();
1622
1623 // Sort restrictions into local and global ensuring they don't overlap.
1624 UserRestrictionsUtils.sortToGlobalAndLocal(restrictions, isDeviceOwner,
1625 cameraRestrictionScope, global, local);
1626
1627 boolean globalChanged, localChanged;
Makoto Onuki1a2cd742015-11-16 13:51:27 -08001628 synchronized (mRestrictionsLock) {
Pavel Grafov6a40f092016-10-25 15:46:51 +01001629 // Update global and local restrictions if they were changed.
1630 globalChanged = updateRestrictionsIfNeededLR(
1631 userId, global, mDevicePolicyGlobalUserRestrictions);
1632 localChanged = updateRestrictionsIfNeededLR(
1633 userId, local, mDevicePolicyLocalUserRestrictions);
1634
1635 if (isDeviceOwner) {
Zoltan Szatmary-Bane7834602016-04-08 18:41:11 +01001636 // Remember the global restriction owner userId to be able to make a distinction
1637 // in getUserRestrictionSource on who set local policies.
Pavel Grafov6a40f092016-10-25 15:46:51 +01001638 mDeviceOwnerUserId = userId;
Zoltan Szatmary-Bane7834602016-04-08 18:41:11 +01001639 } else {
Pavel Grafov6a40f092016-10-25 15:46:51 +01001640 if (mDeviceOwnerUserId == userId) {
Zoltan Szatmary-Ban8a5536d2016-05-27 17:56:44 +01001641 // When profile owner sets restrictions it passes null global bundle and we
1642 // reset global restriction owner userId.
1643 // This means this user used to have DO, but now the DO is gone and the user
1644 // instead has PO.
Pavel Grafov6a40f092016-10-25 15:46:51 +01001645 mDeviceOwnerUserId = UserHandle.USER_NULL;
Makoto Onuki1a2cd742015-11-16 13:51:27 -08001646 }
1647 }
1648 }
1649 if (DBG) {
1650 Log.d(LOG_TAG, "setDevicePolicyUserRestrictions: userId=" + userId
1651 + " global=" + global + (globalChanged ? " (changed)" : "")
1652 + " local=" + local + (localChanged ? " (changed)" : "")
1653 );
1654 }
1655 // Don't call them within the mRestrictionsLock.
1656 synchronized (mPackagesLock) {
Pavel Grafov6a40f092016-10-25 15:46:51 +01001657 if (localChanged || globalChanged) {
Amith Yamasani12747872015-12-07 14:19:49 -08001658 writeUserLP(getUserDataNoChecks(userId));
Makoto Onuki1a2cd742015-11-16 13:51:27 -08001659 }
1660 }
1661
1662 synchronized (mRestrictionsLock) {
1663 if (globalChanged) {
1664 applyUserRestrictionsForAllUsersLR();
1665 } else if (localChanged) {
1666 applyUserRestrictionsLR(userId);
1667 }
1668 }
1669 }
1670
Pavel Grafov6a40f092016-10-25 15:46:51 +01001671 /**
1672 * Updates restriction bundle for a given user in a given restriction array. If new bundle is
1673 * empty, record is removed from the array.
1674 * @return whether restrictions bundle is different from the old one.
1675 */
Bookatzf56f2582019-09-04 16:06:41 -07001676 private boolean updateRestrictionsIfNeededLR(@UserIdInt int userId,
1677 @Nullable Bundle restrictions, SparseArray<Bundle> restrictionsArray) {
Pavel Grafov6a40f092016-10-25 15:46:51 +01001678 final boolean changed =
1679 !UserRestrictionsUtils.areEqual(restrictionsArray.get(userId), restrictions);
1680 if (changed) {
1681 if (!UserRestrictionsUtils.isEmpty(restrictions)) {
1682 restrictionsArray.put(userId, restrictions);
1683 } else {
1684 restrictionsArray.delete(userId);
1685 }
1686 }
1687 return changed;
1688 }
1689
Makoto Onuki068c54a2015-10-13 14:34:03 -07001690 @GuardedBy("mRestrictionsLock")
Bookatzf56f2582019-09-04 16:06:41 -07001691 private Bundle computeEffectiveUserRestrictionsLR(@UserIdInt int userId) {
Makoto Onuki1a2cd742015-11-16 13:51:27 -08001692 final Bundle baseRestrictions =
1693 UserRestrictionsUtils.nonNull(mBaseUserRestrictions.get(userId));
Pavel Grafov6a40f092016-10-25 15:46:51 +01001694 final Bundle global = UserRestrictionsUtils.mergeAll(mDevicePolicyGlobalUserRestrictions);
Makoto Onuki1a2cd742015-11-16 13:51:27 -08001695 final Bundle local = mDevicePolicyLocalUserRestrictions.get(userId);
Makoto Onuki068c54a2015-10-13 14:34:03 -07001696
Makoto Onuki1a2cd742015-11-16 13:51:27 -08001697 if (UserRestrictionsUtils.isEmpty(global) && UserRestrictionsUtils.isEmpty(local)) {
1698 // Common case first.
1699 return baseRestrictions;
Makoto Onuki068c54a2015-10-13 14:34:03 -07001700 }
Makoto Onuki1a2cd742015-11-16 13:51:27 -08001701 final Bundle effective = UserRestrictionsUtils.clone(baseRestrictions);
1702 UserRestrictionsUtils.merge(effective, global);
1703 UserRestrictionsUtils.merge(effective, local);
1704
Makoto Onuki068c54a2015-10-13 14:34:03 -07001705 return effective;
1706 }
1707
1708 @GuardedBy("mRestrictionsLock")
Bookatzf56f2582019-09-04 16:06:41 -07001709 private void invalidateEffectiveUserRestrictionsLR(@UserIdInt int userId) {
Makoto Onuki068c54a2015-10-13 14:34:03 -07001710 if (DBG) {
1711 Log.d(LOG_TAG, "invalidateEffectiveUserRestrictions userId=" + userId);
1712 }
1713 mCachedEffectiveUserRestrictions.remove(userId);
1714 }
1715
Bookatzf56f2582019-09-04 16:06:41 -07001716 private Bundle getEffectiveUserRestrictions(@UserIdInt int userId) {
Makoto Onuki068c54a2015-10-13 14:34:03 -07001717 synchronized (mRestrictionsLock) {
1718 Bundle restrictions = mCachedEffectiveUserRestrictions.get(userId);
1719 if (restrictions == null) {
Fyodor Kupolov82402752015-10-28 14:54:51 -07001720 restrictions = computeEffectiveUserRestrictionsLR(userId);
Makoto Onuki068c54a2015-10-13 14:34:03 -07001721 mCachedEffectiveUserRestrictions.put(userId, restrictions);
1722 }
1723 return restrictions;
Amith Yamasani8cd28b52014-06-08 17:54:27 -07001724 }
1725 }
1726
Makoto Onuki068c54a2015-10-13 14:34:03 -07001727 /** @return a specific user restriction that's in effect currently. */
1728 @Override
Bookatzf56f2582019-09-04 16:06:41 -07001729 public boolean hasUserRestriction(String restrictionKey, @UserIdInt int userId) {
Roshan Pius7969c802019-10-21 19:58:57 -07001730 checkManageOrInteractPermIfCallerInOtherProfileGroup(userId, "hasUserRestriction");
Patrick Baumann2f2fd712019-07-31 15:18:53 -07001731 return mLocalService.hasUserRestriction(restrictionKey, userId);
Makoto Onuki068c54a2015-10-13 14:34:03 -07001732 }
1733
Makoto Onukiacc50462018-02-14 14:13:49 -08001734 /** @return if any user has the given restriction. */
1735 @Override
1736 public boolean hasUserRestrictionOnAnyUser(String restrictionKey) {
1737 if (!UserRestrictionsUtils.isValidRestriction(restrictionKey)) {
1738 return false;
1739 }
1740 final List<UserInfo> users = getUsers(/* excludeDying= */ true);
1741 for (int i = 0; i < users.size(); i++) {
1742 final int userId = users.get(i).id;
1743 Bundle restrictions = getEffectiveUserRestrictions(userId);
1744 if (restrictions != null && restrictions.getBoolean(restrictionKey)) {
1745 return true;
1746 }
1747 }
1748 return false;
1749 }
1750
Christopher Tate65fb2e42019-10-11 17:00:23 -07001751 @Override
1752 public boolean isSettingRestrictedForUser(String setting, @UserIdInt int userId,
1753 String value, int callingUid) {
1754 if (Binder.getCallingUid() != Process.SYSTEM_UID) {
1755 throw new SecurityException("Non-system caller");
1756 }
1757 return UserRestrictionsUtils.isSettingRestrictedForUser(mContext, setting, userId,
1758 value, callingUid);
1759 }
1760
1761 @Override
1762 public void addUserRestrictionsListener(final IUserRestrictionsListener listener) {
1763 if (Binder.getCallingUid() != Process.SYSTEM_UID) {
1764 throw new SecurityException("Non-system caller");
1765 }
1766
1767 // NOTE: unregistering not supported; only client is the settings provider,
1768 // which installs a single static permanent listener. If that listener goes
1769 // bad it implies the whole system process is going to crash.
1770 mLocalService.addUserRestrictionsListener(
1771 (int userId, Bundle newRestrict, Bundle prevRestrict) -> {
1772 try {
1773 listener.onUserRestrictionsChanged(userId, newRestrict, prevRestrict);
1774 } catch (RemoteException re) {
1775 Slog.e("IUserRestrictionsListener",
1776 "Unable to invoke listener: " + re.getMessage());
1777 }
1778 });
1779 }
1780
Makoto Onuki068c54a2015-10-13 14:34:03 -07001781 /**
Zoltan Szatmary-Bane7834602016-04-08 18:41:11 +01001782 * @hide
1783 *
1784 * Returns who set a user restriction on a user.
1785 * Requires {@link android.Manifest.permission#MANAGE_USERS} permission.
1786 * @param restrictionKey the string key representing the restriction
1787 * @param userId the id of the user for whom to retrieve the restrictions.
1788 * @return The source of user restriction. Any combination of
1789 * {@link UserManager#RESTRICTION_NOT_SET},
1790 * {@link UserManager#RESTRICTION_SOURCE_SYSTEM},
1791 * {@link UserManager#RESTRICTION_SOURCE_DEVICE_OWNER}
1792 * and {@link UserManager#RESTRICTION_SOURCE_PROFILE_OWNER}
1793 */
1794 @Override
Bookatzf56f2582019-09-04 16:06:41 -07001795 public int getUserRestrictionSource(String restrictionKey, @UserIdInt int userId) {
Pavel Grafov6a40f092016-10-25 15:46:51 +01001796 List<EnforcingUser> enforcingUsers = getUserRestrictionSources(restrictionKey, userId);
1797 // Get "bitwise or" of restriction sources for all enforcing users.
Zoltan Szatmary-Bane7834602016-04-08 18:41:11 +01001798 int result = UserManager.RESTRICTION_NOT_SET;
Pavel Grafov6a40f092016-10-25 15:46:51 +01001799 for (int i = enforcingUsers.size() - 1; i >= 0; i--) {
1800 result |= enforcingUsers.get(i).getUserRestrictionSource();
1801 }
1802 return result;
1803 }
1804
1805 @Override
1806 public List<EnforcingUser> getUserRestrictionSources(
1807 String restrictionKey, @UserIdInt int userId) {
1808 checkManageUsersPermission("getUserRestrictionSource");
Zoltan Szatmary-Bane7834602016-04-08 18:41:11 +01001809
1810 // Shortcut for the most common case
1811 if (!hasUserRestriction(restrictionKey, userId)) {
Pavel Grafov6a40f092016-10-25 15:46:51 +01001812 return Collections.emptyList();
Zoltan Szatmary-Bane7834602016-04-08 18:41:11 +01001813 }
1814
Pavel Grafov6a40f092016-10-25 15:46:51 +01001815 final List<EnforcingUser> result = new ArrayList<>();
1816
1817 // Check if it is base restriction.
Zoltan Szatmary-Bane7834602016-04-08 18:41:11 +01001818 if (hasBaseUserRestriction(restrictionKey, userId)) {
Pavel Grafov6a40f092016-10-25 15:46:51 +01001819 result.add(new EnforcingUser(
1820 UserHandle.USER_NULL, UserManager.RESTRICTION_SOURCE_SYSTEM));
Zoltan Szatmary-Bane7834602016-04-08 18:41:11 +01001821 }
1822
Pavel Grafov6a40f092016-10-25 15:46:51 +01001823 synchronized (mRestrictionsLock) {
1824 // Check if it is set by profile owner.
1825 Bundle profileOwnerRestrictions = mDevicePolicyLocalUserRestrictions.get(userId);
1826 if (UserRestrictionsUtils.contains(profileOwnerRestrictions, restrictionKey)) {
1827 result.add(getEnforcingUserLocked(userId));
1828 }
1829
1830 // Iterate over all users who enforce global restrictions.
1831 for (int i = mDevicePolicyGlobalUserRestrictions.size() - 1; i >= 0; i--) {
1832 Bundle globalRestrictions = mDevicePolicyGlobalUserRestrictions.valueAt(i);
1833 int profileUserId = mDevicePolicyGlobalUserRestrictions.keyAt(i);
1834 if (UserRestrictionsUtils.contains(globalRestrictions, restrictionKey)) {
1835 result.add(getEnforcingUserLocked(profileUserId));
Zoltan Szatmary-Bane7834602016-04-08 18:41:11 +01001836 }
1837 }
Zoltan Szatmary-Bane7834602016-04-08 18:41:11 +01001838 }
Zoltan Szatmary-Bane7834602016-04-08 18:41:11 +01001839 return result;
1840 }
1841
Andreas Gampea36dc622018-02-05 17:19:22 -08001842 @GuardedBy("mRestrictionsLock")
Pavel Grafov6a40f092016-10-25 15:46:51 +01001843 private EnforcingUser getEnforcingUserLocked(@UserIdInt int userId) {
1844 int source = mDeviceOwnerUserId == userId ? UserManager.RESTRICTION_SOURCE_DEVICE_OWNER
1845 : UserManager.RESTRICTION_SOURCE_PROFILE_OWNER;
1846 return new EnforcingUser(userId, source);
1847 }
1848
Zoltan Szatmary-Bane7834602016-04-08 18:41:11 +01001849 /**
Makoto Onuki068c54a2015-10-13 14:34:03 -07001850 * @return UserRestrictions that are in effect currently. This always returns a new
1851 * {@link Bundle}.
1852 */
Amith Yamasani8cd28b52014-06-08 17:54:27 -07001853 @Override
Bookatzf56f2582019-09-04 16:06:41 -07001854 public Bundle getUserRestrictions(@UserIdInt int userId) {
Roshan Pius7969c802019-10-21 19:58:57 -07001855 checkManageOrInteractPermIfCallerInOtherProfileGroup(userId, "getUserRestrictions");
Makoto Onuki1a2cd742015-11-16 13:51:27 -08001856 return UserRestrictionsUtils.clone(getEffectiveUserRestrictions(userId));
Amith Yamasanie4cf7342012-12-17 11:12:09 -08001857 }
1858
1859 @Override
Bookatzf56f2582019-09-04 16:06:41 -07001860 public boolean hasBaseUserRestriction(String restrictionKey, @UserIdInt int userId) {
Zoltan Szatmary-Ban3bbcedd2015-11-26 13:45:51 +00001861 checkManageUsersPermission("hasBaseUserRestriction");
Makoto Onuki1f1ceef2016-01-28 11:32:32 -08001862 if (!UserRestrictionsUtils.isValidRestriction(restrictionKey)) {
1863 return false;
1864 }
Zoltan Szatmary-Ban3bbcedd2015-11-26 13:45:51 +00001865 synchronized (mRestrictionsLock) {
1866 Bundle bundle = mBaseUserRestrictions.get(userId);
1867 return (bundle != null && bundle.getBoolean(restrictionKey, false));
1868 }
1869 }
1870
1871 @Override
Bookatzf56f2582019-09-04 16:06:41 -07001872 public void setUserRestriction(String key, boolean value, @UserIdInt int userId) {
Fyodor Kupolovd4b26042015-07-27 14:30:59 -07001873 checkManageUsersPermission("setUserRestriction");
Makoto Onuki1f1ceef2016-01-28 11:32:32 -08001874 if (!UserRestrictionsUtils.isValidRestriction(key)) {
1875 return;
1876 }
Makoto Onuki068c54a2015-10-13 14:34:03 -07001877 synchronized (mRestrictionsLock) {
1878 // Note we can't modify Bundles stored in mBaseUserRestrictions directly, so create
1879 // a copy.
Makoto Onuki1a2cd742015-11-16 13:51:27 -08001880 final Bundle newRestrictions = UserRestrictionsUtils.clone(
1881 mBaseUserRestrictions.get(userId));
Makoto Onuki068c54a2015-10-13 14:34:03 -07001882 newRestrictions.putBoolean(key, value);
1883
Fyodor Kupolov82402752015-10-28 14:54:51 -07001884 updateUserRestrictionsInternalLR(newRestrictions, userId);
Fyodor Kupolovb5013302015-04-17 17:59:14 -07001885 }
1886 }
1887
Makoto Onuki068c54a2015-10-13 14:34:03 -07001888 /**
Makoto Onuki1a2cd742015-11-16 13:51:27 -08001889 * Optionally updating user restrictions, calculate the effective user restrictions and also
1890 * propagate to other services and system settings.
Makoto Onuki068c54a2015-10-13 14:34:03 -07001891 *
Pavel Grafov6a40f092016-10-25 15:46:51 +01001892 * @param newBaseRestrictions User restrictions to set.
Makoto Onuki1a2cd742015-11-16 13:51:27 -08001893 * If null, will not update user restrictions and only does the propagation.
Makoto Onuki068c54a2015-10-13 14:34:03 -07001894 * @param userId target user ID.
1895 */
1896 @GuardedBy("mRestrictionsLock")
Fyodor Kupolov82402752015-10-28 14:54:51 -07001897 private void updateUserRestrictionsInternalLR(
Bookatzf56f2582019-09-04 16:06:41 -07001898 @Nullable Bundle newBaseRestrictions, @UserIdInt int userId) {
Makoto Onuki1a2cd742015-11-16 13:51:27 -08001899 final Bundle prevAppliedRestrictions = UserRestrictionsUtils.nonNull(
1900 mAppliedUserRestrictions.get(userId));
1901
1902 // Update base restrictions.
Pavel Grafov6a40f092016-10-25 15:46:51 +01001903 if (newBaseRestrictions != null) {
1904 // If newBaseRestrictions == the current one, it's probably a bug.
Makoto Onuki1a2cd742015-11-16 13:51:27 -08001905 final Bundle prevBaseRestrictions = mBaseUserRestrictions.get(userId);
1906
Pavel Grafov6a40f092016-10-25 15:46:51 +01001907 Preconditions.checkState(prevBaseRestrictions != newBaseRestrictions);
Makoto Onuki068c54a2015-10-13 14:34:03 -07001908 Preconditions.checkState(mCachedEffectiveUserRestrictions.get(userId)
Pavel Grafov6a40f092016-10-25 15:46:51 +01001909 != newBaseRestrictions);
Makoto Onuki1a2cd742015-11-16 13:51:27 -08001910
Pavel Grafov6a40f092016-10-25 15:46:51 +01001911 if (updateRestrictionsIfNeededLR(userId, newBaseRestrictions, mBaseUserRestrictions)) {
Amith Yamasani12747872015-12-07 14:19:49 -08001912 scheduleWriteUser(getUserDataNoChecks(userId));
Makoto Onuki1a2cd742015-11-16 13:51:27 -08001913 }
Makoto Onuki068c54a2015-10-13 14:34:03 -07001914 }
1915
Fyodor Kupolov82402752015-10-28 14:54:51 -07001916 final Bundle effective = computeEffectiveUserRestrictionsLR(userId);
Makoto Onuki068c54a2015-10-13 14:34:03 -07001917
Makoto Onuki759a7632015-10-28 16:43:10 -07001918 mCachedEffectiveUserRestrictions.put(userId, effective);
1919
Makoto Onuki1a2cd742015-11-16 13:51:27 -08001920 // Apply the new restrictions.
Makoto Onuki4f160732015-10-27 17:15:38 -07001921 if (DBG) {
Makoto Onuki1a2cd742015-11-16 13:51:27 -08001922 debug("Applying user restrictions: userId=" + userId
1923 + " new=" + effective + " prev=" + prevAppliedRestrictions);
Makoto Onuki4f160732015-10-27 17:15:38 -07001924 }
1925
Makoto Onuki1a2cd742015-11-16 13:51:27 -08001926 if (mAppOpsService != null) { // We skip it until system-ready.
Fyodor Kupolovec30ca32016-06-16 15:09:29 -07001927 mHandler.post(new Runnable() {
1928 @Override
1929 public void run() {
1930 try {
1931 mAppOpsService.setUserRestrictions(effective, mUserRestriconToken, userId);
1932 } catch (RemoteException e) {
1933 Log.w(LOG_TAG, "Unable to notify AppOpsService of UserRestrictions");
1934 }
1935 }
1936 });
Fyodor Kupolovb5013302015-04-17 17:59:14 -07001937 }
Makoto Onuki068c54a2015-10-13 14:34:03 -07001938
Makoto Onuki1a2cd742015-11-16 13:51:27 -08001939 propagateUserRestrictionsLR(userId, effective, prevAppliedRestrictions);
Makoto Onuki4f160732015-10-27 17:15:38 -07001940
Makoto Onuki1a2cd742015-11-16 13:51:27 -08001941 mAppliedUserRestrictions.put(userId, new Bundle(effective));
Makoto Onuki068c54a2015-10-13 14:34:03 -07001942 }
1943
Makoto Onuki1a2cd742015-11-16 13:51:27 -08001944 private void propagateUserRestrictionsLR(final int userId,
Makoto Onukid45a4a22015-11-02 17:17:38 -08001945 Bundle newRestrictions, Bundle prevRestrictions) {
Makoto Onuki1a2cd742015-11-16 13:51:27 -08001946 // Note this method doesn't touch any state, meaning it doesn't require mRestrictionsLock
1947 // actually, but we still need some kind of synchronization otherwise we might end up
1948 // calling listeners out-of-order, thus "LR".
1949
1950 if (UserRestrictionsUtils.areEqual(newRestrictions, prevRestrictions)) {
1951 return;
1952 }
Makoto Onukid45a4a22015-11-02 17:17:38 -08001953
1954 final Bundle newRestrictionsFinal = new Bundle(newRestrictions);
1955 final Bundle prevRestrictionsFinal = new Bundle(prevRestrictions);
1956
1957 mHandler.post(new Runnable() {
1958 @Override
1959 public void run() {
Fyodor Kupolov9cbfc9e2015-10-07 15:52:33 -07001960 UserRestrictionsUtils.applyUserRestrictions(
1961 mContext, userId, newRestrictionsFinal, prevRestrictionsFinal);
Makoto Onuki1a2cd742015-11-16 13:51:27 -08001962
Makoto Onukid45a4a22015-11-02 17:17:38 -08001963 final UserRestrictionsListener[] listeners;
1964 synchronized (mUserRestrictionsListeners) {
1965 listeners = new UserRestrictionsListener[mUserRestrictionsListeners.size()];
1966 mUserRestrictionsListeners.toArray(listeners);
1967 }
1968 for (int i = 0; i < listeners.length; i++) {
1969 listeners[i].onUserRestrictionsChanged(userId,
1970 newRestrictionsFinal, prevRestrictionsFinal);
1971 }
Makoto Onukie72f81b2017-03-16 14:08:19 -07001972
1973 final Intent broadcast = new Intent(UserManager.ACTION_USER_RESTRICTIONS_CHANGED)
1974 .setFlags(Intent.FLAG_RECEIVER_REGISTERED_ONLY);
1975 mContext.sendBroadcastAsUser(broadcast, UserHandle.of(userId));
Makoto Onukid45a4a22015-11-02 17:17:38 -08001976 }
1977 });
1978 }
1979
Makoto Onuki1a2cd742015-11-16 13:51:27 -08001980 // Package private for the inner class.
Andreas Gampe2e8c7672018-07-20 13:01:08 -07001981 @GuardedBy("mRestrictionsLock")
Bookatzf56f2582019-09-04 16:06:41 -07001982 void applyUserRestrictionsLR(@UserIdInt int userId) {
Fyodor Kupolov82402752015-10-28 14:54:51 -07001983 updateUserRestrictionsInternalLR(null, userId);
Makoto Onuki068c54a2015-10-13 14:34:03 -07001984 }
1985
1986 @GuardedBy("mRestrictionsLock")
Makoto Onuki1a2cd742015-11-16 13:51:27 -08001987 // Package private for the inner class.
1988 void applyUserRestrictionsForAllUsersLR() {
1989 if (DBG) {
1990 debug("applyUserRestrictionsForAllUsersLR");
1991 }
Makoto Onuki068c54a2015-10-13 14:34:03 -07001992 // First, invalidate all cached values.
Makoto Onuki4f160732015-10-27 17:15:38 -07001993 mCachedEffectiveUserRestrictions.clear();
1994
Sudheer Shankadc589ac2016-11-10 15:30:17 -08001995 // We don't want to call into ActivityManagerService while taking a lock, so we'll call
Makoto Onuki068c54a2015-10-13 14:34:03 -07001996 // it on a handler.
1997 final Runnable r = new Runnable() {
1998 @Override
1999 public void run() {
2000 // Then get the list of running users.
2001 final int[] runningUsers;
2002 try {
Sudheer Shankadc589ac2016-11-10 15:30:17 -08002003 runningUsers = ActivityManager.getService().getRunningUserIds();
Makoto Onuki068c54a2015-10-13 14:34:03 -07002004 } catch (RemoteException e) {
Sudheer Shankadc589ac2016-11-10 15:30:17 -08002005 Log.w(LOG_TAG, "Unable to access ActivityManagerService");
Makoto Onuki068c54a2015-10-13 14:34:03 -07002006 return;
2007 }
2008 // Then re-calculate the effective restrictions and apply, only for running users.
2009 // It's okay if a new user has started after the getRunningUserIds() call,
2010 // because we'll do the same thing (re-calculate the restrictions and apply)
2011 // when we start a user.
Makoto Onuki068c54a2015-10-13 14:34:03 -07002012 synchronized (mRestrictionsLock) {
2013 for (int i = 0; i < runningUsers.length; i++) {
Makoto Onuki1a2cd742015-11-16 13:51:27 -08002014 applyUserRestrictionsLR(runningUsers[i]);
Makoto Onuki068c54a2015-10-13 14:34:03 -07002015 }
2016 }
2017 }
2018 };
2019 mHandler.post(r);
Fyodor Kupolovb5013302015-04-17 17:59:14 -07002020 }
2021
Amith Yamasani258848d2012-08-10 17:06:33 -07002022 /**
Amith Yamasanifaea76f2012-09-11 10:59:48 -07002023 * Check if we've hit the limit of how many users can be created.
2024 */
Fyodor Kupolov82402752015-10-28 14:54:51 -07002025 private boolean isUserLimitReached() {
2026 int count;
2027 synchronized (mUsersLock) {
2028 count = getAliveUsersExcludingGuestsCountLU();
2029 }
2030 return count >= UserManager.getMaxSupportedUsers();
Nicolas Prevot12678a92015-05-13 12:15:03 -07002031 }
2032
Bookatz029832a2019-10-04 16:50:22 -07002033 /**
2034 * Returns whether more users of the given type can be added (based on how many users of that
2035 * type already exist).
2036 *
2037 * <p>For checking whether more profiles can be added to a particular parent use
2038 * {@link #canAddMoreProfilesToUser}.
2039 */
2040 private boolean canAddMoreUsersOfType(UserTypeDetails userTypeDetails) {
2041 final int max = userTypeDetails.getMaxAllowed();
2042 if (max == UserTypeDetails.UNLIMITED_NUMBER_OF_USERS) {
2043 return true; // Indicates that there is no max.
2044 }
2045 return getNumberOfUsersOfType(userTypeDetails.getName()) < max;
2046 }
2047
2048 /**
2049 * Gets the number of users of the given user type.
2050 * Does not include users that are about to die.
2051 */
2052 private int getNumberOfUsersOfType(String userType) {
2053 int count = 0;
2054 synchronized (mUsersLock) {
2055 final int size = mUsers.size();
2056 for (int i = 0; i < size; i++) {
2057 final UserInfo user = mUsers.valueAt(i).info;
2058 if (user.userType.equals(userType)
2059 && !user.guestToRemove
2060 && !mRemovingUserIds.get(user.id)
2061 && !user.preCreated) {
2062 count++;
2063 }
2064 }
2065 }
2066 return count;
2067 }
2068
Nicolas Prevot12678a92015-05-13 12:15:03 -07002069 @Override
Bookatzf56f2582019-09-04 16:06:41 -07002070 public boolean canAddMoreManagedProfiles(@UserIdInt int userId, boolean allowedToRemoveOne) {
Bookatz029832a2019-10-04 16:50:22 -07002071 return canAddMoreProfilesToUser(UserManager.USER_TYPE_PROFILE_MANAGED, userId,
2072 allowedToRemoveOne);
2073 }
2074
2075 /** Returns whether more profiles of the given type can be added to the given parent userId. */
2076 @Override
2077 public boolean canAddMoreProfilesToUser(String userType, @UserIdInt int userId,
2078 boolean allowedToRemoveOne) {
2079 checkManageUsersPermission("check if more profiles can be added.");
2080 final UserTypeDetails type = mUserTypes.get(userType);
2081 if (type == null) {
Nicolas Prevot12678a92015-05-13 12:15:03 -07002082 return false;
2083 }
Bookatz029832a2019-10-04 16:50:22 -07002084 // Managed profiles have their own specific rules.
2085 final boolean isManagedProfile = type.isManagedProfile();
2086 if (isManagedProfile) {
2087 if (ActivityManager.isLowRamDeviceStatic()) {
2088 return false;
2089 }
2090 if (!mContext.getPackageManager().hasSystemFeature(
2091 PackageManager.FEATURE_MANAGED_USERS)) {
2092 return false;
2093 }
Fyodor Kupolovb6157992015-06-05 15:32:28 -07002094 }
Bookatz029832a2019-10-04 16:50:22 -07002095 synchronized (mUsersLock) {
2096 // Check if the parent exists and its type is even allowed to have a profile.
Fyodor Kupolov82402752015-10-28 14:54:51 -07002097 UserInfo userInfo = getUserInfoLU(userId);
yuanhao47f9f7c2017-01-18 09:54:45 +08002098 if (userInfo == null || !userInfo.canHaveProfile()) {
Nicolas Prevot12678a92015-05-13 12:15:03 -07002099 return false;
2100 }
Bookatz029832a2019-10-04 16:50:22 -07002101
2102 // Limit the number of profiles that can be created
2103 final int maxUsersOfType = getMaxUsersOfTypePerParent(type);
2104 if (maxUsersOfType != UserTypeDetails.UNLIMITED_NUMBER_OF_USERS) {
2105 final int userTypeCount = getProfileIds(userId, userType, false).length;
2106 final int profilesRemovedCount = userTypeCount > 0 && allowedToRemoveOne ? 1 : 0;
2107 if (userTypeCount - profilesRemovedCount >= maxUsersOfType) {
2108 return false;
2109 }
2110 // Allow creating a managed profile in the special case where there is only one user
2111 if (isManagedProfile) {
2112 int usersCountAfterRemoving = getAliveUsersExcludingGuestsCountLU()
2113 - profilesRemovedCount;
2114 return usersCountAfterRemoving == 1
2115 || usersCountAfterRemoving < UserManager.getMaxSupportedUsers();
2116 }
2117 }
Nicolas Prevot12678a92015-05-13 12:15:03 -07002118 }
Bookatz029832a2019-10-04 16:50:22 -07002119 return true;
Nicolas Prevot12678a92015-05-13 12:15:03 -07002120 }
2121
Andreas Gampe2e8c7672018-07-20 13:01:08 -07002122 @GuardedBy("mUsersLock")
Fyodor Kupolov82402752015-10-28 14:54:51 -07002123 private int getAliveUsersExcludingGuestsCountLU() {
Amith Yamasanif584f012014-05-19 17:57:25 -07002124 int aliveUserCount = 0;
2125 final int totalUserCount = mUsers.size();
2126 // Skip over users being removed
2127 for (int i = 0; i < totalUserCount; i++) {
Amith Yamasani12747872015-12-07 14:19:49 -08002128 UserInfo user = mUsers.valueAt(i).info;
Felipe Lemec1ca4412019-09-11 09:23:26 -07002129 if (!mRemovingUserIds.get(user.id) && !user.isGuest() && !user.preCreated) {
Amith Yamasanif584f012014-05-19 17:57:25 -07002130 aliveUserCount++;
2131 }
2132 }
Nicolas Prevot12678a92015-05-13 12:15:03 -07002133 return aliveUserCount;
Amith Yamasanifaea76f2012-09-11 10:59:48 -07002134 }
2135
2136 /**
Amith Yamasani195263742012-08-21 15:40:12 -07002137 * Enforces that only the system UID or root's UID or apps that have the
Xiaohui Chenb3b92582015-12-07 11:22:13 -08002138 * {@link android.Manifest.permission#MANAGE_USERS MANAGE_USERS} and
2139 * {@link android.Manifest.permission#INTERACT_ACROSS_USERS_FULL INTERACT_ACROSS_USERS_FULL}
2140 * permissions can make certain calls to the UserManager.
2141 *
2142 * @param message used as message if SecurityException is thrown
2143 * @throws SecurityException if the caller does not have enough privilege.
2144 */
2145 private static final void checkManageUserAndAcrossUsersFullPermission(String message) {
2146 final int uid = Binder.getCallingUid();
jovanakf24ad492018-05-18 12:15:59 -07002147
2148 if (uid == Process.SYSTEM_UID || uid == 0) {
2149 // System UID or root's UID are granted privilege.
2150 return;
Xiaohui Chenb3b92582015-12-07 11:22:13 -08002151 }
jovanakf24ad492018-05-18 12:15:59 -07002152
2153 if (hasPermissionGranted(Manifest.permission.MANAGE_USERS, uid)
2154 && hasPermissionGranted(Manifest.permission.INTERACT_ACROSS_USERS_FULL, uid)) {
2155 // Apps with both permissions are granted privilege.
2156 return;
2157 }
2158
2159 throw new SecurityException(
2160 "You need MANAGE_USERS and INTERACT_ACROSS_USERS_FULL permission to: " + message);
2161 }
2162
2163 private static boolean hasPermissionGranted(String permission, int uid) {
2164 return ActivityManager.checkComponentPermission(
2165 permission, uid, /* owningUid = */-1, /* exported = */ true) ==
2166 PackageManager.PERMISSION_GRANTED;
Xiaohui Chenb3b92582015-12-07 11:22:13 -08002167 }
2168
2169 /**
2170 * Enforces that only the system UID or root's UID or apps that have the
Dianne Hackborn10ad9822014-03-17 11:28:36 -07002171 * {@link android.Manifest.permission#MANAGE_USERS MANAGE_USERS}
Amith Yamasani195263742012-08-21 15:40:12 -07002172 * permission can make certain calls to the UserManager.
Amith Yamasani258848d2012-08-10 17:06:33 -07002173 *
2174 * @param message used as message if SecurityException is thrown
2175 * @throws SecurityException if the caller is not system or root
Tony Mak4dc008c2016-03-16 10:46:49 +00002176 * @see #hasManageUsersPermission()
Amith Yamasani258848d2012-08-10 17:06:33 -07002177 */
Amith Yamasanibe465322014-04-24 13:45:17 -07002178 private static final void checkManageUsersPermission(String message) {
Tony Mak4dc008c2016-03-16 10:46:49 +00002179 if (!hasManageUsersPermission()) {
Amith Yamasanibe465322014-04-24 13:45:17 -07002180 throw new SecurityException("You need MANAGE_USERS permission to: " + message);
2181 }
Emily Bernier7a2b4d12014-04-23 12:51:35 -04002182 }
2183
Esteban Talavera5b9f1672015-12-11 15:22:34 +00002184 /**
Sudheer Shankaf5cea032016-06-08 17:13:24 -07002185 * Enforces that only the system UID or root's UID or apps that have the
2186 * {@link android.Manifest.permission#MANAGE_USERS MANAGE_USERS} or
2187 * {@link android.Manifest.permission#CREATE_USERS CREATE_USERS}
2188 * can make certain calls to the UserManager.
2189 *
2190 * @param message used as message if SecurityException is thrown
2191 * @throws SecurityException if the caller is not system or root
2192 * @see #hasManageOrCreateUsersPermission()
2193 */
2194 private static final void checkManageOrCreateUsersPermission(String message) {
2195 if (!hasManageOrCreateUsersPermission()) {
2196 throw new SecurityException(
2197 "You either need MANAGE_USERS or CREATE_USERS permission to: " + message);
2198 }
2199 }
2200
2201 /**
2202 * Similar to {@link #checkManageOrCreateUsersPermission(String)} but when the caller is tries
2203 * to create user/profiles other than what is allowed for
2204 * {@link android.Manifest.permission#CREATE_USERS CREATE_USERS} permission, then it will only
2205 * allow callers with {@link android.Manifest.permission#MANAGE_USERS MANAGE_USERS} permission.
2206 */
2207 private static final void checkManageOrCreateUsersPermission(int creationFlags) {
2208 if ((creationFlags & ~ALLOWED_FLAGS_FOR_CREATE_USERS_PERMISSION) == 0) {
2209 if (!hasManageOrCreateUsersPermission()) {
2210 throw new SecurityException("You either need MANAGE_USERS or CREATE_USERS "
2211 + "permission to create an user with flags: " + creationFlags);
2212 }
2213 } else if (!hasManageUsersPermission()) {
2214 throw new SecurityException("You need MANAGE_USERS permission to create an user "
2215 + " with flags: " + creationFlags);
2216 }
2217 }
2218
2219 /**
Tony Mak4dc008c2016-03-16 10:46:49 +00002220 * @return whether the calling UID is system UID or root's UID or the calling app has the
2221 * {@link android.Manifest.permission#MANAGE_USERS MANAGE_USERS}.
2222 */
2223 private static final boolean hasManageUsersPermission() {
2224 final int callingUid = Binder.getCallingUid();
2225 return UserHandle.isSameApp(callingUid, Process.SYSTEM_UID)
2226 || callingUid == Process.ROOT_UID
jovanakf24ad492018-05-18 12:15:59 -07002227 || hasPermissionGranted(android.Manifest.permission.MANAGE_USERS, callingUid);
Tony Mak4dc008c2016-03-16 10:46:49 +00002228 }
2229
2230 /**
Sudheer Shankaf5cea032016-06-08 17:13:24 -07002231 * @return whether the calling UID is system UID or root's UID or the calling app has the
Bookatzcde3d922019-03-08 14:30:00 -08002232 * {@link android.Manifest.permission#MANAGE_USERS MANAGE_USERS} or the provided permission.
Sudheer Shankaf5cea032016-06-08 17:13:24 -07002233 */
Bookatzcde3d922019-03-08 14:30:00 -08002234 private static final boolean hasManageUsersOrPermission(String alternativePermission) {
Sudheer Shankaf5cea032016-06-08 17:13:24 -07002235 final int callingUid = Binder.getCallingUid();
2236 return UserHandle.isSameApp(callingUid, Process.SYSTEM_UID)
2237 || callingUid == Process.ROOT_UID
jovanakf24ad492018-05-18 12:15:59 -07002238 || hasPermissionGranted(android.Manifest.permission.MANAGE_USERS, callingUid)
Bookatzcde3d922019-03-08 14:30:00 -08002239 || hasPermissionGranted(alternativePermission, callingUid);
2240 }
2241
2242 /**
2243 * @return whether the calling UID is system UID or root's UID or the calling app has the
2244 * {@link android.Manifest.permission#MANAGE_USERS MANAGE_USERS} or
2245 * {@link android.Manifest.permission#CREATE_USERS CREATE_USERS}.
2246 */
2247 private static final boolean hasManageOrCreateUsersPermission() {
2248 return hasManageUsersOrPermission(android.Manifest.permission.CREATE_USERS);
Sudheer Shankaf5cea032016-06-08 17:13:24 -07002249 }
2250
2251 /**
Esteban Talavera5b9f1672015-12-11 15:22:34 +00002252 * Enforces that only the system UID or root's UID (on any user) can make certain calls to the
2253 * UserManager.
2254 *
2255 * @param message used as message if SecurityException is thrown
2256 * @throws SecurityException if the caller is not system or root
2257 */
2258 private static void checkSystemOrRoot(String message) {
2259 final int uid = Binder.getCallingUid();
2260 if (!UserHandle.isSameApp(uid, Process.SYSTEM_UID) && uid != Process.ROOT_UID) {
2261 throw new SecurityException("Only system may: " + message);
2262 }
2263 }
2264
Fyodor Kupolov82402752015-10-28 14:54:51 -07002265 private void writeBitmapLP(UserInfo info, Bitmap bitmap) {
Amith Yamasanib8151ec2012-04-18 18:02:48 -07002266 try {
2267 File dir = new File(mUsersDir, Integer.toString(info.id));
2268 File file = new File(dir, USER_PHOTO_FILENAME);
Adrian Roos1bdff912015-02-17 15:51:35 +01002269 File tmp = new File(dir, USER_PHOTO_FILENAME_TMP);
Amith Yamasanib8151ec2012-04-18 18:02:48 -07002270 if (!dir.exists()) {
2271 dir.mkdir();
2272 FileUtils.setPermissions(
2273 dir.getPath(),
2274 FileUtils.S_IRWXU|FileUtils.S_IRWXG|FileUtils.S_IXOTH,
2275 -1, -1);
2276 }
Amith Yamasanie928d7d2012-09-17 21:46:51 -07002277 FileOutputStream os;
Adrian Roos1bdff912015-02-17 15:51:35 +01002278 if (bitmap.compress(Bitmap.CompressFormat.PNG, 100, os = new FileOutputStream(tmp))
Oleksandr Peletskyicd6fa302016-02-25 16:28:39 +01002279 && tmp.renameTo(file) && SELinux.restorecon(file)) {
Amith Yamasani3b49f072012-09-17 10:21:43 -07002280 info.iconPath = file.getAbsolutePath();
2281 }
Amith Yamasanie928d7d2012-09-17 21:46:51 -07002282 try {
2283 os.close();
2284 } catch (IOException ioe) {
2285 // What the ... !
2286 }
Adrian Roos1bdff912015-02-17 15:51:35 +01002287 tmp.delete();
Amith Yamasanib8151ec2012-04-18 18:02:48 -07002288 } catch (FileNotFoundException e) {
Amith Yamasani2a003292012-08-14 18:25:45 -07002289 Slog.w(LOG_TAG, "Error setting photo for user ", e);
Amith Yamasanib8151ec2012-04-18 18:02:48 -07002290 }
Amith Yamasanib8151ec2012-04-18 18:02:48 -07002291 }
2292
Amith Yamasani0b285492011-04-14 17:35:23 -07002293 /**
2294 * Returns an array of user ids. This array is cached here for quick access, so do not modify or
2295 * cache it elsewhere.
2296 * @return the array of user ids.
2297 */
Dianne Hackborn1676c852012-09-10 14:52:30 -07002298 public int[] getUserIds() {
Fyodor Kupolov82402752015-10-28 14:54:51 -07002299 synchronized (mUsersLock) {
Dianne Hackborn7767eac2012-08-23 18:25:40 -07002300 return mUserIds;
2301 }
Amith Yamasani0b285492011-04-14 17:35:23 -07002302 }
2303
Andreas Gampe2e8c7672018-07-20 13:01:08 -07002304 @GuardedBy({"mRestrictionsLock", "mPackagesLock"})
Fyodor Kupolove80085d2015-11-06 18:21:39 -08002305 private void readUserListLP() {
Amith Yamasani4b2e9342011-03-31 12:38:53 -07002306 if (!mUserListFile.exists()) {
Fyodor Kupolove80085d2015-11-06 18:21:39 -08002307 fallbackToSingleUserLP();
Amith Yamasani4b2e9342011-03-31 12:38:53 -07002308 return;
2309 }
2310 FileInputStream fis = null;
Amith Yamasani2a003292012-08-14 18:25:45 -07002311 AtomicFile userListFile = new AtomicFile(mUserListFile);
Amith Yamasani4b2e9342011-03-31 12:38:53 -07002312 try {
Amith Yamasani2a003292012-08-14 18:25:45 -07002313 fis = userListFile.openRead();
Amith Yamasani4b2e9342011-03-31 12:38:53 -07002314 XmlPullParser parser = Xml.newPullParser();
Wojciech Staszkiewicz9e9e2e72015-05-08 14:58:46 +01002315 parser.setInput(fis, StandardCharsets.UTF_8.name());
Amith Yamasani4b2e9342011-03-31 12:38:53 -07002316 int type;
2317 while ((type = parser.next()) != XmlPullParser.START_TAG
2318 && type != XmlPullParser.END_DOCUMENT) {
Amith Yamasani12747872015-12-07 14:19:49 -08002319 // Skip
Amith Yamasani4b2e9342011-03-31 12:38:53 -07002320 }
2321
2322 if (type != XmlPullParser.START_TAG) {
Amith Yamasani0b285492011-04-14 17:35:23 -07002323 Slog.e(LOG_TAG, "Unable to read user list");
Fyodor Kupolove80085d2015-11-06 18:21:39 -08002324 fallbackToSingleUserLP();
Amith Yamasani4b2e9342011-03-31 12:38:53 -07002325 return;
2326 }
2327
Amith Yamasani2a003292012-08-14 18:25:45 -07002328 mNextSerialNumber = -1;
2329 if (parser.getName().equals(TAG_USERS)) {
2330 String lastSerialNumber = parser.getAttributeValue(null, ATTR_NEXT_SERIAL_NO);
2331 if (lastSerialNumber != null) {
2332 mNextSerialNumber = Integer.parseInt(lastSerialNumber);
2333 }
Amith Yamasani6f34b412012-10-22 18:19:27 -07002334 String versionNumber = parser.getAttributeValue(null, ATTR_USER_VERSION);
2335 if (versionNumber != null) {
2336 mUserVersion = Integer.parseInt(versionNumber);
2337 }
Amith Yamasani2a003292012-08-14 18:25:45 -07002338 }
2339
Pavel Grafov6a40f092016-10-25 15:46:51 +01002340 // Pre-O global user restriction were stored as a single bundle (as opposed to per-user
2341 // currently), take care of it in case of upgrade.
2342 Bundle oldDevicePolicyGlobalUserRestrictions = null;
Makoto Onuki1a2cd742015-11-16 13:51:27 -08002343
Amith Yamasani4b2e9342011-03-31 12:38:53 -07002344 while ((type = parser.next()) != XmlPullParser.END_DOCUMENT) {
Amith Yamasanie4afaa32014-06-30 14:55:07 +05302345 if (type == XmlPullParser.START_TAG) {
2346 final String name = parser.getName();
2347 if (name.equals(TAG_USER)) {
2348 String id = parser.getAttributeValue(null, ATTR_ID);
Amith Yamasani6f34b412012-10-22 18:19:27 -07002349
Amith Yamasani12747872015-12-07 14:19:49 -08002350 UserData userData = readUserLP(Integer.parseInt(id));
2351
2352 if (userData != null) {
Fyodor Kupolov82402752015-10-28 14:54:51 -07002353 synchronized (mUsersLock) {
Amith Yamasani12747872015-12-07 14:19:49 -08002354 mUsers.put(userData.info.id, userData);
2355 if (mNextSerialNumber < 0
2356 || mNextSerialNumber <= userData.info.id) {
2357 mNextSerialNumber = userData.info.id + 1;
Fyodor Kupolov82402752015-10-28 14:54:51 -07002358 }
Amith Yamasanie4afaa32014-06-30 14:55:07 +05302359 }
Amith Yamasani2a003292012-08-14 18:25:45 -07002360 }
Amith Yamasanie4afaa32014-06-30 14:55:07 +05302361 } else if (name.equals(TAG_GUEST_RESTRICTIONS)) {
Amith Yamasanida0b1682014-11-21 12:58:17 -08002362 while ((type = parser.next()) != XmlPullParser.END_DOCUMENT
2363 && type != XmlPullParser.END_TAG) {
2364 if (type == XmlPullParser.START_TAG) {
2365 if (parser.getName().equals(TAG_RESTRICTIONS)) {
Fyodor Kupolove80085d2015-11-06 18:21:39 -08002366 synchronized (mGuestRestrictions) {
Fyodor Kupoloveafee022017-03-15 17:09:04 -07002367 UserRestrictionsUtils
2368 .readRestrictions(parser, mGuestRestrictions);
Fyodor Kupolove80085d2015-11-06 18:21:39 -08002369 }
Amith Yamasanida0b1682014-11-21 12:58:17 -08002370 }
2371 break;
2372 }
2373 }
Pavel Grafov6a40f092016-10-25 15:46:51 +01002374 } else if (name.equals(TAG_DEVICE_OWNER_USER_ID)
2375 // Legacy name, should only be encountered when upgrading from pre-O.
2376 || name.equals(TAG_GLOBAL_RESTRICTION_OWNER_ID)) {
Zoltan Szatmary-Bane7834602016-04-08 18:41:11 +01002377 String ownerUserId = parser.getAttributeValue(null, ATTR_ID);
2378 if (ownerUserId != null) {
Pavel Grafov6a40f092016-10-25 15:46:51 +01002379 mDeviceOwnerUserId = Integer.parseInt(ownerUserId);
Zoltan Szatmary-Bane7834602016-04-08 18:41:11 +01002380 }
Pavel Grafov6a40f092016-10-25 15:46:51 +01002381 } else if (name.equals(TAG_DEVICE_POLICY_RESTRICTIONS)) {
2382 // Should only happen when upgrading from pre-O (version < 7).
2383 oldDevicePolicyGlobalUserRestrictions =
2384 UserRestrictionsUtils.readRestrictions(parser);
Amith Yamasani258848d2012-08-10 17:06:33 -07002385 }
Amith Yamasani4b2e9342011-03-31 12:38:53 -07002386 }
2387 }
Pavel Grafov6a40f092016-10-25 15:46:51 +01002388
Fyodor Kupolov82402752015-10-28 14:54:51 -07002389 updateUserIds();
Pavel Grafov6a40f092016-10-25 15:46:51 +01002390 upgradeIfNecessaryLP(oldDevicePolicyGlobalUserRestrictions);
Fyodor Kupolove80085d2015-11-06 18:21:39 -08002391 } catch (IOException | XmlPullParserException e) {
2392 fallbackToSingleUserLP();
Dianne Hackbornbfd89b32011-12-15 18:22:54 -08002393 } finally {
Fyodor Kupolove80085d2015-11-06 18:21:39 -08002394 IoUtils.closeQuietly(fis);
Amith Yamasani4b2e9342011-03-31 12:38:53 -07002395 }
2396 }
2397
Amith Yamasani6f34b412012-10-22 18:19:27 -07002398 /**
Amith Yamasanibc9625052012-11-15 14:39:18 -08002399 * Upgrade steps between versions, either for fixing bugs or changing the data format.
Pavel Grafov6a40f092016-10-25 15:46:51 +01002400 * @param oldGlobalUserRestrictions Pre-O global device policy restrictions.
Amith Yamasani6f34b412012-10-22 18:19:27 -07002401 */
Andreas Gampe2e8c7672018-07-20 13:01:08 -07002402 @GuardedBy({"mRestrictionsLock", "mPackagesLock"})
Pavel Grafov6a40f092016-10-25 15:46:51 +01002403 private void upgradeIfNecessaryLP(Bundle oldGlobalUserRestrictions) {
Bookatz029832a2019-10-04 16:50:22 -07002404 upgradeIfNecessaryLP(oldGlobalUserRestrictions, mUserVersion);
2405 }
2406
2407 /**
2408 * Version of {@link #upgradeIfNecessaryLP(Bundle)} that takes in the userVersion for testing
2409 * purposes. For non-tests, use {@link #upgradeIfNecessaryLP(Bundle)}.
2410 */
2411 @GuardedBy({"mRestrictionsLock", "mPackagesLock"})
2412 @VisibleForTesting
2413 void upgradeIfNecessaryLP(Bundle oldGlobalUserRestrictions, int userVersion) {
Bookatz75f0a072019-08-05 14:12:16 -07002414 Set<Integer> userIdsToWrite = new ArraySet<>();
Makoto Onuki1a2cd742015-11-16 13:51:27 -08002415 final int originalVersion = mUserVersion;
Amith Yamasani6f34b412012-10-22 18:19:27 -07002416 if (userVersion < 1) {
2417 // Assign a proper name for the owner, if not initialized correctly before
Amith Yamasani12747872015-12-07 14:19:49 -08002418 UserData userData = getUserDataNoChecks(UserHandle.USER_SYSTEM);
2419 if ("Primary".equals(userData.info.name)) {
2420 userData.info.name =
2421 mContext.getResources().getString(com.android.internal.R.string.owner_name);
Bookatz75f0a072019-08-05 14:12:16 -07002422 userIdsToWrite.add(userData.info.id);
Amith Yamasani6f34b412012-10-22 18:19:27 -07002423 }
2424 userVersion = 1;
2425 }
2426
Amith Yamasanibc9625052012-11-15 14:39:18 -08002427 if (userVersion < 2) {
2428 // Owner should be marked as initialized
Amith Yamasani12747872015-12-07 14:19:49 -08002429 UserData userData = getUserDataNoChecks(UserHandle.USER_SYSTEM);
2430 if ((userData.info.flags & UserInfo.FLAG_INITIALIZED) == 0) {
2431 userData.info.flags |= UserInfo.FLAG_INITIALIZED;
Bookatz75f0a072019-08-05 14:12:16 -07002432 userIdsToWrite.add(userData.info.id);
Amith Yamasanibc9625052012-11-15 14:39:18 -08002433 }
2434 userVersion = 2;
2435 }
2436
Amith Yamasani350962c2013-08-06 11:18:53 -07002437
Amith Yamasani5e486f52013-08-07 11:06:44 -07002438 if (userVersion < 4) {
Amith Yamasani5e486f52013-08-07 11:06:44 -07002439 userVersion = 4;
2440 }
2441
Amith Yamasaniaa6634e2014-10-06 14:20:28 -07002442 if (userVersion < 5) {
2443 initDefaultGuestRestrictions();
2444 userVersion = 5;
2445 }
2446
Fyodor Kupolov1c363152015-09-02 13:27:21 -07002447 if (userVersion < 6) {
2448 final boolean splitSystemUser = UserManager.isSplitSystemUser();
Fyodor Kupolov82402752015-10-28 14:54:51 -07002449 synchronized (mUsersLock) {
2450 for (int i = 0; i < mUsers.size(); i++) {
Amith Yamasani12747872015-12-07 14:19:49 -08002451 UserData userData = mUsers.valueAt(i);
Fyodor Kupolov82402752015-10-28 14:54:51 -07002452 // In non-split mode, only user 0 can have restricted profiles
Amith Yamasani12747872015-12-07 14:19:49 -08002453 if (!splitSystemUser && userData.info.isRestricted()
2454 && (userData.info.restrictedProfileParentId
2455 == UserInfo.NO_PROFILE_GROUP_ID)) {
2456 userData.info.restrictedProfileParentId = UserHandle.USER_SYSTEM;
Bookatz75f0a072019-08-05 14:12:16 -07002457 userIdsToWrite.add(userData.info.id);
Fyodor Kupolov82402752015-10-28 14:54:51 -07002458 }
Fyodor Kupolov1c363152015-09-02 13:27:21 -07002459 }
2460 }
2461 userVersion = 6;
2462 }
2463
Pavel Grafov6a40f092016-10-25 15:46:51 +01002464 if (userVersion < 7) {
2465 // Previously only one user could enforce global restrictions, now it is per-user.
2466 synchronized (mRestrictionsLock) {
2467 if (!UserRestrictionsUtils.isEmpty(oldGlobalUserRestrictions)
2468 && mDeviceOwnerUserId != UserHandle.USER_NULL) {
2469 mDevicePolicyGlobalUserRestrictions.put(
2470 mDeviceOwnerUserId, oldGlobalUserRestrictions);
2471 }
2472 // ENSURE_VERIFY_APPS is now enforced globally even if put by profile owner, so move
2473 // it from local to global bundle for all users who set it.
2474 UserRestrictionsUtils.moveRestriction(UserManager.ENSURE_VERIFY_APPS,
2475 mDevicePolicyLocalUserRestrictions, mDevicePolicyGlobalUserRestrictions
2476 );
2477 }
2478 userVersion = 7;
2479 }
2480
Bookatz75f0a072019-08-05 14:12:16 -07002481 if (userVersion < 8) {
2482 // Added FLAG_FULL and FLAG_SYSTEM flags.
2483 synchronized (mUsersLock) {
2484 UserData userData = mUsers.get(UserHandle.USER_SYSTEM);
2485 userData.info.flags |= UserInfo.FLAG_SYSTEM;
2486 if (!UserManager.isHeadlessSystemUserMode()) {
2487 userData.info.flags |= UserInfo.FLAG_FULL;
2488 }
2489 userIdsToWrite.add(userData.info.id);
2490
2491 // Mark FULL all non-profile users except USER_SYSTEM.
2492 // Start index at 1 since USER_SYSTEM is the smallest userId and we're skipping it.
2493 for (int i = 1; i < mUsers.size(); i++) {
2494 userData = mUsers.valueAt(i);
2495 if ((userData.info.flags & UserInfo.FLAG_MANAGED_PROFILE) == 0) {
2496 userData.info.flags |= UserInfo.FLAG_FULL;
2497 userIdsToWrite.add(userData.info.id);
2498 }
2499 }
2500 }
2501 userVersion = 8;
2502 }
2503
Bookatz029832a2019-10-04 16:50:22 -07002504 if (userVersion < 9) {
2505 // Convert from UserInfo flags to UserTypes. Apply FLAG_PROFILE to FLAG_MANAGED_PROFILE.
2506 synchronized (mUsersLock) {
2507 for (int i = 0; i < mUsers.size(); i++) {
2508 UserData userData = mUsers.valueAt(i);
2509 final int flags = userData.info.flags;
2510 if ((flags & UserInfo.FLAG_SYSTEM) != 0) {
2511 if ((flags & UserInfo.FLAG_FULL) != 0) {
2512 userData.info.userType = UserManager.USER_TYPE_FULL_SYSTEM;
2513 } else {
2514 userData.info.userType = UserManager.USER_TYPE_SYSTEM_HEADLESS;
2515 }
2516 } else {
2517 try {
2518 userData.info.userType = UserInfo.getDefaultUserType(flags);
2519 } catch (IllegalArgumentException e) {
2520 // TODO(b/142482943): What should we do here? Delete user? Crashloop?
2521 throw new IllegalStateException("Cannot upgrade user with flags "
2522 + Integer.toHexString(flags) + " because it doesn't correspond "
2523 + "to a valid user type.", e);
2524 }
2525 }
2526 // OEMs are responsible for their own custom upgrade logic here.
2527
2528 final UserTypeDetails userTypeDetails = mUserTypes.get(userData.info.userType);
2529 if (userTypeDetails == null) {
2530 throw new IllegalStateException(
2531 "Cannot upgrade user with flags " + Integer.toHexString(flags)
2532 + " because " + userData.info.userType + " isn't defined"
2533 + " on this device!");
2534 }
2535 userData.info.flags |= userTypeDetails.getDefaultUserInfoFlags();
2536 userIdsToWrite.add(userData.info.id);
2537 }
2538 }
2539 userVersion = 9;
2540 }
2541
Amith Yamasani6f34b412012-10-22 18:19:27 -07002542 if (userVersion < USER_VERSION) {
2543 Slog.w(LOG_TAG, "User version " + mUserVersion + " didn't upgrade as expected to "
2544 + USER_VERSION);
2545 } else {
2546 mUserVersion = userVersion;
Makoto Onuki1a2cd742015-11-16 13:51:27 -08002547
2548 if (originalVersion < mUserVersion) {
Bookatz75f0a072019-08-05 14:12:16 -07002549 for (int userId : userIdsToWrite) {
2550 UserData userData = getUserDataNoChecks(userId);
2551 if (userData != null) {
2552 writeUserLP(userData);
2553 }
2554 }
Makoto Onuki1a2cd742015-11-16 13:51:27 -08002555 writeUserListLP();
2556 }
Amith Yamasani6f34b412012-10-22 18:19:27 -07002557 }
2558 }
2559
Andreas Gampe2e8c7672018-07-20 13:01:08 -07002560 @GuardedBy({"mPackagesLock", "mRestrictionsLock"})
Fyodor Kupolove80085d2015-11-06 18:21:39 -08002561 private void fallbackToSingleUserLP() {
Ying Zheng215116f2019-09-11 12:50:09 -07002562 int flags = UserInfo.FLAG_SYSTEM | UserInfo.FLAG_INITIALIZED | UserInfo.FLAG_ADMIN
2563 | UserInfo.FLAG_PRIMARY;
Xiaohui Chen70f6c382015-04-28 14:21:43 -07002564 // Create the system user
Bookatz029832a2019-10-04 16:50:22 -07002565 String systemUserType = UserManager.isHeadlessSystemUserMode() ?
2566 UserManager.USER_TYPE_SYSTEM_HEADLESS : UserManager.USER_TYPE_FULL_SYSTEM;
2567 flags |= mUserTypes.get(systemUserType).getDefaultUserInfoFlags();
2568 UserInfo system = new UserInfo(UserHandle.USER_SYSTEM, null, null, flags, systemUserType);
Fyodor Kupolov0f4533d2016-05-18 18:43:12 -07002569 UserData userData = putUserInfo(system);
Amith Yamasani634cf312012-10-04 17:34:21 -07002570 mNextSerialNumber = MIN_USER_ID;
Geoffrey Borggaard15b8b2c2013-08-28 22:11:10 -04002571 mUserVersion = USER_VERSION;
Amith Yamasani67df64b2012-12-14 12:09:36 -08002572
Geoffrey Borggaarde45e45e32013-01-24 10:03:20 -05002573 Bundle restrictions = new Bundle();
Mahaver Chopra3d9805d2016-07-07 16:25:05 +01002574 try {
2575 final String[] defaultFirstUserRestrictions = mContext.getResources().getStringArray(
2576 com.android.internal.R.array.config_defaultFirstUserRestrictions);
2577 for (String userRestriction : defaultFirstUserRestrictions) {
2578 if (UserRestrictionsUtils.isValidRestriction(userRestriction)) {
2579 restrictions.putBoolean(userRestriction, true);
2580 }
2581 }
2582 } catch (Resources.NotFoundException e) {
2583 Log.e(LOG_TAG, "Couldn't find resource: config_defaultFirstUserRestrictions", e);
2584 }
2585
Pavel Grafov6a40f092016-10-25 15:46:51 +01002586 if (!restrictions.isEmpty()) {
2587 synchronized (mRestrictionsLock) {
2588 mBaseUserRestrictions.append(UserHandle.USER_SYSTEM, restrictions);
2589 }
Makoto Onuki068c54a2015-10-13 14:34:03 -07002590 }
Amith Yamasani67df64b2012-12-14 12:09:36 -08002591
Fyodor Kupolov82402752015-10-28 14:54:51 -07002592 updateUserIds();
Amith Yamasaniaa6634e2014-10-06 14:20:28 -07002593 initDefaultGuestRestrictions();
Amith Yamasani4b2e9342011-03-31 12:38:53 -07002594
Amith Yamasani12747872015-12-07 14:19:49 -08002595 writeUserLP(userData);
Jeff Sharkeycd575992016-03-29 14:12:49 -06002596 writeUserListLP();
Amith Yamasani4b2e9342011-03-31 12:38:53 -07002597 }
2598
Amith Yamasani6f48d6e2016-03-23 14:28:25 -07002599 private String getOwnerName() {
2600 return mContext.getResources().getString(com.android.internal.R.string.owner_name);
2601 }
2602
Bookatz75f0a072019-08-05 14:12:16 -07002603 private void scheduleWriteUser(UserData userData) {
Makoto Onuki1a2cd742015-11-16 13:51:27 -08002604 if (DBG) {
2605 debug("scheduleWriteUser");
2606 }
Makoto Onuki9e935a32015-11-06 14:24:24 -08002607 // No need to wrap it within a lock -- worst case, we'll just post the same message
2608 // twice.
Bookatz75f0a072019-08-05 14:12:16 -07002609 if (!mHandler.hasMessages(WRITE_USER_MSG, userData)) {
2610 Message msg = mHandler.obtainMessage(WRITE_USER_MSG, userData);
Fyodor Kupolov75d0ea82014-12-15 16:21:07 -08002611 mHandler.sendMessageDelayed(msg, WRITE_USER_DELAY);
2612 }
2613 }
2614
Amith Yamasani12747872015-12-07 14:19:49 -08002615 private void writeUserLP(UserData userData) {
Makoto Onuki1a2cd742015-11-16 13:51:27 -08002616 if (DBG) {
Amith Yamasani12747872015-12-07 14:19:49 -08002617 debug("writeUserLP " + userData);
Makoto Onuki1a2cd742015-11-16 13:51:27 -08002618 }
Amith Yamasani742a6712011-05-04 14:49:28 -07002619 FileOutputStream fos = null;
Amith Yamasani12747872015-12-07 14:19:49 -08002620 AtomicFile userFile = new AtomicFile(new File(mUsersDir, userData.info.id + XML_SUFFIX));
Amith Yamasani4b2e9342011-03-31 12:38:53 -07002621 try {
Amith Yamasani2a003292012-08-14 18:25:45 -07002622 fos = userFile.startWrite();
Amith Yamasani4b2e9342011-03-31 12:38:53 -07002623 final BufferedOutputStream bos = new BufferedOutputStream(fos);
Kenny Guy02c89902016-11-15 19:36:38 +00002624 writeUserLP(userData, bos);
Amith Yamasani2a003292012-08-14 18:25:45 -07002625 userFile.finishWrite(fos);
2626 } catch (Exception ioe) {
Jeff Sharkeycd575992016-03-29 14:12:49 -06002627 Slog.e(LOG_TAG, "Error writing user info " + userData.info.id, ioe);
Amith Yamasani2a003292012-08-14 18:25:45 -07002628 userFile.failWrite(fos);
Amith Yamasani4b2e9342011-03-31 12:38:53 -07002629 }
2630 }
2631
2632 /*
Kenny Guy02c89902016-11-15 19:36:38 +00002633 * Writes the user file in this format:
2634 *
2635 * <user flags="20039023" id="0">
2636 * <name>Primary</name>
2637 * </user>
2638 */
2639 @VisibleForTesting
2640 void writeUserLP(UserData userData, OutputStream os)
2641 throws IOException, XmlPullParserException {
2642 // XmlSerializer serializer = XmlUtils.serializerInstance();
2643 final XmlSerializer serializer = new FastXmlSerializer();
2644 serializer.setOutput(os, StandardCharsets.UTF_8.name());
2645 serializer.startDocument(null, true);
2646 serializer.setFeature("http://xmlpull.org/v1/doc/features.html#indent-output", true);
2647
2648 final UserInfo userInfo = userData.info;
2649 serializer.startTag(null, TAG_USER);
2650 serializer.attribute(null, ATTR_ID, Integer.toString(userInfo.id));
2651 serializer.attribute(null, ATTR_SERIAL_NO, Integer.toString(userInfo.serialNumber));
2652 serializer.attribute(null, ATTR_FLAGS, Integer.toString(userInfo.flags));
Bookatz029832a2019-10-04 16:50:22 -07002653 serializer.attribute(null, ATTR_TYPE, userInfo.userType);
Kenny Guy02c89902016-11-15 19:36:38 +00002654 serializer.attribute(null, ATTR_CREATION_TIME, Long.toString(userInfo.creationTime));
2655 serializer.attribute(null, ATTR_LAST_LOGGED_IN_TIME,
2656 Long.toString(userInfo.lastLoggedInTime));
2657 if (userInfo.lastLoggedInFingerprint != null) {
2658 serializer.attribute(null, ATTR_LAST_LOGGED_IN_FINGERPRINT,
2659 userInfo.lastLoggedInFingerprint);
2660 }
2661 if (userInfo.iconPath != null) {
2662 serializer.attribute(null, ATTR_ICON_PATH, userInfo.iconPath);
2663 }
2664 if (userInfo.partial) {
2665 serializer.attribute(null, ATTR_PARTIAL, "true");
2666 }
Felipe Lemec1ca4412019-09-11 09:23:26 -07002667 if (userInfo.preCreated) {
2668 serializer.attribute(null, ATTR_PRE_CREATED, "true");
2669 }
Kenny Guy02c89902016-11-15 19:36:38 +00002670 if (userInfo.guestToRemove) {
2671 serializer.attribute(null, ATTR_GUEST_TO_REMOVE, "true");
2672 }
2673 if (userInfo.profileGroupId != UserInfo.NO_PROFILE_GROUP_ID) {
2674 serializer.attribute(null, ATTR_PROFILE_GROUP_ID,
2675 Integer.toString(userInfo.profileGroupId));
2676 }
2677 serializer.attribute(null, ATTR_PROFILE_BADGE,
2678 Integer.toString(userInfo.profileBadge));
2679 if (userInfo.restrictedProfileParentId != UserInfo.NO_PROFILE_GROUP_ID) {
2680 serializer.attribute(null, ATTR_RESTRICTED_PROFILE_PARENT_ID,
2681 Integer.toString(userInfo.restrictedProfileParentId));
2682 }
2683 // Write seed data
2684 if (userData.persistSeedData) {
2685 if (userData.seedAccountName != null) {
2686 serializer.attribute(null, ATTR_SEED_ACCOUNT_NAME, userData.seedAccountName);
2687 }
2688 if (userData.seedAccountType != null) {
2689 serializer.attribute(null, ATTR_SEED_ACCOUNT_TYPE, userData.seedAccountType);
2690 }
2691 }
2692 if (userInfo.name != null) {
2693 serializer.startTag(null, TAG_NAME);
2694 serializer.text(userInfo.name);
2695 serializer.endTag(null, TAG_NAME);
2696 }
2697 synchronized (mRestrictionsLock) {
2698 UserRestrictionsUtils.writeRestrictions(serializer,
2699 mBaseUserRestrictions.get(userInfo.id), TAG_RESTRICTIONS);
2700 UserRestrictionsUtils.writeRestrictions(serializer,
2701 mDevicePolicyLocalUserRestrictions.get(userInfo.id),
2702 TAG_DEVICE_POLICY_RESTRICTIONS);
Pavel Grafov6a40f092016-10-25 15:46:51 +01002703 UserRestrictionsUtils.writeRestrictions(serializer,
2704 mDevicePolicyGlobalUserRestrictions.get(userInfo.id),
2705 TAG_DEVICE_POLICY_GLOBAL_RESTRICTIONS);
Kenny Guy02c89902016-11-15 19:36:38 +00002706 }
2707
2708 if (userData.account != null) {
2709 serializer.startTag(null, TAG_ACCOUNT);
2710 serializer.text(userData.account);
2711 serializer.endTag(null, TAG_ACCOUNT);
2712 }
2713
2714 if (userData.persistSeedData && userData.seedAccountOptions != null) {
2715 serializer.startTag(null, TAG_SEED_ACCOUNT_OPTIONS);
2716 userData.seedAccountOptions.saveToXml(serializer);
2717 serializer.endTag(null, TAG_SEED_ACCOUNT_OPTIONS);
2718 }
2719
arangelov9b632d72018-12-07 23:21:22 +00002720 if (userData.getLastRequestQuietModeEnabledMillis() != 0L) {
2721 serializer.startTag(/* namespace */ null, TAG_LAST_REQUEST_QUIET_MODE_ENABLED_CALL);
2722 serializer.text(String.valueOf(userData.getLastRequestQuietModeEnabledMillis()));
2723 serializer.endTag(/* namespace */ null, TAG_LAST_REQUEST_QUIET_MODE_ENABLED_CALL);
2724 }
2725
Kenny Guy02c89902016-11-15 19:36:38 +00002726 serializer.endTag(null, TAG_USER);
2727
2728 serializer.endDocument();
2729 }
2730
2731 /*
Amith Yamasani4b2e9342011-03-31 12:38:53 -07002732 * Writes the user list file in this format:
2733 *
Amith Yamasani2a003292012-08-14 18:25:45 -07002734 * <users nextSerialNumber="3">
Amith Yamasani4b2e9342011-03-31 12:38:53 -07002735 * <user id="0"></user>
2736 * <user id="2"></user>
2737 * </users>
2738 */
Andreas Gampe2e8c7672018-07-20 13:01:08 -07002739 @GuardedBy({"mRestrictionsLock", "mPackagesLock"})
Fyodor Kupolove80085d2015-11-06 18:21:39 -08002740 private void writeUserListLP() {
Makoto Onuki1a2cd742015-11-16 13:51:27 -08002741 if (DBG) {
2742 debug("writeUserList");
2743 }
Amith Yamasani742a6712011-05-04 14:49:28 -07002744 FileOutputStream fos = null;
Amith Yamasani2a003292012-08-14 18:25:45 -07002745 AtomicFile userListFile = new AtomicFile(mUserListFile);
Amith Yamasani4b2e9342011-03-31 12:38:53 -07002746 try {
Amith Yamasani2a003292012-08-14 18:25:45 -07002747 fos = userListFile.startWrite();
Amith Yamasani4b2e9342011-03-31 12:38:53 -07002748 final BufferedOutputStream bos = new BufferedOutputStream(fos);
2749
2750 // XmlSerializer serializer = XmlUtils.serializerInstance();
2751 final XmlSerializer serializer = new FastXmlSerializer();
Wojciech Staszkiewicz9e9e2e72015-05-08 14:58:46 +01002752 serializer.setOutput(bos, StandardCharsets.UTF_8.name());
Amith Yamasani4b2e9342011-03-31 12:38:53 -07002753 serializer.startDocument(null, true);
2754 serializer.setFeature("http://xmlpull.org/v1/doc/features.html#indent-output", true);
2755
2756 serializer.startTag(null, TAG_USERS);
Amith Yamasani2a003292012-08-14 18:25:45 -07002757 serializer.attribute(null, ATTR_NEXT_SERIAL_NO, Integer.toString(mNextSerialNumber));
Amith Yamasani6f34b412012-10-22 18:19:27 -07002758 serializer.attribute(null, ATTR_USER_VERSION, Integer.toString(mUserVersion));
Amith Yamasani4b2e9342011-03-31 12:38:53 -07002759
Adam Lesinskieddeb492014-09-08 17:50:03 -07002760 serializer.startTag(null, TAG_GUEST_RESTRICTIONS);
Fyodor Kupolove80085d2015-11-06 18:21:39 -08002761 synchronized (mGuestRestrictions) {
2762 UserRestrictionsUtils
2763 .writeRestrictions(serializer, mGuestRestrictions, TAG_RESTRICTIONS);
2764 }
Amith Yamasanie4afaa32014-06-30 14:55:07 +05302765 serializer.endTag(null, TAG_GUEST_RESTRICTIONS);
Pavel Grafov6a40f092016-10-25 15:46:51 +01002766 serializer.startTag(null, TAG_DEVICE_OWNER_USER_ID);
2767 serializer.attribute(null, ATTR_ID, Integer.toString(mDeviceOwnerUserId));
2768 serializer.endTag(null, TAG_DEVICE_OWNER_USER_ID);
Fyodor Kupolov82402752015-10-28 14:54:51 -07002769 int[] userIdsToWrite;
2770 synchronized (mUsersLock) {
2771 userIdsToWrite = new int[mUsers.size()];
2772 for (int i = 0; i < userIdsToWrite.length; i++) {
Amith Yamasani12747872015-12-07 14:19:49 -08002773 UserInfo user = mUsers.valueAt(i).info;
Fyodor Kupolov82402752015-10-28 14:54:51 -07002774 userIdsToWrite[i] = user.id;
2775 }
2776 }
2777 for (int id : userIdsToWrite) {
Amith Yamasani4b2e9342011-03-31 12:38:53 -07002778 serializer.startTag(null, TAG_USER);
Fyodor Kupolov82402752015-10-28 14:54:51 -07002779 serializer.attribute(null, ATTR_ID, Integer.toString(id));
Amith Yamasani4b2e9342011-03-31 12:38:53 -07002780 serializer.endTag(null, TAG_USER);
Amith Yamasani4b2e9342011-03-31 12:38:53 -07002781 }
2782
2783 serializer.endTag(null, TAG_USERS);
2784
2785 serializer.endDocument();
Amith Yamasani2a003292012-08-14 18:25:45 -07002786 userListFile.finishWrite(fos);
2787 } catch (Exception e) {
2788 userListFile.failWrite(fos);
Amith Yamasani0b285492011-04-14 17:35:23 -07002789 Slog.e(LOG_TAG, "Error writing user list");
Amith Yamasani4b2e9342011-03-31 12:38:53 -07002790 }
2791 }
2792
Amith Yamasani12747872015-12-07 14:19:49 -08002793 private UserData readUserLP(int id) {
Kenny Guy02c89902016-11-15 19:36:38 +00002794 FileInputStream fis = null;
2795 try {
2796 AtomicFile userFile =
2797 new AtomicFile(new File(mUsersDir, Integer.toString(id) + XML_SUFFIX));
2798 fis = userFile.openRead();
2799 return readUserLP(id, fis);
2800 } catch (IOException ioe) {
2801 Slog.e(LOG_TAG, "Error reading user list");
2802 } catch (XmlPullParserException pe) {
2803 Slog.e(LOG_TAG, "Error reading user list");
2804 } finally {
2805 IoUtils.closeQuietly(fis);
2806 }
2807 return null;
2808 }
2809
2810 @VisibleForTesting
2811 UserData readUserLP(int id, InputStream is) throws IOException,
2812 XmlPullParserException {
Amith Yamasani4b2e9342011-03-31 12:38:53 -07002813 int flags = 0;
Bookatz029832a2019-10-04 16:50:22 -07002814 String userType = null;
Amith Yamasani2a003292012-08-14 18:25:45 -07002815 int serialNumber = id;
Amith Yamasani4b2e9342011-03-31 12:38:53 -07002816 String name = null;
Xiaohui Chenb3b92582015-12-07 11:22:13 -08002817 String account = null;
Amith Yamasanib8151ec2012-04-18 18:02:48 -07002818 String iconPath = null;
Amith Yamasani920ace02012-09-20 22:15:37 -07002819 long creationTime = 0L;
2820 long lastLoggedInTime = 0L;
arangelov9b632d72018-12-07 23:21:22 +00002821 long lastRequestQuietModeEnabledTimestamp = 0L;
Jeff Sharkeybd91e2f2016-03-22 15:32:31 -06002822 String lastLoggedInFingerprint = null;
Kenny Guy2a764942014-04-02 13:29:20 +01002823 int profileGroupId = UserInfo.NO_PROFILE_GROUP_ID;
Kenny Guy02c89902016-11-15 19:36:38 +00002824 int profileBadge = 0;
Fyodor Kupolov06a484a2015-08-21 16:33:20 -07002825 int restrictedProfileParentId = UserInfo.NO_PROFILE_GROUP_ID;
Dianne Hackbornd4ac8d72012-09-27 23:20:10 -07002826 boolean partial = false;
Felipe Lemec1ca4412019-09-11 09:23:26 -07002827 boolean preCreated = false;
Adam Lesinskieddeb492014-09-08 17:50:03 -07002828 boolean guestToRemove = false;
Amith Yamasani12747872015-12-07 14:19:49 -08002829 boolean persistSeedData = false;
2830 String seedAccountName = null;
2831 String seedAccountType = null;
2832 PersistableBundle seedAccountOptions = null;
Pavel Grafov6a40f092016-10-25 15:46:51 +01002833 Bundle baseRestrictions = null;
2834 Bundle localRestrictions = null;
2835 Bundle globalRestrictions = null;
Amith Yamasani4b2e9342011-03-31 12:38:53 -07002836
Kenny Guy02c89902016-11-15 19:36:38 +00002837 XmlPullParser parser = Xml.newPullParser();
2838 parser.setInput(is, StandardCharsets.UTF_8.name());
2839 int type;
2840 while ((type = parser.next()) != XmlPullParser.START_TAG
2841 && type != XmlPullParser.END_DOCUMENT) {
2842 // Skip
2843 }
Amith Yamasani4b2e9342011-03-31 12:38:53 -07002844
Kenny Guy02c89902016-11-15 19:36:38 +00002845 if (type != XmlPullParser.START_TAG) {
2846 Slog.e(LOG_TAG, "Unable to read user " + id);
2847 return null;
2848 }
2849
2850 if (type == XmlPullParser.START_TAG && parser.getName().equals(TAG_USER)) {
2851 int storedId = readIntAttribute(parser, ATTR_ID, -1);
2852 if (storedId != id) {
2853 Slog.e(LOG_TAG, "User id does not match the file name");
Amith Yamasani4b2e9342011-03-31 12:38:53 -07002854 return null;
2855 }
Kenny Guy02c89902016-11-15 19:36:38 +00002856 serialNumber = readIntAttribute(parser, ATTR_SERIAL_NO, id);
2857 flags = readIntAttribute(parser, ATTR_FLAGS, 0);
Bookatz029832a2019-10-04 16:50:22 -07002858 userType = parser.getAttributeValue(null, ATTR_TYPE);
2859 userType = userType != null ? userType.intern() : null;
Kenny Guy02c89902016-11-15 19:36:38 +00002860 iconPath = parser.getAttributeValue(null, ATTR_ICON_PATH);
2861 creationTime = readLongAttribute(parser, ATTR_CREATION_TIME, 0);
2862 lastLoggedInTime = readLongAttribute(parser, ATTR_LAST_LOGGED_IN_TIME, 0);
2863 lastLoggedInFingerprint = parser.getAttributeValue(null,
2864 ATTR_LAST_LOGGED_IN_FINGERPRINT);
2865 profileGroupId = readIntAttribute(parser, ATTR_PROFILE_GROUP_ID,
2866 UserInfo.NO_PROFILE_GROUP_ID);
2867 profileBadge = readIntAttribute(parser, ATTR_PROFILE_BADGE, 0);
2868 restrictedProfileParentId = readIntAttribute(parser,
2869 ATTR_RESTRICTED_PROFILE_PARENT_ID, UserInfo.NO_PROFILE_GROUP_ID);
2870 String valueString = parser.getAttributeValue(null, ATTR_PARTIAL);
2871 if ("true".equals(valueString)) {
2872 partial = true;
2873 }
Felipe Lemec1ca4412019-09-11 09:23:26 -07002874 valueString = parser.getAttributeValue(null, ATTR_PRE_CREATED);
2875 if ("true".equals(valueString)) {
2876 preCreated = true;
2877 }
Kenny Guy02c89902016-11-15 19:36:38 +00002878 valueString = parser.getAttributeValue(null, ATTR_GUEST_TO_REMOVE);
2879 if ("true".equals(valueString)) {
2880 guestToRemove = true;
2881 }
Amith Yamasani4b2e9342011-03-31 12:38:53 -07002882
Kenny Guy02c89902016-11-15 19:36:38 +00002883 seedAccountName = parser.getAttributeValue(null, ATTR_SEED_ACCOUNT_NAME);
2884 seedAccountType = parser.getAttributeValue(null, ATTR_SEED_ACCOUNT_TYPE);
2885 if (seedAccountName != null || seedAccountType != null) {
2886 persistSeedData = true;
2887 }
Amith Yamasani4b2e9342011-03-31 12:38:53 -07002888
Kenny Guy02c89902016-11-15 19:36:38 +00002889 int outerDepth = parser.getDepth();
2890 while ((type = parser.next()) != XmlPullParser.END_DOCUMENT
2891 && (type != XmlPullParser.END_TAG || parser.getDepth() > outerDepth)) {
2892 if (type == XmlPullParser.END_TAG || type == XmlPullParser.TEXT) {
2893 continue;
2894 }
2895 String tag = parser.getName();
2896 if (TAG_NAME.equals(tag)) {
2897 type = parser.next();
2898 if (type == XmlPullParser.TEXT) {
2899 name = parser.getText();
2900 }
2901 } else if (TAG_RESTRICTIONS.equals(tag)) {
Pavel Grafov6a40f092016-10-25 15:46:51 +01002902 baseRestrictions = UserRestrictionsUtils.readRestrictions(parser);
Kenny Guy02c89902016-11-15 19:36:38 +00002903 } else if (TAG_DEVICE_POLICY_RESTRICTIONS.equals(tag)) {
Pavel Grafov6a40f092016-10-25 15:46:51 +01002904 localRestrictions = UserRestrictionsUtils.readRestrictions(parser);
2905 } else if (TAG_DEVICE_POLICY_GLOBAL_RESTRICTIONS.equals(tag)) {
2906 globalRestrictions = UserRestrictionsUtils.readRestrictions(parser);
Kenny Guy02c89902016-11-15 19:36:38 +00002907 } else if (TAG_ACCOUNT.equals(tag)) {
2908 type = parser.next();
2909 if (type == XmlPullParser.TEXT) {
2910 account = parser.getText();
2911 }
2912 } else if (TAG_SEED_ACCOUNT_OPTIONS.equals(tag)) {
2913 seedAccountOptions = PersistableBundle.restoreFromXml(parser);
Amith Yamasani12747872015-12-07 14:19:49 -08002914 persistSeedData = true;
arangelov9b632d72018-12-07 23:21:22 +00002915 } else if (TAG_LAST_REQUEST_QUIET_MODE_ENABLED_CALL.equals(tag)) {
2916 type = parser.next();
2917 if (type == XmlPullParser.TEXT) {
2918 lastRequestQuietModeEnabledTimestamp = Long.parseLong(parser.getText());
2919 }
Amith Yamasani12747872015-12-07 14:19:49 -08002920 }
Dianne Hackbornbfd89b32011-12-15 18:22:54 -08002921 }
Amith Yamasani4b2e9342011-03-31 12:38:53 -07002922 }
Kenny Guy02c89902016-11-15 19:36:38 +00002923
2924 // Create the UserInfo object that gets passed around
Bookatz029832a2019-10-04 16:50:22 -07002925 UserInfo userInfo = new UserInfo(id, name, iconPath, flags, userType);
Kenny Guy02c89902016-11-15 19:36:38 +00002926 userInfo.serialNumber = serialNumber;
2927 userInfo.creationTime = creationTime;
2928 userInfo.lastLoggedInTime = lastLoggedInTime;
2929 userInfo.lastLoggedInFingerprint = lastLoggedInFingerprint;
2930 userInfo.partial = partial;
Felipe Lemec1ca4412019-09-11 09:23:26 -07002931 userInfo.preCreated = preCreated;
Kenny Guy02c89902016-11-15 19:36:38 +00002932 userInfo.guestToRemove = guestToRemove;
2933 userInfo.profileGroupId = profileGroupId;
2934 userInfo.profileBadge = profileBadge;
2935 userInfo.restrictedProfileParentId = restrictedProfileParentId;
2936
2937 // Create the UserData object that's internal to this class
2938 UserData userData = new UserData();
2939 userData.info = userInfo;
2940 userData.account = account;
2941 userData.seedAccountName = seedAccountName;
2942 userData.seedAccountType = seedAccountType;
2943 userData.persistSeedData = persistSeedData;
2944 userData.seedAccountOptions = seedAccountOptions;
arangelov9b632d72018-12-07 23:21:22 +00002945 userData.setLastRequestQuietModeEnabledMillis(lastRequestQuietModeEnabledTimestamp);
Kenny Guy02c89902016-11-15 19:36:38 +00002946
2947 synchronized (mRestrictionsLock) {
Pavel Grafov6a40f092016-10-25 15:46:51 +01002948 if (baseRestrictions != null) {
2949 mBaseUserRestrictions.put(id, baseRestrictions);
2950 }
2951 if (localRestrictions != null) {
2952 mDevicePolicyLocalUserRestrictions.put(id, localRestrictions);
2953 }
2954 if (globalRestrictions != null) {
2955 mDevicePolicyGlobalUserRestrictions.put(id, globalRestrictions);
2956 }
Kenny Guy02c89902016-11-15 19:36:38 +00002957 }
2958 return userData;
Amith Yamasani4b2e9342011-03-31 12:38:53 -07002959 }
2960
Amith Yamasani920ace02012-09-20 22:15:37 -07002961 private int readIntAttribute(XmlPullParser parser, String attr, int defaultValue) {
2962 String valueString = parser.getAttributeValue(null, attr);
2963 if (valueString == null) return defaultValue;
2964 try {
2965 return Integer.parseInt(valueString);
2966 } catch (NumberFormatException nfe) {
2967 return defaultValue;
2968 }
2969 }
2970
2971 private long readLongAttribute(XmlPullParser parser, String attr, long defaultValue) {
2972 String valueString = parser.getAttributeValue(null, attr);
2973 if (valueString == null) return defaultValue;
2974 try {
2975 return Long.parseLong(valueString);
2976 } catch (NumberFormatException nfe) {
2977 return defaultValue;
2978 }
2979 }
2980
Amith Yamasanib82add22013-07-09 11:24:44 -07002981 /**
Amith Yamasani1a7472e2013-07-02 11:17:30 -07002982 * Removes the app restrictions file for a specific package and user id, if it exists.
2983 */
Bookatzf56f2582019-09-04 16:06:41 -07002984 private static void cleanAppRestrictionsForPackageLAr(String pkg, @UserIdInt int userId) {
Fyodor Kupolovd31cee92017-09-05 16:31:08 -07002985 File dir = Environment.getUserSystemDirectory(userId);
2986 File resFile = new File(dir, packageToRestrictionsFileName(pkg));
2987 if (resFile.exists()) {
2988 resFile.delete();
Amith Yamasani1a7472e2013-07-02 11:17:30 -07002989 }
2990 }
2991
Bookatz029832a2019-10-04 16:50:22 -07002992 /**
2993 * Creates a profile user. Used for actual profiles, like
2994 * {@link UserManager#USER_TYPE_PROFILE_MANAGED}, as well as for
2995 * {@link UserManager#USER_TYPE_FULL_RESTRICTED}.
2996 */
Kenny Guya52dc3e2014-02-11 15:33:14 +00002997 @Override
Bookatz029832a2019-10-04 16:50:22 -07002998 public UserInfo createProfileForUser(String name, @NonNull String userType,
2999 @UserInfoFlag int flags, @UserIdInt int userId, @Nullable String[] disallowedPackages) {
Sudheer Shankaf5cea032016-06-08 17:13:24 -07003000 checkManageOrCreateUsersPermission(flags);
Bookatz029832a2019-10-04 16:50:22 -07003001 return createUserInternal(name, userType, flags, userId, disallowedPackages);
3002 }
3003
3004 /** @see #createProfileForUser */
3005 @Override
3006 public UserInfo createProfileForUserEvenWhenDisallowed(String name, @NonNull String userType,
3007 @UserInfoFlag int flags, @UserIdInt int userId, @Nullable String[] disallowedPackages) {
3008 checkManageOrCreateUsersPermission(flags);
3009 return createUserInternalUnchecked(name, userType, flags, userId,
3010 /* preCreate= */ false, disallowedPackages);
Kenny Guya52dc3e2014-02-11 15:33:14 +00003011 }
3012
Amith Yamasani258848d2012-08-10 17:06:33 -07003013 @Override
Bookatz029832a2019-10-04 16:50:22 -07003014 public UserInfo createUser(String name, @NonNull String userType, @UserInfoFlag int flags) {
Tony Mak6dc428f2016-10-10 15:48:27 +01003015 checkManageOrCreateUsersPermission(flags);
Bookatz029832a2019-10-04 16:50:22 -07003016 return createUserInternal(name, userType, flags, UserHandle.USER_NULL,
3017 /* disallowedPackages= */ null);
Tony Mak6dc428f2016-10-10 15:48:27 +01003018 }
3019
3020 @Override
Bookatz029832a2019-10-04 16:50:22 -07003021 public UserInfo preCreateUser(String userType) {
3022 final UserTypeDetails userTypeDetails = mUserTypes.get(userType);
3023 final int flags = userTypeDetails != null ? userTypeDetails.getDefaultUserInfoFlags() : 0;
Nicolas Prevotd37c4a92017-01-23 11:56:00 +00003024
Felipe Lemec1ca4412019-09-11 09:23:26 -07003025 checkManageOrCreateUsersPermission(flags);
3026
Bookatz029832a2019-10-04 16:50:22 -07003027 Preconditions.checkArgument(isUserTypeEligibleForPreCreation(userTypeDetails),
3028 "cannot pre-create user of type " + userType);
3029 Slog.i(LOG_TAG, "Pre-creating user of type " + userType);
Felipe Lemec1ca4412019-09-11 09:23:26 -07003030
Bookatz029832a2019-10-04 16:50:22 -07003031 return createUserInternalUnchecked(/* name= */ null, userType, flags,
Felipe Lemec1ca4412019-09-11 09:23:26 -07003032 /* parentId= */ UserHandle.USER_NULL, /* preCreate= */ true,
3033 /* disallowedPackages= */ null);
3034 }
3035
Bookatz029832a2019-10-04 16:50:22 -07003036 private UserInfo createUserInternal(@Nullable String name, @NonNull String userType,
3037 @UserInfoFlag int flags, @UserIdInt int parentId,
3038 @Nullable String[] disallowedPackages) {
3039 String restriction = (UserManager.isUserTypeManagedProfile(userType))
Esteban Talavera6c9116a2016-11-24 16:12:44 +00003040 ? UserManager.DISALLOW_ADD_MANAGED_PROFILE
3041 : UserManager.DISALLOW_ADD_USER;
3042 if (hasUserRestriction(restriction, UserHandle.getCallingUserId())) {
3043 Log.w(LOG_TAG, "Cannot add user. " + restriction + " is enabled.");
Julia Reynolds75175022014-06-26 16:35:00 -04003044 return null;
3045 }
Bookatz029832a2019-10-04 16:50:22 -07003046 return createUserInternalUnchecked(name, userType, flags, parentId,
3047 /* preCreate= */ false, disallowedPackages);
Tony Mak6dc428f2016-10-10 15:48:27 +01003048 }
3049
Bookatz029832a2019-10-04 16:50:22 -07003050 private UserInfo createUserInternalUnchecked(@Nullable String name,
3051 @NonNull String userType, @UserInfoFlag int flags, @UserIdInt int parentId,
3052 boolean preCreate, @Nullable String[] disallowedPackages) {
Felipe Lemec1ca4412019-09-11 09:23:26 -07003053 final TimingsTraceAndSlog t = new TimingsTraceAndSlog();
3054 t.traceBegin("createUser-" + flags);
3055 try {
Bookatz029832a2019-10-04 16:50:22 -07003056 return createUserInternalUncheckedNoTracing(name, userType, flags, parentId,
3057 preCreate, disallowedPackages, t);
Felipe Lemec1ca4412019-09-11 09:23:26 -07003058 } finally {
3059 t.traceEnd();
3060 }
jovanakdd7e4752019-09-04 12:35:45 -07003061 }
3062
Felipe Lemec1ca4412019-09-11 09:23:26 -07003063 private UserInfo createUserInternalUncheckedNoTracing(@Nullable String name,
Bookatz029832a2019-10-04 16:50:22 -07003064 @NonNull String userType, @UserInfoFlag int flags, @UserIdInt int parentId,
3065 boolean preCreate, @Nullable String[] disallowedPackages,
3066 @NonNull TimingsTraceAndSlog t) {
3067
3068 final UserTypeDetails userTypeDetails = mUserTypes.get(userType);
3069 if (userTypeDetails == null) {
3070 Slog.e(LOG_TAG, "Cannot create user of invalid user type: " + userType);
3071 return null;
3072 }
3073 userType = userType.intern(); // Now that we know it's valid, we can intern it.
3074 flags |= userTypeDetails.getDefaultUserInfoFlags();
3075 if (!checkUserTypeConsistency(flags)) {
3076 Slog.e(LOG_TAG, "Cannot add user. Flags (" + Integer.toHexString(flags)
3077 + ") and userTypeDetails (" + userType + ") are inconsistent.");
3078 return null;
3079 }
3080 if ((flags & UserInfo.FLAG_SYSTEM) != 0) {
3081 Slog.e(LOG_TAG, "Cannot add user. Flags (" + Integer.toHexString(flags)
3082 + ") indicated SYSTEM user, which cannot be created.");
3083 return null;
3084 }
3085 synchronized (mUsersLock) {
3086 if (mForceEphemeralUsers) {
3087 flags |= UserInfo.FLAG_EPHEMERAL;
3088 }
3089 }
Felipe Lemec1ca4412019-09-11 09:23:26 -07003090
3091 // First try to use a pre-created user (if available).
Bookatz029832a2019-10-04 16:50:22 -07003092 // TODO(b/142482943): Move this to its own function later.
3093 if (!preCreate
3094 && (parentId < 0 && isUserTypeEligibleForPreCreation(userTypeDetails))) {
Felipe Lemec1ca4412019-09-11 09:23:26 -07003095 final UserData preCreatedUserData;
3096 synchronized (mUsersLock) {
Bookatz029832a2019-10-04 16:50:22 -07003097 preCreatedUserData = getPreCreatedUserLU(userType);
Felipe Lemec1ca4412019-09-11 09:23:26 -07003098 }
3099 if (preCreatedUserData != null) {
3100 final UserInfo preCreatedUser = preCreatedUserData.info;
Bookatz029832a2019-10-04 16:50:22 -07003101 final int newFlags = preCreatedUser.flags | flags;
3102 if (!checkUserTypeConsistency(newFlags)) {
3103 Slog.wtf(LOG_TAG, "Cannot reuse pre-created user " + preCreatedUser.id
3104 + " of type " + userType + " because flags are inconsistent. "
3105 + "Flags (" + Integer.toHexString(flags) + "); preCreatedUserFlags ( "
3106 + Integer.toHexString(preCreatedUser.flags) + ").");
3107 } else {
3108 Log.i(LOG_TAG, "Reusing pre-created user " + preCreatedUser.id + " of type "
3109 + userType + " and bestowing on it flags "
3110 + UserInfo.flagsToString(flags));
3111 preCreatedUser.name = name;
3112 preCreatedUser.flags = newFlags;
3113 preCreatedUser.preCreated = false;
3114 preCreatedUser.creationTime = getCreationTime();
3115
3116 dispatchUserAddedIntent(preCreatedUser);
3117 writeUserLP(preCreatedUserData);
3118 writeUserListLP();
3119 return preCreatedUser;
Felipe Lemec1ca4412019-09-11 09:23:26 -07003120 }
Felipe Lemec1ca4412019-09-11 09:23:26 -07003121 }
3122 }
3123
Suprabh Shuklac5e057c2016-08-08 16:22:44 -07003124 DeviceStorageMonitorInternal dsm = LocalServices
3125 .getService(DeviceStorageMonitorInternal.class);
3126 if (dsm.isMemoryLow()) {
3127 Log.w(LOG_TAG, "Cannot add user. Not enough space on disk.");
3128 return null;
3129 }
jovanakdd7e4752019-09-04 12:35:45 -07003130
Bookatz029832a2019-10-04 16:50:22 -07003131 final boolean isProfile = userTypeDetails.isProfile();
3132 final boolean isGuest = UserManager.isUserTypeGuest(userType);
3133 final boolean isRestricted = UserManager.isUserTypeRestricted(userType);
3134 final boolean isDemo = UserManager.isUserTypeDemo(userType);
3135
Dianne Hackborn5dc5a002012-09-15 19:33:48 -07003136 final long ident = Binder.clearCallingIdentity();
Fyodor Kupolove80085d2015-11-06 18:21:39 -08003137 UserInfo userInfo;
Amith Yamasani12747872015-12-07 14:19:49 -08003138 UserData userData;
Amith Yamasanibb054c92015-07-09 14:16:27 -07003139 final int userId;
Dianne Hackborn5dc5a002012-09-15 19:33:48 -07003140 try {
Fyodor Kupolove80085d2015-11-06 18:21:39 -08003141 synchronized (mPackagesLock) {
Amith Yamasani12747872015-12-07 14:19:49 -08003142 UserData parent = null;
Fyodor Kupolove80085d2015-11-06 18:21:39 -08003143 if (parentId != UserHandle.USER_NULL) {
3144 synchronized (mUsersLock) {
Amith Yamasani12747872015-12-07 14:19:49 -08003145 parent = getUserDataLU(parentId);
Nicolas Prevotc6d033e2014-02-27 13:11:09 +00003146 }
Fyodor Kupolove80085d2015-11-06 18:21:39 -08003147 if (parent == null) return null;
3148 }
Bookatz029832a2019-10-04 16:50:22 -07003149 if (!preCreate && !canAddMoreUsersOfType(userTypeDetails)) {
3150 Log.e(LOG_TAG, "Cannot add more users of type " + userType
3151 + ". Maximum number of that type already exists.");
Fyodor Kupolove80085d2015-11-06 18:21:39 -08003152 return null;
3153 }
Bookatz029832a2019-10-04 16:50:22 -07003154 // TODO(b/142482943): Perhaps let the following code apply to restricted users too.
3155 if (isProfile && !canAddMoreProfilesToUser(userType, parentId, false)) {
3156 Log.e(LOG_TAG, "Cannot add more profiles of type " + userType
3157 + " for user " + parentId);
3158 return null;
3159 }
3160 if (!isGuest && !isProfile && !isDemo && isUserLimitReached()) {
3161 // If we're not adding a guest/demo user or a profile and the 'user limit' has
3162 // been reached, cannot add a user.
jovanaka6763a32018-12-03 17:23:20 -08003163 Log.e(LOG_TAG, "Cannot add user. Maximum user limit is reached.");
Fyodor Kupolove80085d2015-11-06 18:21:39 -08003164 return null;
3165 }
Fyodor Kupolove80085d2015-11-06 18:21:39 -08003166 // In legacy mode, restricted profile's parent can only be the owner user
3167 if (isRestricted && !UserManager.isSplitSystemUser()
3168 && (parentId != UserHandle.USER_SYSTEM)) {
3169 Log.w(LOG_TAG, "Cannot add restricted profile - parent user must be owner");
3170 return null;
3171 }
3172 if (isRestricted && UserManager.isSplitSystemUser()) {
3173 if (parent == null) {
3174 Log.w(LOG_TAG, "Cannot add restricted profile - parent user must be "
3175 + "specified");
Nicolas Prevot12678a92015-05-13 12:15:03 -07003176 return null;
3177 }
Amith Yamasani12747872015-12-07 14:19:49 -08003178 if (!parent.info.canHaveProfile()) {
Fyodor Kupolove80085d2015-11-06 18:21:39 -08003179 Log.w(LOG_TAG, "Cannot add restricted profile - profiles cannot be "
3180 + "created for the specified parent user id " + parentId);
Amith Yamasani95ab7842014-08-11 17:09:26 -07003181 return null;
3182 }
Fyodor Kupolove80085d2015-11-06 18:21:39 -08003183 }
Ying Zheng215116f2019-09-11 12:50:09 -07003184
Lenka Trochtovaf348e8e2016-01-07 17:20:34 +01003185 userId = getNextAvailableId();
3186 Environment.getUserSystemDirectory(userId).mkdirs();
Lenka Trochtovaf348e8e2016-01-07 17:20:34 +01003187
Fyodor Kupolove80085d2015-11-06 18:21:39 -08003188 synchronized (mUsersLock) {
Bookatz029832a2019-10-04 16:50:22 -07003189 // Inherit ephemeral flag from parent.
3190 if (parent != null && parent.info.isEphemeral()) {
Lenka Trochtovaf348e8e2016-01-07 17:20:34 +01003191 flags |= UserInfo.FLAG_EPHEMERAL;
3192 }
3193
Bookatz029832a2019-10-04 16:50:22 -07003194 userInfo = new UserInfo(userId, name, null, flags, userType);
Lenka Trochtovaf348e8e2016-01-07 17:20:34 +01003195 userInfo.serialNumber = mNextSerialNumber++;
Felipe Lemec1ca4412019-09-11 09:23:26 -07003196 userInfo.creationTime = getCreationTime();
Lenka Trochtovaf348e8e2016-01-07 17:20:34 +01003197 userInfo.partial = true;
Felipe Lemec1ca4412019-09-11 09:23:26 -07003198 userInfo.preCreated = preCreate;
Fyodor Kupolov83c24242016-03-31 13:30:42 -07003199 userInfo.lastLoggedInFingerprint = Build.FINGERPRINT;
Bookatz029832a2019-10-04 16:50:22 -07003200 if (userTypeDetails.hasBadge() && parentId != UserHandle.USER_NULL) {
3201 userInfo.profileBadge = getFreeProfileBadgeLU(parentId, userType);
Kenny Guy02c89902016-11-15 19:36:38 +00003202 }
Lenka Trochtovaf348e8e2016-01-07 17:20:34 +01003203 userData = new UserData();
3204 userData.info = userInfo;
Amith Yamasani12747872015-12-07 14:19:49 -08003205 mUsers.put(userId, userData);
Fyodor Kupolove80085d2015-11-06 18:21:39 -08003206 }
Jeff Sharkeycd575992016-03-29 14:12:49 -06003207 writeUserLP(userData);
Fyodor Kupolove80085d2015-11-06 18:21:39 -08003208 writeUserListLP();
3209 if (parent != null) {
Bookatz029832a2019-10-04 16:50:22 -07003210 if (isProfile) {
Amith Yamasani12747872015-12-07 14:19:49 -08003211 if (parent.info.profileGroupId == UserInfo.NO_PROFILE_GROUP_ID) {
3212 parent.info.profileGroupId = parent.info.id;
Fyodor Kupolove80085d2015-11-06 18:21:39 -08003213 writeUserLP(parent);
Kenny Guya52dc3e2014-02-11 15:33:14 +00003214 }
Amith Yamasani12747872015-12-07 14:19:49 -08003215 userInfo.profileGroupId = parent.info.profileGroupId;
Fyodor Kupolove80085d2015-11-06 18:21:39 -08003216 } else if (isRestricted) {
Amith Yamasani12747872015-12-07 14:19:49 -08003217 if (parent.info.restrictedProfileParentId == UserInfo.NO_PROFILE_GROUP_ID) {
3218 parent.info.restrictedProfileParentId = parent.info.id;
Fyodor Kupolove80085d2015-11-06 18:21:39 -08003219 writeUserLP(parent);
Jeff Sharkey6dce4962015-07-03 18:08:41 -07003220 }
Amith Yamasani12747872015-12-07 14:19:49 -08003221 userInfo.restrictedProfileParentId = parent.info.restrictedProfileParentId;
Makoto Onuki068c54a2015-10-13 14:34:03 -07003222 }
Dianne Hackborn5dc5a002012-09-15 19:33:48 -07003223 }
Dianne Hackborn4428e172012-08-24 17:43:05 -07003224 }
jovanakdd7e4752019-09-04 12:35:45 -07003225
3226 t.traceBegin("createUserKey");
Fyodor Kupolove80085d2015-11-06 18:21:39 -08003227 final StorageManager storage = mContext.getSystemService(StorageManager.class);
Lenka Trochtovac4dd0212015-11-18 12:22:06 +01003228 storage.createUserKey(userId, userInfo.serialNumber, userInfo.isEphemeral());
jovanakdd7e4752019-09-04 12:35:45 -07003229 t.traceEnd();
3230
3231 t.traceBegin("prepareUserData");
Fyodor Kupolov5c0ecfd2017-01-27 11:11:57 -08003232 mUserDataPreparer.prepareUserData(userId, userInfo.serialNumber,
Jeff Sharkey47f71082016-02-01 17:03:54 -07003233 StorageManager.FLAG_STORAGE_DE | StorageManager.FLAG_STORAGE_CE);
jovanakdd7e4752019-09-04 12:35:45 -07003234 t.traceEnd();
3235
Bookatz029832a2019-10-04 16:50:22 -07003236 final Set<String> installablePackages = // TODO(b/142482943): use userType
Bookatz04d7ae52019-08-05 14:07:12 -07003237 mSystemPackageInstaller.getInstallablePackagesForUserType(flags);
jovanakdd7e4752019-09-04 12:35:45 -07003238 t.traceBegin("PM.createNewUser");
Bookatz04d7ae52019-08-05 14:07:12 -07003239 mPm.createNewUser(userId, installablePackages, disallowedPackages);
jovanakdd7e4752019-09-04 12:35:45 -07003240 t.traceEnd();
3241
Fyodor Kupolove80085d2015-11-06 18:21:39 -08003242 userInfo.partial = false;
3243 synchronized (mPackagesLock) {
Amith Yamasani12747872015-12-07 14:19:49 -08003244 writeUserLP(userData);
Fyodor Kupolove80085d2015-11-06 18:21:39 -08003245 }
3246 updateUserIds();
3247 Bundle restrictions = new Bundle();
Bookatz029832a2019-10-04 16:50:22 -07003248 // TODO(b/142482943): Generalize this using UserTypeDetails default restrictions.
Fyodor Kupolove04462c2015-11-30 15:02:53 -08003249 if (isGuest) {
3250 synchronized (mGuestRestrictions) {
3251 restrictions.putAll(mGuestRestrictions);
3252 }
3253 }
Fyodor Kupolove80085d2015-11-06 18:21:39 -08003254 synchronized (mRestrictionsLock) {
3255 mBaseUserRestrictions.append(userId, restrictions);
3256 }
jovanakdd7e4752019-09-04 12:35:45 -07003257
3258 t.traceBegin("PM.onNewUserCreated");
Fyodor Kupolov5fd967d2016-07-12 14:46:19 -07003259 mPm.onNewUserCreated(userId);
jovanakdd7e4752019-09-04 12:35:45 -07003260
Felipe Lemec1ca4412019-09-11 09:23:26 -07003261 if (preCreate) {
3262 // Must start user (which will be stopped right away, through
3263 // UserController.finishUserUnlockedCompleted) so services can properly
3264 // intialize it.
Felipe Lemec6e015d2019-10-21 12:51:08 -07003265 // TODO(b/143092698): in the long-term, it might be better to add a onCreateUser()
3266 // callback on SystemService instead.
Felipe Lemec1ca4412019-09-11 09:23:26 -07003267 Slog.i(LOG_TAG, "starting pre-created user " + userInfo.toFullString());
3268 final IActivityManager am = ActivityManager.getService();
3269 try {
3270 am.startUserInBackground(userId);
3271 } catch (RemoteException e) {
3272 Slog.w(LOG_TAG, "could not start pre-created user " + userId, e);
3273 }
3274 } else {
3275 dispatchUserAddedIntent(userInfo);
3276 }
3277
Dianne Hackborn5dc5a002012-09-15 19:33:48 -07003278 } finally {
3279 Binder.restoreCallingIdentity(ident);
Amith Yamasani258848d2012-08-10 17:06:33 -07003280 }
Felipe Lemec1ca4412019-09-11 09:23:26 -07003281
Felipe Lemec6e015d2019-10-21 12:51:08 -07003282 // TODO(b/143092698): it's possible to reach "max users overflow" when the user is created
Felipe Lemec1ca4412019-09-11 09:23:26 -07003283 // "from scratch" (i.e., not from a pre-created user) and reaches the maximum number of
3284 // users without counting the pre-created one. Then when the pre-created is converted, the
3285 // "effective" number of max users is exceeds. Example:
3286 // Max: 3 Current: 2 full (u0 and u10) + 1 pre-created (u11)
3287 // Step 1: create(/* flags doesn't match u11 */): u12 is created, "effective max" is now 3
3288 // (u0, u10, u12) but "real" max is 4 (u0, u10, u11, u12)
3289 // Step 2: create(/* flags match u11 */): u11 is converted, now "effective max" is also 4
3290 // (u0, u10, u11, u12)
3291 // One way to avoid this issue is by removing a pre-created user from the pool when the
3292 // "real" max exceeds the max here.
3293
Amith Yamasani4b2e9342011-03-31 12:38:53 -07003294 return userInfo;
3295 }
3296
Bookatz029832a2019-10-04 16:50:22 -07003297 /** Checks that the flags do not contain mutually exclusive types/properties. */
3298 static boolean checkUserTypeConsistency(@UserInfoFlag int flags) {
3299 // Mask to check that flags don't refer to multiple user types.
3300 final int userTypeFlagMask = UserInfo.FLAG_GUEST | UserInfo.FLAG_DEMO
3301 | UserInfo.FLAG_RESTRICTED | UserInfo.FLAG_PROFILE;
3302 return isAtMostOneFlag(flags & userTypeFlagMask)
3303 && isAtMostOneFlag(flags & (UserInfo.FLAG_PROFILE | UserInfo.FLAG_FULL))
3304 && isAtMostOneFlag(flags & (UserInfo.FLAG_PROFILE | UserInfo.FLAG_SYSTEM));
3305 }
3306
3307 /** Returns whether the given flags contains at most one 1. */
3308 private static boolean isAtMostOneFlag(int flags) {
3309 return (flags & (flags - 1)) == 0;
3310 // If !=0, this means that flags is not a power of 2, and therefore is multiple types.
3311 }
3312
Bookatz04d7ae52019-08-05 14:07:12 -07003313 /** Install/uninstall system packages for all users based on their user-type, as applicable. */
3314 boolean installWhitelistedSystemPackages(boolean isFirstBoot, boolean isUpgrade) {
3315 return mSystemPackageInstaller.installWhitelistedSystemPackages(isFirstBoot, isUpgrade);
3316 }
3317
Felipe Lemec1ca4412019-09-11 09:23:26 -07003318 private long getCreationTime() {
3319 final long now = System.currentTimeMillis();
3320 return (now > EPOCH_PLUS_30_YEARS) ? now : 0;
3321 }
3322
3323 private void dispatchUserAddedIntent(@NonNull UserInfo userInfo) {
3324 Intent addedIntent = new Intent(Intent.ACTION_USER_ADDED);
3325 addedIntent.putExtra(Intent.EXTRA_USER_HANDLE, userInfo.id);
3326 mContext.sendBroadcastAsUser(addedIntent, UserHandle.ALL,
3327 android.Manifest.permission.MANAGE_USERS);
3328 MetricsLogger.count(mContext, userInfo.isGuest() ? TRON_GUEST_CREATED
3329 : (userInfo.isDemo() ? TRON_DEMO_CREATED : TRON_USER_CREATED), 1);
3330 }
3331
Felipe Lemec1ca4412019-09-11 09:23:26 -07003332 /**
Bookatz029832a2019-10-04 16:50:22 -07003333 * Gets a pre-created user for the given user type.
Felipe Lemec1ca4412019-09-11 09:23:26 -07003334 *
3335 * <p>Should be used only during user creation, so the pre-created user can be used (instead of
3336 * creating and initializing a new user from scratch).
3337 */
Felipe Lemec6e015d2019-10-21 12:51:08 -07003338 // TODO(b/143092698): add unit test
Felipe Lemec1ca4412019-09-11 09:23:26 -07003339 @GuardedBy("mUsersLock")
Bookatz029832a2019-10-04 16:50:22 -07003340 private @Nullable UserData getPreCreatedUserLU(String userType) {
3341 if (DBG) Slog.d(LOG_TAG, "getPreCreatedUser(): userType= " + userType);
Felipe Lemec1ca4412019-09-11 09:23:26 -07003342 final int userSize = mUsers.size();
3343 for (int i = 0; i < userSize; i++) {
3344 final UserData user = mUsers.valueAt(i);
3345 if (DBG) Slog.d(LOG_TAG, i + ":" + user.info.toFullString());
Bookatz029832a2019-10-04 16:50:22 -07003346 if (user.info.preCreated && user.info.userType.equals(userType)) {
Felipe Lemec1ca4412019-09-11 09:23:26 -07003347 if (!user.info.isInitialized()) {
Bookatz029832a2019-10-04 16:50:22 -07003348 Slog.w(LOG_TAG, "found pre-created user of type " + userType
Felipe Lemec1ca4412019-09-11 09:23:26 -07003349 + ", but it's not initialized yet: " + user.info.toFullString());
3350 continue;
3351 }
3352 return user;
3353 }
3354 }
3355 return null;
3356 }
3357
Bookatz029832a2019-10-04 16:50:22 -07003358 /**
3359 * Returns whether a user with the given userTypeDetails is eligible to be
3360 * {@link UserInfo#preCreated}.
3361 */
3362 private static boolean isUserTypeEligibleForPreCreation(UserTypeDetails userTypeDetails) {
3363 if (userTypeDetails == null) {
3364 return false;
3365 }
3366 return !userTypeDetails.isProfile()
3367 && !userTypeDetails.getName().equals(UserManager.USER_TYPE_FULL_RESTRICTED);
3368 }
3369
Fyodor Kupolov0f4533d2016-05-18 18:43:12 -07003370 @VisibleForTesting
3371 UserData putUserInfo(UserInfo userInfo) {
3372 final UserData userData = new UserData();
3373 userData.info = userInfo;
3374 synchronized (mUsers) {
3375 mUsers.put(userInfo.id, userData);
3376 }
3377 return userData;
3378 }
3379
3380 @VisibleForTesting
Bookatzf56f2582019-09-04 16:06:41 -07003381 void removeUserInfo(@UserIdInt int userId) {
Fyodor Kupolov0f4533d2016-05-18 18:43:12 -07003382 synchronized (mUsers) {
3383 mUsers.remove(userId);
3384 }
3385 }
3386
Amith Yamasani0b285492011-04-14 17:35:23 -07003387 /**
Fyodor Kupolov02cb6e72015-09-18 18:20:55 -07003388 * @hide
3389 */
Amith Yamasani12747872015-12-07 14:19:49 -08003390 @Override
Fyodor Kupolov02cb6e72015-09-18 18:20:55 -07003391 public UserInfo createRestrictedProfile(String name, int parentUserId) {
Sudheer Shanka53d41472016-06-16 09:11:08 -07003392 checkManageOrCreateUsersPermission("setupRestrictedProfile");
Sudheer Shanka7cb54a32016-09-16 12:59:05 -07003393 final UserInfo user = createProfileForUser(
Bookatz029832a2019-10-04 16:50:22 -07003394 name, UserManager.USER_TYPE_FULL_RESTRICTED, 0, parentUserId, null);
Fyodor Kupolov02cb6e72015-09-18 18:20:55 -07003395 if (user == null) {
3396 return null;
3397 }
Fyodor Kupolov9e912ba2016-02-09 18:29:43 -08003398 long identity = Binder.clearCallingIdentity();
3399 try {
3400 setUserRestriction(UserManager.DISALLOW_MODIFY_ACCOUNTS, true, user.id);
3401 // Change the setting before applying the DISALLOW_SHARE_LOCATION restriction, otherwise
3402 // the putIntForUser() will fail.
3403 android.provider.Settings.Secure.putIntForUser(mContext.getContentResolver(),
3404 android.provider.Settings.Secure.LOCATION_MODE,
3405 android.provider.Settings.Secure.LOCATION_MODE_OFF, user.id);
3406 setUserRestriction(UserManager.DISALLOW_SHARE_LOCATION, true, user.id);
3407 } finally {
3408 Binder.restoreCallingIdentity(identity);
3409 }
Fyodor Kupolov02cb6e72015-09-18 18:20:55 -07003410 return user;
3411 }
3412
3413 /**
Adam Lesinskieddeb492014-09-08 17:50:03 -07003414 * Find the current guest user. If the Guest user is partial,
3415 * then do not include it in the results as it is about to die.
Adam Lesinskieddeb492014-09-08 17:50:03 -07003416 */
Fyodor Kupolov82402752015-10-28 14:54:51 -07003417 private UserInfo findCurrentGuestUser() {
3418 synchronized (mUsersLock) {
3419 final int size = mUsers.size();
3420 for (int i = 0; i < size; i++) {
Amith Yamasani12747872015-12-07 14:19:49 -08003421 final UserInfo user = mUsers.valueAt(i).info;
Felipe Lemee35f5b02019-10-14 15:37:44 -07003422 if (user.isGuest() && !user.guestToRemove && !user.preCreated
3423 && !mRemovingUserIds.get(user.id)) {
Fyodor Kupolov82402752015-10-28 14:54:51 -07003424 return user;
3425 }
Adam Lesinskieddeb492014-09-08 17:50:03 -07003426 }
3427 }
3428 return null;
3429 }
3430
3431 /**
Amith Yamasani1df14732014-08-29 21:37:27 -07003432 * Mark this guest user for deletion to allow us to create another guest
3433 * and switch to that user before actually removing this guest.
Bookatzf56f2582019-09-04 16:06:41 -07003434 * @param userId the userid of the current guest
Amith Yamasani1df14732014-08-29 21:37:27 -07003435 * @return whether the user could be marked for deletion
3436 */
Amith Yamasani12747872015-12-07 14:19:49 -08003437 @Override
Bookatzf56f2582019-09-04 16:06:41 -07003438 public boolean markGuestForDeletion(@UserIdInt int userId) {
Amith Yamasani1df14732014-08-29 21:37:27 -07003439 checkManageUsersPermission("Only the system can remove users");
3440 if (getUserRestrictions(UserHandle.getCallingUserId()).getBoolean(
3441 UserManager.DISALLOW_REMOVE_USER, false)) {
3442 Log.w(LOG_TAG, "Cannot remove user. DISALLOW_REMOVE_USER is enabled.");
3443 return false;
3444 }
3445
3446 long ident = Binder.clearCallingIdentity();
3447 try {
Amith Yamasani12747872015-12-07 14:19:49 -08003448 final UserData userData;
Amith Yamasani1df14732014-08-29 21:37:27 -07003449 synchronized (mPackagesLock) {
Fyodor Kupolov82402752015-10-28 14:54:51 -07003450 synchronized (mUsersLock) {
Bookatzf56f2582019-09-04 16:06:41 -07003451 userData = mUsers.get(userId);
3452 if (userId == 0 || userData == null || mRemovingUserIds.get(userId)) {
Fyodor Kupolov82402752015-10-28 14:54:51 -07003453 return false;
3454 }
Amith Yamasani1df14732014-08-29 21:37:27 -07003455 }
Amith Yamasani12747872015-12-07 14:19:49 -08003456 if (!userData.info.isGuest()) {
Amith Yamasani1df14732014-08-29 21:37:27 -07003457 return false;
3458 }
Adam Lesinskieddeb492014-09-08 17:50:03 -07003459 // We set this to a guest user that is to be removed. This is a temporary state
3460 // where we are allowed to add new Guest users, even if this one is still not
3461 // removed. This user will still show up in getUserInfo() calls.
3462 // If we don't get around to removing this Guest user, it will be purged on next
3463 // startup.
Amith Yamasani12747872015-12-07 14:19:49 -08003464 userData.info.guestToRemove = true;
Amith Yamasani1df14732014-08-29 21:37:27 -07003465 // Mark it as disabled, so that it isn't returned any more when
3466 // profiles are queried.
Amith Yamasani12747872015-12-07 14:19:49 -08003467 userData.info.flags |= UserInfo.FLAG_DISABLED;
3468 writeUserLP(userData);
Amith Yamasani1df14732014-08-29 21:37:27 -07003469 }
3470 } finally {
3471 Binder.restoreCallingIdentity(ident);
3472 }
3473 return true;
3474 }
3475
3476 /**
Amith Yamasani0b285492011-04-14 17:35:23 -07003477 * Removes a user and all data directories created for that user. This method should be called
3478 * after the user's processes have been terminated.
Bookatzf56f2582019-09-04 16:06:41 -07003479 * @param userId the user's id
Amith Yamasani0b285492011-04-14 17:35:23 -07003480 */
Amith Yamasani12747872015-12-07 14:19:49 -08003481 @Override
Bookatzf56f2582019-09-04 16:06:41 -07003482 public boolean removeUser(@UserIdInt int userId) {
3483 Slog.i(LOG_TAG, "removeUser u" + userId);
Sudheer Shankaf5cea032016-06-08 17:13:24 -07003484 checkManageOrCreateUsersPermission("Only the system can remove users");
Esteban Talavera6c9116a2016-11-24 16:12:44 +00003485
3486 final boolean isManagedProfile;
3487 synchronized (mUsersLock) {
Bookatzf56f2582019-09-04 16:06:41 -07003488 UserInfo userInfo = getUserInfoLU(userId);
Esteban Talavera6c9116a2016-11-24 16:12:44 +00003489 isManagedProfile = userInfo != null && userInfo.isManagedProfile();
3490 }
3491 String restriction = isManagedProfile
3492 ? UserManager.DISALLOW_REMOVE_MANAGED_PROFILE : UserManager.DISALLOW_REMOVE_USER;
3493 if (getUserRestrictions(UserHandle.getCallingUserId()).getBoolean(restriction, false)) {
3494 Log.w(LOG_TAG, "Cannot remove user. " + restriction + " is enabled.");
Julia Reynolds4ac5f852014-06-23 17:38:51 -04003495 return false;
3496 }
Bookatzf56f2582019-09-04 16:06:41 -07003497 return removeUserUnchecked(userId);
Nicolas Prevotdf1b87d2016-10-25 13:57:08 +01003498 }
Julia Reynolds4ac5f852014-06-23 17:38:51 -04003499
Bookatz029832a2019-10-04 16:50:22 -07003500 @Override
3501 public boolean removeUserEvenWhenDisallowed(@UserIdInt int userId) {
3502 checkManageOrCreateUsersPermission("Only the system can remove users");
3503 return removeUserUnchecked(userId);
3504 }
3505
Bookatzf56f2582019-09-04 16:06:41 -07003506 private boolean removeUserUnchecked(@UserIdInt int userId) {
Kenny Guyee58b4f2014-05-23 15:19:53 +01003507 long ident = Binder.clearCallingIdentity();
3508 try {
Amith Yamasani12747872015-12-07 14:19:49 -08003509 final UserData userData;
Fyodor Kupolov0df68cd2015-10-01 13:54:22 -07003510 int currentUser = ActivityManager.getCurrentUser();
Bookatzf56f2582019-09-04 16:06:41 -07003511 if (currentUser == userId) {
jovanaka6763a32018-12-03 17:23:20 -08003512 Log.w(LOG_TAG, "Current user cannot be removed.");
Fyodor Kupolov0df68cd2015-10-01 13:54:22 -07003513 return false;
3514 }
Kenny Guyee58b4f2014-05-23 15:19:53 +01003515 synchronized (mPackagesLock) {
Fyodor Kupolov82402752015-10-28 14:54:51 -07003516 synchronized (mUsersLock) {
Bookatzf56f2582019-09-04 16:06:41 -07003517 userData = mUsers.get(userId);
3518 if (userId == UserHandle.USER_SYSTEM) {
jovanaka6763a32018-12-03 17:23:20 -08003519 Log.e(LOG_TAG, "System user cannot be removed.");
3520 return false;
3521 }
3522
3523 if (userData == null) {
3524 Log.e(LOG_TAG, String.format(
Bookatzf56f2582019-09-04 16:06:41 -07003525 "Cannot remove user %d, invalid user id provided.", userId));
jovanaka6763a32018-12-03 17:23:20 -08003526 return false;
3527 }
3528
Bookatzf56f2582019-09-04 16:06:41 -07003529 if (mRemovingUserIds.get(userId)) {
jovanaka6763a32018-12-03 17:23:20 -08003530 Log.e(LOG_TAG, String.format(
Bookatzf56f2582019-09-04 16:06:41 -07003531 "User %d is already scheduled for removal.", userId));
Fyodor Kupolov82402752015-10-28 14:54:51 -07003532 return false;
3533 }
Jeff Sharkey6eb09392014-11-14 15:57:59 -08003534
Bookatzf56f2582019-09-04 16:06:41 -07003535 addRemovingUserIdLocked(userId);
Fyodor Kupolov82402752015-10-28 14:54:51 -07003536 }
Jeff Sharkey6eb09392014-11-14 15:57:59 -08003537
Kenny Guyee58b4f2014-05-23 15:19:53 +01003538 // Set this to a partially created user, so that the user will be purged
3539 // on next startup, in case the runtime stops now before stopping and
3540 // removing the user completely.
Amith Yamasani12747872015-12-07 14:19:49 -08003541 userData.info.partial = true;
Kenny Guyee58b4f2014-05-23 15:19:53 +01003542 // Mark it as disabled, so that it isn't returned any more when
3543 // profiles are queried.
Amith Yamasani12747872015-12-07 14:19:49 -08003544 userData.info.flags |= UserInfo.FLAG_DISABLED;
3545 writeUserLP(userData);
Kenny Guyee58b4f2014-05-23 15:19:53 +01003546 }
Fyodor Kupolov6c96f7f2017-06-28 18:22:59 -07003547 try {
Bookatzf56f2582019-09-04 16:06:41 -07003548 mAppOpsService.removeUser(userId);
Fyodor Kupolov6c96f7f2017-06-28 18:22:59 -07003549 } catch (RemoteException e) {
jovanaka6763a32018-12-03 17:23:20 -08003550 Log.w(LOG_TAG, "Unable to notify AppOpsService of removing user.", e);
Fyodor Kupolov6c96f7f2017-06-28 18:22:59 -07003551 }
Kenny Guyee58b4f2014-05-23 15:19:53 +01003552
Bookatz029832a2019-10-04 16:50:22 -07003553 // TODO(b/142482943): Send some sort of broadcast for profiles even if non-managed?
Amith Yamasani12747872015-12-07 14:19:49 -08003554 if (userData.info.profileGroupId != UserInfo.NO_PROFILE_GROUP_ID
3555 && userData.info.isManagedProfile()) {
Kenny Guyee58b4f2014-05-23 15:19:53 +01003556 // Send broadcast to notify system that the user removed was a
3557 // managed user.
Amith Yamasani12747872015-12-07 14:19:49 -08003558 sendProfileRemovedBroadcast(userData.info.profileGroupId, userData.info.id);
Kenny Guyee58b4f2014-05-23 15:19:53 +01003559 }
3560
Bookatzf56f2582019-09-04 16:06:41 -07003561 if (DBG) Slog.i(LOG_TAG, "Stopping user " + userId);
Kenny Guyee58b4f2014-05-23 15:19:53 +01003562 int res;
3563 try {
Bookatzf56f2582019-09-04 16:06:41 -07003564 res = ActivityManager.getService().stopUser(userId, /* force= */ true,
Fyodor Kupolov9cbfc9e2015-10-07 15:52:33 -07003565 new IStopUserCallback.Stub() {
Kenny Guyee58b4f2014-05-23 15:19:53 +01003566 @Override
Bookatzf56f2582019-09-04 16:06:41 -07003567 public void userStopped(int userIdParam) {
3568 finishRemoveUser(userIdParam);
Kenny Guyee58b4f2014-05-23 15:19:53 +01003569 }
3570 @Override
Bookatzf56f2582019-09-04 16:06:41 -07003571 public void userStopAborted(int userIdParam) {
Kenny Guyee58b4f2014-05-23 15:19:53 +01003572 }
3573 });
3574 } catch (RemoteException e) {
jovanaka6763a32018-12-03 17:23:20 -08003575 Log.w(LOG_TAG, "Failed to stop user during removal.", e);
Dianne Hackborn80a4af22012-08-27 19:18:31 -07003576 return false;
3577 }
Kenny Guyee58b4f2014-05-23 15:19:53 +01003578 return res == ActivityManager.USER_OP_SUCCESS;
3579 } finally {
3580 Binder.restoreCallingIdentity(ident);
Dianne Hackborn80a4af22012-08-27 19:18:31 -07003581 }
Dianne Hackborn80a4af22012-08-27 19:18:31 -07003582 }
3583
Andreas Gampea36dc622018-02-05 17:19:22 -08003584 @GuardedBy("mUsersLock")
Fyodor Kupolov0f4533d2016-05-18 18:43:12 -07003585 @VisibleForTesting
Bookatzf56f2582019-09-04 16:06:41 -07003586 void addRemovingUserIdLocked(@UserIdInt int userId) {
Fyodor Kupolov0f4533d2016-05-18 18:43:12 -07003587 // We remember deleted user IDs to prevent them from being
3588 // reused during the current boot; they can still be reused
3589 // after a reboot or recycling of userIds.
3590 mRemovingUserIds.put(userId, true);
3591 mRecentlyRemovedIds.add(userId);
3592 // Keep LRU queue of recently removed IDs for recycling
3593 if (mRecentlyRemovedIds.size() > MAX_RECENTLY_REMOVED_IDS_SIZE) {
3594 mRecentlyRemovedIds.removeFirst();
3595 }
3596 }
3597
Bookatzf56f2582019-09-04 16:06:41 -07003598 void finishRemoveUser(final @UserIdInt int userId) {
3599 if (DBG) Slog.i(LOG_TAG, "finishRemoveUser " + userId);
Amith Yamasanidb6a14c2012-10-17 21:16:52 -07003600 // Let other services shutdown any activity and clean up their state before completely
3601 // wiping the user's system directory and removing from the user list
Dianne Hackborn5dc5a002012-09-15 19:33:48 -07003602 long ident = Binder.clearCallingIdentity();
3603 try {
3604 Intent addedIntent = new Intent(Intent.ACTION_USER_REMOVED);
Bookatzf56f2582019-09-04 16:06:41 -07003605 addedIntent.putExtra(Intent.EXTRA_USER_HANDLE, userId);
Amith Yamasanidb6a14c2012-10-17 21:16:52 -07003606 mContext.sendOrderedBroadcastAsUser(addedIntent, UserHandle.ALL,
3607 android.Manifest.permission.MANAGE_USERS,
3608
3609 new BroadcastReceiver() {
3610 @Override
3611 public void onReceive(Context context, Intent intent) {
3612 if (DBG) {
3613 Slog.i(LOG_TAG,
3614 "USER_REMOVED broadcast sent, cleaning up user data "
Bookatzf56f2582019-09-04 16:06:41 -07003615 + userId);
Amith Yamasanidb6a14c2012-10-17 21:16:52 -07003616 }
3617 new Thread() {
Amith Yamasani12747872015-12-07 14:19:49 -08003618 @Override
Amith Yamasanidb6a14c2012-10-17 21:16:52 -07003619 public void run() {
Wale Ogunwalea6191b42018-05-09 07:41:32 -07003620 // Clean up any ActivityTaskManager state
3621 LocalServices.getService(ActivityTaskManagerInternal.class)
Bookatzf56f2582019-09-04 16:06:41 -07003622 .onUserStopped(userId);
3623 removeUserState(userId);
Amith Yamasanidb6a14c2012-10-17 21:16:52 -07003624 }
3625 }.start();
3626 }
3627 },
3628
3629 null, Activity.RESULT_OK, null, null);
Dianne Hackborn5dc5a002012-09-15 19:33:48 -07003630 } finally {
3631 Binder.restoreCallingIdentity(ident);
3632 }
Amith Yamasani2a003292012-08-14 18:25:45 -07003633 }
3634
Bookatzf56f2582019-09-04 16:06:41 -07003635 private void removeUserState(final @UserIdInt int userId) {
Paul Crowley91293792016-03-25 15:23:07 -07003636 try {
Bookatzf56f2582019-09-04 16:06:41 -07003637 mContext.getSystemService(StorageManager.class).destroyUserKey(userId);
Paul Crowley91293792016-03-25 15:23:07 -07003638 } catch (IllegalStateException e) {
3639 // This may be simply because the user was partially created.
Bookatzf56f2582019-09-04 16:06:41 -07003640 Slog.i(LOG_TAG, "Destroying key for user " + userId + " failed, continuing anyway", e);
Paul Crowley91293792016-03-25 15:23:07 -07003641 }
Jeff Sharkeyfcf1e552016-04-14 20:44:58 -06003642
Amith Yamasanid04aaa32016-06-13 12:09:36 -07003643 // Cleanup gatekeeper secure user id
3644 try {
3645 final IGateKeeperService gk = GateKeeper.getService();
3646 if (gk != null) {
Bookatzf56f2582019-09-04 16:06:41 -07003647 gk.clearSecureUserId(userId);
Amith Yamasanid04aaa32016-06-13 12:09:36 -07003648 }
3649 } catch (Exception ex) {
3650 Slog.w(LOG_TAG, "unable to clear GK secure user id");
3651 }
3652
Dianne Hackbornd4ac8d72012-09-27 23:20:10 -07003653 // Cleanup package manager settings
Bookatzf56f2582019-09-04 16:06:41 -07003654 mPm.cleanUpUser(this, userId);
Amith Yamasanid04aaa32016-06-13 12:09:36 -07003655
3656 // Clean up all data before removing metadata
Bookatzf56f2582019-09-04 16:06:41 -07003657 mUserDataPreparer.destroyUserData(userId,
Amith Yamasanid04aaa32016-06-13 12:09:36 -07003658 StorageManager.FLAG_STORAGE_DE | StorageManager.FLAG_STORAGE_CE);
3659
Dianne Hackbornd4ac8d72012-09-27 23:20:10 -07003660 // Remove this user from the list
Fyodor Kupolov82402752015-10-28 14:54:51 -07003661 synchronized (mUsersLock) {
Bookatzf56f2582019-09-04 16:06:41 -07003662 mUsers.remove(userId);
3663 mIsUserManaged.delete(userId);
Amith Yamasaniea1b9d72016-05-27 15:57:38 +00003664 }
3665 synchronized (mUserStates) {
Bookatzf56f2582019-09-04 16:06:41 -07003666 mUserStates.delete(userId);
Makoto Onukie7927da2015-11-25 10:05:17 -08003667 }
3668 synchronized (mRestrictionsLock) {
Bookatzf56f2582019-09-04 16:06:41 -07003669 mBaseUserRestrictions.remove(userId);
3670 mAppliedUserRestrictions.remove(userId);
3671 mCachedEffectiveUserRestrictions.remove(userId);
3672 mDevicePolicyLocalUserRestrictions.remove(userId);
3673 if (mDevicePolicyGlobalUserRestrictions.get(userId) != null) {
3674 mDevicePolicyGlobalUserRestrictions.remove(userId);
Pavel Grafov6a40f092016-10-25 15:46:51 +01003675 applyUserRestrictionsForAllUsersLR();
3676 }
Fyodor Kupolov82402752015-10-28 14:54:51 -07003677 }
Dianne Hackbornd4ac8d72012-09-27 23:20:10 -07003678 // Update the user list
Fyodor Kupolove80085d2015-11-06 18:21:39 -08003679 synchronized (mPackagesLock) {
3680 writeUserListLP();
3681 }
Jeff Sharkeycd575992016-03-29 14:12:49 -06003682 // Remove user file
Bookatzf56f2582019-09-04 16:06:41 -07003683 AtomicFile userFile = new AtomicFile(new File(mUsersDir, userId + XML_SUFFIX));
Jeff Sharkeycd575992016-03-29 14:12:49 -06003684 userFile.delete();
Fyodor Kupolov82402752015-10-28 14:54:51 -07003685 updateUserIds();
Fyodor Kupolov0f4533d2016-05-18 18:43:12 -07003686 if (RELEASE_DELETED_USER_ID) {
3687 synchronized (mUsers) {
Bookatzf56f2582019-09-04 16:06:41 -07003688 mRemovingUserIds.delete(userId);
Fyodor Kupolov0f4533d2016-05-18 18:43:12 -07003689 }
3690 }
Amith Yamasani61f57372012-08-31 12:12:28 -07003691 }
3692
Kenny Guyf8d3a232014-05-15 16:09:52 +01003693 private void sendProfileRemovedBroadcast(int parentUserId, int removedUserId) {
Adam Connors7b66ed52014-04-14 11:58:10 +01003694 Intent managedProfileIntent = new Intent(Intent.ACTION_MANAGED_PROFILE_REMOVED);
Adam Connorsd4b584e2014-06-09 13:55:47 +01003695 managedProfileIntent.addFlags(Intent.FLAG_RECEIVER_REGISTERED_ONLY |
3696 Intent.FLAG_RECEIVER_FOREGROUND);
Kenny Guyf8d3a232014-05-15 16:09:52 +01003697 managedProfileIntent.putExtra(Intent.EXTRA_USER, new UserHandle(removedUserId));
Jeff Sharkeyaf6ec292015-12-17 11:19:00 -07003698 managedProfileIntent.putExtra(Intent.EXTRA_USER_HANDLE, removedUserId);
Kenny Guyf8d3a232014-05-15 16:09:52 +01003699 mContext.sendBroadcastAsUser(managedProfileIntent, new UserHandle(parentUserId), null);
Adam Connors7b66ed52014-04-14 11:58:10 +01003700 }
3701
Amith Yamasani2a003292012-08-14 18:25:45 -07003702 @Override
Amith Yamasani7e99bc02013-04-16 18:24:51 -07003703 public Bundle getApplicationRestrictions(String packageName) {
3704 return getApplicationRestrictionsForUser(packageName, UserHandle.getCallingUserId());
3705 }
3706
3707 @Override
Bookatzf56f2582019-09-04 16:06:41 -07003708 public Bundle getApplicationRestrictionsForUser(String packageName, @UserIdInt int userId) {
Amith Yamasanidf2e92a2013-03-01 17:04:38 -08003709 if (UserHandle.getCallingUserId() != userId
Amith Yamasani9429afb2013-04-10 18:40:51 -07003710 || !UserHandle.isSameApp(Binder.getCallingUid(), getUidForPackage(packageName))) {
Amith Yamasani0d1fd8d2016-10-12 14:21:51 -07003711 checkSystemOrRoot("get application restrictions for other user/app " + packageName);
Amith Yamasanidf2e92a2013-03-01 17:04:38 -08003712 }
Fyodor Kupolovd31cee92017-09-05 16:31:08 -07003713 synchronized (mAppRestrictionsLock) {
Amith Yamasanidf2e92a2013-03-01 17:04:38 -08003714 // Read the restrictions from XML
Fyodor Kupolovd31cee92017-09-05 16:31:08 -07003715 return readApplicationRestrictionsLAr(packageName, userId);
Amith Yamasanidf2e92a2013-03-01 17:04:38 -08003716 }
3717 }
3718
3719 @Override
Amith Yamasani7e99bc02013-04-16 18:24:51 -07003720 public void setApplicationRestrictions(String packageName, Bundle restrictions,
Bookatzf56f2582019-09-04 16:06:41 -07003721 @UserIdInt int userId) {
Esteban Talavera5b9f1672015-12-11 15:22:34 +00003722 checkSystemOrRoot("set application restrictions");
Fyodor Kupolov0d88d542016-04-19 11:37:22 -07003723 if (restrictions != null) {
3724 restrictions.setDefusable(true);
3725 }
Fyodor Kupolovd31cee92017-09-05 16:31:08 -07003726 synchronized (mAppRestrictionsLock) {
Kenny Guyd21b2182014-07-17 16:38:55 +01003727 if (restrictions == null || restrictions.isEmpty()) {
Fyodor Kupolovd31cee92017-09-05 16:31:08 -07003728 cleanAppRestrictionsForPackageLAr(packageName, userId);
Kenny Guyd21b2182014-07-17 16:38:55 +01003729 } else {
3730 // Write the restrictions to XML
Fyodor Kupolovd31cee92017-09-05 16:31:08 -07003731 writeApplicationRestrictionsLAr(packageName, restrictions, userId);
Kenny Guyd21b2182014-07-17 16:38:55 +01003732 }
Amith Yamasanidf2e92a2013-03-01 17:04:38 -08003733 }
Robin Lee66e5d962014-04-09 16:44:21 +01003734
Fyodor Kupolovd2846122016-02-11 18:06:34 -08003735 // Notify package of changes via an intent - only sent to explicitly registered receivers.
3736 Intent changeIntent = new Intent(Intent.ACTION_APPLICATION_RESTRICTIONS_CHANGED);
3737 changeIntent.setPackage(packageName);
3738 changeIntent.addFlags(Intent.FLAG_RECEIVER_REGISTERED_ONLY);
3739 mContext.sendBroadcastAsUser(changeIntent, UserHandle.of(userId));
Amith Yamasanidf2e92a2013-03-01 17:04:38 -08003740 }
3741
3742 private int getUidForPackage(String packageName) {
Amith Yamasani9429afb2013-04-10 18:40:51 -07003743 long ident = Binder.clearCallingIdentity();
Amith Yamasanidf2e92a2013-03-01 17:04:38 -08003744 try {
3745 return mContext.getPackageManager().getApplicationInfo(packageName,
Amith Yamasani0d1fd8d2016-10-12 14:21:51 -07003746 PackageManager.MATCH_ANY_USER).uid;
Amith Yamasanidf2e92a2013-03-01 17:04:38 -08003747 } catch (NameNotFoundException nnfe) {
3748 return -1;
Amith Yamasani9429afb2013-04-10 18:40:51 -07003749 } finally {
3750 Binder.restoreCallingIdentity(ident);
Amith Yamasanidf2e92a2013-03-01 17:04:38 -08003751 }
3752 }
3753
Fyodor Kupolovd31cee92017-09-05 16:31:08 -07003754 @GuardedBy("mAppRestrictionsLock")
Bookatzf56f2582019-09-04 16:06:41 -07003755 private static Bundle readApplicationRestrictionsLAr(String packageName,
3756 @UserIdInt int userId) {
Fyodor Kupolov262f9952015-03-23 18:55:11 -07003757 AtomicFile restrictionsFile =
3758 new AtomicFile(new File(Environment.getUserSystemDirectory(userId),
3759 packageToRestrictionsFileName(packageName)));
Fyodor Kupolovd31cee92017-09-05 16:31:08 -07003760 return readApplicationRestrictionsLAr(restrictionsFile);
Fyodor Kupolov262f9952015-03-23 18:55:11 -07003761 }
3762
3763 @VisibleForTesting
Fyodor Kupolovd31cee92017-09-05 16:31:08 -07003764 @GuardedBy("mAppRestrictionsLock")
3765 static Bundle readApplicationRestrictionsLAr(AtomicFile restrictionsFile) {
Amith Yamasani7e99bc02013-04-16 18:24:51 -07003766 final Bundle restrictions = new Bundle();
Fyodor Kupolov262f9952015-03-23 18:55:11 -07003767 final ArrayList<String> values = new ArrayList<>();
Fyodor Kupolov6f34d362015-04-02 12:42:13 -07003768 if (!restrictionsFile.getBaseFile().exists()) {
Fyodor Kupolovf6ee2242015-04-06 10:15:07 -07003769 return restrictions;
Fyodor Kupolov6f34d362015-04-02 12:42:13 -07003770 }
Amith Yamasanidf2e92a2013-03-01 17:04:38 -08003771
3772 FileInputStream fis = null;
3773 try {
Amith Yamasanidf2e92a2013-03-01 17:04:38 -08003774 fis = restrictionsFile.openRead();
3775 XmlPullParser parser = Xml.newPullParser();
Wojciech Staszkiewicz9e9e2e72015-05-08 14:58:46 +01003776 parser.setInput(fis, StandardCharsets.UTF_8.name());
Fyodor Kupolov262f9952015-03-23 18:55:11 -07003777 XmlUtils.nextElement(parser);
3778 if (parser.getEventType() != XmlPullParser.START_TAG) {
Amith Yamasanidf2e92a2013-03-01 17:04:38 -08003779 Slog.e(LOG_TAG, "Unable to read restrictions file "
3780 + restrictionsFile.getBaseFile());
Amith Yamasani7e99bc02013-04-16 18:24:51 -07003781 return restrictions;
Amith Yamasanidf2e92a2013-03-01 17:04:38 -08003782 }
Fyodor Kupolov262f9952015-03-23 18:55:11 -07003783 while (parser.next() != XmlPullParser.END_DOCUMENT) {
3784 readEntry(restrictions, values, parser);
Amith Yamasanidf2e92a2013-03-01 17:04:38 -08003785 }
Fyodor Kupolov262f9952015-03-23 18:55:11 -07003786 } catch (IOException|XmlPullParserException e) {
3787 Log.w(LOG_TAG, "Error parsing " + restrictionsFile.getBaseFile(), e);
Amith Yamasanidf2e92a2013-03-01 17:04:38 -08003788 } finally {
Fyodor Kupolov262f9952015-03-23 18:55:11 -07003789 IoUtils.closeQuietly(fis);
Amith Yamasanidf2e92a2013-03-01 17:04:38 -08003790 }
Amith Yamasani7e99bc02013-04-16 18:24:51 -07003791 return restrictions;
Amith Yamasanidf2e92a2013-03-01 17:04:38 -08003792 }
3793
Fyodor Kupolov262f9952015-03-23 18:55:11 -07003794 private static void readEntry(Bundle restrictions, ArrayList<String> values,
3795 XmlPullParser parser) throws XmlPullParserException, IOException {
3796 int type = parser.getEventType();
3797 if (type == XmlPullParser.START_TAG && parser.getName().equals(TAG_ENTRY)) {
3798 String key = parser.getAttributeValue(null, ATTR_KEY);
3799 String valType = parser.getAttributeValue(null, ATTR_VALUE_TYPE);
3800 String multiple = parser.getAttributeValue(null, ATTR_MULTIPLE);
3801 if (multiple != null) {
3802 values.clear();
3803 int count = Integer.parseInt(multiple);
3804 while (count > 0 && (type = parser.next()) != XmlPullParser.END_DOCUMENT) {
3805 if (type == XmlPullParser.START_TAG
3806 && parser.getName().equals(TAG_VALUE)) {
3807 values.add(parser.nextText().trim());
3808 count--;
3809 }
3810 }
3811 String [] valueStrings = new String[values.size()];
3812 values.toArray(valueStrings);
3813 restrictions.putStringArray(key, valueStrings);
3814 } else if (ATTR_TYPE_BUNDLE.equals(valType)) {
3815 restrictions.putBundle(key, readBundleEntry(parser, values));
3816 } else if (ATTR_TYPE_BUNDLE_ARRAY.equals(valType)) {
3817 final int outerDepth = parser.getDepth();
3818 ArrayList<Bundle> bundleList = new ArrayList<>();
3819 while (XmlUtils.nextElementWithin(parser, outerDepth)) {
3820 Bundle childBundle = readBundleEntry(parser, values);
3821 bundleList.add(childBundle);
3822 }
3823 restrictions.putParcelableArray(key,
3824 bundleList.toArray(new Bundle[bundleList.size()]));
3825 } else {
3826 String value = parser.nextText().trim();
3827 if (ATTR_TYPE_BOOLEAN.equals(valType)) {
3828 restrictions.putBoolean(key, Boolean.parseBoolean(value));
3829 } else if (ATTR_TYPE_INTEGER.equals(valType)) {
3830 restrictions.putInt(key, Integer.parseInt(value));
3831 } else {
3832 restrictions.putString(key, value);
3833 }
3834 }
3835 }
3836 }
3837
3838 private static Bundle readBundleEntry(XmlPullParser parser, ArrayList<String> values)
3839 throws IOException, XmlPullParserException {
3840 Bundle childBundle = new Bundle();
3841 final int outerDepth = parser.getDepth();
3842 while (XmlUtils.nextElementWithin(parser, outerDepth)) {
3843 readEntry(childBundle, values, parser);
3844 }
3845 return childBundle;
3846 }
3847
Fyodor Kupolovd31cee92017-09-05 16:31:08 -07003848 @GuardedBy("mAppRestrictionsLock")
3849 private static void writeApplicationRestrictionsLAr(String packageName,
Bookatzf56f2582019-09-04 16:06:41 -07003850 Bundle restrictions, @UserIdInt int userId) {
Amith Yamasanidf2e92a2013-03-01 17:04:38 -08003851 AtomicFile restrictionsFile = new AtomicFile(
3852 new File(Environment.getUserSystemDirectory(userId),
Amith Yamasanifc95e702013-09-26 13:20:17 -07003853 packageToRestrictionsFileName(packageName)));
Fyodor Kupolovd31cee92017-09-05 16:31:08 -07003854 writeApplicationRestrictionsLAr(restrictions, restrictionsFile);
Fyodor Kupolov262f9952015-03-23 18:55:11 -07003855 }
3856
3857 @VisibleForTesting
Fyodor Kupolovd31cee92017-09-05 16:31:08 -07003858 @GuardedBy("mAppRestrictionsLock")
3859 static void writeApplicationRestrictionsLAr(Bundle restrictions, AtomicFile restrictionsFile) {
Fyodor Kupolov262f9952015-03-23 18:55:11 -07003860 FileOutputStream fos = null;
Amith Yamasanidf2e92a2013-03-01 17:04:38 -08003861 try {
3862 fos = restrictionsFile.startWrite();
3863 final BufferedOutputStream bos = new BufferedOutputStream(fos);
3864
Amith Yamasanidf2e92a2013-03-01 17:04:38 -08003865 final XmlSerializer serializer = new FastXmlSerializer();
Wojciech Staszkiewicz9e9e2e72015-05-08 14:58:46 +01003866 serializer.setOutput(bos, StandardCharsets.UTF_8.name());
Amith Yamasanidf2e92a2013-03-01 17:04:38 -08003867 serializer.startDocument(null, true);
3868 serializer.setFeature("http://xmlpull.org/v1/doc/features.html#indent-output", true);
3869
3870 serializer.startTag(null, TAG_RESTRICTIONS);
Fyodor Kupolov262f9952015-03-23 18:55:11 -07003871 writeBundle(restrictions, serializer);
Amith Yamasanidf2e92a2013-03-01 17:04:38 -08003872 serializer.endTag(null, TAG_RESTRICTIONS);
3873
3874 serializer.endDocument();
3875 restrictionsFile.finishWrite(fos);
3876 } catch (Exception e) {
3877 restrictionsFile.failWrite(fos);
Fyodor Kupolov262f9952015-03-23 18:55:11 -07003878 Slog.e(LOG_TAG, "Error writing application restrictions list", e);
3879 }
3880 }
3881
3882 private static void writeBundle(Bundle restrictions, XmlSerializer serializer)
3883 throws IOException {
3884 for (String key : restrictions.keySet()) {
3885 Object value = restrictions.get(key);
3886 serializer.startTag(null, TAG_ENTRY);
3887 serializer.attribute(null, ATTR_KEY, key);
3888
3889 if (value instanceof Boolean) {
3890 serializer.attribute(null, ATTR_VALUE_TYPE, ATTR_TYPE_BOOLEAN);
3891 serializer.text(value.toString());
3892 } else if (value instanceof Integer) {
3893 serializer.attribute(null, ATTR_VALUE_TYPE, ATTR_TYPE_INTEGER);
3894 serializer.text(value.toString());
3895 } else if (value == null || value instanceof String) {
3896 serializer.attribute(null, ATTR_VALUE_TYPE, ATTR_TYPE_STRING);
3897 serializer.text(value != null ? (String) value : "");
3898 } else if (value instanceof Bundle) {
3899 serializer.attribute(null, ATTR_VALUE_TYPE, ATTR_TYPE_BUNDLE);
3900 writeBundle((Bundle) value, serializer);
3901 } else if (value instanceof Parcelable[]) {
3902 serializer.attribute(null, ATTR_VALUE_TYPE, ATTR_TYPE_BUNDLE_ARRAY);
3903 Parcelable[] array = (Parcelable[]) value;
3904 for (Parcelable parcelable : array) {
3905 if (!(parcelable instanceof Bundle)) {
3906 throw new IllegalArgumentException("bundle-array can only hold Bundles");
3907 }
3908 serializer.startTag(null, TAG_ENTRY);
3909 serializer.attribute(null, ATTR_VALUE_TYPE, ATTR_TYPE_BUNDLE);
3910 writeBundle((Bundle) parcelable, serializer);
3911 serializer.endTag(null, TAG_ENTRY);
3912 }
3913 } else {
3914 serializer.attribute(null, ATTR_VALUE_TYPE, ATTR_TYPE_STRING_ARRAY);
3915 String[] values = (String[]) value;
3916 serializer.attribute(null, ATTR_MULTIPLE, Integer.toString(values.length));
3917 for (String choice : values) {
3918 serializer.startTag(null, TAG_VALUE);
3919 serializer.text(choice != null ? choice : "");
3920 serializer.endTag(null, TAG_VALUE);
3921 }
3922 }
3923 serializer.endTag(null, TAG_ENTRY);
Amith Yamasanidf2e92a2013-03-01 17:04:38 -08003924 }
3925 }
3926
3927 @Override
Bookatzf56f2582019-09-04 16:06:41 -07003928 public int getUserSerialNumber(@UserIdInt int userId) {
Fyodor Kupolov82402752015-10-28 14:54:51 -07003929 synchronized (mUsersLock) {
Bookatzf56f2582019-09-04 16:06:41 -07003930 final UserInfo userInfo = getUserInfoLU(userId);
Pavel Grafov9c295d42019-03-26 19:42:08 +00003931 return userInfo != null ? userInfo.serialNumber : -1;
Amith Yamasani2a003292012-08-14 18:25:45 -07003932 }
3933 }
3934
3935 @Override
Bookatzf56f2582019-09-04 16:06:41 -07003936 public boolean isUserNameSet(@UserIdInt int userId) {
Fyodor Kupolov605b12a2017-05-10 15:58:09 -07003937 synchronized (mUsersLock) {
Bookatzf56f2582019-09-04 16:06:41 -07003938 final UserInfo userInfo = getUserInfoLU(userId);
Fyodor Kupolov605b12a2017-05-10 15:58:09 -07003939 return userInfo != null && userInfo.name != null;
3940 }
3941 }
3942
3943 @Override
Amith Yamasani2a003292012-08-14 18:25:45 -07003944 public int getUserHandle(int userSerialNumber) {
Fyodor Kupolov82402752015-10-28 14:54:51 -07003945 synchronized (mUsersLock) {
Amith Yamasani2a003292012-08-14 18:25:45 -07003946 for (int userId : mUserIds) {
Fyodor Kupolov82402752015-10-28 14:54:51 -07003947 UserInfo info = getUserInfoLU(userId);
Kenny Guy945f8832015-02-10 15:17:26 +00003948 if (info != null && info.serialNumber == userSerialNumber) return userId;
Amith Yamasani2a003292012-08-14 18:25:45 -07003949 }
3950 // Not found
3951 return -1;
Amith Yamasani13593602012-03-22 16:16:17 -07003952 }
3953 }
3954
Fyodor Kupolovff7233e2015-04-08 11:28:52 -07003955 @Override
Bookatzf56f2582019-09-04 16:06:41 -07003956 public long getUserCreationTime(@UserIdInt int userId) {
Fyodor Kupolovff7233e2015-04-08 11:28:52 -07003957 int callingUserId = UserHandle.getCallingUserId();
3958 UserInfo userInfo = null;
Fyodor Kupolov82402752015-10-28 14:54:51 -07003959 synchronized (mUsersLock) {
Bookatzf56f2582019-09-04 16:06:41 -07003960 if (callingUserId == userId) {
3961 userInfo = getUserInfoLU(userId);
Fyodor Kupolovff7233e2015-04-08 11:28:52 -07003962 } else {
Bookatzf56f2582019-09-04 16:06:41 -07003963 UserInfo parent = getProfileParentLU(userId);
Fyodor Kupolovff7233e2015-04-08 11:28:52 -07003964 if (parent != null && parent.id == callingUserId) {
Bookatzf56f2582019-09-04 16:06:41 -07003965 userInfo = getUserInfoLU(userId);
Fyodor Kupolovff7233e2015-04-08 11:28:52 -07003966 }
3967 }
3968 }
3969 if (userInfo == null) {
Bookatzf56f2582019-09-04 16:06:41 -07003970 throw new SecurityException("userId can only be the calling user or a managed "
Fyodor Kupolovff7233e2015-04-08 11:28:52 -07003971 + "profile associated with this user");
3972 }
3973 return userInfo.creationTime;
3974 }
3975
Amith Yamasani0b285492011-04-14 17:35:23 -07003976 /**
3977 * Caches the list of user ids in an array, adjusting the array size when necessary.
3978 */
Fyodor Kupolov82402752015-10-28 14:54:51 -07003979 private void updateUserIds() {
Dianne Hackbornd4ac8d72012-09-27 23:20:10 -07003980 int num = 0;
Fyodor Kupolov82402752015-10-28 14:54:51 -07003981 synchronized (mUsersLock) {
3982 final int userSize = mUsers.size();
3983 for (int i = 0; i < userSize; i++) {
Amith Yamasani12747872015-12-07 14:19:49 -08003984 if (!mUsers.valueAt(i).info.partial) {
Fyodor Kupolov82402752015-10-28 14:54:51 -07003985 num++;
3986 }
Dianne Hackbornd4ac8d72012-09-27 23:20:10 -07003987 }
Fyodor Kupolov82402752015-10-28 14:54:51 -07003988 final int[] newUsers = new int[num];
3989 int n = 0;
3990 for (int i = 0; i < userSize; i++) {
Amith Yamasani12747872015-12-07 14:19:49 -08003991 if (!mUsers.valueAt(i).info.partial) {
Fyodor Kupolov82402752015-10-28 14:54:51 -07003992 newUsers[n++] = mUsers.keyAt(i);
3993 }
Dianne Hackbornd4ac8d72012-09-27 23:20:10 -07003994 }
Fyodor Kupolov82402752015-10-28 14:54:51 -07003995 mUserIds = newUsers;
Amith Yamasani0b285492011-04-14 17:35:23 -07003996 }
3997 }
3998
3999 /**
Jeff Sharkey0e62384c2016-01-13 18:52:55 -07004000 * Called right before a user is started. This gives us a chance to prepare
4001 * app storage and apply any user restrictions.
Makoto Onuki1a2cd742015-11-16 13:51:27 -08004002 */
Bookatzf56f2582019-09-04 16:06:41 -07004003 public void onBeforeStartUser(@UserIdInt int userId) {
Fyodor Kupolovd80c3622016-07-19 17:22:09 -07004004 UserInfo userInfo = getUserInfo(userId);
4005 if (userInfo == null) {
4006 return;
4007 }
Felipe Leme3aad1be2019-05-31 11:43:12 -07004008 TimingsTraceAndSlog t = new TimingsTraceAndSlog();
4009 t.traceBegin("onBeforeStartUser-" + userId);
Fyodor Kupolovd80c3622016-07-19 17:22:09 -07004010 final int userSerial = userInfo.serialNumber;
4011 // Migrate only if build fingerprints mismatch
4012 boolean migrateAppsData = !Build.FINGERPRINT.equals(userInfo.lastLoggedInFingerprint);
Felipe Leme3aad1be2019-05-31 11:43:12 -07004013 t.traceBegin("prepareUserData");
Fyodor Kupolov5c0ecfd2017-01-27 11:11:57 -08004014 mUserDataPreparer.prepareUserData(userId, userSerial, StorageManager.FLAG_STORAGE_DE);
Felipe Leme3aad1be2019-05-31 11:43:12 -07004015 t.traceEnd();
4016 t.traceBegin("reconcileAppsData");
Fyodor Kupolovd80c3622016-07-19 17:22:09 -07004017 mPm.reconcileAppsData(userId, StorageManager.FLAG_STORAGE_DE, migrateAppsData);
Felipe Leme3aad1be2019-05-31 11:43:12 -07004018 t.traceEnd();
Jeff Sharkey0e62384c2016-01-13 18:52:55 -07004019
4020 if (userId != UserHandle.USER_SYSTEM) {
Felipe Leme3aad1be2019-05-31 11:43:12 -07004021 t.traceBegin("applyUserRestrictions");
Jeff Sharkey0e62384c2016-01-13 18:52:55 -07004022 synchronized (mRestrictionsLock) {
4023 applyUserRestrictionsLR(userId);
4024 }
Felipe Leme3aad1be2019-05-31 11:43:12 -07004025 t.traceEnd();
Makoto Onuki1a2cd742015-11-16 13:51:27 -08004026 }
Felipe Leme3aad1be2019-05-31 11:43:12 -07004027 t.traceEnd(); // onBeforeStartUser
Makoto Onuki1a2cd742015-11-16 13:51:27 -08004028 }
4029
4030 /**
Jeff Sharkey0e62384c2016-01-13 18:52:55 -07004031 * Called right before a user is unlocked. This gives us a chance to prepare
4032 * app storage.
4033 */
Jeff Sharkeybd91e2f2016-03-22 15:32:31 -06004034 public void onBeforeUnlockUser(@UserIdInt int userId) {
Fyodor Kupolovd80c3622016-07-19 17:22:09 -07004035 UserInfo userInfo = getUserInfo(userId);
4036 if (userInfo == null) {
4037 return;
4038 }
4039 final int userSerial = userInfo.serialNumber;
4040 // Migrate only if build fingerprints mismatch
4041 boolean migrateAppsData = !Build.FINGERPRINT.equals(userInfo.lastLoggedInFingerprint);
Fyodor Kupolov5c0ecfd2017-01-27 11:11:57 -08004042 mUserDataPreparer.prepareUserData(userId, userSerial, StorageManager.FLAG_STORAGE_CE);
Fyodor Kupolovd80c3622016-07-19 17:22:09 -07004043 mPm.reconcileAppsData(userId, StorageManager.FLAG_STORAGE_CE, migrateAppsData);
Jeff Sharkey0e62384c2016-01-13 18:52:55 -07004044 }
4045
4046 /**
Fyodor Kupolov50979d12017-01-27 17:36:32 -08004047 * Examine all users present on given mounted volume, and destroy data
4048 * belonging to users that are no longer valid, or whose user ID has been
4049 * recycled.
4050 */
4051 void reconcileUsers(String volumeUuid) {
4052 mUserDataPreparer.reconcileUsers(volumeUuid, getUsers(true /* excludeDying */));
4053 }
4054
4055 /**
Amith Yamasani1a7472e2013-07-02 11:17:30 -07004056 * Make a note of the last started time of a user and do some cleanup.
Amith Yamasanieb437d42016-04-29 09:31:25 -07004057 * This is called with ActivityManagerService lock held.
Amith Yamasani920ace02012-09-20 22:15:37 -07004058 * @param userId the user that was just foregrounded
4059 */
Jeff Sharkeybd91e2f2016-03-22 15:32:31 -06004060 public void onUserLoggedIn(@UserIdInt int userId) {
Amith Yamasani12747872015-12-07 14:19:49 -08004061 UserData userData = getUserDataNoChecks(userId);
4062 if (userData == null || userData.info.partial) {
Fyodor Kupolove80085d2015-11-06 18:21:39 -08004063 Slog.w(LOG_TAG, "userForeground: unknown user #" + userId);
4064 return;
4065 }
Jeff Sharkeybd91e2f2016-03-22 15:32:31 -06004066
4067 final long now = System.currentTimeMillis();
Fyodor Kupolove80085d2015-11-06 18:21:39 -08004068 if (now > EPOCH_PLUS_30_YEARS) {
Amith Yamasani12747872015-12-07 14:19:49 -08004069 userData.info.lastLoggedInTime = now;
Amith Yamasani920ace02012-09-20 22:15:37 -07004070 }
Jeff Sharkeybd91e2f2016-03-22 15:32:31 -06004071 userData.info.lastLoggedInFingerprint = Build.FINGERPRINT;
4072 scheduleWriteUser(userData);
Amith Yamasani920ace02012-09-20 22:15:37 -07004073 }
4074
4075 /**
Amith Yamasani0b285492011-04-14 17:35:23 -07004076 * Returns the next available user id, filling in any holes in the ids.
Amith Yamasani0b285492011-04-14 17:35:23 -07004077 */
Fyodor Kupolov0f4533d2016-05-18 18:43:12 -07004078 @VisibleForTesting
4079 int getNextAvailableId() {
4080 int nextId;
Fyodor Kupolov82402752015-10-28 14:54:51 -07004081 synchronized (mUsersLock) {
Fyodor Kupolov0f4533d2016-05-18 18:43:12 -07004082 nextId = scanNextAvailableIdLocked();
4083 if (nextId >= 0) {
4084 return nextId;
4085 }
4086 // All ids up to MAX_USER_ID were used. Remove all mRemovingUserIds,
4087 // except most recently removed
4088 if (mRemovingUserIds.size() > 0) {
4089 Slog.i(LOG_TAG, "All available IDs are used. Recycling LRU ids.");
4090 mRemovingUserIds.clear();
4091 for (Integer recentlyRemovedId : mRecentlyRemovedIds) {
4092 mRemovingUserIds.put(recentlyRemovedId, true);
Amith Yamasani195263742012-08-21 15:40:12 -07004093 }
Fyodor Kupolov0f4533d2016-05-18 18:43:12 -07004094 nextId = scanNextAvailableIdLocked();
Amith Yamasani4b2e9342011-03-31 12:38:53 -07004095 }
Amith Yamasani4b2e9342011-03-31 12:38:53 -07004096 }
Fyodor Kupolov0f4533d2016-05-18 18:43:12 -07004097 if (nextId < 0) {
4098 throw new IllegalStateException("No user id available!");
4099 }
4100 return nextId;
4101 }
4102
Andreas Gampea36dc622018-02-05 17:19:22 -08004103 @GuardedBy("mUsersLock")
Fyodor Kupolov0f4533d2016-05-18 18:43:12 -07004104 private int scanNextAvailableIdLocked() {
4105 for (int i = MIN_USER_ID; i < MAX_USER_ID; i++) {
4106 if (mUsers.indexOfKey(i) < 0 && !mRemovingUserIds.get(i)) {
4107 return i;
4108 }
4109 }
4110 return -1;
Amith Yamasani4b2e9342011-03-31 12:38:53 -07004111 }
Amith Yamasani920ace02012-09-20 22:15:37 -07004112
Fyodor Kupolovd31cee92017-09-05 16:31:08 -07004113 private static String packageToRestrictionsFileName(String packageName) {
Amith Yamasanifc95e702013-09-26 13:20:17 -07004114 return RESTRICTIONS_FILE_PREFIX + packageName + XML_SUFFIX;
4115 }
4116
Amith Yamasani920ace02012-09-20 22:15:37 -07004117 @Override
Bookatzf56f2582019-09-04 16:06:41 -07004118 public void setSeedAccountData(@UserIdInt int userId, String accountName, String accountType,
Amith Yamasani12747872015-12-07 14:19:49 -08004119 PersistableBundle accountOptions, boolean persist) {
4120 checkManageUsersPermission("Require MANAGE_USERS permission to set user seed data");
4121 synchronized (mPackagesLock) {
4122 final UserData userData;
4123 synchronized (mUsersLock) {
4124 userData = getUserDataLU(userId);
4125 if (userData == null) {
4126 Slog.e(LOG_TAG, "No such user for settings seed data u=" + userId);
4127 return;
4128 }
4129 userData.seedAccountName = accountName;
4130 userData.seedAccountType = accountType;
4131 userData.seedAccountOptions = accountOptions;
4132 userData.persistSeedData = persist;
4133 }
4134 if (persist) {
4135 writeUserLP(userData);
4136 }
4137 }
4138 }
4139
4140 @Override
4141 public String getSeedAccountName() throws RemoteException {
4142 checkManageUsersPermission("Cannot get seed account information");
4143 synchronized (mUsersLock) {
4144 UserData userData = getUserDataLU(UserHandle.getCallingUserId());
4145 return userData.seedAccountName;
4146 }
4147 }
4148
4149 @Override
4150 public String getSeedAccountType() throws RemoteException {
4151 checkManageUsersPermission("Cannot get seed account information");
4152 synchronized (mUsersLock) {
4153 UserData userData = getUserDataLU(UserHandle.getCallingUserId());
4154 return userData.seedAccountType;
4155 }
4156 }
4157
4158 @Override
4159 public PersistableBundle getSeedAccountOptions() throws RemoteException {
4160 checkManageUsersPermission("Cannot get seed account information");
4161 synchronized (mUsersLock) {
4162 UserData userData = getUserDataLU(UserHandle.getCallingUserId());
4163 return userData.seedAccountOptions;
4164 }
4165 }
4166
4167 @Override
4168 public void clearSeedAccountData() throws RemoteException {
4169 checkManageUsersPermission("Cannot clear seed account information");
4170 synchronized (mPackagesLock) {
4171 UserData userData;
4172 synchronized (mUsersLock) {
4173 userData = getUserDataLU(UserHandle.getCallingUserId());
4174 if (userData == null) return;
4175 userData.clearSeedAccountData();
4176 }
4177 writeUserLP(userData);
4178 }
4179 }
4180
4181 @Override
4182 public boolean someUserHasSeedAccount(String accountName, String accountType)
4183 throws RemoteException {
4184 checkManageUsersPermission("Cannot check seed account information");
4185 synchronized (mUsersLock) {
4186 final int userSize = mUsers.size();
4187 for (int i = 0; i < userSize; i++) {
4188 final UserData data = mUsers.valueAt(i);
4189 if (data.info.isInitialized()) continue;
4190 if (data.seedAccountName == null || !data.seedAccountName.equals(accountName)) {
4191 continue;
4192 }
4193 if (data.seedAccountType == null || !data.seedAccountType.equals(accountType)) {
4194 continue;
4195 }
4196 return true;
4197 }
4198 }
4199 return false;
4200 }
4201
4202 @Override
Todd Kennedy60459ab2015-10-30 11:32:16 -07004203 public void onShellCommand(FileDescriptor in, FileDescriptor out,
Dianne Hackborn354736e2016-08-22 17:00:05 -07004204 FileDescriptor err, String[] args, ShellCallback callback,
4205 ResultReceiver resultReceiver) {
4206 (new Shell()).exec(this, in, out, err, args, callback, resultReceiver);
Todd Kennedy60459ab2015-10-30 11:32:16 -07004207 }
4208
4209 int onShellCommand(Shell shell, String cmd) {
4210 if (cmd == null) {
4211 return shell.handleDefaultCommands(cmd);
4212 }
4213
4214 final PrintWriter pw = shell.getOutPrintWriter();
4215 try {
4216 switch(cmd) {
4217 case "list":
Felipe Lemec1ca4412019-09-11 09:23:26 -07004218 return runList(pw, shell);
Hui Yu8ba65972018-04-16 18:45:48 -07004219 default:
4220 return shell.handleDefaultCommands(cmd);
Todd Kennedy60459ab2015-10-30 11:32:16 -07004221 }
4222 } catch (RemoteException e) {
4223 pw.println("Remote exception: " + e);
4224 }
4225 return -1;
4226 }
4227
Felipe Lemec1ca4412019-09-11 09:23:26 -07004228 private int runList(PrintWriter pw, Shell shell) throws RemoteException {
4229 boolean all = false;
4230 boolean verbose = false;
4231 String opt;
4232 while ((opt = shell.getNextOption()) != null) {
4233 switch (opt) {
4234 case "-v":
4235 verbose = true;
4236 break;
4237 case "--all":
4238 all = true;
4239 break;
4240 default:
4241 pw.println("Invalid option: " + opt);
4242 return -1;
4243 }
4244 }
Sudheer Shankadc589ac2016-11-10 15:30:17 -08004245 final IActivityManager am = ActivityManager.getService();
Felipe Lemec1ca4412019-09-11 09:23:26 -07004246 final List<UserInfo> users = getUsers(/* excludePartial= */ !all,
4247 /* excludingDying=*/ false, /* excludePreCreated= */ !all);
Todd Kennedy60459ab2015-10-30 11:32:16 -07004248 if (users == null) {
4249 pw.println("Error: couldn't get users");
4250 return 1;
4251 } else {
Felipe Lemec1ca4412019-09-11 09:23:26 -07004252 final int size = users.size();
4253 int currentUser = UserHandle.USER_NULL;
4254 if (verbose) {
4255 pw.printf("%d users:\n\n", size);
4256 currentUser = am.getCurrentUser().id;
4257 } else {
4258 // NOTE: the standard "list users" command is used by integration tests and
4259 // hence should not be changed. If you need to add more info, use the
4260 // verbose option.
4261 pw.println("Users:");
4262 }
4263 for (int i = 0; i < size; i++) {
4264 final UserInfo user = users.get(i);
4265 final boolean running = am.isUserRunning(user.id, 0);
4266 final boolean current = user.id == currentUser;
4267 if (verbose) {
4268 pw.printf("%d: id=%d, name=%s, flags=%s%s%s%s%s\n", i, user.id, user.name,
4269 UserInfo.flagsToString(user.flags),
4270 running ? " (running)" : "",
4271 user.partial ? " (partial)" : "",
4272 user.preCreated ? " (pre-created)" : "",
4273 current ? " (current)" : "");
4274 } else {
4275 // NOTE: the standard "list users" command is used by integration tests and
4276 // hence should not be changed. If you need to add more info, use the
4277 // verbose option.
4278 pw.printf("\t%s%s\n", user, running ? " running" : "");
4279 }
Todd Kennedy60459ab2015-10-30 11:32:16 -07004280 }
4281 return 0;
4282 }
4283 }
4284
4285 @Override
Amith Yamasani920ace02012-09-20 22:15:37 -07004286 protected void dump(FileDescriptor fd, PrintWriter pw, String[] args) {
Jeff Sharkeyfe9a53b2017-03-31 14:08:23 -06004287 if (!DumpUtils.checkDumpPermission(mContext, LOG_TAG, pw)) return;
Amith Yamasani920ace02012-09-20 22:15:37 -07004288
4289 long now = System.currentTimeMillis();
Makoto Onuki73dded22017-12-20 13:14:48 +09004290 final long nowRealtime = SystemClock.elapsedRealtime();
Felipe Lemed7b88382019-06-12 17:40:53 -07004291
Felipe Leme5b8dc762019-10-04 16:23:16 -07004292 final ActivityManagerInternal amInternal = LocalServices
4293 .getService(ActivityManagerInternal.class);
4294 pw.print("Current user: ");
4295 if (amInternal != null) {
4296 pw.println(amInternal.getCurrentUserId());
4297 } else {
4298 pw.println("N/A");
4299 }
Felipe Lemed7b88382019-06-12 17:40:53 -07004300
Amith Yamasani920ace02012-09-20 22:15:37 -07004301 StringBuilder sb = new StringBuilder();
4302 synchronized (mPackagesLock) {
Fyodor Kupolov82402752015-10-28 14:54:51 -07004303 synchronized (mUsersLock) {
4304 pw.println("Users:");
4305 for (int i = 0; i < mUsers.size(); i++) {
Amith Yamasani12747872015-12-07 14:19:49 -08004306 UserData userData = mUsers.valueAt(i);
4307 if (userData == null) {
Fyodor Kupolov82402752015-10-28 14:54:51 -07004308 continue;
4309 }
Amith Yamasani12747872015-12-07 14:19:49 -08004310 UserInfo userInfo = userData.info;
4311 final int userId = userInfo.id;
4312 pw.print(" "); pw.print(userInfo);
4313 pw.print(" serialNo="); pw.print(userInfo.serialNumber);
Felipe Lemed7b88382019-06-12 17:40:53 -07004314 pw.print(" isPrimary="); pw.print(userInfo.isPrimary());
Makoto Onukie7927da2015-11-25 10:05:17 -08004315 if (mRemovingUserIds.get(userId)) {
Fyodor Kupolov82402752015-10-28 14:54:51 -07004316 pw.print(" <removing> ");
4317 }
Amith Yamasani12747872015-12-07 14:19:49 -08004318 if (userInfo.partial) {
Fyodor Kupolov82402752015-10-28 14:54:51 -07004319 pw.print(" <partial>");
4320 }
Felipe Lemec1ca4412019-09-11 09:23:26 -07004321 if (userInfo.preCreated) {
4322 pw.print(" <pre-created>");
4323 }
Fyodor Kupolov82402752015-10-28 14:54:51 -07004324 pw.println();
Bookatz029832a2019-10-04 16:50:22 -07004325 pw.print(" Type: "); pw.println(userInfo.userType);
Felipe Lemee5434c32019-08-13 09:28:33 -07004326 pw.print(" Flags: "); pw.print(userInfo.flags); pw.print(" (");
4327 pw.print(UserInfo.flagsToString(userInfo.flags)); pw.println(")");
Makoto Onuki88aef752017-03-29 16:52:03 -07004328 pw.print(" State: ");
4329 final int state;
4330 synchronized (mUserStates) {
4331 state = mUserStates.get(userId, -1);
4332 }
4333 pw.println(UserState.stateToString(state));
Fyodor Kupolov82402752015-10-28 14:54:51 -07004334 pw.print(" Created: ");
Makoto Onuki73dded22017-12-20 13:14:48 +09004335 dumpTimeAgo(pw, sb, now, userInfo.creationTime);
4336
Fyodor Kupolov82402752015-10-28 14:54:51 -07004337 pw.print(" Last logged in: ");
Makoto Onuki73dded22017-12-20 13:14:48 +09004338 dumpTimeAgo(pw, sb, now, userInfo.lastLoggedInTime);
4339
Jeff Sharkeybd91e2f2016-03-22 15:32:31 -06004340 pw.print(" Last logged in fingerprint: ");
4341 pw.println(userInfo.lastLoggedInFingerprint);
Makoto Onuki73dded22017-12-20 13:14:48 +09004342
4343 pw.print(" Start time: ");
4344 dumpTimeAgo(pw, sb, nowRealtime, userData.startRealtime);
4345
4346 pw.print(" Unlock time: ");
4347 dumpTimeAgo(pw, sb, nowRealtime, userData.unlockRealtime);
4348
Makoto Onukie7927da2015-11-25 10:05:17 -08004349 pw.print(" Has profile owner: ");
4350 pw.println(mIsUserManaged.get(userId));
Fyodor Kupolov82402752015-10-28 14:54:51 -07004351 pw.println(" Restrictions:");
4352 synchronized (mRestrictionsLock) {
4353 UserRestrictionsUtils.dumpRestrictions(
Amith Yamasani12747872015-12-07 14:19:49 -08004354 pw, " ", mBaseUserRestrictions.get(userInfo.id));
Pavel Grafov6a40f092016-10-25 15:46:51 +01004355 pw.println(" Device policy global restrictions:");
4356 UserRestrictionsUtils.dumpRestrictions(
4357 pw, " ", mDevicePolicyGlobalUserRestrictions.get(userInfo.id));
Makoto Onuki1a2cd742015-11-16 13:51:27 -08004358 pw.println(" Device policy local restrictions:");
4359 UserRestrictionsUtils.dumpRestrictions(
Amith Yamasani12747872015-12-07 14:19:49 -08004360 pw, " ", mDevicePolicyLocalUserRestrictions.get(userInfo.id));
Fyodor Kupolov82402752015-10-28 14:54:51 -07004361 pw.println(" Effective restrictions:");
4362 UserRestrictionsUtils.dumpRestrictions(
Amith Yamasani12747872015-12-07 14:19:49 -08004363 pw, " ", mCachedEffectiveUserRestrictions.get(userInfo.id));
Fyodor Kupolov82402752015-10-28 14:54:51 -07004364 }
Amith Yamasani12747872015-12-07 14:19:49 -08004365
4366 if (userData.account != null) {
4367 pw.print(" Account name: " + userData.account);
Xiaohui Chenb3b92582015-12-07 11:22:13 -08004368 pw.println();
4369 }
Amith Yamasani12747872015-12-07 14:19:49 -08004370
4371 if (userData.seedAccountName != null) {
4372 pw.print(" Seed account name: " + userData.seedAccountName);
4373 pw.println();
4374 if (userData.seedAccountType != null) {
4375 pw.print(" account type: " + userData.seedAccountType);
4376 pw.println();
4377 }
4378 if (userData.seedAccountOptions != null) {
4379 pw.print(" account options exist");
4380 pw.println();
4381 }
4382 }
Amith Yamasani920ace02012-09-20 22:15:37 -07004383 }
Amith Yamasani920ace02012-09-20 22:15:37 -07004384 }
Amith Yamasani12747872015-12-07 14:19:49 -08004385 pw.println();
Pavel Grafov6a40f092016-10-25 15:46:51 +01004386 pw.println(" Device owner id:" + mDeviceOwnerUserId);
Zoltan Szatmary-Bane7834602016-04-08 18:41:11 +01004387 pw.println();
Makoto Onuki1a2cd742015-11-16 13:51:27 -08004388 pw.println(" Guest restrictions:");
Fyodor Kupolove80085d2015-11-06 18:21:39 -08004389 synchronized (mGuestRestrictions) {
Makoto Onuki1a2cd742015-11-16 13:51:27 -08004390 UserRestrictionsUtils.dumpRestrictions(pw, " ", mGuestRestrictions);
Fyodor Kupolove80085d2015-11-06 18:21:39 -08004391 }
Makoto Onukie7927da2015-11-25 10:05:17 -08004392 synchronized (mUsersLock) {
4393 pw.println();
4394 pw.println(" Device managed: " + mIsDeviceManaged);
Fyodor Kupolov0f4533d2016-05-18 18:43:12 -07004395 if (mRemovingUserIds.size() > 0) {
4396 pw.println();
4397 pw.println(" Recently removed userIds: " + mRecentlyRemovedIds);
4398 }
Makoto Onukie7927da2015-11-25 10:05:17 -08004399 }
Amith Yamasaniea1b9d72016-05-27 15:57:38 +00004400 synchronized (mUserStates) {
4401 pw.println(" Started users state: " + mUserStates);
4402 }
Felipe Lemed7b88382019-06-12 17:40:53 -07004403 } // synchronized (mPackagesLock)
4404
4405 // Dump some capabilities
4406 pw.println();
Felipe Lemec1ca4412019-09-11 09:23:26 -07004407 pw.print(" Max users: " + UserManager.getMaxSupportedUsers());
4408 pw.println(" (limit reached: " + isUserLimitReached() + ")");
Felipe Lemed7b88382019-06-12 17:40:53 -07004409 pw.println(" Supports switchable users: " + UserManager.supportsMultipleUsers());
Bookatz029832a2019-10-04 16:50:22 -07004410 pw.println(" All guests ephemeral: " + Resources.getSystem().getBoolean(
4411 com.android.internal.R.bool.config_guestUserEphemeral));
Felipe Lemed7b88382019-06-12 17:40:53 -07004412 pw.println(" Is split-system user: " + UserManager.isSplitSystemUser());
Felipe Lemee5434c32019-08-13 09:28:33 -07004413 pw.println(" Is headless-system mode: " + UserManager.isHeadlessSystemUserMode());
4414 pw.println(" User version: " + mUserVersion);
Bookatz04d7ae52019-08-05 14:07:12 -07004415
Bookatz029832a2019-10-04 16:50:22 -07004416 // Dump UserTypes
4417 pw.println();
4418 pw.println(" User types (" + mUserTypes.size() + " types):");
4419 for (int i = 0; i < mUserTypes.size(); i++) {
4420 pw.println(" " + mUserTypes.keyAt(i) + ": ");
4421 mUserTypes.valueAt(i).dump(pw);
4422 }
4423
Bookatz04d7ae52019-08-05 14:07:12 -07004424 // Dump package whitelist
4425 pw.println();
4426 mSystemPackageInstaller.dump(pw);
Amith Yamasani920ace02012-09-20 22:15:37 -07004427 }
Fyodor Kupolov75d0ea82014-12-15 16:21:07 -08004428
Makoto Onuki73dded22017-12-20 13:14:48 +09004429 private static void dumpTimeAgo(PrintWriter pw, StringBuilder sb, long nowTime, long time) {
4430 if (time == 0) {
4431 pw.println("<unknown>");
4432 } else {
4433 sb.setLength(0);
4434 TimeUtils.formatDuration(nowTime - time, sb);
4435 sb.append(" ago");
4436 pw.println(sb);
4437 }
4438 }
4439
Fyodor Kupolov75d0ea82014-12-15 16:21:07 -08004440 final class MainHandler extends Handler {
4441
4442 @Override
4443 public void handleMessage(Message msg) {
4444 switch (msg.what) {
4445 case WRITE_USER_MSG:
4446 removeMessages(WRITE_USER_MSG, msg.obj);
4447 synchronized (mPackagesLock) {
Amith Yamasani12747872015-12-07 14:19:49 -08004448 int userId = ((UserData) msg.obj).info.id;
4449 UserData userData = getUserDataNoChecks(userId);
4450 if (userData != null) {
4451 writeUserLP(userData);
Fyodor Kupolov75d0ea82014-12-15 16:21:07 -08004452 }
4453 }
4454 }
4455 }
4456 }
Amith Yamasanibb054c92015-07-09 14:16:27 -07004457
4458 /**
4459 * @param userId
4460 * @return whether the user has been initialized yet
4461 */
Bookatzf56f2582019-09-04 16:06:41 -07004462 boolean isUserInitialized(@UserIdInt int userId) {
Todd Kennedy0eb97382017-10-03 16:57:22 -07004463 return mLocalService.isUserInitialized(userId);
Amith Yamasanibb054c92015-07-09 14:16:27 -07004464 }
Makoto Onuki068c54a2015-10-13 14:34:03 -07004465
4466 private class LocalService extends UserManagerInternal {
Makoto Onuki068c54a2015-10-13 14:34:03 -07004467 @Override
Bookatzf56f2582019-09-04 16:06:41 -07004468 public void setDevicePolicyUserRestrictions(@UserIdInt int userId,
4469 @Nullable Bundle restrictions, boolean isDeviceOwner, int cameraRestrictionScope) {
Pavel Grafov6a40f092016-10-25 15:46:51 +01004470 UserManagerService.this.setDevicePolicyUserRestrictionsInner(userId, restrictions,
4471 isDeviceOwner, cameraRestrictionScope);
Makoto Onuki068c54a2015-10-13 14:34:03 -07004472 }
4473
4474 @Override
Bookatzf56f2582019-09-04 16:06:41 -07004475 public Bundle getBaseUserRestrictions(@UserIdInt int userId) {
Makoto Onuki068c54a2015-10-13 14:34:03 -07004476 synchronized (mRestrictionsLock) {
4477 return mBaseUserRestrictions.get(userId);
4478 }
4479 }
4480
4481 @Override
4482 public void setBaseUserRestrictionsByDpmsForMigration(
Bookatzf56f2582019-09-04 16:06:41 -07004483 @UserIdInt int userId, Bundle baseRestrictions) {
Makoto Onuki068c54a2015-10-13 14:34:03 -07004484 synchronized (mRestrictionsLock) {
Pavel Grafov6a40f092016-10-25 15:46:51 +01004485 if (updateRestrictionsIfNeededLR(
4486 userId, new Bundle(baseRestrictions), mBaseUserRestrictions)) {
4487 invalidateEffectiveUserRestrictionsLR(userId);
4488 }
Makoto Onuki068c54a2015-10-13 14:34:03 -07004489 }
4490
Amith Yamasani12747872015-12-07 14:19:49 -08004491 final UserData userData = getUserDataNoChecks(userId);
Makoto Onuki068c54a2015-10-13 14:34:03 -07004492 synchronized (mPackagesLock) {
Amith Yamasani12747872015-12-07 14:19:49 -08004493 if (userData != null) {
4494 writeUserLP(userData);
Makoto Onuki068c54a2015-10-13 14:34:03 -07004495 } else {
4496 Slog.w(LOG_TAG, "UserInfo not found for " + userId);
4497 }
4498 }
4499 }
Makoto Onukid45a4a22015-11-02 17:17:38 -08004500
4501 @Override
Bookatzf56f2582019-09-04 16:06:41 -07004502 public boolean getUserRestriction(@UserIdInt int userId, String key) {
Makoto Onukid45a4a22015-11-02 17:17:38 -08004503 return getUserRestrictions(userId).getBoolean(key);
4504 }
4505
4506 @Override
4507 public void addUserRestrictionsListener(UserRestrictionsListener listener) {
4508 synchronized (mUserRestrictionsListeners) {
4509 mUserRestrictionsListeners.add(listener);
4510 }
4511 }
4512
4513 @Override
4514 public void removeUserRestrictionsListener(UserRestrictionsListener listener) {
4515 synchronized (mUserRestrictionsListeners) {
4516 mUserRestrictionsListeners.remove(listener);
4517 }
4518 }
Makoto Onukie7927da2015-11-25 10:05:17 -08004519
4520 @Override
4521 public void setDeviceManaged(boolean isManaged) {
4522 synchronized (mUsersLock) {
4523 mIsDeviceManaged = isManaged;
4524 }
4525 }
4526
4527 @Override
Rubin Xu0f1e56d2019-08-23 13:34:25 +01004528 public boolean isDeviceManaged() {
4529 synchronized (mUsersLock) {
4530 return mIsDeviceManaged;
4531 }
4532 }
4533
4534 @Override
Bookatzf56f2582019-09-04 16:06:41 -07004535 public void setUserManaged(@UserIdInt int userId, boolean isManaged) {
Makoto Onukie7927da2015-11-25 10:05:17 -08004536 synchronized (mUsersLock) {
4537 mIsUserManaged.put(userId, isManaged);
4538 }
4539 }
Oleksandr Peletskyi7f1f1df2016-01-18 15:40:21 +01004540
4541 @Override
Rubin Xu0f1e56d2019-08-23 13:34:25 +01004542 public boolean isUserManaged(@UserIdInt int userId) {
4543 synchronized (mUsersLock) {
4544 return mIsUserManaged.get(userId);
4545 }
4546 }
4547
4548 @Override
Bookatzf56f2582019-09-04 16:06:41 -07004549 public void setUserIcon(@UserIdInt int userId, Bitmap bitmap) {
Oleksandr Peletskyi7f1f1df2016-01-18 15:40:21 +01004550 long ident = Binder.clearCallingIdentity();
4551 try {
4552 synchronized (mPackagesLock) {
4553 UserData userData = getUserDataNoChecks(userId);
4554 if (userData == null || userData.info.partial) {
4555 Slog.w(LOG_TAG, "setUserIcon: unknown user #" + userId);
4556 return;
4557 }
4558 writeBitmapLP(userData.info, bitmap);
4559 writeUserLP(userData);
4560 }
4561 sendUserInfoChangedBroadcast(userId);
4562 } finally {
4563 Binder.restoreCallingIdentity(ident);
4564 }
4565 }
Lenka Trochtovaf348e8e2016-01-07 17:20:34 +01004566
4567 @Override
4568 public void setForceEphemeralUsers(boolean forceEphemeralUsers) {
4569 synchronized (mUsersLock) {
4570 mForceEphemeralUsers = forceEphemeralUsers;
4571 }
4572 }
4573
4574 @Override
4575 public void removeAllUsers() {
4576 if (UserHandle.USER_SYSTEM == ActivityManager.getCurrentUser()) {
4577 // Remove the non-system users straight away.
4578 removeNonSystemUsers();
4579 } else {
4580 // Switch to the system user first and then remove the other users.
4581 BroadcastReceiver userSwitchedReceiver = new BroadcastReceiver() {
4582 @Override
4583 public void onReceive(Context context, Intent intent) {
4584 int userId =
4585 intent.getIntExtra(Intent.EXTRA_USER_HANDLE, UserHandle.USER_NULL);
4586 if (userId != UserHandle.USER_SYSTEM) {
4587 return;
4588 }
4589 mContext.unregisterReceiver(this);
4590 removeNonSystemUsers();
4591 }
4592 };
4593 IntentFilter userSwitchedFilter = new IntentFilter();
4594 userSwitchedFilter.addAction(Intent.ACTION_USER_SWITCHED);
4595 mContext.registerReceiver(
4596 userSwitchedReceiver, userSwitchedFilter, null, mHandler);
4597
4598 // Switch to the system user.
4599 ActivityManager am =
4600 (ActivityManager) mContext.getSystemService(Context.ACTIVITY_SERVICE);
4601 am.switchUser(UserHandle.USER_SYSTEM);
4602 }
4603 }
phweisse9c44062016-02-10 12:57:38 +01004604
4605 @Override
Bookatzf56f2582019-09-04 16:06:41 -07004606 public void onEphemeralUserStop(@UserIdInt int userId) {
Lenka Trochtova1ddda472016-02-12 10:42:12 +01004607 synchronized (mUsersLock) {
4608 UserInfo userInfo = getUserInfoLU(userId);
4609 if (userInfo != null && userInfo.isEphemeral()) {
4610 // Do not allow switching back to the ephemeral user again as the user is going
4611 // to be deleted.
4612 userInfo.flags |= UserInfo.FLAG_DISABLED;
4613 if (userInfo.isGuest()) {
4614 // Indicate that the guest will be deleted after it stops.
4615 userInfo.guestToRemove = true;
4616 }
4617 }
4618 }
4619 }
4620
4621 @Override
Bookatz029832a2019-10-04 16:50:22 -07004622 public UserInfo createUserEvenWhenDisallowed(String name, @NonNull String userType,
4623 @UserInfoFlag int flags, String[] disallowedPackages) {
4624 UserInfo user = createUserInternalUnchecked(name, userType, flags,
4625 UserHandle.USER_NULL, /* preCreated= */ false, disallowedPackages);
phweisse9c44062016-02-10 12:57:38 +01004626 // Keep this in sync with UserManager.createUser
Christine Franks97a54802017-08-09 10:06:43 -07004627 if (user != null && !user.isAdmin() && !user.isDemo()) {
phweisse9c44062016-02-10 12:57:38 +01004628 setUserRestriction(UserManager.DISALLOW_SMS, true, user.id);
4629 setUserRestriction(UserManager.DISALLOW_OUTGOING_CALLS, true, user.id);
4630 }
4631 return user;
4632 }
Fyodor Kupolov6c915ea2016-05-09 19:10:53 -07004633
4634 @Override
Bookatzf56f2582019-09-04 16:06:41 -07004635 public boolean removeUserEvenWhenDisallowed(@UserIdInt int userId) {
Nicolas Prevotdf1b87d2016-10-25 13:57:08 +01004636 return removeUserUnchecked(userId);
4637 }
4638
4639 @Override
Bookatzf56f2582019-09-04 16:06:41 -07004640 public boolean isUserRunning(@UserIdInt int userId) {
Amith Yamasaniea1b9d72016-05-27 15:57:38 +00004641 synchronized (mUserStates) {
4642 return mUserStates.get(userId, -1) >= 0;
4643 }
4644 }
4645
4646 @Override
Bookatzf56f2582019-09-04 16:06:41 -07004647 public void setUserState(@UserIdInt int userId, int userState) {
Amith Yamasaniea1b9d72016-05-27 15:57:38 +00004648 synchronized (mUserStates) {
4649 mUserStates.put(userId, userState);
4650 }
4651 }
4652
4653 @Override
Bookatzf56f2582019-09-04 16:06:41 -07004654 public void removeUserState(@UserIdInt int userId) {
Amith Yamasaniea1b9d72016-05-27 15:57:38 +00004655 synchronized (mUserStates) {
4656 mUserStates.delete(userId);
Fyodor Kupolov6c915ea2016-05-09 19:10:53 -07004657 }
4658 }
4659
4660 @Override
Michael Wachenschwanz3f2b6552017-05-15 13:53:09 -07004661 public int[] getUserIds() {
4662 return UserManagerService.this.getUserIds();
4663 }
4664
4665 @Override
Bookatzf56f2582019-09-04 16:06:41 -07004666 public boolean isUserUnlockingOrUnlocked(@UserIdInt int userId) {
Fyodor Kupolov0468ee92017-05-25 17:06:17 -07004667 int state;
Amith Yamasaniea1b9d72016-05-27 15:57:38 +00004668 synchronized (mUserStates) {
Fyodor Kupolov0468ee92017-05-25 17:06:17 -07004669 state = mUserStates.get(userId, -1);
Fyodor Kupolov6c915ea2016-05-09 19:10:53 -07004670 }
Fyodor Kupolov0468ee92017-05-25 17:06:17 -07004671 // Special case, in the stopping/shutdown state user key can still be unlocked
4672 if (state == UserState.STATE_STOPPING || state == UserState.STATE_SHUTDOWN) {
4673 return StorageManager.isUserKeyUnlocked(userId);
4674 }
4675 return (state == UserState.STATE_RUNNING_UNLOCKING)
4676 || (state == UserState.STATE_RUNNING_UNLOCKED);
Fyodor Kupolov6c915ea2016-05-09 19:10:53 -07004677 }
Fyodor Kupolov2e7e0962016-12-01 18:09:17 -08004678
4679 @Override
Bookatzf56f2582019-09-04 16:06:41 -07004680 public boolean isUserUnlocked(@UserIdInt int userId) {
Fyodor Kupolov0468ee92017-05-25 17:06:17 -07004681 int state;
Fyodor Kupolov2e7e0962016-12-01 18:09:17 -08004682 synchronized (mUserStates) {
Fyodor Kupolov0468ee92017-05-25 17:06:17 -07004683 state = mUserStates.get(userId, -1);
Fyodor Kupolov2e7e0962016-12-01 18:09:17 -08004684 }
Fyodor Kupolov0468ee92017-05-25 17:06:17 -07004685 // Special case, in the stopping/shutdown state user key can still be unlocked
4686 if (state == UserState.STATE_STOPPING || state == UserState.STATE_SHUTDOWN) {
4687 return StorageManager.isUserKeyUnlocked(userId);
4688 }
4689 return state == UserState.STATE_RUNNING_UNLOCKED;
Fyodor Kupolov2e7e0962016-12-01 18:09:17 -08004690 }
Todd Kennedy0eb97382017-10-03 16:57:22 -07004691
4692 @Override
Bookatzf56f2582019-09-04 16:06:41 -07004693 public boolean isUserInitialized(@UserIdInt int userId) {
Todd Kennedy0eb97382017-10-03 16:57:22 -07004694 return (getUserInfo(userId).flags & UserInfo.FLAG_INITIALIZED) != 0;
4695 }
4696
4697 @Override
Bookatzf56f2582019-09-04 16:06:41 -07004698 public boolean exists(@UserIdInt int userId) {
Todd Kennedy0eb97382017-10-03 16:57:22 -07004699 return getUserInfoNoChecks(userId) != null;
4700 }
Sunny Goyal145c8f82018-02-15 14:27:09 -08004701
4702 @Override
4703 public boolean isProfileAccessible(int callingUserId, int targetUserId, String debugMsg,
4704 boolean throwSecurityException) {
4705 if (targetUserId == callingUserId) {
4706 return true;
4707 }
4708 synchronized (mUsersLock) {
4709 UserInfo callingUserInfo = getUserInfoLU(callingUserId);
Bookatz029832a2019-10-04 16:50:22 -07004710 if (callingUserInfo == null || callingUserInfo.isProfile()) {
Sunny Goyal145c8f82018-02-15 14:27:09 -08004711 if (throwSecurityException) {
4712 throw new SecurityException(
4713 debugMsg + " for another profile "
4714 + targetUserId + " from " + callingUserId);
4715 }
4716 }
4717
4718 UserInfo targetUserInfo = getUserInfoLU(targetUserId);
4719 if (targetUserInfo == null || !targetUserInfo.isEnabled()) {
4720 // Do not throw any exception here as this could happen due to race conditions
4721 // between the system updating its state and the client getting notified.
4722 if (throwSecurityException) {
4723 Slog.w(LOG_TAG, debugMsg + " for disabled profile "
4724 + targetUserId + " from " + callingUserId);
4725 }
4726 return false;
4727 }
4728
4729 if (targetUserInfo.profileGroupId == UserInfo.NO_PROFILE_GROUP_ID ||
4730 targetUserInfo.profileGroupId != callingUserInfo.profileGroupId) {
4731 if (throwSecurityException) {
4732 throw new SecurityException(
4733 debugMsg + " for unrelated profile " + targetUserId);
4734 }
4735 return false;
4736 }
4737 }
4738 return true;
4739 }
4740
4741 @Override
Bookatzf56f2582019-09-04 16:06:41 -07004742 public int getProfileParentId(@UserIdInt int userId) {
Sunny Goyal145c8f82018-02-15 14:27:09 -08004743 synchronized (mUsersLock) {
4744 UserInfo profileParent = getProfileParentLU(userId);
4745 if (profileParent == null) {
4746 return userId;
4747 }
4748 return profileParent.id;
4749 }
4750 }
yuemingw1d13eae2018-01-30 17:27:54 +00004751
4752 @Override
4753 public boolean isSettingRestrictedForUser(String setting, @UserIdInt int userId,
4754 String value, int callingUid) {
Christopher Tate65fb2e42019-10-11 17:00:23 -07004755 return UserManagerService.this.isSettingRestrictedForUser(setting, userId,
yuemingw1d13eae2018-01-30 17:27:54 +00004756 value, callingUid);
4757 }
Patrick Baumann2f2fd712019-07-31 15:18:53 -07004758
4759 @Override
Bookatzf56f2582019-09-04 16:06:41 -07004760 public boolean hasUserRestriction(String restrictionKey, @UserIdInt int userId) {
Patrick Baumann2f2fd712019-07-31 15:18:53 -07004761 if (!UserRestrictionsUtils.isValidRestriction(restrictionKey)) {
4762 return false;
4763 }
4764 Bundle restrictions = getEffectiveUserRestrictions(userId);
4765 return restrictions != null && restrictions.getBoolean(restrictionKey);
4766 }
Felipe Lemee5434c32019-08-13 09:28:33 -07004767
Rubin Xu0f1e56d2019-08-23 13:34:25 +01004768 @Override
Felipe Lemee5434c32019-08-13 09:28:33 -07004769 public @Nullable UserInfo getUserInfo(@UserIdInt int userId) {
4770 UserData userData;
4771 synchronized (mUsersLock) {
4772 userData = mUsers.get(userId);
4773 }
4774 return userData == null ? null : userData.info;
4775 }
Felipe Leme987655d2019-08-26 10:45:24 -07004776
4777 public @NonNull UserInfo[] getUserInfos() {
4778 synchronized (mUsersLock) {
4779 int userSize = mUsers.size();
4780 UserInfo[] allInfos = new UserInfo[userSize];
4781 for (int i = 0; i < userSize; i++) {
4782 allInfos[i] = mUsers.valueAt(i).info;
4783 }
4784 return allInfos;
4785 }
4786 }
Lenka Trochtovaf348e8e2016-01-07 17:20:34 +01004787 }
4788
4789 /* Remove all the users except of the system one. */
4790 private void removeNonSystemUsers() {
4791 ArrayList<UserInfo> usersToRemove = new ArrayList<>();
4792 synchronized (mUsersLock) {
4793 final int userSize = mUsers.size();
4794 for (int i = 0; i < userSize; i++) {
4795 UserInfo ui = mUsers.valueAt(i).info;
4796 if (ui.id != UserHandle.USER_SYSTEM) {
4797 usersToRemove.add(ui);
4798 }
4799 }
4800 }
4801 for (UserInfo ui: usersToRemove) {
4802 removeUser(ui.id);
4803 }
Makoto Onuki068c54a2015-10-13 14:34:03 -07004804 }
Todd Kennedy60459ab2015-10-30 11:32:16 -07004805
4806 private class Shell extends ShellCommand {
4807 @Override
4808 public int onCommand(String cmd) {
4809 return onShellCommand(this, cmd);
4810 }
4811
4812 @Override
4813 public void onHelp() {
4814 final PrintWriter pw = getOutPrintWriter();
4815 pw.println("User manager (user) commands:");
4816 pw.println(" help");
4817 pw.println(" Print this help text.");
4818 pw.println("");
Felipe Lemec1ca4412019-09-11 09:23:26 -07004819 pw.println(" list [-v] [-all]");
Todd Kennedy60459ab2015-10-30 11:32:16 -07004820 pw.println(" Prints all users on the system.");
4821 }
4822 }
Makoto Onuki1a2cd742015-11-16 13:51:27 -08004823
4824 private static void debug(String message) {
4825 Log.d(LOG_TAG, message +
4826 (DBG_WITH_STACKTRACE ? " called at\n" + Debug.getCallers(10, " ") : ""));
4827 }
Kenny Guy02c89902016-11-15 19:36:38 +00004828
Bookatz029832a2019-10-04 16:50:22 -07004829 /** @see #getMaxUsersOfTypePerParent(UserTypeDetails) */
Kenny Guy02c89902016-11-15 19:36:38 +00004830 @VisibleForTesting
Bookatz029832a2019-10-04 16:50:22 -07004831 int getMaxUsersOfTypePerParent(String userType) {
4832 final UserTypeDetails type = mUserTypes.get(userType);
4833 if (type == null) {
4834 return 0;
Kenny Guy02c89902016-11-15 19:36:38 +00004835 }
Bookatz029832a2019-10-04 16:50:22 -07004836 return getMaxUsersOfTypePerParent(type);
4837 }
4838
4839 /**
4840 * Returns the maximum number of users allowed for the given userTypeDetails per parent user.
4841 * This is applicable for user types that are {@link UserTypeDetails#isProfile()}.
4842 * If there is no maximum, {@link UserTypeDetails#UNLIMITED_NUMBER_OF_USERS} is returned.
4843 */
4844 private static int getMaxUsersOfTypePerParent(UserTypeDetails userTypeDetails) {
4845 final int defaultMax = userTypeDetails.getMaxAllowedPerParent();
4846 if (!Build.IS_DEBUGGABLE) {
4847 return defaultMax;
4848 } else {
4849 if (userTypeDetails.isManagedProfile()) {
4850 return SystemProperties.getInt("persist.sys.max_profiles", defaultMax);
4851 }
4852 }
4853 return defaultMax;
Kenny Guy02c89902016-11-15 19:36:38 +00004854 }
4855
Andreas Gampe2e8c7672018-07-20 13:01:08 -07004856 @GuardedBy("mUsersLock")
Kenny Guy02c89902016-11-15 19:36:38 +00004857 @VisibleForTesting
Bookatz029832a2019-10-04 16:50:22 -07004858 int getFreeProfileBadgeLU(int parentUserId, String userType) {
4859 Set<Integer> usedBadges = new ArraySet<>();
Kenny Guy02c89902016-11-15 19:36:38 +00004860 final int userSize = mUsers.size();
4861 for (int i = 0; i < userSize; i++) {
4862 UserInfo ui = mUsers.valueAt(i).info;
4863 // Check which badge indexes are already used by this profile group.
Bookatz029832a2019-10-04 16:50:22 -07004864 if (ui.userType.equals(userType)
Kenny Guy02c89902016-11-15 19:36:38 +00004865 && ui.profileGroupId == parentUserId
Bookatz029832a2019-10-04 16:50:22 -07004866 && !mRemovingUserIds.get(ui.id)) {
4867 usedBadges.add(ui.profileBadge);
Kenny Guy02c89902016-11-15 19:36:38 +00004868 }
4869 }
Bookatz029832a2019-10-04 16:50:22 -07004870 int maxUsersOfType = getMaxUsersOfTypePerParent(userType);
4871 if (maxUsersOfType == UserTypeDetails.UNLIMITED_NUMBER_OF_USERS) {
4872 maxUsersOfType = Integer.MAX_VALUE;
4873 }
4874 for (int i = 0; i < maxUsersOfType; i++) {
4875 if (!usedBadges.contains(i)) {
Kenny Guy02c89902016-11-15 19:36:38 +00004876 return i;
4877 }
4878 }
4879 return 0;
4880 }
Amith Yamasani0d1fd8d2016-10-12 14:21:51 -07004881
4882 /**
4883 * Checks if the given user has a managed profile associated with it.
4884 * @param userId The parent user
4885 * @return
4886 */
Bookatzf56f2582019-09-04 16:06:41 -07004887 boolean hasManagedProfile(@UserIdInt int userId) {
Amith Yamasani0d1fd8d2016-10-12 14:21:51 -07004888 synchronized (mUsersLock) {
4889 UserInfo userInfo = getUserInfoLU(userId);
4890 final int userSize = mUsers.size();
4891 for (int i = 0; i < userSize; i++) {
4892 UserInfo profile = mUsers.valueAt(i).info;
4893 if (userId != profile.id && isProfileOf(userInfo, profile)) {
4894 return true;
4895 }
4896 }
4897 return false;
4898 }
4899 }
Tony Makd390ae92017-12-28 13:23:10 +00004900
4901 /**
4902 * Check if the calling package name matches with the calling UID, throw
4903 * {@link SecurityException} if not.
4904 */
4905 private void verifyCallingPackage(String callingPackage, int callingUid) {
4906 int packageUid = mPm.getPackageUid(callingPackage, 0, UserHandle.getUserId(callingUid));
4907 if (packageUid != callingUid) {
4908 throw new SecurityException("Specified package " + callingPackage
4909 + " does not match the calling uid " + callingUid);
4910 }
4911 }
Amith Yamasani4b2e9342011-03-31 12:38:53 -07004912}