blob: 3a00e6067e9731e155425b01c5412a8dd3dbc549 [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
Felipe Lemed1def612019-10-29 18:03:18 -07003194 // Always clear EPHEMERAL for pre-created users, otherwise the storage key
3195 // won't be persisted. The flag will be re-added (if needed) when the
3196 // pre-created user is "converted" to a normal user.
3197 if (preCreate) {
3198 flags &= ~UserInfo.FLAG_EPHEMERAL;
3199 }
3200
Bookatz029832a2019-10-04 16:50:22 -07003201 userInfo = new UserInfo(userId, name, null, flags, userType);
Lenka Trochtovaf348e8e2016-01-07 17:20:34 +01003202 userInfo.serialNumber = mNextSerialNumber++;
Felipe Lemec1ca4412019-09-11 09:23:26 -07003203 userInfo.creationTime = getCreationTime();
Lenka Trochtovaf348e8e2016-01-07 17:20:34 +01003204 userInfo.partial = true;
Felipe Lemec1ca4412019-09-11 09:23:26 -07003205 userInfo.preCreated = preCreate;
Fyodor Kupolov83c24242016-03-31 13:30:42 -07003206 userInfo.lastLoggedInFingerprint = Build.FINGERPRINT;
Bookatz029832a2019-10-04 16:50:22 -07003207 if (userTypeDetails.hasBadge() && parentId != UserHandle.USER_NULL) {
3208 userInfo.profileBadge = getFreeProfileBadgeLU(parentId, userType);
Kenny Guy02c89902016-11-15 19:36:38 +00003209 }
Lenka Trochtovaf348e8e2016-01-07 17:20:34 +01003210 userData = new UserData();
3211 userData.info = userInfo;
Amith Yamasani12747872015-12-07 14:19:49 -08003212 mUsers.put(userId, userData);
Fyodor Kupolove80085d2015-11-06 18:21:39 -08003213 }
Jeff Sharkeycd575992016-03-29 14:12:49 -06003214 writeUserLP(userData);
Fyodor Kupolove80085d2015-11-06 18:21:39 -08003215 writeUserListLP();
3216 if (parent != null) {
Bookatz029832a2019-10-04 16:50:22 -07003217 if (isProfile) {
Amith Yamasani12747872015-12-07 14:19:49 -08003218 if (parent.info.profileGroupId == UserInfo.NO_PROFILE_GROUP_ID) {
3219 parent.info.profileGroupId = parent.info.id;
Fyodor Kupolove80085d2015-11-06 18:21:39 -08003220 writeUserLP(parent);
Kenny Guya52dc3e2014-02-11 15:33:14 +00003221 }
Amith Yamasani12747872015-12-07 14:19:49 -08003222 userInfo.profileGroupId = parent.info.profileGroupId;
Fyodor Kupolove80085d2015-11-06 18:21:39 -08003223 } else if (isRestricted) {
Amith Yamasani12747872015-12-07 14:19:49 -08003224 if (parent.info.restrictedProfileParentId == UserInfo.NO_PROFILE_GROUP_ID) {
3225 parent.info.restrictedProfileParentId = parent.info.id;
Fyodor Kupolove80085d2015-11-06 18:21:39 -08003226 writeUserLP(parent);
Jeff Sharkey6dce4962015-07-03 18:08:41 -07003227 }
Amith Yamasani12747872015-12-07 14:19:49 -08003228 userInfo.restrictedProfileParentId = parent.info.restrictedProfileParentId;
Makoto Onuki068c54a2015-10-13 14:34:03 -07003229 }
Dianne Hackborn5dc5a002012-09-15 19:33:48 -07003230 }
Dianne Hackborn4428e172012-08-24 17:43:05 -07003231 }
jovanakdd7e4752019-09-04 12:35:45 -07003232
3233 t.traceBegin("createUserKey");
Fyodor Kupolove80085d2015-11-06 18:21:39 -08003234 final StorageManager storage = mContext.getSystemService(StorageManager.class);
Lenka Trochtovac4dd0212015-11-18 12:22:06 +01003235 storage.createUserKey(userId, userInfo.serialNumber, userInfo.isEphemeral());
jovanakdd7e4752019-09-04 12:35:45 -07003236 t.traceEnd();
3237
3238 t.traceBegin("prepareUserData");
Fyodor Kupolov5c0ecfd2017-01-27 11:11:57 -08003239 mUserDataPreparer.prepareUserData(userId, userInfo.serialNumber,
Jeff Sharkey47f71082016-02-01 17:03:54 -07003240 StorageManager.FLAG_STORAGE_DE | StorageManager.FLAG_STORAGE_CE);
jovanakdd7e4752019-09-04 12:35:45 -07003241 t.traceEnd();
3242
Bookatz029832a2019-10-04 16:50:22 -07003243 final Set<String> installablePackages = // TODO(b/142482943): use userType
Bookatz04d7ae52019-08-05 14:07:12 -07003244 mSystemPackageInstaller.getInstallablePackagesForUserType(flags);
jovanakdd7e4752019-09-04 12:35:45 -07003245 t.traceBegin("PM.createNewUser");
Bookatz04d7ae52019-08-05 14:07:12 -07003246 mPm.createNewUser(userId, installablePackages, disallowedPackages);
jovanakdd7e4752019-09-04 12:35:45 -07003247 t.traceEnd();
3248
Fyodor Kupolove80085d2015-11-06 18:21:39 -08003249 userInfo.partial = false;
3250 synchronized (mPackagesLock) {
Amith Yamasani12747872015-12-07 14:19:49 -08003251 writeUserLP(userData);
Fyodor Kupolove80085d2015-11-06 18:21:39 -08003252 }
3253 updateUserIds();
3254 Bundle restrictions = new Bundle();
Bookatz029832a2019-10-04 16:50:22 -07003255 // TODO(b/142482943): Generalize this using UserTypeDetails default restrictions.
Fyodor Kupolove04462c2015-11-30 15:02:53 -08003256 if (isGuest) {
3257 synchronized (mGuestRestrictions) {
3258 restrictions.putAll(mGuestRestrictions);
3259 }
3260 }
Fyodor Kupolove80085d2015-11-06 18:21:39 -08003261 synchronized (mRestrictionsLock) {
3262 mBaseUserRestrictions.append(userId, restrictions);
3263 }
jovanakdd7e4752019-09-04 12:35:45 -07003264
3265 t.traceBegin("PM.onNewUserCreated");
Fyodor Kupolov5fd967d2016-07-12 14:46:19 -07003266 mPm.onNewUserCreated(userId);
jovanakdd7e4752019-09-04 12:35:45 -07003267
Felipe Lemec1ca4412019-09-11 09:23:26 -07003268 if (preCreate) {
3269 // Must start user (which will be stopped right away, through
3270 // UserController.finishUserUnlockedCompleted) so services can properly
3271 // intialize it.
Felipe Lemec6e015d2019-10-21 12:51:08 -07003272 // TODO(b/143092698): in the long-term, it might be better to add a onCreateUser()
3273 // callback on SystemService instead.
Felipe Lemec1ca4412019-09-11 09:23:26 -07003274 Slog.i(LOG_TAG, "starting pre-created user " + userInfo.toFullString());
3275 final IActivityManager am = ActivityManager.getService();
3276 try {
3277 am.startUserInBackground(userId);
3278 } catch (RemoteException e) {
3279 Slog.w(LOG_TAG, "could not start pre-created user " + userId, e);
3280 }
3281 } else {
3282 dispatchUserAddedIntent(userInfo);
3283 }
3284
Dianne Hackborn5dc5a002012-09-15 19:33:48 -07003285 } finally {
3286 Binder.restoreCallingIdentity(ident);
Amith Yamasani258848d2012-08-10 17:06:33 -07003287 }
Felipe Lemec1ca4412019-09-11 09:23:26 -07003288
Felipe Lemec6e015d2019-10-21 12:51:08 -07003289 // TODO(b/143092698): it's possible to reach "max users overflow" when the user is created
Felipe Lemec1ca4412019-09-11 09:23:26 -07003290 // "from scratch" (i.e., not from a pre-created user) and reaches the maximum number of
3291 // users without counting the pre-created one. Then when the pre-created is converted, the
3292 // "effective" number of max users is exceeds. Example:
3293 // Max: 3 Current: 2 full (u0 and u10) + 1 pre-created (u11)
3294 // Step 1: create(/* flags doesn't match u11 */): u12 is created, "effective max" is now 3
3295 // (u0, u10, u12) but "real" max is 4 (u0, u10, u11, u12)
3296 // Step 2: create(/* flags match u11 */): u11 is converted, now "effective max" is also 4
3297 // (u0, u10, u11, u12)
3298 // One way to avoid this issue is by removing a pre-created user from the pool when the
3299 // "real" max exceeds the max here.
3300
Amith Yamasani4b2e9342011-03-31 12:38:53 -07003301 return userInfo;
3302 }
3303
Bookatz029832a2019-10-04 16:50:22 -07003304 /** Checks that the flags do not contain mutually exclusive types/properties. */
3305 static boolean checkUserTypeConsistency(@UserInfoFlag int flags) {
3306 // Mask to check that flags don't refer to multiple user types.
3307 final int userTypeFlagMask = UserInfo.FLAG_GUEST | UserInfo.FLAG_DEMO
3308 | UserInfo.FLAG_RESTRICTED | UserInfo.FLAG_PROFILE;
3309 return isAtMostOneFlag(flags & userTypeFlagMask)
3310 && isAtMostOneFlag(flags & (UserInfo.FLAG_PROFILE | UserInfo.FLAG_FULL))
3311 && isAtMostOneFlag(flags & (UserInfo.FLAG_PROFILE | UserInfo.FLAG_SYSTEM));
3312 }
3313
3314 /** Returns whether the given flags contains at most one 1. */
3315 private static boolean isAtMostOneFlag(int flags) {
3316 return (flags & (flags - 1)) == 0;
3317 // If !=0, this means that flags is not a power of 2, and therefore is multiple types.
3318 }
3319
Bookatz04d7ae52019-08-05 14:07:12 -07003320 /** Install/uninstall system packages for all users based on their user-type, as applicable. */
3321 boolean installWhitelistedSystemPackages(boolean isFirstBoot, boolean isUpgrade) {
3322 return mSystemPackageInstaller.installWhitelistedSystemPackages(isFirstBoot, isUpgrade);
3323 }
3324
Felipe Lemec1ca4412019-09-11 09:23:26 -07003325 private long getCreationTime() {
3326 final long now = System.currentTimeMillis();
3327 return (now > EPOCH_PLUS_30_YEARS) ? now : 0;
3328 }
3329
3330 private void dispatchUserAddedIntent(@NonNull UserInfo userInfo) {
3331 Intent addedIntent = new Intent(Intent.ACTION_USER_ADDED);
3332 addedIntent.putExtra(Intent.EXTRA_USER_HANDLE, userInfo.id);
3333 mContext.sendBroadcastAsUser(addedIntent, UserHandle.ALL,
3334 android.Manifest.permission.MANAGE_USERS);
3335 MetricsLogger.count(mContext, userInfo.isGuest() ? TRON_GUEST_CREATED
3336 : (userInfo.isDemo() ? TRON_DEMO_CREATED : TRON_USER_CREATED), 1);
3337 }
3338
Felipe Lemec1ca4412019-09-11 09:23:26 -07003339 /**
Bookatz029832a2019-10-04 16:50:22 -07003340 * Gets a pre-created user for the given user type.
Felipe Lemec1ca4412019-09-11 09:23:26 -07003341 *
3342 * <p>Should be used only during user creation, so the pre-created user can be used (instead of
3343 * creating and initializing a new user from scratch).
3344 */
Felipe Lemec6e015d2019-10-21 12:51:08 -07003345 // TODO(b/143092698): add unit test
Felipe Lemec1ca4412019-09-11 09:23:26 -07003346 @GuardedBy("mUsersLock")
Bookatz029832a2019-10-04 16:50:22 -07003347 private @Nullable UserData getPreCreatedUserLU(String userType) {
3348 if (DBG) Slog.d(LOG_TAG, "getPreCreatedUser(): userType= " + userType);
Felipe Lemec1ca4412019-09-11 09:23:26 -07003349 final int userSize = mUsers.size();
3350 for (int i = 0; i < userSize; i++) {
3351 final UserData user = mUsers.valueAt(i);
3352 if (DBG) Slog.d(LOG_TAG, i + ":" + user.info.toFullString());
Bookatz029832a2019-10-04 16:50:22 -07003353 if (user.info.preCreated && user.info.userType.equals(userType)) {
Felipe Lemec1ca4412019-09-11 09:23:26 -07003354 if (!user.info.isInitialized()) {
Bookatz029832a2019-10-04 16:50:22 -07003355 Slog.w(LOG_TAG, "found pre-created user of type " + userType
Felipe Lemec1ca4412019-09-11 09:23:26 -07003356 + ", but it's not initialized yet: " + user.info.toFullString());
3357 continue;
3358 }
3359 return user;
3360 }
3361 }
3362 return null;
3363 }
3364
Bookatz029832a2019-10-04 16:50:22 -07003365 /**
3366 * Returns whether a user with the given userTypeDetails is eligible to be
3367 * {@link UserInfo#preCreated}.
3368 */
3369 private static boolean isUserTypeEligibleForPreCreation(UserTypeDetails userTypeDetails) {
3370 if (userTypeDetails == null) {
3371 return false;
3372 }
3373 return !userTypeDetails.isProfile()
3374 && !userTypeDetails.getName().equals(UserManager.USER_TYPE_FULL_RESTRICTED);
3375 }
3376
Fyodor Kupolov0f4533d2016-05-18 18:43:12 -07003377 @VisibleForTesting
3378 UserData putUserInfo(UserInfo userInfo) {
3379 final UserData userData = new UserData();
3380 userData.info = userInfo;
3381 synchronized (mUsers) {
3382 mUsers.put(userInfo.id, userData);
3383 }
3384 return userData;
3385 }
3386
3387 @VisibleForTesting
Bookatzf56f2582019-09-04 16:06:41 -07003388 void removeUserInfo(@UserIdInt int userId) {
Fyodor Kupolov0f4533d2016-05-18 18:43:12 -07003389 synchronized (mUsers) {
3390 mUsers.remove(userId);
3391 }
3392 }
3393
Amith Yamasani0b285492011-04-14 17:35:23 -07003394 /**
Fyodor Kupolov02cb6e72015-09-18 18:20:55 -07003395 * @hide
3396 */
Amith Yamasani12747872015-12-07 14:19:49 -08003397 @Override
Fyodor Kupolov02cb6e72015-09-18 18:20:55 -07003398 public UserInfo createRestrictedProfile(String name, int parentUserId) {
Sudheer Shanka53d41472016-06-16 09:11:08 -07003399 checkManageOrCreateUsersPermission("setupRestrictedProfile");
Sudheer Shanka7cb54a32016-09-16 12:59:05 -07003400 final UserInfo user = createProfileForUser(
Bookatz029832a2019-10-04 16:50:22 -07003401 name, UserManager.USER_TYPE_FULL_RESTRICTED, 0, parentUserId, null);
Fyodor Kupolov02cb6e72015-09-18 18:20:55 -07003402 if (user == null) {
3403 return null;
3404 }
Fyodor Kupolov9e912ba2016-02-09 18:29:43 -08003405 long identity = Binder.clearCallingIdentity();
3406 try {
3407 setUserRestriction(UserManager.DISALLOW_MODIFY_ACCOUNTS, true, user.id);
3408 // Change the setting before applying the DISALLOW_SHARE_LOCATION restriction, otherwise
3409 // the putIntForUser() will fail.
3410 android.provider.Settings.Secure.putIntForUser(mContext.getContentResolver(),
3411 android.provider.Settings.Secure.LOCATION_MODE,
3412 android.provider.Settings.Secure.LOCATION_MODE_OFF, user.id);
3413 setUserRestriction(UserManager.DISALLOW_SHARE_LOCATION, true, user.id);
3414 } finally {
3415 Binder.restoreCallingIdentity(identity);
3416 }
Fyodor Kupolov02cb6e72015-09-18 18:20:55 -07003417 return user;
3418 }
3419
3420 /**
Adam Lesinskieddeb492014-09-08 17:50:03 -07003421 * Find the current guest user. If the Guest user is partial,
3422 * then do not include it in the results as it is about to die.
Adam Lesinskieddeb492014-09-08 17:50:03 -07003423 */
Fyodor Kupolov82402752015-10-28 14:54:51 -07003424 private UserInfo findCurrentGuestUser() {
3425 synchronized (mUsersLock) {
3426 final int size = mUsers.size();
3427 for (int i = 0; i < size; i++) {
Amith Yamasani12747872015-12-07 14:19:49 -08003428 final UserInfo user = mUsers.valueAt(i).info;
Felipe Lemee35f5b02019-10-14 15:37:44 -07003429 if (user.isGuest() && !user.guestToRemove && !user.preCreated
3430 && !mRemovingUserIds.get(user.id)) {
Fyodor Kupolov82402752015-10-28 14:54:51 -07003431 return user;
3432 }
Adam Lesinskieddeb492014-09-08 17:50:03 -07003433 }
3434 }
3435 return null;
3436 }
3437
3438 /**
Amith Yamasani1df14732014-08-29 21:37:27 -07003439 * Mark this guest user for deletion to allow us to create another guest
3440 * and switch to that user before actually removing this guest.
Bookatzf56f2582019-09-04 16:06:41 -07003441 * @param userId the userid of the current guest
Amith Yamasani1df14732014-08-29 21:37:27 -07003442 * @return whether the user could be marked for deletion
3443 */
Amith Yamasani12747872015-12-07 14:19:49 -08003444 @Override
Bookatzf56f2582019-09-04 16:06:41 -07003445 public boolean markGuestForDeletion(@UserIdInt int userId) {
Amith Yamasani1df14732014-08-29 21:37:27 -07003446 checkManageUsersPermission("Only the system can remove users");
3447 if (getUserRestrictions(UserHandle.getCallingUserId()).getBoolean(
3448 UserManager.DISALLOW_REMOVE_USER, false)) {
3449 Log.w(LOG_TAG, "Cannot remove user. DISALLOW_REMOVE_USER is enabled.");
3450 return false;
3451 }
3452
3453 long ident = Binder.clearCallingIdentity();
3454 try {
Amith Yamasani12747872015-12-07 14:19:49 -08003455 final UserData userData;
Amith Yamasani1df14732014-08-29 21:37:27 -07003456 synchronized (mPackagesLock) {
Fyodor Kupolov82402752015-10-28 14:54:51 -07003457 synchronized (mUsersLock) {
Bookatzf56f2582019-09-04 16:06:41 -07003458 userData = mUsers.get(userId);
3459 if (userId == 0 || userData == null || mRemovingUserIds.get(userId)) {
Fyodor Kupolov82402752015-10-28 14:54:51 -07003460 return false;
3461 }
Amith Yamasani1df14732014-08-29 21:37:27 -07003462 }
Amith Yamasani12747872015-12-07 14:19:49 -08003463 if (!userData.info.isGuest()) {
Amith Yamasani1df14732014-08-29 21:37:27 -07003464 return false;
3465 }
Adam Lesinskieddeb492014-09-08 17:50:03 -07003466 // We set this to a guest user that is to be removed. This is a temporary state
3467 // where we are allowed to add new Guest users, even if this one is still not
3468 // removed. This user will still show up in getUserInfo() calls.
3469 // If we don't get around to removing this Guest user, it will be purged on next
3470 // startup.
Amith Yamasani12747872015-12-07 14:19:49 -08003471 userData.info.guestToRemove = true;
Amith Yamasani1df14732014-08-29 21:37:27 -07003472 // Mark it as disabled, so that it isn't returned any more when
3473 // profiles are queried.
Amith Yamasani12747872015-12-07 14:19:49 -08003474 userData.info.flags |= UserInfo.FLAG_DISABLED;
3475 writeUserLP(userData);
Amith Yamasani1df14732014-08-29 21:37:27 -07003476 }
3477 } finally {
3478 Binder.restoreCallingIdentity(ident);
3479 }
3480 return true;
3481 }
3482
3483 /**
Amith Yamasani0b285492011-04-14 17:35:23 -07003484 * Removes a user and all data directories created for that user. This method should be called
3485 * after the user's processes have been terminated.
Bookatzf56f2582019-09-04 16:06:41 -07003486 * @param userId the user's id
Amith Yamasani0b285492011-04-14 17:35:23 -07003487 */
Amith Yamasani12747872015-12-07 14:19:49 -08003488 @Override
Bookatzf56f2582019-09-04 16:06:41 -07003489 public boolean removeUser(@UserIdInt int userId) {
3490 Slog.i(LOG_TAG, "removeUser u" + userId);
Sudheer Shankaf5cea032016-06-08 17:13:24 -07003491 checkManageOrCreateUsersPermission("Only the system can remove users");
Esteban Talavera6c9116a2016-11-24 16:12:44 +00003492
3493 final boolean isManagedProfile;
3494 synchronized (mUsersLock) {
Bookatzf56f2582019-09-04 16:06:41 -07003495 UserInfo userInfo = getUserInfoLU(userId);
Esteban Talavera6c9116a2016-11-24 16:12:44 +00003496 isManagedProfile = userInfo != null && userInfo.isManagedProfile();
3497 }
3498 String restriction = isManagedProfile
3499 ? UserManager.DISALLOW_REMOVE_MANAGED_PROFILE : UserManager.DISALLOW_REMOVE_USER;
3500 if (getUserRestrictions(UserHandle.getCallingUserId()).getBoolean(restriction, false)) {
3501 Log.w(LOG_TAG, "Cannot remove user. " + restriction + " is enabled.");
Julia Reynolds4ac5f852014-06-23 17:38:51 -04003502 return false;
3503 }
Bookatzf56f2582019-09-04 16:06:41 -07003504 return removeUserUnchecked(userId);
Nicolas Prevotdf1b87d2016-10-25 13:57:08 +01003505 }
Julia Reynolds4ac5f852014-06-23 17:38:51 -04003506
Bookatz029832a2019-10-04 16:50:22 -07003507 @Override
3508 public boolean removeUserEvenWhenDisallowed(@UserIdInt int userId) {
3509 checkManageOrCreateUsersPermission("Only the system can remove users");
3510 return removeUserUnchecked(userId);
3511 }
3512
Bookatzf56f2582019-09-04 16:06:41 -07003513 private boolean removeUserUnchecked(@UserIdInt int userId) {
Kenny Guyee58b4f2014-05-23 15:19:53 +01003514 long ident = Binder.clearCallingIdentity();
3515 try {
Amith Yamasani12747872015-12-07 14:19:49 -08003516 final UserData userData;
Fyodor Kupolov0df68cd2015-10-01 13:54:22 -07003517 int currentUser = ActivityManager.getCurrentUser();
Bookatzf56f2582019-09-04 16:06:41 -07003518 if (currentUser == userId) {
jovanaka6763a32018-12-03 17:23:20 -08003519 Log.w(LOG_TAG, "Current user cannot be removed.");
Fyodor Kupolov0df68cd2015-10-01 13:54:22 -07003520 return false;
3521 }
Kenny Guyee58b4f2014-05-23 15:19:53 +01003522 synchronized (mPackagesLock) {
Fyodor Kupolov82402752015-10-28 14:54:51 -07003523 synchronized (mUsersLock) {
Bookatzf56f2582019-09-04 16:06:41 -07003524 userData = mUsers.get(userId);
3525 if (userId == UserHandle.USER_SYSTEM) {
jovanaka6763a32018-12-03 17:23:20 -08003526 Log.e(LOG_TAG, "System user cannot be removed.");
3527 return false;
3528 }
3529
3530 if (userData == null) {
3531 Log.e(LOG_TAG, String.format(
Bookatzf56f2582019-09-04 16:06:41 -07003532 "Cannot remove user %d, invalid user id provided.", userId));
jovanaka6763a32018-12-03 17:23:20 -08003533 return false;
3534 }
3535
Bookatzf56f2582019-09-04 16:06:41 -07003536 if (mRemovingUserIds.get(userId)) {
jovanaka6763a32018-12-03 17:23:20 -08003537 Log.e(LOG_TAG, String.format(
Bookatzf56f2582019-09-04 16:06:41 -07003538 "User %d is already scheduled for removal.", userId));
Fyodor Kupolov82402752015-10-28 14:54:51 -07003539 return false;
3540 }
Jeff Sharkey6eb09392014-11-14 15:57:59 -08003541
Bookatzf56f2582019-09-04 16:06:41 -07003542 addRemovingUserIdLocked(userId);
Fyodor Kupolov82402752015-10-28 14:54:51 -07003543 }
Jeff Sharkey6eb09392014-11-14 15:57:59 -08003544
Kenny Guyee58b4f2014-05-23 15:19:53 +01003545 // Set this to a partially created user, so that the user will be purged
3546 // on next startup, in case the runtime stops now before stopping and
3547 // removing the user completely.
Amith Yamasani12747872015-12-07 14:19:49 -08003548 userData.info.partial = true;
Kenny Guyee58b4f2014-05-23 15:19:53 +01003549 // Mark it as disabled, so that it isn't returned any more when
3550 // profiles are queried.
Amith Yamasani12747872015-12-07 14:19:49 -08003551 userData.info.flags |= UserInfo.FLAG_DISABLED;
3552 writeUserLP(userData);
Kenny Guyee58b4f2014-05-23 15:19:53 +01003553 }
Fyodor Kupolov6c96f7f2017-06-28 18:22:59 -07003554 try {
Bookatzf56f2582019-09-04 16:06:41 -07003555 mAppOpsService.removeUser(userId);
Fyodor Kupolov6c96f7f2017-06-28 18:22:59 -07003556 } catch (RemoteException e) {
jovanaka6763a32018-12-03 17:23:20 -08003557 Log.w(LOG_TAG, "Unable to notify AppOpsService of removing user.", e);
Fyodor Kupolov6c96f7f2017-06-28 18:22:59 -07003558 }
Kenny Guyee58b4f2014-05-23 15:19:53 +01003559
Bookatz029832a2019-10-04 16:50:22 -07003560 // TODO(b/142482943): Send some sort of broadcast for profiles even if non-managed?
Amith Yamasani12747872015-12-07 14:19:49 -08003561 if (userData.info.profileGroupId != UserInfo.NO_PROFILE_GROUP_ID
3562 && userData.info.isManagedProfile()) {
Kenny Guyee58b4f2014-05-23 15:19:53 +01003563 // Send broadcast to notify system that the user removed was a
3564 // managed user.
Amith Yamasani12747872015-12-07 14:19:49 -08003565 sendProfileRemovedBroadcast(userData.info.profileGroupId, userData.info.id);
Kenny Guyee58b4f2014-05-23 15:19:53 +01003566 }
3567
Bookatzf56f2582019-09-04 16:06:41 -07003568 if (DBG) Slog.i(LOG_TAG, "Stopping user " + userId);
Kenny Guyee58b4f2014-05-23 15:19:53 +01003569 int res;
3570 try {
Bookatzf56f2582019-09-04 16:06:41 -07003571 res = ActivityManager.getService().stopUser(userId, /* force= */ true,
Fyodor Kupolov9cbfc9e2015-10-07 15:52:33 -07003572 new IStopUserCallback.Stub() {
Kenny Guyee58b4f2014-05-23 15:19:53 +01003573 @Override
Bookatzf56f2582019-09-04 16:06:41 -07003574 public void userStopped(int userIdParam) {
3575 finishRemoveUser(userIdParam);
Kenny Guyee58b4f2014-05-23 15:19:53 +01003576 }
3577 @Override
Bookatzf56f2582019-09-04 16:06:41 -07003578 public void userStopAborted(int userIdParam) {
Kenny Guyee58b4f2014-05-23 15:19:53 +01003579 }
3580 });
3581 } catch (RemoteException e) {
jovanaka6763a32018-12-03 17:23:20 -08003582 Log.w(LOG_TAG, "Failed to stop user during removal.", e);
Dianne Hackborn80a4af22012-08-27 19:18:31 -07003583 return false;
3584 }
Kenny Guyee58b4f2014-05-23 15:19:53 +01003585 return res == ActivityManager.USER_OP_SUCCESS;
3586 } finally {
3587 Binder.restoreCallingIdentity(ident);
Dianne Hackborn80a4af22012-08-27 19:18:31 -07003588 }
Dianne Hackborn80a4af22012-08-27 19:18:31 -07003589 }
3590
Andreas Gampea36dc622018-02-05 17:19:22 -08003591 @GuardedBy("mUsersLock")
Fyodor Kupolov0f4533d2016-05-18 18:43:12 -07003592 @VisibleForTesting
Bookatzf56f2582019-09-04 16:06:41 -07003593 void addRemovingUserIdLocked(@UserIdInt int userId) {
Fyodor Kupolov0f4533d2016-05-18 18:43:12 -07003594 // We remember deleted user IDs to prevent them from being
3595 // reused during the current boot; they can still be reused
3596 // after a reboot or recycling of userIds.
3597 mRemovingUserIds.put(userId, true);
3598 mRecentlyRemovedIds.add(userId);
3599 // Keep LRU queue of recently removed IDs for recycling
3600 if (mRecentlyRemovedIds.size() > MAX_RECENTLY_REMOVED_IDS_SIZE) {
3601 mRecentlyRemovedIds.removeFirst();
3602 }
3603 }
3604
Bookatzf56f2582019-09-04 16:06:41 -07003605 void finishRemoveUser(final @UserIdInt int userId) {
3606 if (DBG) Slog.i(LOG_TAG, "finishRemoveUser " + userId);
Amith Yamasanidb6a14c2012-10-17 21:16:52 -07003607 // Let other services shutdown any activity and clean up their state before completely
3608 // wiping the user's system directory and removing from the user list
Dianne Hackborn5dc5a002012-09-15 19:33:48 -07003609 long ident = Binder.clearCallingIdentity();
3610 try {
3611 Intent addedIntent = new Intent(Intent.ACTION_USER_REMOVED);
Bookatzf56f2582019-09-04 16:06:41 -07003612 addedIntent.putExtra(Intent.EXTRA_USER_HANDLE, userId);
Amith Yamasanidb6a14c2012-10-17 21:16:52 -07003613 mContext.sendOrderedBroadcastAsUser(addedIntent, UserHandle.ALL,
3614 android.Manifest.permission.MANAGE_USERS,
3615
3616 new BroadcastReceiver() {
3617 @Override
3618 public void onReceive(Context context, Intent intent) {
3619 if (DBG) {
3620 Slog.i(LOG_TAG,
3621 "USER_REMOVED broadcast sent, cleaning up user data "
Bookatzf56f2582019-09-04 16:06:41 -07003622 + userId);
Amith Yamasanidb6a14c2012-10-17 21:16:52 -07003623 }
3624 new Thread() {
Amith Yamasani12747872015-12-07 14:19:49 -08003625 @Override
Amith Yamasanidb6a14c2012-10-17 21:16:52 -07003626 public void run() {
Wale Ogunwalea6191b42018-05-09 07:41:32 -07003627 // Clean up any ActivityTaskManager state
3628 LocalServices.getService(ActivityTaskManagerInternal.class)
Bookatzf56f2582019-09-04 16:06:41 -07003629 .onUserStopped(userId);
3630 removeUserState(userId);
Amith Yamasanidb6a14c2012-10-17 21:16:52 -07003631 }
3632 }.start();
3633 }
3634 },
3635
3636 null, Activity.RESULT_OK, null, null);
Dianne Hackborn5dc5a002012-09-15 19:33:48 -07003637 } finally {
3638 Binder.restoreCallingIdentity(ident);
3639 }
Amith Yamasani2a003292012-08-14 18:25:45 -07003640 }
3641
Bookatzf56f2582019-09-04 16:06:41 -07003642 private void removeUserState(final @UserIdInt int userId) {
Paul Crowley91293792016-03-25 15:23:07 -07003643 try {
Bookatzf56f2582019-09-04 16:06:41 -07003644 mContext.getSystemService(StorageManager.class).destroyUserKey(userId);
Paul Crowley91293792016-03-25 15:23:07 -07003645 } catch (IllegalStateException e) {
3646 // This may be simply because the user was partially created.
Bookatzf56f2582019-09-04 16:06:41 -07003647 Slog.i(LOG_TAG, "Destroying key for user " + userId + " failed, continuing anyway", e);
Paul Crowley91293792016-03-25 15:23:07 -07003648 }
Jeff Sharkeyfcf1e552016-04-14 20:44:58 -06003649
Amith Yamasanid04aaa32016-06-13 12:09:36 -07003650 // Cleanup gatekeeper secure user id
3651 try {
3652 final IGateKeeperService gk = GateKeeper.getService();
3653 if (gk != null) {
Bookatzf56f2582019-09-04 16:06:41 -07003654 gk.clearSecureUserId(userId);
Amith Yamasanid04aaa32016-06-13 12:09:36 -07003655 }
3656 } catch (Exception ex) {
3657 Slog.w(LOG_TAG, "unable to clear GK secure user id");
3658 }
3659
Dianne Hackbornd4ac8d72012-09-27 23:20:10 -07003660 // Cleanup package manager settings
Bookatzf56f2582019-09-04 16:06:41 -07003661 mPm.cleanUpUser(this, userId);
Amith Yamasanid04aaa32016-06-13 12:09:36 -07003662
3663 // Clean up all data before removing metadata
Bookatzf56f2582019-09-04 16:06:41 -07003664 mUserDataPreparer.destroyUserData(userId,
Amith Yamasanid04aaa32016-06-13 12:09:36 -07003665 StorageManager.FLAG_STORAGE_DE | StorageManager.FLAG_STORAGE_CE);
3666
Dianne Hackbornd4ac8d72012-09-27 23:20:10 -07003667 // Remove this user from the list
Fyodor Kupolov82402752015-10-28 14:54:51 -07003668 synchronized (mUsersLock) {
Bookatzf56f2582019-09-04 16:06:41 -07003669 mUsers.remove(userId);
3670 mIsUserManaged.delete(userId);
Amith Yamasaniea1b9d72016-05-27 15:57:38 +00003671 }
3672 synchronized (mUserStates) {
Bookatzf56f2582019-09-04 16:06:41 -07003673 mUserStates.delete(userId);
Makoto Onukie7927da2015-11-25 10:05:17 -08003674 }
3675 synchronized (mRestrictionsLock) {
Bookatzf56f2582019-09-04 16:06:41 -07003676 mBaseUserRestrictions.remove(userId);
3677 mAppliedUserRestrictions.remove(userId);
3678 mCachedEffectiveUserRestrictions.remove(userId);
3679 mDevicePolicyLocalUserRestrictions.remove(userId);
3680 if (mDevicePolicyGlobalUserRestrictions.get(userId) != null) {
3681 mDevicePolicyGlobalUserRestrictions.remove(userId);
Pavel Grafov6a40f092016-10-25 15:46:51 +01003682 applyUserRestrictionsForAllUsersLR();
3683 }
Fyodor Kupolov82402752015-10-28 14:54:51 -07003684 }
Dianne Hackbornd4ac8d72012-09-27 23:20:10 -07003685 // Update the user list
Fyodor Kupolove80085d2015-11-06 18:21:39 -08003686 synchronized (mPackagesLock) {
3687 writeUserListLP();
3688 }
Jeff Sharkeycd575992016-03-29 14:12:49 -06003689 // Remove user file
Bookatzf56f2582019-09-04 16:06:41 -07003690 AtomicFile userFile = new AtomicFile(new File(mUsersDir, userId + XML_SUFFIX));
Jeff Sharkeycd575992016-03-29 14:12:49 -06003691 userFile.delete();
Fyodor Kupolov82402752015-10-28 14:54:51 -07003692 updateUserIds();
Fyodor Kupolov0f4533d2016-05-18 18:43:12 -07003693 if (RELEASE_DELETED_USER_ID) {
3694 synchronized (mUsers) {
Bookatzf56f2582019-09-04 16:06:41 -07003695 mRemovingUserIds.delete(userId);
Fyodor Kupolov0f4533d2016-05-18 18:43:12 -07003696 }
3697 }
Amith Yamasani61f57372012-08-31 12:12:28 -07003698 }
3699
Kenny Guyf8d3a232014-05-15 16:09:52 +01003700 private void sendProfileRemovedBroadcast(int parentUserId, int removedUserId) {
Adam Connors7b66ed52014-04-14 11:58:10 +01003701 Intent managedProfileIntent = new Intent(Intent.ACTION_MANAGED_PROFILE_REMOVED);
Adam Connorsd4b584e2014-06-09 13:55:47 +01003702 managedProfileIntent.addFlags(Intent.FLAG_RECEIVER_REGISTERED_ONLY |
3703 Intent.FLAG_RECEIVER_FOREGROUND);
Kenny Guyf8d3a232014-05-15 16:09:52 +01003704 managedProfileIntent.putExtra(Intent.EXTRA_USER, new UserHandle(removedUserId));
Jeff Sharkeyaf6ec292015-12-17 11:19:00 -07003705 managedProfileIntent.putExtra(Intent.EXTRA_USER_HANDLE, removedUserId);
Kenny Guyf8d3a232014-05-15 16:09:52 +01003706 mContext.sendBroadcastAsUser(managedProfileIntent, new UserHandle(parentUserId), null);
Adam Connors7b66ed52014-04-14 11:58:10 +01003707 }
3708
Amith Yamasani2a003292012-08-14 18:25:45 -07003709 @Override
Amith Yamasani7e99bc02013-04-16 18:24:51 -07003710 public Bundle getApplicationRestrictions(String packageName) {
3711 return getApplicationRestrictionsForUser(packageName, UserHandle.getCallingUserId());
3712 }
3713
3714 @Override
Bookatzf56f2582019-09-04 16:06:41 -07003715 public Bundle getApplicationRestrictionsForUser(String packageName, @UserIdInt int userId) {
Amith Yamasanidf2e92a2013-03-01 17:04:38 -08003716 if (UserHandle.getCallingUserId() != userId
Amith Yamasani9429afb2013-04-10 18:40:51 -07003717 || !UserHandle.isSameApp(Binder.getCallingUid(), getUidForPackage(packageName))) {
Amith Yamasani0d1fd8d2016-10-12 14:21:51 -07003718 checkSystemOrRoot("get application restrictions for other user/app " + packageName);
Amith Yamasanidf2e92a2013-03-01 17:04:38 -08003719 }
Fyodor Kupolovd31cee92017-09-05 16:31:08 -07003720 synchronized (mAppRestrictionsLock) {
Amith Yamasanidf2e92a2013-03-01 17:04:38 -08003721 // Read the restrictions from XML
Fyodor Kupolovd31cee92017-09-05 16:31:08 -07003722 return readApplicationRestrictionsLAr(packageName, userId);
Amith Yamasanidf2e92a2013-03-01 17:04:38 -08003723 }
3724 }
3725
3726 @Override
Amith Yamasani7e99bc02013-04-16 18:24:51 -07003727 public void setApplicationRestrictions(String packageName, Bundle restrictions,
Bookatzf56f2582019-09-04 16:06:41 -07003728 @UserIdInt int userId) {
Esteban Talavera5b9f1672015-12-11 15:22:34 +00003729 checkSystemOrRoot("set application restrictions");
Fyodor Kupolov0d88d542016-04-19 11:37:22 -07003730 if (restrictions != null) {
3731 restrictions.setDefusable(true);
3732 }
Fyodor Kupolovd31cee92017-09-05 16:31:08 -07003733 synchronized (mAppRestrictionsLock) {
Kenny Guyd21b2182014-07-17 16:38:55 +01003734 if (restrictions == null || restrictions.isEmpty()) {
Fyodor Kupolovd31cee92017-09-05 16:31:08 -07003735 cleanAppRestrictionsForPackageLAr(packageName, userId);
Kenny Guyd21b2182014-07-17 16:38:55 +01003736 } else {
3737 // Write the restrictions to XML
Fyodor Kupolovd31cee92017-09-05 16:31:08 -07003738 writeApplicationRestrictionsLAr(packageName, restrictions, userId);
Kenny Guyd21b2182014-07-17 16:38:55 +01003739 }
Amith Yamasanidf2e92a2013-03-01 17:04:38 -08003740 }
Robin Lee66e5d962014-04-09 16:44:21 +01003741
Fyodor Kupolovd2846122016-02-11 18:06:34 -08003742 // Notify package of changes via an intent - only sent to explicitly registered receivers.
3743 Intent changeIntent = new Intent(Intent.ACTION_APPLICATION_RESTRICTIONS_CHANGED);
3744 changeIntent.setPackage(packageName);
3745 changeIntent.addFlags(Intent.FLAG_RECEIVER_REGISTERED_ONLY);
3746 mContext.sendBroadcastAsUser(changeIntent, UserHandle.of(userId));
Amith Yamasanidf2e92a2013-03-01 17:04:38 -08003747 }
3748
3749 private int getUidForPackage(String packageName) {
Amith Yamasani9429afb2013-04-10 18:40:51 -07003750 long ident = Binder.clearCallingIdentity();
Amith Yamasanidf2e92a2013-03-01 17:04:38 -08003751 try {
3752 return mContext.getPackageManager().getApplicationInfo(packageName,
Amith Yamasani0d1fd8d2016-10-12 14:21:51 -07003753 PackageManager.MATCH_ANY_USER).uid;
Amith Yamasanidf2e92a2013-03-01 17:04:38 -08003754 } catch (NameNotFoundException nnfe) {
3755 return -1;
Amith Yamasani9429afb2013-04-10 18:40:51 -07003756 } finally {
3757 Binder.restoreCallingIdentity(ident);
Amith Yamasanidf2e92a2013-03-01 17:04:38 -08003758 }
3759 }
3760
Fyodor Kupolovd31cee92017-09-05 16:31:08 -07003761 @GuardedBy("mAppRestrictionsLock")
Bookatzf56f2582019-09-04 16:06:41 -07003762 private static Bundle readApplicationRestrictionsLAr(String packageName,
3763 @UserIdInt int userId) {
Fyodor Kupolov262f9952015-03-23 18:55:11 -07003764 AtomicFile restrictionsFile =
3765 new AtomicFile(new File(Environment.getUserSystemDirectory(userId),
3766 packageToRestrictionsFileName(packageName)));
Fyodor Kupolovd31cee92017-09-05 16:31:08 -07003767 return readApplicationRestrictionsLAr(restrictionsFile);
Fyodor Kupolov262f9952015-03-23 18:55:11 -07003768 }
3769
3770 @VisibleForTesting
Fyodor Kupolovd31cee92017-09-05 16:31:08 -07003771 @GuardedBy("mAppRestrictionsLock")
3772 static Bundle readApplicationRestrictionsLAr(AtomicFile restrictionsFile) {
Amith Yamasani7e99bc02013-04-16 18:24:51 -07003773 final Bundle restrictions = new Bundle();
Fyodor Kupolov262f9952015-03-23 18:55:11 -07003774 final ArrayList<String> values = new ArrayList<>();
Fyodor Kupolov6f34d362015-04-02 12:42:13 -07003775 if (!restrictionsFile.getBaseFile().exists()) {
Fyodor Kupolovf6ee2242015-04-06 10:15:07 -07003776 return restrictions;
Fyodor Kupolov6f34d362015-04-02 12:42:13 -07003777 }
Amith Yamasanidf2e92a2013-03-01 17:04:38 -08003778
3779 FileInputStream fis = null;
3780 try {
Amith Yamasanidf2e92a2013-03-01 17:04:38 -08003781 fis = restrictionsFile.openRead();
3782 XmlPullParser parser = Xml.newPullParser();
Wojciech Staszkiewicz9e9e2e72015-05-08 14:58:46 +01003783 parser.setInput(fis, StandardCharsets.UTF_8.name());
Fyodor Kupolov262f9952015-03-23 18:55:11 -07003784 XmlUtils.nextElement(parser);
3785 if (parser.getEventType() != XmlPullParser.START_TAG) {
Amith Yamasanidf2e92a2013-03-01 17:04:38 -08003786 Slog.e(LOG_TAG, "Unable to read restrictions file "
3787 + restrictionsFile.getBaseFile());
Amith Yamasani7e99bc02013-04-16 18:24:51 -07003788 return restrictions;
Amith Yamasanidf2e92a2013-03-01 17:04:38 -08003789 }
Fyodor Kupolov262f9952015-03-23 18:55:11 -07003790 while (parser.next() != XmlPullParser.END_DOCUMENT) {
3791 readEntry(restrictions, values, parser);
Amith Yamasanidf2e92a2013-03-01 17:04:38 -08003792 }
Fyodor Kupolov262f9952015-03-23 18:55:11 -07003793 } catch (IOException|XmlPullParserException e) {
3794 Log.w(LOG_TAG, "Error parsing " + restrictionsFile.getBaseFile(), e);
Amith Yamasanidf2e92a2013-03-01 17:04:38 -08003795 } finally {
Fyodor Kupolov262f9952015-03-23 18:55:11 -07003796 IoUtils.closeQuietly(fis);
Amith Yamasanidf2e92a2013-03-01 17:04:38 -08003797 }
Amith Yamasani7e99bc02013-04-16 18:24:51 -07003798 return restrictions;
Amith Yamasanidf2e92a2013-03-01 17:04:38 -08003799 }
3800
Fyodor Kupolov262f9952015-03-23 18:55:11 -07003801 private static void readEntry(Bundle restrictions, ArrayList<String> values,
3802 XmlPullParser parser) throws XmlPullParserException, IOException {
3803 int type = parser.getEventType();
3804 if (type == XmlPullParser.START_TAG && parser.getName().equals(TAG_ENTRY)) {
3805 String key = parser.getAttributeValue(null, ATTR_KEY);
3806 String valType = parser.getAttributeValue(null, ATTR_VALUE_TYPE);
3807 String multiple = parser.getAttributeValue(null, ATTR_MULTIPLE);
3808 if (multiple != null) {
3809 values.clear();
3810 int count = Integer.parseInt(multiple);
3811 while (count > 0 && (type = parser.next()) != XmlPullParser.END_DOCUMENT) {
3812 if (type == XmlPullParser.START_TAG
3813 && parser.getName().equals(TAG_VALUE)) {
3814 values.add(parser.nextText().trim());
3815 count--;
3816 }
3817 }
3818 String [] valueStrings = new String[values.size()];
3819 values.toArray(valueStrings);
3820 restrictions.putStringArray(key, valueStrings);
3821 } else if (ATTR_TYPE_BUNDLE.equals(valType)) {
3822 restrictions.putBundle(key, readBundleEntry(parser, values));
3823 } else if (ATTR_TYPE_BUNDLE_ARRAY.equals(valType)) {
3824 final int outerDepth = parser.getDepth();
3825 ArrayList<Bundle> bundleList = new ArrayList<>();
3826 while (XmlUtils.nextElementWithin(parser, outerDepth)) {
3827 Bundle childBundle = readBundleEntry(parser, values);
3828 bundleList.add(childBundle);
3829 }
3830 restrictions.putParcelableArray(key,
3831 bundleList.toArray(new Bundle[bundleList.size()]));
3832 } else {
3833 String value = parser.nextText().trim();
3834 if (ATTR_TYPE_BOOLEAN.equals(valType)) {
3835 restrictions.putBoolean(key, Boolean.parseBoolean(value));
3836 } else if (ATTR_TYPE_INTEGER.equals(valType)) {
3837 restrictions.putInt(key, Integer.parseInt(value));
3838 } else {
3839 restrictions.putString(key, value);
3840 }
3841 }
3842 }
3843 }
3844
3845 private static Bundle readBundleEntry(XmlPullParser parser, ArrayList<String> values)
3846 throws IOException, XmlPullParserException {
3847 Bundle childBundle = new Bundle();
3848 final int outerDepth = parser.getDepth();
3849 while (XmlUtils.nextElementWithin(parser, outerDepth)) {
3850 readEntry(childBundle, values, parser);
3851 }
3852 return childBundle;
3853 }
3854
Fyodor Kupolovd31cee92017-09-05 16:31:08 -07003855 @GuardedBy("mAppRestrictionsLock")
3856 private static void writeApplicationRestrictionsLAr(String packageName,
Bookatzf56f2582019-09-04 16:06:41 -07003857 Bundle restrictions, @UserIdInt int userId) {
Amith Yamasanidf2e92a2013-03-01 17:04:38 -08003858 AtomicFile restrictionsFile = new AtomicFile(
3859 new File(Environment.getUserSystemDirectory(userId),
Amith Yamasanifc95e702013-09-26 13:20:17 -07003860 packageToRestrictionsFileName(packageName)));
Fyodor Kupolovd31cee92017-09-05 16:31:08 -07003861 writeApplicationRestrictionsLAr(restrictions, restrictionsFile);
Fyodor Kupolov262f9952015-03-23 18:55:11 -07003862 }
3863
3864 @VisibleForTesting
Fyodor Kupolovd31cee92017-09-05 16:31:08 -07003865 @GuardedBy("mAppRestrictionsLock")
3866 static void writeApplicationRestrictionsLAr(Bundle restrictions, AtomicFile restrictionsFile) {
Fyodor Kupolov262f9952015-03-23 18:55:11 -07003867 FileOutputStream fos = null;
Amith Yamasanidf2e92a2013-03-01 17:04:38 -08003868 try {
3869 fos = restrictionsFile.startWrite();
3870 final BufferedOutputStream bos = new BufferedOutputStream(fos);
3871
Amith Yamasanidf2e92a2013-03-01 17:04:38 -08003872 final XmlSerializer serializer = new FastXmlSerializer();
Wojciech Staszkiewicz9e9e2e72015-05-08 14:58:46 +01003873 serializer.setOutput(bos, StandardCharsets.UTF_8.name());
Amith Yamasanidf2e92a2013-03-01 17:04:38 -08003874 serializer.startDocument(null, true);
3875 serializer.setFeature("http://xmlpull.org/v1/doc/features.html#indent-output", true);
3876
3877 serializer.startTag(null, TAG_RESTRICTIONS);
Fyodor Kupolov262f9952015-03-23 18:55:11 -07003878 writeBundle(restrictions, serializer);
Amith Yamasanidf2e92a2013-03-01 17:04:38 -08003879 serializer.endTag(null, TAG_RESTRICTIONS);
3880
3881 serializer.endDocument();
3882 restrictionsFile.finishWrite(fos);
3883 } catch (Exception e) {
3884 restrictionsFile.failWrite(fos);
Fyodor Kupolov262f9952015-03-23 18:55:11 -07003885 Slog.e(LOG_TAG, "Error writing application restrictions list", e);
3886 }
3887 }
3888
3889 private static void writeBundle(Bundle restrictions, XmlSerializer serializer)
3890 throws IOException {
3891 for (String key : restrictions.keySet()) {
3892 Object value = restrictions.get(key);
3893 serializer.startTag(null, TAG_ENTRY);
3894 serializer.attribute(null, ATTR_KEY, key);
3895
3896 if (value instanceof Boolean) {
3897 serializer.attribute(null, ATTR_VALUE_TYPE, ATTR_TYPE_BOOLEAN);
3898 serializer.text(value.toString());
3899 } else if (value instanceof Integer) {
3900 serializer.attribute(null, ATTR_VALUE_TYPE, ATTR_TYPE_INTEGER);
3901 serializer.text(value.toString());
3902 } else if (value == null || value instanceof String) {
3903 serializer.attribute(null, ATTR_VALUE_TYPE, ATTR_TYPE_STRING);
3904 serializer.text(value != null ? (String) value : "");
3905 } else if (value instanceof Bundle) {
3906 serializer.attribute(null, ATTR_VALUE_TYPE, ATTR_TYPE_BUNDLE);
3907 writeBundle((Bundle) value, serializer);
3908 } else if (value instanceof Parcelable[]) {
3909 serializer.attribute(null, ATTR_VALUE_TYPE, ATTR_TYPE_BUNDLE_ARRAY);
3910 Parcelable[] array = (Parcelable[]) value;
3911 for (Parcelable parcelable : array) {
3912 if (!(parcelable instanceof Bundle)) {
3913 throw new IllegalArgumentException("bundle-array can only hold Bundles");
3914 }
3915 serializer.startTag(null, TAG_ENTRY);
3916 serializer.attribute(null, ATTR_VALUE_TYPE, ATTR_TYPE_BUNDLE);
3917 writeBundle((Bundle) parcelable, serializer);
3918 serializer.endTag(null, TAG_ENTRY);
3919 }
3920 } else {
3921 serializer.attribute(null, ATTR_VALUE_TYPE, ATTR_TYPE_STRING_ARRAY);
3922 String[] values = (String[]) value;
3923 serializer.attribute(null, ATTR_MULTIPLE, Integer.toString(values.length));
3924 for (String choice : values) {
3925 serializer.startTag(null, TAG_VALUE);
3926 serializer.text(choice != null ? choice : "");
3927 serializer.endTag(null, TAG_VALUE);
3928 }
3929 }
3930 serializer.endTag(null, TAG_ENTRY);
Amith Yamasanidf2e92a2013-03-01 17:04:38 -08003931 }
3932 }
3933
3934 @Override
Bookatzf56f2582019-09-04 16:06:41 -07003935 public int getUserSerialNumber(@UserIdInt int userId) {
Fyodor Kupolov82402752015-10-28 14:54:51 -07003936 synchronized (mUsersLock) {
Bookatzf56f2582019-09-04 16:06:41 -07003937 final UserInfo userInfo = getUserInfoLU(userId);
Pavel Grafov9c295d42019-03-26 19:42:08 +00003938 return userInfo != null ? userInfo.serialNumber : -1;
Amith Yamasani2a003292012-08-14 18:25:45 -07003939 }
3940 }
3941
3942 @Override
Bookatzf56f2582019-09-04 16:06:41 -07003943 public boolean isUserNameSet(@UserIdInt int userId) {
Fyodor Kupolov605b12a2017-05-10 15:58:09 -07003944 synchronized (mUsersLock) {
Bookatzf56f2582019-09-04 16:06:41 -07003945 final UserInfo userInfo = getUserInfoLU(userId);
Fyodor Kupolov605b12a2017-05-10 15:58:09 -07003946 return userInfo != null && userInfo.name != null;
3947 }
3948 }
3949
3950 @Override
Amith Yamasani2a003292012-08-14 18:25:45 -07003951 public int getUserHandle(int userSerialNumber) {
Fyodor Kupolov82402752015-10-28 14:54:51 -07003952 synchronized (mUsersLock) {
Amith Yamasani2a003292012-08-14 18:25:45 -07003953 for (int userId : mUserIds) {
Fyodor Kupolov82402752015-10-28 14:54:51 -07003954 UserInfo info = getUserInfoLU(userId);
Kenny Guy945f8832015-02-10 15:17:26 +00003955 if (info != null && info.serialNumber == userSerialNumber) return userId;
Amith Yamasani2a003292012-08-14 18:25:45 -07003956 }
3957 // Not found
3958 return -1;
Amith Yamasani13593602012-03-22 16:16:17 -07003959 }
3960 }
3961
Fyodor Kupolovff7233e2015-04-08 11:28:52 -07003962 @Override
Bookatzf56f2582019-09-04 16:06:41 -07003963 public long getUserCreationTime(@UserIdInt int userId) {
Fyodor Kupolovff7233e2015-04-08 11:28:52 -07003964 int callingUserId = UserHandle.getCallingUserId();
3965 UserInfo userInfo = null;
Fyodor Kupolov82402752015-10-28 14:54:51 -07003966 synchronized (mUsersLock) {
Bookatzf56f2582019-09-04 16:06:41 -07003967 if (callingUserId == userId) {
3968 userInfo = getUserInfoLU(userId);
Fyodor Kupolovff7233e2015-04-08 11:28:52 -07003969 } else {
Bookatzf56f2582019-09-04 16:06:41 -07003970 UserInfo parent = getProfileParentLU(userId);
Fyodor Kupolovff7233e2015-04-08 11:28:52 -07003971 if (parent != null && parent.id == callingUserId) {
Bookatzf56f2582019-09-04 16:06:41 -07003972 userInfo = getUserInfoLU(userId);
Fyodor Kupolovff7233e2015-04-08 11:28:52 -07003973 }
3974 }
3975 }
3976 if (userInfo == null) {
Bookatzf56f2582019-09-04 16:06:41 -07003977 throw new SecurityException("userId can only be the calling user or a managed "
Fyodor Kupolovff7233e2015-04-08 11:28:52 -07003978 + "profile associated with this user");
3979 }
3980 return userInfo.creationTime;
3981 }
3982
Amith Yamasani0b285492011-04-14 17:35:23 -07003983 /**
3984 * Caches the list of user ids in an array, adjusting the array size when necessary.
3985 */
Fyodor Kupolov82402752015-10-28 14:54:51 -07003986 private void updateUserIds() {
Dianne Hackbornd4ac8d72012-09-27 23:20:10 -07003987 int num = 0;
Fyodor Kupolov82402752015-10-28 14:54:51 -07003988 synchronized (mUsersLock) {
3989 final int userSize = mUsers.size();
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 num++;
3993 }
Dianne Hackbornd4ac8d72012-09-27 23:20:10 -07003994 }
Fyodor Kupolov82402752015-10-28 14:54:51 -07003995 final int[] newUsers = new int[num];
3996 int n = 0;
3997 for (int i = 0; i < userSize; i++) {
Amith Yamasani12747872015-12-07 14:19:49 -08003998 if (!mUsers.valueAt(i).info.partial) {
Fyodor Kupolov82402752015-10-28 14:54:51 -07003999 newUsers[n++] = mUsers.keyAt(i);
4000 }
Dianne Hackbornd4ac8d72012-09-27 23:20:10 -07004001 }
Fyodor Kupolov82402752015-10-28 14:54:51 -07004002 mUserIds = newUsers;
Amith Yamasani0b285492011-04-14 17:35:23 -07004003 }
4004 }
4005
4006 /**
Jeff Sharkey0e62384c2016-01-13 18:52:55 -07004007 * Called right before a user is started. This gives us a chance to prepare
4008 * app storage and apply any user restrictions.
Makoto Onuki1a2cd742015-11-16 13:51:27 -08004009 */
Bookatzf56f2582019-09-04 16:06:41 -07004010 public void onBeforeStartUser(@UserIdInt int userId) {
Fyodor Kupolovd80c3622016-07-19 17:22:09 -07004011 UserInfo userInfo = getUserInfo(userId);
4012 if (userInfo == null) {
4013 return;
4014 }
Felipe Leme3aad1be2019-05-31 11:43:12 -07004015 TimingsTraceAndSlog t = new TimingsTraceAndSlog();
4016 t.traceBegin("onBeforeStartUser-" + userId);
Fyodor Kupolovd80c3622016-07-19 17:22:09 -07004017 final int userSerial = userInfo.serialNumber;
4018 // Migrate only if build fingerprints mismatch
4019 boolean migrateAppsData = !Build.FINGERPRINT.equals(userInfo.lastLoggedInFingerprint);
Felipe Leme3aad1be2019-05-31 11:43:12 -07004020 t.traceBegin("prepareUserData");
Fyodor Kupolov5c0ecfd2017-01-27 11:11:57 -08004021 mUserDataPreparer.prepareUserData(userId, userSerial, StorageManager.FLAG_STORAGE_DE);
Felipe Leme3aad1be2019-05-31 11:43:12 -07004022 t.traceEnd();
4023 t.traceBegin("reconcileAppsData");
Fyodor Kupolovd80c3622016-07-19 17:22:09 -07004024 mPm.reconcileAppsData(userId, StorageManager.FLAG_STORAGE_DE, migrateAppsData);
Felipe Leme3aad1be2019-05-31 11:43:12 -07004025 t.traceEnd();
Jeff Sharkey0e62384c2016-01-13 18:52:55 -07004026
4027 if (userId != UserHandle.USER_SYSTEM) {
Felipe Leme3aad1be2019-05-31 11:43:12 -07004028 t.traceBegin("applyUserRestrictions");
Jeff Sharkey0e62384c2016-01-13 18:52:55 -07004029 synchronized (mRestrictionsLock) {
4030 applyUserRestrictionsLR(userId);
4031 }
Felipe Leme3aad1be2019-05-31 11:43:12 -07004032 t.traceEnd();
Makoto Onuki1a2cd742015-11-16 13:51:27 -08004033 }
Felipe Leme3aad1be2019-05-31 11:43:12 -07004034 t.traceEnd(); // onBeforeStartUser
Makoto Onuki1a2cd742015-11-16 13:51:27 -08004035 }
4036
4037 /**
Jeff Sharkey0e62384c2016-01-13 18:52:55 -07004038 * Called right before a user is unlocked. This gives us a chance to prepare
4039 * app storage.
4040 */
Jeff Sharkeybd91e2f2016-03-22 15:32:31 -06004041 public void onBeforeUnlockUser(@UserIdInt int userId) {
Fyodor Kupolovd80c3622016-07-19 17:22:09 -07004042 UserInfo userInfo = getUserInfo(userId);
4043 if (userInfo == null) {
4044 return;
4045 }
4046 final int userSerial = userInfo.serialNumber;
4047 // Migrate only if build fingerprints mismatch
4048 boolean migrateAppsData = !Build.FINGERPRINT.equals(userInfo.lastLoggedInFingerprint);
Fyodor Kupolov5c0ecfd2017-01-27 11:11:57 -08004049 mUserDataPreparer.prepareUserData(userId, userSerial, StorageManager.FLAG_STORAGE_CE);
Fyodor Kupolovd80c3622016-07-19 17:22:09 -07004050 mPm.reconcileAppsData(userId, StorageManager.FLAG_STORAGE_CE, migrateAppsData);
Jeff Sharkey0e62384c2016-01-13 18:52:55 -07004051 }
4052
4053 /**
Fyodor Kupolov50979d12017-01-27 17:36:32 -08004054 * Examine all users present on given mounted volume, and destroy data
4055 * belonging to users that are no longer valid, or whose user ID has been
4056 * recycled.
4057 */
4058 void reconcileUsers(String volumeUuid) {
4059 mUserDataPreparer.reconcileUsers(volumeUuid, getUsers(true /* excludeDying */));
4060 }
4061
4062 /**
Amith Yamasani1a7472e2013-07-02 11:17:30 -07004063 * Make a note of the last started time of a user and do some cleanup.
Amith Yamasanieb437d42016-04-29 09:31:25 -07004064 * This is called with ActivityManagerService lock held.
Amith Yamasani920ace02012-09-20 22:15:37 -07004065 * @param userId the user that was just foregrounded
4066 */
Jeff Sharkeybd91e2f2016-03-22 15:32:31 -06004067 public void onUserLoggedIn(@UserIdInt int userId) {
Amith Yamasani12747872015-12-07 14:19:49 -08004068 UserData userData = getUserDataNoChecks(userId);
4069 if (userData == null || userData.info.partial) {
Fyodor Kupolove80085d2015-11-06 18:21:39 -08004070 Slog.w(LOG_TAG, "userForeground: unknown user #" + userId);
4071 return;
4072 }
Jeff Sharkeybd91e2f2016-03-22 15:32:31 -06004073
4074 final long now = System.currentTimeMillis();
Fyodor Kupolove80085d2015-11-06 18:21:39 -08004075 if (now > EPOCH_PLUS_30_YEARS) {
Amith Yamasani12747872015-12-07 14:19:49 -08004076 userData.info.lastLoggedInTime = now;
Amith Yamasani920ace02012-09-20 22:15:37 -07004077 }
Jeff Sharkeybd91e2f2016-03-22 15:32:31 -06004078 userData.info.lastLoggedInFingerprint = Build.FINGERPRINT;
4079 scheduleWriteUser(userData);
Amith Yamasani920ace02012-09-20 22:15:37 -07004080 }
4081
4082 /**
Amith Yamasani0b285492011-04-14 17:35:23 -07004083 * Returns the next available user id, filling in any holes in the ids.
Amith Yamasani0b285492011-04-14 17:35:23 -07004084 */
Fyodor Kupolov0f4533d2016-05-18 18:43:12 -07004085 @VisibleForTesting
4086 int getNextAvailableId() {
4087 int nextId;
Fyodor Kupolov82402752015-10-28 14:54:51 -07004088 synchronized (mUsersLock) {
Fyodor Kupolov0f4533d2016-05-18 18:43:12 -07004089 nextId = scanNextAvailableIdLocked();
4090 if (nextId >= 0) {
4091 return nextId;
4092 }
4093 // All ids up to MAX_USER_ID were used. Remove all mRemovingUserIds,
4094 // except most recently removed
4095 if (mRemovingUserIds.size() > 0) {
4096 Slog.i(LOG_TAG, "All available IDs are used. Recycling LRU ids.");
4097 mRemovingUserIds.clear();
4098 for (Integer recentlyRemovedId : mRecentlyRemovedIds) {
4099 mRemovingUserIds.put(recentlyRemovedId, true);
Amith Yamasani195263742012-08-21 15:40:12 -07004100 }
Fyodor Kupolov0f4533d2016-05-18 18:43:12 -07004101 nextId = scanNextAvailableIdLocked();
Amith Yamasani4b2e9342011-03-31 12:38:53 -07004102 }
Amith Yamasani4b2e9342011-03-31 12:38:53 -07004103 }
Fyodor Kupolov0f4533d2016-05-18 18:43:12 -07004104 if (nextId < 0) {
4105 throw new IllegalStateException("No user id available!");
4106 }
4107 return nextId;
4108 }
4109
Andreas Gampea36dc622018-02-05 17:19:22 -08004110 @GuardedBy("mUsersLock")
Fyodor Kupolov0f4533d2016-05-18 18:43:12 -07004111 private int scanNextAvailableIdLocked() {
4112 for (int i = MIN_USER_ID; i < MAX_USER_ID; i++) {
4113 if (mUsers.indexOfKey(i) < 0 && !mRemovingUserIds.get(i)) {
4114 return i;
4115 }
4116 }
4117 return -1;
Amith Yamasani4b2e9342011-03-31 12:38:53 -07004118 }
Amith Yamasani920ace02012-09-20 22:15:37 -07004119
Fyodor Kupolovd31cee92017-09-05 16:31:08 -07004120 private static String packageToRestrictionsFileName(String packageName) {
Amith Yamasanifc95e702013-09-26 13:20:17 -07004121 return RESTRICTIONS_FILE_PREFIX + packageName + XML_SUFFIX;
4122 }
4123
Amith Yamasani920ace02012-09-20 22:15:37 -07004124 @Override
Bookatzf56f2582019-09-04 16:06:41 -07004125 public void setSeedAccountData(@UserIdInt int userId, String accountName, String accountType,
Amith Yamasani12747872015-12-07 14:19:49 -08004126 PersistableBundle accountOptions, boolean persist) {
4127 checkManageUsersPermission("Require MANAGE_USERS permission to set user seed data");
4128 synchronized (mPackagesLock) {
4129 final UserData userData;
4130 synchronized (mUsersLock) {
4131 userData = getUserDataLU(userId);
4132 if (userData == null) {
4133 Slog.e(LOG_TAG, "No such user for settings seed data u=" + userId);
4134 return;
4135 }
4136 userData.seedAccountName = accountName;
4137 userData.seedAccountType = accountType;
4138 userData.seedAccountOptions = accountOptions;
4139 userData.persistSeedData = persist;
4140 }
4141 if (persist) {
4142 writeUserLP(userData);
4143 }
4144 }
4145 }
4146
4147 @Override
4148 public String getSeedAccountName() throws RemoteException {
4149 checkManageUsersPermission("Cannot get seed account information");
4150 synchronized (mUsersLock) {
4151 UserData userData = getUserDataLU(UserHandle.getCallingUserId());
4152 return userData.seedAccountName;
4153 }
4154 }
4155
4156 @Override
4157 public String getSeedAccountType() throws RemoteException {
4158 checkManageUsersPermission("Cannot get seed account information");
4159 synchronized (mUsersLock) {
4160 UserData userData = getUserDataLU(UserHandle.getCallingUserId());
4161 return userData.seedAccountType;
4162 }
4163 }
4164
4165 @Override
4166 public PersistableBundle getSeedAccountOptions() throws RemoteException {
4167 checkManageUsersPermission("Cannot get seed account information");
4168 synchronized (mUsersLock) {
4169 UserData userData = getUserDataLU(UserHandle.getCallingUserId());
4170 return userData.seedAccountOptions;
4171 }
4172 }
4173
4174 @Override
4175 public void clearSeedAccountData() throws RemoteException {
4176 checkManageUsersPermission("Cannot clear seed account information");
4177 synchronized (mPackagesLock) {
4178 UserData userData;
4179 synchronized (mUsersLock) {
4180 userData = getUserDataLU(UserHandle.getCallingUserId());
4181 if (userData == null) return;
4182 userData.clearSeedAccountData();
4183 }
4184 writeUserLP(userData);
4185 }
4186 }
4187
4188 @Override
4189 public boolean someUserHasSeedAccount(String accountName, String accountType)
4190 throws RemoteException {
4191 checkManageUsersPermission("Cannot check seed account information");
4192 synchronized (mUsersLock) {
4193 final int userSize = mUsers.size();
4194 for (int i = 0; i < userSize; i++) {
4195 final UserData data = mUsers.valueAt(i);
4196 if (data.info.isInitialized()) continue;
4197 if (data.seedAccountName == null || !data.seedAccountName.equals(accountName)) {
4198 continue;
4199 }
4200 if (data.seedAccountType == null || !data.seedAccountType.equals(accountType)) {
4201 continue;
4202 }
4203 return true;
4204 }
4205 }
4206 return false;
4207 }
4208
4209 @Override
Todd Kennedy60459ab2015-10-30 11:32:16 -07004210 public void onShellCommand(FileDescriptor in, FileDescriptor out,
Dianne Hackborn354736e2016-08-22 17:00:05 -07004211 FileDescriptor err, String[] args, ShellCallback callback,
4212 ResultReceiver resultReceiver) {
4213 (new Shell()).exec(this, in, out, err, args, callback, resultReceiver);
Todd Kennedy60459ab2015-10-30 11:32:16 -07004214 }
4215
4216 int onShellCommand(Shell shell, String cmd) {
4217 if (cmd == null) {
4218 return shell.handleDefaultCommands(cmd);
4219 }
4220
4221 final PrintWriter pw = shell.getOutPrintWriter();
4222 try {
4223 switch(cmd) {
4224 case "list":
Felipe Lemec1ca4412019-09-11 09:23:26 -07004225 return runList(pw, shell);
Hui Yu8ba65972018-04-16 18:45:48 -07004226 default:
4227 return shell.handleDefaultCommands(cmd);
Todd Kennedy60459ab2015-10-30 11:32:16 -07004228 }
4229 } catch (RemoteException e) {
4230 pw.println("Remote exception: " + e);
4231 }
4232 return -1;
4233 }
4234
Felipe Lemec1ca4412019-09-11 09:23:26 -07004235 private int runList(PrintWriter pw, Shell shell) throws RemoteException {
4236 boolean all = false;
4237 boolean verbose = false;
4238 String opt;
4239 while ((opt = shell.getNextOption()) != null) {
4240 switch (opt) {
4241 case "-v":
4242 verbose = true;
4243 break;
4244 case "--all":
4245 all = true;
4246 break;
4247 default:
4248 pw.println("Invalid option: " + opt);
4249 return -1;
4250 }
4251 }
Sudheer Shankadc589ac2016-11-10 15:30:17 -08004252 final IActivityManager am = ActivityManager.getService();
Felipe Lemec1ca4412019-09-11 09:23:26 -07004253 final List<UserInfo> users = getUsers(/* excludePartial= */ !all,
4254 /* excludingDying=*/ false, /* excludePreCreated= */ !all);
Todd Kennedy60459ab2015-10-30 11:32:16 -07004255 if (users == null) {
4256 pw.println("Error: couldn't get users");
4257 return 1;
4258 } else {
Felipe Lemec1ca4412019-09-11 09:23:26 -07004259 final int size = users.size();
4260 int currentUser = UserHandle.USER_NULL;
4261 if (verbose) {
4262 pw.printf("%d users:\n\n", size);
4263 currentUser = am.getCurrentUser().id;
4264 } else {
4265 // NOTE: the standard "list users" command is used by integration tests and
4266 // hence should not be changed. If you need to add more info, use the
4267 // verbose option.
4268 pw.println("Users:");
4269 }
4270 for (int i = 0; i < size; i++) {
4271 final UserInfo user = users.get(i);
4272 final boolean running = am.isUserRunning(user.id, 0);
4273 final boolean current = user.id == currentUser;
4274 if (verbose) {
4275 pw.printf("%d: id=%d, name=%s, flags=%s%s%s%s%s\n", i, user.id, user.name,
4276 UserInfo.flagsToString(user.flags),
4277 running ? " (running)" : "",
4278 user.partial ? " (partial)" : "",
4279 user.preCreated ? " (pre-created)" : "",
4280 current ? " (current)" : "");
4281 } else {
4282 // NOTE: the standard "list users" command is used by integration tests and
4283 // hence should not be changed. If you need to add more info, use the
4284 // verbose option.
4285 pw.printf("\t%s%s\n", user, running ? " running" : "");
4286 }
Todd Kennedy60459ab2015-10-30 11:32:16 -07004287 }
4288 return 0;
4289 }
4290 }
4291
4292 @Override
Amith Yamasani920ace02012-09-20 22:15:37 -07004293 protected void dump(FileDescriptor fd, PrintWriter pw, String[] args) {
Jeff Sharkeyfe9a53b2017-03-31 14:08:23 -06004294 if (!DumpUtils.checkDumpPermission(mContext, LOG_TAG, pw)) return;
Amith Yamasani920ace02012-09-20 22:15:37 -07004295
4296 long now = System.currentTimeMillis();
Makoto Onuki73dded22017-12-20 13:14:48 +09004297 final long nowRealtime = SystemClock.elapsedRealtime();
Felipe Lemed7b88382019-06-12 17:40:53 -07004298
Felipe Leme5b8dc762019-10-04 16:23:16 -07004299 final ActivityManagerInternal amInternal = LocalServices
4300 .getService(ActivityManagerInternal.class);
4301 pw.print("Current user: ");
4302 if (amInternal != null) {
4303 pw.println(amInternal.getCurrentUserId());
4304 } else {
4305 pw.println("N/A");
4306 }
Felipe Lemed7b88382019-06-12 17:40:53 -07004307
Amith Yamasani920ace02012-09-20 22:15:37 -07004308 StringBuilder sb = new StringBuilder();
4309 synchronized (mPackagesLock) {
Fyodor Kupolov82402752015-10-28 14:54:51 -07004310 synchronized (mUsersLock) {
4311 pw.println("Users:");
4312 for (int i = 0; i < mUsers.size(); i++) {
Amith Yamasani12747872015-12-07 14:19:49 -08004313 UserData userData = mUsers.valueAt(i);
4314 if (userData == null) {
Fyodor Kupolov82402752015-10-28 14:54:51 -07004315 continue;
4316 }
Amith Yamasani12747872015-12-07 14:19:49 -08004317 UserInfo userInfo = userData.info;
4318 final int userId = userInfo.id;
4319 pw.print(" "); pw.print(userInfo);
4320 pw.print(" serialNo="); pw.print(userInfo.serialNumber);
Felipe Lemed7b88382019-06-12 17:40:53 -07004321 pw.print(" isPrimary="); pw.print(userInfo.isPrimary());
Makoto Onukie7927da2015-11-25 10:05:17 -08004322 if (mRemovingUserIds.get(userId)) {
Fyodor Kupolov82402752015-10-28 14:54:51 -07004323 pw.print(" <removing> ");
4324 }
Amith Yamasani12747872015-12-07 14:19:49 -08004325 if (userInfo.partial) {
Fyodor Kupolov82402752015-10-28 14:54:51 -07004326 pw.print(" <partial>");
4327 }
Felipe Lemec1ca4412019-09-11 09:23:26 -07004328 if (userInfo.preCreated) {
4329 pw.print(" <pre-created>");
4330 }
Fyodor Kupolov82402752015-10-28 14:54:51 -07004331 pw.println();
Bookatz029832a2019-10-04 16:50:22 -07004332 pw.print(" Type: "); pw.println(userInfo.userType);
Felipe Lemee5434c32019-08-13 09:28:33 -07004333 pw.print(" Flags: "); pw.print(userInfo.flags); pw.print(" (");
4334 pw.print(UserInfo.flagsToString(userInfo.flags)); pw.println(")");
Makoto Onuki88aef752017-03-29 16:52:03 -07004335 pw.print(" State: ");
4336 final int state;
4337 synchronized (mUserStates) {
4338 state = mUserStates.get(userId, -1);
4339 }
4340 pw.println(UserState.stateToString(state));
Fyodor Kupolov82402752015-10-28 14:54:51 -07004341 pw.print(" Created: ");
Makoto Onuki73dded22017-12-20 13:14:48 +09004342 dumpTimeAgo(pw, sb, now, userInfo.creationTime);
4343
Fyodor Kupolov82402752015-10-28 14:54:51 -07004344 pw.print(" Last logged in: ");
Makoto Onuki73dded22017-12-20 13:14:48 +09004345 dumpTimeAgo(pw, sb, now, userInfo.lastLoggedInTime);
4346
Jeff Sharkeybd91e2f2016-03-22 15:32:31 -06004347 pw.print(" Last logged in fingerprint: ");
4348 pw.println(userInfo.lastLoggedInFingerprint);
Makoto Onuki73dded22017-12-20 13:14:48 +09004349
4350 pw.print(" Start time: ");
4351 dumpTimeAgo(pw, sb, nowRealtime, userData.startRealtime);
4352
4353 pw.print(" Unlock time: ");
4354 dumpTimeAgo(pw, sb, nowRealtime, userData.unlockRealtime);
4355
Makoto Onukie7927da2015-11-25 10:05:17 -08004356 pw.print(" Has profile owner: ");
4357 pw.println(mIsUserManaged.get(userId));
Fyodor Kupolov82402752015-10-28 14:54:51 -07004358 pw.println(" Restrictions:");
4359 synchronized (mRestrictionsLock) {
4360 UserRestrictionsUtils.dumpRestrictions(
Amith Yamasani12747872015-12-07 14:19:49 -08004361 pw, " ", mBaseUserRestrictions.get(userInfo.id));
Pavel Grafov6a40f092016-10-25 15:46:51 +01004362 pw.println(" Device policy global restrictions:");
4363 UserRestrictionsUtils.dumpRestrictions(
4364 pw, " ", mDevicePolicyGlobalUserRestrictions.get(userInfo.id));
Makoto Onuki1a2cd742015-11-16 13:51:27 -08004365 pw.println(" Device policy local restrictions:");
4366 UserRestrictionsUtils.dumpRestrictions(
Amith Yamasani12747872015-12-07 14:19:49 -08004367 pw, " ", mDevicePolicyLocalUserRestrictions.get(userInfo.id));
Fyodor Kupolov82402752015-10-28 14:54:51 -07004368 pw.println(" Effective restrictions:");
4369 UserRestrictionsUtils.dumpRestrictions(
Amith Yamasani12747872015-12-07 14:19:49 -08004370 pw, " ", mCachedEffectiveUserRestrictions.get(userInfo.id));
Fyodor Kupolov82402752015-10-28 14:54:51 -07004371 }
Amith Yamasani12747872015-12-07 14:19:49 -08004372
4373 if (userData.account != null) {
4374 pw.print(" Account name: " + userData.account);
Xiaohui Chenb3b92582015-12-07 11:22:13 -08004375 pw.println();
4376 }
Amith Yamasani12747872015-12-07 14:19:49 -08004377
4378 if (userData.seedAccountName != null) {
4379 pw.print(" Seed account name: " + userData.seedAccountName);
4380 pw.println();
4381 if (userData.seedAccountType != null) {
4382 pw.print(" account type: " + userData.seedAccountType);
4383 pw.println();
4384 }
4385 if (userData.seedAccountOptions != null) {
4386 pw.print(" account options exist");
4387 pw.println();
4388 }
4389 }
Amith Yamasani920ace02012-09-20 22:15:37 -07004390 }
Amith Yamasani920ace02012-09-20 22:15:37 -07004391 }
Amith Yamasani12747872015-12-07 14:19:49 -08004392 pw.println();
Pavel Grafov6a40f092016-10-25 15:46:51 +01004393 pw.println(" Device owner id:" + mDeviceOwnerUserId);
Zoltan Szatmary-Bane7834602016-04-08 18:41:11 +01004394 pw.println();
Makoto Onuki1a2cd742015-11-16 13:51:27 -08004395 pw.println(" Guest restrictions:");
Fyodor Kupolove80085d2015-11-06 18:21:39 -08004396 synchronized (mGuestRestrictions) {
Makoto Onuki1a2cd742015-11-16 13:51:27 -08004397 UserRestrictionsUtils.dumpRestrictions(pw, " ", mGuestRestrictions);
Fyodor Kupolove80085d2015-11-06 18:21:39 -08004398 }
Makoto Onukie7927da2015-11-25 10:05:17 -08004399 synchronized (mUsersLock) {
4400 pw.println();
4401 pw.println(" Device managed: " + mIsDeviceManaged);
Fyodor Kupolov0f4533d2016-05-18 18:43:12 -07004402 if (mRemovingUserIds.size() > 0) {
4403 pw.println();
4404 pw.println(" Recently removed userIds: " + mRecentlyRemovedIds);
4405 }
Makoto Onukie7927da2015-11-25 10:05:17 -08004406 }
Amith Yamasaniea1b9d72016-05-27 15:57:38 +00004407 synchronized (mUserStates) {
4408 pw.println(" Started users state: " + mUserStates);
4409 }
Felipe Lemed7b88382019-06-12 17:40:53 -07004410 } // synchronized (mPackagesLock)
4411
4412 // Dump some capabilities
4413 pw.println();
Felipe Lemec1ca4412019-09-11 09:23:26 -07004414 pw.print(" Max users: " + UserManager.getMaxSupportedUsers());
4415 pw.println(" (limit reached: " + isUserLimitReached() + ")");
Felipe Lemed7b88382019-06-12 17:40:53 -07004416 pw.println(" Supports switchable users: " + UserManager.supportsMultipleUsers());
Bookatz029832a2019-10-04 16:50:22 -07004417 pw.println(" All guests ephemeral: " + Resources.getSystem().getBoolean(
4418 com.android.internal.R.bool.config_guestUserEphemeral));
Felipe Lemed1def612019-10-29 18:03:18 -07004419 pw.println(" Force ephemeral users: " + mForceEphemeralUsers);
Felipe Lemed7b88382019-06-12 17:40:53 -07004420 pw.println(" Is split-system user: " + UserManager.isSplitSystemUser());
Felipe Lemee5434c32019-08-13 09:28:33 -07004421 pw.println(" Is headless-system mode: " + UserManager.isHeadlessSystemUserMode());
4422 pw.println(" User version: " + mUserVersion);
Bookatz04d7ae52019-08-05 14:07:12 -07004423
Bookatz029832a2019-10-04 16:50:22 -07004424 // Dump UserTypes
4425 pw.println();
4426 pw.println(" User types (" + mUserTypes.size() + " types):");
4427 for (int i = 0; i < mUserTypes.size(); i++) {
4428 pw.println(" " + mUserTypes.keyAt(i) + ": ");
4429 mUserTypes.valueAt(i).dump(pw);
4430 }
4431
Bookatz04d7ae52019-08-05 14:07:12 -07004432 // Dump package whitelist
4433 pw.println();
4434 mSystemPackageInstaller.dump(pw);
Amith Yamasani920ace02012-09-20 22:15:37 -07004435 }
Fyodor Kupolov75d0ea82014-12-15 16:21:07 -08004436
Makoto Onuki73dded22017-12-20 13:14:48 +09004437 private static void dumpTimeAgo(PrintWriter pw, StringBuilder sb, long nowTime, long time) {
4438 if (time == 0) {
4439 pw.println("<unknown>");
4440 } else {
4441 sb.setLength(0);
4442 TimeUtils.formatDuration(nowTime - time, sb);
4443 sb.append(" ago");
4444 pw.println(sb);
4445 }
4446 }
4447
Fyodor Kupolov75d0ea82014-12-15 16:21:07 -08004448 final class MainHandler extends Handler {
4449
4450 @Override
4451 public void handleMessage(Message msg) {
4452 switch (msg.what) {
4453 case WRITE_USER_MSG:
4454 removeMessages(WRITE_USER_MSG, msg.obj);
4455 synchronized (mPackagesLock) {
Amith Yamasani12747872015-12-07 14:19:49 -08004456 int userId = ((UserData) msg.obj).info.id;
4457 UserData userData = getUserDataNoChecks(userId);
4458 if (userData != null) {
4459 writeUserLP(userData);
Fyodor Kupolov75d0ea82014-12-15 16:21:07 -08004460 }
4461 }
4462 }
4463 }
4464 }
Amith Yamasanibb054c92015-07-09 14:16:27 -07004465
4466 /**
4467 * @param userId
4468 * @return whether the user has been initialized yet
4469 */
Bookatzf56f2582019-09-04 16:06:41 -07004470 boolean isUserInitialized(@UserIdInt int userId) {
Todd Kennedy0eb97382017-10-03 16:57:22 -07004471 return mLocalService.isUserInitialized(userId);
Amith Yamasanibb054c92015-07-09 14:16:27 -07004472 }
Makoto Onuki068c54a2015-10-13 14:34:03 -07004473
4474 private class LocalService extends UserManagerInternal {
Makoto Onuki068c54a2015-10-13 14:34:03 -07004475 @Override
Bookatzf56f2582019-09-04 16:06:41 -07004476 public void setDevicePolicyUserRestrictions(@UserIdInt int userId,
4477 @Nullable Bundle restrictions, boolean isDeviceOwner, int cameraRestrictionScope) {
Pavel Grafov6a40f092016-10-25 15:46:51 +01004478 UserManagerService.this.setDevicePolicyUserRestrictionsInner(userId, restrictions,
4479 isDeviceOwner, cameraRestrictionScope);
Makoto Onuki068c54a2015-10-13 14:34:03 -07004480 }
4481
4482 @Override
Bookatzf56f2582019-09-04 16:06:41 -07004483 public Bundle getBaseUserRestrictions(@UserIdInt int userId) {
Makoto Onuki068c54a2015-10-13 14:34:03 -07004484 synchronized (mRestrictionsLock) {
4485 return mBaseUserRestrictions.get(userId);
4486 }
4487 }
4488
4489 @Override
4490 public void setBaseUserRestrictionsByDpmsForMigration(
Bookatzf56f2582019-09-04 16:06:41 -07004491 @UserIdInt int userId, Bundle baseRestrictions) {
Makoto Onuki068c54a2015-10-13 14:34:03 -07004492 synchronized (mRestrictionsLock) {
Pavel Grafov6a40f092016-10-25 15:46:51 +01004493 if (updateRestrictionsIfNeededLR(
4494 userId, new Bundle(baseRestrictions), mBaseUserRestrictions)) {
4495 invalidateEffectiveUserRestrictionsLR(userId);
4496 }
Makoto Onuki068c54a2015-10-13 14:34:03 -07004497 }
4498
Amith Yamasani12747872015-12-07 14:19:49 -08004499 final UserData userData = getUserDataNoChecks(userId);
Makoto Onuki068c54a2015-10-13 14:34:03 -07004500 synchronized (mPackagesLock) {
Amith Yamasani12747872015-12-07 14:19:49 -08004501 if (userData != null) {
4502 writeUserLP(userData);
Makoto Onuki068c54a2015-10-13 14:34:03 -07004503 } else {
4504 Slog.w(LOG_TAG, "UserInfo not found for " + userId);
4505 }
4506 }
4507 }
Makoto Onukid45a4a22015-11-02 17:17:38 -08004508
4509 @Override
Bookatzf56f2582019-09-04 16:06:41 -07004510 public boolean getUserRestriction(@UserIdInt int userId, String key) {
Makoto Onukid45a4a22015-11-02 17:17:38 -08004511 return getUserRestrictions(userId).getBoolean(key);
4512 }
4513
4514 @Override
4515 public void addUserRestrictionsListener(UserRestrictionsListener listener) {
4516 synchronized (mUserRestrictionsListeners) {
4517 mUserRestrictionsListeners.add(listener);
4518 }
4519 }
4520
4521 @Override
4522 public void removeUserRestrictionsListener(UserRestrictionsListener listener) {
4523 synchronized (mUserRestrictionsListeners) {
4524 mUserRestrictionsListeners.remove(listener);
4525 }
4526 }
Makoto Onukie7927da2015-11-25 10:05:17 -08004527
4528 @Override
4529 public void setDeviceManaged(boolean isManaged) {
4530 synchronized (mUsersLock) {
4531 mIsDeviceManaged = isManaged;
4532 }
4533 }
4534
4535 @Override
Rubin Xu0f1e56d2019-08-23 13:34:25 +01004536 public boolean isDeviceManaged() {
4537 synchronized (mUsersLock) {
4538 return mIsDeviceManaged;
4539 }
4540 }
4541
4542 @Override
Bookatzf56f2582019-09-04 16:06:41 -07004543 public void setUserManaged(@UserIdInt int userId, boolean isManaged) {
Makoto Onukie7927da2015-11-25 10:05:17 -08004544 synchronized (mUsersLock) {
4545 mIsUserManaged.put(userId, isManaged);
4546 }
4547 }
Oleksandr Peletskyi7f1f1df2016-01-18 15:40:21 +01004548
4549 @Override
Rubin Xu0f1e56d2019-08-23 13:34:25 +01004550 public boolean isUserManaged(@UserIdInt int userId) {
4551 synchronized (mUsersLock) {
4552 return mIsUserManaged.get(userId);
4553 }
4554 }
4555
4556 @Override
Bookatzf56f2582019-09-04 16:06:41 -07004557 public void setUserIcon(@UserIdInt int userId, Bitmap bitmap) {
Oleksandr Peletskyi7f1f1df2016-01-18 15:40:21 +01004558 long ident = Binder.clearCallingIdentity();
4559 try {
4560 synchronized (mPackagesLock) {
4561 UserData userData = getUserDataNoChecks(userId);
4562 if (userData == null || userData.info.partial) {
4563 Slog.w(LOG_TAG, "setUserIcon: unknown user #" + userId);
4564 return;
4565 }
4566 writeBitmapLP(userData.info, bitmap);
4567 writeUserLP(userData);
4568 }
4569 sendUserInfoChangedBroadcast(userId);
4570 } finally {
4571 Binder.restoreCallingIdentity(ident);
4572 }
4573 }
Lenka Trochtovaf348e8e2016-01-07 17:20:34 +01004574
4575 @Override
4576 public void setForceEphemeralUsers(boolean forceEphemeralUsers) {
4577 synchronized (mUsersLock) {
4578 mForceEphemeralUsers = forceEphemeralUsers;
4579 }
4580 }
4581
4582 @Override
4583 public void removeAllUsers() {
4584 if (UserHandle.USER_SYSTEM == ActivityManager.getCurrentUser()) {
4585 // Remove the non-system users straight away.
4586 removeNonSystemUsers();
4587 } else {
4588 // Switch to the system user first and then remove the other users.
4589 BroadcastReceiver userSwitchedReceiver = new BroadcastReceiver() {
4590 @Override
4591 public void onReceive(Context context, Intent intent) {
4592 int userId =
4593 intent.getIntExtra(Intent.EXTRA_USER_HANDLE, UserHandle.USER_NULL);
4594 if (userId != UserHandle.USER_SYSTEM) {
4595 return;
4596 }
4597 mContext.unregisterReceiver(this);
4598 removeNonSystemUsers();
4599 }
4600 };
4601 IntentFilter userSwitchedFilter = new IntentFilter();
4602 userSwitchedFilter.addAction(Intent.ACTION_USER_SWITCHED);
4603 mContext.registerReceiver(
4604 userSwitchedReceiver, userSwitchedFilter, null, mHandler);
4605
4606 // Switch to the system user.
4607 ActivityManager am =
4608 (ActivityManager) mContext.getSystemService(Context.ACTIVITY_SERVICE);
4609 am.switchUser(UserHandle.USER_SYSTEM);
4610 }
4611 }
phweisse9c44062016-02-10 12:57:38 +01004612
4613 @Override
Bookatzf56f2582019-09-04 16:06:41 -07004614 public void onEphemeralUserStop(@UserIdInt int userId) {
Lenka Trochtova1ddda472016-02-12 10:42:12 +01004615 synchronized (mUsersLock) {
4616 UserInfo userInfo = getUserInfoLU(userId);
4617 if (userInfo != null && userInfo.isEphemeral()) {
4618 // Do not allow switching back to the ephemeral user again as the user is going
4619 // to be deleted.
4620 userInfo.flags |= UserInfo.FLAG_DISABLED;
4621 if (userInfo.isGuest()) {
4622 // Indicate that the guest will be deleted after it stops.
4623 userInfo.guestToRemove = true;
4624 }
4625 }
4626 }
4627 }
4628
4629 @Override
Bookatz029832a2019-10-04 16:50:22 -07004630 public UserInfo createUserEvenWhenDisallowed(String name, @NonNull String userType,
4631 @UserInfoFlag int flags, String[] disallowedPackages) {
4632 UserInfo user = createUserInternalUnchecked(name, userType, flags,
4633 UserHandle.USER_NULL, /* preCreated= */ false, disallowedPackages);
phweisse9c44062016-02-10 12:57:38 +01004634 // Keep this in sync with UserManager.createUser
Christine Franks97a54802017-08-09 10:06:43 -07004635 if (user != null && !user.isAdmin() && !user.isDemo()) {
phweisse9c44062016-02-10 12:57:38 +01004636 setUserRestriction(UserManager.DISALLOW_SMS, true, user.id);
4637 setUserRestriction(UserManager.DISALLOW_OUTGOING_CALLS, true, user.id);
4638 }
4639 return user;
4640 }
Fyodor Kupolov6c915ea2016-05-09 19:10:53 -07004641
4642 @Override
Bookatzf56f2582019-09-04 16:06:41 -07004643 public boolean removeUserEvenWhenDisallowed(@UserIdInt int userId) {
Nicolas Prevotdf1b87d2016-10-25 13:57:08 +01004644 return removeUserUnchecked(userId);
4645 }
4646
4647 @Override
Bookatzf56f2582019-09-04 16:06:41 -07004648 public boolean isUserRunning(@UserIdInt int userId) {
Amith Yamasaniea1b9d72016-05-27 15:57:38 +00004649 synchronized (mUserStates) {
4650 return mUserStates.get(userId, -1) >= 0;
4651 }
4652 }
4653
4654 @Override
Bookatzf56f2582019-09-04 16:06:41 -07004655 public void setUserState(@UserIdInt int userId, int userState) {
Amith Yamasaniea1b9d72016-05-27 15:57:38 +00004656 synchronized (mUserStates) {
4657 mUserStates.put(userId, userState);
4658 }
4659 }
4660
4661 @Override
Bookatzf56f2582019-09-04 16:06:41 -07004662 public void removeUserState(@UserIdInt int userId) {
Amith Yamasaniea1b9d72016-05-27 15:57:38 +00004663 synchronized (mUserStates) {
4664 mUserStates.delete(userId);
Fyodor Kupolov6c915ea2016-05-09 19:10:53 -07004665 }
4666 }
4667
4668 @Override
Michael Wachenschwanz3f2b6552017-05-15 13:53:09 -07004669 public int[] getUserIds() {
4670 return UserManagerService.this.getUserIds();
4671 }
4672
4673 @Override
Bookatzf56f2582019-09-04 16:06:41 -07004674 public boolean isUserUnlockingOrUnlocked(@UserIdInt int userId) {
Fyodor Kupolov0468ee92017-05-25 17:06:17 -07004675 int state;
Amith Yamasaniea1b9d72016-05-27 15:57:38 +00004676 synchronized (mUserStates) {
Fyodor Kupolov0468ee92017-05-25 17:06:17 -07004677 state = mUserStates.get(userId, -1);
Fyodor Kupolov6c915ea2016-05-09 19:10:53 -07004678 }
Fyodor Kupolov0468ee92017-05-25 17:06:17 -07004679 // Special case, in the stopping/shutdown state user key can still be unlocked
4680 if (state == UserState.STATE_STOPPING || state == UserState.STATE_SHUTDOWN) {
4681 return StorageManager.isUserKeyUnlocked(userId);
4682 }
4683 return (state == UserState.STATE_RUNNING_UNLOCKING)
4684 || (state == UserState.STATE_RUNNING_UNLOCKED);
Fyodor Kupolov6c915ea2016-05-09 19:10:53 -07004685 }
Fyodor Kupolov2e7e0962016-12-01 18:09:17 -08004686
4687 @Override
Bookatzf56f2582019-09-04 16:06:41 -07004688 public boolean isUserUnlocked(@UserIdInt int userId) {
Fyodor Kupolov0468ee92017-05-25 17:06:17 -07004689 int state;
Fyodor Kupolov2e7e0962016-12-01 18:09:17 -08004690 synchronized (mUserStates) {
Fyodor Kupolov0468ee92017-05-25 17:06:17 -07004691 state = mUserStates.get(userId, -1);
Fyodor Kupolov2e7e0962016-12-01 18:09:17 -08004692 }
Fyodor Kupolov0468ee92017-05-25 17:06:17 -07004693 // Special case, in the stopping/shutdown state user key can still be unlocked
4694 if (state == UserState.STATE_STOPPING || state == UserState.STATE_SHUTDOWN) {
4695 return StorageManager.isUserKeyUnlocked(userId);
4696 }
4697 return state == UserState.STATE_RUNNING_UNLOCKED;
Fyodor Kupolov2e7e0962016-12-01 18:09:17 -08004698 }
Todd Kennedy0eb97382017-10-03 16:57:22 -07004699
4700 @Override
Bookatzf56f2582019-09-04 16:06:41 -07004701 public boolean isUserInitialized(@UserIdInt int userId) {
Todd Kennedy0eb97382017-10-03 16:57:22 -07004702 return (getUserInfo(userId).flags & UserInfo.FLAG_INITIALIZED) != 0;
4703 }
4704
4705 @Override
Bookatzf56f2582019-09-04 16:06:41 -07004706 public boolean exists(@UserIdInt int userId) {
Todd Kennedy0eb97382017-10-03 16:57:22 -07004707 return getUserInfoNoChecks(userId) != null;
4708 }
Sunny Goyal145c8f82018-02-15 14:27:09 -08004709
4710 @Override
4711 public boolean isProfileAccessible(int callingUserId, int targetUserId, String debugMsg,
4712 boolean throwSecurityException) {
4713 if (targetUserId == callingUserId) {
4714 return true;
4715 }
4716 synchronized (mUsersLock) {
4717 UserInfo callingUserInfo = getUserInfoLU(callingUserId);
Bookatz029832a2019-10-04 16:50:22 -07004718 if (callingUserInfo == null || callingUserInfo.isProfile()) {
Sunny Goyal145c8f82018-02-15 14:27:09 -08004719 if (throwSecurityException) {
4720 throw new SecurityException(
4721 debugMsg + " for another profile "
4722 + targetUserId + " from " + callingUserId);
4723 }
4724 }
4725
4726 UserInfo targetUserInfo = getUserInfoLU(targetUserId);
4727 if (targetUserInfo == null || !targetUserInfo.isEnabled()) {
4728 // Do not throw any exception here as this could happen due to race conditions
4729 // between the system updating its state and the client getting notified.
4730 if (throwSecurityException) {
4731 Slog.w(LOG_TAG, debugMsg + " for disabled profile "
4732 + targetUserId + " from " + callingUserId);
4733 }
4734 return false;
4735 }
4736
4737 if (targetUserInfo.profileGroupId == UserInfo.NO_PROFILE_GROUP_ID ||
4738 targetUserInfo.profileGroupId != callingUserInfo.profileGroupId) {
4739 if (throwSecurityException) {
4740 throw new SecurityException(
4741 debugMsg + " for unrelated profile " + targetUserId);
4742 }
4743 return false;
4744 }
4745 }
4746 return true;
4747 }
4748
4749 @Override
Bookatzf56f2582019-09-04 16:06:41 -07004750 public int getProfileParentId(@UserIdInt int userId) {
Sunny Goyal145c8f82018-02-15 14:27:09 -08004751 synchronized (mUsersLock) {
4752 UserInfo profileParent = getProfileParentLU(userId);
4753 if (profileParent == null) {
4754 return userId;
4755 }
4756 return profileParent.id;
4757 }
4758 }
yuemingw1d13eae2018-01-30 17:27:54 +00004759
4760 @Override
4761 public boolean isSettingRestrictedForUser(String setting, @UserIdInt int userId,
4762 String value, int callingUid) {
Christopher Tate65fb2e42019-10-11 17:00:23 -07004763 return UserManagerService.this.isSettingRestrictedForUser(setting, userId,
yuemingw1d13eae2018-01-30 17:27:54 +00004764 value, callingUid);
4765 }
Patrick Baumann2f2fd712019-07-31 15:18:53 -07004766
4767 @Override
Bookatzf56f2582019-09-04 16:06:41 -07004768 public boolean hasUserRestriction(String restrictionKey, @UserIdInt int userId) {
Patrick Baumann2f2fd712019-07-31 15:18:53 -07004769 if (!UserRestrictionsUtils.isValidRestriction(restrictionKey)) {
4770 return false;
4771 }
4772 Bundle restrictions = getEffectiveUserRestrictions(userId);
4773 return restrictions != null && restrictions.getBoolean(restrictionKey);
4774 }
Felipe Lemee5434c32019-08-13 09:28:33 -07004775
Rubin Xu0f1e56d2019-08-23 13:34:25 +01004776 @Override
Felipe Lemee5434c32019-08-13 09:28:33 -07004777 public @Nullable UserInfo getUserInfo(@UserIdInt int userId) {
4778 UserData userData;
4779 synchronized (mUsersLock) {
4780 userData = mUsers.get(userId);
4781 }
4782 return userData == null ? null : userData.info;
4783 }
Felipe Leme987655d2019-08-26 10:45:24 -07004784
4785 public @NonNull UserInfo[] getUserInfos() {
4786 synchronized (mUsersLock) {
4787 int userSize = mUsers.size();
4788 UserInfo[] allInfos = new UserInfo[userSize];
4789 for (int i = 0; i < userSize; i++) {
4790 allInfos[i] = mUsers.valueAt(i).info;
4791 }
4792 return allInfos;
4793 }
4794 }
Lenka Trochtovaf348e8e2016-01-07 17:20:34 +01004795 }
4796
4797 /* Remove all the users except of the system one. */
4798 private void removeNonSystemUsers() {
4799 ArrayList<UserInfo> usersToRemove = new ArrayList<>();
4800 synchronized (mUsersLock) {
4801 final int userSize = mUsers.size();
4802 for (int i = 0; i < userSize; i++) {
4803 UserInfo ui = mUsers.valueAt(i).info;
4804 if (ui.id != UserHandle.USER_SYSTEM) {
4805 usersToRemove.add(ui);
4806 }
4807 }
4808 }
4809 for (UserInfo ui: usersToRemove) {
4810 removeUser(ui.id);
4811 }
Makoto Onuki068c54a2015-10-13 14:34:03 -07004812 }
Todd Kennedy60459ab2015-10-30 11:32:16 -07004813
4814 private class Shell extends ShellCommand {
4815 @Override
4816 public int onCommand(String cmd) {
4817 return onShellCommand(this, cmd);
4818 }
4819
4820 @Override
4821 public void onHelp() {
4822 final PrintWriter pw = getOutPrintWriter();
4823 pw.println("User manager (user) commands:");
4824 pw.println(" help");
4825 pw.println(" Print this help text.");
4826 pw.println("");
Felipe Lemec1ca4412019-09-11 09:23:26 -07004827 pw.println(" list [-v] [-all]");
Todd Kennedy60459ab2015-10-30 11:32:16 -07004828 pw.println(" Prints all users on the system.");
4829 }
4830 }
Makoto Onuki1a2cd742015-11-16 13:51:27 -08004831
4832 private static void debug(String message) {
4833 Log.d(LOG_TAG, message +
4834 (DBG_WITH_STACKTRACE ? " called at\n" + Debug.getCallers(10, " ") : ""));
4835 }
Kenny Guy02c89902016-11-15 19:36:38 +00004836
Bookatz029832a2019-10-04 16:50:22 -07004837 /** @see #getMaxUsersOfTypePerParent(UserTypeDetails) */
Kenny Guy02c89902016-11-15 19:36:38 +00004838 @VisibleForTesting
Bookatz029832a2019-10-04 16:50:22 -07004839 int getMaxUsersOfTypePerParent(String userType) {
4840 final UserTypeDetails type = mUserTypes.get(userType);
4841 if (type == null) {
4842 return 0;
Kenny Guy02c89902016-11-15 19:36:38 +00004843 }
Bookatz029832a2019-10-04 16:50:22 -07004844 return getMaxUsersOfTypePerParent(type);
4845 }
4846
4847 /**
4848 * Returns the maximum number of users allowed for the given userTypeDetails per parent user.
4849 * This is applicable for user types that are {@link UserTypeDetails#isProfile()}.
4850 * If there is no maximum, {@link UserTypeDetails#UNLIMITED_NUMBER_OF_USERS} is returned.
4851 */
4852 private static int getMaxUsersOfTypePerParent(UserTypeDetails userTypeDetails) {
4853 final int defaultMax = userTypeDetails.getMaxAllowedPerParent();
4854 if (!Build.IS_DEBUGGABLE) {
4855 return defaultMax;
4856 } else {
4857 if (userTypeDetails.isManagedProfile()) {
4858 return SystemProperties.getInt("persist.sys.max_profiles", defaultMax);
4859 }
4860 }
4861 return defaultMax;
Kenny Guy02c89902016-11-15 19:36:38 +00004862 }
4863
Andreas Gampe2e8c7672018-07-20 13:01:08 -07004864 @GuardedBy("mUsersLock")
Kenny Guy02c89902016-11-15 19:36:38 +00004865 @VisibleForTesting
Bookatz029832a2019-10-04 16:50:22 -07004866 int getFreeProfileBadgeLU(int parentUserId, String userType) {
4867 Set<Integer> usedBadges = new ArraySet<>();
Kenny Guy02c89902016-11-15 19:36:38 +00004868 final int userSize = mUsers.size();
4869 for (int i = 0; i < userSize; i++) {
4870 UserInfo ui = mUsers.valueAt(i).info;
4871 // Check which badge indexes are already used by this profile group.
Bookatz029832a2019-10-04 16:50:22 -07004872 if (ui.userType.equals(userType)
Kenny Guy02c89902016-11-15 19:36:38 +00004873 && ui.profileGroupId == parentUserId
Bookatz029832a2019-10-04 16:50:22 -07004874 && !mRemovingUserIds.get(ui.id)) {
4875 usedBadges.add(ui.profileBadge);
Kenny Guy02c89902016-11-15 19:36:38 +00004876 }
4877 }
Bookatz029832a2019-10-04 16:50:22 -07004878 int maxUsersOfType = getMaxUsersOfTypePerParent(userType);
4879 if (maxUsersOfType == UserTypeDetails.UNLIMITED_NUMBER_OF_USERS) {
4880 maxUsersOfType = Integer.MAX_VALUE;
4881 }
4882 for (int i = 0; i < maxUsersOfType; i++) {
4883 if (!usedBadges.contains(i)) {
Kenny Guy02c89902016-11-15 19:36:38 +00004884 return i;
4885 }
4886 }
4887 return 0;
4888 }
Amith Yamasani0d1fd8d2016-10-12 14:21:51 -07004889
4890 /**
4891 * Checks if the given user has a managed profile associated with it.
4892 * @param userId The parent user
4893 * @return
4894 */
Bookatzf56f2582019-09-04 16:06:41 -07004895 boolean hasManagedProfile(@UserIdInt int userId) {
Amith Yamasani0d1fd8d2016-10-12 14:21:51 -07004896 synchronized (mUsersLock) {
4897 UserInfo userInfo = getUserInfoLU(userId);
4898 final int userSize = mUsers.size();
4899 for (int i = 0; i < userSize; i++) {
4900 UserInfo profile = mUsers.valueAt(i).info;
4901 if (userId != profile.id && isProfileOf(userInfo, profile)) {
4902 return true;
4903 }
4904 }
4905 return false;
4906 }
4907 }
Tony Makd390ae92017-12-28 13:23:10 +00004908
4909 /**
4910 * Check if the calling package name matches with the calling UID, throw
4911 * {@link SecurityException} if not.
4912 */
4913 private void verifyCallingPackage(String callingPackage, int callingUid) {
4914 int packageUid = mPm.getPackageUid(callingPackage, 0, UserHandle.getUserId(callingUid));
4915 if (packageUid != callingUid) {
4916 throw new SecurityException("Specified package " + callingPackage
4917 + " does not match the calling uid " + callingUid);
4918 }
4919 }
Amith Yamasani4b2e9342011-03-31 12:38:53 -07004920}