blob: 5f8670809bfb1b768f32851c3a482d4b56f487b2 [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;
Xiaohui Chen594f2082015-08-18 11:04:20 -070023import android.annotation.NonNull;
Makoto Onuki068c54a2015-10-13 14:34:03 -070024import android.annotation.Nullable;
Jeff Sharkeybd91e2f2016-03-22 15:32:31 -060025import android.annotation.UserIdInt;
Amith Yamasanidb6a14c2012-10-17 21:16:52 -070026import android.app.Activity;
Amith Yamasani2a003292012-08-14 18:25:45 -070027import android.app.ActivityManager;
Amith Yamasani515d4062015-09-28 11:30:06 -070028import android.app.ActivityManagerInternal;
Andrew Scull85a63bc2016-10-24 13:47:47 +010029import android.app.ActivityManagerNative;
Todd Kennedy60459ab2015-10-30 11:32:16 -070030import android.app.IActivityManager;
Dianne Hackborn80a4af22012-08-27 19:18:31 -070031import android.app.IStopUserCallback;
Benjamin Franzf02420c2016-04-04 18:52:21 +010032import android.app.KeyguardManager;
Ricky Waib1dd80b2016-06-07 18:00:55 +010033import android.app.PendingIntent;
arangelov9b632d72018-12-07 23:21:22 +000034import android.app.admin.DevicePolicyEventLogger;
Amith Yamasanidb6a14c2012-10-17 21:16:52 -070035import android.content.BroadcastReceiver;
Amith Yamasani258848d2012-08-10 17:06:33 -070036import android.content.Context;
37import android.content.Intent;
Lenka Trochtovaf348e8e2016-01-07 17:20:34 +010038import android.content.IntentFilter;
Benjamin Franzf02420c2016-04-04 18:52:21 +010039import android.content.IntentSender;
Amith Yamasani0b285492011-04-14 17:35:23 -070040import android.content.pm.PackageManager;
Amith Yamasanidf2e92a2013-03-01 17:04:38 -080041import android.content.pm.PackageManager.NameNotFoundException;
Tony Make3d1f652017-12-12 11:00:37 +000042import android.content.pm.ShortcutServiceInternal;
Amith Yamasani4b2e9342011-03-31 12:38:53 -070043import android.content.pm.UserInfo;
Lenka Trochtova02fee152015-12-22 14:26:18 +010044import android.content.res.Resources;
Amith Yamasanie928d7d2012-09-17 21:46:51 -070045import android.graphics.Bitmap;
Amith Yamasani258848d2012-08-10 17:06:33 -070046import android.os.Binder;
Jeff Sharkeybd91e2f2016-03-22 15:32:31 -060047import android.os.Build;
Amith Yamasanie4cf7342012-12-17 11:12:09 -080048import android.os.Bundle;
Makoto Onuki1a2cd742015-11-16 13:51:27 -080049import android.os.Debug;
Amith Yamasani4b2e9342011-03-31 12:38:53 -070050import android.os.Environment;
51import android.os.FileUtils;
Jeff Sharkeyffe0cb42012-11-05 17:24:43 -080052import android.os.Handler;
Svet Ganov9cea80cd2016-02-16 11:47:00 -080053import android.os.IBinder;
Tony Mak64fd8c02017-12-01 19:11:59 +000054import android.os.IProgressListener;
Amith Yamasani258848d2012-08-10 17:06:33 -070055import android.os.IUserManager;
Fyodor Kupolov75d0ea82014-12-15 16:21:07 -080056import android.os.Message;
Adrian Roos1bdff912015-02-17 15:51:35 +010057import android.os.ParcelFileDescriptor;
Fyodor Kupolov262f9952015-03-23 18:55:11 -070058import android.os.Parcelable;
Amith Yamasani12747872015-12-07 14:19:49 -080059import android.os.PersistableBundle;
Amith Yamasani258848d2012-08-10 17:06:33 -070060import android.os.Process;
Dianne Hackborn80a4af22012-08-27 19:18:31 -070061import android.os.RemoteException;
Todd Kennedy60459ab2015-10-30 11:32:16 -070062import android.os.ResultReceiver;
Oleksandr Peletskyicd6fa302016-02-25 16:28:39 +010063import android.os.SELinux;
Jason Monk62062992014-05-06 09:55:28 -040064import android.os.ServiceManager;
Dianne Hackborn354736e2016-08-22 17:00:05 -070065import android.os.ShellCallback;
Todd Kennedy60459ab2015-10-30 11:32:16 -070066import android.os.ShellCommand;
Makoto Onuki73dded22017-12-20 13:14:48 +090067import android.os.SystemClock;
Kenny Guy02c89902016-11-15 19:36:38 +000068import android.os.SystemProperties;
Dianne Hackbornf02b60a2012-08-16 10:48:27 -070069import android.os.UserHandle;
Jeff Sharkey27bd34d2012-09-16 12:49:00 -070070import android.os.UserManager;
Pavel Grafov6a40f092016-10-25 15:46:51 +010071import android.os.UserManager.EnforcingUser;
Makoto Onuki068c54a2015-10-13 14:34:03 -070072import android.os.UserManagerInternal;
Makoto Onukid45a4a22015-11-02 17:17:38 -080073import android.os.UserManagerInternal.UserRestrictionsListener;
Paul Crowley85e4e812015-05-19 12:42:00 +010074import android.os.storage.StorageManager;
Amith Yamasanid04aaa32016-06-13 12:09:36 -070075import android.security.GateKeeper;
76import android.service.gatekeeper.IGateKeeperService;
arangelov9b632d72018-12-07 23:21:22 +000077import android.stats.devicepolicy.DevicePolicyEnums;
Bookatz75f0a072019-08-05 14:12:16 -070078import android.util.ArraySet;
Amith Yamasani2a003292012-08-14 18:25:45 -070079import android.util.AtomicFile;
Fyodor Kupolov7f98aa42016-04-07 14:56:25 -070080import android.util.IntArray;
Amith Yamasani655d0e22013-06-12 14:19:10 -070081import android.util.Log;
Amith Yamasani4b2e9342011-03-31 12:38:53 -070082import android.util.Slog;
83import android.util.SparseArray;
Jeff Sharkeyffe0cb42012-11-05 17:24:43 -080084import android.util.SparseBooleanArray;
Amith Yamasaniea1b9d72016-05-27 15:57:38 +000085import android.util.SparseIntArray;
Amith Yamasani920ace02012-09-20 22:15:37 -070086import android.util.TimeUtils;
Amith Yamasani4b2e9342011-03-31 12:38:53 -070087import android.util.Xml;
88
Makoto Onuki068c54a2015-10-13 14:34:03 -070089import com.android.internal.annotations.GuardedBy;
Fyodor Kupolov262f9952015-03-23 18:55:11 -070090import com.android.internal.annotations.VisibleForTesting;
Jason Monk62062992014-05-06 09:55:28 -040091import com.android.internal.app.IAppOpsService;
Fyodor Kupolov8385e4b2015-12-29 18:15:32 -080092import com.android.internal.logging.MetricsLogger;
Fyodor Kupolova68a2862018-01-30 18:22:00 -080093import com.android.internal.os.BackgroundThread;
Jeff Sharkeyfe9a53b2017-03-31 14:08:23 -060094import com.android.internal.util.DumpUtils;
Jeff Sharkeyffe0cb42012-11-05 17:24:43 -080095import com.android.internal.util.FastXmlSerializer;
Makoto Onuki068c54a2015-10-13 14:34:03 -070096import com.android.internal.util.Preconditions;
Fyodor Kupolov262f9952015-03-23 18:55:11 -070097import com.android.internal.util.XmlUtils;
Clara Bayarri10ad84a2015-12-01 17:38:05 +000098import com.android.internal.widget.LockPatternUtils;
Amith Yamasani515d4062015-09-28 11:30:06 -070099import com.android.server.LocalServices;
Jeff Sharkey5f3e9342017-03-13 14:53:11 -0600100import com.android.server.LockGuard;
Amith Yamasanid04aaa32016-06-13 12:09:36 -0700101import com.android.server.SystemService;
Amith Yamasaniea1b9d72016-05-27 15:57:38 +0000102import com.android.server.am.UserState;
Suprabh Shuklac5e057c2016-08-08 16:22:44 -0700103import com.android.server.storage.DeviceStorageMonitorInternal;
Felipe Leme3aad1be2019-05-31 11:43:12 -0700104import com.android.server.utils.TimingsTraceAndSlog;
Wale Ogunwale9e4f3e02018-05-17 09:35:39 -0700105import com.android.server.wm.ActivityTaskManagerInternal;
Jeff Sharkeyffe0cb42012-11-05 17:24:43 -0800106
arangelov9b632d72018-12-07 23:21:22 +0000107import libcore.io.IoUtils;
108
Jeff Sharkeyffe0cb42012-11-05 17:24:43 -0800109import org.xmlpull.v1.XmlPullParser;
110import org.xmlpull.v1.XmlPullParserException;
111import org.xmlpull.v1.XmlSerializer;
112
Amith Yamasani4b2e9342011-03-31 12:38:53 -0700113import java.io.BufferedOutputStream;
114import java.io.File;
Amith Yamasani920ace02012-09-20 22:15:37 -0700115import java.io.FileDescriptor;
Amith Yamasani4b2e9342011-03-31 12:38:53 -0700116import java.io.FileInputStream;
Amith Yamasanib8151ec2012-04-18 18:02:48 -0700117import java.io.FileNotFoundException;
Amith Yamasani4b2e9342011-03-31 12:38:53 -0700118import java.io.FileOutputStream;
Tony Mak64fd8c02017-12-01 19:11:59 +0000119import java.io.IOException;
Kenny Guy02c89902016-11-15 19:36:38 +0000120import java.io.InputStream;
121import java.io.OutputStream;
Amith Yamasani920ace02012-09-20 22:15:37 -0700122import java.io.PrintWriter;
Wojciech Staszkiewicz9e9e2e72015-05-08 14:58:46 +0100123import java.nio.charset.StandardCharsets;
Amith Yamasani4b2e9342011-03-31 12:38:53 -0700124import java.util.ArrayList;
Pavel Grafov6a40f092016-10-25 15:46:51 +0100125import java.util.Collections;
Fyodor Kupolov0f4533d2016-05-18 18:43:12 -0700126import java.util.LinkedList;
Amith Yamasani4b2e9342011-03-31 12:38:53 -0700127import java.util.List;
Narayan Kamath607223f2018-02-19 14:09:02 +0000128import java.util.Objects;
Bookatz75f0a072019-08-05 14:12:16 -0700129import java.util.Set;
Amith Yamasani4b2e9342011-03-31 12:38:53 -0700130
Makoto Onuki068c54a2015-10-13 14:34:03 -0700131/**
132 * Service for {@link UserManager}.
133 *
134 * Method naming convention:
Fyodor Kupolov82402752015-10-28 14:54:51 -0700135 * <ul>
Fyodor Kupolovd31cee92017-09-05 16:31:08 -0700136 * <li> Methods suffixed with "LAr" should be called within the {@link #mAppRestrictionsLock} lock.
Fyodor Kupolove80085d2015-11-06 18:21:39 -0800137 * <li> Methods suffixed with "LP" should be called within the {@link #mPackagesLock} lock.
Fyodor Kupolov82402752015-10-28 14:54:51 -0700138 * <li> Methods suffixed with "LR" should be called within the {@link #mRestrictionsLock} lock.
139 * <li> Methods suffixed with "LU" should be called within the {@link #mUsersLock} lock.
140 * </ul>
Makoto Onuki068c54a2015-10-13 14:34:03 -0700141 */
Amith Yamasani258848d2012-08-10 17:06:33 -0700142public class UserManagerService extends IUserManager.Stub {
Amith Yamasanid04aaa32016-06-13 12:09:36 -0700143
Amith Yamasani2a003292012-08-14 18:25:45 -0700144 private static final String LOG_TAG = "UserManagerService";
Makoto Onuki81c61ea2016-01-22 11:22:26 -0800145 static final boolean DBG = false; // DO NOT SUBMIT WITH TRUE
Makoto Onuki1a2cd742015-11-16 13:51:27 -0800146 private static final boolean DBG_WITH_STACKTRACE = false; // DO NOT SUBMIT WITH TRUE
Fyodor Kupolov0f4533d2016-05-18 18:43:12 -0700147 // Can be used for manual testing of id recycling
148 private static final boolean RELEASE_DELETED_USER_ID = false; // DO NOT SUBMIT WITH TRUE
Amith Yamasani16389312012-10-17 21:20:14 -0700149
Amith Yamasani4b2e9342011-03-31 12:38:53 -0700150 private static final String TAG_NAME = "name";
Xiaohui Chenb3b92582015-12-07 11:22:13 -0800151 private static final String TAG_ACCOUNT = "account";
Amith Yamasani4b2e9342011-03-31 12:38:53 -0700152 private static final String ATTR_FLAGS = "flags";
Amith Yamasanib8151ec2012-04-18 18:02:48 -0700153 private static final String ATTR_ICON_PATH = "icon";
Amith Yamasani4b2e9342011-03-31 12:38:53 -0700154 private static final String ATTR_ID = "id";
Amith Yamasani920ace02012-09-20 22:15:37 -0700155 private static final String ATTR_CREATION_TIME = "created";
156 private static final String ATTR_LAST_LOGGED_IN_TIME = "lastLoggedIn";
Jeff Sharkeybd91e2f2016-03-22 15:32:31 -0600157 private static final String ATTR_LAST_LOGGED_IN_FINGERPRINT = "lastLoggedInFingerprint";
Amith Yamasani2a003292012-08-14 18:25:45 -0700158 private static final String ATTR_SERIAL_NO = "serialNumber";
159 private static final String ATTR_NEXT_SERIAL_NO = "nextSerialNumber";
Dianne Hackbornd4ac8d72012-09-27 23:20:10 -0700160 private static final String ATTR_PARTIAL = "partial";
Adam Lesinskieddeb492014-09-08 17:50:03 -0700161 private static final String ATTR_GUEST_TO_REMOVE = "guestToRemove";
Amith Yamasani6f34b412012-10-22 18:19:27 -0700162 private static final String ATTR_USER_VERSION = "version";
Kenny Guy2a764942014-04-02 13:29:20 +0100163 private static final String ATTR_PROFILE_GROUP_ID = "profileGroupId";
Kenny Guy02c89902016-11-15 19:36:38 +0000164 private static final String ATTR_PROFILE_BADGE = "profileBadge";
Fyodor Kupolov06a484a2015-08-21 16:33:20 -0700165 private static final String ATTR_RESTRICTED_PROFILE_PARENT_ID = "restrictedProfileParentId";
Amith Yamasani12747872015-12-07 14:19:49 -0800166 private static final String ATTR_SEED_ACCOUNT_NAME = "seedAccountName";
167 private static final String ATTR_SEED_ACCOUNT_TYPE = "seedAccountType";
Amith Yamasanie4afaa32014-06-30 14:55:07 +0530168 private static final String TAG_GUEST_RESTRICTIONS = "guestRestrictions";
Amith Yamasani4b2e9342011-03-31 12:38:53 -0700169 private static final String TAG_USERS = "users";
Amith Yamasani4b2e9342011-03-31 12:38:53 -0700170 private static final String TAG_USER = "user";
Amith Yamasanie4cf7342012-12-17 11:12:09 -0800171 private static final String TAG_RESTRICTIONS = "restrictions";
Makoto Onuki1a2cd742015-11-16 13:51:27 -0800172 private static final String TAG_DEVICE_POLICY_RESTRICTIONS = "device_policy_restrictions";
Pavel Grafov6a40f092016-10-25 15:46:51 +0100173 private static final String TAG_DEVICE_POLICY_GLOBAL_RESTRICTIONS =
174 "device_policy_global_restrictions";
175 /** Legacy name for device owner id tag. */
Zoltan Szatmary-Bane7834602016-04-08 18:41:11 +0100176 private static final String TAG_GLOBAL_RESTRICTION_OWNER_ID = "globalRestrictionOwnerUserId";
Pavel Grafov6a40f092016-10-25 15:46:51 +0100177 private static final String TAG_DEVICE_OWNER_USER_ID = "deviceOwnerUserId";
Amith Yamasanidf2e92a2013-03-01 17:04:38 -0800178 private static final String TAG_ENTRY = "entry";
179 private static final String TAG_VALUE = "value";
Amith Yamasani12747872015-12-07 14:19:49 -0800180 private static final String TAG_SEED_ACCOUNT_OPTIONS = "seedAccountOptions";
arangelov9b632d72018-12-07 23:21:22 +0000181 private static final String TAG_LAST_REQUEST_QUIET_MODE_ENABLED_CALL =
182 "lastRequestQuietModeEnabledCall";
Amith Yamasanidf2e92a2013-03-01 17:04:38 -0800183 private static final String ATTR_KEY = "key";
Amith Yamasani7e99bc02013-04-16 18:24:51 -0700184 private static final String ATTR_VALUE_TYPE = "type";
Amith Yamasanidf2e92a2013-03-01 17:04:38 -0800185 private static final String ATTR_MULTIPLE = "m";
Amith Yamasani4b2e9342011-03-31 12:38:53 -0700186
Amith Yamasani7e99bc02013-04-16 18:24:51 -0700187 private static final String ATTR_TYPE_STRING_ARRAY = "sa";
188 private static final String ATTR_TYPE_STRING = "s";
189 private static final String ATTR_TYPE_BOOLEAN = "b";
Amith Yamasani5b5aa402014-06-01 20:10:14 -0700190 private static final String ATTR_TYPE_INTEGER = "i";
Fyodor Kupolov262f9952015-03-23 18:55:11 -0700191 private static final String ATTR_TYPE_BUNDLE = "B";
192 private static final String ATTR_TYPE_BUNDLE_ARRAY = "BA";
Amith Yamasani7e99bc02013-04-16 18:24:51 -0700193
Amith Yamasani0b285492011-04-14 17:35:23 -0700194 private static final String USER_INFO_DIR = "system" + File.separator + "users";
Amith Yamasani4b2e9342011-03-31 12:38:53 -0700195 private static final String USER_LIST_FILENAME = "userlist.xml";
Amith Yamasanib8151ec2012-04-18 18:02:48 -0700196 private static final String USER_PHOTO_FILENAME = "photo.png";
Adrian Roos1bdff912015-02-17 15:51:35 +0100197 private static final String USER_PHOTO_FILENAME_TMP = USER_PHOTO_FILENAME + ".tmp";
Amith Yamasani4b2e9342011-03-31 12:38:53 -0700198
Amith Yamasanidf2e92a2013-03-01 17:04:38 -0800199 private static final String RESTRICTIONS_FILE_PREFIX = "res_";
Amith Yamasanifc95e702013-09-26 13:20:17 -0700200 private static final String XML_SUFFIX = ".xml";
Amith Yamasanidf2e92a2013-03-01 17:04:38 -0800201
Sudheer Shankaf5cea032016-06-08 17:13:24 -0700202 private static final int ALLOWED_FLAGS_FOR_CREATE_USERS_PERMISSION =
203 UserInfo.FLAG_MANAGED_PROFILE
204 | UserInfo.FLAG_EPHEMERAL
205 | UserInfo.FLAG_RESTRICTED
Sudheer Shanka234d1af2016-08-26 15:42:53 -0700206 | UserInfo.FLAG_GUEST
207 | UserInfo.FLAG_DEMO;
Sudheer Shankaf5cea032016-06-08 17:13:24 -0700208
Fyodor Kupolov0f4533d2016-05-18 18:43:12 -0700209 @VisibleForTesting
210 static final int MIN_USER_ID = 10;
Xiaohui Chen621b3fc2015-10-02 14:41:42 -0700211 // We need to keep process uid within Integer.MAX_VALUE.
Fyodor Kupolov0f4533d2016-05-18 18:43:12 -0700212 @VisibleForTesting
213 static final int MAX_USER_ID = Integer.MAX_VALUE / UserHandle.PER_USER_RANGE;
214
215 // Max size of the queue of recently removed users
216 @VisibleForTesting
217 static final int MAX_RECENTLY_REMOVED_IDS_SIZE = 100;
Amith Yamasani634cf312012-10-04 17:34:21 -0700218
Bookatz75f0a072019-08-05 14:12:16 -0700219 private static final int USER_VERSION = 8;
Amith Yamasani6f34b412012-10-22 18:19:27 -0700220
Amith Yamasani920ace02012-09-20 22:15:37 -0700221 private static final long EPOCH_PLUS_30_YEARS = 30L * 365 * 24 * 60 * 60 * 1000L; // ms
222
Nicolas Prevotb8186812015-08-06 15:00:03 +0100223 // Maximum number of managed profiles permitted per user is 1. This cannot be increased
Amith Yamasani95ab7842014-08-11 17:09:26 -0700224 // without first making sure that the rest of the framework is prepared for it.
Kenny Guy02c89902016-11-15 19:36:38 +0000225 @VisibleForTesting
226 static final int MAX_MANAGED_PROFILES = 1;
Amith Yamasani95ab7842014-08-11 17:09:26 -0700227
Fyodor Kupolov75d0ea82014-12-15 16:21:07 -0800228 static final int WRITE_USER_MSG = 1;
229 static final int WRITE_USER_DELAY = 2*1000; // 2 seconds
Amith Yamasanie4afaa32014-06-30 14:55:07 +0530230
Fyodor Kupolov8385e4b2015-12-29 18:15:32 -0800231 // Tron counters
232 private static final String TRON_GUEST_CREATED = "users_guest_created";
233 private static final String TRON_USER_CREATED = "users_user_created";
Christine Franks88220562017-05-24 11:11:21 -0700234 private static final String TRON_DEMO_CREATED = "users_demo_created";
Fyodor Kupolov8385e4b2015-12-29 18:15:32 -0800235
Dianne Hackborn4428e172012-08-24 17:43:05 -0700236 private final Context mContext;
237 private final PackageManagerService mPm;
Dianne Hackborn4428e172012-08-24 17:43:05 -0700238 private final Object mPackagesLock;
Fyodor Kupolov5c0ecfd2017-01-27 11:11:57 -0800239 private final UserDataPreparer mUserDataPreparer;
Fyodor Kupolov82402752015-10-28 14:54:51 -0700240 // Short-term lock for internal state, when interaction/sync with PM is not required
Jeff Sharkey5f3e9342017-03-13 14:53:11 -0600241 private final Object mUsersLock = LockGuard.installNewLock(LockGuard.INDEX_USER);
Fyodor Kupolov82402752015-10-28 14:54:51 -0700242 private final Object mRestrictionsLock = new Object();
Fyodor Kupolovd31cee92017-09-05 16:31:08 -0700243 // Used for serializing access to app restriction files
244 private final Object mAppRestrictionsLock = new Object();
Amith Yamasani4b2e9342011-03-31 12:38:53 -0700245
Jeff Sharkeyffe0cb42012-11-05 17:24:43 -0800246 private final Handler mHandler;
247
Amith Yamasani4b2e9342011-03-31 12:38:53 -0700248 private final File mUsersDir;
249 private final File mUserListFile;
Dianne Hackborn4428e172012-08-24 17:43:05 -0700250
Svet Ganov9cea80cd2016-02-16 11:47:00 -0800251 private static final IBinder mUserRestriconToken = new Binder();
252
Bookatz04d7ae52019-08-05 14:07:12 -0700253 /** Installs system packages based on user-type. */
254 private final UserSystemPackageInstaller mSystemPackageInstaller;
255
Makoto Onuki068c54a2015-10-13 14:34:03 -0700256 /**
Makoto Onuki73dded22017-12-20 13:14:48 +0900257 * Internal non-parcelable wrapper for UserInfo that is not exposed to other system apps.
Xiaohui Chenb3b92582015-12-07 11:22:13 -0800258 */
Kenny Guy02c89902016-11-15 19:36:38 +0000259 @VisibleForTesting
260 static class UserData {
Amith Yamasani12747872015-12-07 14:19:49 -0800261 // Basic user information and properties
262 UserInfo info;
263 // Account name used when there is a strong association between a user and an account
264 String account;
265 // Account information for seeding into a newly created user. This could also be
266 // used for login validation for an existing user, for updating their credentials.
267 // In the latter case, data may not need to be persisted as it is only valid for the
268 // current login session.
269 String seedAccountName;
270 String seedAccountType;
271 PersistableBundle seedAccountOptions;
272 // Whether to perist the seed account information to be available after a boot
273 boolean persistSeedData;
274
Makoto Onuki73dded22017-12-20 13:14:48 +0900275 /** Elapsed realtime since boot when the user started. */
276 long startRealtime;
277
278 /** Elapsed realtime since boot when the user was unlocked. */
279 long unlockRealtime;
280
arangelov9b632d72018-12-07 23:21:22 +0000281 private long mLastRequestQuietModeEnabledMillis;
282
283 void setLastRequestQuietModeEnabledMillis(long millis) {
284 mLastRequestQuietModeEnabledMillis = millis;
285 }
286
287 long getLastRequestQuietModeEnabledMillis() {
288 return mLastRequestQuietModeEnabledMillis;
289 }
290
Amith Yamasani12747872015-12-07 14:19:49 -0800291 void clearSeedAccountData() {
292 seedAccountName = null;
293 seedAccountType = null;
294 seedAccountOptions = null;
295 persistSeedData = false;
296 }
297 }
298
Xiaohui Chenb3b92582015-12-07 11:22:13 -0800299 @GuardedBy("mUsersLock")
Amith Yamasani12747872015-12-07 14:19:49 -0800300 private final SparseArray<UserData> mUsers = new SparseArray<>();
Xiaohui Chenb3b92582015-12-07 11:22:13 -0800301
302 /**
Makoto Onuki068c54a2015-10-13 14:34:03 -0700303 * User restrictions set via UserManager. This doesn't include restrictions set by
Pavel Grafov6a40f092016-10-25 15:46:51 +0100304 * device owner / profile owners. Only non-empty restriction bundles are stored.
Makoto Onuki068c54a2015-10-13 14:34:03 -0700305 *
306 * DO NOT Change existing {@link Bundle} in it. When changing a restriction for a user,
307 * a new {@link Bundle} should always be created and set. This is because a {@link Bundle}
308 * maybe shared between {@link #mBaseUserRestrictions} and
309 * {@link #mCachedEffectiveUserRestrictions}, but they should always updated separately.
310 * (Otherwise we won't be able to detect what restrictions have changed in
Fyodor Kupolov82402752015-10-28 14:54:51 -0700311 * {@link #updateUserRestrictionsInternalLR}.
Makoto Onuki068c54a2015-10-13 14:34:03 -0700312 */
313 @GuardedBy("mRestrictionsLock")
314 private final SparseArray<Bundle> mBaseUserRestrictions = new SparseArray<>();
315
316 /**
317 * Cached user restrictions that are in effect -- i.e. {@link #mBaseUserRestrictions} combined
318 * with device / profile owner restrictions. We'll initialize it lazily; use
319 * {@link #getEffectiveUserRestrictions} to access it.
320 *
321 * DO NOT Change existing {@link Bundle} in it. When changing a restriction for a user,
322 * a new {@link Bundle} should always be created and set. This is because a {@link Bundle}
323 * maybe shared between {@link #mBaseUserRestrictions} and
324 * {@link #mCachedEffectiveUserRestrictions}, but they should always updated separately.
325 * (Otherwise we won't be able to detect what restrictions have changed in
Fyodor Kupolov82402752015-10-28 14:54:51 -0700326 * {@link #updateUserRestrictionsInternalLR}.
Makoto Onuki068c54a2015-10-13 14:34:03 -0700327 */
328 @GuardedBy("mRestrictionsLock")
329 private final SparseArray<Bundle> mCachedEffectiveUserRestrictions = new SparseArray<>();
330
Makoto Onuki4f160732015-10-27 17:15:38 -0700331 /**
Makoto Onuki1a2cd742015-11-16 13:51:27 -0800332 * User restrictions that have already been applied in
333 * {@link #updateUserRestrictionsInternalLR(Bundle, int)}. We use it to detect restrictions
334 * that have changed since the last
335 * {@link #updateUserRestrictionsInternalLR(Bundle, int)} call.
Makoto Onuki4f160732015-10-27 17:15:38 -0700336 */
337 @GuardedBy("mRestrictionsLock")
338 private final SparseArray<Bundle> mAppliedUserRestrictions = new SparseArray<>();
339
Makoto Onuki1a2cd742015-11-16 13:51:27 -0800340 /**
Makoto Onukie7927da2015-11-25 10:05:17 -0800341 * User restrictions set by {@link com.android.server.devicepolicy.DevicePolicyManagerService}
Pavel Grafov6a40f092016-10-25 15:46:51 +0100342 * that should be applied to all users, including guests. Only non-empty restriction bundles are
343 * stored.
Makoto Onuki1a2cd742015-11-16 13:51:27 -0800344 */
345 @GuardedBy("mRestrictionsLock")
Pavel Grafov6a40f092016-10-25 15:46:51 +0100346 private final SparseArray<Bundle> mDevicePolicyGlobalUserRestrictions = new SparseArray<>();
Makoto Onuki1a2cd742015-11-16 13:51:27 -0800347
348 /**
Zoltan Szatmary-Bane7834602016-04-08 18:41:11 +0100349 * Id of the user that set global restrictions.
350 */
351 @GuardedBy("mRestrictionsLock")
Pavel Grafov6a40f092016-10-25 15:46:51 +0100352 private int mDeviceOwnerUserId = UserHandle.USER_NULL;
Zoltan Szatmary-Bane7834602016-04-08 18:41:11 +0100353
354 /**
Makoto Onukie7927da2015-11-25 10:05:17 -0800355 * User restrictions set by {@link com.android.server.devicepolicy.DevicePolicyManagerService}
Pavel Grafov6a40f092016-10-25 15:46:51 +0100356 * for each user. Only non-empty restriction bundles are stored.
Makoto Onuki1a2cd742015-11-16 13:51:27 -0800357 */
358 @GuardedBy("mRestrictionsLock")
359 private final SparseArray<Bundle> mDevicePolicyLocalUserRestrictions = new SparseArray<>();
360
Fyodor Kupolove80085d2015-11-06 18:21:39 -0800361 @GuardedBy("mGuestRestrictions")
Amith Yamasanie4afaa32014-06-30 14:55:07 +0530362 private final Bundle mGuestRestrictions = new Bundle();
Jeff Sharkeyffe0cb42012-11-05 17:24:43 -0800363
364 /**
365 * Set of user IDs being actively removed. Removed IDs linger in this set
366 * for several seconds to work around a VFS caching issue.
Fyodor Kupolov0f4533d2016-05-18 18:43:12 -0700367 * Use {@link #addRemovingUserIdLocked(int)} to add elements to this array
Jeff Sharkeyffe0cb42012-11-05 17:24:43 -0800368 */
Fyodor Kupolov82402752015-10-28 14:54:51 -0700369 @GuardedBy("mUsersLock")
Jeff Sharkeyffe0cb42012-11-05 17:24:43 -0800370 private final SparseBooleanArray mRemovingUserIds = new SparseBooleanArray();
Dianne Hackborn4428e172012-08-24 17:43:05 -0700371
Fyodor Kupolov0f4533d2016-05-18 18:43:12 -0700372 /**
373 * Queue of recently removed userIds. Used for recycling of userIds
374 */
375 @GuardedBy("mUsersLock")
376 private final LinkedList<Integer> mRecentlyRemovedIds = new LinkedList<>();
377
Fyodor Kupolov82402752015-10-28 14:54:51 -0700378 @GuardedBy("mUsersLock")
Amith Yamasani0b285492011-04-14 17:35:23 -0700379 private int[] mUserIds;
Fyodor Kupolove80085d2015-11-06 18:21:39 -0800380 @GuardedBy("mPackagesLock")
Amith Yamasani2a003292012-08-14 18:25:45 -0700381 private int mNextSerialNumber;
Amith Yamasani6f34b412012-10-22 18:19:27 -0700382 private int mUserVersion = 0;
Amith Yamasani0b285492011-04-14 17:35:23 -0700383
Jason Monk62062992014-05-06 09:55:28 -0400384 private IAppOpsService mAppOpsService;
385
Makoto Onuki068c54a2015-10-13 14:34:03 -0700386 private final LocalService mLocalService;
387
Makoto Onukie7927da2015-11-25 10:05:17 -0800388 @GuardedBy("mUsersLock")
389 private boolean mIsDeviceManaged;
390
391 @GuardedBy("mUsersLock")
392 private final SparseBooleanArray mIsUserManaged = new SparseBooleanArray();
393
Makoto Onukid45a4a22015-11-02 17:17:38 -0800394 @GuardedBy("mUserRestrictionsListeners")
395 private final ArrayList<UserRestrictionsListener> mUserRestrictionsListeners =
396 new ArrayList<>();
397
Clara Bayarria1771112015-12-18 16:29:18 +0000398 private final LockPatternUtils mLockPatternUtils;
399
Ricky Waib1dd80b2016-06-07 18:00:55 +0100400 private final String ACTION_DISABLE_QUIET_MODE_AFTER_UNLOCK =
401 "com.android.server.pm.DISABLE_QUIET_MODE_AFTER_UNLOCK";
402
403 private final BroadcastReceiver mDisableQuietModeCallback = new BroadcastReceiver() {
404 @Override
405 public void onReceive(Context context, Intent intent) {
Tony Mak64fd8c02017-12-01 19:11:59 +0000406 if (!ACTION_DISABLE_QUIET_MODE_AFTER_UNLOCK.equals(intent.getAction())) {
407 return;
Ricky Waib1dd80b2016-06-07 18:00:55 +0100408 }
Tony Mak64fd8c02017-12-01 19:11:59 +0000409 final IntentSender target = intent.getParcelableExtra(Intent.EXTRA_INTENT);
Bookatzf56f2582019-09-04 16:06:41 -0700410 final int userId = intent.getIntExtra(Intent.EXTRA_USER_ID, UserHandle.USER_NULL);
Fyodor Kupolova68a2862018-01-30 18:22:00 -0800411 // Call setQuietModeEnabled on bg thread to avoid ANR
arangelov9b632d72018-12-07 23:21:22 +0000412 BackgroundThread.getHandler().post(() ->
Bookatzf56f2582019-09-04 16:06:41 -0700413 setQuietModeEnabled(userId, false, target, /* callingPackage */ null));
Ricky Waib1dd80b2016-06-07 18:00:55 +0100414 }
415 };
416
Lenka Trochtovaf348e8e2016-01-07 17:20:34 +0100417 /**
Tony Mak64fd8c02017-12-01 19:11:59 +0000418 * Start an {@link IntentSender} when user is unlocked after disabling quiet mode.
419 *
Tony Makbece85d2018-01-12 12:10:17 +0000420 * @see {@link #requestQuietModeEnabled(String, boolean, int, IntentSender)}
Tony Mak64fd8c02017-12-01 19:11:59 +0000421 */
422 private class DisableQuietModeUserUnlockedCallback extends IProgressListener.Stub {
423 private final IntentSender mTarget;
424
425 public DisableQuietModeUserUnlockedCallback(IntentSender target) {
426 Preconditions.checkNotNull(target);
427 mTarget = target;
428 }
429
430 @Override
431 public void onStarted(int id, Bundle extras) {}
432
433 @Override
434 public void onProgress(int id, int progress, Bundle extras) {}
435
436 @Override
437 public void onFinished(int id, Bundle extras) {
438 try {
439 mContext.startIntentSender(mTarget, null, 0, 0, 0);
440 } catch (IntentSender.SendIntentException e) {
441 Slog.e(LOG_TAG, "Failed to start the target in the callback", e);
442 }
443 }
444 }
445
446 /**
Lenka Trochtovaf348e8e2016-01-07 17:20:34 +0100447 * Whether all users should be created ephemeral.
448 */
449 @GuardedBy("mUsersLock")
450 private boolean mForceEphemeralUsers;
451
Amith Yamasaniea1b9d72016-05-27 15:57:38 +0000452 @GuardedBy("mUserStates")
453 private final SparseIntArray mUserStates = new SparseIntArray();
Fyodor Kupolov6c915ea2016-05-09 19:10:53 -0700454
Amith Yamasani258848d2012-08-10 17:06:33 -0700455 private static UserManagerService sInstance;
Amith Yamasani258848d2012-08-10 17:06:33 -0700456
Dianne Hackborn4428e172012-08-24 17:43:05 -0700457 public static UserManagerService getInstance() {
458 synchronized (UserManagerService.class) {
459 return sInstance;
Amith Yamasani258848d2012-08-10 17:06:33 -0700460 }
Amith Yamasani258848d2012-08-10 17:06:33 -0700461 }
Amith Yamasani4b2e9342011-03-31 12:38:53 -0700462
Amith Yamasanid04aaa32016-06-13 12:09:36 -0700463 public static class LifeCycle extends SystemService {
464
465 private UserManagerService mUms;
466
467 /**
468 * @param context
469 */
470 public LifeCycle(Context context) {
471 super(context);
472 }
473
474 @Override
475 public void onStart() {
476 mUms = UserManagerService.getInstance();
477 publishBinderService(Context.USER_SERVICE, mUms);
478 }
479
480 @Override
481 public void onBootPhase(int phase) {
482 if (phase == SystemService.PHASE_ACTIVITY_MANAGER_READY) {
483 mUms.cleanupPartialUsers();
484 }
485 }
Makoto Onuki73dded22017-12-20 13:14:48 +0900486
487 @Override
Bookatzf56f2582019-09-04 16:06:41 -0700488 public void onStartUser(@UserIdInt int userId) {
Makoto Onuki73dded22017-12-20 13:14:48 +0900489 synchronized (mUms.mUsersLock) {
Bookatzf56f2582019-09-04 16:06:41 -0700490 final UserData user = mUms.getUserDataLU(userId);
Makoto Onuki73dded22017-12-20 13:14:48 +0900491 if (user != null) {
492 user.startRealtime = SystemClock.elapsedRealtime();
493 }
494 }
495 }
496
497 @Override
Bookatzf56f2582019-09-04 16:06:41 -0700498 public void onUnlockUser(@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.unlockRealtime = SystemClock.elapsedRealtime();
503 }
504 }
505 }
506
507 @Override
Bookatzf56f2582019-09-04 16:06:41 -0700508 public void onStopUser(@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.startRealtime = 0;
513 user.unlockRealtime = 0;
514 }
515 }
516 }
Amith Yamasanid04aaa32016-06-13 12:09:36 -0700517 }
518
Fyodor Kupolov0f4533d2016-05-18 18:43:12 -0700519 // TODO b/28848102 Add support for test dependencies injection
Fyodor Kupolove80085d2015-11-06 18:21:39 -0800520 @VisibleForTesting
Fyodor Kupolov0f4533d2016-05-18 18:43:12 -0700521 UserManagerService(Context context) {
Fyodor Kupolov5c0ecfd2017-01-27 11:11:57 -0800522 this(context, null, null, new Object(), context.getCacheDir());
Amith Yamasani4b2e9342011-03-31 12:38:53 -0700523 }
524
Dianne Hackborn4428e172012-08-24 17:43:05 -0700525 /**
526 * Called by package manager to create the service. This is closely
527 * associated with the package manager, and the given lock is the
528 * package manager's own lock.
529 */
Fyodor Kupolov5c0ecfd2017-01-27 11:11:57 -0800530 UserManagerService(Context context, PackageManagerService pm, UserDataPreparer userDataPreparer,
531 Object packagesLock) {
532 this(context, pm, userDataPreparer, packagesLock, Environment.getDataDirectory());
Amith Yamasani4b2e9342011-03-31 12:38:53 -0700533 }
534
Dianne Hackborn4428e172012-08-24 17:43:05 -0700535 private UserManagerService(Context context, PackageManagerService pm,
Fyodor Kupolov5c0ecfd2017-01-27 11:11:57 -0800536 UserDataPreparer userDataPreparer, Object packagesLock, File dataDir) {
Dianne Hackbornd4ac8d72012-09-27 23:20:10 -0700537 mContext = context;
538 mPm = pm;
Dianne Hackbornd4ac8d72012-09-27 23:20:10 -0700539 mPackagesLock = packagesLock;
Fyodor Kupolov75d0ea82014-12-15 16:21:07 -0800540 mHandler = new MainHandler();
Fyodor Kupolov5c0ecfd2017-01-27 11:11:57 -0800541 mUserDataPreparer = userDataPreparer;
Fyodor Kupolove80085d2015-11-06 18:21:39 -0800542 synchronized (mPackagesLock) {
543 mUsersDir = new File(dataDir, USER_INFO_DIR);
544 mUsersDir.mkdirs();
545 // Make zeroth user directory, for services to migrate their files to that location
546 File userZeroDir = new File(mUsersDir, String.valueOf(UserHandle.USER_SYSTEM));
547 userZeroDir.mkdirs();
548 FileUtils.setPermissions(mUsersDir.toString(),
549 FileUtils.S_IRWXU | FileUtils.S_IRWXG | FileUtils.S_IROTH | FileUtils.S_IXOTH,
550 -1, -1);
551 mUserListFile = new File(mUsersDir, USER_LIST_FILENAME);
552 initDefaultGuestRestrictions();
553 readUserListLP();
554 sInstance = this;
Xiaohui Chen4be96e42015-05-06 09:55:43 -0700555 }
Bookatz04d7ae52019-08-05 14:07:12 -0700556 mSystemPackageInstaller = new UserSystemPackageInstaller(this);
Makoto Onuki068c54a2015-10-13 14:34:03 -0700557 mLocalService = new LocalService();
558 LocalServices.addService(UserManagerInternal.class, mLocalService);
Clara Bayarria1771112015-12-18 16:29:18 +0000559 mLockPatternUtils = new LockPatternUtils(mContext);
Amith Yamasaniea1b9d72016-05-27 15:57:38 +0000560 mUserStates.put(UserHandle.USER_SYSTEM, UserState.STATE_BOOTING);
Xiaohui Chen4be96e42015-05-06 09:55:43 -0700561 }
562
563 void systemReady() {
Jason Monk62062992014-05-06 09:55:28 -0400564 mAppOpsService = IAppOpsService.Stub.asInterface(
565 ServiceManager.getService(Context.APP_OPS_SERVICE));
Makoto Onuki1a2cd742015-11-16 13:51:27 -0800566
567 synchronized (mRestrictionsLock) {
568 applyUserRestrictionsLR(UserHandle.USER_SYSTEM);
Jason Monk62062992014-05-06 09:55:28 -0400569 }
Samuel Tand9453b82016-03-14 15:57:02 -0700570
571 UserInfo currentGuestUser = findCurrentGuestUser();
572 if (currentGuestUser != null && !hasUserRestriction(
573 UserManager.DISALLOW_CONFIG_WIFI, currentGuestUser.id)) {
574 // If a guest user currently exists, apply the DISALLOW_CONFIG_WIFI option
575 // to it, in case this guest was created in a previous version where this
576 // user restriction was not a default guest restriction.
577 setUserRestriction(UserManager.DISALLOW_CONFIG_WIFI, true, currentGuestUser.id);
578 }
Amith Yamasanieb437d42016-04-29 09:31:25 -0700579
Ricky Waib1dd80b2016-06-07 18:00:55 +0100580 mContext.registerReceiver(mDisableQuietModeCallback,
581 new IntentFilter(ACTION_DISABLE_QUIET_MODE_AFTER_UNLOCK),
582 null, mHandler);
Amith Yamasani258848d2012-08-10 17:06:33 -0700583 }
584
Patrick Baumann6ae7afc2019-07-30 13:11:28 -0700585 /**
586 * This method retrieves the {@link UserManagerInternal} only for the purpose of
587 * PackageManagerService construction.
588 */
589 UserManagerInternal getInternalForInjectorOnly() {
590 return mLocalService;
591 }
592
Amith Yamasanid04aaa32016-06-13 12:09:36 -0700593 void cleanupPartialUsers() {
594 // Prune out any partially created, partially removed and ephemeral users.
595 ArrayList<UserInfo> partials = new ArrayList<>();
596 synchronized (mUsersLock) {
597 final int userSize = mUsers.size();
598 for (int i = 0; i < userSize; i++) {
599 UserInfo ui = mUsers.valueAt(i).info;
600 if ((ui.partial || ui.guestToRemove || ui.isEphemeral()) && i != 0) {
601 partials.add(ui);
Fyodor Kupolov0f4533d2016-05-18 18:43:12 -0700602 addRemovingUserIdLocked(ui.id);
Amith Yamasaniae261892016-06-27 10:40:09 -0700603 ui.partial = true;
Amith Yamasanid04aaa32016-06-13 12:09:36 -0700604 }
605 }
606 }
607 final int partialsSize = partials.size();
608 for (int i = 0; i < partialsSize; i++) {
609 UserInfo ui = partials.get(i);
610 Slog.w(LOG_TAG, "Removing partially created user " + ui.id
611 + " (name=" + ui.name + ")");
612 removeUserState(ui.id);
613 }
614 }
615
Amith Yamasani258848d2012-08-10 17:06:33 -0700616 @Override
Bookatzf56f2582019-09-04 16:06:41 -0700617 public String getUserAccount(@UserIdInt int userId) {
Xiaohui Chenb3b92582015-12-07 11:22:13 -0800618 checkManageUserAndAcrossUsersFullPermission("get user account");
619 synchronized (mUsersLock) {
Amith Yamasani12747872015-12-07 14:19:49 -0800620 return mUsers.get(userId).account;
Xiaohui Chenb3b92582015-12-07 11:22:13 -0800621 }
622 }
623
624 @Override
Bookatzf56f2582019-09-04 16:06:41 -0700625 public void setUserAccount(@UserIdInt int userId, String accountName) {
Xiaohui Chenb3b92582015-12-07 11:22:13 -0800626 checkManageUserAndAcrossUsersFullPermission("set user account");
Amith Yamasani12747872015-12-07 14:19:49 -0800627 UserData userToUpdate = null;
Xiaohui Chenb3b92582015-12-07 11:22:13 -0800628 synchronized (mPackagesLock) {
629 synchronized (mUsersLock) {
Amith Yamasani12747872015-12-07 14:19:49 -0800630 final UserData userData = mUsers.get(userId);
631 if (userData == null) {
632 Slog.e(LOG_TAG, "User not found for setting user account: u" + userId);
633 return;
634 }
635 String currentAccount = userData.account;
Narayan Kamath607223f2018-02-19 14:09:02 +0000636 if (!Objects.equals(currentAccount, accountName)) {
Amith Yamasani12747872015-12-07 14:19:49 -0800637 userData.account = accountName;
638 userToUpdate = userData;
Xiaohui Chenb3b92582015-12-07 11:22:13 -0800639 }
640 }
641
642 if (userToUpdate != null) {
643 writeUserLP(userToUpdate);
644 }
645 }
646 }
647
648 @Override
Xiaohui Chen70f6c382015-04-28 14:21:43 -0700649 public UserInfo getPrimaryUser() {
650 checkManageUsersPermission("query users");
Fyodor Kupolov82402752015-10-28 14:54:51 -0700651 synchronized (mUsersLock) {
Amith Yamasani515d4062015-09-28 11:30:06 -0700652 final int userSize = mUsers.size();
653 for (int i = 0; i < userSize; i++) {
Amith Yamasani12747872015-12-07 14:19:49 -0800654 UserInfo ui = mUsers.valueAt(i).info;
Xiaohui Chend3e9e182015-11-18 13:37:32 -0800655 if (ui.isPrimary() && !mRemovingUserIds.get(ui.id)) {
Xiaohui Chen70f6c382015-04-28 14:21:43 -0700656 return ui;
657 }
658 }
659 }
660 return null;
661 }
662
663 @Override
Xiaohui Chen594f2082015-08-18 11:04:20 -0700664 public @NonNull List<UserInfo> getUsers(boolean excludeDying) {
Sudheer Shankaf5cea032016-06-08 17:13:24 -0700665 checkManageOrCreateUsersPermission("query users");
Fyodor Kupolov82402752015-10-28 14:54:51 -0700666 synchronized (mUsersLock) {
Amith Yamasani13593602012-03-22 16:16:17 -0700667 ArrayList<UserInfo> users = new ArrayList<UserInfo>(mUsers.size());
Amith Yamasani515d4062015-09-28 11:30:06 -0700668 final int userSize = mUsers.size();
669 for (int i = 0; i < userSize; i++) {
Amith Yamasani12747872015-12-07 14:19:49 -0800670 UserInfo ui = mUsers.valueAt(i).info;
Dianne Hackbornd4ac8d72012-09-27 23:20:10 -0700671 if (ui.partial) {
672 continue;
673 }
Jeff Sharkeyffe0cb42012-11-05 17:24:43 -0800674 if (!excludeDying || !mRemovingUserIds.get(ui.id)) {
Amith Yamasani6f48d6e2016-03-23 14:28:25 -0700675 users.add(userWithName(ui));
Amith Yamasani920ace02012-09-20 22:15:37 -0700676 }
Amith Yamasani13593602012-03-22 16:16:17 -0700677 }
678 return users;
Amith Yamasani4b2e9342011-03-31 12:38:53 -0700679 }
Amith Yamasani13593602012-03-22 16:16:17 -0700680 }
681
Amith Yamasani258848d2012-08-10 17:06:33 -0700682 @Override
Bookatzf56f2582019-09-04 16:06:41 -0700683 public List<UserInfo> getProfiles(@UserIdInt int userId, boolean enabledOnly) {
Fyodor Kupolovc533b562016-04-01 14:37:07 -0700684 boolean returnFullInfo = true;
Amith Yamasani4f582632014-02-19 14:31:52 -0800685 if (userId != UserHandle.getCallingUserId()) {
Sudheer Shanka74680912016-07-29 11:03:37 -0700686 checkManageOrCreateUsersPermission("getting profiles related to user " + userId);
Fyodor Kupolovc533b562016-04-01 14:37:07 -0700687 } else {
688 returnFullInfo = hasManageUsersPermission();
Amith Yamasani4f582632014-02-19 14:31:52 -0800689 }
Amith Yamasanibe465322014-04-24 13:45:17 -0700690 final long ident = Binder.clearCallingIdentity();
691 try {
Fyodor Kupolov82402752015-10-28 14:54:51 -0700692 synchronized (mUsersLock) {
Fyodor Kupolovc533b562016-04-01 14:37:07 -0700693 return getProfilesLU(userId, enabledOnly, returnFullInfo);
Alexandra Gherghina385124d2014-04-03 13:37:39 +0100694 }
Amith Yamasanibe465322014-04-24 13:45:17 -0700695 } finally {
696 Binder.restoreCallingIdentity(ident);
Kenny Guya52dc3e2014-02-11 15:33:14 +0000697 }
698 }
699
Fyodor Kupolov7f98aa42016-04-07 14:56:25 -0700700 @Override
Bookatzf56f2582019-09-04 16:06:41 -0700701 public int[] getProfileIds(@UserIdInt int userId, boolean enabledOnly) {
Fyodor Kupolov7f98aa42016-04-07 14:56:25 -0700702 if (userId != UserHandle.getCallingUserId()) {
bohu12d23a12016-09-26 16:20:07 -0700703 checkManageOrCreateUsersPermission("getting profiles related to user " + userId);
Fyodor Kupolov7f98aa42016-04-07 14:56:25 -0700704 }
705 final long ident = Binder.clearCallingIdentity();
706 try {
707 synchronized (mUsersLock) {
708 return getProfileIdsLU(userId, enabledOnly).toArray();
709 }
710 } finally {
711 Binder.restoreCallingIdentity(ident);
712 }
713 }
714
Amith Yamasanibe465322014-04-24 13:45:17 -0700715 /** Assume permissions already checked and caller's identity cleared */
Andreas Gampe2e8c7672018-07-20 13:01:08 -0700716 @GuardedBy("mUsersLock")
Bookatzf56f2582019-09-04 16:06:41 -0700717 private List<UserInfo> getProfilesLU(@UserIdInt int userId, boolean enabledOnly,
718 boolean fullInfo) {
Fyodor Kupolov7f98aa42016-04-07 14:56:25 -0700719 IntArray profileIds = getProfileIdsLU(userId, enabledOnly);
720 ArrayList<UserInfo> users = new ArrayList<>(profileIds.size());
721 for (int i = 0; i < profileIds.size(); i++) {
722 int profileId = profileIds.get(i);
723 UserInfo userInfo = mUsers.get(profileId).info;
724 // If full info is not required - clear PII data to prevent 3P apps from reading it
725 if (!fullInfo) {
726 userInfo = new UserInfo(userInfo);
727 userInfo.name = null;
728 userInfo.iconPath = null;
729 } else {
730 userInfo = userWithName(userInfo);
731 }
732 users.add(userInfo);
733 }
734 return users;
735 }
736
737 /**
738 * Assume permissions already checked and caller's identity cleared
739 */
Andreas Gampe2e8c7672018-07-20 13:01:08 -0700740 @GuardedBy("mUsersLock")
Bookatzf56f2582019-09-04 16:06:41 -0700741 private IntArray getProfileIdsLU(@UserIdInt int userId, boolean enabledOnly) {
Fyodor Kupolov82402752015-10-28 14:54:51 -0700742 UserInfo user = getUserInfoLU(userId);
Fyodor Kupolov7f98aa42016-04-07 14:56:25 -0700743 IntArray result = new IntArray(mUsers.size());
Amith Yamasanidda003f2014-08-28 18:06:51 -0700744 if (user == null) {
745 // Probably a dying user
Fyodor Kupolov7f98aa42016-04-07 14:56:25 -0700746 return result;
Amith Yamasanidda003f2014-08-28 18:06:51 -0700747 }
Amith Yamasani515d4062015-09-28 11:30:06 -0700748 final int userSize = mUsers.size();
749 for (int i = 0; i < userSize; i++) {
Amith Yamasani12747872015-12-07 14:19:49 -0800750 UserInfo profile = mUsers.valueAt(i).info;
Amith Yamasanibe465322014-04-24 13:45:17 -0700751 if (!isProfileOf(user, profile)) {
752 continue;
753 }
Alexandra Gherghinadf35d572014-04-09 13:54:39 +0100754 if (enabledOnly && !profile.isEnabled()) {
755 continue;
Amith Yamasanibe465322014-04-24 13:45:17 -0700756 }
Amith Yamasani70fcf0c2014-07-11 08:40:19 -0700757 if (mRemovingUserIds.get(profile.id)) {
758 continue;
759 }
Tony Mak80189cd2016-04-05 17:21:42 +0100760 if (profile.partial) {
761 continue;
762 }
Fyodor Kupolov7f98aa42016-04-07 14:56:25 -0700763 result.add(profile.id);
Amith Yamasanibe465322014-04-24 13:45:17 -0700764 }
Fyodor Kupolov7f98aa42016-04-07 14:56:25 -0700765 return result;
Amith Yamasanibe465322014-04-24 13:45:17 -0700766 }
767
Jessica Hummelbe81c802014-04-22 15:49:22 +0100768 @Override
Bookatzf56f2582019-09-04 16:06:41 -0700769 public int getCredentialOwnerProfile(@UserIdInt int userId) {
Andres Moralesc5548c02015-08-05 10:23:12 -0700770 checkManageUsersPermission("get the credential owner");
Bookatzf56f2582019-09-04 16:06:41 -0700771 if (!mLockPatternUtils.isSeparateProfileChallengeEnabled(userId)) {
Fyodor Kupolov82402752015-10-28 14:54:51 -0700772 synchronized (mUsersLock) {
Bookatzf56f2582019-09-04 16:06:41 -0700773 UserInfo profileParent = getProfileParentLU(userId);
Andres Moralesc5548c02015-08-05 10:23:12 -0700774 if (profileParent != null) {
775 return profileParent.id;
776 }
777 }
778 }
779
Bookatzf56f2582019-09-04 16:06:41 -0700780 return userId;
Andres Moralesc5548c02015-08-05 10:23:12 -0700781 }
782
783 @Override
Bookatzf56f2582019-09-04 16:06:41 -0700784 public boolean isSameProfileGroup(@UserIdInt int userId, int otherUserId) {
Xiaohui Chenfd5b7742015-10-14 15:47:04 -0700785 if (userId == otherUserId) return true;
786 checkManageUsersPermission("check if in the same profile group");
Fyodor Kupolov0fb772e2016-10-13 16:27:34 -0700787 return isSameProfileGroupNoChecks(userId, otherUserId);
788 }
789
Bookatzf56f2582019-09-04 16:06:41 -0700790 private boolean isSameProfileGroupNoChecks(@UserIdInt int userId, int otherUserId) {
Fyodor Kupolov82402752015-10-28 14:54:51 -0700791 synchronized (mUsersLock) {
792 UserInfo userInfo = getUserInfoLU(userId);
793 if (userInfo == null || userInfo.profileGroupId == UserInfo.NO_PROFILE_GROUP_ID) {
794 return false;
795 }
796 UserInfo otherUserInfo = getUserInfoLU(otherUserId);
797 if (otherUserInfo == null
798 || otherUserInfo.profileGroupId == UserInfo.NO_PROFILE_GROUP_ID) {
799 return false;
800 }
801 return userInfo.profileGroupId == otherUserInfo.profileGroupId;
Xiaohui Chenfd5b7742015-10-14 15:47:04 -0700802 }
Xiaohui Chenfd5b7742015-10-14 15:47:04 -0700803 }
804
805 @Override
Bookatzf56f2582019-09-04 16:06:41 -0700806 public UserInfo getProfileParent(@UserIdInt int userId) {
Jessica Hummelbe81c802014-04-22 15:49:22 +0100807 checkManageUsersPermission("get the profile parent");
Fyodor Kupolov82402752015-10-28 14:54:51 -0700808 synchronized (mUsersLock) {
Bookatzf56f2582019-09-04 16:06:41 -0700809 return getProfileParentLU(userId);
Fyodor Kupolovff7233e2015-04-08 11:28:52 -0700810 }
811 }
812
Jakub Pawlowski0f1f5b72017-11-15 14:50:43 -0800813 @Override
Bookatzf56f2582019-09-04 16:06:41 -0700814 public int getProfileParentId(@UserIdInt int userId) {
Jakub Pawlowski0f1f5b72017-11-15 14:50:43 -0800815 checkManageUsersPermission("get the profile parent");
Bookatzf56f2582019-09-04 16:06:41 -0700816 return mLocalService.getProfileParentId(userId);
Jakub Pawlowski0f1f5b72017-11-15 14:50:43 -0800817 }
818
Andreas Gampe2e8c7672018-07-20 13:01:08 -0700819 @GuardedBy("mUsersLock")
Bookatzf56f2582019-09-04 16:06:41 -0700820 private UserInfo getProfileParentLU(@UserIdInt int userId) {
821 UserInfo profile = getUserInfoLU(userId);
Fyodor Kupolovff7233e2015-04-08 11:28:52 -0700822 if (profile == null) {
823 return null;
824 }
825 int parentUserId = profile.profileGroupId;
Bookatzf56f2582019-09-04 16:06:41 -0700826 if (parentUserId == userId || parentUserId == UserInfo.NO_PROFILE_GROUP_ID) {
Fyodor Kupolovff7233e2015-04-08 11:28:52 -0700827 return null;
828 } else {
Fyodor Kupolov82402752015-10-28 14:54:51 -0700829 return getUserInfoLU(parentUserId);
Jessica Hummelbe81c802014-04-22 15:49:22 +0100830 }
831 }
832
Fyodor Kupolov82402752015-10-28 14:54:51 -0700833 private static boolean isProfileOf(UserInfo user, UserInfo profile) {
Kenny Guy2a764942014-04-02 13:29:20 +0100834 return user.id == profile.id ||
835 (user.profileGroupId != UserInfo.NO_PROFILE_GROUP_ID
836 && user.profileGroupId == profile.profileGroupId);
Kenny Guya52dc3e2014-02-11 15:33:14 +0000837 }
838
Rubin Xu0a29ecd2015-11-04 15:11:48 +0000839 private void broadcastProfileAvailabilityChanges(UserHandle profileHandle,
Rubin Xuf13c9802016-01-21 18:06:00 +0000840 UserHandle parentHandle, boolean inQuietMode) {
Rubin Xue95057a2016-04-01 16:49:25 +0100841 Intent intent = new Intent();
842 if (inQuietMode) {
843 intent.setAction(Intent.ACTION_MANAGED_PROFILE_UNAVAILABLE);
844 } else {
845 intent.setAction(Intent.ACTION_MANAGED_PROFILE_AVAILABLE);
846 }
Rubin Xuf13c9802016-01-21 18:06:00 +0000847 intent.putExtra(Intent.EXTRA_QUIET_MODE, inQuietMode);
848 intent.putExtra(Intent.EXTRA_USER, profileHandle);
849 intent.putExtra(Intent.EXTRA_USER_HANDLE, profileHandle.getIdentifier());
Rubin Xu0a29ecd2015-11-04 15:11:48 +0000850 intent.addFlags(Intent.FLAG_RECEIVER_REGISTERED_ONLY);
Rubin Xuf13c9802016-01-21 18:06:00 +0000851 mContext.sendBroadcastAsUser(intent, parentHandle);
Rubin Xu0a29ecd2015-11-04 15:11:48 +0000852 }
853
854 @Override
Tony Makbece85d2018-01-12 12:10:17 +0000855 public boolean requestQuietModeEnabled(@NonNull String callingPackage, boolean enableQuietMode,
Bookatzf56f2582019-09-04 16:06:41 -0700856 @UserIdInt int userId, @Nullable IntentSender target) {
Tony Make3d1f652017-12-12 11:00:37 +0000857 Preconditions.checkNotNull(callingPackage);
858
Tony Makb7e6fd42017-12-05 19:40:28 +0000859 if (enableQuietMode && target != null) {
860 throw new IllegalArgumentException(
861 "target should only be specified when we are disabling quiet mode.");
862 }
Rubin Xu0a29ecd2015-11-04 15:11:48 +0000863
Tony Makd390ae92017-12-28 13:23:10 +0000864 ensureCanModifyQuietMode(callingPackage, Binder.getCallingUid(), target != null);
Tony Makb7e6fd42017-12-05 19:40:28 +0000865 final long identity = Binder.clearCallingIdentity();
866 try {
arangelov9b632d72018-12-07 23:21:22 +0000867 boolean result = false;
Tony Makb7e6fd42017-12-05 19:40:28 +0000868 if (enableQuietMode) {
arangelov9b632d72018-12-07 23:21:22 +0000869 setQuietModeEnabled(
Bookatzf56f2582019-09-04 16:06:41 -0700870 userId, true /* enableQuietMode */, target, callingPackage);
arangelov9b632d72018-12-07 23:21:22 +0000871 result = true;
Tony Makb7e6fd42017-12-05 19:40:28 +0000872 } else {
873 boolean needToShowConfirmCredential =
Bookatzf56f2582019-09-04 16:06:41 -0700874 mLockPatternUtils.isSecure(userId)
875 && !StorageManager.isUserKeyUnlocked(userId);
Tony Makb7e6fd42017-12-05 19:40:28 +0000876 if (needToShowConfirmCredential) {
Bookatzf56f2582019-09-04 16:06:41 -0700877 showConfirmCredentialToDisableQuietMode(userId, target);
Tony Makb7e6fd42017-12-05 19:40:28 +0000878 } else {
arangelov9b632d72018-12-07 23:21:22 +0000879 setQuietModeEnabled(
Bookatzf56f2582019-09-04 16:06:41 -0700880 userId, false /* enableQuietMode */, target, callingPackage);
arangelov9b632d72018-12-07 23:21:22 +0000881 result = true;
Tony Makb7e6fd42017-12-05 19:40:28 +0000882 }
Rubin Xu0a29ecd2015-11-04 15:11:48 +0000883 }
arangelov9b632d72018-12-07 23:21:22 +0000884 return result;
Tony Makb7e6fd42017-12-05 19:40:28 +0000885 } finally {
886 Binder.restoreCallingIdentity(identity);
887 }
888 }
889
Tony Make3d1f652017-12-12 11:00:37 +0000890 /**
Tony Makd390ae92017-12-28 13:23:10 +0000891 * The caller can modify quiet mode if it meets one of these conditions:
Tony Make3d1f652017-12-12 11:00:37 +0000892 * <ul>
893 * <li>Has system UID or root UID</li>
894 * <li>Has {@link Manifest.permission#MODIFY_QUIET_MODE}</li>
895 * <li>Has {@link Manifest.permission#MANAGE_USERS}</li>
896 * </ul>
Tony Makd390ae92017-12-28 13:23:10 +0000897 * <p>
898 * If caller wants to start an intent after disabling the quiet mode, it must has
899 * {@link Manifest.permission#MANAGE_USERS}.
Tony Make3d1f652017-12-12 11:00:37 +0000900 */
Tony Makd390ae92017-12-28 13:23:10 +0000901 private void ensureCanModifyQuietMode(String callingPackage, int callingUid,
902 boolean startIntent) {
Tony Make3d1f652017-12-12 11:00:37 +0000903 if (hasManageUsersPermission()) {
Tony Makd390ae92017-12-28 13:23:10 +0000904 return;
Tony Make3d1f652017-12-12 11:00:37 +0000905 }
Tony Makd390ae92017-12-28 13:23:10 +0000906 if (startIntent) {
907 throw new SecurityException("MANAGE_USERS permission is required to start intent "
908 + "after disabling quiet mode.");
909 }
jovanakf24ad492018-05-18 12:15:59 -0700910 final boolean hasModifyQuietModePermission = hasPermissionGranted(
911 Manifest.permission.MODIFY_QUIET_MODE, callingUid);
Tony Make3d1f652017-12-12 11:00:37 +0000912 if (hasModifyQuietModePermission) {
Tony Makd390ae92017-12-28 13:23:10 +0000913 return;
Tony Make3d1f652017-12-12 11:00:37 +0000914 }
915
Tony Makd390ae92017-12-28 13:23:10 +0000916 verifyCallingPackage(callingPackage, callingUid);
Tony Make3d1f652017-12-12 11:00:37 +0000917 final ShortcutServiceInternal shortcutInternal =
918 LocalServices.getService(ShortcutServiceInternal.class);
919 if (shortcutInternal != null) {
920 boolean isForegroundLauncher =
921 shortcutInternal.isForegroundDefaultLauncher(callingPackage, callingUid);
922 if (isForegroundLauncher) {
Tony Makd390ae92017-12-28 13:23:10 +0000923 return;
Tony Make3d1f652017-12-12 11:00:37 +0000924 }
925 }
Tony Makd390ae92017-12-28 13:23:10 +0000926 throw new SecurityException("Can't modify quiet mode, caller is neither foreground "
927 + "default launcher nor has MANAGE_USERS/MODIFY_QUIET_MODE permission");
Tony Make3d1f652017-12-12 11:00:37 +0000928 }
929
Bookatzf56f2582019-09-04 16:06:41 -0700930 private void setQuietModeEnabled(@UserIdInt int userId, boolean enableQuietMode,
arangelov9b632d72018-12-07 23:21:22 +0000931 IntentSender target, @Nullable String callingPackage) {
Tony Makb7e6fd42017-12-05 19:40:28 +0000932 final UserInfo profile, parent;
933 final UserData profileUserData;
934 synchronized (mUsersLock) {
Bookatzf56f2582019-09-04 16:06:41 -0700935 profile = getUserInfoLU(userId);
936 parent = getProfileParentLU(userId);
Tony Makb7e6fd42017-12-05 19:40:28 +0000937
Rubin Xu0a29ecd2015-11-04 15:11:48 +0000938 if (profile == null || !profile.isManagedProfile()) {
Bookatzf56f2582019-09-04 16:06:41 -0700939 throw new IllegalArgumentException("User " + userId + " is not a profile");
Rubin Xu0a29ecd2015-11-04 15:11:48 +0000940 }
Tony Makb7e6fd42017-12-05 19:40:28 +0000941 if (profile.isQuietModeEnabled() == enableQuietMode) {
942 Slog.i(LOG_TAG, "Quiet mode is already " + enableQuietMode);
943 return;
Rubin Xu0a29ecd2015-11-04 15:11:48 +0000944 }
Tony Makb7e6fd42017-12-05 19:40:28 +0000945 profile.flags ^= UserInfo.FLAG_QUIET_MODE;
946 profileUserData = getUserDataLU(profile.id);
Rubin Xu0a29ecd2015-11-04 15:11:48 +0000947 }
Tony Makb7e6fd42017-12-05 19:40:28 +0000948 synchronized (mPackagesLock) {
949 writeUserLP(profileUserData);
950 }
951 try {
952 if (enableQuietMode) {
Bookatzf56f2582019-09-04 16:06:41 -0700953 ActivityManager.getService().stopUser(userId, /* force */true, null);
Tony Makb7e6fd42017-12-05 19:40:28 +0000954 LocalServices.getService(ActivityManagerInternal.class)
Bookatzf56f2582019-09-04 16:06:41 -0700955 .killForegroundAppsForUser(userId);
Tony Makb7e6fd42017-12-05 19:40:28 +0000956 } else {
957 IProgressListener callback = target != null
958 ? new DisableQuietModeUserUnlockedCallback(target)
959 : null;
960 ActivityManager.getService().startUserInBackgroundWithListener(
Bookatzf56f2582019-09-04 16:06:41 -0700961 userId, callback);
Rubin Xuf13c9802016-01-21 18:06:00 +0000962 }
Bookatzf56f2582019-09-04 16:06:41 -0700963 logQuietModeEnabled(userId, enableQuietMode, callingPackage);
Tony Makb7e6fd42017-12-05 19:40:28 +0000964 } catch (RemoteException e) {
965 // Should not happen, same process.
966 e.rethrowAsRuntimeException();
Rubin Xu0a29ecd2015-11-04 15:11:48 +0000967 }
Tony Makb7e6fd42017-12-05 19:40:28 +0000968 broadcastProfileAvailabilityChanges(profile.getUserHandle(), parent.getUserHandle(),
969 enableQuietMode);
Rubin Xu0a29ecd2015-11-04 15:11:48 +0000970 }
971
Bookatzf56f2582019-09-04 16:06:41 -0700972 private void logQuietModeEnabled(@UserIdInt int userId, boolean enableQuietMode,
arangelov9b632d72018-12-07 23:21:22 +0000973 @Nullable String callingPackage) {
974 UserData userData;
975 synchronized (mUsersLock) {
Bookatzf56f2582019-09-04 16:06:41 -0700976 userData = getUserDataLU(userId);
arangelov9b632d72018-12-07 23:21:22 +0000977 }
978 if (userData == null) {
979 return;
980 }
981 final long now = System.currentTimeMillis();
982 final long period = (userData.getLastRequestQuietModeEnabledMillis() != 0L
983 ? now - userData.getLastRequestQuietModeEnabledMillis()
984 : now - userData.info.creationTime);
985 DevicePolicyEventLogger
986 .createEvent(DevicePolicyEnums.REQUEST_QUIET_MODE_ENABLED)
987 .setStrings(callingPackage)
988 .setBoolean(enableQuietMode)
989 .setTimePeriod(period)
990 .write();
991 userData.setLastRequestQuietModeEnabledMillis(now);
992 }
993
Rubin Xu0a29ecd2015-11-04 15:11:48 +0000994 @Override
Bookatzf56f2582019-09-04 16:06:41 -0700995 public boolean isQuietModeEnabled(@UserIdInt int userId) {
Rubin Xu0a29ecd2015-11-04 15:11:48 +0000996 synchronized (mPackagesLock) {
997 UserInfo info;
998 synchronized (mUsersLock) {
Bookatzf56f2582019-09-04 16:06:41 -0700999 info = getUserInfoLU(userId);
Rubin Xu0a29ecd2015-11-04 15:11:48 +00001000 }
1001 if (info == null || !info.isManagedProfile()) {
Rubin Xuf13c9802016-01-21 18:06:00 +00001002 return false;
Rubin Xu0a29ecd2015-11-04 15:11:48 +00001003 }
1004 return info.isQuietModeEnabled();
1005 }
1006 }
1007
Tony Makb7e6fd42017-12-05 19:40:28 +00001008 /**
1009 * Show confirm credential screen to unlock user in order to turn off quiet mode.
1010 */
1011 private void showConfirmCredentialToDisableQuietMode(
Bookatzf56f2582019-09-04 16:06:41 -07001012 @UserIdInt int userId, @Nullable IntentSender target) {
Tony Makb7e6fd42017-12-05 19:40:28 +00001013 // otherwise, we show a profile challenge to trigger decryption of the user
1014 final KeyguardManager km = (KeyguardManager) mContext.getSystemService(
1015 Context.KEYGUARD_SERVICE);
Bookatzf56f2582019-09-04 16:06:41 -07001016 // We should use userId not credentialOwnerUserId here, as even if it is unified
Tony Makb7e6fd42017-12-05 19:40:28 +00001017 // lock, confirm screenlock page will know and show personal challenge, and unlock
1018 // work profile when personal challenge is correct
Bookatzf56f2582019-09-04 16:06:41 -07001019 final Intent unlockIntent = km.createConfirmDeviceCredentialIntent(null, null, userId);
Tony Makb7e6fd42017-12-05 19:40:28 +00001020 if (unlockIntent == null) {
1021 return;
Benjamin Franzf02420c2016-04-04 18:52:21 +01001022 }
Tony Makb7e6fd42017-12-05 19:40:28 +00001023 final Intent callBackIntent = new Intent(
1024 ACTION_DISABLE_QUIET_MODE_AFTER_UNLOCK);
1025 if (target != null) {
1026 callBackIntent.putExtra(Intent.EXTRA_INTENT, target);
Benjamin Franzf02420c2016-04-04 18:52:21 +01001027 }
Bookatzf56f2582019-09-04 16:06:41 -07001028 callBackIntent.putExtra(Intent.EXTRA_USER_ID, userId);
Tony Makb7e6fd42017-12-05 19:40:28 +00001029 callBackIntent.setPackage(mContext.getPackageName());
1030 callBackIntent.addFlags(Intent.FLAG_RECEIVER_FOREGROUND);
1031 final PendingIntent pendingIntent = PendingIntent.getBroadcast(
1032 mContext,
1033 0,
1034 callBackIntent,
1035 PendingIntent.FLAG_CANCEL_CURRENT |
1036 PendingIntent.FLAG_ONE_SHOT |
1037 PendingIntent.FLAG_IMMUTABLE);
1038 // After unlocking the challenge, it will disable quiet mode and run the original
1039 // intentSender
1040 unlockIntent.putExtra(Intent.EXTRA_INTENT, pendingIntent.getIntentSender());
1041 unlockIntent.setFlags(FLAG_ACTIVITY_NEW_TASK | FLAG_ACTIVITY_EXCLUDE_FROM_RECENTS);
1042 mContext.startActivity(unlockIntent);
Benjamin Franzf02420c2016-04-04 18:52:21 +01001043 }
1044
1045 @Override
Bookatzf56f2582019-09-04 16:06:41 -07001046 public void setUserEnabled(@UserIdInt int userId) {
Alexandra Gherghinadf35d572014-04-09 13:54:39 +01001047 checkManageUsersPermission("enable user");
1048 synchronized (mPackagesLock) {
Fyodor Kupolov82402752015-10-28 14:54:51 -07001049 UserInfo info;
1050 synchronized (mUsersLock) {
1051 info = getUserInfoLU(userId);
1052 }
Alexandra Gherghinadf35d572014-04-09 13:54:39 +01001053 if (info != null && !info.isEnabled()) {
1054 info.flags ^= UserInfo.FLAG_DISABLED;
Amith Yamasani12747872015-12-07 14:19:49 -08001055 writeUserLP(getUserDataLU(info.id));
Alexandra Gherghinadf35d572014-04-09 13:54:39 +01001056 }
1057 }
1058 }
1059
jovanakf24ad492018-05-18 12:15:59 -07001060 @Override
Bookatzf56f2582019-09-04 16:06:41 -07001061 public void setUserAdmin(@UserIdInt int userId) {
jovanakf24ad492018-05-18 12:15:59 -07001062 checkManageUserAndAcrossUsersFullPermission("set user admin");
1063
1064 synchronized (mPackagesLock) {
1065 UserInfo info;
1066 synchronized (mUsersLock) {
1067 info = getUserInfoLU(userId);
1068 }
1069 if (info == null || info.isAdmin()) {
1070 // Exit if no user found with that id, or the user is already an Admin.
1071 return;
1072 }
1073
1074 info.flags ^= UserInfo.FLAG_ADMIN;
1075 writeUserLP(getUserDataLU(info.id));
1076 }
1077
1078 // Remove non-admin restrictions.
1079 // Keep synchronized with createUserEvenWhenDisallowed.
1080 setUserRestriction(UserManager.DISALLOW_SMS, false, userId);
1081 setUserRestriction(UserManager.DISALLOW_OUTGOING_CALLS, false, userId);
1082 }
1083
Andrew Scull85a63bc2016-10-24 13:47:47 +01001084 /**
1085 * Evicts a user's CE key by stopping and restarting the user.
1086 *
1087 * The key is evicted automatically by the user controller when the user has stopped.
1088 */
1089 @Override
1090 public void evictCredentialEncryptionKey(@UserIdInt int userId) {
1091 checkManageUsersPermission("evict CE key");
1092 final IActivityManager am = ActivityManagerNative.getDefault();
1093 final long identity = Binder.clearCallingIdentity();
1094 try {
1095 am.restartUserInBackground(userId);
1096 } catch (RemoteException re) {
1097 throw re.rethrowAsRuntimeException();
1098 } finally {
1099 Binder.restoreCallingIdentity(identity);
1100 }
1101 }
1102
Alexandra Gherghinadf35d572014-04-09 13:54:39 +01001103 @Override
Bookatzf56f2582019-09-04 16:06:41 -07001104 public UserInfo getUserInfo(@UserIdInt int userId) {
Sudheer Shankaaccaa082016-06-14 16:22:57 -07001105 checkManageOrCreateUsersPermission("query user");
Tony Mak8673b282016-03-21 21:10:59 +00001106 synchronized (mUsersLock) {
Amith Yamasani6f48d6e2016-03-23 14:28:25 -07001107 return userWithName(getUserInfoLU(userId));
1108 }
1109 }
1110
1111 /**
1112 * Returns a UserInfo object with the name filled in, for Owner, or the original
1113 * if the name is already set.
1114 */
1115 private UserInfo userWithName(UserInfo orig) {
1116 if (orig != null && orig.name == null && orig.id == UserHandle.USER_SYSTEM) {
1117 UserInfo withName = new UserInfo(orig);
1118 withName.name = getOwnerName();
1119 return withName;
1120 } else {
1121 return orig;
Tony Mak8673b282016-03-21 21:10:59 +00001122 }
1123 }
1124
1125 @Override
Kenny Guy02c89902016-11-15 19:36:38 +00001126 public int getManagedProfileBadge(@UserIdInt int userId) {
Jon Miranda2b340a22019-01-25 14:03:49 -08001127 checkManageOrInteractPermIfCallerInOtherProfileGroup(userId, "getManagedProfileBadge");
Kenny Guy02c89902016-11-15 19:36:38 +00001128 synchronized (mUsersLock) {
1129 UserInfo userInfo = getUserInfoLU(userId);
1130 return userInfo != null ? userInfo.profileBadge : 0;
1131 }
1132 }
1133
1134 @Override
Bookatzf56f2582019-09-04 16:06:41 -07001135 public boolean isManagedProfile(@UserIdInt int userId) {
Jon Miranda2b340a22019-01-25 14:03:49 -08001136 checkManageOrInteractPermIfCallerInOtherProfileGroup(userId, "isManagedProfile");
Fyodor Kupolov82402752015-10-28 14:54:51 -07001137 synchronized (mUsersLock) {
Amith Yamasani1c41dc82016-06-28 16:13:15 -07001138 UserInfo userInfo = getUserInfoLU(userId);
Tony Mak8673b282016-03-21 21:10:59 +00001139 return userInfo != null && userInfo.isManagedProfile();
Amith Yamasani13593602012-03-22 16:16:17 -07001140 }
1141 }
1142
Amith Yamasani71e6c692013-03-24 17:39:28 -07001143 @Override
Bookatzf56f2582019-09-04 16:06:41 -07001144 public boolean isUserUnlockingOrUnlocked(@UserIdInt int userId) {
Fyodor Kupolov2e7e0962016-12-01 18:09:17 -08001145 checkManageOrInteractPermIfCallerInOtherProfileGroup(userId, "isUserUnlockingOrUnlocked");
Fyodor Kupolovc413f702016-10-06 17:11:14 -07001146 return mLocalService.isUserUnlockingOrUnlocked(userId);
1147 }
1148
1149 @Override
Bookatzf56f2582019-09-04 16:06:41 -07001150 public boolean isUserUnlocked(@UserIdInt int userId) {
Fyodor Kupolov2e7e0962016-12-01 18:09:17 -08001151 checkManageOrInteractPermIfCallerInOtherProfileGroup(userId, "isUserUnlocked");
Fyodor Kupolov0468ee92017-05-25 17:06:17 -07001152 return mLocalService.isUserUnlocked(userId);
Fyodor Kupolov2e7e0962016-12-01 18:09:17 -08001153 }
1154
1155 @Override
Bookatzf56f2582019-09-04 16:06:41 -07001156 public boolean isUserRunning(@UserIdInt int userId) {
Fyodor Kupolov2e7e0962016-12-01 18:09:17 -08001157 checkManageOrInteractPermIfCallerInOtherProfileGroup(userId, "isUserRunning");
1158 return mLocalService.isUserRunning(userId);
1159 }
1160
Makoto Onuki73dded22017-12-20 13:14:48 +09001161 @Override
Bookatzcde3d922019-03-08 14:30:00 -08001162 public String getUserName() {
1163 if (!hasManageUsersOrPermission(android.Manifest.permission.GET_ACCOUNTS_PRIVILEGED)) {
1164 throw new SecurityException("You need MANAGE_USERS or GET_ACCOUNTS_PRIVILEGED "
1165 + "permissions to: get user name");
1166 }
1167 final int userId = UserHandle.getUserId(Binder.getCallingUid());
1168 synchronized (mUsersLock) {
1169 UserInfo userInfo = userWithName(getUserInfoLU(userId));
1170 return userInfo == null ? "" : userInfo.name;
1171 }
1172 }
1173
1174 @Override
Makoto Onuki73dded22017-12-20 13:14:48 +09001175 public long getUserStartRealtime() {
1176 final int userId = UserHandle.getUserId(Binder.getCallingUid());
1177 synchronized (mUsersLock) {
1178 final UserData user = getUserDataLU(userId);
1179 if (user != null) {
1180 return user.startRealtime;
1181 }
1182 return 0;
1183 }
1184 }
1185
1186 @Override
1187 public long getUserUnlockRealtime() {
1188 synchronized (mUsersLock) {
1189 final UserData user = getUserDataLU(UserHandle.getUserId(Binder.getCallingUid()));
1190 if (user != null) {
1191 return user.unlockRealtime;
1192 }
1193 return 0;
1194 }
1195 }
1196
Bookatzf56f2582019-09-04 16:06:41 -07001197 private void checkManageOrInteractPermIfCallerInOtherProfileGroup(@UserIdInt int userId,
1198 String name) {
Fyodor Kupolov2e7e0962016-12-01 18:09:17 -08001199 int callingUserId = UserHandle.getCallingUserId();
1200 if (callingUserId == userId || isSameProfileGroupNoChecks(callingUserId, userId) ||
1201 hasManageUsersPermission()) {
1202 return;
1203 }
jovanakf24ad492018-05-18 12:15:59 -07001204 if (!hasPermissionGranted(Manifest.permission.INTERACT_ACROSS_USERS,
1205 Binder.getCallingUid())) {
Fyodor Kupolov2e7e0962016-12-01 18:09:17 -08001206 throw new SecurityException("You need INTERACT_ACROSS_USERS or MANAGE_USERS permission "
1207 + "to: check " + name);
1208 }
1209 }
1210
1211 @Override
Bookatzf56f2582019-09-04 16:06:41 -07001212 public boolean isDemoUser(@UserIdInt int userId) {
Amith Yamasani1c41dc82016-06-28 16:13:15 -07001213 int callingUserId = UserHandle.getCallingUserId();
1214 if (callingUserId != userId && !hasManageUsersPermission()) {
1215 throw new SecurityException("You need MANAGE_USERS permission to query if u=" + userId
1216 + " is a demo user");
1217 }
1218 synchronized (mUsersLock) {
1219 UserInfo userInfo = getUserInfoLU(userId);
1220 return userInfo != null && userInfo.isDemo();
1221 }
1222 }
1223
1224 @Override
Amith Yamasani71e6c692013-03-24 17:39:28 -07001225 public boolean isRestricted() {
Fyodor Kupolov82402752015-10-28 14:54:51 -07001226 synchronized (mUsersLock) {
1227 return getUserInfoLU(UserHandle.getCallingUserId()).isRestricted();
Amith Yamasani71e6c692013-03-24 17:39:28 -07001228 }
1229 }
1230
Fyodor Kupolov1c363152015-09-02 13:27:21 -07001231 @Override
Bookatzf56f2582019-09-04 16:06:41 -07001232 public boolean canHaveRestrictedProfile(@UserIdInt int userId) {
Fyodor Kupolov1c363152015-09-02 13:27:21 -07001233 checkManageUsersPermission("canHaveRestrictedProfile");
Fyodor Kupolov82402752015-10-28 14:54:51 -07001234 synchronized (mUsersLock) {
1235 final UserInfo userInfo = getUserInfoLU(userId);
Fyodor Kupolov1c363152015-09-02 13:27:21 -07001236 if (userInfo == null || !userInfo.canHaveProfile()) {
1237 return false;
1238 }
1239 if (!userInfo.isAdmin()) {
1240 return false;
1241 }
Makoto Onukie7927da2015-11-25 10:05:17 -08001242 // restricted profile can be created if there is no DO set and the admin user has no PO;
1243 return !mIsDeviceManaged && !mIsUserManaged.get(userId);
Fyodor Kupolov1c363152015-09-02 13:27:21 -07001244 }
Fyodor Kupolov1c363152015-09-02 13:27:21 -07001245 }
1246
Fyodor Kupolovca177562017-11-09 17:43:01 -08001247 @Override
1248 public boolean hasRestrictedProfiles() {
1249 checkManageUsersPermission("hasRestrictedProfiles");
1250 final int callingUserId = UserHandle.getCallingUserId();
1251 synchronized (mUsersLock) {
1252 final int userSize = mUsers.size();
1253 for (int i = 0; i < userSize; i++) {
1254 UserInfo profile = mUsers.valueAt(i).info;
1255 if (callingUserId != profile.id
1256 && profile.restrictedProfileParentId == callingUserId) {
1257 return true;
1258 }
1259 }
1260 return false;
1261 }
1262 }
1263
Amith Yamasani195263742012-08-21 15:40:12 -07001264 /*
1265 * Should be locked on mUsers before calling this.
1266 */
Andreas Gampe2e8c7672018-07-20 13:01:08 -07001267 @GuardedBy("mUsersLock")
Bookatzf56f2582019-09-04 16:06:41 -07001268 private UserInfo getUserInfoLU(@UserIdInt int userId) {
Amith Yamasani12747872015-12-07 14:19:49 -08001269 final UserData userData = mUsers.get(userId);
Amith Yamasani16389312012-10-17 21:20:14 -07001270 // If it is partial and not in the process of being removed, return as unknown user.
Amith Yamasani12747872015-12-07 14:19:49 -08001271 if (userData != null && userData.info.partial && !mRemovingUserIds.get(userId)) {
Dianne Hackbornd4ac8d72012-09-27 23:20:10 -07001272 Slog.w(LOG_TAG, "getUserInfo: unknown user #" + userId);
1273 return null;
1274 }
Amith Yamasani12747872015-12-07 14:19:49 -08001275 return userData != null ? userData.info : null;
1276 }
1277
Andreas Gampe2e8c7672018-07-20 13:01:08 -07001278 @GuardedBy("mUsersLock")
Bookatzf56f2582019-09-04 16:06:41 -07001279 private UserData getUserDataLU(@UserIdInt int userId) {
Amith Yamasani12747872015-12-07 14:19:49 -08001280 final UserData userData = mUsers.get(userId);
1281 // If it is partial and not in the process of being removed, return as unknown user.
1282 if (userData != null && userData.info.partial && !mRemovingUserIds.get(userId)) {
1283 return null;
1284 }
1285 return userData;
Amith Yamasani195263742012-08-21 15:40:12 -07001286 }
1287
Fyodor Kupolov82402752015-10-28 14:54:51 -07001288 /**
1289 * Obtains {@link #mUsersLock} and return UserInfo from mUsers.
1290 * <p>No permissions checking or any addition checks are made</p>
1291 */
Bookatzf56f2582019-09-04 16:06:41 -07001292 private UserInfo getUserInfoNoChecks(@UserIdInt int userId) {
Fyodor Kupolov82402752015-10-28 14:54:51 -07001293 synchronized (mUsersLock) {
Amith Yamasani12747872015-12-07 14:19:49 -08001294 final UserData userData = mUsers.get(userId);
1295 return userData != null ? userData.info : null;
1296 }
1297 }
1298
1299 /**
1300 * Obtains {@link #mUsersLock} and return UserData from mUsers.
1301 * <p>No permissions checking or any addition checks are made</p>
1302 */
Bookatzf56f2582019-09-04 16:06:41 -07001303 private UserData getUserDataNoChecks(@UserIdInt int userId) {
Amith Yamasani12747872015-12-07 14:19:49 -08001304 synchronized (mUsersLock) {
Fyodor Kupolov82402752015-10-28 14:54:51 -07001305 return mUsers.get(userId);
1306 }
1307 }
1308
Amith Yamasani236b2b52015-08-18 14:32:14 -07001309 /** Called by PackageManagerService */
Bookatzf56f2582019-09-04 16:06:41 -07001310 public boolean exists(@UserIdInt int userId) {
Todd Kennedy0eb97382017-10-03 16:57:22 -07001311 return mLocalService.exists(userId);
Amith Yamasani13593602012-03-22 16:16:17 -07001312 }
1313
Amith Yamasani258848d2012-08-10 17:06:33 -07001314 @Override
Bookatzf56f2582019-09-04 16:06:41 -07001315 public void setUserName(@UserIdInt int userId, String name) {
Amith Yamasani2a003292012-08-14 18:25:45 -07001316 checkManageUsersPermission("rename users");
Dianne Hackbornd4ac8d72012-09-27 23:20:10 -07001317 boolean changed = false;
Dianne Hackborn4428e172012-08-24 17:43:05 -07001318 synchronized (mPackagesLock) {
Amith Yamasani12747872015-12-07 14:19:49 -08001319 UserData userData = getUserDataNoChecks(userId);
1320 if (userData == null || userData.info.partial) {
Dianne Hackbornd4ac8d72012-09-27 23:20:10 -07001321 Slog.w(LOG_TAG, "setUserName: unknown user #" + userId);
1322 return;
1323 }
Amith Yamasani12747872015-12-07 14:19:49 -08001324 if (name != null && !name.equals(userData.info.name)) {
1325 userData.info.name = name;
1326 writeUserLP(userData);
Dianne Hackbornd4ac8d72012-09-27 23:20:10 -07001327 changed = true;
Amith Yamasani13593602012-03-22 16:16:17 -07001328 }
1329 }
Dianne Hackbornd4ac8d72012-09-27 23:20:10 -07001330 if (changed) {
Bookatzf9368552019-03-14 11:57:09 -07001331 long ident = Binder.clearCallingIdentity();
1332 try {
1333 sendUserInfoChangedBroadcast(userId);
1334 } finally {
1335 Binder.restoreCallingIdentity(ident);
1336 }
Dianne Hackbornd4ac8d72012-09-27 23:20:10 -07001337 }
Amith Yamasani4b2e9342011-03-31 12:38:53 -07001338 }
1339
Amith Yamasani258848d2012-08-10 17:06:33 -07001340 @Override
Bookatzf56f2582019-09-04 16:06:41 -07001341 public void setUserIcon(@UserIdInt int userId, Bitmap bitmap) {
Amith Yamasani2a003292012-08-14 18:25:45 -07001342 checkManageUsersPermission("update users");
Oleksandr Peletskyi7f1f1df2016-01-18 15:40:21 +01001343 if (hasUserRestriction(UserManager.DISALLOW_SET_USER_ICON, userId)) {
1344 Log.w(LOG_TAG, "Cannot set user icon. DISALLOW_SET_USER_ICON is enabled.");
1345 return;
Amith Yamasanib8151ec2012-04-18 18:02:48 -07001346 }
Oleksandr Peletskyi7f1f1df2016-01-18 15:40:21 +01001347 mLocalService.setUserIcon(userId, bitmap);
Amith Yamasanie928d7d2012-09-17 21:46:51 -07001348 }
1349
Oleksandr Peletskyi7f1f1df2016-01-18 15:40:21 +01001350
1351
Bookatzf56f2582019-09-04 16:06:41 -07001352 private void sendUserInfoChangedBroadcast(@UserIdInt int userId) {
Amith Yamasanie928d7d2012-09-17 21:46:51 -07001353 Intent changedIntent = new Intent(Intent.ACTION_USER_INFO_CHANGED);
1354 changedIntent.putExtra(Intent.EXTRA_USER_HANDLE, userId);
1355 changedIntent.addFlags(Intent.FLAG_RECEIVER_REGISTERED_ONLY);
Amith Yamasani6fc1d4e2013-05-08 16:43:58 -07001356 mContext.sendBroadcastAsUser(changedIntent, UserHandle.ALL);
Amith Yamasanib8151ec2012-04-18 18:02:48 -07001357 }
1358
Amith Yamasani258848d2012-08-10 17:06:33 -07001359 @Override
Oleksandr Peletskyicd6fa302016-02-25 16:28:39 +01001360 public ParcelFileDescriptor getUserIcon(int targetUserId) {
Bookatzcde3d922019-03-08 14:30:00 -08001361 if (!hasManageUsersOrPermission(android.Manifest.permission.GET_ACCOUNTS_PRIVILEGED)) {
1362 throw new SecurityException("You need MANAGE_USERS or GET_ACCOUNTS_PRIVILEGED "
1363 + "permissions to: get user icon");
1364 }
Adrian Roos1bdff912015-02-17 15:51:35 +01001365 String iconPath;
Amith Yamasani3b49f072012-09-17 10:21:43 -07001366 synchronized (mPackagesLock) {
Oleksandr Peletskyicd6fa302016-02-25 16:28:39 +01001367 UserInfo targetUserInfo = getUserInfoNoChecks(targetUserId);
1368 if (targetUserInfo == null || targetUserInfo.partial) {
1369 Slog.w(LOG_TAG, "getUserIcon: unknown user #" + targetUserId);
Dianne Hackbornd4ac8d72012-09-27 23:20:10 -07001370 return null;
1371 }
Oleksandr Peletskyicd6fa302016-02-25 16:28:39 +01001372
1373 final int callingUserId = UserHandle.getCallingUserId();
1374 final int callingGroupId = getUserInfoNoChecks(callingUserId).profileGroupId;
1375 final int targetGroupId = targetUserInfo.profileGroupId;
1376 final boolean sameGroup = (callingGroupId != UserInfo.NO_PROFILE_GROUP_ID
1377 && callingGroupId == targetGroupId);
1378 if ((callingUserId != targetUserId) && !sameGroup) {
Nicolas Prevot88cc3462014-05-14 14:51:48 +01001379 checkManageUsersPermission("get the icon of a user who is not related");
1380 }
Oleksandr Peletskyicd6fa302016-02-25 16:28:39 +01001381
1382 if (targetUserInfo.iconPath == null) {
Dianne Hackbornd4ac8d72012-09-27 23:20:10 -07001383 return null;
1384 }
Oleksandr Peletskyicd6fa302016-02-25 16:28:39 +01001385 iconPath = targetUserInfo.iconPath;
Amith Yamasani3b49f072012-09-17 10:21:43 -07001386 }
Adrian Roos1bdff912015-02-17 15:51:35 +01001387
1388 try {
1389 return ParcelFileDescriptor.open(
1390 new File(iconPath), ParcelFileDescriptor.MODE_READ_ONLY);
1391 } catch (FileNotFoundException e) {
1392 Log.e(LOG_TAG, "Couldn't find icon file", e);
1393 }
1394 return null;
Amith Yamasani3b49f072012-09-17 10:21:43 -07001395 }
1396
Bookatzf56f2582019-09-04 16:06:41 -07001397 public void makeInitialized(@UserIdInt int userId) {
Dianne Hackborn5dc5a002012-09-15 19:33:48 -07001398 checkManageUsersPermission("makeInitialized");
Fyodor Kupolove80085d2015-11-06 18:21:39 -08001399 boolean scheduleWriteUser = false;
Amith Yamasani12747872015-12-07 14:19:49 -08001400 UserData userData;
Fyodor Kupolove80085d2015-11-06 18:21:39 -08001401 synchronized (mUsersLock) {
Amith Yamasani12747872015-12-07 14:19:49 -08001402 userData = mUsers.get(userId);
1403 if (userData == null || userData.info.partial) {
Dianne Hackbornd4ac8d72012-09-27 23:20:10 -07001404 Slog.w(LOG_TAG, "makeInitialized: unknown user #" + userId);
Fyodor Kupolove80085d2015-11-06 18:21:39 -08001405 return;
Dianne Hackbornd4ac8d72012-09-27 23:20:10 -07001406 }
Amith Yamasani12747872015-12-07 14:19:49 -08001407 if ((userData.info.flags & UserInfo.FLAG_INITIALIZED) == 0) {
1408 userData.info.flags |= UserInfo.FLAG_INITIALIZED;
Fyodor Kupolove80085d2015-11-06 18:21:39 -08001409 scheduleWriteUser = true;
Dianne Hackborn5dc5a002012-09-15 19:33:48 -07001410 }
1411 }
Fyodor Kupolove80085d2015-11-06 18:21:39 -08001412 if (scheduleWriteUser) {
Amith Yamasani12747872015-12-07 14:19:49 -08001413 scheduleWriteUser(userData);
Fyodor Kupolove80085d2015-11-06 18:21:39 -08001414 }
Dianne Hackborn5dc5a002012-09-15 19:33:48 -07001415 }
1416
Amith Yamasaniaa6634e2014-10-06 14:20:28 -07001417 /**
1418 * If default guest restrictions haven't been initialized yet, add the basic
1419 * restrictions.
1420 */
1421 private void initDefaultGuestRestrictions() {
Fyodor Kupolove80085d2015-11-06 18:21:39 -08001422 synchronized (mGuestRestrictions) {
1423 if (mGuestRestrictions.isEmpty()) {
Samuel Tand9453b82016-03-14 15:57:02 -07001424 mGuestRestrictions.putBoolean(UserManager.DISALLOW_CONFIG_WIFI, true);
Fyodor Kupolove04462c2015-11-30 15:02:53 -08001425 mGuestRestrictions.putBoolean(UserManager.DISALLOW_INSTALL_UNKNOWN_SOURCES, true);
Fyodor Kupolove80085d2015-11-06 18:21:39 -08001426 mGuestRestrictions.putBoolean(UserManager.DISALLOW_OUTGOING_CALLS, true);
1427 mGuestRestrictions.putBoolean(UserManager.DISALLOW_SMS, true);
1428 }
Amith Yamasaniaa6634e2014-10-06 14:20:28 -07001429 }
1430 }
1431
Amith Yamasanie4cf7342012-12-17 11:12:09 -08001432 @Override
Amith Yamasanie4afaa32014-06-30 14:55:07 +05301433 public Bundle getDefaultGuestRestrictions() {
1434 checkManageUsersPermission("getDefaultGuestRestrictions");
Fyodor Kupolove80085d2015-11-06 18:21:39 -08001435 synchronized (mGuestRestrictions) {
Amith Yamasanie4afaa32014-06-30 14:55:07 +05301436 return new Bundle(mGuestRestrictions);
1437 }
1438 }
1439
1440 @Override
1441 public void setDefaultGuestRestrictions(Bundle restrictions) {
1442 checkManageUsersPermission("setDefaultGuestRestrictions");
Fyodor Kupolove80085d2015-11-06 18:21:39 -08001443 synchronized (mGuestRestrictions) {
1444 mGuestRestrictions.clear();
1445 mGuestRestrictions.putAll(restrictions);
1446 }
1447 synchronized (mPackagesLock) {
1448 writeUserListLP();
Amith Yamasanie4afaa32014-06-30 14:55:07 +05301449 }
1450 }
1451
Makoto Onuki1a2cd742015-11-16 13:51:27 -08001452 /**
Pavel Grafov6a40f092016-10-25 15:46:51 +01001453 * See {@link UserManagerInternal#setDevicePolicyUserRestrictions}
Makoto Onuki1a2cd742015-11-16 13:51:27 -08001454 */
Bookatzf56f2582019-09-04 16:06:41 -07001455 private void setDevicePolicyUserRestrictionsInner(@UserIdInt int userId,
1456 @Nullable Bundle restrictions, boolean isDeviceOwner, int cameraRestrictionScope) {
Pavel Grafov6a40f092016-10-25 15:46:51 +01001457 final Bundle global = new Bundle();
1458 final Bundle local = new Bundle();
1459
1460 // Sort restrictions into local and global ensuring they don't overlap.
1461 UserRestrictionsUtils.sortToGlobalAndLocal(restrictions, isDeviceOwner,
1462 cameraRestrictionScope, global, local);
1463
1464 boolean globalChanged, localChanged;
Makoto Onuki1a2cd742015-11-16 13:51:27 -08001465 synchronized (mRestrictionsLock) {
Pavel Grafov6a40f092016-10-25 15:46:51 +01001466 // Update global and local restrictions if they were changed.
1467 globalChanged = updateRestrictionsIfNeededLR(
1468 userId, global, mDevicePolicyGlobalUserRestrictions);
1469 localChanged = updateRestrictionsIfNeededLR(
1470 userId, local, mDevicePolicyLocalUserRestrictions);
1471
1472 if (isDeviceOwner) {
Zoltan Szatmary-Bane7834602016-04-08 18:41:11 +01001473 // Remember the global restriction owner userId to be able to make a distinction
1474 // in getUserRestrictionSource on who set local policies.
Pavel Grafov6a40f092016-10-25 15:46:51 +01001475 mDeviceOwnerUserId = userId;
Zoltan Szatmary-Bane7834602016-04-08 18:41:11 +01001476 } else {
Pavel Grafov6a40f092016-10-25 15:46:51 +01001477 if (mDeviceOwnerUserId == userId) {
Zoltan Szatmary-Ban8a5536d2016-05-27 17:56:44 +01001478 // When profile owner sets restrictions it passes null global bundle and we
1479 // reset global restriction owner userId.
1480 // This means this user used to have DO, but now the DO is gone and the user
1481 // instead has PO.
Pavel Grafov6a40f092016-10-25 15:46:51 +01001482 mDeviceOwnerUserId = UserHandle.USER_NULL;
Makoto Onuki1a2cd742015-11-16 13:51:27 -08001483 }
1484 }
1485 }
1486 if (DBG) {
1487 Log.d(LOG_TAG, "setDevicePolicyUserRestrictions: userId=" + userId
1488 + " global=" + global + (globalChanged ? " (changed)" : "")
1489 + " local=" + local + (localChanged ? " (changed)" : "")
1490 );
1491 }
1492 // Don't call them within the mRestrictionsLock.
1493 synchronized (mPackagesLock) {
Pavel Grafov6a40f092016-10-25 15:46:51 +01001494 if (localChanged || globalChanged) {
Amith Yamasani12747872015-12-07 14:19:49 -08001495 writeUserLP(getUserDataNoChecks(userId));
Makoto Onuki1a2cd742015-11-16 13:51:27 -08001496 }
1497 }
1498
1499 synchronized (mRestrictionsLock) {
1500 if (globalChanged) {
1501 applyUserRestrictionsForAllUsersLR();
1502 } else if (localChanged) {
1503 applyUserRestrictionsLR(userId);
1504 }
1505 }
1506 }
1507
Pavel Grafov6a40f092016-10-25 15:46:51 +01001508 /**
1509 * Updates restriction bundle for a given user in a given restriction array. If new bundle is
1510 * empty, record is removed from the array.
1511 * @return whether restrictions bundle is different from the old one.
1512 */
Bookatzf56f2582019-09-04 16:06:41 -07001513 private boolean updateRestrictionsIfNeededLR(@UserIdInt int userId,
1514 @Nullable Bundle restrictions, SparseArray<Bundle> restrictionsArray) {
Pavel Grafov6a40f092016-10-25 15:46:51 +01001515 final boolean changed =
1516 !UserRestrictionsUtils.areEqual(restrictionsArray.get(userId), restrictions);
1517 if (changed) {
1518 if (!UserRestrictionsUtils.isEmpty(restrictions)) {
1519 restrictionsArray.put(userId, restrictions);
1520 } else {
1521 restrictionsArray.delete(userId);
1522 }
1523 }
1524 return changed;
1525 }
1526
Makoto Onuki068c54a2015-10-13 14:34:03 -07001527 @GuardedBy("mRestrictionsLock")
Bookatzf56f2582019-09-04 16:06:41 -07001528 private Bundle computeEffectiveUserRestrictionsLR(@UserIdInt int userId) {
Makoto Onuki1a2cd742015-11-16 13:51:27 -08001529 final Bundle baseRestrictions =
1530 UserRestrictionsUtils.nonNull(mBaseUserRestrictions.get(userId));
Pavel Grafov6a40f092016-10-25 15:46:51 +01001531 final Bundle global = UserRestrictionsUtils.mergeAll(mDevicePolicyGlobalUserRestrictions);
Makoto Onuki1a2cd742015-11-16 13:51:27 -08001532 final Bundle local = mDevicePolicyLocalUserRestrictions.get(userId);
Makoto Onuki068c54a2015-10-13 14:34:03 -07001533
Makoto Onuki1a2cd742015-11-16 13:51:27 -08001534 if (UserRestrictionsUtils.isEmpty(global) && UserRestrictionsUtils.isEmpty(local)) {
1535 // Common case first.
1536 return baseRestrictions;
Makoto Onuki068c54a2015-10-13 14:34:03 -07001537 }
Makoto Onuki1a2cd742015-11-16 13:51:27 -08001538 final Bundle effective = UserRestrictionsUtils.clone(baseRestrictions);
1539 UserRestrictionsUtils.merge(effective, global);
1540 UserRestrictionsUtils.merge(effective, local);
1541
Makoto Onuki068c54a2015-10-13 14:34:03 -07001542 return effective;
1543 }
1544
1545 @GuardedBy("mRestrictionsLock")
Bookatzf56f2582019-09-04 16:06:41 -07001546 private void invalidateEffectiveUserRestrictionsLR(@UserIdInt int userId) {
Makoto Onuki068c54a2015-10-13 14:34:03 -07001547 if (DBG) {
1548 Log.d(LOG_TAG, "invalidateEffectiveUserRestrictions userId=" + userId);
1549 }
1550 mCachedEffectiveUserRestrictions.remove(userId);
1551 }
1552
Bookatzf56f2582019-09-04 16:06:41 -07001553 private Bundle getEffectiveUserRestrictions(@UserIdInt int userId) {
Makoto Onuki068c54a2015-10-13 14:34:03 -07001554 synchronized (mRestrictionsLock) {
1555 Bundle restrictions = mCachedEffectiveUserRestrictions.get(userId);
1556 if (restrictions == null) {
Fyodor Kupolov82402752015-10-28 14:54:51 -07001557 restrictions = computeEffectiveUserRestrictionsLR(userId);
Makoto Onuki068c54a2015-10-13 14:34:03 -07001558 mCachedEffectiveUserRestrictions.put(userId, restrictions);
1559 }
1560 return restrictions;
Amith Yamasani8cd28b52014-06-08 17:54:27 -07001561 }
1562 }
1563
Makoto Onuki068c54a2015-10-13 14:34:03 -07001564 /** @return a specific user restriction that's in effect currently. */
1565 @Override
Bookatzf56f2582019-09-04 16:06:41 -07001566 public boolean hasUserRestriction(String restrictionKey, @UserIdInt int userId) {
Patrick Baumann2f2fd712019-07-31 15:18:53 -07001567 return mLocalService.hasUserRestriction(restrictionKey, userId);
Makoto Onuki068c54a2015-10-13 14:34:03 -07001568 }
1569
Makoto Onukiacc50462018-02-14 14:13:49 -08001570 /** @return if any user has the given restriction. */
1571 @Override
1572 public boolean hasUserRestrictionOnAnyUser(String restrictionKey) {
1573 if (!UserRestrictionsUtils.isValidRestriction(restrictionKey)) {
1574 return false;
1575 }
1576 final List<UserInfo> users = getUsers(/* excludeDying= */ true);
1577 for (int i = 0; i < users.size(); i++) {
1578 final int userId = users.get(i).id;
1579 Bundle restrictions = getEffectiveUserRestrictions(userId);
1580 if (restrictions != null && restrictions.getBoolean(restrictionKey)) {
1581 return true;
1582 }
1583 }
1584 return false;
1585 }
1586
Makoto Onuki068c54a2015-10-13 14:34:03 -07001587 /**
Zoltan Szatmary-Bane7834602016-04-08 18:41:11 +01001588 * @hide
1589 *
1590 * Returns who set a user restriction on a user.
1591 * Requires {@link android.Manifest.permission#MANAGE_USERS} permission.
1592 * @param restrictionKey the string key representing the restriction
1593 * @param userId the id of the user for whom to retrieve the restrictions.
1594 * @return The source of user restriction. Any combination of
1595 * {@link UserManager#RESTRICTION_NOT_SET},
1596 * {@link UserManager#RESTRICTION_SOURCE_SYSTEM},
1597 * {@link UserManager#RESTRICTION_SOURCE_DEVICE_OWNER}
1598 * and {@link UserManager#RESTRICTION_SOURCE_PROFILE_OWNER}
1599 */
1600 @Override
Bookatzf56f2582019-09-04 16:06:41 -07001601 public int getUserRestrictionSource(String restrictionKey, @UserIdInt int userId) {
Pavel Grafov6a40f092016-10-25 15:46:51 +01001602 List<EnforcingUser> enforcingUsers = getUserRestrictionSources(restrictionKey, userId);
1603 // Get "bitwise or" of restriction sources for all enforcing users.
Zoltan Szatmary-Bane7834602016-04-08 18:41:11 +01001604 int result = UserManager.RESTRICTION_NOT_SET;
Pavel Grafov6a40f092016-10-25 15:46:51 +01001605 for (int i = enforcingUsers.size() - 1; i >= 0; i--) {
1606 result |= enforcingUsers.get(i).getUserRestrictionSource();
1607 }
1608 return result;
1609 }
1610
1611 @Override
1612 public List<EnforcingUser> getUserRestrictionSources(
1613 String restrictionKey, @UserIdInt int userId) {
1614 checkManageUsersPermission("getUserRestrictionSource");
Zoltan Szatmary-Bane7834602016-04-08 18:41:11 +01001615
1616 // Shortcut for the most common case
1617 if (!hasUserRestriction(restrictionKey, userId)) {
Pavel Grafov6a40f092016-10-25 15:46:51 +01001618 return Collections.emptyList();
Zoltan Szatmary-Bane7834602016-04-08 18:41:11 +01001619 }
1620
Pavel Grafov6a40f092016-10-25 15:46:51 +01001621 final List<EnforcingUser> result = new ArrayList<>();
1622
1623 // Check if it is base restriction.
Zoltan Szatmary-Bane7834602016-04-08 18:41:11 +01001624 if (hasBaseUserRestriction(restrictionKey, userId)) {
Pavel Grafov6a40f092016-10-25 15:46:51 +01001625 result.add(new EnforcingUser(
1626 UserHandle.USER_NULL, UserManager.RESTRICTION_SOURCE_SYSTEM));
Zoltan Szatmary-Bane7834602016-04-08 18:41:11 +01001627 }
1628
Pavel Grafov6a40f092016-10-25 15:46:51 +01001629 synchronized (mRestrictionsLock) {
1630 // Check if it is set by profile owner.
1631 Bundle profileOwnerRestrictions = mDevicePolicyLocalUserRestrictions.get(userId);
1632 if (UserRestrictionsUtils.contains(profileOwnerRestrictions, restrictionKey)) {
1633 result.add(getEnforcingUserLocked(userId));
1634 }
1635
1636 // Iterate over all users who enforce global restrictions.
1637 for (int i = mDevicePolicyGlobalUserRestrictions.size() - 1; i >= 0; i--) {
1638 Bundle globalRestrictions = mDevicePolicyGlobalUserRestrictions.valueAt(i);
1639 int profileUserId = mDevicePolicyGlobalUserRestrictions.keyAt(i);
1640 if (UserRestrictionsUtils.contains(globalRestrictions, restrictionKey)) {
1641 result.add(getEnforcingUserLocked(profileUserId));
Zoltan Szatmary-Bane7834602016-04-08 18:41:11 +01001642 }
1643 }
Zoltan Szatmary-Bane7834602016-04-08 18:41:11 +01001644 }
Zoltan Szatmary-Bane7834602016-04-08 18:41:11 +01001645 return result;
1646 }
1647
Andreas Gampea36dc622018-02-05 17:19:22 -08001648 @GuardedBy("mRestrictionsLock")
Pavel Grafov6a40f092016-10-25 15:46:51 +01001649 private EnforcingUser getEnforcingUserLocked(@UserIdInt int userId) {
1650 int source = mDeviceOwnerUserId == userId ? UserManager.RESTRICTION_SOURCE_DEVICE_OWNER
1651 : UserManager.RESTRICTION_SOURCE_PROFILE_OWNER;
1652 return new EnforcingUser(userId, source);
1653 }
1654
Zoltan Szatmary-Bane7834602016-04-08 18:41:11 +01001655 /**
Makoto Onuki068c54a2015-10-13 14:34:03 -07001656 * @return UserRestrictions that are in effect currently. This always returns a new
1657 * {@link Bundle}.
1658 */
Amith Yamasani8cd28b52014-06-08 17:54:27 -07001659 @Override
Bookatzf56f2582019-09-04 16:06:41 -07001660 public Bundle getUserRestrictions(@UserIdInt int userId) {
Makoto Onuki1a2cd742015-11-16 13:51:27 -08001661 return UserRestrictionsUtils.clone(getEffectiveUserRestrictions(userId));
Amith Yamasanie4cf7342012-12-17 11:12:09 -08001662 }
1663
1664 @Override
Bookatzf56f2582019-09-04 16:06:41 -07001665 public boolean hasBaseUserRestriction(String restrictionKey, @UserIdInt int userId) {
Zoltan Szatmary-Ban3bbcedd2015-11-26 13:45:51 +00001666 checkManageUsersPermission("hasBaseUserRestriction");
Makoto Onuki1f1ceef2016-01-28 11:32:32 -08001667 if (!UserRestrictionsUtils.isValidRestriction(restrictionKey)) {
1668 return false;
1669 }
Zoltan Szatmary-Ban3bbcedd2015-11-26 13:45:51 +00001670 synchronized (mRestrictionsLock) {
1671 Bundle bundle = mBaseUserRestrictions.get(userId);
1672 return (bundle != null && bundle.getBoolean(restrictionKey, false));
1673 }
1674 }
1675
1676 @Override
Bookatzf56f2582019-09-04 16:06:41 -07001677 public void setUserRestriction(String key, boolean value, @UserIdInt int userId) {
Fyodor Kupolovd4b26042015-07-27 14:30:59 -07001678 checkManageUsersPermission("setUserRestriction");
Makoto Onuki1f1ceef2016-01-28 11:32:32 -08001679 if (!UserRestrictionsUtils.isValidRestriction(key)) {
1680 return;
1681 }
Makoto Onuki068c54a2015-10-13 14:34:03 -07001682 synchronized (mRestrictionsLock) {
1683 // Note we can't modify Bundles stored in mBaseUserRestrictions directly, so create
1684 // a copy.
Makoto Onuki1a2cd742015-11-16 13:51:27 -08001685 final Bundle newRestrictions = UserRestrictionsUtils.clone(
1686 mBaseUserRestrictions.get(userId));
Makoto Onuki068c54a2015-10-13 14:34:03 -07001687 newRestrictions.putBoolean(key, value);
1688
Fyodor Kupolov82402752015-10-28 14:54:51 -07001689 updateUserRestrictionsInternalLR(newRestrictions, userId);
Fyodor Kupolovb5013302015-04-17 17:59:14 -07001690 }
1691 }
1692
Makoto Onuki068c54a2015-10-13 14:34:03 -07001693 /**
Makoto Onuki1a2cd742015-11-16 13:51:27 -08001694 * Optionally updating user restrictions, calculate the effective user restrictions and also
1695 * propagate to other services and system settings.
Makoto Onuki068c54a2015-10-13 14:34:03 -07001696 *
Pavel Grafov6a40f092016-10-25 15:46:51 +01001697 * @param newBaseRestrictions User restrictions to set.
Makoto Onuki1a2cd742015-11-16 13:51:27 -08001698 * If null, will not update user restrictions and only does the propagation.
Makoto Onuki068c54a2015-10-13 14:34:03 -07001699 * @param userId target user ID.
1700 */
1701 @GuardedBy("mRestrictionsLock")
Fyodor Kupolov82402752015-10-28 14:54:51 -07001702 private void updateUserRestrictionsInternalLR(
Bookatzf56f2582019-09-04 16:06:41 -07001703 @Nullable Bundle newBaseRestrictions, @UserIdInt int userId) {
Makoto Onuki1a2cd742015-11-16 13:51:27 -08001704 final Bundle prevAppliedRestrictions = UserRestrictionsUtils.nonNull(
1705 mAppliedUserRestrictions.get(userId));
1706
1707 // Update base restrictions.
Pavel Grafov6a40f092016-10-25 15:46:51 +01001708 if (newBaseRestrictions != null) {
1709 // If newBaseRestrictions == the current one, it's probably a bug.
Makoto Onuki1a2cd742015-11-16 13:51:27 -08001710 final Bundle prevBaseRestrictions = mBaseUserRestrictions.get(userId);
1711
Pavel Grafov6a40f092016-10-25 15:46:51 +01001712 Preconditions.checkState(prevBaseRestrictions != newBaseRestrictions);
Makoto Onuki068c54a2015-10-13 14:34:03 -07001713 Preconditions.checkState(mCachedEffectiveUserRestrictions.get(userId)
Pavel Grafov6a40f092016-10-25 15:46:51 +01001714 != newBaseRestrictions);
Makoto Onuki1a2cd742015-11-16 13:51:27 -08001715
Pavel Grafov6a40f092016-10-25 15:46:51 +01001716 if (updateRestrictionsIfNeededLR(userId, newBaseRestrictions, mBaseUserRestrictions)) {
Amith Yamasani12747872015-12-07 14:19:49 -08001717 scheduleWriteUser(getUserDataNoChecks(userId));
Makoto Onuki1a2cd742015-11-16 13:51:27 -08001718 }
Makoto Onuki068c54a2015-10-13 14:34:03 -07001719 }
1720
Fyodor Kupolov82402752015-10-28 14:54:51 -07001721 final Bundle effective = computeEffectiveUserRestrictionsLR(userId);
Makoto Onuki068c54a2015-10-13 14:34:03 -07001722
Makoto Onuki759a7632015-10-28 16:43:10 -07001723 mCachedEffectiveUserRestrictions.put(userId, effective);
1724
Makoto Onuki1a2cd742015-11-16 13:51:27 -08001725 // Apply the new restrictions.
Makoto Onuki4f160732015-10-27 17:15:38 -07001726 if (DBG) {
Makoto Onuki1a2cd742015-11-16 13:51:27 -08001727 debug("Applying user restrictions: userId=" + userId
1728 + " new=" + effective + " prev=" + prevAppliedRestrictions);
Makoto Onuki4f160732015-10-27 17:15:38 -07001729 }
1730
Makoto Onuki1a2cd742015-11-16 13:51:27 -08001731 if (mAppOpsService != null) { // We skip it until system-ready.
Fyodor Kupolovec30ca32016-06-16 15:09:29 -07001732 mHandler.post(new Runnable() {
1733 @Override
1734 public void run() {
1735 try {
1736 mAppOpsService.setUserRestrictions(effective, mUserRestriconToken, userId);
1737 } catch (RemoteException e) {
1738 Log.w(LOG_TAG, "Unable to notify AppOpsService of UserRestrictions");
1739 }
1740 }
1741 });
Fyodor Kupolovb5013302015-04-17 17:59:14 -07001742 }
Makoto Onuki068c54a2015-10-13 14:34:03 -07001743
Makoto Onuki1a2cd742015-11-16 13:51:27 -08001744 propagateUserRestrictionsLR(userId, effective, prevAppliedRestrictions);
Makoto Onuki4f160732015-10-27 17:15:38 -07001745
Makoto Onuki1a2cd742015-11-16 13:51:27 -08001746 mAppliedUserRestrictions.put(userId, new Bundle(effective));
Makoto Onuki068c54a2015-10-13 14:34:03 -07001747 }
1748
Makoto Onuki1a2cd742015-11-16 13:51:27 -08001749 private void propagateUserRestrictionsLR(final int userId,
Makoto Onukid45a4a22015-11-02 17:17:38 -08001750 Bundle newRestrictions, Bundle prevRestrictions) {
Makoto Onuki1a2cd742015-11-16 13:51:27 -08001751 // Note this method doesn't touch any state, meaning it doesn't require mRestrictionsLock
1752 // actually, but we still need some kind of synchronization otherwise we might end up
1753 // calling listeners out-of-order, thus "LR".
1754
1755 if (UserRestrictionsUtils.areEqual(newRestrictions, prevRestrictions)) {
1756 return;
1757 }
Makoto Onukid45a4a22015-11-02 17:17:38 -08001758
1759 final Bundle newRestrictionsFinal = new Bundle(newRestrictions);
1760 final Bundle prevRestrictionsFinal = new Bundle(prevRestrictions);
1761
1762 mHandler.post(new Runnable() {
1763 @Override
1764 public void run() {
Fyodor Kupolov9cbfc9e2015-10-07 15:52:33 -07001765 UserRestrictionsUtils.applyUserRestrictions(
1766 mContext, userId, newRestrictionsFinal, prevRestrictionsFinal);
Makoto Onuki1a2cd742015-11-16 13:51:27 -08001767
Makoto Onukid45a4a22015-11-02 17:17:38 -08001768 final UserRestrictionsListener[] listeners;
1769 synchronized (mUserRestrictionsListeners) {
1770 listeners = new UserRestrictionsListener[mUserRestrictionsListeners.size()];
1771 mUserRestrictionsListeners.toArray(listeners);
1772 }
1773 for (int i = 0; i < listeners.length; i++) {
1774 listeners[i].onUserRestrictionsChanged(userId,
1775 newRestrictionsFinal, prevRestrictionsFinal);
1776 }
Makoto Onukie72f81b2017-03-16 14:08:19 -07001777
1778 final Intent broadcast = new Intent(UserManager.ACTION_USER_RESTRICTIONS_CHANGED)
1779 .setFlags(Intent.FLAG_RECEIVER_REGISTERED_ONLY);
1780 mContext.sendBroadcastAsUser(broadcast, UserHandle.of(userId));
Makoto Onukid45a4a22015-11-02 17:17:38 -08001781 }
1782 });
1783 }
1784
Makoto Onuki1a2cd742015-11-16 13:51:27 -08001785 // Package private for the inner class.
Andreas Gampe2e8c7672018-07-20 13:01:08 -07001786 @GuardedBy("mRestrictionsLock")
Bookatzf56f2582019-09-04 16:06:41 -07001787 void applyUserRestrictionsLR(@UserIdInt int userId) {
Fyodor Kupolov82402752015-10-28 14:54:51 -07001788 updateUserRestrictionsInternalLR(null, userId);
Makoto Onuki068c54a2015-10-13 14:34:03 -07001789 }
1790
1791 @GuardedBy("mRestrictionsLock")
Makoto Onuki1a2cd742015-11-16 13:51:27 -08001792 // Package private for the inner class.
1793 void applyUserRestrictionsForAllUsersLR() {
1794 if (DBG) {
1795 debug("applyUserRestrictionsForAllUsersLR");
1796 }
Makoto Onuki068c54a2015-10-13 14:34:03 -07001797 // First, invalidate all cached values.
Makoto Onuki4f160732015-10-27 17:15:38 -07001798 mCachedEffectiveUserRestrictions.clear();
1799
Sudheer Shankadc589ac2016-11-10 15:30:17 -08001800 // We don't want to call into ActivityManagerService while taking a lock, so we'll call
Makoto Onuki068c54a2015-10-13 14:34:03 -07001801 // it on a handler.
1802 final Runnable r = new Runnable() {
1803 @Override
1804 public void run() {
1805 // Then get the list of running users.
1806 final int[] runningUsers;
1807 try {
Sudheer Shankadc589ac2016-11-10 15:30:17 -08001808 runningUsers = ActivityManager.getService().getRunningUserIds();
Makoto Onuki068c54a2015-10-13 14:34:03 -07001809 } catch (RemoteException e) {
Sudheer Shankadc589ac2016-11-10 15:30:17 -08001810 Log.w(LOG_TAG, "Unable to access ActivityManagerService");
Makoto Onuki068c54a2015-10-13 14:34:03 -07001811 return;
1812 }
1813 // Then re-calculate the effective restrictions and apply, only for running users.
1814 // It's okay if a new user has started after the getRunningUserIds() call,
1815 // because we'll do the same thing (re-calculate the restrictions and apply)
1816 // when we start a user.
Makoto Onuki068c54a2015-10-13 14:34:03 -07001817 synchronized (mRestrictionsLock) {
1818 for (int i = 0; i < runningUsers.length; i++) {
Makoto Onuki1a2cd742015-11-16 13:51:27 -08001819 applyUserRestrictionsLR(runningUsers[i]);
Makoto Onuki068c54a2015-10-13 14:34:03 -07001820 }
1821 }
1822 }
1823 };
1824 mHandler.post(r);
Fyodor Kupolovb5013302015-04-17 17:59:14 -07001825 }
1826
Amith Yamasani258848d2012-08-10 17:06:33 -07001827 /**
Amith Yamasanifaea76f2012-09-11 10:59:48 -07001828 * Check if we've hit the limit of how many users can be created.
1829 */
Fyodor Kupolov82402752015-10-28 14:54:51 -07001830 private boolean isUserLimitReached() {
1831 int count;
1832 synchronized (mUsersLock) {
1833 count = getAliveUsersExcludingGuestsCountLU();
1834 }
1835 return count >= UserManager.getMaxSupportedUsers();
Nicolas Prevot12678a92015-05-13 12:15:03 -07001836 }
1837
1838 @Override
Bookatzf56f2582019-09-04 16:06:41 -07001839 public boolean canAddMoreManagedProfiles(@UserIdInt int userId, boolean allowedToRemoveOne) {
Nicolas Prevot12678a92015-05-13 12:15:03 -07001840 checkManageUsersPermission("check if more managed profiles can be added.");
1841 if (ActivityManager.isLowRamDeviceStatic()) {
1842 return false;
1843 }
Fyodor Kupolovb6157992015-06-05 15:32:28 -07001844 if (!mContext.getPackageManager().hasSystemFeature(
1845 PackageManager.FEATURE_MANAGED_USERS)) {
1846 return false;
1847 }
Nicolas Prevotb8186812015-08-06 15:00:03 +01001848 // Limit number of managed profiles that can be created
Benjamin Franzc8776152017-01-06 14:16:41 +00001849 final int managedProfilesCount = getProfiles(userId, false).size() - 1;
Nicolas Prevot07387fe2015-10-30 17:53:30 +00001850 final int profilesRemovedCount = managedProfilesCount > 0 && allowedToRemoveOne ? 1 : 0;
Kenny Guy02c89902016-11-15 19:36:38 +00001851 if (managedProfilesCount - profilesRemovedCount >= getMaxManagedProfiles()) {
Nicolas Prevotb8186812015-08-06 15:00:03 +01001852 return false;
1853 }
Fyodor Kupolov82402752015-10-28 14:54:51 -07001854 synchronized(mUsersLock) {
1855 UserInfo userInfo = getUserInfoLU(userId);
yuanhao47f9f7c2017-01-18 09:54:45 +08001856 if (userInfo == null || !userInfo.canHaveProfile()) {
Nicolas Prevot12678a92015-05-13 12:15:03 -07001857 return false;
1858 }
Nicolas Prevot07387fe2015-10-30 17:53:30 +00001859 int usersCountAfterRemoving = getAliveUsersExcludingGuestsCountLU()
1860 - profilesRemovedCount;
Nicolas Prevot12678a92015-05-13 12:15:03 -07001861 // We allow creating a managed profile in the special case where there is only one user.
Nicolas Prevot07387fe2015-10-30 17:53:30 +00001862 return usersCountAfterRemoving == 1
1863 || usersCountAfterRemoving < UserManager.getMaxSupportedUsers();
Nicolas Prevot12678a92015-05-13 12:15:03 -07001864 }
1865 }
1866
Andreas Gampe2e8c7672018-07-20 13:01:08 -07001867 @GuardedBy("mUsersLock")
Fyodor Kupolov82402752015-10-28 14:54:51 -07001868 private int getAliveUsersExcludingGuestsCountLU() {
Amith Yamasanif584f012014-05-19 17:57:25 -07001869 int aliveUserCount = 0;
1870 final int totalUserCount = mUsers.size();
1871 // Skip over users being removed
1872 for (int i = 0; i < totalUserCount; i++) {
Amith Yamasani12747872015-12-07 14:19:49 -08001873 UserInfo user = mUsers.valueAt(i).info;
Fyodor Kupolov6e99d3f2016-11-01 17:18:41 -07001874 if (!mRemovingUserIds.get(user.id) && !user.isGuest()) {
Amith Yamasanif584f012014-05-19 17:57:25 -07001875 aliveUserCount++;
1876 }
1877 }
Nicolas Prevot12678a92015-05-13 12:15:03 -07001878 return aliveUserCount;
Amith Yamasanifaea76f2012-09-11 10:59:48 -07001879 }
1880
1881 /**
Amith Yamasani195263742012-08-21 15:40:12 -07001882 * Enforces that only the system UID or root's UID or apps that have the
Xiaohui Chenb3b92582015-12-07 11:22:13 -08001883 * {@link android.Manifest.permission#MANAGE_USERS MANAGE_USERS} and
1884 * {@link android.Manifest.permission#INTERACT_ACROSS_USERS_FULL INTERACT_ACROSS_USERS_FULL}
1885 * permissions can make certain calls to the UserManager.
1886 *
1887 * @param message used as message if SecurityException is thrown
1888 * @throws SecurityException if the caller does not have enough privilege.
1889 */
1890 private static final void checkManageUserAndAcrossUsersFullPermission(String message) {
1891 final int uid = Binder.getCallingUid();
jovanakf24ad492018-05-18 12:15:59 -07001892
1893 if (uid == Process.SYSTEM_UID || uid == 0) {
1894 // System UID or root's UID are granted privilege.
1895 return;
Xiaohui Chenb3b92582015-12-07 11:22:13 -08001896 }
jovanakf24ad492018-05-18 12:15:59 -07001897
1898 if (hasPermissionGranted(Manifest.permission.MANAGE_USERS, uid)
1899 && hasPermissionGranted(Manifest.permission.INTERACT_ACROSS_USERS_FULL, uid)) {
1900 // Apps with both permissions are granted privilege.
1901 return;
1902 }
1903
1904 throw new SecurityException(
1905 "You need MANAGE_USERS and INTERACT_ACROSS_USERS_FULL permission to: " + message);
1906 }
1907
1908 private static boolean hasPermissionGranted(String permission, int uid) {
1909 return ActivityManager.checkComponentPermission(
1910 permission, uid, /* owningUid = */-1, /* exported = */ true) ==
1911 PackageManager.PERMISSION_GRANTED;
Xiaohui Chenb3b92582015-12-07 11:22:13 -08001912 }
1913
1914 /**
1915 * Enforces that only the system UID or root's UID or apps that have the
Dianne Hackborn10ad9822014-03-17 11:28:36 -07001916 * {@link android.Manifest.permission#MANAGE_USERS MANAGE_USERS}
Amith Yamasani195263742012-08-21 15:40:12 -07001917 * permission can make certain calls to the UserManager.
Amith Yamasani258848d2012-08-10 17:06:33 -07001918 *
1919 * @param message used as message if SecurityException is thrown
1920 * @throws SecurityException if the caller is not system or root
Tony Mak4dc008c2016-03-16 10:46:49 +00001921 * @see #hasManageUsersPermission()
Amith Yamasani258848d2012-08-10 17:06:33 -07001922 */
Amith Yamasanibe465322014-04-24 13:45:17 -07001923 private static final void checkManageUsersPermission(String message) {
Tony Mak4dc008c2016-03-16 10:46:49 +00001924 if (!hasManageUsersPermission()) {
Amith Yamasanibe465322014-04-24 13:45:17 -07001925 throw new SecurityException("You need MANAGE_USERS permission to: " + message);
1926 }
Emily Bernier7a2b4d12014-04-23 12:51:35 -04001927 }
1928
Esteban Talavera5b9f1672015-12-11 15:22:34 +00001929 /**
Sudheer Shankaf5cea032016-06-08 17:13:24 -07001930 * Enforces that only the system UID or root's UID or apps that have the
1931 * {@link android.Manifest.permission#MANAGE_USERS MANAGE_USERS} or
1932 * {@link android.Manifest.permission#CREATE_USERS CREATE_USERS}
1933 * can make certain calls to the UserManager.
1934 *
1935 * @param message used as message if SecurityException is thrown
1936 * @throws SecurityException if the caller is not system or root
1937 * @see #hasManageOrCreateUsersPermission()
1938 */
1939 private static final void checkManageOrCreateUsersPermission(String message) {
1940 if (!hasManageOrCreateUsersPermission()) {
1941 throw new SecurityException(
1942 "You either need MANAGE_USERS or CREATE_USERS permission to: " + message);
1943 }
1944 }
1945
1946 /**
1947 * Similar to {@link #checkManageOrCreateUsersPermission(String)} but when the caller is tries
1948 * to create user/profiles other than what is allowed for
1949 * {@link android.Manifest.permission#CREATE_USERS CREATE_USERS} permission, then it will only
1950 * allow callers with {@link android.Manifest.permission#MANAGE_USERS MANAGE_USERS} permission.
1951 */
1952 private static final void checkManageOrCreateUsersPermission(int creationFlags) {
1953 if ((creationFlags & ~ALLOWED_FLAGS_FOR_CREATE_USERS_PERMISSION) == 0) {
1954 if (!hasManageOrCreateUsersPermission()) {
1955 throw new SecurityException("You either need MANAGE_USERS or CREATE_USERS "
1956 + "permission to create an user with flags: " + creationFlags);
1957 }
1958 } else if (!hasManageUsersPermission()) {
1959 throw new SecurityException("You need MANAGE_USERS permission to create an user "
1960 + " with flags: " + creationFlags);
1961 }
1962 }
1963
1964 /**
Tony Mak4dc008c2016-03-16 10:46:49 +00001965 * @return whether the calling UID is system UID or root's UID or the calling app has the
1966 * {@link android.Manifest.permission#MANAGE_USERS MANAGE_USERS}.
1967 */
1968 private static final boolean hasManageUsersPermission() {
1969 final int callingUid = Binder.getCallingUid();
1970 return UserHandle.isSameApp(callingUid, Process.SYSTEM_UID)
1971 || callingUid == Process.ROOT_UID
jovanakf24ad492018-05-18 12:15:59 -07001972 || hasPermissionGranted(android.Manifest.permission.MANAGE_USERS, callingUid);
Tony Mak4dc008c2016-03-16 10:46:49 +00001973 }
1974
1975 /**
Sudheer Shankaf5cea032016-06-08 17:13:24 -07001976 * @return whether the calling UID is system UID or root's UID or the calling app has the
Bookatzcde3d922019-03-08 14:30:00 -08001977 * {@link android.Manifest.permission#MANAGE_USERS MANAGE_USERS} or the provided permission.
Sudheer Shankaf5cea032016-06-08 17:13:24 -07001978 */
Bookatzcde3d922019-03-08 14:30:00 -08001979 private static final boolean hasManageUsersOrPermission(String alternativePermission) {
Sudheer Shankaf5cea032016-06-08 17:13:24 -07001980 final int callingUid = Binder.getCallingUid();
1981 return UserHandle.isSameApp(callingUid, Process.SYSTEM_UID)
1982 || callingUid == Process.ROOT_UID
jovanakf24ad492018-05-18 12:15:59 -07001983 || hasPermissionGranted(android.Manifest.permission.MANAGE_USERS, callingUid)
Bookatzcde3d922019-03-08 14:30:00 -08001984 || hasPermissionGranted(alternativePermission, callingUid);
1985 }
1986
1987 /**
1988 * @return whether the calling UID is system UID or root's UID or the calling app has the
1989 * {@link android.Manifest.permission#MANAGE_USERS MANAGE_USERS} or
1990 * {@link android.Manifest.permission#CREATE_USERS CREATE_USERS}.
1991 */
1992 private static final boolean hasManageOrCreateUsersPermission() {
1993 return hasManageUsersOrPermission(android.Manifest.permission.CREATE_USERS);
Sudheer Shankaf5cea032016-06-08 17:13:24 -07001994 }
1995
1996 /**
Esteban Talavera5b9f1672015-12-11 15:22:34 +00001997 * Enforces that only the system UID or root's UID (on any user) can make certain calls to the
1998 * UserManager.
1999 *
2000 * @param message used as message if SecurityException is thrown
2001 * @throws SecurityException if the caller is not system or root
2002 */
2003 private static void checkSystemOrRoot(String message) {
2004 final int uid = Binder.getCallingUid();
2005 if (!UserHandle.isSameApp(uid, Process.SYSTEM_UID) && uid != Process.ROOT_UID) {
2006 throw new SecurityException("Only system may: " + message);
2007 }
2008 }
2009
Fyodor Kupolov82402752015-10-28 14:54:51 -07002010 private void writeBitmapLP(UserInfo info, Bitmap bitmap) {
Amith Yamasanib8151ec2012-04-18 18:02:48 -07002011 try {
2012 File dir = new File(mUsersDir, Integer.toString(info.id));
2013 File file = new File(dir, USER_PHOTO_FILENAME);
Adrian Roos1bdff912015-02-17 15:51:35 +01002014 File tmp = new File(dir, USER_PHOTO_FILENAME_TMP);
Amith Yamasanib8151ec2012-04-18 18:02:48 -07002015 if (!dir.exists()) {
2016 dir.mkdir();
2017 FileUtils.setPermissions(
2018 dir.getPath(),
2019 FileUtils.S_IRWXU|FileUtils.S_IRWXG|FileUtils.S_IXOTH,
2020 -1, -1);
2021 }
Amith Yamasanie928d7d2012-09-17 21:46:51 -07002022 FileOutputStream os;
Adrian Roos1bdff912015-02-17 15:51:35 +01002023 if (bitmap.compress(Bitmap.CompressFormat.PNG, 100, os = new FileOutputStream(tmp))
Oleksandr Peletskyicd6fa302016-02-25 16:28:39 +01002024 && tmp.renameTo(file) && SELinux.restorecon(file)) {
Amith Yamasani3b49f072012-09-17 10:21:43 -07002025 info.iconPath = file.getAbsolutePath();
2026 }
Amith Yamasanie928d7d2012-09-17 21:46:51 -07002027 try {
2028 os.close();
2029 } catch (IOException ioe) {
2030 // What the ... !
2031 }
Adrian Roos1bdff912015-02-17 15:51:35 +01002032 tmp.delete();
Amith Yamasanib8151ec2012-04-18 18:02:48 -07002033 } catch (FileNotFoundException e) {
Amith Yamasani2a003292012-08-14 18:25:45 -07002034 Slog.w(LOG_TAG, "Error setting photo for user ", e);
Amith Yamasanib8151ec2012-04-18 18:02:48 -07002035 }
Amith Yamasanib8151ec2012-04-18 18:02:48 -07002036 }
2037
Amith Yamasani0b285492011-04-14 17:35:23 -07002038 /**
2039 * Returns an array of user ids. This array is cached here for quick access, so do not modify or
2040 * cache it elsewhere.
2041 * @return the array of user ids.
2042 */
Dianne Hackborn1676c852012-09-10 14:52:30 -07002043 public int[] getUserIds() {
Fyodor Kupolov82402752015-10-28 14:54:51 -07002044 synchronized (mUsersLock) {
Dianne Hackborn7767eac2012-08-23 18:25:40 -07002045 return mUserIds;
2046 }
Amith Yamasani0b285492011-04-14 17:35:23 -07002047 }
2048
Andreas Gampe2e8c7672018-07-20 13:01:08 -07002049 @GuardedBy({"mRestrictionsLock", "mPackagesLock"})
Fyodor Kupolove80085d2015-11-06 18:21:39 -08002050 private void readUserListLP() {
Amith Yamasani4b2e9342011-03-31 12:38:53 -07002051 if (!mUserListFile.exists()) {
Fyodor Kupolove80085d2015-11-06 18:21:39 -08002052 fallbackToSingleUserLP();
Amith Yamasani4b2e9342011-03-31 12:38:53 -07002053 return;
2054 }
2055 FileInputStream fis = null;
Amith Yamasani2a003292012-08-14 18:25:45 -07002056 AtomicFile userListFile = new AtomicFile(mUserListFile);
Amith Yamasani4b2e9342011-03-31 12:38:53 -07002057 try {
Amith Yamasani2a003292012-08-14 18:25:45 -07002058 fis = userListFile.openRead();
Amith Yamasani4b2e9342011-03-31 12:38:53 -07002059 XmlPullParser parser = Xml.newPullParser();
Wojciech Staszkiewicz9e9e2e72015-05-08 14:58:46 +01002060 parser.setInput(fis, StandardCharsets.UTF_8.name());
Amith Yamasani4b2e9342011-03-31 12:38:53 -07002061 int type;
2062 while ((type = parser.next()) != XmlPullParser.START_TAG
2063 && type != XmlPullParser.END_DOCUMENT) {
Amith Yamasani12747872015-12-07 14:19:49 -08002064 // Skip
Amith Yamasani4b2e9342011-03-31 12:38:53 -07002065 }
2066
2067 if (type != XmlPullParser.START_TAG) {
Amith Yamasani0b285492011-04-14 17:35:23 -07002068 Slog.e(LOG_TAG, "Unable to read user list");
Fyodor Kupolove80085d2015-11-06 18:21:39 -08002069 fallbackToSingleUserLP();
Amith Yamasani4b2e9342011-03-31 12:38:53 -07002070 return;
2071 }
2072
Amith Yamasani2a003292012-08-14 18:25:45 -07002073 mNextSerialNumber = -1;
2074 if (parser.getName().equals(TAG_USERS)) {
2075 String lastSerialNumber = parser.getAttributeValue(null, ATTR_NEXT_SERIAL_NO);
2076 if (lastSerialNumber != null) {
2077 mNextSerialNumber = Integer.parseInt(lastSerialNumber);
2078 }
Amith Yamasani6f34b412012-10-22 18:19:27 -07002079 String versionNumber = parser.getAttributeValue(null, ATTR_USER_VERSION);
2080 if (versionNumber != null) {
2081 mUserVersion = Integer.parseInt(versionNumber);
2082 }
Amith Yamasani2a003292012-08-14 18:25:45 -07002083 }
2084
Pavel Grafov6a40f092016-10-25 15:46:51 +01002085 // Pre-O global user restriction were stored as a single bundle (as opposed to per-user
2086 // currently), take care of it in case of upgrade.
2087 Bundle oldDevicePolicyGlobalUserRestrictions = null;
Makoto Onuki1a2cd742015-11-16 13:51:27 -08002088
Amith Yamasani4b2e9342011-03-31 12:38:53 -07002089 while ((type = parser.next()) != XmlPullParser.END_DOCUMENT) {
Amith Yamasanie4afaa32014-06-30 14:55:07 +05302090 if (type == XmlPullParser.START_TAG) {
2091 final String name = parser.getName();
2092 if (name.equals(TAG_USER)) {
2093 String id = parser.getAttributeValue(null, ATTR_ID);
Amith Yamasani6f34b412012-10-22 18:19:27 -07002094
Amith Yamasani12747872015-12-07 14:19:49 -08002095 UserData userData = readUserLP(Integer.parseInt(id));
2096
2097 if (userData != null) {
Fyodor Kupolov82402752015-10-28 14:54:51 -07002098 synchronized (mUsersLock) {
Amith Yamasani12747872015-12-07 14:19:49 -08002099 mUsers.put(userData.info.id, userData);
2100 if (mNextSerialNumber < 0
2101 || mNextSerialNumber <= userData.info.id) {
2102 mNextSerialNumber = userData.info.id + 1;
Fyodor Kupolov82402752015-10-28 14:54:51 -07002103 }
Amith Yamasanie4afaa32014-06-30 14:55:07 +05302104 }
Amith Yamasani2a003292012-08-14 18:25:45 -07002105 }
Amith Yamasanie4afaa32014-06-30 14:55:07 +05302106 } else if (name.equals(TAG_GUEST_RESTRICTIONS)) {
Amith Yamasanida0b1682014-11-21 12:58:17 -08002107 while ((type = parser.next()) != XmlPullParser.END_DOCUMENT
2108 && type != XmlPullParser.END_TAG) {
2109 if (type == XmlPullParser.START_TAG) {
2110 if (parser.getName().equals(TAG_RESTRICTIONS)) {
Fyodor Kupolove80085d2015-11-06 18:21:39 -08002111 synchronized (mGuestRestrictions) {
Fyodor Kupoloveafee022017-03-15 17:09:04 -07002112 UserRestrictionsUtils
2113 .readRestrictions(parser, mGuestRestrictions);
Fyodor Kupolove80085d2015-11-06 18:21:39 -08002114 }
Amith Yamasanida0b1682014-11-21 12:58:17 -08002115 }
2116 break;
2117 }
2118 }
Pavel Grafov6a40f092016-10-25 15:46:51 +01002119 } else if (name.equals(TAG_DEVICE_OWNER_USER_ID)
2120 // Legacy name, should only be encountered when upgrading from pre-O.
2121 || name.equals(TAG_GLOBAL_RESTRICTION_OWNER_ID)) {
Zoltan Szatmary-Bane7834602016-04-08 18:41:11 +01002122 String ownerUserId = parser.getAttributeValue(null, ATTR_ID);
2123 if (ownerUserId != null) {
Pavel Grafov6a40f092016-10-25 15:46:51 +01002124 mDeviceOwnerUserId = Integer.parseInt(ownerUserId);
Zoltan Szatmary-Bane7834602016-04-08 18:41:11 +01002125 }
Pavel Grafov6a40f092016-10-25 15:46:51 +01002126 } else if (name.equals(TAG_DEVICE_POLICY_RESTRICTIONS)) {
2127 // Should only happen when upgrading from pre-O (version < 7).
2128 oldDevicePolicyGlobalUserRestrictions =
2129 UserRestrictionsUtils.readRestrictions(parser);
Amith Yamasani258848d2012-08-10 17:06:33 -07002130 }
Amith Yamasani4b2e9342011-03-31 12:38:53 -07002131 }
2132 }
Pavel Grafov6a40f092016-10-25 15:46:51 +01002133
Fyodor Kupolov82402752015-10-28 14:54:51 -07002134 updateUserIds();
Pavel Grafov6a40f092016-10-25 15:46:51 +01002135 upgradeIfNecessaryLP(oldDevicePolicyGlobalUserRestrictions);
Fyodor Kupolove80085d2015-11-06 18:21:39 -08002136 } catch (IOException | XmlPullParserException e) {
2137 fallbackToSingleUserLP();
Dianne Hackbornbfd89b32011-12-15 18:22:54 -08002138 } finally {
Fyodor Kupolove80085d2015-11-06 18:21:39 -08002139 IoUtils.closeQuietly(fis);
Amith Yamasani4b2e9342011-03-31 12:38:53 -07002140 }
2141 }
2142
Amith Yamasani6f34b412012-10-22 18:19:27 -07002143 /**
Amith Yamasanibc9625052012-11-15 14:39:18 -08002144 * Upgrade steps between versions, either for fixing bugs or changing the data format.
Pavel Grafov6a40f092016-10-25 15:46:51 +01002145 * @param oldGlobalUserRestrictions Pre-O global device policy restrictions.
Amith Yamasani6f34b412012-10-22 18:19:27 -07002146 */
Andreas Gampe2e8c7672018-07-20 13:01:08 -07002147 @GuardedBy({"mRestrictionsLock", "mPackagesLock"})
Pavel Grafov6a40f092016-10-25 15:46:51 +01002148 private void upgradeIfNecessaryLP(Bundle oldGlobalUserRestrictions) {
Bookatz75f0a072019-08-05 14:12:16 -07002149 Set<Integer> userIdsToWrite = new ArraySet<>();
Makoto Onuki1a2cd742015-11-16 13:51:27 -08002150 final int originalVersion = mUserVersion;
Amith Yamasani6f34b412012-10-22 18:19:27 -07002151 int userVersion = mUserVersion;
2152 if (userVersion < 1) {
2153 // Assign a proper name for the owner, if not initialized correctly before
Amith Yamasani12747872015-12-07 14:19:49 -08002154 UserData userData = getUserDataNoChecks(UserHandle.USER_SYSTEM);
2155 if ("Primary".equals(userData.info.name)) {
2156 userData.info.name =
2157 mContext.getResources().getString(com.android.internal.R.string.owner_name);
Bookatz75f0a072019-08-05 14:12:16 -07002158 userIdsToWrite.add(userData.info.id);
Amith Yamasani6f34b412012-10-22 18:19:27 -07002159 }
2160 userVersion = 1;
2161 }
2162
Amith Yamasanibc9625052012-11-15 14:39:18 -08002163 if (userVersion < 2) {
2164 // Owner should be marked as initialized
Amith Yamasani12747872015-12-07 14:19:49 -08002165 UserData userData = getUserDataNoChecks(UserHandle.USER_SYSTEM);
2166 if ((userData.info.flags & UserInfo.FLAG_INITIALIZED) == 0) {
2167 userData.info.flags |= UserInfo.FLAG_INITIALIZED;
Bookatz75f0a072019-08-05 14:12:16 -07002168 userIdsToWrite.add(userData.info.id);
Amith Yamasanibc9625052012-11-15 14:39:18 -08002169 }
2170 userVersion = 2;
2171 }
2172
Amith Yamasani350962c2013-08-06 11:18:53 -07002173
Amith Yamasani5e486f52013-08-07 11:06:44 -07002174 if (userVersion < 4) {
Amith Yamasani5e486f52013-08-07 11:06:44 -07002175 userVersion = 4;
2176 }
2177
Amith Yamasaniaa6634e2014-10-06 14:20:28 -07002178 if (userVersion < 5) {
2179 initDefaultGuestRestrictions();
2180 userVersion = 5;
2181 }
2182
Fyodor Kupolov1c363152015-09-02 13:27:21 -07002183 if (userVersion < 6) {
2184 final boolean splitSystemUser = UserManager.isSplitSystemUser();
Fyodor Kupolov82402752015-10-28 14:54:51 -07002185 synchronized (mUsersLock) {
2186 for (int i = 0; i < mUsers.size(); i++) {
Amith Yamasani12747872015-12-07 14:19:49 -08002187 UserData userData = mUsers.valueAt(i);
Fyodor Kupolov82402752015-10-28 14:54:51 -07002188 // In non-split mode, only user 0 can have restricted profiles
Amith Yamasani12747872015-12-07 14:19:49 -08002189 if (!splitSystemUser && userData.info.isRestricted()
2190 && (userData.info.restrictedProfileParentId
2191 == UserInfo.NO_PROFILE_GROUP_ID)) {
2192 userData.info.restrictedProfileParentId = UserHandle.USER_SYSTEM;
Bookatz75f0a072019-08-05 14:12:16 -07002193 userIdsToWrite.add(userData.info.id);
Fyodor Kupolov82402752015-10-28 14:54:51 -07002194 }
Fyodor Kupolov1c363152015-09-02 13:27:21 -07002195 }
2196 }
2197 userVersion = 6;
2198 }
2199
Pavel Grafov6a40f092016-10-25 15:46:51 +01002200 if (userVersion < 7) {
2201 // Previously only one user could enforce global restrictions, now it is per-user.
2202 synchronized (mRestrictionsLock) {
2203 if (!UserRestrictionsUtils.isEmpty(oldGlobalUserRestrictions)
2204 && mDeviceOwnerUserId != UserHandle.USER_NULL) {
2205 mDevicePolicyGlobalUserRestrictions.put(
2206 mDeviceOwnerUserId, oldGlobalUserRestrictions);
2207 }
2208 // ENSURE_VERIFY_APPS is now enforced globally even if put by profile owner, so move
2209 // it from local to global bundle for all users who set it.
2210 UserRestrictionsUtils.moveRestriction(UserManager.ENSURE_VERIFY_APPS,
2211 mDevicePolicyLocalUserRestrictions, mDevicePolicyGlobalUserRestrictions
2212 );
2213 }
2214 userVersion = 7;
2215 }
2216
Bookatz75f0a072019-08-05 14:12:16 -07002217 if (userVersion < 8) {
2218 // Added FLAG_FULL and FLAG_SYSTEM flags.
2219 synchronized (mUsersLock) {
2220 UserData userData = mUsers.get(UserHandle.USER_SYSTEM);
2221 userData.info.flags |= UserInfo.FLAG_SYSTEM;
2222 if (!UserManager.isHeadlessSystemUserMode()) {
2223 userData.info.flags |= UserInfo.FLAG_FULL;
2224 }
2225 userIdsToWrite.add(userData.info.id);
2226
2227 // Mark FULL all non-profile users except USER_SYSTEM.
2228 // Start index at 1 since USER_SYSTEM is the smallest userId and we're skipping it.
2229 for (int i = 1; i < mUsers.size(); i++) {
2230 userData = mUsers.valueAt(i);
2231 if ((userData.info.flags & UserInfo.FLAG_MANAGED_PROFILE) == 0) {
2232 userData.info.flags |= UserInfo.FLAG_FULL;
2233 userIdsToWrite.add(userData.info.id);
2234 }
2235 }
2236 }
2237 userVersion = 8;
2238 }
2239
Amith Yamasani6f34b412012-10-22 18:19:27 -07002240 if (userVersion < USER_VERSION) {
2241 Slog.w(LOG_TAG, "User version " + mUserVersion + " didn't upgrade as expected to "
2242 + USER_VERSION);
2243 } else {
2244 mUserVersion = userVersion;
Makoto Onuki1a2cd742015-11-16 13:51:27 -08002245
2246 if (originalVersion < mUserVersion) {
Bookatz75f0a072019-08-05 14:12:16 -07002247 for (int userId : userIdsToWrite) {
2248 UserData userData = getUserDataNoChecks(userId);
2249 if (userData != null) {
2250 writeUserLP(userData);
2251 }
2252 }
Makoto Onuki1a2cd742015-11-16 13:51:27 -08002253 writeUserListLP();
2254 }
Amith Yamasani6f34b412012-10-22 18:19:27 -07002255 }
2256 }
2257
Andreas Gampe2e8c7672018-07-20 13:01:08 -07002258 @GuardedBy({"mPackagesLock", "mRestrictionsLock"})
Fyodor Kupolove80085d2015-11-06 18:21:39 -08002259 private void fallbackToSingleUserLP() {
Ying Zheng215116f2019-09-11 12:50:09 -07002260 int flags = UserInfo.FLAG_SYSTEM | UserInfo.FLAG_INITIALIZED | UserInfo.FLAG_ADMIN
2261 | UserInfo.FLAG_PRIMARY;
2262 // In headless system user mode, headless system user is not a full user.
Bookatz75f0a072019-08-05 14:12:16 -07002263 if (!UserManager.isHeadlessSystemUserMode()) {
Ying Zheng215116f2019-09-11 12:50:09 -07002264 flags |= UserInfo.FLAG_FULL;
Bookatz75f0a072019-08-05 14:12:16 -07002265 }
Xiaohui Chen70f6c382015-04-28 14:21:43 -07002266 // Create the system user
Amith Yamasani6f48d6e2016-03-23 14:28:25 -07002267 UserInfo system = new UserInfo(UserHandle.USER_SYSTEM, null, null, flags);
Fyodor Kupolov0f4533d2016-05-18 18:43:12 -07002268 UserData userData = putUserInfo(system);
Amith Yamasani634cf312012-10-04 17:34:21 -07002269 mNextSerialNumber = MIN_USER_ID;
Geoffrey Borggaard15b8b2c2013-08-28 22:11:10 -04002270 mUserVersion = USER_VERSION;
Amith Yamasani67df64b2012-12-14 12:09:36 -08002271
Geoffrey Borggaarde45e45e32013-01-24 10:03:20 -05002272 Bundle restrictions = new Bundle();
Mahaver Chopra3d9805d2016-07-07 16:25:05 +01002273 try {
2274 final String[] defaultFirstUserRestrictions = mContext.getResources().getStringArray(
2275 com.android.internal.R.array.config_defaultFirstUserRestrictions);
2276 for (String userRestriction : defaultFirstUserRestrictions) {
2277 if (UserRestrictionsUtils.isValidRestriction(userRestriction)) {
2278 restrictions.putBoolean(userRestriction, true);
2279 }
2280 }
2281 } catch (Resources.NotFoundException e) {
2282 Log.e(LOG_TAG, "Couldn't find resource: config_defaultFirstUserRestrictions", e);
2283 }
2284
Pavel Grafov6a40f092016-10-25 15:46:51 +01002285 if (!restrictions.isEmpty()) {
2286 synchronized (mRestrictionsLock) {
2287 mBaseUserRestrictions.append(UserHandle.USER_SYSTEM, restrictions);
2288 }
Makoto Onuki068c54a2015-10-13 14:34:03 -07002289 }
Amith Yamasani67df64b2012-12-14 12:09:36 -08002290
Fyodor Kupolov82402752015-10-28 14:54:51 -07002291 updateUserIds();
Amith Yamasaniaa6634e2014-10-06 14:20:28 -07002292 initDefaultGuestRestrictions();
Amith Yamasani4b2e9342011-03-31 12:38:53 -07002293
Amith Yamasani12747872015-12-07 14:19:49 -08002294 writeUserLP(userData);
Jeff Sharkeycd575992016-03-29 14:12:49 -06002295 writeUserListLP();
Amith Yamasani4b2e9342011-03-31 12:38:53 -07002296 }
2297
Amith Yamasani6f48d6e2016-03-23 14:28:25 -07002298 private String getOwnerName() {
2299 return mContext.getResources().getString(com.android.internal.R.string.owner_name);
2300 }
2301
Bookatz75f0a072019-08-05 14:12:16 -07002302 private void scheduleWriteUser(UserData userData) {
Makoto Onuki1a2cd742015-11-16 13:51:27 -08002303 if (DBG) {
2304 debug("scheduleWriteUser");
2305 }
Makoto Onuki9e935a32015-11-06 14:24:24 -08002306 // No need to wrap it within a lock -- worst case, we'll just post the same message
2307 // twice.
Bookatz75f0a072019-08-05 14:12:16 -07002308 if (!mHandler.hasMessages(WRITE_USER_MSG, userData)) {
2309 Message msg = mHandler.obtainMessage(WRITE_USER_MSG, userData);
Fyodor Kupolov75d0ea82014-12-15 16:21:07 -08002310 mHandler.sendMessageDelayed(msg, WRITE_USER_DELAY);
2311 }
2312 }
2313
Amith Yamasani12747872015-12-07 14:19:49 -08002314 private void writeUserLP(UserData userData) {
Makoto Onuki1a2cd742015-11-16 13:51:27 -08002315 if (DBG) {
Amith Yamasani12747872015-12-07 14:19:49 -08002316 debug("writeUserLP " + userData);
Makoto Onuki1a2cd742015-11-16 13:51:27 -08002317 }
Amith Yamasani742a6712011-05-04 14:49:28 -07002318 FileOutputStream fos = null;
Amith Yamasani12747872015-12-07 14:19:49 -08002319 AtomicFile userFile = new AtomicFile(new File(mUsersDir, userData.info.id + XML_SUFFIX));
Amith Yamasani4b2e9342011-03-31 12:38:53 -07002320 try {
Amith Yamasani2a003292012-08-14 18:25:45 -07002321 fos = userFile.startWrite();
Amith Yamasani4b2e9342011-03-31 12:38:53 -07002322 final BufferedOutputStream bos = new BufferedOutputStream(fos);
Kenny Guy02c89902016-11-15 19:36:38 +00002323 writeUserLP(userData, bos);
Amith Yamasani2a003292012-08-14 18:25:45 -07002324 userFile.finishWrite(fos);
2325 } catch (Exception ioe) {
Jeff Sharkeycd575992016-03-29 14:12:49 -06002326 Slog.e(LOG_TAG, "Error writing user info " + userData.info.id, ioe);
Amith Yamasani2a003292012-08-14 18:25:45 -07002327 userFile.failWrite(fos);
Amith Yamasani4b2e9342011-03-31 12:38:53 -07002328 }
2329 }
2330
2331 /*
Kenny Guy02c89902016-11-15 19:36:38 +00002332 * Writes the user file in this format:
2333 *
2334 * <user flags="20039023" id="0">
2335 * <name>Primary</name>
2336 * </user>
2337 */
2338 @VisibleForTesting
2339 void writeUserLP(UserData userData, OutputStream os)
2340 throws IOException, XmlPullParserException {
2341 // XmlSerializer serializer = XmlUtils.serializerInstance();
2342 final XmlSerializer serializer = new FastXmlSerializer();
2343 serializer.setOutput(os, StandardCharsets.UTF_8.name());
2344 serializer.startDocument(null, true);
2345 serializer.setFeature("http://xmlpull.org/v1/doc/features.html#indent-output", true);
2346
2347 final UserInfo userInfo = userData.info;
2348 serializer.startTag(null, TAG_USER);
2349 serializer.attribute(null, ATTR_ID, Integer.toString(userInfo.id));
2350 serializer.attribute(null, ATTR_SERIAL_NO, Integer.toString(userInfo.serialNumber));
2351 serializer.attribute(null, ATTR_FLAGS, Integer.toString(userInfo.flags));
2352 serializer.attribute(null, ATTR_CREATION_TIME, Long.toString(userInfo.creationTime));
2353 serializer.attribute(null, ATTR_LAST_LOGGED_IN_TIME,
2354 Long.toString(userInfo.lastLoggedInTime));
2355 if (userInfo.lastLoggedInFingerprint != null) {
2356 serializer.attribute(null, ATTR_LAST_LOGGED_IN_FINGERPRINT,
2357 userInfo.lastLoggedInFingerprint);
2358 }
2359 if (userInfo.iconPath != null) {
2360 serializer.attribute(null, ATTR_ICON_PATH, userInfo.iconPath);
2361 }
2362 if (userInfo.partial) {
2363 serializer.attribute(null, ATTR_PARTIAL, "true");
2364 }
2365 if (userInfo.guestToRemove) {
2366 serializer.attribute(null, ATTR_GUEST_TO_REMOVE, "true");
2367 }
2368 if (userInfo.profileGroupId != UserInfo.NO_PROFILE_GROUP_ID) {
2369 serializer.attribute(null, ATTR_PROFILE_GROUP_ID,
2370 Integer.toString(userInfo.profileGroupId));
2371 }
2372 serializer.attribute(null, ATTR_PROFILE_BADGE,
2373 Integer.toString(userInfo.profileBadge));
2374 if (userInfo.restrictedProfileParentId != UserInfo.NO_PROFILE_GROUP_ID) {
2375 serializer.attribute(null, ATTR_RESTRICTED_PROFILE_PARENT_ID,
2376 Integer.toString(userInfo.restrictedProfileParentId));
2377 }
2378 // Write seed data
2379 if (userData.persistSeedData) {
2380 if (userData.seedAccountName != null) {
2381 serializer.attribute(null, ATTR_SEED_ACCOUNT_NAME, userData.seedAccountName);
2382 }
2383 if (userData.seedAccountType != null) {
2384 serializer.attribute(null, ATTR_SEED_ACCOUNT_TYPE, userData.seedAccountType);
2385 }
2386 }
2387 if (userInfo.name != null) {
2388 serializer.startTag(null, TAG_NAME);
2389 serializer.text(userInfo.name);
2390 serializer.endTag(null, TAG_NAME);
2391 }
2392 synchronized (mRestrictionsLock) {
2393 UserRestrictionsUtils.writeRestrictions(serializer,
2394 mBaseUserRestrictions.get(userInfo.id), TAG_RESTRICTIONS);
2395 UserRestrictionsUtils.writeRestrictions(serializer,
2396 mDevicePolicyLocalUserRestrictions.get(userInfo.id),
2397 TAG_DEVICE_POLICY_RESTRICTIONS);
Pavel Grafov6a40f092016-10-25 15:46:51 +01002398 UserRestrictionsUtils.writeRestrictions(serializer,
2399 mDevicePolicyGlobalUserRestrictions.get(userInfo.id),
2400 TAG_DEVICE_POLICY_GLOBAL_RESTRICTIONS);
Kenny Guy02c89902016-11-15 19:36:38 +00002401 }
2402
2403 if (userData.account != null) {
2404 serializer.startTag(null, TAG_ACCOUNT);
2405 serializer.text(userData.account);
2406 serializer.endTag(null, TAG_ACCOUNT);
2407 }
2408
2409 if (userData.persistSeedData && userData.seedAccountOptions != null) {
2410 serializer.startTag(null, TAG_SEED_ACCOUNT_OPTIONS);
2411 userData.seedAccountOptions.saveToXml(serializer);
2412 serializer.endTag(null, TAG_SEED_ACCOUNT_OPTIONS);
2413 }
2414
arangelov9b632d72018-12-07 23:21:22 +00002415 if (userData.getLastRequestQuietModeEnabledMillis() != 0L) {
2416 serializer.startTag(/* namespace */ null, TAG_LAST_REQUEST_QUIET_MODE_ENABLED_CALL);
2417 serializer.text(String.valueOf(userData.getLastRequestQuietModeEnabledMillis()));
2418 serializer.endTag(/* namespace */ null, TAG_LAST_REQUEST_QUIET_MODE_ENABLED_CALL);
2419 }
2420
Kenny Guy02c89902016-11-15 19:36:38 +00002421 serializer.endTag(null, TAG_USER);
2422
2423 serializer.endDocument();
2424 }
2425
2426 /*
Amith Yamasani4b2e9342011-03-31 12:38:53 -07002427 * Writes the user list file in this format:
2428 *
Amith Yamasani2a003292012-08-14 18:25:45 -07002429 * <users nextSerialNumber="3">
Amith Yamasani4b2e9342011-03-31 12:38:53 -07002430 * <user id="0"></user>
2431 * <user id="2"></user>
2432 * </users>
2433 */
Andreas Gampe2e8c7672018-07-20 13:01:08 -07002434 @GuardedBy({"mRestrictionsLock", "mPackagesLock"})
Fyodor Kupolove80085d2015-11-06 18:21:39 -08002435 private void writeUserListLP() {
Makoto Onuki1a2cd742015-11-16 13:51:27 -08002436 if (DBG) {
2437 debug("writeUserList");
2438 }
Amith Yamasani742a6712011-05-04 14:49:28 -07002439 FileOutputStream fos = null;
Amith Yamasani2a003292012-08-14 18:25:45 -07002440 AtomicFile userListFile = new AtomicFile(mUserListFile);
Amith Yamasani4b2e9342011-03-31 12:38:53 -07002441 try {
Amith Yamasani2a003292012-08-14 18:25:45 -07002442 fos = userListFile.startWrite();
Amith Yamasani4b2e9342011-03-31 12:38:53 -07002443 final BufferedOutputStream bos = new BufferedOutputStream(fos);
2444
2445 // XmlSerializer serializer = XmlUtils.serializerInstance();
2446 final XmlSerializer serializer = new FastXmlSerializer();
Wojciech Staszkiewicz9e9e2e72015-05-08 14:58:46 +01002447 serializer.setOutput(bos, StandardCharsets.UTF_8.name());
Amith Yamasani4b2e9342011-03-31 12:38:53 -07002448 serializer.startDocument(null, true);
2449 serializer.setFeature("http://xmlpull.org/v1/doc/features.html#indent-output", true);
2450
2451 serializer.startTag(null, TAG_USERS);
Amith Yamasani2a003292012-08-14 18:25:45 -07002452 serializer.attribute(null, ATTR_NEXT_SERIAL_NO, Integer.toString(mNextSerialNumber));
Amith Yamasani6f34b412012-10-22 18:19:27 -07002453 serializer.attribute(null, ATTR_USER_VERSION, Integer.toString(mUserVersion));
Amith Yamasani4b2e9342011-03-31 12:38:53 -07002454
Adam Lesinskieddeb492014-09-08 17:50:03 -07002455 serializer.startTag(null, TAG_GUEST_RESTRICTIONS);
Fyodor Kupolove80085d2015-11-06 18:21:39 -08002456 synchronized (mGuestRestrictions) {
2457 UserRestrictionsUtils
2458 .writeRestrictions(serializer, mGuestRestrictions, TAG_RESTRICTIONS);
2459 }
Amith Yamasanie4afaa32014-06-30 14:55:07 +05302460 serializer.endTag(null, TAG_GUEST_RESTRICTIONS);
Pavel Grafov6a40f092016-10-25 15:46:51 +01002461 serializer.startTag(null, TAG_DEVICE_OWNER_USER_ID);
2462 serializer.attribute(null, ATTR_ID, Integer.toString(mDeviceOwnerUserId));
2463 serializer.endTag(null, TAG_DEVICE_OWNER_USER_ID);
Fyodor Kupolov82402752015-10-28 14:54:51 -07002464 int[] userIdsToWrite;
2465 synchronized (mUsersLock) {
2466 userIdsToWrite = new int[mUsers.size()];
2467 for (int i = 0; i < userIdsToWrite.length; i++) {
Amith Yamasani12747872015-12-07 14:19:49 -08002468 UserInfo user = mUsers.valueAt(i).info;
Fyodor Kupolov82402752015-10-28 14:54:51 -07002469 userIdsToWrite[i] = user.id;
2470 }
2471 }
2472 for (int id : userIdsToWrite) {
Amith Yamasani4b2e9342011-03-31 12:38:53 -07002473 serializer.startTag(null, TAG_USER);
Fyodor Kupolov82402752015-10-28 14:54:51 -07002474 serializer.attribute(null, ATTR_ID, Integer.toString(id));
Amith Yamasani4b2e9342011-03-31 12:38:53 -07002475 serializer.endTag(null, TAG_USER);
Amith Yamasani4b2e9342011-03-31 12:38:53 -07002476 }
2477
2478 serializer.endTag(null, TAG_USERS);
2479
2480 serializer.endDocument();
Amith Yamasani2a003292012-08-14 18:25:45 -07002481 userListFile.finishWrite(fos);
2482 } catch (Exception e) {
2483 userListFile.failWrite(fos);
Amith Yamasani0b285492011-04-14 17:35:23 -07002484 Slog.e(LOG_TAG, "Error writing user list");
Amith Yamasani4b2e9342011-03-31 12:38:53 -07002485 }
2486 }
2487
Amith Yamasani12747872015-12-07 14:19:49 -08002488 private UserData readUserLP(int id) {
Kenny Guy02c89902016-11-15 19:36:38 +00002489 FileInputStream fis = null;
2490 try {
2491 AtomicFile userFile =
2492 new AtomicFile(new File(mUsersDir, Integer.toString(id) + XML_SUFFIX));
2493 fis = userFile.openRead();
2494 return readUserLP(id, fis);
2495 } catch (IOException ioe) {
2496 Slog.e(LOG_TAG, "Error reading user list");
2497 } catch (XmlPullParserException pe) {
2498 Slog.e(LOG_TAG, "Error reading user list");
2499 } finally {
2500 IoUtils.closeQuietly(fis);
2501 }
2502 return null;
2503 }
2504
2505 @VisibleForTesting
2506 UserData readUserLP(int id, InputStream is) throws IOException,
2507 XmlPullParserException {
Amith Yamasani4b2e9342011-03-31 12:38:53 -07002508 int flags = 0;
Amith Yamasani2a003292012-08-14 18:25:45 -07002509 int serialNumber = id;
Amith Yamasani4b2e9342011-03-31 12:38:53 -07002510 String name = null;
Xiaohui Chenb3b92582015-12-07 11:22:13 -08002511 String account = null;
Amith Yamasanib8151ec2012-04-18 18:02:48 -07002512 String iconPath = null;
Amith Yamasani920ace02012-09-20 22:15:37 -07002513 long creationTime = 0L;
2514 long lastLoggedInTime = 0L;
arangelov9b632d72018-12-07 23:21:22 +00002515 long lastRequestQuietModeEnabledTimestamp = 0L;
Jeff Sharkeybd91e2f2016-03-22 15:32:31 -06002516 String lastLoggedInFingerprint = null;
Kenny Guy2a764942014-04-02 13:29:20 +01002517 int profileGroupId = UserInfo.NO_PROFILE_GROUP_ID;
Kenny Guy02c89902016-11-15 19:36:38 +00002518 int profileBadge = 0;
Fyodor Kupolov06a484a2015-08-21 16:33:20 -07002519 int restrictedProfileParentId = UserInfo.NO_PROFILE_GROUP_ID;
Dianne Hackbornd4ac8d72012-09-27 23:20:10 -07002520 boolean partial = false;
Adam Lesinskieddeb492014-09-08 17:50:03 -07002521 boolean guestToRemove = false;
Amith Yamasani12747872015-12-07 14:19:49 -08002522 boolean persistSeedData = false;
2523 String seedAccountName = null;
2524 String seedAccountType = null;
2525 PersistableBundle seedAccountOptions = null;
Pavel Grafov6a40f092016-10-25 15:46:51 +01002526 Bundle baseRestrictions = null;
2527 Bundle localRestrictions = null;
2528 Bundle globalRestrictions = null;
Amith Yamasani4b2e9342011-03-31 12:38:53 -07002529
Kenny Guy02c89902016-11-15 19:36:38 +00002530 XmlPullParser parser = Xml.newPullParser();
2531 parser.setInput(is, StandardCharsets.UTF_8.name());
2532 int type;
2533 while ((type = parser.next()) != XmlPullParser.START_TAG
2534 && type != XmlPullParser.END_DOCUMENT) {
2535 // Skip
2536 }
Amith Yamasani4b2e9342011-03-31 12:38:53 -07002537
Kenny Guy02c89902016-11-15 19:36:38 +00002538 if (type != XmlPullParser.START_TAG) {
2539 Slog.e(LOG_TAG, "Unable to read user " + id);
2540 return null;
2541 }
2542
2543 if (type == XmlPullParser.START_TAG && parser.getName().equals(TAG_USER)) {
2544 int storedId = readIntAttribute(parser, ATTR_ID, -1);
2545 if (storedId != id) {
2546 Slog.e(LOG_TAG, "User id does not match the file name");
Amith Yamasani4b2e9342011-03-31 12:38:53 -07002547 return null;
2548 }
Kenny Guy02c89902016-11-15 19:36:38 +00002549 serialNumber = readIntAttribute(parser, ATTR_SERIAL_NO, id);
2550 flags = readIntAttribute(parser, ATTR_FLAGS, 0);
2551 iconPath = parser.getAttributeValue(null, ATTR_ICON_PATH);
2552 creationTime = readLongAttribute(parser, ATTR_CREATION_TIME, 0);
2553 lastLoggedInTime = readLongAttribute(parser, ATTR_LAST_LOGGED_IN_TIME, 0);
2554 lastLoggedInFingerprint = parser.getAttributeValue(null,
2555 ATTR_LAST_LOGGED_IN_FINGERPRINT);
2556 profileGroupId = readIntAttribute(parser, ATTR_PROFILE_GROUP_ID,
2557 UserInfo.NO_PROFILE_GROUP_ID);
2558 profileBadge = readIntAttribute(parser, ATTR_PROFILE_BADGE, 0);
2559 restrictedProfileParentId = readIntAttribute(parser,
2560 ATTR_RESTRICTED_PROFILE_PARENT_ID, UserInfo.NO_PROFILE_GROUP_ID);
2561 String valueString = parser.getAttributeValue(null, ATTR_PARTIAL);
2562 if ("true".equals(valueString)) {
2563 partial = true;
2564 }
2565 valueString = parser.getAttributeValue(null, ATTR_GUEST_TO_REMOVE);
2566 if ("true".equals(valueString)) {
2567 guestToRemove = true;
2568 }
Amith Yamasani4b2e9342011-03-31 12:38:53 -07002569
Kenny Guy02c89902016-11-15 19:36:38 +00002570 seedAccountName = parser.getAttributeValue(null, ATTR_SEED_ACCOUNT_NAME);
2571 seedAccountType = parser.getAttributeValue(null, ATTR_SEED_ACCOUNT_TYPE);
2572 if (seedAccountName != null || seedAccountType != null) {
2573 persistSeedData = true;
2574 }
Amith Yamasani4b2e9342011-03-31 12:38:53 -07002575
Kenny Guy02c89902016-11-15 19:36:38 +00002576 int outerDepth = parser.getDepth();
2577 while ((type = parser.next()) != XmlPullParser.END_DOCUMENT
2578 && (type != XmlPullParser.END_TAG || parser.getDepth() > outerDepth)) {
2579 if (type == XmlPullParser.END_TAG || type == XmlPullParser.TEXT) {
2580 continue;
2581 }
2582 String tag = parser.getName();
2583 if (TAG_NAME.equals(tag)) {
2584 type = parser.next();
2585 if (type == XmlPullParser.TEXT) {
2586 name = parser.getText();
2587 }
2588 } else if (TAG_RESTRICTIONS.equals(tag)) {
Pavel Grafov6a40f092016-10-25 15:46:51 +01002589 baseRestrictions = UserRestrictionsUtils.readRestrictions(parser);
Kenny Guy02c89902016-11-15 19:36:38 +00002590 } else if (TAG_DEVICE_POLICY_RESTRICTIONS.equals(tag)) {
Pavel Grafov6a40f092016-10-25 15:46:51 +01002591 localRestrictions = UserRestrictionsUtils.readRestrictions(parser);
2592 } else if (TAG_DEVICE_POLICY_GLOBAL_RESTRICTIONS.equals(tag)) {
2593 globalRestrictions = UserRestrictionsUtils.readRestrictions(parser);
Kenny Guy02c89902016-11-15 19:36:38 +00002594 } else if (TAG_ACCOUNT.equals(tag)) {
2595 type = parser.next();
2596 if (type == XmlPullParser.TEXT) {
2597 account = parser.getText();
2598 }
2599 } else if (TAG_SEED_ACCOUNT_OPTIONS.equals(tag)) {
2600 seedAccountOptions = PersistableBundle.restoreFromXml(parser);
Amith Yamasani12747872015-12-07 14:19:49 -08002601 persistSeedData = true;
arangelov9b632d72018-12-07 23:21:22 +00002602 } else if (TAG_LAST_REQUEST_QUIET_MODE_ENABLED_CALL.equals(tag)) {
2603 type = parser.next();
2604 if (type == XmlPullParser.TEXT) {
2605 lastRequestQuietModeEnabledTimestamp = Long.parseLong(parser.getText());
2606 }
Amith Yamasani12747872015-12-07 14:19:49 -08002607 }
Dianne Hackbornbfd89b32011-12-15 18:22:54 -08002608 }
Amith Yamasani4b2e9342011-03-31 12:38:53 -07002609 }
Kenny Guy02c89902016-11-15 19:36:38 +00002610
2611 // Create the UserInfo object that gets passed around
2612 UserInfo userInfo = new UserInfo(id, name, iconPath, flags);
2613 userInfo.serialNumber = serialNumber;
2614 userInfo.creationTime = creationTime;
2615 userInfo.lastLoggedInTime = lastLoggedInTime;
2616 userInfo.lastLoggedInFingerprint = lastLoggedInFingerprint;
2617 userInfo.partial = partial;
2618 userInfo.guestToRemove = guestToRemove;
2619 userInfo.profileGroupId = profileGroupId;
2620 userInfo.profileBadge = profileBadge;
2621 userInfo.restrictedProfileParentId = restrictedProfileParentId;
2622
2623 // Create the UserData object that's internal to this class
2624 UserData userData = new UserData();
2625 userData.info = userInfo;
2626 userData.account = account;
2627 userData.seedAccountName = seedAccountName;
2628 userData.seedAccountType = seedAccountType;
2629 userData.persistSeedData = persistSeedData;
2630 userData.seedAccountOptions = seedAccountOptions;
arangelov9b632d72018-12-07 23:21:22 +00002631 userData.setLastRequestQuietModeEnabledMillis(lastRequestQuietModeEnabledTimestamp);
Kenny Guy02c89902016-11-15 19:36:38 +00002632
2633 synchronized (mRestrictionsLock) {
Pavel Grafov6a40f092016-10-25 15:46:51 +01002634 if (baseRestrictions != null) {
2635 mBaseUserRestrictions.put(id, baseRestrictions);
2636 }
2637 if (localRestrictions != null) {
2638 mDevicePolicyLocalUserRestrictions.put(id, localRestrictions);
2639 }
2640 if (globalRestrictions != null) {
2641 mDevicePolicyGlobalUserRestrictions.put(id, globalRestrictions);
2642 }
Kenny Guy02c89902016-11-15 19:36:38 +00002643 }
2644 return userData;
Amith Yamasani4b2e9342011-03-31 12:38:53 -07002645 }
2646
Amith Yamasani920ace02012-09-20 22:15:37 -07002647 private int readIntAttribute(XmlPullParser parser, String attr, int defaultValue) {
2648 String valueString = parser.getAttributeValue(null, attr);
2649 if (valueString == null) return defaultValue;
2650 try {
2651 return Integer.parseInt(valueString);
2652 } catch (NumberFormatException nfe) {
2653 return defaultValue;
2654 }
2655 }
2656
2657 private long readLongAttribute(XmlPullParser parser, String attr, long defaultValue) {
2658 String valueString = parser.getAttributeValue(null, attr);
2659 if (valueString == null) return defaultValue;
2660 try {
2661 return Long.parseLong(valueString);
2662 } catch (NumberFormatException nfe) {
2663 return defaultValue;
2664 }
2665 }
2666
Amith Yamasanib82add22013-07-09 11:24:44 -07002667 /**
Amith Yamasani1a7472e2013-07-02 11:17:30 -07002668 * Removes the app restrictions file for a specific package and user id, if it exists.
2669 */
Bookatzf56f2582019-09-04 16:06:41 -07002670 private static void cleanAppRestrictionsForPackageLAr(String pkg, @UserIdInt int userId) {
Fyodor Kupolovd31cee92017-09-05 16:31:08 -07002671 File dir = Environment.getUserSystemDirectory(userId);
2672 File resFile = new File(dir, packageToRestrictionsFileName(pkg));
2673 if (resFile.exists()) {
2674 resFile.delete();
Amith Yamasani1a7472e2013-07-02 11:17:30 -07002675 }
2676 }
2677
Kenny Guya52dc3e2014-02-11 15:33:14 +00002678 @Override
Bookatzf56f2582019-09-04 16:06:41 -07002679 public UserInfo createProfileForUser(String name, int flags, @UserIdInt int userId,
Sudheer Shanka7cb54a32016-09-16 12:59:05 -07002680 String[] disallowedPackages) {
Sudheer Shankaf5cea032016-06-08 17:13:24 -07002681 checkManageOrCreateUsersPermission(flags);
Sudheer Shanka7cb54a32016-09-16 12:59:05 -07002682 return createUserInternal(name, flags, userId, disallowedPackages);
Kenny Guya52dc3e2014-02-11 15:33:14 +00002683 }
2684
Amith Yamasani258848d2012-08-10 17:06:33 -07002685 @Override
Bookatzf56f2582019-09-04 16:06:41 -07002686 public UserInfo createProfileForUserEvenWhenDisallowed(String name, int flags,
2687 @UserIdInt int userId, String[] disallowedPackages) {
Tony Mak6dc428f2016-10-10 15:48:27 +01002688 checkManageOrCreateUsersPermission(flags);
2689 return createUserInternalUnchecked(name, flags, userId, disallowedPackages);
2690 }
2691
2692 @Override
Bookatzf56f2582019-09-04 16:06:41 -07002693 public boolean removeUserEvenWhenDisallowed(@UserIdInt int userId) {
Nicolas Prevotd37c4a92017-01-23 11:56:00 +00002694 checkManageOrCreateUsersPermission("Only the system can remove users");
Bookatzf56f2582019-09-04 16:06:41 -07002695 return removeUserUnchecked(userId);
Nicolas Prevotd37c4a92017-01-23 11:56:00 +00002696 }
2697
2698 @Override
Amith Yamasani13593602012-03-22 16:16:17 -07002699 public UserInfo createUser(String name, int flags) {
Sudheer Shankaf5cea032016-06-08 17:13:24 -07002700 checkManageOrCreateUsersPermission(flags);
Nicolas Prevotc6d033e2014-02-27 13:11:09 +00002701 return createUserInternal(name, flags, UserHandle.USER_NULL);
Kenny Guya52dc3e2014-02-11 15:33:14 +00002702 }
Amith Yamasanifaea76f2012-09-11 10:59:48 -07002703
Jessica Hummelbe81c802014-04-22 15:49:22 +01002704 private UserInfo createUserInternal(String name, int flags, int parentId) {
Sudheer Shanka7cb54a32016-09-16 12:59:05 -07002705 return createUserInternal(name, flags, parentId, null);
2706 }
2707
2708 private UserInfo createUserInternal(String name, int flags, int parentId,
2709 String[] disallowedPackages) {
Esteban Talavera6c9116a2016-11-24 16:12:44 +00002710 String restriction = ((flags & UserInfo.FLAG_MANAGED_PROFILE) != 0)
2711 ? UserManager.DISALLOW_ADD_MANAGED_PROFILE
2712 : UserManager.DISALLOW_ADD_USER;
2713 if (hasUserRestriction(restriction, UserHandle.getCallingUserId())) {
2714 Log.w(LOG_TAG, "Cannot add user. " + restriction + " is enabled.");
Julia Reynolds75175022014-06-26 16:35:00 -04002715 return null;
2716 }
Tony Mak6dc428f2016-10-10 15:48:27 +01002717 return createUserInternalUnchecked(name, flags, parentId, disallowedPackages);
2718 }
2719
jovanakdd7e4752019-09-04 12:35:45 -07002720 private UserInfo createUserInternalUnchecked(@Nullable String name, int flags,
2721 int parentId, @Nullable String[] disallowedPackages) {
2722 TimingsTraceAndSlog t = new TimingsTraceAndSlog();
2723 t.traceBegin("createUser");
2724 UserInfo userInfo =
2725 createUserInternalUncheckedNoTracing(name, flags, parentId, disallowedPackages, t);
2726 t.traceEnd();
2727 return userInfo;
2728 }
2729
2730 private UserInfo createUserInternalUncheckedNoTracing(@Nullable String name, int flags,
2731 int parentId, @Nullable String[] disallowedPackages, @NonNull TimingsTraceAndSlog t) {
Suprabh Shuklac5e057c2016-08-08 16:22:44 -07002732 DeviceStorageMonitorInternal dsm = LocalServices
2733 .getService(DeviceStorageMonitorInternal.class);
2734 if (dsm.isMemoryLow()) {
2735 Log.w(LOG_TAG, "Cannot add user. Not enough space on disk.");
2736 return null;
2737 }
jovanakdd7e4752019-09-04 12:35:45 -07002738
Amith Yamasani95ab7842014-08-11 17:09:26 -07002739 final boolean isGuest = (flags & UserInfo.FLAG_GUEST) != 0;
Nicolas Prevot12678a92015-05-13 12:15:03 -07002740 final boolean isManagedProfile = (flags & UserInfo.FLAG_MANAGED_PROFILE) != 0;
Fyodor Kupolov06a484a2015-08-21 16:33:20 -07002741 final boolean isRestricted = (flags & UserInfo.FLAG_RESTRICTED) != 0;
Amith Yamasani52c21e32016-05-31 09:12:20 -07002742 final boolean isDemo = (flags & UserInfo.FLAG_DEMO) != 0;
Dianne Hackborn5dc5a002012-09-15 19:33:48 -07002743 final long ident = Binder.clearCallingIdentity();
Fyodor Kupolove80085d2015-11-06 18:21:39 -08002744 UserInfo userInfo;
Amith Yamasani12747872015-12-07 14:19:49 -08002745 UserData userData;
Amith Yamasanibb054c92015-07-09 14:16:27 -07002746 final int userId;
Dianne Hackborn5dc5a002012-09-15 19:33:48 -07002747 try {
Fyodor Kupolove80085d2015-11-06 18:21:39 -08002748 synchronized (mPackagesLock) {
Amith Yamasani12747872015-12-07 14:19:49 -08002749 UserData parent = null;
Fyodor Kupolove80085d2015-11-06 18:21:39 -08002750 if (parentId != UserHandle.USER_NULL) {
2751 synchronized (mUsersLock) {
Amith Yamasani12747872015-12-07 14:19:49 -08002752 parent = getUserDataLU(parentId);
Nicolas Prevotc6d033e2014-02-27 13:11:09 +00002753 }
Fyodor Kupolove80085d2015-11-06 18:21:39 -08002754 if (parent == null) return null;
2755 }
2756 if (isManagedProfile && !canAddMoreManagedProfiles(parentId, false)) {
2757 Log.e(LOG_TAG, "Cannot add more managed profiles for user " + parentId);
2758 return null;
2759 }
Amith Yamasani52c21e32016-05-31 09:12:20 -07002760 if (!isGuest && !isManagedProfile && !isDemo && isUserLimitReached()) {
2761 // If we're not adding a guest/demo user or a managed profile and the limit has
Fyodor Kupolove80085d2015-11-06 18:21:39 -08002762 // been reached, cannot add a user.
jovanaka6763a32018-12-03 17:23:20 -08002763 Log.e(LOG_TAG, "Cannot add user. Maximum user limit is reached.");
Fyodor Kupolove80085d2015-11-06 18:21:39 -08002764 return null;
2765 }
2766 // If we're adding a guest and there already exists one, bail.
2767 if (isGuest && findCurrentGuestUser() != null) {
jovanaka6763a32018-12-03 17:23:20 -08002768 Log.e(LOG_TAG, "Cannot add guest user. Guest user already exists.");
Fyodor Kupolove80085d2015-11-06 18:21:39 -08002769 return null;
2770 }
2771 // In legacy mode, restricted profile's parent can only be the owner user
2772 if (isRestricted && !UserManager.isSplitSystemUser()
2773 && (parentId != UserHandle.USER_SYSTEM)) {
2774 Log.w(LOG_TAG, "Cannot add restricted profile - parent user must be owner");
2775 return null;
2776 }
2777 if (isRestricted && UserManager.isSplitSystemUser()) {
2778 if (parent == null) {
2779 Log.w(LOG_TAG, "Cannot add restricted profile - parent user must be "
2780 + "specified");
Nicolas Prevot12678a92015-05-13 12:15:03 -07002781 return null;
2782 }
Amith Yamasani12747872015-12-07 14:19:49 -08002783 if (!parent.info.canHaveProfile()) {
Fyodor Kupolove80085d2015-11-06 18:21:39 -08002784 Log.w(LOG_TAG, "Cannot add restricted profile - profiles cannot be "
2785 + "created for the specified parent user id " + parentId);
Amith Yamasani95ab7842014-08-11 17:09:26 -07002786 return null;
2787 }
Fyodor Kupolove80085d2015-11-06 18:21:39 -08002788 }
Ying Zheng215116f2019-09-11 12:50:09 -07002789
Bookatz75f0a072019-08-05 14:12:16 -07002790 if (!isManagedProfile) {
2791 // New users cannot be system, and it's not a profile, so per-force it's FULL.
2792 flags |= UserInfo.FLAG_FULL;
2793 }
Lenka Trochtovac4dd0212015-11-18 12:22:06 +01002794
Lenka Trochtovaf348e8e2016-01-07 17:20:34 +01002795 userId = getNextAvailableId();
2796 Environment.getUserSystemDirectory(userId).mkdirs();
Lenka Trochtova02fee152015-12-22 14:26:18 +01002797 boolean ephemeralGuests = Resources.getSystem()
2798 .getBoolean(com.android.internal.R.bool.config_guestUserEphemeral);
Lenka Trochtovaf348e8e2016-01-07 17:20:34 +01002799
Fyodor Kupolove80085d2015-11-06 18:21:39 -08002800 synchronized (mUsersLock) {
Lenka Trochtovaf348e8e2016-01-07 17:20:34 +01002801 // Add ephemeral flag to guests/users if required. Also inherit it from parent.
2802 if ((isGuest && ephemeralGuests) || mForceEphemeralUsers
2803 || (parent != null && parent.info.isEphemeral())) {
2804 flags |= UserInfo.FLAG_EPHEMERAL;
2805 }
2806
2807 userInfo = new UserInfo(userId, name, null, flags);
2808 userInfo.serialNumber = mNextSerialNumber++;
2809 long now = System.currentTimeMillis();
2810 userInfo.creationTime = (now > EPOCH_PLUS_30_YEARS) ? now : 0;
2811 userInfo.partial = true;
Fyodor Kupolov83c24242016-03-31 13:30:42 -07002812 userInfo.lastLoggedInFingerprint = Build.FINGERPRINT;
Kenny Guy02c89902016-11-15 19:36:38 +00002813 if (isManagedProfile && parentId != UserHandle.USER_NULL) {
2814 userInfo.profileBadge = getFreeProfileBadgeLU(parentId);
2815 }
Lenka Trochtovaf348e8e2016-01-07 17:20:34 +01002816 userData = new UserData();
2817 userData.info = userInfo;
Amith Yamasani12747872015-12-07 14:19:49 -08002818 mUsers.put(userId, userData);
Fyodor Kupolove80085d2015-11-06 18:21:39 -08002819 }
Jeff Sharkeycd575992016-03-29 14:12:49 -06002820 writeUserLP(userData);
Fyodor Kupolove80085d2015-11-06 18:21:39 -08002821 writeUserListLP();
2822 if (parent != null) {
2823 if (isManagedProfile) {
Amith Yamasani12747872015-12-07 14:19:49 -08002824 if (parent.info.profileGroupId == UserInfo.NO_PROFILE_GROUP_ID) {
2825 parent.info.profileGroupId = parent.info.id;
Fyodor Kupolove80085d2015-11-06 18:21:39 -08002826 writeUserLP(parent);
Kenny Guya52dc3e2014-02-11 15:33:14 +00002827 }
Amith Yamasani12747872015-12-07 14:19:49 -08002828 userInfo.profileGroupId = parent.info.profileGroupId;
Fyodor Kupolove80085d2015-11-06 18:21:39 -08002829 } else if (isRestricted) {
Amith Yamasani12747872015-12-07 14:19:49 -08002830 if (parent.info.restrictedProfileParentId == UserInfo.NO_PROFILE_GROUP_ID) {
2831 parent.info.restrictedProfileParentId = parent.info.id;
Fyodor Kupolove80085d2015-11-06 18:21:39 -08002832 writeUserLP(parent);
Jeff Sharkey6dce4962015-07-03 18:08:41 -07002833 }
Amith Yamasani12747872015-12-07 14:19:49 -08002834 userInfo.restrictedProfileParentId = parent.info.restrictedProfileParentId;
Makoto Onuki068c54a2015-10-13 14:34:03 -07002835 }
Dianne Hackborn5dc5a002012-09-15 19:33:48 -07002836 }
Dianne Hackborn4428e172012-08-24 17:43:05 -07002837 }
jovanakdd7e4752019-09-04 12:35:45 -07002838
2839 t.traceBegin("createUserKey");
Fyodor Kupolove80085d2015-11-06 18:21:39 -08002840 final StorageManager storage = mContext.getSystemService(StorageManager.class);
Lenka Trochtovac4dd0212015-11-18 12:22:06 +01002841 storage.createUserKey(userId, userInfo.serialNumber, userInfo.isEphemeral());
jovanakdd7e4752019-09-04 12:35:45 -07002842 t.traceEnd();
2843
2844 t.traceBegin("prepareUserData");
Fyodor Kupolov5c0ecfd2017-01-27 11:11:57 -08002845 mUserDataPreparer.prepareUserData(userId, userInfo.serialNumber,
Jeff Sharkey47f71082016-02-01 17:03:54 -07002846 StorageManager.FLAG_STORAGE_DE | StorageManager.FLAG_STORAGE_CE);
jovanakdd7e4752019-09-04 12:35:45 -07002847 t.traceEnd();
2848
Bookatz04d7ae52019-08-05 14:07:12 -07002849 final Set<String> installablePackages =
2850 mSystemPackageInstaller.getInstallablePackagesForUserType(flags);
jovanakdd7e4752019-09-04 12:35:45 -07002851 t.traceBegin("PM.createNewUser");
Bookatz04d7ae52019-08-05 14:07:12 -07002852 mPm.createNewUser(userId, installablePackages, disallowedPackages);
jovanakdd7e4752019-09-04 12:35:45 -07002853 t.traceEnd();
2854
Fyodor Kupolove80085d2015-11-06 18:21:39 -08002855 userInfo.partial = false;
2856 synchronized (mPackagesLock) {
Amith Yamasani12747872015-12-07 14:19:49 -08002857 writeUserLP(userData);
Fyodor Kupolove80085d2015-11-06 18:21:39 -08002858 }
2859 updateUserIds();
2860 Bundle restrictions = new Bundle();
Fyodor Kupolove04462c2015-11-30 15:02:53 -08002861 if (isGuest) {
2862 synchronized (mGuestRestrictions) {
2863 restrictions.putAll(mGuestRestrictions);
2864 }
2865 }
Fyodor Kupolove80085d2015-11-06 18:21:39 -08002866 synchronized (mRestrictionsLock) {
2867 mBaseUserRestrictions.append(userId, restrictions);
2868 }
jovanakdd7e4752019-09-04 12:35:45 -07002869
2870 t.traceBegin("PM.onNewUserCreated");
Fyodor Kupolov5fd967d2016-07-12 14:46:19 -07002871 mPm.onNewUserCreated(userId);
jovanakdd7e4752019-09-04 12:35:45 -07002872 t.traceEnd();
2873
Fyodor Kupolove80085d2015-11-06 18:21:39 -08002874 Intent addedIntent = new Intent(Intent.ACTION_USER_ADDED);
2875 addedIntent.putExtra(Intent.EXTRA_USER_HANDLE, userId);
2876 mContext.sendBroadcastAsUser(addedIntent, UserHandle.ALL,
2877 android.Manifest.permission.MANAGE_USERS);
Christine Franks88220562017-05-24 11:11:21 -07002878 MetricsLogger.count(mContext, isGuest ? TRON_GUEST_CREATED
2879 : (isDemo ? TRON_DEMO_CREATED : TRON_USER_CREATED), 1);
Dianne Hackborn5dc5a002012-09-15 19:33:48 -07002880 } finally {
2881 Binder.restoreCallingIdentity(ident);
Amith Yamasani258848d2012-08-10 17:06:33 -07002882 }
Amith Yamasani4b2e9342011-03-31 12:38:53 -07002883 return userInfo;
2884 }
2885
Bookatz04d7ae52019-08-05 14:07:12 -07002886 /** Install/uninstall system packages for all users based on their user-type, as applicable. */
2887 boolean installWhitelistedSystemPackages(boolean isFirstBoot, boolean isUpgrade) {
2888 return mSystemPackageInstaller.installWhitelistedSystemPackages(isFirstBoot, isUpgrade);
2889 }
2890
Fyodor Kupolov0f4533d2016-05-18 18:43:12 -07002891 @VisibleForTesting
2892 UserData putUserInfo(UserInfo userInfo) {
2893 final UserData userData = new UserData();
2894 userData.info = userInfo;
2895 synchronized (mUsers) {
2896 mUsers.put(userInfo.id, userData);
2897 }
2898 return userData;
2899 }
2900
2901 @VisibleForTesting
Bookatzf56f2582019-09-04 16:06:41 -07002902 void removeUserInfo(@UserIdInt int userId) {
Fyodor Kupolov0f4533d2016-05-18 18:43:12 -07002903 synchronized (mUsers) {
2904 mUsers.remove(userId);
2905 }
2906 }
2907
Amith Yamasani0b285492011-04-14 17:35:23 -07002908 /**
Fyodor Kupolov02cb6e72015-09-18 18:20:55 -07002909 * @hide
2910 */
Amith Yamasani12747872015-12-07 14:19:49 -08002911 @Override
Fyodor Kupolov02cb6e72015-09-18 18:20:55 -07002912 public UserInfo createRestrictedProfile(String name, int parentUserId) {
Sudheer Shanka53d41472016-06-16 09:11:08 -07002913 checkManageOrCreateUsersPermission("setupRestrictedProfile");
Sudheer Shanka7cb54a32016-09-16 12:59:05 -07002914 final UserInfo user = createProfileForUser(
2915 name, UserInfo.FLAG_RESTRICTED, parentUserId, null);
Fyodor Kupolov02cb6e72015-09-18 18:20:55 -07002916 if (user == null) {
2917 return null;
2918 }
Fyodor Kupolov9e912ba2016-02-09 18:29:43 -08002919 long identity = Binder.clearCallingIdentity();
2920 try {
2921 setUserRestriction(UserManager.DISALLOW_MODIFY_ACCOUNTS, true, user.id);
2922 // Change the setting before applying the DISALLOW_SHARE_LOCATION restriction, otherwise
2923 // the putIntForUser() will fail.
2924 android.provider.Settings.Secure.putIntForUser(mContext.getContentResolver(),
2925 android.provider.Settings.Secure.LOCATION_MODE,
2926 android.provider.Settings.Secure.LOCATION_MODE_OFF, user.id);
2927 setUserRestriction(UserManager.DISALLOW_SHARE_LOCATION, true, user.id);
2928 } finally {
2929 Binder.restoreCallingIdentity(identity);
2930 }
Fyodor Kupolov02cb6e72015-09-18 18:20:55 -07002931 return user;
2932 }
2933
2934 /**
Adam Lesinskieddeb492014-09-08 17:50:03 -07002935 * Find the current guest user. If the Guest user is partial,
2936 * then do not include it in the results as it is about to die.
Adam Lesinskieddeb492014-09-08 17:50:03 -07002937 */
Fyodor Kupolov82402752015-10-28 14:54:51 -07002938 private UserInfo findCurrentGuestUser() {
2939 synchronized (mUsersLock) {
2940 final int size = mUsers.size();
2941 for (int i = 0; i < size; i++) {
Amith Yamasani12747872015-12-07 14:19:49 -08002942 final UserInfo user = mUsers.valueAt(i).info;
Fyodor Kupolov82402752015-10-28 14:54:51 -07002943 if (user.isGuest() && !user.guestToRemove && !mRemovingUserIds.get(user.id)) {
2944 return user;
2945 }
Adam Lesinskieddeb492014-09-08 17:50:03 -07002946 }
2947 }
2948 return null;
2949 }
2950
2951 /**
Amith Yamasani1df14732014-08-29 21:37:27 -07002952 * Mark this guest user for deletion to allow us to create another guest
2953 * and switch to that user before actually removing this guest.
Bookatzf56f2582019-09-04 16:06:41 -07002954 * @param userId the userid of the current guest
Amith Yamasani1df14732014-08-29 21:37:27 -07002955 * @return whether the user could be marked for deletion
2956 */
Amith Yamasani12747872015-12-07 14:19:49 -08002957 @Override
Bookatzf56f2582019-09-04 16:06:41 -07002958 public boolean markGuestForDeletion(@UserIdInt int userId) {
Amith Yamasani1df14732014-08-29 21:37:27 -07002959 checkManageUsersPermission("Only the system can remove users");
2960 if (getUserRestrictions(UserHandle.getCallingUserId()).getBoolean(
2961 UserManager.DISALLOW_REMOVE_USER, false)) {
2962 Log.w(LOG_TAG, "Cannot remove user. DISALLOW_REMOVE_USER is enabled.");
2963 return false;
2964 }
2965
2966 long ident = Binder.clearCallingIdentity();
2967 try {
Amith Yamasani12747872015-12-07 14:19:49 -08002968 final UserData userData;
Amith Yamasani1df14732014-08-29 21:37:27 -07002969 synchronized (mPackagesLock) {
Fyodor Kupolov82402752015-10-28 14:54:51 -07002970 synchronized (mUsersLock) {
Bookatzf56f2582019-09-04 16:06:41 -07002971 userData = mUsers.get(userId);
2972 if (userId == 0 || userData == null || mRemovingUserIds.get(userId)) {
Fyodor Kupolov82402752015-10-28 14:54:51 -07002973 return false;
2974 }
Amith Yamasani1df14732014-08-29 21:37:27 -07002975 }
Amith Yamasani12747872015-12-07 14:19:49 -08002976 if (!userData.info.isGuest()) {
Amith Yamasani1df14732014-08-29 21:37:27 -07002977 return false;
2978 }
Adam Lesinskieddeb492014-09-08 17:50:03 -07002979 // We set this to a guest user that is to be removed. This is a temporary state
2980 // where we are allowed to add new Guest users, even if this one is still not
2981 // removed. This user will still show up in getUserInfo() calls.
2982 // If we don't get around to removing this Guest user, it will be purged on next
2983 // startup.
Amith Yamasani12747872015-12-07 14:19:49 -08002984 userData.info.guestToRemove = true;
Amith Yamasani1df14732014-08-29 21:37:27 -07002985 // Mark it as disabled, so that it isn't returned any more when
2986 // profiles are queried.
Amith Yamasani12747872015-12-07 14:19:49 -08002987 userData.info.flags |= UserInfo.FLAG_DISABLED;
2988 writeUserLP(userData);
Amith Yamasani1df14732014-08-29 21:37:27 -07002989 }
2990 } finally {
2991 Binder.restoreCallingIdentity(ident);
2992 }
2993 return true;
2994 }
2995
2996 /**
Amith Yamasani0b285492011-04-14 17:35:23 -07002997 * Removes a user and all data directories created for that user. This method should be called
2998 * after the user's processes have been terminated.
Bookatzf56f2582019-09-04 16:06:41 -07002999 * @param userId the user's id
Amith Yamasani0b285492011-04-14 17:35:23 -07003000 */
Amith Yamasani12747872015-12-07 14:19:49 -08003001 @Override
Bookatzf56f2582019-09-04 16:06:41 -07003002 public boolean removeUser(@UserIdInt int userId) {
3003 Slog.i(LOG_TAG, "removeUser u" + userId);
Sudheer Shankaf5cea032016-06-08 17:13:24 -07003004 checkManageOrCreateUsersPermission("Only the system can remove users");
Esteban Talavera6c9116a2016-11-24 16:12:44 +00003005
3006 final boolean isManagedProfile;
3007 synchronized (mUsersLock) {
Bookatzf56f2582019-09-04 16:06:41 -07003008 UserInfo userInfo = getUserInfoLU(userId);
Esteban Talavera6c9116a2016-11-24 16:12:44 +00003009 isManagedProfile = userInfo != null && userInfo.isManagedProfile();
3010 }
3011 String restriction = isManagedProfile
3012 ? UserManager.DISALLOW_REMOVE_MANAGED_PROFILE : UserManager.DISALLOW_REMOVE_USER;
3013 if (getUserRestrictions(UserHandle.getCallingUserId()).getBoolean(restriction, false)) {
3014 Log.w(LOG_TAG, "Cannot remove user. " + restriction + " is enabled.");
Julia Reynolds4ac5f852014-06-23 17:38:51 -04003015 return false;
3016 }
Bookatzf56f2582019-09-04 16:06:41 -07003017 return removeUserUnchecked(userId);
Nicolas Prevotdf1b87d2016-10-25 13:57:08 +01003018 }
Julia Reynolds4ac5f852014-06-23 17:38:51 -04003019
Bookatzf56f2582019-09-04 16:06:41 -07003020 private boolean removeUserUnchecked(@UserIdInt int userId) {
Kenny Guyee58b4f2014-05-23 15:19:53 +01003021 long ident = Binder.clearCallingIdentity();
3022 try {
Amith Yamasani12747872015-12-07 14:19:49 -08003023 final UserData userData;
Fyodor Kupolov0df68cd2015-10-01 13:54:22 -07003024 int currentUser = ActivityManager.getCurrentUser();
Bookatzf56f2582019-09-04 16:06:41 -07003025 if (currentUser == userId) {
jovanaka6763a32018-12-03 17:23:20 -08003026 Log.w(LOG_TAG, "Current user cannot be removed.");
Fyodor Kupolov0df68cd2015-10-01 13:54:22 -07003027 return false;
3028 }
Kenny Guyee58b4f2014-05-23 15:19:53 +01003029 synchronized (mPackagesLock) {
Fyodor Kupolov82402752015-10-28 14:54:51 -07003030 synchronized (mUsersLock) {
Bookatzf56f2582019-09-04 16:06:41 -07003031 userData = mUsers.get(userId);
3032 if (userId == UserHandle.USER_SYSTEM) {
jovanaka6763a32018-12-03 17:23:20 -08003033 Log.e(LOG_TAG, "System user cannot be removed.");
3034 return false;
3035 }
3036
3037 if (userData == null) {
3038 Log.e(LOG_TAG, String.format(
Bookatzf56f2582019-09-04 16:06:41 -07003039 "Cannot remove user %d, invalid user id provided.", userId));
jovanaka6763a32018-12-03 17:23:20 -08003040 return false;
3041 }
3042
Bookatzf56f2582019-09-04 16:06:41 -07003043 if (mRemovingUserIds.get(userId)) {
jovanaka6763a32018-12-03 17:23:20 -08003044 Log.e(LOG_TAG, String.format(
Bookatzf56f2582019-09-04 16:06:41 -07003045 "User %d is already scheduled for removal.", userId));
Fyodor Kupolov82402752015-10-28 14:54:51 -07003046 return false;
3047 }
Jeff Sharkey6eb09392014-11-14 15:57:59 -08003048
Bookatzf56f2582019-09-04 16:06:41 -07003049 addRemovingUserIdLocked(userId);
Fyodor Kupolov82402752015-10-28 14:54:51 -07003050 }
Jeff Sharkey6eb09392014-11-14 15:57:59 -08003051
Kenny Guyee58b4f2014-05-23 15:19:53 +01003052 // Set this to a partially created user, so that the user will be purged
3053 // on next startup, in case the runtime stops now before stopping and
3054 // removing the user completely.
Amith Yamasani12747872015-12-07 14:19:49 -08003055 userData.info.partial = true;
Kenny Guyee58b4f2014-05-23 15:19:53 +01003056 // Mark it as disabled, so that it isn't returned any more when
3057 // profiles are queried.
Amith Yamasani12747872015-12-07 14:19:49 -08003058 userData.info.flags |= UserInfo.FLAG_DISABLED;
3059 writeUserLP(userData);
Kenny Guyee58b4f2014-05-23 15:19:53 +01003060 }
Fyodor Kupolov6c96f7f2017-06-28 18:22:59 -07003061 try {
Bookatzf56f2582019-09-04 16:06:41 -07003062 mAppOpsService.removeUser(userId);
Fyodor Kupolov6c96f7f2017-06-28 18:22:59 -07003063 } catch (RemoteException e) {
jovanaka6763a32018-12-03 17:23:20 -08003064 Log.w(LOG_TAG, "Unable to notify AppOpsService of removing user.", e);
Fyodor Kupolov6c96f7f2017-06-28 18:22:59 -07003065 }
Kenny Guyee58b4f2014-05-23 15:19:53 +01003066
Amith Yamasani12747872015-12-07 14:19:49 -08003067 if (userData.info.profileGroupId != UserInfo.NO_PROFILE_GROUP_ID
3068 && userData.info.isManagedProfile()) {
Kenny Guyee58b4f2014-05-23 15:19:53 +01003069 // Send broadcast to notify system that the user removed was a
3070 // managed user.
Amith Yamasani12747872015-12-07 14:19:49 -08003071 sendProfileRemovedBroadcast(userData.info.profileGroupId, userData.info.id);
Kenny Guyee58b4f2014-05-23 15:19:53 +01003072 }
3073
Bookatzf56f2582019-09-04 16:06:41 -07003074 if (DBG) Slog.i(LOG_TAG, "Stopping user " + userId);
Kenny Guyee58b4f2014-05-23 15:19:53 +01003075 int res;
3076 try {
Bookatzf56f2582019-09-04 16:06:41 -07003077 res = ActivityManager.getService().stopUser(userId, /* force= */ true,
Fyodor Kupolov9cbfc9e2015-10-07 15:52:33 -07003078 new IStopUserCallback.Stub() {
Kenny Guyee58b4f2014-05-23 15:19:53 +01003079 @Override
Bookatzf56f2582019-09-04 16:06:41 -07003080 public void userStopped(int userIdParam) {
3081 finishRemoveUser(userIdParam);
Kenny Guyee58b4f2014-05-23 15:19:53 +01003082 }
3083 @Override
Bookatzf56f2582019-09-04 16:06:41 -07003084 public void userStopAborted(int userIdParam) {
Kenny Guyee58b4f2014-05-23 15:19:53 +01003085 }
3086 });
3087 } catch (RemoteException e) {
jovanaka6763a32018-12-03 17:23:20 -08003088 Log.w(LOG_TAG, "Failed to stop user during removal.", e);
Dianne Hackborn80a4af22012-08-27 19:18:31 -07003089 return false;
3090 }
Kenny Guyee58b4f2014-05-23 15:19:53 +01003091 return res == ActivityManager.USER_OP_SUCCESS;
3092 } finally {
3093 Binder.restoreCallingIdentity(ident);
Dianne Hackborn80a4af22012-08-27 19:18:31 -07003094 }
Dianne Hackborn80a4af22012-08-27 19:18:31 -07003095 }
3096
Andreas Gampea36dc622018-02-05 17:19:22 -08003097 @GuardedBy("mUsersLock")
Fyodor Kupolov0f4533d2016-05-18 18:43:12 -07003098 @VisibleForTesting
Bookatzf56f2582019-09-04 16:06:41 -07003099 void addRemovingUserIdLocked(@UserIdInt int userId) {
Fyodor Kupolov0f4533d2016-05-18 18:43:12 -07003100 // We remember deleted user IDs to prevent them from being
3101 // reused during the current boot; they can still be reused
3102 // after a reboot or recycling of userIds.
3103 mRemovingUserIds.put(userId, true);
3104 mRecentlyRemovedIds.add(userId);
3105 // Keep LRU queue of recently removed IDs for recycling
3106 if (mRecentlyRemovedIds.size() > MAX_RECENTLY_REMOVED_IDS_SIZE) {
3107 mRecentlyRemovedIds.removeFirst();
3108 }
3109 }
3110
Bookatzf56f2582019-09-04 16:06:41 -07003111 void finishRemoveUser(final @UserIdInt int userId) {
3112 if (DBG) Slog.i(LOG_TAG, "finishRemoveUser " + userId);
Amith Yamasanidb6a14c2012-10-17 21:16:52 -07003113 // Let other services shutdown any activity and clean up their state before completely
3114 // wiping the user's system directory and removing from the user list
Dianne Hackborn5dc5a002012-09-15 19:33:48 -07003115 long ident = Binder.clearCallingIdentity();
3116 try {
3117 Intent addedIntent = new Intent(Intent.ACTION_USER_REMOVED);
Bookatzf56f2582019-09-04 16:06:41 -07003118 addedIntent.putExtra(Intent.EXTRA_USER_HANDLE, userId);
Amith Yamasanidb6a14c2012-10-17 21:16:52 -07003119 mContext.sendOrderedBroadcastAsUser(addedIntent, UserHandle.ALL,
3120 android.Manifest.permission.MANAGE_USERS,
3121
3122 new BroadcastReceiver() {
3123 @Override
3124 public void onReceive(Context context, Intent intent) {
3125 if (DBG) {
3126 Slog.i(LOG_TAG,
3127 "USER_REMOVED broadcast sent, cleaning up user data "
Bookatzf56f2582019-09-04 16:06:41 -07003128 + userId);
Amith Yamasanidb6a14c2012-10-17 21:16:52 -07003129 }
3130 new Thread() {
Amith Yamasani12747872015-12-07 14:19:49 -08003131 @Override
Amith Yamasanidb6a14c2012-10-17 21:16:52 -07003132 public void run() {
Wale Ogunwalea6191b42018-05-09 07:41:32 -07003133 // Clean up any ActivityTaskManager state
3134 LocalServices.getService(ActivityTaskManagerInternal.class)
Bookatzf56f2582019-09-04 16:06:41 -07003135 .onUserStopped(userId);
3136 removeUserState(userId);
Amith Yamasanidb6a14c2012-10-17 21:16:52 -07003137 }
3138 }.start();
3139 }
3140 },
3141
3142 null, Activity.RESULT_OK, null, null);
Dianne Hackborn5dc5a002012-09-15 19:33:48 -07003143 } finally {
3144 Binder.restoreCallingIdentity(ident);
3145 }
Amith Yamasani2a003292012-08-14 18:25:45 -07003146 }
3147
Bookatzf56f2582019-09-04 16:06:41 -07003148 private void removeUserState(final @UserIdInt int userId) {
Paul Crowley91293792016-03-25 15:23:07 -07003149 try {
Bookatzf56f2582019-09-04 16:06:41 -07003150 mContext.getSystemService(StorageManager.class).destroyUserKey(userId);
Paul Crowley91293792016-03-25 15:23:07 -07003151 } catch (IllegalStateException e) {
3152 // This may be simply because the user was partially created.
Bookatzf56f2582019-09-04 16:06:41 -07003153 Slog.i(LOG_TAG, "Destroying key for user " + userId + " failed, continuing anyway", e);
Paul Crowley91293792016-03-25 15:23:07 -07003154 }
Jeff Sharkeyfcf1e552016-04-14 20:44:58 -06003155
Amith Yamasanid04aaa32016-06-13 12:09:36 -07003156 // Cleanup gatekeeper secure user id
3157 try {
3158 final IGateKeeperService gk = GateKeeper.getService();
3159 if (gk != null) {
Bookatzf56f2582019-09-04 16:06:41 -07003160 gk.clearSecureUserId(userId);
Amith Yamasanid04aaa32016-06-13 12:09:36 -07003161 }
3162 } catch (Exception ex) {
3163 Slog.w(LOG_TAG, "unable to clear GK secure user id");
3164 }
3165
Dianne Hackbornd4ac8d72012-09-27 23:20:10 -07003166 // Cleanup package manager settings
Bookatzf56f2582019-09-04 16:06:41 -07003167 mPm.cleanUpUser(this, userId);
Amith Yamasanid04aaa32016-06-13 12:09:36 -07003168
3169 // Clean up all data before removing metadata
Bookatzf56f2582019-09-04 16:06:41 -07003170 mUserDataPreparer.destroyUserData(userId,
Amith Yamasanid04aaa32016-06-13 12:09:36 -07003171 StorageManager.FLAG_STORAGE_DE | StorageManager.FLAG_STORAGE_CE);
3172
Dianne Hackbornd4ac8d72012-09-27 23:20:10 -07003173 // Remove this user from the list
Fyodor Kupolov82402752015-10-28 14:54:51 -07003174 synchronized (mUsersLock) {
Bookatzf56f2582019-09-04 16:06:41 -07003175 mUsers.remove(userId);
3176 mIsUserManaged.delete(userId);
Amith Yamasaniea1b9d72016-05-27 15:57:38 +00003177 }
3178 synchronized (mUserStates) {
Bookatzf56f2582019-09-04 16:06:41 -07003179 mUserStates.delete(userId);
Makoto Onukie7927da2015-11-25 10:05:17 -08003180 }
3181 synchronized (mRestrictionsLock) {
Bookatzf56f2582019-09-04 16:06:41 -07003182 mBaseUserRestrictions.remove(userId);
3183 mAppliedUserRestrictions.remove(userId);
3184 mCachedEffectiveUserRestrictions.remove(userId);
3185 mDevicePolicyLocalUserRestrictions.remove(userId);
3186 if (mDevicePolicyGlobalUserRestrictions.get(userId) != null) {
3187 mDevicePolicyGlobalUserRestrictions.remove(userId);
Pavel Grafov6a40f092016-10-25 15:46:51 +01003188 applyUserRestrictionsForAllUsersLR();
3189 }
Fyodor Kupolov82402752015-10-28 14:54:51 -07003190 }
Dianne Hackbornd4ac8d72012-09-27 23:20:10 -07003191 // Update the user list
Fyodor Kupolove80085d2015-11-06 18:21:39 -08003192 synchronized (mPackagesLock) {
3193 writeUserListLP();
3194 }
Jeff Sharkeycd575992016-03-29 14:12:49 -06003195 // Remove user file
Bookatzf56f2582019-09-04 16:06:41 -07003196 AtomicFile userFile = new AtomicFile(new File(mUsersDir, userId + XML_SUFFIX));
Jeff Sharkeycd575992016-03-29 14:12:49 -06003197 userFile.delete();
Fyodor Kupolov82402752015-10-28 14:54:51 -07003198 updateUserIds();
Fyodor Kupolov0f4533d2016-05-18 18:43:12 -07003199 if (RELEASE_DELETED_USER_ID) {
3200 synchronized (mUsers) {
Bookatzf56f2582019-09-04 16:06:41 -07003201 mRemovingUserIds.delete(userId);
Fyodor Kupolov0f4533d2016-05-18 18:43:12 -07003202 }
3203 }
Amith Yamasani61f57372012-08-31 12:12:28 -07003204 }
3205
Kenny Guyf8d3a232014-05-15 16:09:52 +01003206 private void sendProfileRemovedBroadcast(int parentUserId, int removedUserId) {
Adam Connors7b66ed52014-04-14 11:58:10 +01003207 Intent managedProfileIntent = new Intent(Intent.ACTION_MANAGED_PROFILE_REMOVED);
Adam Connorsd4b584e2014-06-09 13:55:47 +01003208 managedProfileIntent.addFlags(Intent.FLAG_RECEIVER_REGISTERED_ONLY |
3209 Intent.FLAG_RECEIVER_FOREGROUND);
Kenny Guyf8d3a232014-05-15 16:09:52 +01003210 managedProfileIntent.putExtra(Intent.EXTRA_USER, new UserHandle(removedUserId));
Jeff Sharkeyaf6ec292015-12-17 11:19:00 -07003211 managedProfileIntent.putExtra(Intent.EXTRA_USER_HANDLE, removedUserId);
Kenny Guyf8d3a232014-05-15 16:09:52 +01003212 mContext.sendBroadcastAsUser(managedProfileIntent, new UserHandle(parentUserId), null);
Adam Connors7b66ed52014-04-14 11:58:10 +01003213 }
3214
Amith Yamasani2a003292012-08-14 18:25:45 -07003215 @Override
Amith Yamasani7e99bc02013-04-16 18:24:51 -07003216 public Bundle getApplicationRestrictions(String packageName) {
3217 return getApplicationRestrictionsForUser(packageName, UserHandle.getCallingUserId());
3218 }
3219
3220 @Override
Bookatzf56f2582019-09-04 16:06:41 -07003221 public Bundle getApplicationRestrictionsForUser(String packageName, @UserIdInt int userId) {
Amith Yamasanidf2e92a2013-03-01 17:04:38 -08003222 if (UserHandle.getCallingUserId() != userId
Amith Yamasani9429afb2013-04-10 18:40:51 -07003223 || !UserHandle.isSameApp(Binder.getCallingUid(), getUidForPackage(packageName))) {
Amith Yamasani0d1fd8d2016-10-12 14:21:51 -07003224 checkSystemOrRoot("get application restrictions for other user/app " + packageName);
Amith Yamasanidf2e92a2013-03-01 17:04:38 -08003225 }
Fyodor Kupolovd31cee92017-09-05 16:31:08 -07003226 synchronized (mAppRestrictionsLock) {
Amith Yamasanidf2e92a2013-03-01 17:04:38 -08003227 // Read the restrictions from XML
Fyodor Kupolovd31cee92017-09-05 16:31:08 -07003228 return readApplicationRestrictionsLAr(packageName, userId);
Amith Yamasanidf2e92a2013-03-01 17:04:38 -08003229 }
3230 }
3231
3232 @Override
Amith Yamasani7e99bc02013-04-16 18:24:51 -07003233 public void setApplicationRestrictions(String packageName, Bundle restrictions,
Bookatzf56f2582019-09-04 16:06:41 -07003234 @UserIdInt int userId) {
Esteban Talavera5b9f1672015-12-11 15:22:34 +00003235 checkSystemOrRoot("set application restrictions");
Fyodor Kupolov0d88d542016-04-19 11:37:22 -07003236 if (restrictions != null) {
3237 restrictions.setDefusable(true);
3238 }
Fyodor Kupolovd31cee92017-09-05 16:31:08 -07003239 synchronized (mAppRestrictionsLock) {
Kenny Guyd21b2182014-07-17 16:38:55 +01003240 if (restrictions == null || restrictions.isEmpty()) {
Fyodor Kupolovd31cee92017-09-05 16:31:08 -07003241 cleanAppRestrictionsForPackageLAr(packageName, userId);
Kenny Guyd21b2182014-07-17 16:38:55 +01003242 } else {
3243 // Write the restrictions to XML
Fyodor Kupolovd31cee92017-09-05 16:31:08 -07003244 writeApplicationRestrictionsLAr(packageName, restrictions, userId);
Kenny Guyd21b2182014-07-17 16:38:55 +01003245 }
Amith Yamasanidf2e92a2013-03-01 17:04:38 -08003246 }
Robin Lee66e5d962014-04-09 16:44:21 +01003247
Fyodor Kupolovd2846122016-02-11 18:06:34 -08003248 // Notify package of changes via an intent - only sent to explicitly registered receivers.
3249 Intent changeIntent = new Intent(Intent.ACTION_APPLICATION_RESTRICTIONS_CHANGED);
3250 changeIntent.setPackage(packageName);
3251 changeIntent.addFlags(Intent.FLAG_RECEIVER_REGISTERED_ONLY);
3252 mContext.sendBroadcastAsUser(changeIntent, UserHandle.of(userId));
Amith Yamasanidf2e92a2013-03-01 17:04:38 -08003253 }
3254
3255 private int getUidForPackage(String packageName) {
Amith Yamasani9429afb2013-04-10 18:40:51 -07003256 long ident = Binder.clearCallingIdentity();
Amith Yamasanidf2e92a2013-03-01 17:04:38 -08003257 try {
3258 return mContext.getPackageManager().getApplicationInfo(packageName,
Amith Yamasani0d1fd8d2016-10-12 14:21:51 -07003259 PackageManager.MATCH_ANY_USER).uid;
Amith Yamasanidf2e92a2013-03-01 17:04:38 -08003260 } catch (NameNotFoundException nnfe) {
3261 return -1;
Amith Yamasani9429afb2013-04-10 18:40:51 -07003262 } finally {
3263 Binder.restoreCallingIdentity(ident);
Amith Yamasanidf2e92a2013-03-01 17:04:38 -08003264 }
3265 }
3266
Fyodor Kupolovd31cee92017-09-05 16:31:08 -07003267 @GuardedBy("mAppRestrictionsLock")
Bookatzf56f2582019-09-04 16:06:41 -07003268 private static Bundle readApplicationRestrictionsLAr(String packageName,
3269 @UserIdInt int userId) {
Fyodor Kupolov262f9952015-03-23 18:55:11 -07003270 AtomicFile restrictionsFile =
3271 new AtomicFile(new File(Environment.getUserSystemDirectory(userId),
3272 packageToRestrictionsFileName(packageName)));
Fyodor Kupolovd31cee92017-09-05 16:31:08 -07003273 return readApplicationRestrictionsLAr(restrictionsFile);
Fyodor Kupolov262f9952015-03-23 18:55:11 -07003274 }
3275
3276 @VisibleForTesting
Fyodor Kupolovd31cee92017-09-05 16:31:08 -07003277 @GuardedBy("mAppRestrictionsLock")
3278 static Bundle readApplicationRestrictionsLAr(AtomicFile restrictionsFile) {
Amith Yamasani7e99bc02013-04-16 18:24:51 -07003279 final Bundle restrictions = new Bundle();
Fyodor Kupolov262f9952015-03-23 18:55:11 -07003280 final ArrayList<String> values = new ArrayList<>();
Fyodor Kupolov6f34d362015-04-02 12:42:13 -07003281 if (!restrictionsFile.getBaseFile().exists()) {
Fyodor Kupolovf6ee2242015-04-06 10:15:07 -07003282 return restrictions;
Fyodor Kupolov6f34d362015-04-02 12:42:13 -07003283 }
Amith Yamasanidf2e92a2013-03-01 17:04:38 -08003284
3285 FileInputStream fis = null;
3286 try {
Amith Yamasanidf2e92a2013-03-01 17:04:38 -08003287 fis = restrictionsFile.openRead();
3288 XmlPullParser parser = Xml.newPullParser();
Wojciech Staszkiewicz9e9e2e72015-05-08 14:58:46 +01003289 parser.setInput(fis, StandardCharsets.UTF_8.name());
Fyodor Kupolov262f9952015-03-23 18:55:11 -07003290 XmlUtils.nextElement(parser);
3291 if (parser.getEventType() != XmlPullParser.START_TAG) {
Amith Yamasanidf2e92a2013-03-01 17:04:38 -08003292 Slog.e(LOG_TAG, "Unable to read restrictions file "
3293 + restrictionsFile.getBaseFile());
Amith Yamasani7e99bc02013-04-16 18:24:51 -07003294 return restrictions;
Amith Yamasanidf2e92a2013-03-01 17:04:38 -08003295 }
Fyodor Kupolov262f9952015-03-23 18:55:11 -07003296 while (parser.next() != XmlPullParser.END_DOCUMENT) {
3297 readEntry(restrictions, values, parser);
Amith Yamasanidf2e92a2013-03-01 17:04:38 -08003298 }
Fyodor Kupolov262f9952015-03-23 18:55:11 -07003299 } catch (IOException|XmlPullParserException e) {
3300 Log.w(LOG_TAG, "Error parsing " + restrictionsFile.getBaseFile(), e);
Amith Yamasanidf2e92a2013-03-01 17:04:38 -08003301 } finally {
Fyodor Kupolov262f9952015-03-23 18:55:11 -07003302 IoUtils.closeQuietly(fis);
Amith Yamasanidf2e92a2013-03-01 17:04:38 -08003303 }
Amith Yamasani7e99bc02013-04-16 18:24:51 -07003304 return restrictions;
Amith Yamasanidf2e92a2013-03-01 17:04:38 -08003305 }
3306
Fyodor Kupolov262f9952015-03-23 18:55:11 -07003307 private static void readEntry(Bundle restrictions, ArrayList<String> values,
3308 XmlPullParser parser) throws XmlPullParserException, IOException {
3309 int type = parser.getEventType();
3310 if (type == XmlPullParser.START_TAG && parser.getName().equals(TAG_ENTRY)) {
3311 String key = parser.getAttributeValue(null, ATTR_KEY);
3312 String valType = parser.getAttributeValue(null, ATTR_VALUE_TYPE);
3313 String multiple = parser.getAttributeValue(null, ATTR_MULTIPLE);
3314 if (multiple != null) {
3315 values.clear();
3316 int count = Integer.parseInt(multiple);
3317 while (count > 0 && (type = parser.next()) != XmlPullParser.END_DOCUMENT) {
3318 if (type == XmlPullParser.START_TAG
3319 && parser.getName().equals(TAG_VALUE)) {
3320 values.add(parser.nextText().trim());
3321 count--;
3322 }
3323 }
3324 String [] valueStrings = new String[values.size()];
3325 values.toArray(valueStrings);
3326 restrictions.putStringArray(key, valueStrings);
3327 } else if (ATTR_TYPE_BUNDLE.equals(valType)) {
3328 restrictions.putBundle(key, readBundleEntry(parser, values));
3329 } else if (ATTR_TYPE_BUNDLE_ARRAY.equals(valType)) {
3330 final int outerDepth = parser.getDepth();
3331 ArrayList<Bundle> bundleList = new ArrayList<>();
3332 while (XmlUtils.nextElementWithin(parser, outerDepth)) {
3333 Bundle childBundle = readBundleEntry(parser, values);
3334 bundleList.add(childBundle);
3335 }
3336 restrictions.putParcelableArray(key,
3337 bundleList.toArray(new Bundle[bundleList.size()]));
3338 } else {
3339 String value = parser.nextText().trim();
3340 if (ATTR_TYPE_BOOLEAN.equals(valType)) {
3341 restrictions.putBoolean(key, Boolean.parseBoolean(value));
3342 } else if (ATTR_TYPE_INTEGER.equals(valType)) {
3343 restrictions.putInt(key, Integer.parseInt(value));
3344 } else {
3345 restrictions.putString(key, value);
3346 }
3347 }
3348 }
3349 }
3350
3351 private static Bundle readBundleEntry(XmlPullParser parser, ArrayList<String> values)
3352 throws IOException, XmlPullParserException {
3353 Bundle childBundle = new Bundle();
3354 final int outerDepth = parser.getDepth();
3355 while (XmlUtils.nextElementWithin(parser, outerDepth)) {
3356 readEntry(childBundle, values, parser);
3357 }
3358 return childBundle;
3359 }
3360
Fyodor Kupolovd31cee92017-09-05 16:31:08 -07003361 @GuardedBy("mAppRestrictionsLock")
3362 private static void writeApplicationRestrictionsLAr(String packageName,
Bookatzf56f2582019-09-04 16:06:41 -07003363 Bundle restrictions, @UserIdInt int userId) {
Amith Yamasanidf2e92a2013-03-01 17:04:38 -08003364 AtomicFile restrictionsFile = new AtomicFile(
3365 new File(Environment.getUserSystemDirectory(userId),
Amith Yamasanifc95e702013-09-26 13:20:17 -07003366 packageToRestrictionsFileName(packageName)));
Fyodor Kupolovd31cee92017-09-05 16:31:08 -07003367 writeApplicationRestrictionsLAr(restrictions, restrictionsFile);
Fyodor Kupolov262f9952015-03-23 18:55:11 -07003368 }
3369
3370 @VisibleForTesting
Fyodor Kupolovd31cee92017-09-05 16:31:08 -07003371 @GuardedBy("mAppRestrictionsLock")
3372 static void writeApplicationRestrictionsLAr(Bundle restrictions, AtomicFile restrictionsFile) {
Fyodor Kupolov262f9952015-03-23 18:55:11 -07003373 FileOutputStream fos = null;
Amith Yamasanidf2e92a2013-03-01 17:04:38 -08003374 try {
3375 fos = restrictionsFile.startWrite();
3376 final BufferedOutputStream bos = new BufferedOutputStream(fos);
3377
Amith Yamasanidf2e92a2013-03-01 17:04:38 -08003378 final XmlSerializer serializer = new FastXmlSerializer();
Wojciech Staszkiewicz9e9e2e72015-05-08 14:58:46 +01003379 serializer.setOutput(bos, StandardCharsets.UTF_8.name());
Amith Yamasanidf2e92a2013-03-01 17:04:38 -08003380 serializer.startDocument(null, true);
3381 serializer.setFeature("http://xmlpull.org/v1/doc/features.html#indent-output", true);
3382
3383 serializer.startTag(null, TAG_RESTRICTIONS);
Fyodor Kupolov262f9952015-03-23 18:55:11 -07003384 writeBundle(restrictions, serializer);
Amith Yamasanidf2e92a2013-03-01 17:04:38 -08003385 serializer.endTag(null, TAG_RESTRICTIONS);
3386
3387 serializer.endDocument();
3388 restrictionsFile.finishWrite(fos);
3389 } catch (Exception e) {
3390 restrictionsFile.failWrite(fos);
Fyodor Kupolov262f9952015-03-23 18:55:11 -07003391 Slog.e(LOG_TAG, "Error writing application restrictions list", e);
3392 }
3393 }
3394
3395 private static void writeBundle(Bundle restrictions, XmlSerializer serializer)
3396 throws IOException {
3397 for (String key : restrictions.keySet()) {
3398 Object value = restrictions.get(key);
3399 serializer.startTag(null, TAG_ENTRY);
3400 serializer.attribute(null, ATTR_KEY, key);
3401
3402 if (value instanceof Boolean) {
3403 serializer.attribute(null, ATTR_VALUE_TYPE, ATTR_TYPE_BOOLEAN);
3404 serializer.text(value.toString());
3405 } else if (value instanceof Integer) {
3406 serializer.attribute(null, ATTR_VALUE_TYPE, ATTR_TYPE_INTEGER);
3407 serializer.text(value.toString());
3408 } else if (value == null || value instanceof String) {
3409 serializer.attribute(null, ATTR_VALUE_TYPE, ATTR_TYPE_STRING);
3410 serializer.text(value != null ? (String) value : "");
3411 } else if (value instanceof Bundle) {
3412 serializer.attribute(null, ATTR_VALUE_TYPE, ATTR_TYPE_BUNDLE);
3413 writeBundle((Bundle) value, serializer);
3414 } else if (value instanceof Parcelable[]) {
3415 serializer.attribute(null, ATTR_VALUE_TYPE, ATTR_TYPE_BUNDLE_ARRAY);
3416 Parcelable[] array = (Parcelable[]) value;
3417 for (Parcelable parcelable : array) {
3418 if (!(parcelable instanceof Bundle)) {
3419 throw new IllegalArgumentException("bundle-array can only hold Bundles");
3420 }
3421 serializer.startTag(null, TAG_ENTRY);
3422 serializer.attribute(null, ATTR_VALUE_TYPE, ATTR_TYPE_BUNDLE);
3423 writeBundle((Bundle) parcelable, serializer);
3424 serializer.endTag(null, TAG_ENTRY);
3425 }
3426 } else {
3427 serializer.attribute(null, ATTR_VALUE_TYPE, ATTR_TYPE_STRING_ARRAY);
3428 String[] values = (String[]) value;
3429 serializer.attribute(null, ATTR_MULTIPLE, Integer.toString(values.length));
3430 for (String choice : values) {
3431 serializer.startTag(null, TAG_VALUE);
3432 serializer.text(choice != null ? choice : "");
3433 serializer.endTag(null, TAG_VALUE);
3434 }
3435 }
3436 serializer.endTag(null, TAG_ENTRY);
Amith Yamasanidf2e92a2013-03-01 17:04:38 -08003437 }
3438 }
3439
3440 @Override
Bookatzf56f2582019-09-04 16:06:41 -07003441 public int getUserSerialNumber(@UserIdInt int userId) {
Fyodor Kupolov82402752015-10-28 14:54:51 -07003442 synchronized (mUsersLock) {
Bookatzf56f2582019-09-04 16:06:41 -07003443 final UserInfo userInfo = getUserInfoLU(userId);
Pavel Grafov9c295d42019-03-26 19:42:08 +00003444 return userInfo != null ? userInfo.serialNumber : -1;
Amith Yamasani2a003292012-08-14 18:25:45 -07003445 }
3446 }
3447
3448 @Override
Bookatzf56f2582019-09-04 16:06:41 -07003449 public boolean isUserNameSet(@UserIdInt int userId) {
Fyodor Kupolov605b12a2017-05-10 15:58:09 -07003450 synchronized (mUsersLock) {
Bookatzf56f2582019-09-04 16:06:41 -07003451 final UserInfo userInfo = getUserInfoLU(userId);
Fyodor Kupolov605b12a2017-05-10 15:58:09 -07003452 return userInfo != null && userInfo.name != null;
3453 }
3454 }
3455
3456 @Override
Amith Yamasani2a003292012-08-14 18:25:45 -07003457 public int getUserHandle(int userSerialNumber) {
Fyodor Kupolov82402752015-10-28 14:54:51 -07003458 synchronized (mUsersLock) {
Amith Yamasani2a003292012-08-14 18:25:45 -07003459 for (int userId : mUserIds) {
Fyodor Kupolov82402752015-10-28 14:54:51 -07003460 UserInfo info = getUserInfoLU(userId);
Kenny Guy945f8832015-02-10 15:17:26 +00003461 if (info != null && info.serialNumber == userSerialNumber) return userId;
Amith Yamasani2a003292012-08-14 18:25:45 -07003462 }
3463 // Not found
3464 return -1;
Amith Yamasani13593602012-03-22 16:16:17 -07003465 }
3466 }
3467
Fyodor Kupolovff7233e2015-04-08 11:28:52 -07003468 @Override
Bookatzf56f2582019-09-04 16:06:41 -07003469 public long getUserCreationTime(@UserIdInt int userId) {
Fyodor Kupolovff7233e2015-04-08 11:28:52 -07003470 int callingUserId = UserHandle.getCallingUserId();
3471 UserInfo userInfo = null;
Fyodor Kupolov82402752015-10-28 14:54:51 -07003472 synchronized (mUsersLock) {
Bookatzf56f2582019-09-04 16:06:41 -07003473 if (callingUserId == userId) {
3474 userInfo = getUserInfoLU(userId);
Fyodor Kupolovff7233e2015-04-08 11:28:52 -07003475 } else {
Bookatzf56f2582019-09-04 16:06:41 -07003476 UserInfo parent = getProfileParentLU(userId);
Fyodor Kupolovff7233e2015-04-08 11:28:52 -07003477 if (parent != null && parent.id == callingUserId) {
Bookatzf56f2582019-09-04 16:06:41 -07003478 userInfo = getUserInfoLU(userId);
Fyodor Kupolovff7233e2015-04-08 11:28:52 -07003479 }
3480 }
3481 }
3482 if (userInfo == null) {
Bookatzf56f2582019-09-04 16:06:41 -07003483 throw new SecurityException("userId can only be the calling user or a managed "
Fyodor Kupolovff7233e2015-04-08 11:28:52 -07003484 + "profile associated with this user");
3485 }
3486 return userInfo.creationTime;
3487 }
3488
Amith Yamasani0b285492011-04-14 17:35:23 -07003489 /**
3490 * Caches the list of user ids in an array, adjusting the array size when necessary.
3491 */
Fyodor Kupolov82402752015-10-28 14:54:51 -07003492 private void updateUserIds() {
Dianne Hackbornd4ac8d72012-09-27 23:20:10 -07003493 int num = 0;
Fyodor Kupolov82402752015-10-28 14:54:51 -07003494 synchronized (mUsersLock) {
3495 final int userSize = mUsers.size();
3496 for (int i = 0; i < userSize; i++) {
Amith Yamasani12747872015-12-07 14:19:49 -08003497 if (!mUsers.valueAt(i).info.partial) {
Fyodor Kupolov82402752015-10-28 14:54:51 -07003498 num++;
3499 }
Dianne Hackbornd4ac8d72012-09-27 23:20:10 -07003500 }
Fyodor Kupolov82402752015-10-28 14:54:51 -07003501 final int[] newUsers = new int[num];
3502 int n = 0;
3503 for (int i = 0; i < userSize; i++) {
Amith Yamasani12747872015-12-07 14:19:49 -08003504 if (!mUsers.valueAt(i).info.partial) {
Fyodor Kupolov82402752015-10-28 14:54:51 -07003505 newUsers[n++] = mUsers.keyAt(i);
3506 }
Dianne Hackbornd4ac8d72012-09-27 23:20:10 -07003507 }
Fyodor Kupolov82402752015-10-28 14:54:51 -07003508 mUserIds = newUsers;
Amith Yamasani0b285492011-04-14 17:35:23 -07003509 }
3510 }
3511
3512 /**
Jeff Sharkey0e62384c2016-01-13 18:52:55 -07003513 * Called right before a user is started. This gives us a chance to prepare
3514 * app storage and apply any user restrictions.
Makoto Onuki1a2cd742015-11-16 13:51:27 -08003515 */
Bookatzf56f2582019-09-04 16:06:41 -07003516 public void onBeforeStartUser(@UserIdInt int userId) {
Fyodor Kupolovd80c3622016-07-19 17:22:09 -07003517 UserInfo userInfo = getUserInfo(userId);
3518 if (userInfo == null) {
3519 return;
3520 }
Felipe Leme3aad1be2019-05-31 11:43:12 -07003521 TimingsTraceAndSlog t = new TimingsTraceAndSlog();
3522 t.traceBegin("onBeforeStartUser-" + userId);
Fyodor Kupolovd80c3622016-07-19 17:22:09 -07003523 final int userSerial = userInfo.serialNumber;
3524 // Migrate only if build fingerprints mismatch
3525 boolean migrateAppsData = !Build.FINGERPRINT.equals(userInfo.lastLoggedInFingerprint);
Felipe Leme3aad1be2019-05-31 11:43:12 -07003526 t.traceBegin("prepareUserData");
Fyodor Kupolov5c0ecfd2017-01-27 11:11:57 -08003527 mUserDataPreparer.prepareUserData(userId, userSerial, StorageManager.FLAG_STORAGE_DE);
Felipe Leme3aad1be2019-05-31 11:43:12 -07003528 t.traceEnd();
3529 t.traceBegin("reconcileAppsData");
Fyodor Kupolovd80c3622016-07-19 17:22:09 -07003530 mPm.reconcileAppsData(userId, StorageManager.FLAG_STORAGE_DE, migrateAppsData);
Felipe Leme3aad1be2019-05-31 11:43:12 -07003531 t.traceEnd();
Jeff Sharkey0e62384c2016-01-13 18:52:55 -07003532
3533 if (userId != UserHandle.USER_SYSTEM) {
Felipe Leme3aad1be2019-05-31 11:43:12 -07003534 t.traceBegin("applyUserRestrictions");
Jeff Sharkey0e62384c2016-01-13 18:52:55 -07003535 synchronized (mRestrictionsLock) {
3536 applyUserRestrictionsLR(userId);
3537 }
Felipe Leme3aad1be2019-05-31 11:43:12 -07003538 t.traceEnd();
Makoto Onuki1a2cd742015-11-16 13:51:27 -08003539 }
Felipe Leme3aad1be2019-05-31 11:43:12 -07003540 t.traceEnd(); // onBeforeStartUser
Makoto Onuki1a2cd742015-11-16 13:51:27 -08003541 }
3542
3543 /**
Jeff Sharkey0e62384c2016-01-13 18:52:55 -07003544 * Called right before a user is unlocked. This gives us a chance to prepare
3545 * app storage.
3546 */
Jeff Sharkeybd91e2f2016-03-22 15:32:31 -06003547 public void onBeforeUnlockUser(@UserIdInt int userId) {
Fyodor Kupolovd80c3622016-07-19 17:22:09 -07003548 UserInfo userInfo = getUserInfo(userId);
3549 if (userInfo == null) {
3550 return;
3551 }
3552 final int userSerial = userInfo.serialNumber;
3553 // Migrate only if build fingerprints mismatch
3554 boolean migrateAppsData = !Build.FINGERPRINT.equals(userInfo.lastLoggedInFingerprint);
Fyodor Kupolov5c0ecfd2017-01-27 11:11:57 -08003555 mUserDataPreparer.prepareUserData(userId, userSerial, StorageManager.FLAG_STORAGE_CE);
Fyodor Kupolovd80c3622016-07-19 17:22:09 -07003556 mPm.reconcileAppsData(userId, StorageManager.FLAG_STORAGE_CE, migrateAppsData);
Jeff Sharkey0e62384c2016-01-13 18:52:55 -07003557 }
3558
3559 /**
Fyodor Kupolov50979d12017-01-27 17:36:32 -08003560 * Examine all users present on given mounted volume, and destroy data
3561 * belonging to users that are no longer valid, or whose user ID has been
3562 * recycled.
3563 */
3564 void reconcileUsers(String volumeUuid) {
3565 mUserDataPreparer.reconcileUsers(volumeUuid, getUsers(true /* excludeDying */));
3566 }
3567
3568 /**
Amith Yamasani1a7472e2013-07-02 11:17:30 -07003569 * Make a note of the last started time of a user and do some cleanup.
Amith Yamasanieb437d42016-04-29 09:31:25 -07003570 * This is called with ActivityManagerService lock held.
Amith Yamasani920ace02012-09-20 22:15:37 -07003571 * @param userId the user that was just foregrounded
3572 */
Jeff Sharkeybd91e2f2016-03-22 15:32:31 -06003573 public void onUserLoggedIn(@UserIdInt int userId) {
Amith Yamasani12747872015-12-07 14:19:49 -08003574 UserData userData = getUserDataNoChecks(userId);
3575 if (userData == null || userData.info.partial) {
Fyodor Kupolove80085d2015-11-06 18:21:39 -08003576 Slog.w(LOG_TAG, "userForeground: unknown user #" + userId);
3577 return;
3578 }
Jeff Sharkeybd91e2f2016-03-22 15:32:31 -06003579
3580 final long now = System.currentTimeMillis();
Fyodor Kupolove80085d2015-11-06 18:21:39 -08003581 if (now > EPOCH_PLUS_30_YEARS) {
Amith Yamasani12747872015-12-07 14:19:49 -08003582 userData.info.lastLoggedInTime = now;
Amith Yamasani920ace02012-09-20 22:15:37 -07003583 }
Jeff Sharkeybd91e2f2016-03-22 15:32:31 -06003584 userData.info.lastLoggedInFingerprint = Build.FINGERPRINT;
3585 scheduleWriteUser(userData);
Amith Yamasani920ace02012-09-20 22:15:37 -07003586 }
3587
3588 /**
Amith Yamasani0b285492011-04-14 17:35:23 -07003589 * Returns the next available user id, filling in any holes in the ids.
Amith Yamasani0b285492011-04-14 17:35:23 -07003590 */
Fyodor Kupolov0f4533d2016-05-18 18:43:12 -07003591 @VisibleForTesting
3592 int getNextAvailableId() {
3593 int nextId;
Fyodor Kupolov82402752015-10-28 14:54:51 -07003594 synchronized (mUsersLock) {
Fyodor Kupolov0f4533d2016-05-18 18:43:12 -07003595 nextId = scanNextAvailableIdLocked();
3596 if (nextId >= 0) {
3597 return nextId;
3598 }
3599 // All ids up to MAX_USER_ID were used. Remove all mRemovingUserIds,
3600 // except most recently removed
3601 if (mRemovingUserIds.size() > 0) {
3602 Slog.i(LOG_TAG, "All available IDs are used. Recycling LRU ids.");
3603 mRemovingUserIds.clear();
3604 for (Integer recentlyRemovedId : mRecentlyRemovedIds) {
3605 mRemovingUserIds.put(recentlyRemovedId, true);
Amith Yamasani195263742012-08-21 15:40:12 -07003606 }
Fyodor Kupolov0f4533d2016-05-18 18:43:12 -07003607 nextId = scanNextAvailableIdLocked();
Amith Yamasani4b2e9342011-03-31 12:38:53 -07003608 }
Amith Yamasani4b2e9342011-03-31 12:38:53 -07003609 }
Fyodor Kupolov0f4533d2016-05-18 18:43:12 -07003610 if (nextId < 0) {
3611 throw new IllegalStateException("No user id available!");
3612 }
3613 return nextId;
3614 }
3615
Andreas Gampea36dc622018-02-05 17:19:22 -08003616 @GuardedBy("mUsersLock")
Fyodor Kupolov0f4533d2016-05-18 18:43:12 -07003617 private int scanNextAvailableIdLocked() {
3618 for (int i = MIN_USER_ID; i < MAX_USER_ID; i++) {
3619 if (mUsers.indexOfKey(i) < 0 && !mRemovingUserIds.get(i)) {
3620 return i;
3621 }
3622 }
3623 return -1;
Amith Yamasani4b2e9342011-03-31 12:38:53 -07003624 }
Amith Yamasani920ace02012-09-20 22:15:37 -07003625
Fyodor Kupolovd31cee92017-09-05 16:31:08 -07003626 private static String packageToRestrictionsFileName(String packageName) {
Amith Yamasanifc95e702013-09-26 13:20:17 -07003627 return RESTRICTIONS_FILE_PREFIX + packageName + XML_SUFFIX;
3628 }
3629
Amith Yamasani920ace02012-09-20 22:15:37 -07003630 @Override
Bookatzf56f2582019-09-04 16:06:41 -07003631 public void setSeedAccountData(@UserIdInt int userId, String accountName, String accountType,
Amith Yamasani12747872015-12-07 14:19:49 -08003632 PersistableBundle accountOptions, boolean persist) {
3633 checkManageUsersPermission("Require MANAGE_USERS permission to set user seed data");
3634 synchronized (mPackagesLock) {
3635 final UserData userData;
3636 synchronized (mUsersLock) {
3637 userData = getUserDataLU(userId);
3638 if (userData == null) {
3639 Slog.e(LOG_TAG, "No such user for settings seed data u=" + userId);
3640 return;
3641 }
3642 userData.seedAccountName = accountName;
3643 userData.seedAccountType = accountType;
3644 userData.seedAccountOptions = accountOptions;
3645 userData.persistSeedData = persist;
3646 }
3647 if (persist) {
3648 writeUserLP(userData);
3649 }
3650 }
3651 }
3652
3653 @Override
3654 public String getSeedAccountName() throws RemoteException {
3655 checkManageUsersPermission("Cannot get seed account information");
3656 synchronized (mUsersLock) {
3657 UserData userData = getUserDataLU(UserHandle.getCallingUserId());
3658 return userData.seedAccountName;
3659 }
3660 }
3661
3662 @Override
3663 public String getSeedAccountType() throws RemoteException {
3664 checkManageUsersPermission("Cannot get seed account information");
3665 synchronized (mUsersLock) {
3666 UserData userData = getUserDataLU(UserHandle.getCallingUserId());
3667 return userData.seedAccountType;
3668 }
3669 }
3670
3671 @Override
3672 public PersistableBundle getSeedAccountOptions() throws RemoteException {
3673 checkManageUsersPermission("Cannot get seed account information");
3674 synchronized (mUsersLock) {
3675 UserData userData = getUserDataLU(UserHandle.getCallingUserId());
3676 return userData.seedAccountOptions;
3677 }
3678 }
3679
3680 @Override
3681 public void clearSeedAccountData() throws RemoteException {
3682 checkManageUsersPermission("Cannot clear seed account information");
3683 synchronized (mPackagesLock) {
3684 UserData userData;
3685 synchronized (mUsersLock) {
3686 userData = getUserDataLU(UserHandle.getCallingUserId());
3687 if (userData == null) return;
3688 userData.clearSeedAccountData();
3689 }
3690 writeUserLP(userData);
3691 }
3692 }
3693
3694 @Override
3695 public boolean someUserHasSeedAccount(String accountName, String accountType)
3696 throws RemoteException {
3697 checkManageUsersPermission("Cannot check seed account information");
3698 synchronized (mUsersLock) {
3699 final int userSize = mUsers.size();
3700 for (int i = 0; i < userSize; i++) {
3701 final UserData data = mUsers.valueAt(i);
3702 if (data.info.isInitialized()) continue;
3703 if (data.seedAccountName == null || !data.seedAccountName.equals(accountName)) {
3704 continue;
3705 }
3706 if (data.seedAccountType == null || !data.seedAccountType.equals(accountType)) {
3707 continue;
3708 }
3709 return true;
3710 }
3711 }
3712 return false;
3713 }
3714
3715 @Override
Todd Kennedy60459ab2015-10-30 11:32:16 -07003716 public void onShellCommand(FileDescriptor in, FileDescriptor out,
Dianne Hackborn354736e2016-08-22 17:00:05 -07003717 FileDescriptor err, String[] args, ShellCallback callback,
3718 ResultReceiver resultReceiver) {
3719 (new Shell()).exec(this, in, out, err, args, callback, resultReceiver);
Todd Kennedy60459ab2015-10-30 11:32:16 -07003720 }
3721
3722 int onShellCommand(Shell shell, String cmd) {
3723 if (cmd == null) {
3724 return shell.handleDefaultCommands(cmd);
3725 }
3726
3727 final PrintWriter pw = shell.getOutPrintWriter();
3728 try {
3729 switch(cmd) {
3730 case "list":
3731 return runList(pw);
Hui Yu8ba65972018-04-16 18:45:48 -07003732 default:
3733 return shell.handleDefaultCommands(cmd);
Todd Kennedy60459ab2015-10-30 11:32:16 -07003734 }
3735 } catch (RemoteException e) {
3736 pw.println("Remote exception: " + e);
3737 }
3738 return -1;
3739 }
3740
3741 private int runList(PrintWriter pw) throws RemoteException {
Sudheer Shankadc589ac2016-11-10 15:30:17 -08003742 final IActivityManager am = ActivityManager.getService();
Todd Kennedy60459ab2015-10-30 11:32:16 -07003743 final List<UserInfo> users = getUsers(false);
3744 if (users == null) {
3745 pw.println("Error: couldn't get users");
3746 return 1;
3747 } else {
3748 pw.println("Users:");
3749 for (int i = 0; i < users.size(); i++) {
Jeff Sharkeye17ac152015-11-06 22:40:29 -08003750 String running = am.isUserRunning(users.get(i).id, 0) ? " running" : "";
Todd Kennedy60459ab2015-10-30 11:32:16 -07003751 pw.println("\t" + users.get(i).toString() + running);
3752 }
3753 return 0;
3754 }
3755 }
3756
3757 @Override
Amith Yamasani920ace02012-09-20 22:15:37 -07003758 protected void dump(FileDescriptor fd, PrintWriter pw, String[] args) {
Jeff Sharkeyfe9a53b2017-03-31 14:08:23 -06003759 if (!DumpUtils.checkDumpPermission(mContext, LOG_TAG, pw)) return;
Amith Yamasani920ace02012-09-20 22:15:37 -07003760
3761 long now = System.currentTimeMillis();
Makoto Onuki73dded22017-12-20 13:14:48 +09003762 final long nowRealtime = SystemClock.elapsedRealtime();
Felipe Lemed7b88382019-06-12 17:40:53 -07003763
3764 final int currentUser = LocalServices.getService(ActivityManagerInternal.class)
3765 .getCurrentUserId();
3766 pw.print("Current user: "); pw.println(currentUser);
3767
Amith Yamasani920ace02012-09-20 22:15:37 -07003768 StringBuilder sb = new StringBuilder();
3769 synchronized (mPackagesLock) {
Fyodor Kupolov82402752015-10-28 14:54:51 -07003770 synchronized (mUsersLock) {
3771 pw.println("Users:");
3772 for (int i = 0; i < mUsers.size(); i++) {
Amith Yamasani12747872015-12-07 14:19:49 -08003773 UserData userData = mUsers.valueAt(i);
3774 if (userData == null) {
Fyodor Kupolov82402752015-10-28 14:54:51 -07003775 continue;
3776 }
Amith Yamasani12747872015-12-07 14:19:49 -08003777 UserInfo userInfo = userData.info;
3778 final int userId = userInfo.id;
3779 pw.print(" "); pw.print(userInfo);
3780 pw.print(" serialNo="); pw.print(userInfo.serialNumber);
Felipe Lemed7b88382019-06-12 17:40:53 -07003781 pw.print(" isPrimary="); pw.print(userInfo.isPrimary());
Makoto Onukie7927da2015-11-25 10:05:17 -08003782 if (mRemovingUserIds.get(userId)) {
Fyodor Kupolov82402752015-10-28 14:54:51 -07003783 pw.print(" <removing> ");
3784 }
Amith Yamasani12747872015-12-07 14:19:49 -08003785 if (userInfo.partial) {
Fyodor Kupolov82402752015-10-28 14:54:51 -07003786 pw.print(" <partial>");
3787 }
3788 pw.println();
Felipe Lemee5434c32019-08-13 09:28:33 -07003789 pw.print(" Flags: "); pw.print(userInfo.flags); pw.print(" (");
3790 pw.print(UserInfo.flagsToString(userInfo.flags)); pw.println(")");
Makoto Onuki88aef752017-03-29 16:52:03 -07003791 pw.print(" State: ");
3792 final int state;
3793 synchronized (mUserStates) {
3794 state = mUserStates.get(userId, -1);
3795 }
3796 pw.println(UserState.stateToString(state));
Fyodor Kupolov82402752015-10-28 14:54:51 -07003797 pw.print(" Created: ");
Makoto Onuki73dded22017-12-20 13:14:48 +09003798 dumpTimeAgo(pw, sb, now, userInfo.creationTime);
3799
Fyodor Kupolov82402752015-10-28 14:54:51 -07003800 pw.print(" Last logged in: ");
Makoto Onuki73dded22017-12-20 13:14:48 +09003801 dumpTimeAgo(pw, sb, now, userInfo.lastLoggedInTime);
3802
Jeff Sharkeybd91e2f2016-03-22 15:32:31 -06003803 pw.print(" Last logged in fingerprint: ");
3804 pw.println(userInfo.lastLoggedInFingerprint);
Makoto Onuki73dded22017-12-20 13:14:48 +09003805
3806 pw.print(" Start time: ");
3807 dumpTimeAgo(pw, sb, nowRealtime, userData.startRealtime);
3808
3809 pw.print(" Unlock time: ");
3810 dumpTimeAgo(pw, sb, nowRealtime, userData.unlockRealtime);
3811
Makoto Onukie7927da2015-11-25 10:05:17 -08003812 pw.print(" Has profile owner: ");
3813 pw.println(mIsUserManaged.get(userId));
Fyodor Kupolov82402752015-10-28 14:54:51 -07003814 pw.println(" Restrictions:");
3815 synchronized (mRestrictionsLock) {
3816 UserRestrictionsUtils.dumpRestrictions(
Amith Yamasani12747872015-12-07 14:19:49 -08003817 pw, " ", mBaseUserRestrictions.get(userInfo.id));
Pavel Grafov6a40f092016-10-25 15:46:51 +01003818 pw.println(" Device policy global restrictions:");
3819 UserRestrictionsUtils.dumpRestrictions(
3820 pw, " ", mDevicePolicyGlobalUserRestrictions.get(userInfo.id));
Makoto Onuki1a2cd742015-11-16 13:51:27 -08003821 pw.println(" Device policy local restrictions:");
3822 UserRestrictionsUtils.dumpRestrictions(
Amith Yamasani12747872015-12-07 14:19:49 -08003823 pw, " ", mDevicePolicyLocalUserRestrictions.get(userInfo.id));
Fyodor Kupolov82402752015-10-28 14:54:51 -07003824 pw.println(" Effective restrictions:");
3825 UserRestrictionsUtils.dumpRestrictions(
Amith Yamasani12747872015-12-07 14:19:49 -08003826 pw, " ", mCachedEffectiveUserRestrictions.get(userInfo.id));
Fyodor Kupolov82402752015-10-28 14:54:51 -07003827 }
Amith Yamasani12747872015-12-07 14:19:49 -08003828
3829 if (userData.account != null) {
3830 pw.print(" Account name: " + userData.account);
Xiaohui Chenb3b92582015-12-07 11:22:13 -08003831 pw.println();
3832 }
Amith Yamasani12747872015-12-07 14:19:49 -08003833
3834 if (userData.seedAccountName != null) {
3835 pw.print(" Seed account name: " + userData.seedAccountName);
3836 pw.println();
3837 if (userData.seedAccountType != null) {
3838 pw.print(" account type: " + userData.seedAccountType);
3839 pw.println();
3840 }
3841 if (userData.seedAccountOptions != null) {
3842 pw.print(" account options exist");
3843 pw.println();
3844 }
3845 }
Amith Yamasani920ace02012-09-20 22:15:37 -07003846 }
Amith Yamasani920ace02012-09-20 22:15:37 -07003847 }
Amith Yamasani12747872015-12-07 14:19:49 -08003848 pw.println();
Pavel Grafov6a40f092016-10-25 15:46:51 +01003849 pw.println(" Device owner id:" + mDeviceOwnerUserId);
Zoltan Szatmary-Bane7834602016-04-08 18:41:11 +01003850 pw.println();
Makoto Onuki1a2cd742015-11-16 13:51:27 -08003851 pw.println(" Guest restrictions:");
Fyodor Kupolove80085d2015-11-06 18:21:39 -08003852 synchronized (mGuestRestrictions) {
Makoto Onuki1a2cd742015-11-16 13:51:27 -08003853 UserRestrictionsUtils.dumpRestrictions(pw, " ", mGuestRestrictions);
Fyodor Kupolove80085d2015-11-06 18:21:39 -08003854 }
Makoto Onukie7927da2015-11-25 10:05:17 -08003855 synchronized (mUsersLock) {
3856 pw.println();
3857 pw.println(" Device managed: " + mIsDeviceManaged);
Fyodor Kupolov0f4533d2016-05-18 18:43:12 -07003858 if (mRemovingUserIds.size() > 0) {
3859 pw.println();
3860 pw.println(" Recently removed userIds: " + mRecentlyRemovedIds);
3861 }
Makoto Onukie7927da2015-11-25 10:05:17 -08003862 }
Amith Yamasaniea1b9d72016-05-27 15:57:38 +00003863 synchronized (mUserStates) {
3864 pw.println(" Started users state: " + mUserStates);
3865 }
Felipe Lemed7b88382019-06-12 17:40:53 -07003866 } // synchronized (mPackagesLock)
3867
3868 // Dump some capabilities
3869 pw.println();
3870 pw.println(" Max users: " + UserManager.getMaxSupportedUsers());
3871 pw.println(" Supports switchable users: " + UserManager.supportsMultipleUsers());
3872 pw.println(" All guests ephemeral: " + Resources.getSystem().getBoolean(
3873 com.android.internal.R.bool.config_guestUserEphemeral));
3874 pw.println(" Is split-system user: " + UserManager.isSplitSystemUser());
Felipe Lemee5434c32019-08-13 09:28:33 -07003875 pw.println(" Is headless-system mode: " + UserManager.isHeadlessSystemUserMode());
3876 pw.println(" User version: " + mUserVersion);
Bookatz04d7ae52019-08-05 14:07:12 -07003877
3878 // Dump package whitelist
3879 pw.println();
3880 mSystemPackageInstaller.dump(pw);
Amith Yamasani920ace02012-09-20 22:15:37 -07003881 }
Fyodor Kupolov75d0ea82014-12-15 16:21:07 -08003882
Makoto Onuki73dded22017-12-20 13:14:48 +09003883 private static void dumpTimeAgo(PrintWriter pw, StringBuilder sb, long nowTime, long time) {
3884 if (time == 0) {
3885 pw.println("<unknown>");
3886 } else {
3887 sb.setLength(0);
3888 TimeUtils.formatDuration(nowTime - time, sb);
3889 sb.append(" ago");
3890 pw.println(sb);
3891 }
3892 }
3893
Fyodor Kupolov75d0ea82014-12-15 16:21:07 -08003894 final class MainHandler extends Handler {
3895
3896 @Override
3897 public void handleMessage(Message msg) {
3898 switch (msg.what) {
3899 case WRITE_USER_MSG:
3900 removeMessages(WRITE_USER_MSG, msg.obj);
3901 synchronized (mPackagesLock) {
Amith Yamasani12747872015-12-07 14:19:49 -08003902 int userId = ((UserData) msg.obj).info.id;
3903 UserData userData = getUserDataNoChecks(userId);
3904 if (userData != null) {
3905 writeUserLP(userData);
Fyodor Kupolov75d0ea82014-12-15 16:21:07 -08003906 }
3907 }
3908 }
3909 }
3910 }
Amith Yamasanibb054c92015-07-09 14:16:27 -07003911
3912 /**
3913 * @param userId
3914 * @return whether the user has been initialized yet
3915 */
Bookatzf56f2582019-09-04 16:06:41 -07003916 boolean isUserInitialized(@UserIdInt int userId) {
Todd Kennedy0eb97382017-10-03 16:57:22 -07003917 return mLocalService.isUserInitialized(userId);
Amith Yamasanibb054c92015-07-09 14:16:27 -07003918 }
Makoto Onuki068c54a2015-10-13 14:34:03 -07003919
3920 private class LocalService extends UserManagerInternal {
Makoto Onuki068c54a2015-10-13 14:34:03 -07003921 @Override
Bookatzf56f2582019-09-04 16:06:41 -07003922 public void setDevicePolicyUserRestrictions(@UserIdInt int userId,
3923 @Nullable Bundle restrictions, boolean isDeviceOwner, int cameraRestrictionScope) {
Pavel Grafov6a40f092016-10-25 15:46:51 +01003924 UserManagerService.this.setDevicePolicyUserRestrictionsInner(userId, restrictions,
3925 isDeviceOwner, cameraRestrictionScope);
Makoto Onuki068c54a2015-10-13 14:34:03 -07003926 }
3927
3928 @Override
Bookatzf56f2582019-09-04 16:06:41 -07003929 public Bundle getBaseUserRestrictions(@UserIdInt int userId) {
Makoto Onuki068c54a2015-10-13 14:34:03 -07003930 synchronized (mRestrictionsLock) {
3931 return mBaseUserRestrictions.get(userId);
3932 }
3933 }
3934
3935 @Override
3936 public void setBaseUserRestrictionsByDpmsForMigration(
Bookatzf56f2582019-09-04 16:06:41 -07003937 @UserIdInt int userId, Bundle baseRestrictions) {
Makoto Onuki068c54a2015-10-13 14:34:03 -07003938 synchronized (mRestrictionsLock) {
Pavel Grafov6a40f092016-10-25 15:46:51 +01003939 if (updateRestrictionsIfNeededLR(
3940 userId, new Bundle(baseRestrictions), mBaseUserRestrictions)) {
3941 invalidateEffectiveUserRestrictionsLR(userId);
3942 }
Makoto Onuki068c54a2015-10-13 14:34:03 -07003943 }
3944
Amith Yamasani12747872015-12-07 14:19:49 -08003945 final UserData userData = getUserDataNoChecks(userId);
Makoto Onuki068c54a2015-10-13 14:34:03 -07003946 synchronized (mPackagesLock) {
Amith Yamasani12747872015-12-07 14:19:49 -08003947 if (userData != null) {
3948 writeUserLP(userData);
Makoto Onuki068c54a2015-10-13 14:34:03 -07003949 } else {
3950 Slog.w(LOG_TAG, "UserInfo not found for " + userId);
3951 }
3952 }
3953 }
Makoto Onukid45a4a22015-11-02 17:17:38 -08003954
3955 @Override
Bookatzf56f2582019-09-04 16:06:41 -07003956 public boolean getUserRestriction(@UserIdInt int userId, String key) {
Makoto Onukid45a4a22015-11-02 17:17:38 -08003957 return getUserRestrictions(userId).getBoolean(key);
3958 }
3959
3960 @Override
3961 public void addUserRestrictionsListener(UserRestrictionsListener listener) {
3962 synchronized (mUserRestrictionsListeners) {
3963 mUserRestrictionsListeners.add(listener);
3964 }
3965 }
3966
3967 @Override
3968 public void removeUserRestrictionsListener(UserRestrictionsListener listener) {
3969 synchronized (mUserRestrictionsListeners) {
3970 mUserRestrictionsListeners.remove(listener);
3971 }
3972 }
Makoto Onukie7927da2015-11-25 10:05:17 -08003973
3974 @Override
3975 public void setDeviceManaged(boolean isManaged) {
3976 synchronized (mUsersLock) {
3977 mIsDeviceManaged = isManaged;
3978 }
3979 }
3980
3981 @Override
Bookatzf56f2582019-09-04 16:06:41 -07003982 public void setUserManaged(@UserIdInt int userId, boolean isManaged) {
Makoto Onukie7927da2015-11-25 10:05:17 -08003983 synchronized (mUsersLock) {
3984 mIsUserManaged.put(userId, isManaged);
3985 }
3986 }
Oleksandr Peletskyi7f1f1df2016-01-18 15:40:21 +01003987
3988 @Override
Bookatzf56f2582019-09-04 16:06:41 -07003989 public void setUserIcon(@UserIdInt int userId, Bitmap bitmap) {
Oleksandr Peletskyi7f1f1df2016-01-18 15:40:21 +01003990 long ident = Binder.clearCallingIdentity();
3991 try {
3992 synchronized (mPackagesLock) {
3993 UserData userData = getUserDataNoChecks(userId);
3994 if (userData == null || userData.info.partial) {
3995 Slog.w(LOG_TAG, "setUserIcon: unknown user #" + userId);
3996 return;
3997 }
3998 writeBitmapLP(userData.info, bitmap);
3999 writeUserLP(userData);
4000 }
4001 sendUserInfoChangedBroadcast(userId);
4002 } finally {
4003 Binder.restoreCallingIdentity(ident);
4004 }
4005 }
Lenka Trochtovaf348e8e2016-01-07 17:20:34 +01004006
4007 @Override
4008 public void setForceEphemeralUsers(boolean forceEphemeralUsers) {
4009 synchronized (mUsersLock) {
4010 mForceEphemeralUsers = forceEphemeralUsers;
4011 }
4012 }
4013
4014 @Override
4015 public void removeAllUsers() {
4016 if (UserHandle.USER_SYSTEM == ActivityManager.getCurrentUser()) {
4017 // Remove the non-system users straight away.
4018 removeNonSystemUsers();
4019 } else {
4020 // Switch to the system user first and then remove the other users.
4021 BroadcastReceiver userSwitchedReceiver = new BroadcastReceiver() {
4022 @Override
4023 public void onReceive(Context context, Intent intent) {
4024 int userId =
4025 intent.getIntExtra(Intent.EXTRA_USER_HANDLE, UserHandle.USER_NULL);
4026 if (userId != UserHandle.USER_SYSTEM) {
4027 return;
4028 }
4029 mContext.unregisterReceiver(this);
4030 removeNonSystemUsers();
4031 }
4032 };
4033 IntentFilter userSwitchedFilter = new IntentFilter();
4034 userSwitchedFilter.addAction(Intent.ACTION_USER_SWITCHED);
4035 mContext.registerReceiver(
4036 userSwitchedReceiver, userSwitchedFilter, null, mHandler);
4037
4038 // Switch to the system user.
4039 ActivityManager am =
4040 (ActivityManager) mContext.getSystemService(Context.ACTIVITY_SERVICE);
4041 am.switchUser(UserHandle.USER_SYSTEM);
4042 }
4043 }
phweisse9c44062016-02-10 12:57:38 +01004044
4045 @Override
Bookatzf56f2582019-09-04 16:06:41 -07004046 public void onEphemeralUserStop(@UserIdInt int userId) {
Lenka Trochtova1ddda472016-02-12 10:42:12 +01004047 synchronized (mUsersLock) {
4048 UserInfo userInfo = getUserInfoLU(userId);
4049 if (userInfo != null && userInfo.isEphemeral()) {
4050 // Do not allow switching back to the ephemeral user again as the user is going
4051 // to be deleted.
4052 userInfo.flags |= UserInfo.FLAG_DISABLED;
4053 if (userInfo.isGuest()) {
4054 // Indicate that the guest will be deleted after it stops.
4055 userInfo.guestToRemove = true;
4056 }
4057 }
4058 }
4059 }
4060
4061 @Override
Alex Chaub6a9f942017-11-07 11:28:56 +08004062 public UserInfo createUserEvenWhenDisallowed(String name, int flags,
4063 String[] disallowedPackages) {
4064 UserInfo user = createUserInternalUnchecked(name, flags, UserHandle.USER_NULL,
4065 disallowedPackages);
phweisse9c44062016-02-10 12:57:38 +01004066 // Keep this in sync with UserManager.createUser
Christine Franks97a54802017-08-09 10:06:43 -07004067 if (user != null && !user.isAdmin() && !user.isDemo()) {
phweisse9c44062016-02-10 12:57:38 +01004068 setUserRestriction(UserManager.DISALLOW_SMS, true, user.id);
4069 setUserRestriction(UserManager.DISALLOW_OUTGOING_CALLS, true, user.id);
4070 }
4071 return user;
4072 }
Fyodor Kupolov6c915ea2016-05-09 19:10:53 -07004073
4074 @Override
Bookatzf56f2582019-09-04 16:06:41 -07004075 public boolean removeUserEvenWhenDisallowed(@UserIdInt int userId) {
Nicolas Prevotdf1b87d2016-10-25 13:57:08 +01004076 return removeUserUnchecked(userId);
4077 }
4078
4079 @Override
Bookatzf56f2582019-09-04 16:06:41 -07004080 public boolean isUserRunning(@UserIdInt int userId) {
Amith Yamasaniea1b9d72016-05-27 15:57:38 +00004081 synchronized (mUserStates) {
4082 return mUserStates.get(userId, -1) >= 0;
4083 }
4084 }
4085
4086 @Override
Bookatzf56f2582019-09-04 16:06:41 -07004087 public void setUserState(@UserIdInt int userId, int userState) {
Amith Yamasaniea1b9d72016-05-27 15:57:38 +00004088 synchronized (mUserStates) {
4089 mUserStates.put(userId, userState);
4090 }
4091 }
4092
4093 @Override
Bookatzf56f2582019-09-04 16:06:41 -07004094 public void removeUserState(@UserIdInt int userId) {
Amith Yamasaniea1b9d72016-05-27 15:57:38 +00004095 synchronized (mUserStates) {
4096 mUserStates.delete(userId);
Fyodor Kupolov6c915ea2016-05-09 19:10:53 -07004097 }
4098 }
4099
4100 @Override
Michael Wachenschwanz3f2b6552017-05-15 13:53:09 -07004101 public int[] getUserIds() {
4102 return UserManagerService.this.getUserIds();
4103 }
4104
4105 @Override
Bookatzf56f2582019-09-04 16:06:41 -07004106 public boolean isUserUnlockingOrUnlocked(@UserIdInt int userId) {
Fyodor Kupolov0468ee92017-05-25 17:06:17 -07004107 int state;
Amith Yamasaniea1b9d72016-05-27 15:57:38 +00004108 synchronized (mUserStates) {
Fyodor Kupolov0468ee92017-05-25 17:06:17 -07004109 state = mUserStates.get(userId, -1);
Fyodor Kupolov6c915ea2016-05-09 19:10:53 -07004110 }
Fyodor Kupolov0468ee92017-05-25 17:06:17 -07004111 // Special case, in the stopping/shutdown state user key can still be unlocked
4112 if (state == UserState.STATE_STOPPING || state == UserState.STATE_SHUTDOWN) {
4113 return StorageManager.isUserKeyUnlocked(userId);
4114 }
4115 return (state == UserState.STATE_RUNNING_UNLOCKING)
4116 || (state == UserState.STATE_RUNNING_UNLOCKED);
Fyodor Kupolov6c915ea2016-05-09 19:10:53 -07004117 }
Fyodor Kupolov2e7e0962016-12-01 18:09:17 -08004118
4119 @Override
Bookatzf56f2582019-09-04 16:06:41 -07004120 public boolean isUserUnlocked(@UserIdInt int userId) {
Fyodor Kupolov0468ee92017-05-25 17:06:17 -07004121 int state;
Fyodor Kupolov2e7e0962016-12-01 18:09:17 -08004122 synchronized (mUserStates) {
Fyodor Kupolov0468ee92017-05-25 17:06:17 -07004123 state = mUserStates.get(userId, -1);
Fyodor Kupolov2e7e0962016-12-01 18:09:17 -08004124 }
Fyodor Kupolov0468ee92017-05-25 17:06:17 -07004125 // Special case, in the stopping/shutdown state user key can still be unlocked
4126 if (state == UserState.STATE_STOPPING || state == UserState.STATE_SHUTDOWN) {
4127 return StorageManager.isUserKeyUnlocked(userId);
4128 }
4129 return state == UserState.STATE_RUNNING_UNLOCKED;
Fyodor Kupolov2e7e0962016-12-01 18:09:17 -08004130 }
Todd Kennedy0eb97382017-10-03 16:57:22 -07004131
4132 @Override
Bookatzf56f2582019-09-04 16:06:41 -07004133 public boolean isUserInitialized(@UserIdInt int userId) {
Todd Kennedy0eb97382017-10-03 16:57:22 -07004134 return (getUserInfo(userId).flags & UserInfo.FLAG_INITIALIZED) != 0;
4135 }
4136
4137 @Override
Bookatzf56f2582019-09-04 16:06:41 -07004138 public boolean exists(@UserIdInt int userId) {
Todd Kennedy0eb97382017-10-03 16:57:22 -07004139 return getUserInfoNoChecks(userId) != null;
4140 }
Sunny Goyal145c8f82018-02-15 14:27:09 -08004141
4142 @Override
4143 public boolean isProfileAccessible(int callingUserId, int targetUserId, String debugMsg,
4144 boolean throwSecurityException) {
4145 if (targetUserId == callingUserId) {
4146 return true;
4147 }
4148 synchronized (mUsersLock) {
4149 UserInfo callingUserInfo = getUserInfoLU(callingUserId);
4150 if (callingUserInfo == null || callingUserInfo.isManagedProfile()) {
4151 if (throwSecurityException) {
4152 throw new SecurityException(
4153 debugMsg + " for another profile "
4154 + targetUserId + " from " + callingUserId);
4155 }
4156 }
4157
4158 UserInfo targetUserInfo = getUserInfoLU(targetUserId);
4159 if (targetUserInfo == null || !targetUserInfo.isEnabled()) {
4160 // Do not throw any exception here as this could happen due to race conditions
4161 // between the system updating its state and the client getting notified.
4162 if (throwSecurityException) {
4163 Slog.w(LOG_TAG, debugMsg + " for disabled profile "
4164 + targetUserId + " from " + callingUserId);
4165 }
4166 return false;
4167 }
4168
4169 if (targetUserInfo.profileGroupId == UserInfo.NO_PROFILE_GROUP_ID ||
4170 targetUserInfo.profileGroupId != callingUserInfo.profileGroupId) {
4171 if (throwSecurityException) {
4172 throw new SecurityException(
4173 debugMsg + " for unrelated profile " + targetUserId);
4174 }
4175 return false;
4176 }
4177 }
4178 return true;
4179 }
4180
4181 @Override
Bookatzf56f2582019-09-04 16:06:41 -07004182 public int getProfileParentId(@UserIdInt int userId) {
Sunny Goyal145c8f82018-02-15 14:27:09 -08004183 synchronized (mUsersLock) {
4184 UserInfo profileParent = getProfileParentLU(userId);
4185 if (profileParent == null) {
4186 return userId;
4187 }
4188 return profileParent.id;
4189 }
4190 }
yuemingw1d13eae2018-01-30 17:27:54 +00004191
4192 @Override
4193 public boolean isSettingRestrictedForUser(String setting, @UserIdInt int userId,
4194 String value, int callingUid) {
4195 return UserRestrictionsUtils.isSettingRestrictedForUser(mContext, setting, userId,
4196 value, callingUid);
4197 }
Patrick Baumann2f2fd712019-07-31 15:18:53 -07004198
4199 @Override
Bookatzf56f2582019-09-04 16:06:41 -07004200 public boolean hasUserRestriction(String restrictionKey, @UserIdInt int userId) {
Patrick Baumann2f2fd712019-07-31 15:18:53 -07004201 if (!UserRestrictionsUtils.isValidRestriction(restrictionKey)) {
4202 return false;
4203 }
4204 Bundle restrictions = getEffectiveUserRestrictions(userId);
4205 return restrictions != null && restrictions.getBoolean(restrictionKey);
4206 }
Felipe Lemee5434c32019-08-13 09:28:33 -07004207
4208 public @Nullable UserInfo getUserInfo(@UserIdInt int userId) {
4209 UserData userData;
4210 synchronized (mUsersLock) {
4211 userData = mUsers.get(userId);
4212 }
4213 return userData == null ? null : userData.info;
4214 }
Felipe Leme987655d2019-08-26 10:45:24 -07004215
4216 public @NonNull UserInfo[] getUserInfos() {
4217 synchronized (mUsersLock) {
4218 int userSize = mUsers.size();
4219 UserInfo[] allInfos = new UserInfo[userSize];
4220 for (int i = 0; i < userSize; i++) {
4221 allInfos[i] = mUsers.valueAt(i).info;
4222 }
4223 return allInfos;
4224 }
4225 }
Lenka Trochtovaf348e8e2016-01-07 17:20:34 +01004226 }
4227
4228 /* Remove all the users except of the system one. */
4229 private void removeNonSystemUsers() {
4230 ArrayList<UserInfo> usersToRemove = new ArrayList<>();
4231 synchronized (mUsersLock) {
4232 final int userSize = mUsers.size();
4233 for (int i = 0; i < userSize; i++) {
4234 UserInfo ui = mUsers.valueAt(i).info;
4235 if (ui.id != UserHandle.USER_SYSTEM) {
4236 usersToRemove.add(ui);
4237 }
4238 }
4239 }
4240 for (UserInfo ui: usersToRemove) {
4241 removeUser(ui.id);
4242 }
Makoto Onuki068c54a2015-10-13 14:34:03 -07004243 }
Todd Kennedy60459ab2015-10-30 11:32:16 -07004244
4245 private class Shell extends ShellCommand {
4246 @Override
4247 public int onCommand(String cmd) {
4248 return onShellCommand(this, cmd);
4249 }
4250
4251 @Override
4252 public void onHelp() {
4253 final PrintWriter pw = getOutPrintWriter();
4254 pw.println("User manager (user) commands:");
4255 pw.println(" help");
4256 pw.println(" Print this help text.");
4257 pw.println("");
4258 pw.println(" list");
4259 pw.println(" Prints all users on the system.");
4260 }
4261 }
Makoto Onuki1a2cd742015-11-16 13:51:27 -08004262
4263 private static void debug(String message) {
4264 Log.d(LOG_TAG, message +
4265 (DBG_WITH_STACKTRACE ? " called at\n" + Debug.getCallers(10, " ") : ""));
4266 }
Kenny Guy02c89902016-11-15 19:36:38 +00004267
4268 @VisibleForTesting
4269 static int getMaxManagedProfiles() {
4270 // Allow overriding max managed profiles on debuggable builds for testing
4271 // of multiple profiles.
4272 if (!Build.IS_DEBUGGABLE) {
4273 return MAX_MANAGED_PROFILES;
4274 } else {
4275 return SystemProperties.getInt("persist.sys.max_profiles",
4276 MAX_MANAGED_PROFILES);
4277 }
4278 }
4279
Andreas Gampe2e8c7672018-07-20 13:01:08 -07004280 @GuardedBy("mUsersLock")
Kenny Guy02c89902016-11-15 19:36:38 +00004281 @VisibleForTesting
4282 int getFreeProfileBadgeLU(int parentUserId) {
4283 int maxManagedProfiles = getMaxManagedProfiles();
4284 boolean[] usedBadges = new boolean[maxManagedProfiles];
4285 final int userSize = mUsers.size();
4286 for (int i = 0; i < userSize; i++) {
4287 UserInfo ui = mUsers.valueAt(i).info;
4288 // Check which badge indexes are already used by this profile group.
4289 if (ui.isManagedProfile()
4290 && ui.profileGroupId == parentUserId
4291 && !mRemovingUserIds.get(ui.id)
4292 && ui.profileBadge < maxManagedProfiles) {
4293 usedBadges[ui.profileBadge] = true;
4294 }
4295 }
4296 for (int i = 0; i < maxManagedProfiles; i++) {
4297 if (!usedBadges[i]) {
4298 return i;
4299 }
4300 }
4301 return 0;
4302 }
Amith Yamasani0d1fd8d2016-10-12 14:21:51 -07004303
4304 /**
4305 * Checks if the given user has a managed profile associated with it.
4306 * @param userId The parent user
4307 * @return
4308 */
Bookatzf56f2582019-09-04 16:06:41 -07004309 boolean hasManagedProfile(@UserIdInt int userId) {
Amith Yamasani0d1fd8d2016-10-12 14:21:51 -07004310 synchronized (mUsersLock) {
4311 UserInfo userInfo = getUserInfoLU(userId);
4312 final int userSize = mUsers.size();
4313 for (int i = 0; i < userSize; i++) {
4314 UserInfo profile = mUsers.valueAt(i).info;
4315 if (userId != profile.id && isProfileOf(userInfo, profile)) {
4316 return true;
4317 }
4318 }
4319 return false;
4320 }
4321 }
Tony Makd390ae92017-12-28 13:23:10 +00004322
4323 /**
4324 * Check if the calling package name matches with the calling UID, throw
4325 * {@link SecurityException} if not.
4326 */
4327 private void verifyCallingPackage(String callingPackage, int callingUid) {
4328 int packageUid = mPm.getPackageUid(callingPackage, 0, UserHandle.getUserId(callingUid));
4329 if (packageUid != callingUid) {
4330 throw new SecurityException("Specified package " + callingPackage
4331 + " does not match the calling uid " + callingUid);
4332 }
4333 }
Amith Yamasani4b2e9342011-03-31 12:38:53 -07004334}