blob: 4d2512c2642266315105ac5a61b2ee1cafa6b1aa [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;
Felipe Lemec1ca4412019-09-11 09:23:26 -070044import android.content.pm.UserInfo.UserInfoFlag;
Lenka Trochtova02fee152015-12-22 14:26:18 +010045import android.content.res.Resources;
Amith Yamasanie928d7d2012-09-17 21:46:51 -070046import android.graphics.Bitmap;
Amith Yamasani258848d2012-08-10 17:06:33 -070047import android.os.Binder;
Jeff Sharkeybd91e2f2016-03-22 15:32:31 -060048import android.os.Build;
Amith Yamasanie4cf7342012-12-17 11:12:09 -080049import android.os.Bundle;
Makoto Onuki1a2cd742015-11-16 13:51:27 -080050import android.os.Debug;
Amith Yamasani4b2e9342011-03-31 12:38:53 -070051import android.os.Environment;
52import android.os.FileUtils;
Jeff Sharkeyffe0cb42012-11-05 17:24:43 -080053import android.os.Handler;
Svet Ganov9cea80cd2016-02-16 11:47:00 -080054import android.os.IBinder;
Tony Mak64fd8c02017-12-01 19:11:59 +000055import android.os.IProgressListener;
Amith Yamasani258848d2012-08-10 17:06:33 -070056import android.os.IUserManager;
Christopher Tate65fb2e42019-10-11 17:00:23 -070057import android.os.IUserRestrictionsListener;
Fyodor Kupolov75d0ea82014-12-15 16:21:07 -080058import android.os.Message;
Adrian Roos1bdff912015-02-17 15:51:35 +010059import android.os.ParcelFileDescriptor;
Fyodor Kupolov262f9952015-03-23 18:55:11 -070060import android.os.Parcelable;
Amith Yamasani12747872015-12-07 14:19:49 -080061import android.os.PersistableBundle;
Amith Yamasani258848d2012-08-10 17:06:33 -070062import android.os.Process;
Dianne Hackborn80a4af22012-08-27 19:18:31 -070063import android.os.RemoteException;
Todd Kennedy60459ab2015-10-30 11:32:16 -070064import android.os.ResultReceiver;
Oleksandr Peletskyicd6fa302016-02-25 16:28:39 +010065import android.os.SELinux;
Jason Monk62062992014-05-06 09:55:28 -040066import android.os.ServiceManager;
Dianne Hackborn354736e2016-08-22 17:00:05 -070067import android.os.ShellCallback;
Todd Kennedy60459ab2015-10-30 11:32:16 -070068import android.os.ShellCommand;
Makoto Onuki73dded22017-12-20 13:14:48 +090069import android.os.SystemClock;
Kenny Guy02c89902016-11-15 19:36:38 +000070import android.os.SystemProperties;
Dianne Hackbornf02b60a2012-08-16 10:48:27 -070071import android.os.UserHandle;
Jeff Sharkey27bd34d2012-09-16 12:49:00 -070072import android.os.UserManager;
Pavel Grafov6a40f092016-10-25 15:46:51 +010073import android.os.UserManager.EnforcingUser;
Makoto Onuki068c54a2015-10-13 14:34:03 -070074import android.os.UserManagerInternal;
Makoto Onukid45a4a22015-11-02 17:17:38 -080075import android.os.UserManagerInternal.UserRestrictionsListener;
Paul Crowley85e4e812015-05-19 12:42:00 +010076import android.os.storage.StorageManager;
Amith Yamasanid04aaa32016-06-13 12:09:36 -070077import android.security.GateKeeper;
78import android.service.gatekeeper.IGateKeeperService;
arangelov9b632d72018-12-07 23:21:22 +000079import android.stats.devicepolicy.DevicePolicyEnums;
Bookatz75f0a072019-08-05 14:12:16 -070080import android.util.ArraySet;
Amith Yamasani2a003292012-08-14 18:25:45 -070081import android.util.AtomicFile;
Fyodor Kupolov7f98aa42016-04-07 14:56:25 -070082import android.util.IntArray;
Amith Yamasani655d0e22013-06-12 14:19:10 -070083import android.util.Log;
Amith Yamasani4b2e9342011-03-31 12:38:53 -070084import android.util.Slog;
85import android.util.SparseArray;
Jeff Sharkeyffe0cb42012-11-05 17:24:43 -080086import android.util.SparseBooleanArray;
Amith Yamasaniea1b9d72016-05-27 15:57:38 +000087import android.util.SparseIntArray;
Amith Yamasani920ace02012-09-20 22:15:37 -070088import android.util.TimeUtils;
Amith Yamasani4b2e9342011-03-31 12:38:53 -070089import android.util.Xml;
90
Makoto Onuki068c54a2015-10-13 14:34:03 -070091import com.android.internal.annotations.GuardedBy;
Fyodor Kupolov262f9952015-03-23 18:55:11 -070092import com.android.internal.annotations.VisibleForTesting;
Jason Monk62062992014-05-06 09:55:28 -040093import com.android.internal.app.IAppOpsService;
Fyodor Kupolov8385e4b2015-12-29 18:15:32 -080094import com.android.internal.logging.MetricsLogger;
Fyodor Kupolova68a2862018-01-30 18:22:00 -080095import com.android.internal.os.BackgroundThread;
Jeff Sharkeyfe9a53b2017-03-31 14:08:23 -060096import com.android.internal.util.DumpUtils;
Jeff Sharkeyffe0cb42012-11-05 17:24:43 -080097import com.android.internal.util.FastXmlSerializer;
Makoto Onuki068c54a2015-10-13 14:34:03 -070098import com.android.internal.util.Preconditions;
Fyodor Kupolov262f9952015-03-23 18:55:11 -070099import com.android.internal.util.XmlUtils;
Clara Bayarri10ad84a2015-12-01 17:38:05 +0000100import com.android.internal.widget.LockPatternUtils;
Amith Yamasani515d4062015-09-28 11:30:06 -0700101import com.android.server.LocalServices;
Jeff Sharkey5f3e9342017-03-13 14:53:11 -0600102import com.android.server.LockGuard;
Amith Yamasanid04aaa32016-06-13 12:09:36 -0700103import com.android.server.SystemService;
Amith Yamasaniea1b9d72016-05-27 15:57:38 +0000104import com.android.server.am.UserState;
Suprabh Shuklac5e057c2016-08-08 16:22:44 -0700105import com.android.server.storage.DeviceStorageMonitorInternal;
Felipe Leme3aad1be2019-05-31 11:43:12 -0700106import com.android.server.utils.TimingsTraceAndSlog;
Wale Ogunwale9e4f3e02018-05-17 09:35:39 -0700107import com.android.server.wm.ActivityTaskManagerInternal;
Jeff Sharkeyffe0cb42012-11-05 17:24:43 -0800108
arangelov9b632d72018-12-07 23:21:22 +0000109import libcore.io.IoUtils;
110
Jeff Sharkeyffe0cb42012-11-05 17:24:43 -0800111import org.xmlpull.v1.XmlPullParser;
112import org.xmlpull.v1.XmlPullParserException;
113import org.xmlpull.v1.XmlSerializer;
114
Amith Yamasani4b2e9342011-03-31 12:38:53 -0700115import java.io.BufferedOutputStream;
116import java.io.File;
Amith Yamasani920ace02012-09-20 22:15:37 -0700117import java.io.FileDescriptor;
Amith Yamasani4b2e9342011-03-31 12:38:53 -0700118import java.io.FileInputStream;
Amith Yamasanib8151ec2012-04-18 18:02:48 -0700119import java.io.FileNotFoundException;
Amith Yamasani4b2e9342011-03-31 12:38:53 -0700120import java.io.FileOutputStream;
Tony Mak64fd8c02017-12-01 19:11:59 +0000121import java.io.IOException;
Kenny Guy02c89902016-11-15 19:36:38 +0000122import java.io.InputStream;
123import java.io.OutputStream;
Amith Yamasani920ace02012-09-20 22:15:37 -0700124import java.io.PrintWriter;
Wojciech Staszkiewicz9e9e2e72015-05-08 14:58:46 +0100125import java.nio.charset.StandardCharsets;
Amith Yamasani4b2e9342011-03-31 12:38:53 -0700126import java.util.ArrayList;
Pavel Grafov6a40f092016-10-25 15:46:51 +0100127import java.util.Collections;
Fyodor Kupolov0f4533d2016-05-18 18:43:12 -0700128import java.util.LinkedList;
Amith Yamasani4b2e9342011-03-31 12:38:53 -0700129import java.util.List;
Narayan Kamath607223f2018-02-19 14:09:02 +0000130import java.util.Objects;
Bookatz75f0a072019-08-05 14:12:16 -0700131import java.util.Set;
Amith Yamasani4b2e9342011-03-31 12:38:53 -0700132
Makoto Onuki068c54a2015-10-13 14:34:03 -0700133/**
134 * Service for {@link UserManager}.
135 *
136 * Method naming convention:
Fyodor Kupolov82402752015-10-28 14:54:51 -0700137 * <ul>
Fyodor Kupolovd31cee92017-09-05 16:31:08 -0700138 * <li> Methods suffixed with "LAr" should be called within the {@link #mAppRestrictionsLock} lock.
Fyodor Kupolove80085d2015-11-06 18:21:39 -0800139 * <li> Methods suffixed with "LP" should be called within the {@link #mPackagesLock} lock.
Fyodor Kupolov82402752015-10-28 14:54:51 -0700140 * <li> Methods suffixed with "LR" should be called within the {@link #mRestrictionsLock} lock.
141 * <li> Methods suffixed with "LU" should be called within the {@link #mUsersLock} lock.
142 * </ul>
Makoto Onuki068c54a2015-10-13 14:34:03 -0700143 */
Amith Yamasani258848d2012-08-10 17:06:33 -0700144public class UserManagerService extends IUserManager.Stub {
Amith Yamasanid04aaa32016-06-13 12:09:36 -0700145
Amith Yamasani2a003292012-08-14 18:25:45 -0700146 private static final String LOG_TAG = "UserManagerService";
Makoto Onuki81c61ea2016-01-22 11:22:26 -0800147 static final boolean DBG = false; // DO NOT SUBMIT WITH TRUE
Makoto Onuki1a2cd742015-11-16 13:51:27 -0800148 private static final boolean DBG_WITH_STACKTRACE = false; // DO NOT SUBMIT WITH TRUE
Fyodor Kupolov0f4533d2016-05-18 18:43:12 -0700149 // Can be used for manual testing of id recycling
150 private static final boolean RELEASE_DELETED_USER_ID = false; // DO NOT SUBMIT WITH TRUE
Amith Yamasani16389312012-10-17 21:20:14 -0700151
Amith Yamasani4b2e9342011-03-31 12:38:53 -0700152 private static final String TAG_NAME = "name";
Xiaohui Chenb3b92582015-12-07 11:22:13 -0800153 private static final String TAG_ACCOUNT = "account";
Amith Yamasani4b2e9342011-03-31 12:38:53 -0700154 private static final String ATTR_FLAGS = "flags";
Amith Yamasanib8151ec2012-04-18 18:02:48 -0700155 private static final String ATTR_ICON_PATH = "icon";
Amith Yamasani4b2e9342011-03-31 12:38:53 -0700156 private static final String ATTR_ID = "id";
Amith Yamasani920ace02012-09-20 22:15:37 -0700157 private static final String ATTR_CREATION_TIME = "created";
158 private static final String ATTR_LAST_LOGGED_IN_TIME = "lastLoggedIn";
Jeff Sharkeybd91e2f2016-03-22 15:32:31 -0600159 private static final String ATTR_LAST_LOGGED_IN_FINGERPRINT = "lastLoggedInFingerprint";
Amith Yamasani2a003292012-08-14 18:25:45 -0700160 private static final String ATTR_SERIAL_NO = "serialNumber";
161 private static final String ATTR_NEXT_SERIAL_NO = "nextSerialNumber";
Dianne Hackbornd4ac8d72012-09-27 23:20:10 -0700162 private static final String ATTR_PARTIAL = "partial";
Felipe Lemec1ca4412019-09-11 09:23:26 -0700163 private static final String ATTR_PRE_CREATED = "preCreated";
Adam Lesinskieddeb492014-09-08 17:50:03 -0700164 private static final String ATTR_GUEST_TO_REMOVE = "guestToRemove";
Amith Yamasani6f34b412012-10-22 18:19:27 -0700165 private static final String ATTR_USER_VERSION = "version";
Kenny Guy2a764942014-04-02 13:29:20 +0100166 private static final String ATTR_PROFILE_GROUP_ID = "profileGroupId";
Kenny Guy02c89902016-11-15 19:36:38 +0000167 private static final String ATTR_PROFILE_BADGE = "profileBadge";
Fyodor Kupolov06a484a2015-08-21 16:33:20 -0700168 private static final String ATTR_RESTRICTED_PROFILE_PARENT_ID = "restrictedProfileParentId";
Amith Yamasani12747872015-12-07 14:19:49 -0800169 private static final String ATTR_SEED_ACCOUNT_NAME = "seedAccountName";
170 private static final String ATTR_SEED_ACCOUNT_TYPE = "seedAccountType";
Amith Yamasanie4afaa32014-06-30 14:55:07 +0530171 private static final String TAG_GUEST_RESTRICTIONS = "guestRestrictions";
Amith Yamasani4b2e9342011-03-31 12:38:53 -0700172 private static final String TAG_USERS = "users";
Amith Yamasani4b2e9342011-03-31 12:38:53 -0700173 private static final String TAG_USER = "user";
Amith Yamasanie4cf7342012-12-17 11:12:09 -0800174 private static final String TAG_RESTRICTIONS = "restrictions";
Makoto Onuki1a2cd742015-11-16 13:51:27 -0800175 private static final String TAG_DEVICE_POLICY_RESTRICTIONS = "device_policy_restrictions";
Pavel Grafov6a40f092016-10-25 15:46:51 +0100176 private static final String TAG_DEVICE_POLICY_GLOBAL_RESTRICTIONS =
177 "device_policy_global_restrictions";
178 /** Legacy name for device owner id tag. */
Zoltan Szatmary-Bane7834602016-04-08 18:41:11 +0100179 private static final String TAG_GLOBAL_RESTRICTION_OWNER_ID = "globalRestrictionOwnerUserId";
Pavel Grafov6a40f092016-10-25 15:46:51 +0100180 private static final String TAG_DEVICE_OWNER_USER_ID = "deviceOwnerUserId";
Amith Yamasanidf2e92a2013-03-01 17:04:38 -0800181 private static final String TAG_ENTRY = "entry";
182 private static final String TAG_VALUE = "value";
Amith Yamasani12747872015-12-07 14:19:49 -0800183 private static final String TAG_SEED_ACCOUNT_OPTIONS = "seedAccountOptions";
arangelov9b632d72018-12-07 23:21:22 +0000184 private static final String TAG_LAST_REQUEST_QUIET_MODE_ENABLED_CALL =
185 "lastRequestQuietModeEnabledCall";
Amith Yamasanidf2e92a2013-03-01 17:04:38 -0800186 private static final String ATTR_KEY = "key";
Amith Yamasani7e99bc02013-04-16 18:24:51 -0700187 private static final String ATTR_VALUE_TYPE = "type";
Amith Yamasanidf2e92a2013-03-01 17:04:38 -0800188 private static final String ATTR_MULTIPLE = "m";
Amith Yamasani4b2e9342011-03-31 12:38:53 -0700189
Amith Yamasani7e99bc02013-04-16 18:24:51 -0700190 private static final String ATTR_TYPE_STRING_ARRAY = "sa";
191 private static final String ATTR_TYPE_STRING = "s";
192 private static final String ATTR_TYPE_BOOLEAN = "b";
Amith Yamasani5b5aa402014-06-01 20:10:14 -0700193 private static final String ATTR_TYPE_INTEGER = "i";
Fyodor Kupolov262f9952015-03-23 18:55:11 -0700194 private static final String ATTR_TYPE_BUNDLE = "B";
195 private static final String ATTR_TYPE_BUNDLE_ARRAY = "BA";
Amith Yamasani7e99bc02013-04-16 18:24:51 -0700196
Amith Yamasani0b285492011-04-14 17:35:23 -0700197 private static final String USER_INFO_DIR = "system" + File.separator + "users";
Amith Yamasani4b2e9342011-03-31 12:38:53 -0700198 private static final String USER_LIST_FILENAME = "userlist.xml";
Amith Yamasanib8151ec2012-04-18 18:02:48 -0700199 private static final String USER_PHOTO_FILENAME = "photo.png";
Adrian Roos1bdff912015-02-17 15:51:35 +0100200 private static final String USER_PHOTO_FILENAME_TMP = USER_PHOTO_FILENAME + ".tmp";
Amith Yamasani4b2e9342011-03-31 12:38:53 -0700201
Amith Yamasanidf2e92a2013-03-01 17:04:38 -0800202 private static final String RESTRICTIONS_FILE_PREFIX = "res_";
Amith Yamasanifc95e702013-09-26 13:20:17 -0700203 private static final String XML_SUFFIX = ".xml";
Amith Yamasanidf2e92a2013-03-01 17:04:38 -0800204
Sudheer Shankaf5cea032016-06-08 17:13:24 -0700205 private static final int ALLOWED_FLAGS_FOR_CREATE_USERS_PERMISSION =
206 UserInfo.FLAG_MANAGED_PROFILE
207 | UserInfo.FLAG_EPHEMERAL
208 | UserInfo.FLAG_RESTRICTED
Sudheer Shanka234d1af2016-08-26 15:42:53 -0700209 | UserInfo.FLAG_GUEST
210 | UserInfo.FLAG_DEMO;
Sudheer Shankaf5cea032016-06-08 17:13:24 -0700211
Fyodor Kupolov0f4533d2016-05-18 18:43:12 -0700212 @VisibleForTesting
Makoto Onukiacf38582019-10-04 11:53:42 -0700213 static final int MIN_USER_ID = UserHandle.MIN_SECONDARY_USER_ID;
214
Xiaohui Chen621b3fc2015-10-02 14:41:42 -0700215 // We need to keep process uid within Integer.MAX_VALUE.
Fyodor Kupolov0f4533d2016-05-18 18:43:12 -0700216 @VisibleForTesting
217 static final int MAX_USER_ID = Integer.MAX_VALUE / UserHandle.PER_USER_RANGE;
218
219 // Max size of the queue of recently removed users
220 @VisibleForTesting
221 static final int MAX_RECENTLY_REMOVED_IDS_SIZE = 100;
Amith Yamasani634cf312012-10-04 17:34:21 -0700222
Bookatz75f0a072019-08-05 14:12:16 -0700223 private static final int USER_VERSION = 8;
Amith Yamasani6f34b412012-10-22 18:19:27 -0700224
Amith Yamasani920ace02012-09-20 22:15:37 -0700225 private static final long EPOCH_PLUS_30_YEARS = 30L * 365 * 24 * 60 * 60 * 1000L; // ms
226
Nicolas Prevotb8186812015-08-06 15:00:03 +0100227 // Maximum number of managed profiles permitted per user is 1. This cannot be increased
Amith Yamasani95ab7842014-08-11 17:09:26 -0700228 // without first making sure that the rest of the framework is prepared for it.
Kenny Guy02c89902016-11-15 19:36:38 +0000229 @VisibleForTesting
230 static final int MAX_MANAGED_PROFILES = 1;
Amith Yamasani95ab7842014-08-11 17:09:26 -0700231
Fyodor Kupolov75d0ea82014-12-15 16:21:07 -0800232 static final int WRITE_USER_MSG = 1;
233 static final int WRITE_USER_DELAY = 2*1000; // 2 seconds
Amith Yamasanie4afaa32014-06-30 14:55:07 +0530234
Fyodor Kupolov8385e4b2015-12-29 18:15:32 -0800235 // Tron counters
236 private static final String TRON_GUEST_CREATED = "users_guest_created";
237 private static final String TRON_USER_CREATED = "users_user_created";
Christine Franks88220562017-05-24 11:11:21 -0700238 private static final String TRON_DEMO_CREATED = "users_demo_created";
Fyodor Kupolov8385e4b2015-12-29 18:15:32 -0800239
Dianne Hackborn4428e172012-08-24 17:43:05 -0700240 private final Context mContext;
241 private final PackageManagerService mPm;
Dianne Hackborn4428e172012-08-24 17:43:05 -0700242 private final Object mPackagesLock;
Fyodor Kupolov5c0ecfd2017-01-27 11:11:57 -0800243 private final UserDataPreparer mUserDataPreparer;
Fyodor Kupolov82402752015-10-28 14:54:51 -0700244 // Short-term lock for internal state, when interaction/sync with PM is not required
Jeff Sharkey5f3e9342017-03-13 14:53:11 -0600245 private final Object mUsersLock = LockGuard.installNewLock(LockGuard.INDEX_USER);
Fyodor Kupolov82402752015-10-28 14:54:51 -0700246 private final Object mRestrictionsLock = new Object();
Fyodor Kupolovd31cee92017-09-05 16:31:08 -0700247 // Used for serializing access to app restriction files
248 private final Object mAppRestrictionsLock = new Object();
Amith Yamasani4b2e9342011-03-31 12:38:53 -0700249
Jeff Sharkeyffe0cb42012-11-05 17:24:43 -0800250 private final Handler mHandler;
251
Amith Yamasani4b2e9342011-03-31 12:38:53 -0700252 private final File mUsersDir;
253 private final File mUserListFile;
Dianne Hackborn4428e172012-08-24 17:43:05 -0700254
Svet Ganov9cea80cd2016-02-16 11:47:00 -0800255 private static final IBinder mUserRestriconToken = new Binder();
256
Bookatz04d7ae52019-08-05 14:07:12 -0700257 /** Installs system packages based on user-type. */
258 private final UserSystemPackageInstaller mSystemPackageInstaller;
259
Makoto Onuki068c54a2015-10-13 14:34:03 -0700260 /**
Makoto Onuki73dded22017-12-20 13:14:48 +0900261 * Internal non-parcelable wrapper for UserInfo that is not exposed to other system apps.
Xiaohui Chenb3b92582015-12-07 11:22:13 -0800262 */
Kenny Guy02c89902016-11-15 19:36:38 +0000263 @VisibleForTesting
264 static class UserData {
Amith Yamasani12747872015-12-07 14:19:49 -0800265 // Basic user information and properties
266 UserInfo info;
267 // Account name used when there is a strong association between a user and an account
268 String account;
269 // Account information for seeding into a newly created user. This could also be
270 // used for login validation for an existing user, for updating their credentials.
271 // In the latter case, data may not need to be persisted as it is only valid for the
272 // current login session.
273 String seedAccountName;
274 String seedAccountType;
275 PersistableBundle seedAccountOptions;
276 // Whether to perist the seed account information to be available after a boot
277 boolean persistSeedData;
278
Makoto Onuki73dded22017-12-20 13:14:48 +0900279 /** Elapsed realtime since boot when the user started. */
280 long startRealtime;
281
282 /** Elapsed realtime since boot when the user was unlocked. */
283 long unlockRealtime;
284
arangelov9b632d72018-12-07 23:21:22 +0000285 private long mLastRequestQuietModeEnabledMillis;
286
287 void setLastRequestQuietModeEnabledMillis(long millis) {
288 mLastRequestQuietModeEnabledMillis = millis;
289 }
290
291 long getLastRequestQuietModeEnabledMillis() {
292 return mLastRequestQuietModeEnabledMillis;
293 }
294
Amith Yamasani12747872015-12-07 14:19:49 -0800295 void clearSeedAccountData() {
296 seedAccountName = null;
297 seedAccountType = null;
298 seedAccountOptions = null;
299 persistSeedData = false;
300 }
301 }
302
Xiaohui Chenb3b92582015-12-07 11:22:13 -0800303 @GuardedBy("mUsersLock")
Amith Yamasani12747872015-12-07 14:19:49 -0800304 private final SparseArray<UserData> mUsers = new SparseArray<>();
Xiaohui Chenb3b92582015-12-07 11:22:13 -0800305
306 /**
Makoto Onuki068c54a2015-10-13 14:34:03 -0700307 * User restrictions set via UserManager. This doesn't include restrictions set by
Pavel Grafov6a40f092016-10-25 15:46:51 +0100308 * device owner / profile owners. Only non-empty restriction bundles are stored.
Makoto Onuki068c54a2015-10-13 14:34:03 -0700309 *
310 * DO NOT Change existing {@link Bundle} in it. When changing a restriction for a user,
311 * a new {@link Bundle} should always be created and set. This is because a {@link Bundle}
312 * maybe shared between {@link #mBaseUserRestrictions} and
313 * {@link #mCachedEffectiveUserRestrictions}, but they should always updated separately.
314 * (Otherwise we won't be able to detect what restrictions have changed in
Fyodor Kupolov82402752015-10-28 14:54:51 -0700315 * {@link #updateUserRestrictionsInternalLR}.
Makoto Onuki068c54a2015-10-13 14:34:03 -0700316 */
317 @GuardedBy("mRestrictionsLock")
318 private final SparseArray<Bundle> mBaseUserRestrictions = new SparseArray<>();
319
320 /**
321 * Cached user restrictions that are in effect -- i.e. {@link #mBaseUserRestrictions} combined
322 * with device / profile owner restrictions. We'll initialize it lazily; use
323 * {@link #getEffectiveUserRestrictions} to access it.
324 *
325 * DO NOT Change existing {@link Bundle} in it. When changing a restriction for a user,
326 * a new {@link Bundle} should always be created and set. This is because a {@link Bundle}
327 * maybe shared between {@link #mBaseUserRestrictions} and
328 * {@link #mCachedEffectiveUserRestrictions}, but they should always updated separately.
329 * (Otherwise we won't be able to detect what restrictions have changed in
Fyodor Kupolov82402752015-10-28 14:54:51 -0700330 * {@link #updateUserRestrictionsInternalLR}.
Makoto Onuki068c54a2015-10-13 14:34:03 -0700331 */
332 @GuardedBy("mRestrictionsLock")
333 private final SparseArray<Bundle> mCachedEffectiveUserRestrictions = new SparseArray<>();
334
Makoto Onuki4f160732015-10-27 17:15:38 -0700335 /**
Makoto Onuki1a2cd742015-11-16 13:51:27 -0800336 * User restrictions that have already been applied in
337 * {@link #updateUserRestrictionsInternalLR(Bundle, int)}. We use it to detect restrictions
338 * that have changed since the last
339 * {@link #updateUserRestrictionsInternalLR(Bundle, int)} call.
Makoto Onuki4f160732015-10-27 17:15:38 -0700340 */
341 @GuardedBy("mRestrictionsLock")
342 private final SparseArray<Bundle> mAppliedUserRestrictions = new SparseArray<>();
343
Makoto Onuki1a2cd742015-11-16 13:51:27 -0800344 /**
Makoto Onukie7927da2015-11-25 10:05:17 -0800345 * User restrictions set by {@link com.android.server.devicepolicy.DevicePolicyManagerService}
Pavel Grafov6a40f092016-10-25 15:46:51 +0100346 * that should be applied to all users, including guests. Only non-empty restriction bundles are
347 * stored.
Makoto Onuki1a2cd742015-11-16 13:51:27 -0800348 */
349 @GuardedBy("mRestrictionsLock")
Pavel Grafov6a40f092016-10-25 15:46:51 +0100350 private final SparseArray<Bundle> mDevicePolicyGlobalUserRestrictions = new SparseArray<>();
Makoto Onuki1a2cd742015-11-16 13:51:27 -0800351
352 /**
Zoltan Szatmary-Bane7834602016-04-08 18:41:11 +0100353 * Id of the user that set global restrictions.
354 */
355 @GuardedBy("mRestrictionsLock")
Pavel Grafov6a40f092016-10-25 15:46:51 +0100356 private int mDeviceOwnerUserId = UserHandle.USER_NULL;
Zoltan Szatmary-Bane7834602016-04-08 18:41:11 +0100357
358 /**
Makoto Onukie7927da2015-11-25 10:05:17 -0800359 * User restrictions set by {@link com.android.server.devicepolicy.DevicePolicyManagerService}
Pavel Grafov6a40f092016-10-25 15:46:51 +0100360 * for each user. Only non-empty restriction bundles are stored.
Makoto Onuki1a2cd742015-11-16 13:51:27 -0800361 */
362 @GuardedBy("mRestrictionsLock")
363 private final SparseArray<Bundle> mDevicePolicyLocalUserRestrictions = new SparseArray<>();
364
Fyodor Kupolove80085d2015-11-06 18:21:39 -0800365 @GuardedBy("mGuestRestrictions")
Amith Yamasanie4afaa32014-06-30 14:55:07 +0530366 private final Bundle mGuestRestrictions = new Bundle();
Jeff Sharkeyffe0cb42012-11-05 17:24:43 -0800367
368 /**
369 * Set of user IDs being actively removed. Removed IDs linger in this set
370 * for several seconds to work around a VFS caching issue.
Fyodor Kupolov0f4533d2016-05-18 18:43:12 -0700371 * Use {@link #addRemovingUserIdLocked(int)} to add elements to this array
Jeff Sharkeyffe0cb42012-11-05 17:24:43 -0800372 */
Fyodor Kupolov82402752015-10-28 14:54:51 -0700373 @GuardedBy("mUsersLock")
Jeff Sharkeyffe0cb42012-11-05 17:24:43 -0800374 private final SparseBooleanArray mRemovingUserIds = new SparseBooleanArray();
Dianne Hackborn4428e172012-08-24 17:43:05 -0700375
Fyodor Kupolov0f4533d2016-05-18 18:43:12 -0700376 /**
377 * Queue of recently removed userIds. Used for recycling of userIds
378 */
379 @GuardedBy("mUsersLock")
380 private final LinkedList<Integer> mRecentlyRemovedIds = new LinkedList<>();
381
Fyodor Kupolov82402752015-10-28 14:54:51 -0700382 @GuardedBy("mUsersLock")
Amith Yamasani0b285492011-04-14 17:35:23 -0700383 private int[] mUserIds;
Fyodor Kupolove80085d2015-11-06 18:21:39 -0800384 @GuardedBy("mPackagesLock")
Amith Yamasani2a003292012-08-14 18:25:45 -0700385 private int mNextSerialNumber;
Amith Yamasani6f34b412012-10-22 18:19:27 -0700386 private int mUserVersion = 0;
Amith Yamasani0b285492011-04-14 17:35:23 -0700387
Jason Monk62062992014-05-06 09:55:28 -0400388 private IAppOpsService mAppOpsService;
389
Makoto Onuki068c54a2015-10-13 14:34:03 -0700390 private final LocalService mLocalService;
391
Makoto Onukie7927da2015-11-25 10:05:17 -0800392 @GuardedBy("mUsersLock")
393 private boolean mIsDeviceManaged;
394
395 @GuardedBy("mUsersLock")
396 private final SparseBooleanArray mIsUserManaged = new SparseBooleanArray();
397
Makoto Onukid45a4a22015-11-02 17:17:38 -0800398 @GuardedBy("mUserRestrictionsListeners")
399 private final ArrayList<UserRestrictionsListener> mUserRestrictionsListeners =
400 new ArrayList<>();
401
Clara Bayarria1771112015-12-18 16:29:18 +0000402 private final LockPatternUtils mLockPatternUtils;
403
Ricky Waib1dd80b2016-06-07 18:00:55 +0100404 private final String ACTION_DISABLE_QUIET_MODE_AFTER_UNLOCK =
405 "com.android.server.pm.DISABLE_QUIET_MODE_AFTER_UNLOCK";
406
407 private final BroadcastReceiver mDisableQuietModeCallback = new BroadcastReceiver() {
408 @Override
409 public void onReceive(Context context, Intent intent) {
Tony Mak64fd8c02017-12-01 19:11:59 +0000410 if (!ACTION_DISABLE_QUIET_MODE_AFTER_UNLOCK.equals(intent.getAction())) {
411 return;
Ricky Waib1dd80b2016-06-07 18:00:55 +0100412 }
Tony Mak64fd8c02017-12-01 19:11:59 +0000413 final IntentSender target = intent.getParcelableExtra(Intent.EXTRA_INTENT);
Bookatzf56f2582019-09-04 16:06:41 -0700414 final int userId = intent.getIntExtra(Intent.EXTRA_USER_ID, UserHandle.USER_NULL);
Fyodor Kupolova68a2862018-01-30 18:22:00 -0800415 // Call setQuietModeEnabled on bg thread to avoid ANR
arangelov9b632d72018-12-07 23:21:22 +0000416 BackgroundThread.getHandler().post(() ->
Bookatzf56f2582019-09-04 16:06:41 -0700417 setQuietModeEnabled(userId, false, target, /* callingPackage */ null));
Ricky Waib1dd80b2016-06-07 18:00:55 +0100418 }
419 };
420
Lenka Trochtovaf348e8e2016-01-07 17:20:34 +0100421 /**
Tony Mak64fd8c02017-12-01 19:11:59 +0000422 * Start an {@link IntentSender} when user is unlocked after disabling quiet mode.
423 *
Tony Makbece85d2018-01-12 12:10:17 +0000424 * @see {@link #requestQuietModeEnabled(String, boolean, int, IntentSender)}
Tony Mak64fd8c02017-12-01 19:11:59 +0000425 */
426 private class DisableQuietModeUserUnlockedCallback extends IProgressListener.Stub {
427 private final IntentSender mTarget;
428
429 public DisableQuietModeUserUnlockedCallback(IntentSender target) {
430 Preconditions.checkNotNull(target);
431 mTarget = target;
432 }
433
434 @Override
435 public void onStarted(int id, Bundle extras) {}
436
437 @Override
438 public void onProgress(int id, int progress, Bundle extras) {}
439
440 @Override
441 public void onFinished(int id, Bundle extras) {
442 try {
443 mContext.startIntentSender(mTarget, null, 0, 0, 0);
444 } catch (IntentSender.SendIntentException e) {
445 Slog.e(LOG_TAG, "Failed to start the target in the callback", e);
446 }
447 }
448 }
449
450 /**
Lenka Trochtovaf348e8e2016-01-07 17:20:34 +0100451 * Whether all users should be created ephemeral.
452 */
453 @GuardedBy("mUsersLock")
454 private boolean mForceEphemeralUsers;
455
Amith Yamasaniea1b9d72016-05-27 15:57:38 +0000456 @GuardedBy("mUserStates")
457 private final SparseIntArray mUserStates = new SparseIntArray();
Fyodor Kupolov6c915ea2016-05-09 19:10:53 -0700458
Amith Yamasani258848d2012-08-10 17:06:33 -0700459 private static UserManagerService sInstance;
Amith Yamasani258848d2012-08-10 17:06:33 -0700460
Dianne Hackborn4428e172012-08-24 17:43:05 -0700461 public static UserManagerService getInstance() {
462 synchronized (UserManagerService.class) {
463 return sInstance;
Amith Yamasani258848d2012-08-10 17:06:33 -0700464 }
Amith Yamasani258848d2012-08-10 17:06:33 -0700465 }
Amith Yamasani4b2e9342011-03-31 12:38:53 -0700466
Amith Yamasanid04aaa32016-06-13 12:09:36 -0700467 public static class LifeCycle extends SystemService {
468
469 private UserManagerService mUms;
470
471 /**
472 * @param context
473 */
474 public LifeCycle(Context context) {
475 super(context);
476 }
477
478 @Override
479 public void onStart() {
480 mUms = UserManagerService.getInstance();
481 publishBinderService(Context.USER_SERVICE, mUms);
482 }
483
484 @Override
485 public void onBootPhase(int phase) {
486 if (phase == SystemService.PHASE_ACTIVITY_MANAGER_READY) {
487 mUms.cleanupPartialUsers();
488 }
489 }
Makoto Onuki73dded22017-12-20 13:14:48 +0900490
491 @Override
Bookatzf56f2582019-09-04 16:06:41 -0700492 public void onStartUser(@UserIdInt int userId) {
Makoto Onuki73dded22017-12-20 13:14:48 +0900493 synchronized (mUms.mUsersLock) {
Bookatzf56f2582019-09-04 16:06:41 -0700494 final UserData user = mUms.getUserDataLU(userId);
Makoto Onuki73dded22017-12-20 13:14:48 +0900495 if (user != null) {
496 user.startRealtime = SystemClock.elapsedRealtime();
497 }
498 }
499 }
500
501 @Override
Bookatzf56f2582019-09-04 16:06:41 -0700502 public void onUnlockUser(@UserIdInt int userId) {
Makoto Onuki73dded22017-12-20 13:14:48 +0900503 synchronized (mUms.mUsersLock) {
Bookatzf56f2582019-09-04 16:06:41 -0700504 final UserData user = mUms.getUserDataLU(userId);
Makoto Onuki73dded22017-12-20 13:14:48 +0900505 if (user != null) {
506 user.unlockRealtime = SystemClock.elapsedRealtime();
507 }
508 }
509 }
510
511 @Override
Bookatzf56f2582019-09-04 16:06:41 -0700512 public void onStopUser(@UserIdInt int userId) {
Makoto Onuki73dded22017-12-20 13:14:48 +0900513 synchronized (mUms.mUsersLock) {
Bookatzf56f2582019-09-04 16:06:41 -0700514 final UserData user = mUms.getUserDataLU(userId);
Makoto Onuki73dded22017-12-20 13:14:48 +0900515 if (user != null) {
516 user.startRealtime = 0;
517 user.unlockRealtime = 0;
518 }
519 }
520 }
Amith Yamasanid04aaa32016-06-13 12:09:36 -0700521 }
522
Fyodor Kupolov0f4533d2016-05-18 18:43:12 -0700523 // TODO b/28848102 Add support for test dependencies injection
Fyodor Kupolove80085d2015-11-06 18:21:39 -0800524 @VisibleForTesting
Fyodor Kupolov0f4533d2016-05-18 18:43:12 -0700525 UserManagerService(Context context) {
Fyodor Kupolov5c0ecfd2017-01-27 11:11:57 -0800526 this(context, null, null, new Object(), context.getCacheDir());
Amith Yamasani4b2e9342011-03-31 12:38:53 -0700527 }
528
Dianne Hackborn4428e172012-08-24 17:43:05 -0700529 /**
530 * Called by package manager to create the service. This is closely
531 * associated with the package manager, and the given lock is the
532 * package manager's own lock.
533 */
Fyodor Kupolov5c0ecfd2017-01-27 11:11:57 -0800534 UserManagerService(Context context, PackageManagerService pm, UserDataPreparer userDataPreparer,
535 Object packagesLock) {
536 this(context, pm, userDataPreparer, packagesLock, Environment.getDataDirectory());
Amith Yamasani4b2e9342011-03-31 12:38:53 -0700537 }
538
Dianne Hackborn4428e172012-08-24 17:43:05 -0700539 private UserManagerService(Context context, PackageManagerService pm,
Fyodor Kupolov5c0ecfd2017-01-27 11:11:57 -0800540 UserDataPreparer userDataPreparer, Object packagesLock, File dataDir) {
Dianne Hackbornd4ac8d72012-09-27 23:20:10 -0700541 mContext = context;
542 mPm = pm;
Dianne Hackbornd4ac8d72012-09-27 23:20:10 -0700543 mPackagesLock = packagesLock;
Fyodor Kupolov75d0ea82014-12-15 16:21:07 -0800544 mHandler = new MainHandler();
Fyodor Kupolov5c0ecfd2017-01-27 11:11:57 -0800545 mUserDataPreparer = userDataPreparer;
Fyodor Kupolove80085d2015-11-06 18:21:39 -0800546 synchronized (mPackagesLock) {
547 mUsersDir = new File(dataDir, USER_INFO_DIR);
548 mUsersDir.mkdirs();
549 // Make zeroth user directory, for services to migrate their files to that location
550 File userZeroDir = new File(mUsersDir, String.valueOf(UserHandle.USER_SYSTEM));
551 userZeroDir.mkdirs();
552 FileUtils.setPermissions(mUsersDir.toString(),
553 FileUtils.S_IRWXU | FileUtils.S_IRWXG | FileUtils.S_IROTH | FileUtils.S_IXOTH,
554 -1, -1);
555 mUserListFile = new File(mUsersDir, USER_LIST_FILENAME);
556 initDefaultGuestRestrictions();
557 readUserListLP();
558 sInstance = this;
Xiaohui Chen4be96e42015-05-06 09:55:43 -0700559 }
Bookatz04d7ae52019-08-05 14:07:12 -0700560 mSystemPackageInstaller = new UserSystemPackageInstaller(this);
Makoto Onuki068c54a2015-10-13 14:34:03 -0700561 mLocalService = new LocalService();
562 LocalServices.addService(UserManagerInternal.class, mLocalService);
Clara Bayarria1771112015-12-18 16:29:18 +0000563 mLockPatternUtils = new LockPatternUtils(mContext);
Amith Yamasaniea1b9d72016-05-27 15:57:38 +0000564 mUserStates.put(UserHandle.USER_SYSTEM, UserState.STATE_BOOTING);
Xiaohui Chen4be96e42015-05-06 09:55:43 -0700565 }
566
567 void systemReady() {
Jason Monk62062992014-05-06 09:55:28 -0400568 mAppOpsService = IAppOpsService.Stub.asInterface(
569 ServiceManager.getService(Context.APP_OPS_SERVICE));
Makoto Onuki1a2cd742015-11-16 13:51:27 -0800570
571 synchronized (mRestrictionsLock) {
572 applyUserRestrictionsLR(UserHandle.USER_SYSTEM);
Jason Monk62062992014-05-06 09:55:28 -0400573 }
Samuel Tand9453b82016-03-14 15:57:02 -0700574
575 UserInfo currentGuestUser = findCurrentGuestUser();
576 if (currentGuestUser != null && !hasUserRestriction(
577 UserManager.DISALLOW_CONFIG_WIFI, currentGuestUser.id)) {
578 // If a guest user currently exists, apply the DISALLOW_CONFIG_WIFI option
579 // to it, in case this guest was created in a previous version where this
580 // user restriction was not a default guest restriction.
581 setUserRestriction(UserManager.DISALLOW_CONFIG_WIFI, true, currentGuestUser.id);
582 }
Amith Yamasanieb437d42016-04-29 09:31:25 -0700583
Ricky Waib1dd80b2016-06-07 18:00:55 +0100584 mContext.registerReceiver(mDisableQuietModeCallback,
585 new IntentFilter(ACTION_DISABLE_QUIET_MODE_AFTER_UNLOCK),
586 null, mHandler);
Amith Yamasani258848d2012-08-10 17:06:33 -0700587 }
588
Patrick Baumann6ae7afc2019-07-30 13:11:28 -0700589 /**
590 * This method retrieves the {@link UserManagerInternal} only for the purpose of
591 * PackageManagerService construction.
592 */
593 UserManagerInternal getInternalForInjectorOnly() {
594 return mLocalService;
595 }
596
Amith Yamasanid04aaa32016-06-13 12:09:36 -0700597 void cleanupPartialUsers() {
598 // Prune out any partially created, partially removed and ephemeral users.
599 ArrayList<UserInfo> partials = new ArrayList<>();
600 synchronized (mUsersLock) {
601 final int userSize = mUsers.size();
602 for (int i = 0; i < userSize; i++) {
603 UserInfo ui = mUsers.valueAt(i).info;
Felipe Lemec1ca4412019-09-11 09:23:26 -0700604 if ((ui.partial || ui.guestToRemove || (ui.isEphemeral() && !ui.preCreated))
605 && i != 0) {
Amith Yamasanid04aaa32016-06-13 12:09:36 -0700606 partials.add(ui);
Fyodor Kupolov0f4533d2016-05-18 18:43:12 -0700607 addRemovingUserIdLocked(ui.id);
Amith Yamasaniae261892016-06-27 10:40:09 -0700608 ui.partial = true;
Amith Yamasanid04aaa32016-06-13 12:09:36 -0700609 }
610 }
611 }
612 final int partialsSize = partials.size();
613 for (int i = 0; i < partialsSize; i++) {
614 UserInfo ui = partials.get(i);
615 Slog.w(LOG_TAG, "Removing partially created user " + ui.id
616 + " (name=" + ui.name + ")");
617 removeUserState(ui.id);
618 }
619 }
620
Amith Yamasani258848d2012-08-10 17:06:33 -0700621 @Override
Bookatzf56f2582019-09-04 16:06:41 -0700622 public String getUserAccount(@UserIdInt int userId) {
Xiaohui Chenb3b92582015-12-07 11:22:13 -0800623 checkManageUserAndAcrossUsersFullPermission("get user account");
624 synchronized (mUsersLock) {
Amith Yamasani12747872015-12-07 14:19:49 -0800625 return mUsers.get(userId).account;
Xiaohui Chenb3b92582015-12-07 11:22:13 -0800626 }
627 }
628
629 @Override
Bookatzf56f2582019-09-04 16:06:41 -0700630 public void setUserAccount(@UserIdInt int userId, String accountName) {
Xiaohui Chenb3b92582015-12-07 11:22:13 -0800631 checkManageUserAndAcrossUsersFullPermission("set user account");
Amith Yamasani12747872015-12-07 14:19:49 -0800632 UserData userToUpdate = null;
Xiaohui Chenb3b92582015-12-07 11:22:13 -0800633 synchronized (mPackagesLock) {
634 synchronized (mUsersLock) {
Amith Yamasani12747872015-12-07 14:19:49 -0800635 final UserData userData = mUsers.get(userId);
636 if (userData == null) {
637 Slog.e(LOG_TAG, "User not found for setting user account: u" + userId);
638 return;
639 }
640 String currentAccount = userData.account;
Narayan Kamath607223f2018-02-19 14:09:02 +0000641 if (!Objects.equals(currentAccount, accountName)) {
Amith Yamasani12747872015-12-07 14:19:49 -0800642 userData.account = accountName;
643 userToUpdate = userData;
Xiaohui Chenb3b92582015-12-07 11:22:13 -0800644 }
645 }
646
647 if (userToUpdate != null) {
648 writeUserLP(userToUpdate);
649 }
650 }
651 }
652
653 @Override
Xiaohui Chen70f6c382015-04-28 14:21:43 -0700654 public UserInfo getPrimaryUser() {
655 checkManageUsersPermission("query users");
Fyodor Kupolov82402752015-10-28 14:54:51 -0700656 synchronized (mUsersLock) {
Amith Yamasani515d4062015-09-28 11:30:06 -0700657 final int userSize = mUsers.size();
658 for (int i = 0; i < userSize; i++) {
Amith Yamasani12747872015-12-07 14:19:49 -0800659 UserInfo ui = mUsers.valueAt(i).info;
Xiaohui Chend3e9e182015-11-18 13:37:32 -0800660 if (ui.isPrimary() && !mRemovingUserIds.get(ui.id)) {
Xiaohui Chen70f6c382015-04-28 14:21:43 -0700661 return ui;
662 }
663 }
664 }
665 return null;
666 }
667
Xiaohui Chen594f2082015-08-18 11:04:20 -0700668 public @NonNull List<UserInfo> getUsers(boolean excludeDying) {
Felipe Lemec1ca4412019-09-11 09:23:26 -0700669 return getUsers(/*excludePartial= */ true, excludeDying, /* excludePreCreated= */ true);
670 }
671
Felipe Leme09a7f2d2019-10-02 16:27:46 -0700672 @Override
673 public @NonNull List<UserInfo> getUsers(boolean excludePartial, boolean excludeDying,
Felipe Lemec1ca4412019-09-11 09:23:26 -0700674 boolean excludePreCreated) {
Sudheer Shankaf5cea032016-06-08 17:13:24 -0700675 checkManageOrCreateUsersPermission("query users");
Fyodor Kupolov82402752015-10-28 14:54:51 -0700676 synchronized (mUsersLock) {
Amith Yamasani13593602012-03-22 16:16:17 -0700677 ArrayList<UserInfo> users = new ArrayList<UserInfo>(mUsers.size());
Amith Yamasani515d4062015-09-28 11:30:06 -0700678 final int userSize = mUsers.size();
679 for (int i = 0; i < userSize; i++) {
Amith Yamasani12747872015-12-07 14:19:49 -0800680 UserInfo ui = mUsers.valueAt(i).info;
Felipe Lemec1ca4412019-09-11 09:23:26 -0700681 if ((excludePartial && ui.partial)
682 || (excludeDying && mRemovingUserIds.get(ui.id))
683 || (excludePreCreated && ui.preCreated)) {
Dianne Hackbornd4ac8d72012-09-27 23:20:10 -0700684 continue;
685 }
Felipe Lemec1ca4412019-09-11 09:23:26 -0700686 users.add(userWithName(ui));
Amith Yamasani13593602012-03-22 16:16:17 -0700687 }
688 return users;
Amith Yamasani4b2e9342011-03-31 12:38:53 -0700689 }
Amith Yamasani13593602012-03-22 16:16:17 -0700690 }
691
Amith Yamasani258848d2012-08-10 17:06:33 -0700692 @Override
Bookatzf56f2582019-09-04 16:06:41 -0700693 public List<UserInfo> getProfiles(@UserIdInt int userId, boolean enabledOnly) {
Fyodor Kupolovc533b562016-04-01 14:37:07 -0700694 boolean returnFullInfo = true;
Amith Yamasani4f582632014-02-19 14:31:52 -0800695 if (userId != UserHandle.getCallingUserId()) {
Sudheer Shanka74680912016-07-29 11:03:37 -0700696 checkManageOrCreateUsersPermission("getting profiles related to user " + userId);
Fyodor Kupolovc533b562016-04-01 14:37:07 -0700697 } else {
698 returnFullInfo = hasManageUsersPermission();
Amith Yamasani4f582632014-02-19 14:31:52 -0800699 }
Amith Yamasanibe465322014-04-24 13:45:17 -0700700 final long ident = Binder.clearCallingIdentity();
701 try {
Fyodor Kupolov82402752015-10-28 14:54:51 -0700702 synchronized (mUsersLock) {
Fyodor Kupolovc533b562016-04-01 14:37:07 -0700703 return getProfilesLU(userId, enabledOnly, returnFullInfo);
Alexandra Gherghina385124d2014-04-03 13:37:39 +0100704 }
Amith Yamasanibe465322014-04-24 13:45:17 -0700705 } finally {
706 Binder.restoreCallingIdentity(ident);
Kenny Guya52dc3e2014-02-11 15:33:14 +0000707 }
708 }
709
Fyodor Kupolov7f98aa42016-04-07 14:56:25 -0700710 @Override
Bookatzf56f2582019-09-04 16:06:41 -0700711 public int[] getProfileIds(@UserIdInt int userId, boolean enabledOnly) {
Fyodor Kupolov7f98aa42016-04-07 14:56:25 -0700712 if (userId != UserHandle.getCallingUserId()) {
bohu12d23a12016-09-26 16:20:07 -0700713 checkManageOrCreateUsersPermission("getting profiles related to user " + userId);
Fyodor Kupolov7f98aa42016-04-07 14:56:25 -0700714 }
715 final long ident = Binder.clearCallingIdentity();
716 try {
717 synchronized (mUsersLock) {
718 return getProfileIdsLU(userId, enabledOnly).toArray();
719 }
720 } finally {
721 Binder.restoreCallingIdentity(ident);
722 }
723 }
724
Amith Yamasanibe465322014-04-24 13:45:17 -0700725 /** Assume permissions already checked and caller's identity cleared */
Andreas Gampe2e8c7672018-07-20 13:01:08 -0700726 @GuardedBy("mUsersLock")
Bookatzf56f2582019-09-04 16:06:41 -0700727 private List<UserInfo> getProfilesLU(@UserIdInt int userId, boolean enabledOnly,
728 boolean fullInfo) {
Fyodor Kupolov7f98aa42016-04-07 14:56:25 -0700729 IntArray profileIds = getProfileIdsLU(userId, enabledOnly);
730 ArrayList<UserInfo> users = new ArrayList<>(profileIds.size());
731 for (int i = 0; i < profileIds.size(); i++) {
732 int profileId = profileIds.get(i);
733 UserInfo userInfo = mUsers.get(profileId).info;
734 // If full info is not required - clear PII data to prevent 3P apps from reading it
735 if (!fullInfo) {
736 userInfo = new UserInfo(userInfo);
737 userInfo.name = null;
738 userInfo.iconPath = null;
739 } else {
740 userInfo = userWithName(userInfo);
741 }
742 users.add(userInfo);
743 }
744 return users;
745 }
746
747 /**
748 * Assume permissions already checked and caller's identity cleared
749 */
Andreas Gampe2e8c7672018-07-20 13:01:08 -0700750 @GuardedBy("mUsersLock")
Bookatzf56f2582019-09-04 16:06:41 -0700751 private IntArray getProfileIdsLU(@UserIdInt int userId, boolean enabledOnly) {
Fyodor Kupolov82402752015-10-28 14:54:51 -0700752 UserInfo user = getUserInfoLU(userId);
Fyodor Kupolov7f98aa42016-04-07 14:56:25 -0700753 IntArray result = new IntArray(mUsers.size());
Amith Yamasanidda003f2014-08-28 18:06:51 -0700754 if (user == null) {
755 // Probably a dying user
Fyodor Kupolov7f98aa42016-04-07 14:56:25 -0700756 return result;
Amith Yamasanidda003f2014-08-28 18:06:51 -0700757 }
Amith Yamasani515d4062015-09-28 11:30:06 -0700758 final int userSize = mUsers.size();
759 for (int i = 0; i < userSize; i++) {
Amith Yamasani12747872015-12-07 14:19:49 -0800760 UserInfo profile = mUsers.valueAt(i).info;
Amith Yamasanibe465322014-04-24 13:45:17 -0700761 if (!isProfileOf(user, profile)) {
762 continue;
763 }
Alexandra Gherghinadf35d572014-04-09 13:54:39 +0100764 if (enabledOnly && !profile.isEnabled()) {
765 continue;
Amith Yamasanibe465322014-04-24 13:45:17 -0700766 }
Amith Yamasani70fcf0c2014-07-11 08:40:19 -0700767 if (mRemovingUserIds.get(profile.id)) {
768 continue;
769 }
Tony Mak80189cd2016-04-05 17:21:42 +0100770 if (profile.partial) {
771 continue;
772 }
Fyodor Kupolov7f98aa42016-04-07 14:56:25 -0700773 result.add(profile.id);
Amith Yamasanibe465322014-04-24 13:45:17 -0700774 }
Fyodor Kupolov7f98aa42016-04-07 14:56:25 -0700775 return result;
Amith Yamasanibe465322014-04-24 13:45:17 -0700776 }
777
Jessica Hummelbe81c802014-04-22 15:49:22 +0100778 @Override
Bookatzf56f2582019-09-04 16:06:41 -0700779 public int getCredentialOwnerProfile(@UserIdInt int userId) {
Andres Moralesc5548c02015-08-05 10:23:12 -0700780 checkManageUsersPermission("get the credential owner");
Bookatzf56f2582019-09-04 16:06:41 -0700781 if (!mLockPatternUtils.isSeparateProfileChallengeEnabled(userId)) {
Fyodor Kupolov82402752015-10-28 14:54:51 -0700782 synchronized (mUsersLock) {
Bookatzf56f2582019-09-04 16:06:41 -0700783 UserInfo profileParent = getProfileParentLU(userId);
Andres Moralesc5548c02015-08-05 10:23:12 -0700784 if (profileParent != null) {
785 return profileParent.id;
786 }
787 }
788 }
789
Bookatzf56f2582019-09-04 16:06:41 -0700790 return userId;
Andres Moralesc5548c02015-08-05 10:23:12 -0700791 }
792
793 @Override
Bookatzf56f2582019-09-04 16:06:41 -0700794 public boolean isSameProfileGroup(@UserIdInt int userId, int otherUserId) {
Xiaohui Chenfd5b7742015-10-14 15:47:04 -0700795 if (userId == otherUserId) return true;
796 checkManageUsersPermission("check if in the same profile group");
Fyodor Kupolov0fb772e2016-10-13 16:27:34 -0700797 return isSameProfileGroupNoChecks(userId, otherUserId);
798 }
799
Bookatzf56f2582019-09-04 16:06:41 -0700800 private boolean isSameProfileGroupNoChecks(@UserIdInt int userId, int otherUserId) {
Fyodor Kupolov82402752015-10-28 14:54:51 -0700801 synchronized (mUsersLock) {
802 UserInfo userInfo = getUserInfoLU(userId);
803 if (userInfo == null || userInfo.profileGroupId == UserInfo.NO_PROFILE_GROUP_ID) {
804 return false;
805 }
806 UserInfo otherUserInfo = getUserInfoLU(otherUserId);
807 if (otherUserInfo == null
808 || otherUserInfo.profileGroupId == UserInfo.NO_PROFILE_GROUP_ID) {
809 return false;
810 }
811 return userInfo.profileGroupId == otherUserInfo.profileGroupId;
Xiaohui Chenfd5b7742015-10-14 15:47:04 -0700812 }
Xiaohui Chenfd5b7742015-10-14 15:47:04 -0700813 }
814
815 @Override
Bookatzf56f2582019-09-04 16:06:41 -0700816 public UserInfo getProfileParent(@UserIdInt int userId) {
Jessica Hummelbe81c802014-04-22 15:49:22 +0100817 checkManageUsersPermission("get the profile parent");
Fyodor Kupolov82402752015-10-28 14:54:51 -0700818 synchronized (mUsersLock) {
Bookatzf56f2582019-09-04 16:06:41 -0700819 return getProfileParentLU(userId);
Fyodor Kupolovff7233e2015-04-08 11:28:52 -0700820 }
821 }
822
Jakub Pawlowski0f1f5b72017-11-15 14:50:43 -0800823 @Override
Bookatzf56f2582019-09-04 16:06:41 -0700824 public int getProfileParentId(@UserIdInt int userId) {
Jakub Pawlowski0f1f5b72017-11-15 14:50:43 -0800825 checkManageUsersPermission("get the profile parent");
Bookatzf56f2582019-09-04 16:06:41 -0700826 return mLocalService.getProfileParentId(userId);
Jakub Pawlowski0f1f5b72017-11-15 14:50:43 -0800827 }
828
Andreas Gampe2e8c7672018-07-20 13:01:08 -0700829 @GuardedBy("mUsersLock")
Bookatzf56f2582019-09-04 16:06:41 -0700830 private UserInfo getProfileParentLU(@UserIdInt int userId) {
831 UserInfo profile = getUserInfoLU(userId);
Fyodor Kupolovff7233e2015-04-08 11:28:52 -0700832 if (profile == null) {
833 return null;
834 }
835 int parentUserId = profile.profileGroupId;
Bookatzf56f2582019-09-04 16:06:41 -0700836 if (parentUserId == userId || parentUserId == UserInfo.NO_PROFILE_GROUP_ID) {
Fyodor Kupolovff7233e2015-04-08 11:28:52 -0700837 return null;
838 } else {
Fyodor Kupolov82402752015-10-28 14:54:51 -0700839 return getUserInfoLU(parentUserId);
Jessica Hummelbe81c802014-04-22 15:49:22 +0100840 }
841 }
842
Fyodor Kupolov82402752015-10-28 14:54:51 -0700843 private static boolean isProfileOf(UserInfo user, UserInfo profile) {
Kenny Guy2a764942014-04-02 13:29:20 +0100844 return user.id == profile.id ||
845 (user.profileGroupId != UserInfo.NO_PROFILE_GROUP_ID
846 && user.profileGroupId == profile.profileGroupId);
Kenny Guya52dc3e2014-02-11 15:33:14 +0000847 }
848
Rubin Xu0a29ecd2015-11-04 15:11:48 +0000849 private void broadcastProfileAvailabilityChanges(UserHandle profileHandle,
Rubin Xuf13c9802016-01-21 18:06:00 +0000850 UserHandle parentHandle, boolean inQuietMode) {
Rubin Xue95057a2016-04-01 16:49:25 +0100851 Intent intent = new Intent();
852 if (inQuietMode) {
853 intent.setAction(Intent.ACTION_MANAGED_PROFILE_UNAVAILABLE);
854 } else {
855 intent.setAction(Intent.ACTION_MANAGED_PROFILE_AVAILABLE);
856 }
Rubin Xuf13c9802016-01-21 18:06:00 +0000857 intent.putExtra(Intent.EXTRA_QUIET_MODE, inQuietMode);
858 intent.putExtra(Intent.EXTRA_USER, profileHandle);
859 intent.putExtra(Intent.EXTRA_USER_HANDLE, profileHandle.getIdentifier());
Rubin Xu0a29ecd2015-11-04 15:11:48 +0000860 intent.addFlags(Intent.FLAG_RECEIVER_REGISTERED_ONLY);
Rubin Xuf13c9802016-01-21 18:06:00 +0000861 mContext.sendBroadcastAsUser(intent, parentHandle);
Rubin Xu0a29ecd2015-11-04 15:11:48 +0000862 }
863
864 @Override
Tony Makbece85d2018-01-12 12:10:17 +0000865 public boolean requestQuietModeEnabled(@NonNull String callingPackage, boolean enableQuietMode,
Bookatzf56f2582019-09-04 16:06:41 -0700866 @UserIdInt int userId, @Nullable IntentSender target) {
Tony Make3d1f652017-12-12 11:00:37 +0000867 Preconditions.checkNotNull(callingPackage);
868
Tony Makb7e6fd42017-12-05 19:40:28 +0000869 if (enableQuietMode && target != null) {
870 throw new IllegalArgumentException(
871 "target should only be specified when we are disabling quiet mode.");
872 }
Rubin Xu0a29ecd2015-11-04 15:11:48 +0000873
Tony Makd390ae92017-12-28 13:23:10 +0000874 ensureCanModifyQuietMode(callingPackage, Binder.getCallingUid(), target != null);
Tony Makb7e6fd42017-12-05 19:40:28 +0000875 final long identity = Binder.clearCallingIdentity();
876 try {
arangelov9b632d72018-12-07 23:21:22 +0000877 boolean result = false;
Tony Makb7e6fd42017-12-05 19:40:28 +0000878 if (enableQuietMode) {
arangelov9b632d72018-12-07 23:21:22 +0000879 setQuietModeEnabled(
Bookatzf56f2582019-09-04 16:06:41 -0700880 userId, true /* enableQuietMode */, target, callingPackage);
arangelov9b632d72018-12-07 23:21:22 +0000881 result = true;
Tony Makb7e6fd42017-12-05 19:40:28 +0000882 } else {
883 boolean needToShowConfirmCredential =
Bookatzf56f2582019-09-04 16:06:41 -0700884 mLockPatternUtils.isSecure(userId)
885 && !StorageManager.isUserKeyUnlocked(userId);
Tony Makb7e6fd42017-12-05 19:40:28 +0000886 if (needToShowConfirmCredential) {
Bookatzf56f2582019-09-04 16:06:41 -0700887 showConfirmCredentialToDisableQuietMode(userId, target);
Tony Makb7e6fd42017-12-05 19:40:28 +0000888 } else {
arangelov9b632d72018-12-07 23:21:22 +0000889 setQuietModeEnabled(
Bookatzf56f2582019-09-04 16:06:41 -0700890 userId, false /* enableQuietMode */, target, callingPackage);
arangelov9b632d72018-12-07 23:21:22 +0000891 result = true;
Tony Makb7e6fd42017-12-05 19:40:28 +0000892 }
Rubin Xu0a29ecd2015-11-04 15:11:48 +0000893 }
arangelov9b632d72018-12-07 23:21:22 +0000894 return result;
Tony Makb7e6fd42017-12-05 19:40:28 +0000895 } finally {
896 Binder.restoreCallingIdentity(identity);
897 }
898 }
899
Tony Make3d1f652017-12-12 11:00:37 +0000900 /**
Tony Makd390ae92017-12-28 13:23:10 +0000901 * The caller can modify quiet mode if it meets one of these conditions:
Tony Make3d1f652017-12-12 11:00:37 +0000902 * <ul>
903 * <li>Has system UID or root UID</li>
904 * <li>Has {@link Manifest.permission#MODIFY_QUIET_MODE}</li>
905 * <li>Has {@link Manifest.permission#MANAGE_USERS}</li>
906 * </ul>
Tony Makd390ae92017-12-28 13:23:10 +0000907 * <p>
908 * If caller wants to start an intent after disabling the quiet mode, it must has
909 * {@link Manifest.permission#MANAGE_USERS}.
Tony Make3d1f652017-12-12 11:00:37 +0000910 */
Tony Makd390ae92017-12-28 13:23:10 +0000911 private void ensureCanModifyQuietMode(String callingPackage, int callingUid,
912 boolean startIntent) {
Tony Make3d1f652017-12-12 11:00:37 +0000913 if (hasManageUsersPermission()) {
Tony Makd390ae92017-12-28 13:23:10 +0000914 return;
Tony Make3d1f652017-12-12 11:00:37 +0000915 }
Tony Makd390ae92017-12-28 13:23:10 +0000916 if (startIntent) {
917 throw new SecurityException("MANAGE_USERS permission is required to start intent "
918 + "after disabling quiet mode.");
919 }
jovanakf24ad492018-05-18 12:15:59 -0700920 final boolean hasModifyQuietModePermission = hasPermissionGranted(
921 Manifest.permission.MODIFY_QUIET_MODE, callingUid);
Tony Make3d1f652017-12-12 11:00:37 +0000922 if (hasModifyQuietModePermission) {
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 verifyCallingPackage(callingPackage, callingUid);
Tony Make3d1f652017-12-12 11:00:37 +0000927 final ShortcutServiceInternal shortcutInternal =
928 LocalServices.getService(ShortcutServiceInternal.class);
929 if (shortcutInternal != null) {
930 boolean isForegroundLauncher =
931 shortcutInternal.isForegroundDefaultLauncher(callingPackage, callingUid);
932 if (isForegroundLauncher) {
Tony Makd390ae92017-12-28 13:23:10 +0000933 return;
Tony Make3d1f652017-12-12 11:00:37 +0000934 }
935 }
Tony Makd390ae92017-12-28 13:23:10 +0000936 throw new SecurityException("Can't modify quiet mode, caller is neither foreground "
937 + "default launcher nor has MANAGE_USERS/MODIFY_QUIET_MODE permission");
Tony Make3d1f652017-12-12 11:00:37 +0000938 }
939
Bookatzf56f2582019-09-04 16:06:41 -0700940 private void setQuietModeEnabled(@UserIdInt int userId, boolean enableQuietMode,
arangelov9b632d72018-12-07 23:21:22 +0000941 IntentSender target, @Nullable String callingPackage) {
Tony Makb7e6fd42017-12-05 19:40:28 +0000942 final UserInfo profile, parent;
943 final UserData profileUserData;
944 synchronized (mUsersLock) {
Bookatzf56f2582019-09-04 16:06:41 -0700945 profile = getUserInfoLU(userId);
946 parent = getProfileParentLU(userId);
Tony Makb7e6fd42017-12-05 19:40:28 +0000947
Rubin Xu0a29ecd2015-11-04 15:11:48 +0000948 if (profile == null || !profile.isManagedProfile()) {
Bookatzf56f2582019-09-04 16:06:41 -0700949 throw new IllegalArgumentException("User " + userId + " is not a profile");
Rubin Xu0a29ecd2015-11-04 15:11:48 +0000950 }
Tony Makb7e6fd42017-12-05 19:40:28 +0000951 if (profile.isQuietModeEnabled() == enableQuietMode) {
952 Slog.i(LOG_TAG, "Quiet mode is already " + enableQuietMode);
953 return;
Rubin Xu0a29ecd2015-11-04 15:11:48 +0000954 }
Tony Makb7e6fd42017-12-05 19:40:28 +0000955 profile.flags ^= UserInfo.FLAG_QUIET_MODE;
956 profileUserData = getUserDataLU(profile.id);
Rubin Xu0a29ecd2015-11-04 15:11:48 +0000957 }
Tony Makb7e6fd42017-12-05 19:40:28 +0000958 synchronized (mPackagesLock) {
959 writeUserLP(profileUserData);
960 }
961 try {
962 if (enableQuietMode) {
Bookatzf56f2582019-09-04 16:06:41 -0700963 ActivityManager.getService().stopUser(userId, /* force */true, null);
Tony Makb7e6fd42017-12-05 19:40:28 +0000964 LocalServices.getService(ActivityManagerInternal.class)
Bookatzf56f2582019-09-04 16:06:41 -0700965 .killForegroundAppsForUser(userId);
Tony Makb7e6fd42017-12-05 19:40:28 +0000966 } else {
967 IProgressListener callback = target != null
968 ? new DisableQuietModeUserUnlockedCallback(target)
969 : null;
970 ActivityManager.getService().startUserInBackgroundWithListener(
Bookatzf56f2582019-09-04 16:06:41 -0700971 userId, callback);
Rubin Xuf13c9802016-01-21 18:06:00 +0000972 }
Bookatzf56f2582019-09-04 16:06:41 -0700973 logQuietModeEnabled(userId, enableQuietMode, callingPackage);
Tony Makb7e6fd42017-12-05 19:40:28 +0000974 } catch (RemoteException e) {
975 // Should not happen, same process.
976 e.rethrowAsRuntimeException();
Rubin Xu0a29ecd2015-11-04 15:11:48 +0000977 }
Tony Makb7e6fd42017-12-05 19:40:28 +0000978 broadcastProfileAvailabilityChanges(profile.getUserHandle(), parent.getUserHandle(),
979 enableQuietMode);
Rubin Xu0a29ecd2015-11-04 15:11:48 +0000980 }
981
Bookatzf56f2582019-09-04 16:06:41 -0700982 private void logQuietModeEnabled(@UserIdInt int userId, boolean enableQuietMode,
arangelov9b632d72018-12-07 23:21:22 +0000983 @Nullable String callingPackage) {
984 UserData userData;
985 synchronized (mUsersLock) {
Bookatzf56f2582019-09-04 16:06:41 -0700986 userData = getUserDataLU(userId);
arangelov9b632d72018-12-07 23:21:22 +0000987 }
988 if (userData == null) {
989 return;
990 }
991 final long now = System.currentTimeMillis();
992 final long period = (userData.getLastRequestQuietModeEnabledMillis() != 0L
993 ? now - userData.getLastRequestQuietModeEnabledMillis()
994 : now - userData.info.creationTime);
995 DevicePolicyEventLogger
996 .createEvent(DevicePolicyEnums.REQUEST_QUIET_MODE_ENABLED)
997 .setStrings(callingPackage)
998 .setBoolean(enableQuietMode)
999 .setTimePeriod(period)
1000 .write();
1001 userData.setLastRequestQuietModeEnabledMillis(now);
1002 }
1003
Rubin Xu0a29ecd2015-11-04 15:11:48 +00001004 @Override
Bookatzf56f2582019-09-04 16:06:41 -07001005 public boolean isQuietModeEnabled(@UserIdInt int userId) {
Rubin Xu0a29ecd2015-11-04 15:11:48 +00001006 synchronized (mPackagesLock) {
1007 UserInfo info;
1008 synchronized (mUsersLock) {
Bookatzf56f2582019-09-04 16:06:41 -07001009 info = getUserInfoLU(userId);
Rubin Xu0a29ecd2015-11-04 15:11:48 +00001010 }
1011 if (info == null || !info.isManagedProfile()) {
Rubin Xuf13c9802016-01-21 18:06:00 +00001012 return false;
Rubin Xu0a29ecd2015-11-04 15:11:48 +00001013 }
1014 return info.isQuietModeEnabled();
1015 }
1016 }
1017
Tony Makb7e6fd42017-12-05 19:40:28 +00001018 /**
1019 * Show confirm credential screen to unlock user in order to turn off quiet mode.
1020 */
1021 private void showConfirmCredentialToDisableQuietMode(
Bookatzf56f2582019-09-04 16:06:41 -07001022 @UserIdInt int userId, @Nullable IntentSender target) {
Tony Makb7e6fd42017-12-05 19:40:28 +00001023 // otherwise, we show a profile challenge to trigger decryption of the user
1024 final KeyguardManager km = (KeyguardManager) mContext.getSystemService(
1025 Context.KEYGUARD_SERVICE);
Bookatzf56f2582019-09-04 16:06:41 -07001026 // We should use userId not credentialOwnerUserId here, as even if it is unified
Tony Makb7e6fd42017-12-05 19:40:28 +00001027 // lock, confirm screenlock page will know and show personal challenge, and unlock
1028 // work profile when personal challenge is correct
Bookatzf56f2582019-09-04 16:06:41 -07001029 final Intent unlockIntent = km.createConfirmDeviceCredentialIntent(null, null, userId);
Tony Makb7e6fd42017-12-05 19:40:28 +00001030 if (unlockIntent == null) {
1031 return;
Benjamin Franzf02420c2016-04-04 18:52:21 +01001032 }
Tony Makb7e6fd42017-12-05 19:40:28 +00001033 final Intent callBackIntent = new Intent(
1034 ACTION_DISABLE_QUIET_MODE_AFTER_UNLOCK);
1035 if (target != null) {
1036 callBackIntent.putExtra(Intent.EXTRA_INTENT, target);
Benjamin Franzf02420c2016-04-04 18:52:21 +01001037 }
Bookatzf56f2582019-09-04 16:06:41 -07001038 callBackIntent.putExtra(Intent.EXTRA_USER_ID, userId);
Tony Makb7e6fd42017-12-05 19:40:28 +00001039 callBackIntent.setPackage(mContext.getPackageName());
1040 callBackIntent.addFlags(Intent.FLAG_RECEIVER_FOREGROUND);
1041 final PendingIntent pendingIntent = PendingIntent.getBroadcast(
1042 mContext,
1043 0,
1044 callBackIntent,
1045 PendingIntent.FLAG_CANCEL_CURRENT |
1046 PendingIntent.FLAG_ONE_SHOT |
1047 PendingIntent.FLAG_IMMUTABLE);
1048 // After unlocking the challenge, it will disable quiet mode and run the original
1049 // intentSender
1050 unlockIntent.putExtra(Intent.EXTRA_INTENT, pendingIntent.getIntentSender());
1051 unlockIntent.setFlags(FLAG_ACTIVITY_NEW_TASK | FLAG_ACTIVITY_EXCLUDE_FROM_RECENTS);
1052 mContext.startActivity(unlockIntent);
Benjamin Franzf02420c2016-04-04 18:52:21 +01001053 }
1054
1055 @Override
Bookatzf56f2582019-09-04 16:06:41 -07001056 public void setUserEnabled(@UserIdInt int userId) {
Alexandra Gherghinadf35d572014-04-09 13:54:39 +01001057 checkManageUsersPermission("enable user");
1058 synchronized (mPackagesLock) {
Fyodor Kupolov82402752015-10-28 14:54:51 -07001059 UserInfo info;
1060 synchronized (mUsersLock) {
1061 info = getUserInfoLU(userId);
1062 }
Alexandra Gherghinadf35d572014-04-09 13:54:39 +01001063 if (info != null && !info.isEnabled()) {
1064 info.flags ^= UserInfo.FLAG_DISABLED;
Amith Yamasani12747872015-12-07 14:19:49 -08001065 writeUserLP(getUserDataLU(info.id));
Alexandra Gherghinadf35d572014-04-09 13:54:39 +01001066 }
1067 }
1068 }
1069
jovanakf24ad492018-05-18 12:15:59 -07001070 @Override
Bookatzf56f2582019-09-04 16:06:41 -07001071 public void setUserAdmin(@UserIdInt int userId) {
jovanakf24ad492018-05-18 12:15:59 -07001072 checkManageUserAndAcrossUsersFullPermission("set user admin");
1073
1074 synchronized (mPackagesLock) {
1075 UserInfo info;
1076 synchronized (mUsersLock) {
1077 info = getUserInfoLU(userId);
1078 }
1079 if (info == null || info.isAdmin()) {
1080 // Exit if no user found with that id, or the user is already an Admin.
1081 return;
1082 }
1083
1084 info.flags ^= UserInfo.FLAG_ADMIN;
1085 writeUserLP(getUserDataLU(info.id));
1086 }
1087
1088 // Remove non-admin restrictions.
1089 // Keep synchronized with createUserEvenWhenDisallowed.
1090 setUserRestriction(UserManager.DISALLOW_SMS, false, userId);
1091 setUserRestriction(UserManager.DISALLOW_OUTGOING_CALLS, false, userId);
1092 }
1093
Andrew Scull85a63bc2016-10-24 13:47:47 +01001094 /**
1095 * Evicts a user's CE key by stopping and restarting the user.
1096 *
1097 * The key is evicted automatically by the user controller when the user has stopped.
1098 */
1099 @Override
1100 public void evictCredentialEncryptionKey(@UserIdInt int userId) {
1101 checkManageUsersPermission("evict CE key");
1102 final IActivityManager am = ActivityManagerNative.getDefault();
1103 final long identity = Binder.clearCallingIdentity();
1104 try {
1105 am.restartUserInBackground(userId);
1106 } catch (RemoteException re) {
1107 throw re.rethrowAsRuntimeException();
1108 } finally {
1109 Binder.restoreCallingIdentity(identity);
1110 }
1111 }
1112
Alexandra Gherghinadf35d572014-04-09 13:54:39 +01001113 @Override
Bookatzf56f2582019-09-04 16:06:41 -07001114 public UserInfo getUserInfo(@UserIdInt int userId) {
Sudheer Shankaaccaa082016-06-14 16:22:57 -07001115 checkManageOrCreateUsersPermission("query user");
Tony Mak8673b282016-03-21 21:10:59 +00001116 synchronized (mUsersLock) {
Amith Yamasani6f48d6e2016-03-23 14:28:25 -07001117 return userWithName(getUserInfoLU(userId));
1118 }
1119 }
1120
1121 /**
1122 * Returns a UserInfo object with the name filled in, for Owner, or the original
1123 * if the name is already set.
1124 */
1125 private UserInfo userWithName(UserInfo orig) {
1126 if (orig != null && orig.name == null && orig.id == UserHandle.USER_SYSTEM) {
1127 UserInfo withName = new UserInfo(orig);
1128 withName.name = getOwnerName();
1129 return withName;
1130 } else {
1131 return orig;
Tony Mak8673b282016-03-21 21:10:59 +00001132 }
1133 }
1134
1135 @Override
Kenny Guy02c89902016-11-15 19:36:38 +00001136 public int getManagedProfileBadge(@UserIdInt int userId) {
Jon Miranda2b340a22019-01-25 14:03:49 -08001137 checkManageOrInteractPermIfCallerInOtherProfileGroup(userId, "getManagedProfileBadge");
Kenny Guy02c89902016-11-15 19:36:38 +00001138 synchronized (mUsersLock) {
1139 UserInfo userInfo = getUserInfoLU(userId);
1140 return userInfo != null ? userInfo.profileBadge : 0;
1141 }
1142 }
1143
1144 @Override
Bookatzf56f2582019-09-04 16:06:41 -07001145 public boolean isManagedProfile(@UserIdInt int userId) {
Jon Miranda2b340a22019-01-25 14:03:49 -08001146 checkManageOrInteractPermIfCallerInOtherProfileGroup(userId, "isManagedProfile");
Fyodor Kupolov82402752015-10-28 14:54:51 -07001147 synchronized (mUsersLock) {
Amith Yamasani1c41dc82016-06-28 16:13:15 -07001148 UserInfo userInfo = getUserInfoLU(userId);
Tony Mak8673b282016-03-21 21:10:59 +00001149 return userInfo != null && userInfo.isManagedProfile();
Amith Yamasani13593602012-03-22 16:16:17 -07001150 }
1151 }
1152
Amith Yamasani71e6c692013-03-24 17:39:28 -07001153 @Override
Bookatzf56f2582019-09-04 16:06:41 -07001154 public boolean isUserUnlockingOrUnlocked(@UserIdInt int userId) {
Fyodor Kupolov2e7e0962016-12-01 18:09:17 -08001155 checkManageOrInteractPermIfCallerInOtherProfileGroup(userId, "isUserUnlockingOrUnlocked");
Fyodor Kupolovc413f702016-10-06 17:11:14 -07001156 return mLocalService.isUserUnlockingOrUnlocked(userId);
1157 }
1158
1159 @Override
Bookatzf56f2582019-09-04 16:06:41 -07001160 public boolean isUserUnlocked(@UserIdInt int userId) {
Fyodor Kupolov2e7e0962016-12-01 18:09:17 -08001161 checkManageOrInteractPermIfCallerInOtherProfileGroup(userId, "isUserUnlocked");
Fyodor Kupolov0468ee92017-05-25 17:06:17 -07001162 return mLocalService.isUserUnlocked(userId);
Fyodor Kupolov2e7e0962016-12-01 18:09:17 -08001163 }
1164
1165 @Override
Bookatzf56f2582019-09-04 16:06:41 -07001166 public boolean isUserRunning(@UserIdInt int userId) {
Fyodor Kupolov2e7e0962016-12-01 18:09:17 -08001167 checkManageOrInteractPermIfCallerInOtherProfileGroup(userId, "isUserRunning");
1168 return mLocalService.isUserRunning(userId);
1169 }
1170
Makoto Onuki73dded22017-12-20 13:14:48 +09001171 @Override
Bookatzcde3d922019-03-08 14:30:00 -08001172 public String getUserName() {
1173 if (!hasManageUsersOrPermission(android.Manifest.permission.GET_ACCOUNTS_PRIVILEGED)) {
1174 throw new SecurityException("You need MANAGE_USERS or GET_ACCOUNTS_PRIVILEGED "
1175 + "permissions to: get user name");
1176 }
1177 final int userId = UserHandle.getUserId(Binder.getCallingUid());
1178 synchronized (mUsersLock) {
1179 UserInfo userInfo = userWithName(getUserInfoLU(userId));
1180 return userInfo == null ? "" : userInfo.name;
1181 }
1182 }
1183
1184 @Override
Makoto Onuki73dded22017-12-20 13:14:48 +09001185 public long getUserStartRealtime() {
1186 final int userId = UserHandle.getUserId(Binder.getCallingUid());
1187 synchronized (mUsersLock) {
1188 final UserData user = getUserDataLU(userId);
1189 if (user != null) {
1190 return user.startRealtime;
1191 }
1192 return 0;
1193 }
1194 }
1195
1196 @Override
1197 public long getUserUnlockRealtime() {
1198 synchronized (mUsersLock) {
1199 final UserData user = getUserDataLU(UserHandle.getUserId(Binder.getCallingUid()));
1200 if (user != null) {
1201 return user.unlockRealtime;
1202 }
1203 return 0;
1204 }
1205 }
1206
Bookatzf56f2582019-09-04 16:06:41 -07001207 private void checkManageOrInteractPermIfCallerInOtherProfileGroup(@UserIdInt int userId,
1208 String name) {
Felipe Lemec1ca4412019-09-11 09:23:26 -07001209 final int callingUserId = UserHandle.getCallingUserId();
Fyodor Kupolov2e7e0962016-12-01 18:09:17 -08001210 if (callingUserId == userId || isSameProfileGroupNoChecks(callingUserId, userId) ||
1211 hasManageUsersPermission()) {
1212 return;
1213 }
jovanakf24ad492018-05-18 12:15:59 -07001214 if (!hasPermissionGranted(Manifest.permission.INTERACT_ACROSS_USERS,
1215 Binder.getCallingUid())) {
Fyodor Kupolov2e7e0962016-12-01 18:09:17 -08001216 throw new SecurityException("You need INTERACT_ACROSS_USERS or MANAGE_USERS permission "
1217 + "to: check " + name);
1218 }
1219 }
1220
1221 @Override
Bookatzf56f2582019-09-04 16:06:41 -07001222 public boolean isDemoUser(@UserIdInt int userId) {
Felipe Lemec1ca4412019-09-11 09:23:26 -07001223 final int callingUserId = UserHandle.getCallingUserId();
Amith Yamasani1c41dc82016-06-28 16:13:15 -07001224 if (callingUserId != userId && !hasManageUsersPermission()) {
1225 throw new SecurityException("You need MANAGE_USERS permission to query if u=" + userId
1226 + " is a demo user");
1227 }
1228 synchronized (mUsersLock) {
1229 UserInfo userInfo = getUserInfoLU(userId);
1230 return userInfo != null && userInfo.isDemo();
1231 }
1232 }
1233
1234 @Override
Felipe Lemec1ca4412019-09-11 09:23:26 -07001235 public boolean isPreCreated(@UserIdInt int userId) {
1236 final int callingUserId = UserHandle.getCallingUserId();
1237 if (callingUserId != userId && !hasManageUsersPermission()) {
1238 throw new SecurityException("You need MANAGE_USERS permission to query if u=" + userId
1239 + " is pre-created");
1240 }
1241 synchronized (mUsersLock) {
1242 UserInfo userInfo = getUserInfoLU(userId);
1243 return userInfo != null && userInfo.preCreated;
1244 }
1245 }
1246
1247 @Override
Amith Yamasani71e6c692013-03-24 17:39:28 -07001248 public boolean isRestricted() {
Fyodor Kupolov82402752015-10-28 14:54:51 -07001249 synchronized (mUsersLock) {
1250 return getUserInfoLU(UserHandle.getCallingUserId()).isRestricted();
Amith Yamasani71e6c692013-03-24 17:39:28 -07001251 }
1252 }
1253
Fyodor Kupolov1c363152015-09-02 13:27:21 -07001254 @Override
Bookatzf56f2582019-09-04 16:06:41 -07001255 public boolean canHaveRestrictedProfile(@UserIdInt int userId) {
Fyodor Kupolov1c363152015-09-02 13:27:21 -07001256 checkManageUsersPermission("canHaveRestrictedProfile");
Fyodor Kupolov82402752015-10-28 14:54:51 -07001257 synchronized (mUsersLock) {
1258 final UserInfo userInfo = getUserInfoLU(userId);
Fyodor Kupolov1c363152015-09-02 13:27:21 -07001259 if (userInfo == null || !userInfo.canHaveProfile()) {
1260 return false;
1261 }
1262 if (!userInfo.isAdmin()) {
1263 return false;
1264 }
Makoto Onukie7927da2015-11-25 10:05:17 -08001265 // restricted profile can be created if there is no DO set and the admin user has no PO;
1266 return !mIsDeviceManaged && !mIsUserManaged.get(userId);
Fyodor Kupolov1c363152015-09-02 13:27:21 -07001267 }
Fyodor Kupolov1c363152015-09-02 13:27:21 -07001268 }
1269
Fyodor Kupolovca177562017-11-09 17:43:01 -08001270 @Override
1271 public boolean hasRestrictedProfiles() {
1272 checkManageUsersPermission("hasRestrictedProfiles");
1273 final int callingUserId = UserHandle.getCallingUserId();
1274 synchronized (mUsersLock) {
1275 final int userSize = mUsers.size();
1276 for (int i = 0; i < userSize; i++) {
1277 UserInfo profile = mUsers.valueAt(i).info;
1278 if (callingUserId != profile.id
1279 && profile.restrictedProfileParentId == callingUserId) {
1280 return true;
1281 }
1282 }
1283 return false;
1284 }
1285 }
1286
Amith Yamasani195263742012-08-21 15:40:12 -07001287 /*
1288 * Should be locked on mUsers before calling this.
1289 */
Andreas Gampe2e8c7672018-07-20 13:01:08 -07001290 @GuardedBy("mUsersLock")
Bookatzf56f2582019-09-04 16:06:41 -07001291 private UserInfo getUserInfoLU(@UserIdInt int userId) {
Amith Yamasani12747872015-12-07 14:19:49 -08001292 final UserData userData = mUsers.get(userId);
Amith Yamasani16389312012-10-17 21:20:14 -07001293 // If it is partial and not in the process of being removed, return as unknown user.
Amith Yamasani12747872015-12-07 14:19:49 -08001294 if (userData != null && userData.info.partial && !mRemovingUserIds.get(userId)) {
Dianne Hackbornd4ac8d72012-09-27 23:20:10 -07001295 Slog.w(LOG_TAG, "getUserInfo: unknown user #" + userId);
1296 return null;
1297 }
Amith Yamasani12747872015-12-07 14:19:49 -08001298 return userData != null ? userData.info : null;
1299 }
1300
Andreas Gampe2e8c7672018-07-20 13:01:08 -07001301 @GuardedBy("mUsersLock")
Bookatzf56f2582019-09-04 16:06:41 -07001302 private UserData getUserDataLU(@UserIdInt int userId) {
Amith Yamasani12747872015-12-07 14:19:49 -08001303 final UserData userData = mUsers.get(userId);
1304 // If it is partial and not in the process of being removed, return as unknown user.
1305 if (userData != null && userData.info.partial && !mRemovingUserIds.get(userId)) {
1306 return null;
1307 }
1308 return userData;
Amith Yamasani195263742012-08-21 15:40:12 -07001309 }
1310
Fyodor Kupolov82402752015-10-28 14:54:51 -07001311 /**
1312 * Obtains {@link #mUsersLock} and return UserInfo from mUsers.
1313 * <p>No permissions checking or any addition checks are made</p>
1314 */
Bookatzf56f2582019-09-04 16:06:41 -07001315 private UserInfo getUserInfoNoChecks(@UserIdInt int userId) {
Fyodor Kupolov82402752015-10-28 14:54:51 -07001316 synchronized (mUsersLock) {
Amith Yamasani12747872015-12-07 14:19:49 -08001317 final UserData userData = mUsers.get(userId);
1318 return userData != null ? userData.info : null;
1319 }
1320 }
1321
1322 /**
1323 * Obtains {@link #mUsersLock} and return UserData from mUsers.
1324 * <p>No permissions checking or any addition checks are made</p>
1325 */
Bookatzf56f2582019-09-04 16:06:41 -07001326 private UserData getUserDataNoChecks(@UserIdInt int userId) {
Amith Yamasani12747872015-12-07 14:19:49 -08001327 synchronized (mUsersLock) {
Fyodor Kupolov82402752015-10-28 14:54:51 -07001328 return mUsers.get(userId);
1329 }
1330 }
1331
Amith Yamasani236b2b52015-08-18 14:32:14 -07001332 /** Called by PackageManagerService */
Bookatzf56f2582019-09-04 16:06:41 -07001333 public boolean exists(@UserIdInt int userId) {
Todd Kennedy0eb97382017-10-03 16:57:22 -07001334 return mLocalService.exists(userId);
Amith Yamasani13593602012-03-22 16:16:17 -07001335 }
1336
Amith Yamasani258848d2012-08-10 17:06:33 -07001337 @Override
Bookatzf56f2582019-09-04 16:06:41 -07001338 public void setUserName(@UserIdInt int userId, String name) {
Amith Yamasani2a003292012-08-14 18:25:45 -07001339 checkManageUsersPermission("rename users");
Dianne Hackbornd4ac8d72012-09-27 23:20:10 -07001340 boolean changed = false;
Dianne Hackborn4428e172012-08-24 17:43:05 -07001341 synchronized (mPackagesLock) {
Amith Yamasani12747872015-12-07 14:19:49 -08001342 UserData userData = getUserDataNoChecks(userId);
1343 if (userData == null || userData.info.partial) {
Dianne Hackbornd4ac8d72012-09-27 23:20:10 -07001344 Slog.w(LOG_TAG, "setUserName: unknown user #" + userId);
1345 return;
1346 }
Amith Yamasani12747872015-12-07 14:19:49 -08001347 if (name != null && !name.equals(userData.info.name)) {
1348 userData.info.name = name;
1349 writeUserLP(userData);
Dianne Hackbornd4ac8d72012-09-27 23:20:10 -07001350 changed = true;
Amith Yamasani13593602012-03-22 16:16:17 -07001351 }
1352 }
Dianne Hackbornd4ac8d72012-09-27 23:20:10 -07001353 if (changed) {
Bookatzf9368552019-03-14 11:57:09 -07001354 long ident = Binder.clearCallingIdentity();
1355 try {
1356 sendUserInfoChangedBroadcast(userId);
1357 } finally {
1358 Binder.restoreCallingIdentity(ident);
1359 }
Dianne Hackbornd4ac8d72012-09-27 23:20:10 -07001360 }
Amith Yamasani4b2e9342011-03-31 12:38:53 -07001361 }
1362
Amith Yamasani258848d2012-08-10 17:06:33 -07001363 @Override
Bookatzf56f2582019-09-04 16:06:41 -07001364 public void setUserIcon(@UserIdInt int userId, Bitmap bitmap) {
Amith Yamasani2a003292012-08-14 18:25:45 -07001365 checkManageUsersPermission("update users");
Oleksandr Peletskyi7f1f1df2016-01-18 15:40:21 +01001366 if (hasUserRestriction(UserManager.DISALLOW_SET_USER_ICON, userId)) {
1367 Log.w(LOG_TAG, "Cannot set user icon. DISALLOW_SET_USER_ICON is enabled.");
1368 return;
Amith Yamasanib8151ec2012-04-18 18:02:48 -07001369 }
Oleksandr Peletskyi7f1f1df2016-01-18 15:40:21 +01001370 mLocalService.setUserIcon(userId, bitmap);
Amith Yamasanie928d7d2012-09-17 21:46:51 -07001371 }
1372
Oleksandr Peletskyi7f1f1df2016-01-18 15:40:21 +01001373
1374
Bookatzf56f2582019-09-04 16:06:41 -07001375 private void sendUserInfoChangedBroadcast(@UserIdInt int userId) {
Amith Yamasanie928d7d2012-09-17 21:46:51 -07001376 Intent changedIntent = new Intent(Intent.ACTION_USER_INFO_CHANGED);
1377 changedIntent.putExtra(Intent.EXTRA_USER_HANDLE, userId);
1378 changedIntent.addFlags(Intent.FLAG_RECEIVER_REGISTERED_ONLY);
Amith Yamasani6fc1d4e2013-05-08 16:43:58 -07001379 mContext.sendBroadcastAsUser(changedIntent, UserHandle.ALL);
Amith Yamasanib8151ec2012-04-18 18:02:48 -07001380 }
1381
Amith Yamasani258848d2012-08-10 17:06:33 -07001382 @Override
Oleksandr Peletskyicd6fa302016-02-25 16:28:39 +01001383 public ParcelFileDescriptor getUserIcon(int targetUserId) {
Bookatzcde3d922019-03-08 14:30:00 -08001384 if (!hasManageUsersOrPermission(android.Manifest.permission.GET_ACCOUNTS_PRIVILEGED)) {
1385 throw new SecurityException("You need MANAGE_USERS or GET_ACCOUNTS_PRIVILEGED "
1386 + "permissions to: get user icon");
1387 }
Adrian Roos1bdff912015-02-17 15:51:35 +01001388 String iconPath;
Amith Yamasani3b49f072012-09-17 10:21:43 -07001389 synchronized (mPackagesLock) {
Oleksandr Peletskyicd6fa302016-02-25 16:28:39 +01001390 UserInfo targetUserInfo = getUserInfoNoChecks(targetUserId);
1391 if (targetUserInfo == null || targetUserInfo.partial) {
1392 Slog.w(LOG_TAG, "getUserIcon: unknown user #" + targetUserId);
Dianne Hackbornd4ac8d72012-09-27 23:20:10 -07001393 return null;
1394 }
Oleksandr Peletskyicd6fa302016-02-25 16:28:39 +01001395
1396 final int callingUserId = UserHandle.getCallingUserId();
1397 final int callingGroupId = getUserInfoNoChecks(callingUserId).profileGroupId;
1398 final int targetGroupId = targetUserInfo.profileGroupId;
1399 final boolean sameGroup = (callingGroupId != UserInfo.NO_PROFILE_GROUP_ID
1400 && callingGroupId == targetGroupId);
1401 if ((callingUserId != targetUserId) && !sameGroup) {
Nicolas Prevot88cc3462014-05-14 14:51:48 +01001402 checkManageUsersPermission("get the icon of a user who is not related");
1403 }
Oleksandr Peletskyicd6fa302016-02-25 16:28:39 +01001404
1405 if (targetUserInfo.iconPath == null) {
Dianne Hackbornd4ac8d72012-09-27 23:20:10 -07001406 return null;
1407 }
Oleksandr Peletskyicd6fa302016-02-25 16:28:39 +01001408 iconPath = targetUserInfo.iconPath;
Amith Yamasani3b49f072012-09-17 10:21:43 -07001409 }
Adrian Roos1bdff912015-02-17 15:51:35 +01001410
1411 try {
1412 return ParcelFileDescriptor.open(
1413 new File(iconPath), ParcelFileDescriptor.MODE_READ_ONLY);
1414 } catch (FileNotFoundException e) {
1415 Log.e(LOG_TAG, "Couldn't find icon file", e);
1416 }
1417 return null;
Amith Yamasani3b49f072012-09-17 10:21:43 -07001418 }
1419
Bookatzf56f2582019-09-04 16:06:41 -07001420 public void makeInitialized(@UserIdInt int userId) {
Dianne Hackborn5dc5a002012-09-15 19:33:48 -07001421 checkManageUsersPermission("makeInitialized");
Fyodor Kupolove80085d2015-11-06 18:21:39 -08001422 boolean scheduleWriteUser = false;
Amith Yamasani12747872015-12-07 14:19:49 -08001423 UserData userData;
Fyodor Kupolove80085d2015-11-06 18:21:39 -08001424 synchronized (mUsersLock) {
Amith Yamasani12747872015-12-07 14:19:49 -08001425 userData = mUsers.get(userId);
1426 if (userData == null || userData.info.partial) {
Dianne Hackbornd4ac8d72012-09-27 23:20:10 -07001427 Slog.w(LOG_TAG, "makeInitialized: unknown user #" + userId);
Fyodor Kupolove80085d2015-11-06 18:21:39 -08001428 return;
Dianne Hackbornd4ac8d72012-09-27 23:20:10 -07001429 }
Amith Yamasani12747872015-12-07 14:19:49 -08001430 if ((userData.info.flags & UserInfo.FLAG_INITIALIZED) == 0) {
1431 userData.info.flags |= UserInfo.FLAG_INITIALIZED;
Fyodor Kupolove80085d2015-11-06 18:21:39 -08001432 scheduleWriteUser = true;
Dianne Hackborn5dc5a002012-09-15 19:33:48 -07001433 }
1434 }
Fyodor Kupolove80085d2015-11-06 18:21:39 -08001435 if (scheduleWriteUser) {
Amith Yamasani12747872015-12-07 14:19:49 -08001436 scheduleWriteUser(userData);
Fyodor Kupolove80085d2015-11-06 18:21:39 -08001437 }
Dianne Hackborn5dc5a002012-09-15 19:33:48 -07001438 }
1439
Amith Yamasaniaa6634e2014-10-06 14:20:28 -07001440 /**
1441 * If default guest restrictions haven't been initialized yet, add the basic
1442 * restrictions.
1443 */
1444 private void initDefaultGuestRestrictions() {
Fyodor Kupolove80085d2015-11-06 18:21:39 -08001445 synchronized (mGuestRestrictions) {
1446 if (mGuestRestrictions.isEmpty()) {
Samuel Tand9453b82016-03-14 15:57:02 -07001447 mGuestRestrictions.putBoolean(UserManager.DISALLOW_CONFIG_WIFI, true);
Fyodor Kupolove04462c2015-11-30 15:02:53 -08001448 mGuestRestrictions.putBoolean(UserManager.DISALLOW_INSTALL_UNKNOWN_SOURCES, true);
Fyodor Kupolove80085d2015-11-06 18:21:39 -08001449 mGuestRestrictions.putBoolean(UserManager.DISALLOW_OUTGOING_CALLS, true);
1450 mGuestRestrictions.putBoolean(UserManager.DISALLOW_SMS, true);
1451 }
Amith Yamasaniaa6634e2014-10-06 14:20:28 -07001452 }
1453 }
1454
Amith Yamasanie4cf7342012-12-17 11:12:09 -08001455 @Override
Amith Yamasanie4afaa32014-06-30 14:55:07 +05301456 public Bundle getDefaultGuestRestrictions() {
1457 checkManageUsersPermission("getDefaultGuestRestrictions");
Fyodor Kupolove80085d2015-11-06 18:21:39 -08001458 synchronized (mGuestRestrictions) {
Amith Yamasanie4afaa32014-06-30 14:55:07 +05301459 return new Bundle(mGuestRestrictions);
1460 }
1461 }
1462
1463 @Override
1464 public void setDefaultGuestRestrictions(Bundle restrictions) {
1465 checkManageUsersPermission("setDefaultGuestRestrictions");
Fyodor Kupolove80085d2015-11-06 18:21:39 -08001466 synchronized (mGuestRestrictions) {
1467 mGuestRestrictions.clear();
1468 mGuestRestrictions.putAll(restrictions);
1469 }
1470 synchronized (mPackagesLock) {
1471 writeUserListLP();
Amith Yamasanie4afaa32014-06-30 14:55:07 +05301472 }
1473 }
1474
Makoto Onuki1a2cd742015-11-16 13:51:27 -08001475 /**
Pavel Grafov6a40f092016-10-25 15:46:51 +01001476 * See {@link UserManagerInternal#setDevicePolicyUserRestrictions}
Makoto Onuki1a2cd742015-11-16 13:51:27 -08001477 */
Bookatzf56f2582019-09-04 16:06:41 -07001478 private void setDevicePolicyUserRestrictionsInner(@UserIdInt int userId,
1479 @Nullable Bundle restrictions, boolean isDeviceOwner, int cameraRestrictionScope) {
Pavel Grafov6a40f092016-10-25 15:46:51 +01001480 final Bundle global = new Bundle();
1481 final Bundle local = new Bundle();
1482
1483 // Sort restrictions into local and global ensuring they don't overlap.
1484 UserRestrictionsUtils.sortToGlobalAndLocal(restrictions, isDeviceOwner,
1485 cameraRestrictionScope, global, local);
1486
1487 boolean globalChanged, localChanged;
Makoto Onuki1a2cd742015-11-16 13:51:27 -08001488 synchronized (mRestrictionsLock) {
Pavel Grafov6a40f092016-10-25 15:46:51 +01001489 // Update global and local restrictions if they were changed.
1490 globalChanged = updateRestrictionsIfNeededLR(
1491 userId, global, mDevicePolicyGlobalUserRestrictions);
1492 localChanged = updateRestrictionsIfNeededLR(
1493 userId, local, mDevicePolicyLocalUserRestrictions);
1494
1495 if (isDeviceOwner) {
Zoltan Szatmary-Bane7834602016-04-08 18:41:11 +01001496 // Remember the global restriction owner userId to be able to make a distinction
1497 // in getUserRestrictionSource on who set local policies.
Pavel Grafov6a40f092016-10-25 15:46:51 +01001498 mDeviceOwnerUserId = userId;
Zoltan Szatmary-Bane7834602016-04-08 18:41:11 +01001499 } else {
Pavel Grafov6a40f092016-10-25 15:46:51 +01001500 if (mDeviceOwnerUserId == userId) {
Zoltan Szatmary-Ban8a5536d2016-05-27 17:56:44 +01001501 // When profile owner sets restrictions it passes null global bundle and we
1502 // reset global restriction owner userId.
1503 // This means this user used to have DO, but now the DO is gone and the user
1504 // instead has PO.
Pavel Grafov6a40f092016-10-25 15:46:51 +01001505 mDeviceOwnerUserId = UserHandle.USER_NULL;
Makoto Onuki1a2cd742015-11-16 13:51:27 -08001506 }
1507 }
1508 }
1509 if (DBG) {
1510 Log.d(LOG_TAG, "setDevicePolicyUserRestrictions: userId=" + userId
1511 + " global=" + global + (globalChanged ? " (changed)" : "")
1512 + " local=" + local + (localChanged ? " (changed)" : "")
1513 );
1514 }
1515 // Don't call them within the mRestrictionsLock.
1516 synchronized (mPackagesLock) {
Pavel Grafov6a40f092016-10-25 15:46:51 +01001517 if (localChanged || globalChanged) {
Amith Yamasani12747872015-12-07 14:19:49 -08001518 writeUserLP(getUserDataNoChecks(userId));
Makoto Onuki1a2cd742015-11-16 13:51:27 -08001519 }
1520 }
1521
1522 synchronized (mRestrictionsLock) {
1523 if (globalChanged) {
1524 applyUserRestrictionsForAllUsersLR();
1525 } else if (localChanged) {
1526 applyUserRestrictionsLR(userId);
1527 }
1528 }
1529 }
1530
Pavel Grafov6a40f092016-10-25 15:46:51 +01001531 /**
1532 * Updates restriction bundle for a given user in a given restriction array. If new bundle is
1533 * empty, record is removed from the array.
1534 * @return whether restrictions bundle is different from the old one.
1535 */
Bookatzf56f2582019-09-04 16:06:41 -07001536 private boolean updateRestrictionsIfNeededLR(@UserIdInt int userId,
1537 @Nullable Bundle restrictions, SparseArray<Bundle> restrictionsArray) {
Pavel Grafov6a40f092016-10-25 15:46:51 +01001538 final boolean changed =
1539 !UserRestrictionsUtils.areEqual(restrictionsArray.get(userId), restrictions);
1540 if (changed) {
1541 if (!UserRestrictionsUtils.isEmpty(restrictions)) {
1542 restrictionsArray.put(userId, restrictions);
1543 } else {
1544 restrictionsArray.delete(userId);
1545 }
1546 }
1547 return changed;
1548 }
1549
Makoto Onuki068c54a2015-10-13 14:34:03 -07001550 @GuardedBy("mRestrictionsLock")
Bookatzf56f2582019-09-04 16:06:41 -07001551 private Bundle computeEffectiveUserRestrictionsLR(@UserIdInt int userId) {
Makoto Onuki1a2cd742015-11-16 13:51:27 -08001552 final Bundle baseRestrictions =
1553 UserRestrictionsUtils.nonNull(mBaseUserRestrictions.get(userId));
Pavel Grafov6a40f092016-10-25 15:46:51 +01001554 final Bundle global = UserRestrictionsUtils.mergeAll(mDevicePolicyGlobalUserRestrictions);
Makoto Onuki1a2cd742015-11-16 13:51:27 -08001555 final Bundle local = mDevicePolicyLocalUserRestrictions.get(userId);
Makoto Onuki068c54a2015-10-13 14:34:03 -07001556
Makoto Onuki1a2cd742015-11-16 13:51:27 -08001557 if (UserRestrictionsUtils.isEmpty(global) && UserRestrictionsUtils.isEmpty(local)) {
1558 // Common case first.
1559 return baseRestrictions;
Makoto Onuki068c54a2015-10-13 14:34:03 -07001560 }
Makoto Onuki1a2cd742015-11-16 13:51:27 -08001561 final Bundle effective = UserRestrictionsUtils.clone(baseRestrictions);
1562 UserRestrictionsUtils.merge(effective, global);
1563 UserRestrictionsUtils.merge(effective, local);
1564
Makoto Onuki068c54a2015-10-13 14:34:03 -07001565 return effective;
1566 }
1567
1568 @GuardedBy("mRestrictionsLock")
Bookatzf56f2582019-09-04 16:06:41 -07001569 private void invalidateEffectiveUserRestrictionsLR(@UserIdInt int userId) {
Makoto Onuki068c54a2015-10-13 14:34:03 -07001570 if (DBG) {
1571 Log.d(LOG_TAG, "invalidateEffectiveUserRestrictions userId=" + userId);
1572 }
1573 mCachedEffectiveUserRestrictions.remove(userId);
1574 }
1575
Bookatzf56f2582019-09-04 16:06:41 -07001576 private Bundle getEffectiveUserRestrictions(@UserIdInt int userId) {
Makoto Onuki068c54a2015-10-13 14:34:03 -07001577 synchronized (mRestrictionsLock) {
1578 Bundle restrictions = mCachedEffectiveUserRestrictions.get(userId);
1579 if (restrictions == null) {
Fyodor Kupolov82402752015-10-28 14:54:51 -07001580 restrictions = computeEffectiveUserRestrictionsLR(userId);
Makoto Onuki068c54a2015-10-13 14:34:03 -07001581 mCachedEffectiveUserRestrictions.put(userId, restrictions);
1582 }
1583 return restrictions;
Amith Yamasani8cd28b52014-06-08 17:54:27 -07001584 }
1585 }
1586
Makoto Onuki068c54a2015-10-13 14:34:03 -07001587 /** @return a specific user restriction that's in effect currently. */
1588 @Override
Bookatzf56f2582019-09-04 16:06:41 -07001589 public boolean hasUserRestriction(String restrictionKey, @UserIdInt int userId) {
Patrick Baumann2f2fd712019-07-31 15:18:53 -07001590 return mLocalService.hasUserRestriction(restrictionKey, userId);
Makoto Onuki068c54a2015-10-13 14:34:03 -07001591 }
1592
Makoto Onukiacc50462018-02-14 14:13:49 -08001593 /** @return if any user has the given restriction. */
1594 @Override
1595 public boolean hasUserRestrictionOnAnyUser(String restrictionKey) {
1596 if (!UserRestrictionsUtils.isValidRestriction(restrictionKey)) {
1597 return false;
1598 }
1599 final List<UserInfo> users = getUsers(/* excludeDying= */ true);
1600 for (int i = 0; i < users.size(); i++) {
1601 final int userId = users.get(i).id;
1602 Bundle restrictions = getEffectiveUserRestrictions(userId);
1603 if (restrictions != null && restrictions.getBoolean(restrictionKey)) {
1604 return true;
1605 }
1606 }
1607 return false;
1608 }
1609
Christopher Tate65fb2e42019-10-11 17:00:23 -07001610 @Override
1611 public boolean isSettingRestrictedForUser(String setting, @UserIdInt int userId,
1612 String value, int callingUid) {
1613 if (Binder.getCallingUid() != Process.SYSTEM_UID) {
1614 throw new SecurityException("Non-system caller");
1615 }
1616 return UserRestrictionsUtils.isSettingRestrictedForUser(mContext, setting, userId,
1617 value, callingUid);
1618 }
1619
1620 @Override
1621 public void addUserRestrictionsListener(final IUserRestrictionsListener listener) {
1622 if (Binder.getCallingUid() != Process.SYSTEM_UID) {
1623 throw new SecurityException("Non-system caller");
1624 }
1625
1626 // NOTE: unregistering not supported; only client is the settings provider,
1627 // which installs a single static permanent listener. If that listener goes
1628 // bad it implies the whole system process is going to crash.
1629 mLocalService.addUserRestrictionsListener(
1630 (int userId, Bundle newRestrict, Bundle prevRestrict) -> {
1631 try {
1632 listener.onUserRestrictionsChanged(userId, newRestrict, prevRestrict);
1633 } catch (RemoteException re) {
1634 Slog.e("IUserRestrictionsListener",
1635 "Unable to invoke listener: " + re.getMessage());
1636 }
1637 });
1638 }
1639
Makoto Onuki068c54a2015-10-13 14:34:03 -07001640 /**
Zoltan Szatmary-Bane7834602016-04-08 18:41:11 +01001641 * @hide
1642 *
1643 * Returns who set a user restriction on a user.
1644 * Requires {@link android.Manifest.permission#MANAGE_USERS} permission.
1645 * @param restrictionKey the string key representing the restriction
1646 * @param userId the id of the user for whom to retrieve the restrictions.
1647 * @return The source of user restriction. Any combination of
1648 * {@link UserManager#RESTRICTION_NOT_SET},
1649 * {@link UserManager#RESTRICTION_SOURCE_SYSTEM},
1650 * {@link UserManager#RESTRICTION_SOURCE_DEVICE_OWNER}
1651 * and {@link UserManager#RESTRICTION_SOURCE_PROFILE_OWNER}
1652 */
1653 @Override
Bookatzf56f2582019-09-04 16:06:41 -07001654 public int getUserRestrictionSource(String restrictionKey, @UserIdInt int userId) {
Pavel Grafov6a40f092016-10-25 15:46:51 +01001655 List<EnforcingUser> enforcingUsers = getUserRestrictionSources(restrictionKey, userId);
1656 // Get "bitwise or" of restriction sources for all enforcing users.
Zoltan Szatmary-Bane7834602016-04-08 18:41:11 +01001657 int result = UserManager.RESTRICTION_NOT_SET;
Pavel Grafov6a40f092016-10-25 15:46:51 +01001658 for (int i = enforcingUsers.size() - 1; i >= 0; i--) {
1659 result |= enforcingUsers.get(i).getUserRestrictionSource();
1660 }
1661 return result;
1662 }
1663
1664 @Override
1665 public List<EnforcingUser> getUserRestrictionSources(
1666 String restrictionKey, @UserIdInt int userId) {
1667 checkManageUsersPermission("getUserRestrictionSource");
Zoltan Szatmary-Bane7834602016-04-08 18:41:11 +01001668
1669 // Shortcut for the most common case
1670 if (!hasUserRestriction(restrictionKey, userId)) {
Pavel Grafov6a40f092016-10-25 15:46:51 +01001671 return Collections.emptyList();
Zoltan Szatmary-Bane7834602016-04-08 18:41:11 +01001672 }
1673
Pavel Grafov6a40f092016-10-25 15:46:51 +01001674 final List<EnforcingUser> result = new ArrayList<>();
1675
1676 // Check if it is base restriction.
Zoltan Szatmary-Bane7834602016-04-08 18:41:11 +01001677 if (hasBaseUserRestriction(restrictionKey, userId)) {
Pavel Grafov6a40f092016-10-25 15:46:51 +01001678 result.add(new EnforcingUser(
1679 UserHandle.USER_NULL, UserManager.RESTRICTION_SOURCE_SYSTEM));
Zoltan Szatmary-Bane7834602016-04-08 18:41:11 +01001680 }
1681
Pavel Grafov6a40f092016-10-25 15:46:51 +01001682 synchronized (mRestrictionsLock) {
1683 // Check if it is set by profile owner.
1684 Bundle profileOwnerRestrictions = mDevicePolicyLocalUserRestrictions.get(userId);
1685 if (UserRestrictionsUtils.contains(profileOwnerRestrictions, restrictionKey)) {
1686 result.add(getEnforcingUserLocked(userId));
1687 }
1688
1689 // Iterate over all users who enforce global restrictions.
1690 for (int i = mDevicePolicyGlobalUserRestrictions.size() - 1; i >= 0; i--) {
1691 Bundle globalRestrictions = mDevicePolicyGlobalUserRestrictions.valueAt(i);
1692 int profileUserId = mDevicePolicyGlobalUserRestrictions.keyAt(i);
1693 if (UserRestrictionsUtils.contains(globalRestrictions, restrictionKey)) {
1694 result.add(getEnforcingUserLocked(profileUserId));
Zoltan Szatmary-Bane7834602016-04-08 18:41:11 +01001695 }
1696 }
Zoltan Szatmary-Bane7834602016-04-08 18:41:11 +01001697 }
Zoltan Szatmary-Bane7834602016-04-08 18:41:11 +01001698 return result;
1699 }
1700
Andreas Gampea36dc622018-02-05 17:19:22 -08001701 @GuardedBy("mRestrictionsLock")
Pavel Grafov6a40f092016-10-25 15:46:51 +01001702 private EnforcingUser getEnforcingUserLocked(@UserIdInt int userId) {
1703 int source = mDeviceOwnerUserId == userId ? UserManager.RESTRICTION_SOURCE_DEVICE_OWNER
1704 : UserManager.RESTRICTION_SOURCE_PROFILE_OWNER;
1705 return new EnforcingUser(userId, source);
1706 }
1707
Zoltan Szatmary-Bane7834602016-04-08 18:41:11 +01001708 /**
Makoto Onuki068c54a2015-10-13 14:34:03 -07001709 * @return UserRestrictions that are in effect currently. This always returns a new
1710 * {@link Bundle}.
1711 */
Amith Yamasani8cd28b52014-06-08 17:54:27 -07001712 @Override
Bookatzf56f2582019-09-04 16:06:41 -07001713 public Bundle getUserRestrictions(@UserIdInt int userId) {
Makoto Onuki1a2cd742015-11-16 13:51:27 -08001714 return UserRestrictionsUtils.clone(getEffectiveUserRestrictions(userId));
Amith Yamasanie4cf7342012-12-17 11:12:09 -08001715 }
1716
1717 @Override
Bookatzf56f2582019-09-04 16:06:41 -07001718 public boolean hasBaseUserRestriction(String restrictionKey, @UserIdInt int userId) {
Zoltan Szatmary-Ban3bbcedd2015-11-26 13:45:51 +00001719 checkManageUsersPermission("hasBaseUserRestriction");
Makoto Onuki1f1ceef2016-01-28 11:32:32 -08001720 if (!UserRestrictionsUtils.isValidRestriction(restrictionKey)) {
1721 return false;
1722 }
Zoltan Szatmary-Ban3bbcedd2015-11-26 13:45:51 +00001723 synchronized (mRestrictionsLock) {
1724 Bundle bundle = mBaseUserRestrictions.get(userId);
1725 return (bundle != null && bundle.getBoolean(restrictionKey, false));
1726 }
1727 }
1728
1729 @Override
Bookatzf56f2582019-09-04 16:06:41 -07001730 public void setUserRestriction(String key, boolean value, @UserIdInt int userId) {
Fyodor Kupolovd4b26042015-07-27 14:30:59 -07001731 checkManageUsersPermission("setUserRestriction");
Makoto Onuki1f1ceef2016-01-28 11:32:32 -08001732 if (!UserRestrictionsUtils.isValidRestriction(key)) {
1733 return;
1734 }
Makoto Onuki068c54a2015-10-13 14:34:03 -07001735 synchronized (mRestrictionsLock) {
1736 // Note we can't modify Bundles stored in mBaseUserRestrictions directly, so create
1737 // a copy.
Makoto Onuki1a2cd742015-11-16 13:51:27 -08001738 final Bundle newRestrictions = UserRestrictionsUtils.clone(
1739 mBaseUserRestrictions.get(userId));
Makoto Onuki068c54a2015-10-13 14:34:03 -07001740 newRestrictions.putBoolean(key, value);
1741
Fyodor Kupolov82402752015-10-28 14:54:51 -07001742 updateUserRestrictionsInternalLR(newRestrictions, userId);
Fyodor Kupolovb5013302015-04-17 17:59:14 -07001743 }
1744 }
1745
Makoto Onuki068c54a2015-10-13 14:34:03 -07001746 /**
Makoto Onuki1a2cd742015-11-16 13:51:27 -08001747 * Optionally updating user restrictions, calculate the effective user restrictions and also
1748 * propagate to other services and system settings.
Makoto Onuki068c54a2015-10-13 14:34:03 -07001749 *
Pavel Grafov6a40f092016-10-25 15:46:51 +01001750 * @param newBaseRestrictions User restrictions to set.
Makoto Onuki1a2cd742015-11-16 13:51:27 -08001751 * If null, will not update user restrictions and only does the propagation.
Makoto Onuki068c54a2015-10-13 14:34:03 -07001752 * @param userId target user ID.
1753 */
1754 @GuardedBy("mRestrictionsLock")
Fyodor Kupolov82402752015-10-28 14:54:51 -07001755 private void updateUserRestrictionsInternalLR(
Bookatzf56f2582019-09-04 16:06:41 -07001756 @Nullable Bundle newBaseRestrictions, @UserIdInt int userId) {
Makoto Onuki1a2cd742015-11-16 13:51:27 -08001757 final Bundle prevAppliedRestrictions = UserRestrictionsUtils.nonNull(
1758 mAppliedUserRestrictions.get(userId));
1759
1760 // Update base restrictions.
Pavel Grafov6a40f092016-10-25 15:46:51 +01001761 if (newBaseRestrictions != null) {
1762 // If newBaseRestrictions == the current one, it's probably a bug.
Makoto Onuki1a2cd742015-11-16 13:51:27 -08001763 final Bundle prevBaseRestrictions = mBaseUserRestrictions.get(userId);
1764
Pavel Grafov6a40f092016-10-25 15:46:51 +01001765 Preconditions.checkState(prevBaseRestrictions != newBaseRestrictions);
Makoto Onuki068c54a2015-10-13 14:34:03 -07001766 Preconditions.checkState(mCachedEffectiveUserRestrictions.get(userId)
Pavel Grafov6a40f092016-10-25 15:46:51 +01001767 != newBaseRestrictions);
Makoto Onuki1a2cd742015-11-16 13:51:27 -08001768
Pavel Grafov6a40f092016-10-25 15:46:51 +01001769 if (updateRestrictionsIfNeededLR(userId, newBaseRestrictions, mBaseUserRestrictions)) {
Amith Yamasani12747872015-12-07 14:19:49 -08001770 scheduleWriteUser(getUserDataNoChecks(userId));
Makoto Onuki1a2cd742015-11-16 13:51:27 -08001771 }
Makoto Onuki068c54a2015-10-13 14:34:03 -07001772 }
1773
Fyodor Kupolov82402752015-10-28 14:54:51 -07001774 final Bundle effective = computeEffectiveUserRestrictionsLR(userId);
Makoto Onuki068c54a2015-10-13 14:34:03 -07001775
Makoto Onuki759a7632015-10-28 16:43:10 -07001776 mCachedEffectiveUserRestrictions.put(userId, effective);
1777
Makoto Onuki1a2cd742015-11-16 13:51:27 -08001778 // Apply the new restrictions.
Makoto Onuki4f160732015-10-27 17:15:38 -07001779 if (DBG) {
Makoto Onuki1a2cd742015-11-16 13:51:27 -08001780 debug("Applying user restrictions: userId=" + userId
1781 + " new=" + effective + " prev=" + prevAppliedRestrictions);
Makoto Onuki4f160732015-10-27 17:15:38 -07001782 }
1783
Makoto Onuki1a2cd742015-11-16 13:51:27 -08001784 if (mAppOpsService != null) { // We skip it until system-ready.
Fyodor Kupolovec30ca32016-06-16 15:09:29 -07001785 mHandler.post(new Runnable() {
1786 @Override
1787 public void run() {
1788 try {
1789 mAppOpsService.setUserRestrictions(effective, mUserRestriconToken, userId);
1790 } catch (RemoteException e) {
1791 Log.w(LOG_TAG, "Unable to notify AppOpsService of UserRestrictions");
1792 }
1793 }
1794 });
Fyodor Kupolovb5013302015-04-17 17:59:14 -07001795 }
Makoto Onuki068c54a2015-10-13 14:34:03 -07001796
Makoto Onuki1a2cd742015-11-16 13:51:27 -08001797 propagateUserRestrictionsLR(userId, effective, prevAppliedRestrictions);
Makoto Onuki4f160732015-10-27 17:15:38 -07001798
Makoto Onuki1a2cd742015-11-16 13:51:27 -08001799 mAppliedUserRestrictions.put(userId, new Bundle(effective));
Makoto Onuki068c54a2015-10-13 14:34:03 -07001800 }
1801
Makoto Onuki1a2cd742015-11-16 13:51:27 -08001802 private void propagateUserRestrictionsLR(final int userId,
Makoto Onukid45a4a22015-11-02 17:17:38 -08001803 Bundle newRestrictions, Bundle prevRestrictions) {
Makoto Onuki1a2cd742015-11-16 13:51:27 -08001804 // Note this method doesn't touch any state, meaning it doesn't require mRestrictionsLock
1805 // actually, but we still need some kind of synchronization otherwise we might end up
1806 // calling listeners out-of-order, thus "LR".
1807
1808 if (UserRestrictionsUtils.areEqual(newRestrictions, prevRestrictions)) {
1809 return;
1810 }
Makoto Onukid45a4a22015-11-02 17:17:38 -08001811
1812 final Bundle newRestrictionsFinal = new Bundle(newRestrictions);
1813 final Bundle prevRestrictionsFinal = new Bundle(prevRestrictions);
1814
1815 mHandler.post(new Runnable() {
1816 @Override
1817 public void run() {
Fyodor Kupolov9cbfc9e2015-10-07 15:52:33 -07001818 UserRestrictionsUtils.applyUserRestrictions(
1819 mContext, userId, newRestrictionsFinal, prevRestrictionsFinal);
Makoto Onuki1a2cd742015-11-16 13:51:27 -08001820
Makoto Onukid45a4a22015-11-02 17:17:38 -08001821 final UserRestrictionsListener[] listeners;
1822 synchronized (mUserRestrictionsListeners) {
1823 listeners = new UserRestrictionsListener[mUserRestrictionsListeners.size()];
1824 mUserRestrictionsListeners.toArray(listeners);
1825 }
1826 for (int i = 0; i < listeners.length; i++) {
1827 listeners[i].onUserRestrictionsChanged(userId,
1828 newRestrictionsFinal, prevRestrictionsFinal);
1829 }
Makoto Onukie72f81b2017-03-16 14:08:19 -07001830
1831 final Intent broadcast = new Intent(UserManager.ACTION_USER_RESTRICTIONS_CHANGED)
1832 .setFlags(Intent.FLAG_RECEIVER_REGISTERED_ONLY);
1833 mContext.sendBroadcastAsUser(broadcast, UserHandle.of(userId));
Makoto Onukid45a4a22015-11-02 17:17:38 -08001834 }
1835 });
1836 }
1837
Makoto Onuki1a2cd742015-11-16 13:51:27 -08001838 // Package private for the inner class.
Andreas Gampe2e8c7672018-07-20 13:01:08 -07001839 @GuardedBy("mRestrictionsLock")
Bookatzf56f2582019-09-04 16:06:41 -07001840 void applyUserRestrictionsLR(@UserIdInt int userId) {
Fyodor Kupolov82402752015-10-28 14:54:51 -07001841 updateUserRestrictionsInternalLR(null, userId);
Makoto Onuki068c54a2015-10-13 14:34:03 -07001842 }
1843
1844 @GuardedBy("mRestrictionsLock")
Makoto Onuki1a2cd742015-11-16 13:51:27 -08001845 // Package private for the inner class.
1846 void applyUserRestrictionsForAllUsersLR() {
1847 if (DBG) {
1848 debug("applyUserRestrictionsForAllUsersLR");
1849 }
Makoto Onuki068c54a2015-10-13 14:34:03 -07001850 // First, invalidate all cached values.
Makoto Onuki4f160732015-10-27 17:15:38 -07001851 mCachedEffectiveUserRestrictions.clear();
1852
Sudheer Shankadc589ac2016-11-10 15:30:17 -08001853 // We don't want to call into ActivityManagerService while taking a lock, so we'll call
Makoto Onuki068c54a2015-10-13 14:34:03 -07001854 // it on a handler.
1855 final Runnable r = new Runnable() {
1856 @Override
1857 public void run() {
1858 // Then get the list of running users.
1859 final int[] runningUsers;
1860 try {
Sudheer Shankadc589ac2016-11-10 15:30:17 -08001861 runningUsers = ActivityManager.getService().getRunningUserIds();
Makoto Onuki068c54a2015-10-13 14:34:03 -07001862 } catch (RemoteException e) {
Sudheer Shankadc589ac2016-11-10 15:30:17 -08001863 Log.w(LOG_TAG, "Unable to access ActivityManagerService");
Makoto Onuki068c54a2015-10-13 14:34:03 -07001864 return;
1865 }
1866 // Then re-calculate the effective restrictions and apply, only for running users.
1867 // It's okay if a new user has started after the getRunningUserIds() call,
1868 // because we'll do the same thing (re-calculate the restrictions and apply)
1869 // when we start a user.
Makoto Onuki068c54a2015-10-13 14:34:03 -07001870 synchronized (mRestrictionsLock) {
1871 for (int i = 0; i < runningUsers.length; i++) {
Makoto Onuki1a2cd742015-11-16 13:51:27 -08001872 applyUserRestrictionsLR(runningUsers[i]);
Makoto Onuki068c54a2015-10-13 14:34:03 -07001873 }
1874 }
1875 }
1876 };
1877 mHandler.post(r);
Fyodor Kupolovb5013302015-04-17 17:59:14 -07001878 }
1879
Amith Yamasani258848d2012-08-10 17:06:33 -07001880 /**
Amith Yamasanifaea76f2012-09-11 10:59:48 -07001881 * Check if we've hit the limit of how many users can be created.
1882 */
Fyodor Kupolov82402752015-10-28 14:54:51 -07001883 private boolean isUserLimitReached() {
1884 int count;
1885 synchronized (mUsersLock) {
1886 count = getAliveUsersExcludingGuestsCountLU();
1887 }
1888 return count >= UserManager.getMaxSupportedUsers();
Nicolas Prevot12678a92015-05-13 12:15:03 -07001889 }
1890
1891 @Override
Bookatzf56f2582019-09-04 16:06:41 -07001892 public boolean canAddMoreManagedProfiles(@UserIdInt int userId, boolean allowedToRemoveOne) {
Nicolas Prevot12678a92015-05-13 12:15:03 -07001893 checkManageUsersPermission("check if more managed profiles can be added.");
1894 if (ActivityManager.isLowRamDeviceStatic()) {
1895 return false;
1896 }
Fyodor Kupolovb6157992015-06-05 15:32:28 -07001897 if (!mContext.getPackageManager().hasSystemFeature(
1898 PackageManager.FEATURE_MANAGED_USERS)) {
1899 return false;
1900 }
Nicolas Prevotb8186812015-08-06 15:00:03 +01001901 // Limit number of managed profiles that can be created
Benjamin Franzc8776152017-01-06 14:16:41 +00001902 final int managedProfilesCount = getProfiles(userId, false).size() - 1;
Nicolas Prevot07387fe2015-10-30 17:53:30 +00001903 final int profilesRemovedCount = managedProfilesCount > 0 && allowedToRemoveOne ? 1 : 0;
Kenny Guy02c89902016-11-15 19:36:38 +00001904 if (managedProfilesCount - profilesRemovedCount >= getMaxManagedProfiles()) {
Nicolas Prevotb8186812015-08-06 15:00:03 +01001905 return false;
1906 }
Fyodor Kupolov82402752015-10-28 14:54:51 -07001907 synchronized(mUsersLock) {
1908 UserInfo userInfo = getUserInfoLU(userId);
yuanhao47f9f7c2017-01-18 09:54:45 +08001909 if (userInfo == null || !userInfo.canHaveProfile()) {
Nicolas Prevot12678a92015-05-13 12:15:03 -07001910 return false;
1911 }
Nicolas Prevot07387fe2015-10-30 17:53:30 +00001912 int usersCountAfterRemoving = getAliveUsersExcludingGuestsCountLU()
1913 - profilesRemovedCount;
Nicolas Prevot12678a92015-05-13 12:15:03 -07001914 // We allow creating a managed profile in the special case where there is only one user.
Nicolas Prevot07387fe2015-10-30 17:53:30 +00001915 return usersCountAfterRemoving == 1
1916 || usersCountAfterRemoving < UserManager.getMaxSupportedUsers();
Nicolas Prevot12678a92015-05-13 12:15:03 -07001917 }
1918 }
1919
Andreas Gampe2e8c7672018-07-20 13:01:08 -07001920 @GuardedBy("mUsersLock")
Fyodor Kupolov82402752015-10-28 14:54:51 -07001921 private int getAliveUsersExcludingGuestsCountLU() {
Amith Yamasanif584f012014-05-19 17:57:25 -07001922 int aliveUserCount = 0;
1923 final int totalUserCount = mUsers.size();
1924 // Skip over users being removed
1925 for (int i = 0; i < totalUserCount; i++) {
Amith Yamasani12747872015-12-07 14:19:49 -08001926 UserInfo user = mUsers.valueAt(i).info;
Felipe Lemec1ca4412019-09-11 09:23:26 -07001927 if (!mRemovingUserIds.get(user.id) && !user.isGuest() && !user.preCreated) {
Amith Yamasanif584f012014-05-19 17:57:25 -07001928 aliveUserCount++;
1929 }
1930 }
Nicolas Prevot12678a92015-05-13 12:15:03 -07001931 return aliveUserCount;
Amith Yamasanifaea76f2012-09-11 10:59:48 -07001932 }
1933
1934 /**
Amith Yamasani195263742012-08-21 15:40:12 -07001935 * Enforces that only the system UID or root's UID or apps that have the
Xiaohui Chenb3b92582015-12-07 11:22:13 -08001936 * {@link android.Manifest.permission#MANAGE_USERS MANAGE_USERS} and
1937 * {@link android.Manifest.permission#INTERACT_ACROSS_USERS_FULL INTERACT_ACROSS_USERS_FULL}
1938 * permissions can make certain calls to the UserManager.
1939 *
1940 * @param message used as message if SecurityException is thrown
1941 * @throws SecurityException if the caller does not have enough privilege.
1942 */
1943 private static final void checkManageUserAndAcrossUsersFullPermission(String message) {
1944 final int uid = Binder.getCallingUid();
jovanakf24ad492018-05-18 12:15:59 -07001945
1946 if (uid == Process.SYSTEM_UID || uid == 0) {
1947 // System UID or root's UID are granted privilege.
1948 return;
Xiaohui Chenb3b92582015-12-07 11:22:13 -08001949 }
jovanakf24ad492018-05-18 12:15:59 -07001950
1951 if (hasPermissionGranted(Manifest.permission.MANAGE_USERS, uid)
1952 && hasPermissionGranted(Manifest.permission.INTERACT_ACROSS_USERS_FULL, uid)) {
1953 // Apps with both permissions are granted privilege.
1954 return;
1955 }
1956
1957 throw new SecurityException(
1958 "You need MANAGE_USERS and INTERACT_ACROSS_USERS_FULL permission to: " + message);
1959 }
1960
1961 private static boolean hasPermissionGranted(String permission, int uid) {
1962 return ActivityManager.checkComponentPermission(
1963 permission, uid, /* owningUid = */-1, /* exported = */ true) ==
1964 PackageManager.PERMISSION_GRANTED;
Xiaohui Chenb3b92582015-12-07 11:22:13 -08001965 }
1966
1967 /**
1968 * Enforces that only the system UID or root's UID or apps that have the
Dianne Hackborn10ad9822014-03-17 11:28:36 -07001969 * {@link android.Manifest.permission#MANAGE_USERS MANAGE_USERS}
Amith Yamasani195263742012-08-21 15:40:12 -07001970 * permission can make certain calls to the UserManager.
Amith Yamasani258848d2012-08-10 17:06:33 -07001971 *
1972 * @param message used as message if SecurityException is thrown
1973 * @throws SecurityException if the caller is not system or root
Tony Mak4dc008c2016-03-16 10:46:49 +00001974 * @see #hasManageUsersPermission()
Amith Yamasani258848d2012-08-10 17:06:33 -07001975 */
Amith Yamasanibe465322014-04-24 13:45:17 -07001976 private static final void checkManageUsersPermission(String message) {
Tony Mak4dc008c2016-03-16 10:46:49 +00001977 if (!hasManageUsersPermission()) {
Amith Yamasanibe465322014-04-24 13:45:17 -07001978 throw new SecurityException("You need MANAGE_USERS permission to: " + message);
1979 }
Emily Bernier7a2b4d12014-04-23 12:51:35 -04001980 }
1981
Esteban Talavera5b9f1672015-12-11 15:22:34 +00001982 /**
Sudheer Shankaf5cea032016-06-08 17:13:24 -07001983 * Enforces that only the system UID or root's UID or apps that have the
1984 * {@link android.Manifest.permission#MANAGE_USERS MANAGE_USERS} or
1985 * {@link android.Manifest.permission#CREATE_USERS CREATE_USERS}
1986 * can make certain calls to the UserManager.
1987 *
1988 * @param message used as message if SecurityException is thrown
1989 * @throws SecurityException if the caller is not system or root
1990 * @see #hasManageOrCreateUsersPermission()
1991 */
1992 private static final void checkManageOrCreateUsersPermission(String message) {
1993 if (!hasManageOrCreateUsersPermission()) {
1994 throw new SecurityException(
1995 "You either need MANAGE_USERS or CREATE_USERS permission to: " + message);
1996 }
1997 }
1998
1999 /**
2000 * Similar to {@link #checkManageOrCreateUsersPermission(String)} but when the caller is tries
2001 * to create user/profiles other than what is allowed for
2002 * {@link android.Manifest.permission#CREATE_USERS CREATE_USERS} permission, then it will only
2003 * allow callers with {@link android.Manifest.permission#MANAGE_USERS MANAGE_USERS} permission.
2004 */
2005 private static final void checkManageOrCreateUsersPermission(int creationFlags) {
2006 if ((creationFlags & ~ALLOWED_FLAGS_FOR_CREATE_USERS_PERMISSION) == 0) {
2007 if (!hasManageOrCreateUsersPermission()) {
2008 throw new SecurityException("You either need MANAGE_USERS or CREATE_USERS "
2009 + "permission to create an user with flags: " + creationFlags);
2010 }
2011 } else if (!hasManageUsersPermission()) {
2012 throw new SecurityException("You need MANAGE_USERS permission to create an user "
2013 + " with flags: " + creationFlags);
2014 }
2015 }
2016
2017 /**
Tony Mak4dc008c2016-03-16 10:46:49 +00002018 * @return whether the calling UID is system UID or root's UID or the calling app has the
2019 * {@link android.Manifest.permission#MANAGE_USERS MANAGE_USERS}.
2020 */
2021 private static final boolean hasManageUsersPermission() {
2022 final int callingUid = Binder.getCallingUid();
2023 return UserHandle.isSameApp(callingUid, Process.SYSTEM_UID)
2024 || callingUid == Process.ROOT_UID
jovanakf24ad492018-05-18 12:15:59 -07002025 || hasPermissionGranted(android.Manifest.permission.MANAGE_USERS, callingUid);
Tony Mak4dc008c2016-03-16 10:46:49 +00002026 }
2027
2028 /**
Sudheer Shankaf5cea032016-06-08 17:13:24 -07002029 * @return whether the calling UID is system UID or root's UID or the calling app has the
Bookatzcde3d922019-03-08 14:30:00 -08002030 * {@link android.Manifest.permission#MANAGE_USERS MANAGE_USERS} or the provided permission.
Sudheer Shankaf5cea032016-06-08 17:13:24 -07002031 */
Bookatzcde3d922019-03-08 14:30:00 -08002032 private static final boolean hasManageUsersOrPermission(String alternativePermission) {
Sudheer Shankaf5cea032016-06-08 17:13:24 -07002033 final int callingUid = Binder.getCallingUid();
2034 return UserHandle.isSameApp(callingUid, Process.SYSTEM_UID)
2035 || callingUid == Process.ROOT_UID
jovanakf24ad492018-05-18 12:15:59 -07002036 || hasPermissionGranted(android.Manifest.permission.MANAGE_USERS, callingUid)
Bookatzcde3d922019-03-08 14:30:00 -08002037 || hasPermissionGranted(alternativePermission, callingUid);
2038 }
2039
2040 /**
2041 * @return whether the calling UID is system UID or root's UID or the calling app has the
2042 * {@link android.Manifest.permission#MANAGE_USERS MANAGE_USERS} or
2043 * {@link android.Manifest.permission#CREATE_USERS CREATE_USERS}.
2044 */
2045 private static final boolean hasManageOrCreateUsersPermission() {
2046 return hasManageUsersOrPermission(android.Manifest.permission.CREATE_USERS);
Sudheer Shankaf5cea032016-06-08 17:13:24 -07002047 }
2048
2049 /**
Esteban Talavera5b9f1672015-12-11 15:22:34 +00002050 * Enforces that only the system UID or root's UID (on any user) can make certain calls to the
2051 * UserManager.
2052 *
2053 * @param message used as message if SecurityException is thrown
2054 * @throws SecurityException if the caller is not system or root
2055 */
2056 private static void checkSystemOrRoot(String message) {
2057 final int uid = Binder.getCallingUid();
2058 if (!UserHandle.isSameApp(uid, Process.SYSTEM_UID) && uid != Process.ROOT_UID) {
2059 throw new SecurityException("Only system may: " + message);
2060 }
2061 }
2062
Fyodor Kupolov82402752015-10-28 14:54:51 -07002063 private void writeBitmapLP(UserInfo info, Bitmap bitmap) {
Amith Yamasanib8151ec2012-04-18 18:02:48 -07002064 try {
2065 File dir = new File(mUsersDir, Integer.toString(info.id));
2066 File file = new File(dir, USER_PHOTO_FILENAME);
Adrian Roos1bdff912015-02-17 15:51:35 +01002067 File tmp = new File(dir, USER_PHOTO_FILENAME_TMP);
Amith Yamasanib8151ec2012-04-18 18:02:48 -07002068 if (!dir.exists()) {
2069 dir.mkdir();
2070 FileUtils.setPermissions(
2071 dir.getPath(),
2072 FileUtils.S_IRWXU|FileUtils.S_IRWXG|FileUtils.S_IXOTH,
2073 -1, -1);
2074 }
Amith Yamasanie928d7d2012-09-17 21:46:51 -07002075 FileOutputStream os;
Adrian Roos1bdff912015-02-17 15:51:35 +01002076 if (bitmap.compress(Bitmap.CompressFormat.PNG, 100, os = new FileOutputStream(tmp))
Oleksandr Peletskyicd6fa302016-02-25 16:28:39 +01002077 && tmp.renameTo(file) && SELinux.restorecon(file)) {
Amith Yamasani3b49f072012-09-17 10:21:43 -07002078 info.iconPath = file.getAbsolutePath();
2079 }
Amith Yamasanie928d7d2012-09-17 21:46:51 -07002080 try {
2081 os.close();
2082 } catch (IOException ioe) {
2083 // What the ... !
2084 }
Adrian Roos1bdff912015-02-17 15:51:35 +01002085 tmp.delete();
Amith Yamasanib8151ec2012-04-18 18:02:48 -07002086 } catch (FileNotFoundException e) {
Amith Yamasani2a003292012-08-14 18:25:45 -07002087 Slog.w(LOG_TAG, "Error setting photo for user ", e);
Amith Yamasanib8151ec2012-04-18 18:02:48 -07002088 }
Amith Yamasanib8151ec2012-04-18 18:02:48 -07002089 }
2090
Amith Yamasani0b285492011-04-14 17:35:23 -07002091 /**
2092 * Returns an array of user ids. This array is cached here for quick access, so do not modify or
2093 * cache it elsewhere.
2094 * @return the array of user ids.
2095 */
Dianne Hackborn1676c852012-09-10 14:52:30 -07002096 public int[] getUserIds() {
Fyodor Kupolov82402752015-10-28 14:54:51 -07002097 synchronized (mUsersLock) {
Dianne Hackborn7767eac2012-08-23 18:25:40 -07002098 return mUserIds;
2099 }
Amith Yamasani0b285492011-04-14 17:35:23 -07002100 }
2101
Andreas Gampe2e8c7672018-07-20 13:01:08 -07002102 @GuardedBy({"mRestrictionsLock", "mPackagesLock"})
Fyodor Kupolove80085d2015-11-06 18:21:39 -08002103 private void readUserListLP() {
Amith Yamasani4b2e9342011-03-31 12:38:53 -07002104 if (!mUserListFile.exists()) {
Fyodor Kupolove80085d2015-11-06 18:21:39 -08002105 fallbackToSingleUserLP();
Amith Yamasani4b2e9342011-03-31 12:38:53 -07002106 return;
2107 }
2108 FileInputStream fis = null;
Amith Yamasani2a003292012-08-14 18:25:45 -07002109 AtomicFile userListFile = new AtomicFile(mUserListFile);
Amith Yamasani4b2e9342011-03-31 12:38:53 -07002110 try {
Amith Yamasani2a003292012-08-14 18:25:45 -07002111 fis = userListFile.openRead();
Amith Yamasani4b2e9342011-03-31 12:38:53 -07002112 XmlPullParser parser = Xml.newPullParser();
Wojciech Staszkiewicz9e9e2e72015-05-08 14:58:46 +01002113 parser.setInput(fis, StandardCharsets.UTF_8.name());
Amith Yamasani4b2e9342011-03-31 12:38:53 -07002114 int type;
2115 while ((type = parser.next()) != XmlPullParser.START_TAG
2116 && type != XmlPullParser.END_DOCUMENT) {
Amith Yamasani12747872015-12-07 14:19:49 -08002117 // Skip
Amith Yamasani4b2e9342011-03-31 12:38:53 -07002118 }
2119
2120 if (type != XmlPullParser.START_TAG) {
Amith Yamasani0b285492011-04-14 17:35:23 -07002121 Slog.e(LOG_TAG, "Unable to read user list");
Fyodor Kupolove80085d2015-11-06 18:21:39 -08002122 fallbackToSingleUserLP();
Amith Yamasani4b2e9342011-03-31 12:38:53 -07002123 return;
2124 }
2125
Amith Yamasani2a003292012-08-14 18:25:45 -07002126 mNextSerialNumber = -1;
2127 if (parser.getName().equals(TAG_USERS)) {
2128 String lastSerialNumber = parser.getAttributeValue(null, ATTR_NEXT_SERIAL_NO);
2129 if (lastSerialNumber != null) {
2130 mNextSerialNumber = Integer.parseInt(lastSerialNumber);
2131 }
Amith Yamasani6f34b412012-10-22 18:19:27 -07002132 String versionNumber = parser.getAttributeValue(null, ATTR_USER_VERSION);
2133 if (versionNumber != null) {
2134 mUserVersion = Integer.parseInt(versionNumber);
2135 }
Amith Yamasani2a003292012-08-14 18:25:45 -07002136 }
2137
Pavel Grafov6a40f092016-10-25 15:46:51 +01002138 // Pre-O global user restriction were stored as a single bundle (as opposed to per-user
2139 // currently), take care of it in case of upgrade.
2140 Bundle oldDevicePolicyGlobalUserRestrictions = null;
Makoto Onuki1a2cd742015-11-16 13:51:27 -08002141
Amith Yamasani4b2e9342011-03-31 12:38:53 -07002142 while ((type = parser.next()) != XmlPullParser.END_DOCUMENT) {
Amith Yamasanie4afaa32014-06-30 14:55:07 +05302143 if (type == XmlPullParser.START_TAG) {
2144 final String name = parser.getName();
2145 if (name.equals(TAG_USER)) {
2146 String id = parser.getAttributeValue(null, ATTR_ID);
Amith Yamasani6f34b412012-10-22 18:19:27 -07002147
Amith Yamasani12747872015-12-07 14:19:49 -08002148 UserData userData = readUserLP(Integer.parseInt(id));
2149
2150 if (userData != null) {
Fyodor Kupolov82402752015-10-28 14:54:51 -07002151 synchronized (mUsersLock) {
Amith Yamasani12747872015-12-07 14:19:49 -08002152 mUsers.put(userData.info.id, userData);
2153 if (mNextSerialNumber < 0
2154 || mNextSerialNumber <= userData.info.id) {
2155 mNextSerialNumber = userData.info.id + 1;
Fyodor Kupolov82402752015-10-28 14:54:51 -07002156 }
Amith Yamasanie4afaa32014-06-30 14:55:07 +05302157 }
Amith Yamasani2a003292012-08-14 18:25:45 -07002158 }
Amith Yamasanie4afaa32014-06-30 14:55:07 +05302159 } else if (name.equals(TAG_GUEST_RESTRICTIONS)) {
Amith Yamasanida0b1682014-11-21 12:58:17 -08002160 while ((type = parser.next()) != XmlPullParser.END_DOCUMENT
2161 && type != XmlPullParser.END_TAG) {
2162 if (type == XmlPullParser.START_TAG) {
2163 if (parser.getName().equals(TAG_RESTRICTIONS)) {
Fyodor Kupolove80085d2015-11-06 18:21:39 -08002164 synchronized (mGuestRestrictions) {
Fyodor Kupoloveafee022017-03-15 17:09:04 -07002165 UserRestrictionsUtils
2166 .readRestrictions(parser, mGuestRestrictions);
Fyodor Kupolove80085d2015-11-06 18:21:39 -08002167 }
Amith Yamasanida0b1682014-11-21 12:58:17 -08002168 }
2169 break;
2170 }
2171 }
Pavel Grafov6a40f092016-10-25 15:46:51 +01002172 } else if (name.equals(TAG_DEVICE_OWNER_USER_ID)
2173 // Legacy name, should only be encountered when upgrading from pre-O.
2174 || name.equals(TAG_GLOBAL_RESTRICTION_OWNER_ID)) {
Zoltan Szatmary-Bane7834602016-04-08 18:41:11 +01002175 String ownerUserId = parser.getAttributeValue(null, ATTR_ID);
2176 if (ownerUserId != null) {
Pavel Grafov6a40f092016-10-25 15:46:51 +01002177 mDeviceOwnerUserId = Integer.parseInt(ownerUserId);
Zoltan Szatmary-Bane7834602016-04-08 18:41:11 +01002178 }
Pavel Grafov6a40f092016-10-25 15:46:51 +01002179 } else if (name.equals(TAG_DEVICE_POLICY_RESTRICTIONS)) {
2180 // Should only happen when upgrading from pre-O (version < 7).
2181 oldDevicePolicyGlobalUserRestrictions =
2182 UserRestrictionsUtils.readRestrictions(parser);
Amith Yamasani258848d2012-08-10 17:06:33 -07002183 }
Amith Yamasani4b2e9342011-03-31 12:38:53 -07002184 }
2185 }
Pavel Grafov6a40f092016-10-25 15:46:51 +01002186
Fyodor Kupolov82402752015-10-28 14:54:51 -07002187 updateUserIds();
Pavel Grafov6a40f092016-10-25 15:46:51 +01002188 upgradeIfNecessaryLP(oldDevicePolicyGlobalUserRestrictions);
Fyodor Kupolove80085d2015-11-06 18:21:39 -08002189 } catch (IOException | XmlPullParserException e) {
2190 fallbackToSingleUserLP();
Dianne Hackbornbfd89b32011-12-15 18:22:54 -08002191 } finally {
Fyodor Kupolove80085d2015-11-06 18:21:39 -08002192 IoUtils.closeQuietly(fis);
Amith Yamasani4b2e9342011-03-31 12:38:53 -07002193 }
2194 }
2195
Amith Yamasani6f34b412012-10-22 18:19:27 -07002196 /**
Amith Yamasanibc9625052012-11-15 14:39:18 -08002197 * Upgrade steps between versions, either for fixing bugs or changing the data format.
Pavel Grafov6a40f092016-10-25 15:46:51 +01002198 * @param oldGlobalUserRestrictions Pre-O global device policy restrictions.
Amith Yamasani6f34b412012-10-22 18:19:27 -07002199 */
Andreas Gampe2e8c7672018-07-20 13:01:08 -07002200 @GuardedBy({"mRestrictionsLock", "mPackagesLock"})
Pavel Grafov6a40f092016-10-25 15:46:51 +01002201 private void upgradeIfNecessaryLP(Bundle oldGlobalUserRestrictions) {
Bookatz75f0a072019-08-05 14:12:16 -07002202 Set<Integer> userIdsToWrite = new ArraySet<>();
Makoto Onuki1a2cd742015-11-16 13:51:27 -08002203 final int originalVersion = mUserVersion;
Amith Yamasani6f34b412012-10-22 18:19:27 -07002204 int userVersion = mUserVersion;
2205 if (userVersion < 1) {
2206 // Assign a proper name for the owner, if not initialized correctly before
Amith Yamasani12747872015-12-07 14:19:49 -08002207 UserData userData = getUserDataNoChecks(UserHandle.USER_SYSTEM);
2208 if ("Primary".equals(userData.info.name)) {
2209 userData.info.name =
2210 mContext.getResources().getString(com.android.internal.R.string.owner_name);
Bookatz75f0a072019-08-05 14:12:16 -07002211 userIdsToWrite.add(userData.info.id);
Amith Yamasani6f34b412012-10-22 18:19:27 -07002212 }
2213 userVersion = 1;
2214 }
2215
Amith Yamasanibc9625052012-11-15 14:39:18 -08002216 if (userVersion < 2) {
2217 // Owner should be marked as initialized
Amith Yamasani12747872015-12-07 14:19:49 -08002218 UserData userData = getUserDataNoChecks(UserHandle.USER_SYSTEM);
2219 if ((userData.info.flags & UserInfo.FLAG_INITIALIZED) == 0) {
2220 userData.info.flags |= UserInfo.FLAG_INITIALIZED;
Bookatz75f0a072019-08-05 14:12:16 -07002221 userIdsToWrite.add(userData.info.id);
Amith Yamasanibc9625052012-11-15 14:39:18 -08002222 }
2223 userVersion = 2;
2224 }
2225
Amith Yamasani350962c2013-08-06 11:18:53 -07002226
Amith Yamasani5e486f52013-08-07 11:06:44 -07002227 if (userVersion < 4) {
Amith Yamasani5e486f52013-08-07 11:06:44 -07002228 userVersion = 4;
2229 }
2230
Amith Yamasaniaa6634e2014-10-06 14:20:28 -07002231 if (userVersion < 5) {
2232 initDefaultGuestRestrictions();
2233 userVersion = 5;
2234 }
2235
Fyodor Kupolov1c363152015-09-02 13:27:21 -07002236 if (userVersion < 6) {
2237 final boolean splitSystemUser = UserManager.isSplitSystemUser();
Fyodor Kupolov82402752015-10-28 14:54:51 -07002238 synchronized (mUsersLock) {
2239 for (int i = 0; i < mUsers.size(); i++) {
Amith Yamasani12747872015-12-07 14:19:49 -08002240 UserData userData = mUsers.valueAt(i);
Fyodor Kupolov82402752015-10-28 14:54:51 -07002241 // In non-split mode, only user 0 can have restricted profiles
Amith Yamasani12747872015-12-07 14:19:49 -08002242 if (!splitSystemUser && userData.info.isRestricted()
2243 && (userData.info.restrictedProfileParentId
2244 == UserInfo.NO_PROFILE_GROUP_ID)) {
2245 userData.info.restrictedProfileParentId = UserHandle.USER_SYSTEM;
Bookatz75f0a072019-08-05 14:12:16 -07002246 userIdsToWrite.add(userData.info.id);
Fyodor Kupolov82402752015-10-28 14:54:51 -07002247 }
Fyodor Kupolov1c363152015-09-02 13:27:21 -07002248 }
2249 }
2250 userVersion = 6;
2251 }
2252
Pavel Grafov6a40f092016-10-25 15:46:51 +01002253 if (userVersion < 7) {
2254 // Previously only one user could enforce global restrictions, now it is per-user.
2255 synchronized (mRestrictionsLock) {
2256 if (!UserRestrictionsUtils.isEmpty(oldGlobalUserRestrictions)
2257 && mDeviceOwnerUserId != UserHandle.USER_NULL) {
2258 mDevicePolicyGlobalUserRestrictions.put(
2259 mDeviceOwnerUserId, oldGlobalUserRestrictions);
2260 }
2261 // ENSURE_VERIFY_APPS is now enforced globally even if put by profile owner, so move
2262 // it from local to global bundle for all users who set it.
2263 UserRestrictionsUtils.moveRestriction(UserManager.ENSURE_VERIFY_APPS,
2264 mDevicePolicyLocalUserRestrictions, mDevicePolicyGlobalUserRestrictions
2265 );
2266 }
2267 userVersion = 7;
2268 }
2269
Bookatz75f0a072019-08-05 14:12:16 -07002270 if (userVersion < 8) {
2271 // Added FLAG_FULL and FLAG_SYSTEM flags.
2272 synchronized (mUsersLock) {
2273 UserData userData = mUsers.get(UserHandle.USER_SYSTEM);
2274 userData.info.flags |= UserInfo.FLAG_SYSTEM;
2275 if (!UserManager.isHeadlessSystemUserMode()) {
2276 userData.info.flags |= UserInfo.FLAG_FULL;
2277 }
2278 userIdsToWrite.add(userData.info.id);
2279
2280 // Mark FULL all non-profile users except USER_SYSTEM.
2281 // Start index at 1 since USER_SYSTEM is the smallest userId and we're skipping it.
2282 for (int i = 1; i < mUsers.size(); i++) {
2283 userData = mUsers.valueAt(i);
2284 if ((userData.info.flags & UserInfo.FLAG_MANAGED_PROFILE) == 0) {
2285 userData.info.flags |= UserInfo.FLAG_FULL;
2286 userIdsToWrite.add(userData.info.id);
2287 }
2288 }
2289 }
2290 userVersion = 8;
2291 }
2292
Amith Yamasani6f34b412012-10-22 18:19:27 -07002293 if (userVersion < USER_VERSION) {
2294 Slog.w(LOG_TAG, "User version " + mUserVersion + " didn't upgrade as expected to "
2295 + USER_VERSION);
2296 } else {
2297 mUserVersion = userVersion;
Makoto Onuki1a2cd742015-11-16 13:51:27 -08002298
2299 if (originalVersion < mUserVersion) {
Bookatz75f0a072019-08-05 14:12:16 -07002300 for (int userId : userIdsToWrite) {
2301 UserData userData = getUserDataNoChecks(userId);
2302 if (userData != null) {
2303 writeUserLP(userData);
2304 }
2305 }
Makoto Onuki1a2cd742015-11-16 13:51:27 -08002306 writeUserListLP();
2307 }
Amith Yamasani6f34b412012-10-22 18:19:27 -07002308 }
2309 }
2310
Andreas Gampe2e8c7672018-07-20 13:01:08 -07002311 @GuardedBy({"mPackagesLock", "mRestrictionsLock"})
Fyodor Kupolove80085d2015-11-06 18:21:39 -08002312 private void fallbackToSingleUserLP() {
Ying Zheng215116f2019-09-11 12:50:09 -07002313 int flags = UserInfo.FLAG_SYSTEM | UserInfo.FLAG_INITIALIZED | UserInfo.FLAG_ADMIN
2314 | UserInfo.FLAG_PRIMARY;
2315 // In headless system user mode, headless system user is not a full user.
Bookatz75f0a072019-08-05 14:12:16 -07002316 if (!UserManager.isHeadlessSystemUserMode()) {
Ying Zheng215116f2019-09-11 12:50:09 -07002317 flags |= UserInfo.FLAG_FULL;
Bookatz75f0a072019-08-05 14:12:16 -07002318 }
Xiaohui Chen70f6c382015-04-28 14:21:43 -07002319 // Create the system user
Amith Yamasani6f48d6e2016-03-23 14:28:25 -07002320 UserInfo system = new UserInfo(UserHandle.USER_SYSTEM, null, null, flags);
Fyodor Kupolov0f4533d2016-05-18 18:43:12 -07002321 UserData userData = putUserInfo(system);
Amith Yamasani634cf312012-10-04 17:34:21 -07002322 mNextSerialNumber = MIN_USER_ID;
Geoffrey Borggaard15b8b2c2013-08-28 22:11:10 -04002323 mUserVersion = USER_VERSION;
Amith Yamasani67df64b2012-12-14 12:09:36 -08002324
Geoffrey Borggaarde45e45e32013-01-24 10:03:20 -05002325 Bundle restrictions = new Bundle();
Mahaver Chopra3d9805d2016-07-07 16:25:05 +01002326 try {
2327 final String[] defaultFirstUserRestrictions = mContext.getResources().getStringArray(
2328 com.android.internal.R.array.config_defaultFirstUserRestrictions);
2329 for (String userRestriction : defaultFirstUserRestrictions) {
2330 if (UserRestrictionsUtils.isValidRestriction(userRestriction)) {
2331 restrictions.putBoolean(userRestriction, true);
2332 }
2333 }
2334 } catch (Resources.NotFoundException e) {
2335 Log.e(LOG_TAG, "Couldn't find resource: config_defaultFirstUserRestrictions", e);
2336 }
2337
Pavel Grafov6a40f092016-10-25 15:46:51 +01002338 if (!restrictions.isEmpty()) {
2339 synchronized (mRestrictionsLock) {
2340 mBaseUserRestrictions.append(UserHandle.USER_SYSTEM, restrictions);
2341 }
Makoto Onuki068c54a2015-10-13 14:34:03 -07002342 }
Amith Yamasani67df64b2012-12-14 12:09:36 -08002343
Fyodor Kupolov82402752015-10-28 14:54:51 -07002344 updateUserIds();
Amith Yamasaniaa6634e2014-10-06 14:20:28 -07002345 initDefaultGuestRestrictions();
Amith Yamasani4b2e9342011-03-31 12:38:53 -07002346
Amith Yamasani12747872015-12-07 14:19:49 -08002347 writeUserLP(userData);
Jeff Sharkeycd575992016-03-29 14:12:49 -06002348 writeUserListLP();
Amith Yamasani4b2e9342011-03-31 12:38:53 -07002349 }
2350
Amith Yamasani6f48d6e2016-03-23 14:28:25 -07002351 private String getOwnerName() {
2352 return mContext.getResources().getString(com.android.internal.R.string.owner_name);
2353 }
2354
Bookatz75f0a072019-08-05 14:12:16 -07002355 private void scheduleWriteUser(UserData userData) {
Makoto Onuki1a2cd742015-11-16 13:51:27 -08002356 if (DBG) {
2357 debug("scheduleWriteUser");
2358 }
Makoto Onuki9e935a32015-11-06 14:24:24 -08002359 // No need to wrap it within a lock -- worst case, we'll just post the same message
2360 // twice.
Bookatz75f0a072019-08-05 14:12:16 -07002361 if (!mHandler.hasMessages(WRITE_USER_MSG, userData)) {
2362 Message msg = mHandler.obtainMessage(WRITE_USER_MSG, userData);
Fyodor Kupolov75d0ea82014-12-15 16:21:07 -08002363 mHandler.sendMessageDelayed(msg, WRITE_USER_DELAY);
2364 }
2365 }
2366
Amith Yamasani12747872015-12-07 14:19:49 -08002367 private void writeUserLP(UserData userData) {
Makoto Onuki1a2cd742015-11-16 13:51:27 -08002368 if (DBG) {
Amith Yamasani12747872015-12-07 14:19:49 -08002369 debug("writeUserLP " + userData);
Makoto Onuki1a2cd742015-11-16 13:51:27 -08002370 }
Amith Yamasani742a6712011-05-04 14:49:28 -07002371 FileOutputStream fos = null;
Amith Yamasani12747872015-12-07 14:19:49 -08002372 AtomicFile userFile = new AtomicFile(new File(mUsersDir, userData.info.id + XML_SUFFIX));
Amith Yamasani4b2e9342011-03-31 12:38:53 -07002373 try {
Amith Yamasani2a003292012-08-14 18:25:45 -07002374 fos = userFile.startWrite();
Amith Yamasani4b2e9342011-03-31 12:38:53 -07002375 final BufferedOutputStream bos = new BufferedOutputStream(fos);
Kenny Guy02c89902016-11-15 19:36:38 +00002376 writeUserLP(userData, bos);
Amith Yamasani2a003292012-08-14 18:25:45 -07002377 userFile.finishWrite(fos);
2378 } catch (Exception ioe) {
Jeff Sharkeycd575992016-03-29 14:12:49 -06002379 Slog.e(LOG_TAG, "Error writing user info " + userData.info.id, ioe);
Amith Yamasani2a003292012-08-14 18:25:45 -07002380 userFile.failWrite(fos);
Amith Yamasani4b2e9342011-03-31 12:38:53 -07002381 }
2382 }
2383
2384 /*
Kenny Guy02c89902016-11-15 19:36:38 +00002385 * Writes the user file in this format:
2386 *
2387 * <user flags="20039023" id="0">
2388 * <name>Primary</name>
2389 * </user>
2390 */
2391 @VisibleForTesting
2392 void writeUserLP(UserData userData, OutputStream os)
2393 throws IOException, XmlPullParserException {
2394 // XmlSerializer serializer = XmlUtils.serializerInstance();
2395 final XmlSerializer serializer = new FastXmlSerializer();
2396 serializer.setOutput(os, StandardCharsets.UTF_8.name());
2397 serializer.startDocument(null, true);
2398 serializer.setFeature("http://xmlpull.org/v1/doc/features.html#indent-output", true);
2399
2400 final UserInfo userInfo = userData.info;
2401 serializer.startTag(null, TAG_USER);
2402 serializer.attribute(null, ATTR_ID, Integer.toString(userInfo.id));
2403 serializer.attribute(null, ATTR_SERIAL_NO, Integer.toString(userInfo.serialNumber));
2404 serializer.attribute(null, ATTR_FLAGS, Integer.toString(userInfo.flags));
2405 serializer.attribute(null, ATTR_CREATION_TIME, Long.toString(userInfo.creationTime));
2406 serializer.attribute(null, ATTR_LAST_LOGGED_IN_TIME,
2407 Long.toString(userInfo.lastLoggedInTime));
2408 if (userInfo.lastLoggedInFingerprint != null) {
2409 serializer.attribute(null, ATTR_LAST_LOGGED_IN_FINGERPRINT,
2410 userInfo.lastLoggedInFingerprint);
2411 }
2412 if (userInfo.iconPath != null) {
2413 serializer.attribute(null, ATTR_ICON_PATH, userInfo.iconPath);
2414 }
2415 if (userInfo.partial) {
2416 serializer.attribute(null, ATTR_PARTIAL, "true");
2417 }
Felipe Lemec1ca4412019-09-11 09:23:26 -07002418 if (userInfo.preCreated) {
2419 serializer.attribute(null, ATTR_PRE_CREATED, "true");
2420 }
Kenny Guy02c89902016-11-15 19:36:38 +00002421 if (userInfo.guestToRemove) {
2422 serializer.attribute(null, ATTR_GUEST_TO_REMOVE, "true");
2423 }
2424 if (userInfo.profileGroupId != UserInfo.NO_PROFILE_GROUP_ID) {
2425 serializer.attribute(null, ATTR_PROFILE_GROUP_ID,
2426 Integer.toString(userInfo.profileGroupId));
2427 }
2428 serializer.attribute(null, ATTR_PROFILE_BADGE,
2429 Integer.toString(userInfo.profileBadge));
2430 if (userInfo.restrictedProfileParentId != UserInfo.NO_PROFILE_GROUP_ID) {
2431 serializer.attribute(null, ATTR_RESTRICTED_PROFILE_PARENT_ID,
2432 Integer.toString(userInfo.restrictedProfileParentId));
2433 }
2434 // Write seed data
2435 if (userData.persistSeedData) {
2436 if (userData.seedAccountName != null) {
2437 serializer.attribute(null, ATTR_SEED_ACCOUNT_NAME, userData.seedAccountName);
2438 }
2439 if (userData.seedAccountType != null) {
2440 serializer.attribute(null, ATTR_SEED_ACCOUNT_TYPE, userData.seedAccountType);
2441 }
2442 }
2443 if (userInfo.name != null) {
2444 serializer.startTag(null, TAG_NAME);
2445 serializer.text(userInfo.name);
2446 serializer.endTag(null, TAG_NAME);
2447 }
2448 synchronized (mRestrictionsLock) {
2449 UserRestrictionsUtils.writeRestrictions(serializer,
2450 mBaseUserRestrictions.get(userInfo.id), TAG_RESTRICTIONS);
2451 UserRestrictionsUtils.writeRestrictions(serializer,
2452 mDevicePolicyLocalUserRestrictions.get(userInfo.id),
2453 TAG_DEVICE_POLICY_RESTRICTIONS);
Pavel Grafov6a40f092016-10-25 15:46:51 +01002454 UserRestrictionsUtils.writeRestrictions(serializer,
2455 mDevicePolicyGlobalUserRestrictions.get(userInfo.id),
2456 TAG_DEVICE_POLICY_GLOBAL_RESTRICTIONS);
Kenny Guy02c89902016-11-15 19:36:38 +00002457 }
2458
2459 if (userData.account != null) {
2460 serializer.startTag(null, TAG_ACCOUNT);
2461 serializer.text(userData.account);
2462 serializer.endTag(null, TAG_ACCOUNT);
2463 }
2464
2465 if (userData.persistSeedData && userData.seedAccountOptions != null) {
2466 serializer.startTag(null, TAG_SEED_ACCOUNT_OPTIONS);
2467 userData.seedAccountOptions.saveToXml(serializer);
2468 serializer.endTag(null, TAG_SEED_ACCOUNT_OPTIONS);
2469 }
2470
arangelov9b632d72018-12-07 23:21:22 +00002471 if (userData.getLastRequestQuietModeEnabledMillis() != 0L) {
2472 serializer.startTag(/* namespace */ null, TAG_LAST_REQUEST_QUIET_MODE_ENABLED_CALL);
2473 serializer.text(String.valueOf(userData.getLastRequestQuietModeEnabledMillis()));
2474 serializer.endTag(/* namespace */ null, TAG_LAST_REQUEST_QUIET_MODE_ENABLED_CALL);
2475 }
2476
Kenny Guy02c89902016-11-15 19:36:38 +00002477 serializer.endTag(null, TAG_USER);
2478
2479 serializer.endDocument();
2480 }
2481
2482 /*
Amith Yamasani4b2e9342011-03-31 12:38:53 -07002483 * Writes the user list file in this format:
2484 *
Amith Yamasani2a003292012-08-14 18:25:45 -07002485 * <users nextSerialNumber="3">
Amith Yamasani4b2e9342011-03-31 12:38:53 -07002486 * <user id="0"></user>
2487 * <user id="2"></user>
2488 * </users>
2489 */
Andreas Gampe2e8c7672018-07-20 13:01:08 -07002490 @GuardedBy({"mRestrictionsLock", "mPackagesLock"})
Fyodor Kupolove80085d2015-11-06 18:21:39 -08002491 private void writeUserListLP() {
Makoto Onuki1a2cd742015-11-16 13:51:27 -08002492 if (DBG) {
2493 debug("writeUserList");
2494 }
Amith Yamasani742a6712011-05-04 14:49:28 -07002495 FileOutputStream fos = null;
Amith Yamasani2a003292012-08-14 18:25:45 -07002496 AtomicFile userListFile = new AtomicFile(mUserListFile);
Amith Yamasani4b2e9342011-03-31 12:38:53 -07002497 try {
Amith Yamasani2a003292012-08-14 18:25:45 -07002498 fos = userListFile.startWrite();
Amith Yamasani4b2e9342011-03-31 12:38:53 -07002499 final BufferedOutputStream bos = new BufferedOutputStream(fos);
2500
2501 // XmlSerializer serializer = XmlUtils.serializerInstance();
2502 final XmlSerializer serializer = new FastXmlSerializer();
Wojciech Staszkiewicz9e9e2e72015-05-08 14:58:46 +01002503 serializer.setOutput(bos, StandardCharsets.UTF_8.name());
Amith Yamasani4b2e9342011-03-31 12:38:53 -07002504 serializer.startDocument(null, true);
2505 serializer.setFeature("http://xmlpull.org/v1/doc/features.html#indent-output", true);
2506
2507 serializer.startTag(null, TAG_USERS);
Amith Yamasani2a003292012-08-14 18:25:45 -07002508 serializer.attribute(null, ATTR_NEXT_SERIAL_NO, Integer.toString(mNextSerialNumber));
Amith Yamasani6f34b412012-10-22 18:19:27 -07002509 serializer.attribute(null, ATTR_USER_VERSION, Integer.toString(mUserVersion));
Amith Yamasani4b2e9342011-03-31 12:38:53 -07002510
Adam Lesinskieddeb492014-09-08 17:50:03 -07002511 serializer.startTag(null, TAG_GUEST_RESTRICTIONS);
Fyodor Kupolove80085d2015-11-06 18:21:39 -08002512 synchronized (mGuestRestrictions) {
2513 UserRestrictionsUtils
2514 .writeRestrictions(serializer, mGuestRestrictions, TAG_RESTRICTIONS);
2515 }
Amith Yamasanie4afaa32014-06-30 14:55:07 +05302516 serializer.endTag(null, TAG_GUEST_RESTRICTIONS);
Pavel Grafov6a40f092016-10-25 15:46:51 +01002517 serializer.startTag(null, TAG_DEVICE_OWNER_USER_ID);
2518 serializer.attribute(null, ATTR_ID, Integer.toString(mDeviceOwnerUserId));
2519 serializer.endTag(null, TAG_DEVICE_OWNER_USER_ID);
Fyodor Kupolov82402752015-10-28 14:54:51 -07002520 int[] userIdsToWrite;
2521 synchronized (mUsersLock) {
2522 userIdsToWrite = new int[mUsers.size()];
2523 for (int i = 0; i < userIdsToWrite.length; i++) {
Amith Yamasani12747872015-12-07 14:19:49 -08002524 UserInfo user = mUsers.valueAt(i).info;
Fyodor Kupolov82402752015-10-28 14:54:51 -07002525 userIdsToWrite[i] = user.id;
2526 }
2527 }
2528 for (int id : userIdsToWrite) {
Amith Yamasani4b2e9342011-03-31 12:38:53 -07002529 serializer.startTag(null, TAG_USER);
Fyodor Kupolov82402752015-10-28 14:54:51 -07002530 serializer.attribute(null, ATTR_ID, Integer.toString(id));
Amith Yamasani4b2e9342011-03-31 12:38:53 -07002531 serializer.endTag(null, TAG_USER);
Amith Yamasani4b2e9342011-03-31 12:38:53 -07002532 }
2533
2534 serializer.endTag(null, TAG_USERS);
2535
2536 serializer.endDocument();
Amith Yamasani2a003292012-08-14 18:25:45 -07002537 userListFile.finishWrite(fos);
2538 } catch (Exception e) {
2539 userListFile.failWrite(fos);
Amith Yamasani0b285492011-04-14 17:35:23 -07002540 Slog.e(LOG_TAG, "Error writing user list");
Amith Yamasani4b2e9342011-03-31 12:38:53 -07002541 }
2542 }
2543
Amith Yamasani12747872015-12-07 14:19:49 -08002544 private UserData readUserLP(int id) {
Kenny Guy02c89902016-11-15 19:36:38 +00002545 FileInputStream fis = null;
2546 try {
2547 AtomicFile userFile =
2548 new AtomicFile(new File(mUsersDir, Integer.toString(id) + XML_SUFFIX));
2549 fis = userFile.openRead();
2550 return readUserLP(id, fis);
2551 } catch (IOException ioe) {
2552 Slog.e(LOG_TAG, "Error reading user list");
2553 } catch (XmlPullParserException pe) {
2554 Slog.e(LOG_TAG, "Error reading user list");
2555 } finally {
2556 IoUtils.closeQuietly(fis);
2557 }
2558 return null;
2559 }
2560
2561 @VisibleForTesting
2562 UserData readUserLP(int id, InputStream is) throws IOException,
2563 XmlPullParserException {
Amith Yamasani4b2e9342011-03-31 12:38:53 -07002564 int flags = 0;
Amith Yamasani2a003292012-08-14 18:25:45 -07002565 int serialNumber = id;
Amith Yamasani4b2e9342011-03-31 12:38:53 -07002566 String name = null;
Xiaohui Chenb3b92582015-12-07 11:22:13 -08002567 String account = null;
Amith Yamasanib8151ec2012-04-18 18:02:48 -07002568 String iconPath = null;
Amith Yamasani920ace02012-09-20 22:15:37 -07002569 long creationTime = 0L;
2570 long lastLoggedInTime = 0L;
arangelov9b632d72018-12-07 23:21:22 +00002571 long lastRequestQuietModeEnabledTimestamp = 0L;
Jeff Sharkeybd91e2f2016-03-22 15:32:31 -06002572 String lastLoggedInFingerprint = null;
Kenny Guy2a764942014-04-02 13:29:20 +01002573 int profileGroupId = UserInfo.NO_PROFILE_GROUP_ID;
Kenny Guy02c89902016-11-15 19:36:38 +00002574 int profileBadge = 0;
Fyodor Kupolov06a484a2015-08-21 16:33:20 -07002575 int restrictedProfileParentId = UserInfo.NO_PROFILE_GROUP_ID;
Dianne Hackbornd4ac8d72012-09-27 23:20:10 -07002576 boolean partial = false;
Felipe Lemec1ca4412019-09-11 09:23:26 -07002577 boolean preCreated = false;
Adam Lesinskieddeb492014-09-08 17:50:03 -07002578 boolean guestToRemove = false;
Amith Yamasani12747872015-12-07 14:19:49 -08002579 boolean persistSeedData = false;
2580 String seedAccountName = null;
2581 String seedAccountType = null;
2582 PersistableBundle seedAccountOptions = null;
Pavel Grafov6a40f092016-10-25 15:46:51 +01002583 Bundle baseRestrictions = null;
2584 Bundle localRestrictions = null;
2585 Bundle globalRestrictions = null;
Amith Yamasani4b2e9342011-03-31 12:38:53 -07002586
Kenny Guy02c89902016-11-15 19:36:38 +00002587 XmlPullParser parser = Xml.newPullParser();
2588 parser.setInput(is, StandardCharsets.UTF_8.name());
2589 int type;
2590 while ((type = parser.next()) != XmlPullParser.START_TAG
2591 && type != XmlPullParser.END_DOCUMENT) {
2592 // Skip
2593 }
Amith Yamasani4b2e9342011-03-31 12:38:53 -07002594
Kenny Guy02c89902016-11-15 19:36:38 +00002595 if (type != XmlPullParser.START_TAG) {
2596 Slog.e(LOG_TAG, "Unable to read user " + id);
2597 return null;
2598 }
2599
2600 if (type == XmlPullParser.START_TAG && parser.getName().equals(TAG_USER)) {
2601 int storedId = readIntAttribute(parser, ATTR_ID, -1);
2602 if (storedId != id) {
2603 Slog.e(LOG_TAG, "User id does not match the file name");
Amith Yamasani4b2e9342011-03-31 12:38:53 -07002604 return null;
2605 }
Kenny Guy02c89902016-11-15 19:36:38 +00002606 serialNumber = readIntAttribute(parser, ATTR_SERIAL_NO, id);
2607 flags = readIntAttribute(parser, ATTR_FLAGS, 0);
2608 iconPath = parser.getAttributeValue(null, ATTR_ICON_PATH);
2609 creationTime = readLongAttribute(parser, ATTR_CREATION_TIME, 0);
2610 lastLoggedInTime = readLongAttribute(parser, ATTR_LAST_LOGGED_IN_TIME, 0);
2611 lastLoggedInFingerprint = parser.getAttributeValue(null,
2612 ATTR_LAST_LOGGED_IN_FINGERPRINT);
2613 profileGroupId = readIntAttribute(parser, ATTR_PROFILE_GROUP_ID,
2614 UserInfo.NO_PROFILE_GROUP_ID);
2615 profileBadge = readIntAttribute(parser, ATTR_PROFILE_BADGE, 0);
2616 restrictedProfileParentId = readIntAttribute(parser,
2617 ATTR_RESTRICTED_PROFILE_PARENT_ID, UserInfo.NO_PROFILE_GROUP_ID);
2618 String valueString = parser.getAttributeValue(null, ATTR_PARTIAL);
2619 if ("true".equals(valueString)) {
2620 partial = true;
2621 }
Felipe Lemec1ca4412019-09-11 09:23:26 -07002622 valueString = parser.getAttributeValue(null, ATTR_PRE_CREATED);
2623 if ("true".equals(valueString)) {
2624 preCreated = true;
2625 }
Kenny Guy02c89902016-11-15 19:36:38 +00002626 valueString = parser.getAttributeValue(null, ATTR_GUEST_TO_REMOVE);
2627 if ("true".equals(valueString)) {
2628 guestToRemove = true;
2629 }
Amith Yamasani4b2e9342011-03-31 12:38:53 -07002630
Kenny Guy02c89902016-11-15 19:36:38 +00002631 seedAccountName = parser.getAttributeValue(null, ATTR_SEED_ACCOUNT_NAME);
2632 seedAccountType = parser.getAttributeValue(null, ATTR_SEED_ACCOUNT_TYPE);
2633 if (seedAccountName != null || seedAccountType != null) {
2634 persistSeedData = true;
2635 }
Amith Yamasani4b2e9342011-03-31 12:38:53 -07002636
Kenny Guy02c89902016-11-15 19:36:38 +00002637 int outerDepth = parser.getDepth();
2638 while ((type = parser.next()) != XmlPullParser.END_DOCUMENT
2639 && (type != XmlPullParser.END_TAG || parser.getDepth() > outerDepth)) {
2640 if (type == XmlPullParser.END_TAG || type == XmlPullParser.TEXT) {
2641 continue;
2642 }
2643 String tag = parser.getName();
2644 if (TAG_NAME.equals(tag)) {
2645 type = parser.next();
2646 if (type == XmlPullParser.TEXT) {
2647 name = parser.getText();
2648 }
2649 } else if (TAG_RESTRICTIONS.equals(tag)) {
Pavel Grafov6a40f092016-10-25 15:46:51 +01002650 baseRestrictions = UserRestrictionsUtils.readRestrictions(parser);
Kenny Guy02c89902016-11-15 19:36:38 +00002651 } else if (TAG_DEVICE_POLICY_RESTRICTIONS.equals(tag)) {
Pavel Grafov6a40f092016-10-25 15:46:51 +01002652 localRestrictions = UserRestrictionsUtils.readRestrictions(parser);
2653 } else if (TAG_DEVICE_POLICY_GLOBAL_RESTRICTIONS.equals(tag)) {
2654 globalRestrictions = UserRestrictionsUtils.readRestrictions(parser);
Kenny Guy02c89902016-11-15 19:36:38 +00002655 } else if (TAG_ACCOUNT.equals(tag)) {
2656 type = parser.next();
2657 if (type == XmlPullParser.TEXT) {
2658 account = parser.getText();
2659 }
2660 } else if (TAG_SEED_ACCOUNT_OPTIONS.equals(tag)) {
2661 seedAccountOptions = PersistableBundle.restoreFromXml(parser);
Amith Yamasani12747872015-12-07 14:19:49 -08002662 persistSeedData = true;
arangelov9b632d72018-12-07 23:21:22 +00002663 } else if (TAG_LAST_REQUEST_QUIET_MODE_ENABLED_CALL.equals(tag)) {
2664 type = parser.next();
2665 if (type == XmlPullParser.TEXT) {
2666 lastRequestQuietModeEnabledTimestamp = Long.parseLong(parser.getText());
2667 }
Amith Yamasani12747872015-12-07 14:19:49 -08002668 }
Dianne Hackbornbfd89b32011-12-15 18:22:54 -08002669 }
Amith Yamasani4b2e9342011-03-31 12:38:53 -07002670 }
Kenny Guy02c89902016-11-15 19:36:38 +00002671
2672 // Create the UserInfo object that gets passed around
2673 UserInfo userInfo = new UserInfo(id, name, iconPath, flags);
2674 userInfo.serialNumber = serialNumber;
2675 userInfo.creationTime = creationTime;
2676 userInfo.lastLoggedInTime = lastLoggedInTime;
2677 userInfo.lastLoggedInFingerprint = lastLoggedInFingerprint;
2678 userInfo.partial = partial;
Felipe Lemec1ca4412019-09-11 09:23:26 -07002679 userInfo.preCreated = preCreated;
Kenny Guy02c89902016-11-15 19:36:38 +00002680 userInfo.guestToRemove = guestToRemove;
2681 userInfo.profileGroupId = profileGroupId;
2682 userInfo.profileBadge = profileBadge;
2683 userInfo.restrictedProfileParentId = restrictedProfileParentId;
2684
2685 // Create the UserData object that's internal to this class
2686 UserData userData = new UserData();
2687 userData.info = userInfo;
2688 userData.account = account;
2689 userData.seedAccountName = seedAccountName;
2690 userData.seedAccountType = seedAccountType;
2691 userData.persistSeedData = persistSeedData;
2692 userData.seedAccountOptions = seedAccountOptions;
arangelov9b632d72018-12-07 23:21:22 +00002693 userData.setLastRequestQuietModeEnabledMillis(lastRequestQuietModeEnabledTimestamp);
Kenny Guy02c89902016-11-15 19:36:38 +00002694
2695 synchronized (mRestrictionsLock) {
Pavel Grafov6a40f092016-10-25 15:46:51 +01002696 if (baseRestrictions != null) {
2697 mBaseUserRestrictions.put(id, baseRestrictions);
2698 }
2699 if (localRestrictions != null) {
2700 mDevicePolicyLocalUserRestrictions.put(id, localRestrictions);
2701 }
2702 if (globalRestrictions != null) {
2703 mDevicePolicyGlobalUserRestrictions.put(id, globalRestrictions);
2704 }
Kenny Guy02c89902016-11-15 19:36:38 +00002705 }
2706 return userData;
Amith Yamasani4b2e9342011-03-31 12:38:53 -07002707 }
2708
Amith Yamasani920ace02012-09-20 22:15:37 -07002709 private int readIntAttribute(XmlPullParser parser, String attr, int defaultValue) {
2710 String valueString = parser.getAttributeValue(null, attr);
2711 if (valueString == null) return defaultValue;
2712 try {
2713 return Integer.parseInt(valueString);
2714 } catch (NumberFormatException nfe) {
2715 return defaultValue;
2716 }
2717 }
2718
2719 private long readLongAttribute(XmlPullParser parser, String attr, long defaultValue) {
2720 String valueString = parser.getAttributeValue(null, attr);
2721 if (valueString == null) return defaultValue;
2722 try {
2723 return Long.parseLong(valueString);
2724 } catch (NumberFormatException nfe) {
2725 return defaultValue;
2726 }
2727 }
2728
Amith Yamasanib82add22013-07-09 11:24:44 -07002729 /**
Amith Yamasani1a7472e2013-07-02 11:17:30 -07002730 * Removes the app restrictions file for a specific package and user id, if it exists.
2731 */
Bookatzf56f2582019-09-04 16:06:41 -07002732 private static void cleanAppRestrictionsForPackageLAr(String pkg, @UserIdInt int userId) {
Fyodor Kupolovd31cee92017-09-05 16:31:08 -07002733 File dir = Environment.getUserSystemDirectory(userId);
2734 File resFile = new File(dir, packageToRestrictionsFileName(pkg));
2735 if (resFile.exists()) {
2736 resFile.delete();
Amith Yamasani1a7472e2013-07-02 11:17:30 -07002737 }
2738 }
2739
Kenny Guya52dc3e2014-02-11 15:33:14 +00002740 @Override
Bookatzf56f2582019-09-04 16:06:41 -07002741 public UserInfo createProfileForUser(String name, int flags, @UserIdInt int userId,
Sudheer Shanka7cb54a32016-09-16 12:59:05 -07002742 String[] disallowedPackages) {
Sudheer Shankaf5cea032016-06-08 17:13:24 -07002743 checkManageOrCreateUsersPermission(flags);
Sudheer Shanka7cb54a32016-09-16 12:59:05 -07002744 return createUserInternal(name, flags, userId, disallowedPackages);
Kenny Guya52dc3e2014-02-11 15:33:14 +00002745 }
2746
Amith Yamasani258848d2012-08-10 17:06:33 -07002747 @Override
Bookatzf56f2582019-09-04 16:06:41 -07002748 public UserInfo createProfileForUserEvenWhenDisallowed(String name, int flags,
2749 @UserIdInt int userId, String[] disallowedPackages) {
Tony Mak6dc428f2016-10-10 15:48:27 +01002750 checkManageOrCreateUsersPermission(flags);
Felipe Lemec1ca4412019-09-11 09:23:26 -07002751 return createUserInternalUnchecked(name, flags, userId, /* preCreate= */ false,
2752 disallowedPackages);
Tony Mak6dc428f2016-10-10 15:48:27 +01002753 }
2754
2755 @Override
Bookatzf56f2582019-09-04 16:06:41 -07002756 public boolean removeUserEvenWhenDisallowed(@UserIdInt int userId) {
Nicolas Prevotd37c4a92017-01-23 11:56:00 +00002757 checkManageOrCreateUsersPermission("Only the system can remove users");
Bookatzf56f2582019-09-04 16:06:41 -07002758 return removeUserUnchecked(userId);
Nicolas Prevotd37c4a92017-01-23 11:56:00 +00002759 }
2760
2761 @Override
Amith Yamasani13593602012-03-22 16:16:17 -07002762 public UserInfo createUser(String name, int flags) {
Sudheer Shankaf5cea032016-06-08 17:13:24 -07002763 checkManageOrCreateUsersPermission(flags);
Nicolas Prevotc6d033e2014-02-27 13:11:09 +00002764 return createUserInternal(name, flags, UserHandle.USER_NULL);
Kenny Guya52dc3e2014-02-11 15:33:14 +00002765 }
Amith Yamasanifaea76f2012-09-11 10:59:48 -07002766
Felipe Lemec1ca4412019-09-11 09:23:26 -07002767 @Override
2768 public UserInfo preCreateUser(int flags) {
2769 checkManageOrCreateUsersPermission(flags);
2770
2771 Preconditions.checkArgument(!UserInfo.isManagedProfile(flags),
2772 "cannot pre-create managed profiles");
2773
Felipe Leme09a7f2d2019-10-02 16:27:46 -07002774 Slog.i(LOG_TAG, "Pre-creating user with flags " + UserInfo.flagsToString(flags));
2775
Felipe Lemec1ca4412019-09-11 09:23:26 -07002776 return createUserInternalUnchecked(/* name= */ null, flags,
2777 /* parentId= */ UserHandle.USER_NULL, /* preCreate= */ true,
2778 /* disallowedPackages= */ null);
2779 }
2780
2781 private UserInfo createUserInternal(@Nullable String name, @UserInfoFlag int flags,
2782 @UserIdInt int parentId) {
Sudheer Shanka7cb54a32016-09-16 12:59:05 -07002783 return createUserInternal(name, flags, parentId, null);
2784 }
2785
Felipe Lemec1ca4412019-09-11 09:23:26 -07002786 private UserInfo createUserInternal(@Nullable String name, @UserInfoFlag int flags,
2787 @UserIdInt int parentId, @Nullable String[] disallowedPackages) {
Esteban Talavera6c9116a2016-11-24 16:12:44 +00002788 String restriction = ((flags & UserInfo.FLAG_MANAGED_PROFILE) != 0)
2789 ? UserManager.DISALLOW_ADD_MANAGED_PROFILE
2790 : UserManager.DISALLOW_ADD_USER;
2791 if (hasUserRestriction(restriction, UserHandle.getCallingUserId())) {
2792 Log.w(LOG_TAG, "Cannot add user. " + restriction + " is enabled.");
Julia Reynolds75175022014-06-26 16:35:00 -04002793 return null;
2794 }
Felipe Lemec1ca4412019-09-11 09:23:26 -07002795 return createUserInternalUnchecked(name, flags, parentId, /* preCreate= */ false,
2796 disallowedPackages);
Tony Mak6dc428f2016-10-10 15:48:27 +01002797 }
2798
Felipe Lemec1ca4412019-09-11 09:23:26 -07002799 private UserInfo createUserInternalUnchecked(@Nullable String name, @UserInfoFlag int flags,
2800 @UserIdInt int parentId, boolean preCreate,
2801 @Nullable String[] disallowedPackages) {
2802 final TimingsTraceAndSlog t = new TimingsTraceAndSlog();
2803 t.traceBegin("createUser-" + flags);
2804 try {
2805 return createUserInternalUncheckedNoTracing(name, flags, parentId, preCreate,
2806 disallowedPackages, t);
2807 } finally {
2808 t.traceEnd();
2809 }
jovanakdd7e4752019-09-04 12:35:45 -07002810 }
2811
Felipe Lemec1ca4412019-09-11 09:23:26 -07002812 private UserInfo createUserInternalUncheckedNoTracing(@Nullable String name,
2813 @UserInfoFlag int flags, @UserIdInt int parentId, boolean preCreate,
2814 @Nullable String[] disallowedPackages, @NonNull TimingsTraceAndSlog t) {
2815
2816 // First try to use a pre-created user (if available).
2817 // NOTE: currently we don't support pre-created managed profiles
2818 if (!preCreate && (parentId < 0 && !UserInfo.isManagedProfile(flags))) {
2819 final UserData preCreatedUserData;
2820 synchronized (mUsersLock) {
2821 preCreatedUserData = getPreCreatedUserLU(flags);
2822 }
2823 if (preCreatedUserData != null) {
2824 final UserInfo preCreatedUser = preCreatedUserData.info;
2825 Log.i(LOG_TAG, "Reusing pre-created user " + preCreatedUser.id + " for flags + "
2826 + UserInfo.flagsToString(flags));
2827 if (DBG) {
2828 Log.d(LOG_TAG, "pre-created user flags: "
2829 + UserInfo.flagsToString(preCreatedUser.flags)
2830 + " new-user flags: " + UserInfo.flagsToString(flags));
2831 }
2832 preCreatedUser.name = name;
2833 preCreatedUser.preCreated = false;
2834 preCreatedUser.creationTime = getCreationTime();
2835
2836 dispatchUserAddedIntent(preCreatedUser);
2837
2838 writeUserLP(preCreatedUserData);
2839 writeUserListLP();
2840
2841 return preCreatedUser;
2842 }
2843 }
2844
Suprabh Shuklac5e057c2016-08-08 16:22:44 -07002845 DeviceStorageMonitorInternal dsm = LocalServices
2846 .getService(DeviceStorageMonitorInternal.class);
2847 if (dsm.isMemoryLow()) {
2848 Log.w(LOG_TAG, "Cannot add user. Not enough space on disk.");
2849 return null;
2850 }
jovanakdd7e4752019-09-04 12:35:45 -07002851
Felipe Lemec1ca4412019-09-11 09:23:26 -07002852 final boolean isGuest = UserInfo.isGuest(flags);
2853 final boolean isManagedProfile = UserInfo.isManagedProfile(flags);
Fyodor Kupolov06a484a2015-08-21 16:33:20 -07002854 final boolean isRestricted = (flags & UserInfo.FLAG_RESTRICTED) != 0;
Amith Yamasani52c21e32016-05-31 09:12:20 -07002855 final boolean isDemo = (flags & UserInfo.FLAG_DEMO) != 0;
Dianne Hackborn5dc5a002012-09-15 19:33:48 -07002856 final long ident = Binder.clearCallingIdentity();
Fyodor Kupolove80085d2015-11-06 18:21:39 -08002857 UserInfo userInfo;
Amith Yamasani12747872015-12-07 14:19:49 -08002858 UserData userData;
Amith Yamasanibb054c92015-07-09 14:16:27 -07002859 final int userId;
Dianne Hackborn5dc5a002012-09-15 19:33:48 -07002860 try {
Fyodor Kupolove80085d2015-11-06 18:21:39 -08002861 synchronized (mPackagesLock) {
Amith Yamasani12747872015-12-07 14:19:49 -08002862 UserData parent = null;
Fyodor Kupolove80085d2015-11-06 18:21:39 -08002863 if (parentId != UserHandle.USER_NULL) {
2864 synchronized (mUsersLock) {
Amith Yamasani12747872015-12-07 14:19:49 -08002865 parent = getUserDataLU(parentId);
Nicolas Prevotc6d033e2014-02-27 13:11:09 +00002866 }
Fyodor Kupolove80085d2015-11-06 18:21:39 -08002867 if (parent == null) return null;
2868 }
2869 if (isManagedProfile && !canAddMoreManagedProfiles(parentId, false)) {
2870 Log.e(LOG_TAG, "Cannot add more managed profiles for user " + parentId);
2871 return null;
2872 }
Amith Yamasani52c21e32016-05-31 09:12:20 -07002873 if (!isGuest && !isManagedProfile && !isDemo && isUserLimitReached()) {
Felipe Lemec1ca4412019-09-11 09:23:26 -07002874 // If we're not adding a guest/demo user or a managed profile,
2875 // and the limit has been reached, cannot add a user.
jovanaka6763a32018-12-03 17:23:20 -08002876 Log.e(LOG_TAG, "Cannot add user. Maximum user limit is reached.");
Fyodor Kupolove80085d2015-11-06 18:21:39 -08002877 return null;
2878 }
2879 // If we're adding a guest and there already exists one, bail.
Felipe Lemee35f5b02019-10-14 15:37:44 -07002880 if (isGuest && !preCreate && findCurrentGuestUser() != null) {
jovanaka6763a32018-12-03 17:23:20 -08002881 Log.e(LOG_TAG, "Cannot add guest user. Guest user already exists.");
Fyodor Kupolove80085d2015-11-06 18:21:39 -08002882 return null;
2883 }
2884 // In legacy mode, restricted profile's parent can only be the owner user
2885 if (isRestricted && !UserManager.isSplitSystemUser()
2886 && (parentId != UserHandle.USER_SYSTEM)) {
2887 Log.w(LOG_TAG, "Cannot add restricted profile - parent user must be owner");
2888 return null;
2889 }
2890 if (isRestricted && UserManager.isSplitSystemUser()) {
2891 if (parent == null) {
2892 Log.w(LOG_TAG, "Cannot add restricted profile - parent user must be "
2893 + "specified");
Nicolas Prevot12678a92015-05-13 12:15:03 -07002894 return null;
2895 }
Amith Yamasani12747872015-12-07 14:19:49 -08002896 if (!parent.info.canHaveProfile()) {
Fyodor Kupolove80085d2015-11-06 18:21:39 -08002897 Log.w(LOG_TAG, "Cannot add restricted profile - profiles cannot be "
2898 + "created for the specified parent user id " + parentId);
Amith Yamasani95ab7842014-08-11 17:09:26 -07002899 return null;
2900 }
Fyodor Kupolove80085d2015-11-06 18:21:39 -08002901 }
Ying Zheng215116f2019-09-11 12:50:09 -07002902
Bookatz75f0a072019-08-05 14:12:16 -07002903 if (!isManagedProfile) {
2904 // New users cannot be system, and it's not a profile, so per-force it's FULL.
2905 flags |= UserInfo.FLAG_FULL;
2906 }
Lenka Trochtovac4dd0212015-11-18 12:22:06 +01002907
Lenka Trochtovaf348e8e2016-01-07 17:20:34 +01002908 userId = getNextAvailableId();
2909 Environment.getUserSystemDirectory(userId).mkdirs();
Felipe Lemec1ca4412019-09-11 09:23:26 -07002910 boolean ephemeralGuests = areGuestUsersEphemeral();
Lenka Trochtovaf348e8e2016-01-07 17:20:34 +01002911
Fyodor Kupolove80085d2015-11-06 18:21:39 -08002912 synchronized (mUsersLock) {
Lenka Trochtovaf348e8e2016-01-07 17:20:34 +01002913 // Add ephemeral flag to guests/users if required. Also inherit it from parent.
2914 if ((isGuest && ephemeralGuests) || mForceEphemeralUsers
2915 || (parent != null && parent.info.isEphemeral())) {
2916 flags |= UserInfo.FLAG_EPHEMERAL;
2917 }
2918
2919 userInfo = new UserInfo(userId, name, null, flags);
2920 userInfo.serialNumber = mNextSerialNumber++;
Felipe Lemec1ca4412019-09-11 09:23:26 -07002921 userInfo.creationTime = getCreationTime();
Lenka Trochtovaf348e8e2016-01-07 17:20:34 +01002922 userInfo.partial = true;
Felipe Lemec1ca4412019-09-11 09:23:26 -07002923 userInfo.preCreated = preCreate;
Fyodor Kupolov83c24242016-03-31 13:30:42 -07002924 userInfo.lastLoggedInFingerprint = Build.FINGERPRINT;
Kenny Guy02c89902016-11-15 19:36:38 +00002925 if (isManagedProfile && parentId != UserHandle.USER_NULL) {
2926 userInfo.profileBadge = getFreeProfileBadgeLU(parentId);
2927 }
Lenka Trochtovaf348e8e2016-01-07 17:20:34 +01002928 userData = new UserData();
2929 userData.info = userInfo;
Amith Yamasani12747872015-12-07 14:19:49 -08002930 mUsers.put(userId, userData);
Fyodor Kupolove80085d2015-11-06 18:21:39 -08002931 }
Jeff Sharkeycd575992016-03-29 14:12:49 -06002932 writeUserLP(userData);
Fyodor Kupolove80085d2015-11-06 18:21:39 -08002933 writeUserListLP();
2934 if (parent != null) {
2935 if (isManagedProfile) {
Amith Yamasani12747872015-12-07 14:19:49 -08002936 if (parent.info.profileGroupId == UserInfo.NO_PROFILE_GROUP_ID) {
2937 parent.info.profileGroupId = parent.info.id;
Fyodor Kupolove80085d2015-11-06 18:21:39 -08002938 writeUserLP(parent);
Kenny Guya52dc3e2014-02-11 15:33:14 +00002939 }
Amith Yamasani12747872015-12-07 14:19:49 -08002940 userInfo.profileGroupId = parent.info.profileGroupId;
Fyodor Kupolove80085d2015-11-06 18:21:39 -08002941 } else if (isRestricted) {
Amith Yamasani12747872015-12-07 14:19:49 -08002942 if (parent.info.restrictedProfileParentId == UserInfo.NO_PROFILE_GROUP_ID) {
2943 parent.info.restrictedProfileParentId = parent.info.id;
Fyodor Kupolove80085d2015-11-06 18:21:39 -08002944 writeUserLP(parent);
Jeff Sharkey6dce4962015-07-03 18:08:41 -07002945 }
Amith Yamasani12747872015-12-07 14:19:49 -08002946 userInfo.restrictedProfileParentId = parent.info.restrictedProfileParentId;
Makoto Onuki068c54a2015-10-13 14:34:03 -07002947 }
Dianne Hackborn5dc5a002012-09-15 19:33:48 -07002948 }
Dianne Hackborn4428e172012-08-24 17:43:05 -07002949 }
jovanakdd7e4752019-09-04 12:35:45 -07002950
2951 t.traceBegin("createUserKey");
Fyodor Kupolove80085d2015-11-06 18:21:39 -08002952 final StorageManager storage = mContext.getSystemService(StorageManager.class);
Lenka Trochtovac4dd0212015-11-18 12:22:06 +01002953 storage.createUserKey(userId, userInfo.serialNumber, userInfo.isEphemeral());
jovanakdd7e4752019-09-04 12:35:45 -07002954 t.traceEnd();
2955
2956 t.traceBegin("prepareUserData");
Fyodor Kupolov5c0ecfd2017-01-27 11:11:57 -08002957 mUserDataPreparer.prepareUserData(userId, userInfo.serialNumber,
Jeff Sharkey47f71082016-02-01 17:03:54 -07002958 StorageManager.FLAG_STORAGE_DE | StorageManager.FLAG_STORAGE_CE);
jovanakdd7e4752019-09-04 12:35:45 -07002959 t.traceEnd();
2960
Bookatz04d7ae52019-08-05 14:07:12 -07002961 final Set<String> installablePackages =
2962 mSystemPackageInstaller.getInstallablePackagesForUserType(flags);
jovanakdd7e4752019-09-04 12:35:45 -07002963 t.traceBegin("PM.createNewUser");
Bookatz04d7ae52019-08-05 14:07:12 -07002964 mPm.createNewUser(userId, installablePackages, disallowedPackages);
jovanakdd7e4752019-09-04 12:35:45 -07002965 t.traceEnd();
2966
Fyodor Kupolove80085d2015-11-06 18:21:39 -08002967 userInfo.partial = false;
2968 synchronized (mPackagesLock) {
Amith Yamasani12747872015-12-07 14:19:49 -08002969 writeUserLP(userData);
Fyodor Kupolove80085d2015-11-06 18:21:39 -08002970 }
2971 updateUserIds();
2972 Bundle restrictions = new Bundle();
Fyodor Kupolove04462c2015-11-30 15:02:53 -08002973 if (isGuest) {
2974 synchronized (mGuestRestrictions) {
2975 restrictions.putAll(mGuestRestrictions);
2976 }
2977 }
Fyodor Kupolove80085d2015-11-06 18:21:39 -08002978 synchronized (mRestrictionsLock) {
2979 mBaseUserRestrictions.append(userId, restrictions);
2980 }
jovanakdd7e4752019-09-04 12:35:45 -07002981
2982 t.traceBegin("PM.onNewUserCreated");
Fyodor Kupolov5fd967d2016-07-12 14:46:19 -07002983 mPm.onNewUserCreated(userId);
jovanakdd7e4752019-09-04 12:35:45 -07002984
Felipe Lemec1ca4412019-09-11 09:23:26 -07002985 if (preCreate) {
2986 // Must start user (which will be stopped right away, through
2987 // UserController.finishUserUnlockedCompleted) so services can properly
2988 // intialize it.
Felipe Lemec6e015d2019-10-21 12:51:08 -07002989 // TODO(b/143092698): in the long-term, it might be better to add a onCreateUser()
2990 // callback on SystemService instead.
Felipe Lemec1ca4412019-09-11 09:23:26 -07002991 Slog.i(LOG_TAG, "starting pre-created user " + userInfo.toFullString());
2992 final IActivityManager am = ActivityManager.getService();
2993 try {
2994 am.startUserInBackground(userId);
2995 } catch (RemoteException e) {
2996 Slog.w(LOG_TAG, "could not start pre-created user " + userId, e);
2997 }
2998 } else {
2999 dispatchUserAddedIntent(userInfo);
3000 }
3001
Dianne Hackborn5dc5a002012-09-15 19:33:48 -07003002 } finally {
3003 Binder.restoreCallingIdentity(ident);
Amith Yamasani258848d2012-08-10 17:06:33 -07003004 }
Felipe Lemec1ca4412019-09-11 09:23:26 -07003005
Felipe Lemec6e015d2019-10-21 12:51:08 -07003006 // TODO(b/143092698): it's possible to reach "max users overflow" when the user is created
Felipe Lemec1ca4412019-09-11 09:23:26 -07003007 // "from scratch" (i.e., not from a pre-created user) and reaches the maximum number of
3008 // users without counting the pre-created one. Then when the pre-created is converted, the
3009 // "effective" number of max users is exceeds. Example:
3010 // Max: 3 Current: 2 full (u0 and u10) + 1 pre-created (u11)
3011 // Step 1: create(/* flags doesn't match u11 */): u12 is created, "effective max" is now 3
3012 // (u0, u10, u12) but "real" max is 4 (u0, u10, u11, u12)
3013 // Step 2: create(/* flags match u11 */): u11 is converted, now "effective max" is also 4
3014 // (u0, u10, u11, u12)
3015 // One way to avoid this issue is by removing a pre-created user from the pool when the
3016 // "real" max exceeds the max here.
3017
Amith Yamasani4b2e9342011-03-31 12:38:53 -07003018 return userInfo;
3019 }
3020
Bookatz04d7ae52019-08-05 14:07:12 -07003021 /** Install/uninstall system packages for all users based on their user-type, as applicable. */
3022 boolean installWhitelistedSystemPackages(boolean isFirstBoot, boolean isUpgrade) {
3023 return mSystemPackageInstaller.installWhitelistedSystemPackages(isFirstBoot, isUpgrade);
3024 }
3025
Felipe Lemec1ca4412019-09-11 09:23:26 -07003026 private long getCreationTime() {
3027 final long now = System.currentTimeMillis();
3028 return (now > EPOCH_PLUS_30_YEARS) ? now : 0;
3029 }
3030
3031 private void dispatchUserAddedIntent(@NonNull UserInfo userInfo) {
3032 Intent addedIntent = new Intent(Intent.ACTION_USER_ADDED);
3033 addedIntent.putExtra(Intent.EXTRA_USER_HANDLE, userInfo.id);
3034 mContext.sendBroadcastAsUser(addedIntent, UserHandle.ALL,
3035 android.Manifest.permission.MANAGE_USERS);
3036 MetricsLogger.count(mContext, userInfo.isGuest() ? TRON_GUEST_CREATED
3037 : (userInfo.isDemo() ? TRON_DEMO_CREATED : TRON_USER_CREATED), 1);
3038 }
3039
3040 private boolean areGuestUsersEphemeral() {
3041 return Resources.getSystem()
3042 .getBoolean(com.android.internal.R.bool.config_guestUserEphemeral);
3043 }
3044
3045 /**
3046 * Gets a pre-created user for the given flag.
3047 *
3048 * <p>Should be used only during user creation, so the pre-created user can be used (instead of
3049 * creating and initializing a new user from scratch).
3050 */
Felipe Lemec6e015d2019-10-21 12:51:08 -07003051 // TODO(b/143092698): add unit test
Felipe Lemec1ca4412019-09-11 09:23:26 -07003052 @GuardedBy("mUsersLock")
3053 private @Nullable UserData getPreCreatedUserLU(@UserInfoFlag int flags) {
3054 if (DBG) {
3055 Slog.d(LOG_TAG, "getPreCreatedUser(): initialFlags= " + UserInfo.flagsToString(flags));
3056 }
3057 flags |= UserInfo.FLAG_FULL;
3058 if (UserInfo.isGuest(flags) && areGuestUsersEphemeral()) {
3059 flags |= UserInfo.FLAG_EPHEMERAL;
3060 }
3061 if (DBG) {
3062 Slog.d(LOG_TAG, "getPreCreatedUser(): targetFlags= " + UserInfo.flagsToString(flags));
3063 }
3064 final int userSize = mUsers.size();
3065 for (int i = 0; i < userSize; i++) {
3066 final UserData user = mUsers.valueAt(i);
3067 if (DBG) Slog.d(LOG_TAG, i + ":" + user.info.toFullString());
3068 if (user.info.preCreated
3069 && (user.info.flags & ~UserInfo.FLAG_INITIALIZED) == flags) {
3070 if (!user.info.isInitialized()) {
3071 Slog.w(LOG_TAG, "found pre-created user for flags "
3072 + "" + UserInfo.flagsToString(flags)
3073 + ", but it's not initialized yet: " + user.info.toFullString());
3074 continue;
3075 }
3076 return user;
3077 }
3078 }
3079 return null;
3080 }
3081
Fyodor Kupolov0f4533d2016-05-18 18:43:12 -07003082 @VisibleForTesting
3083 UserData putUserInfo(UserInfo userInfo) {
3084 final UserData userData = new UserData();
3085 userData.info = userInfo;
3086 synchronized (mUsers) {
3087 mUsers.put(userInfo.id, userData);
3088 }
3089 return userData;
3090 }
3091
3092 @VisibleForTesting
Bookatzf56f2582019-09-04 16:06:41 -07003093 void removeUserInfo(@UserIdInt int userId) {
Fyodor Kupolov0f4533d2016-05-18 18:43:12 -07003094 synchronized (mUsers) {
3095 mUsers.remove(userId);
3096 }
3097 }
3098
Amith Yamasani0b285492011-04-14 17:35:23 -07003099 /**
Fyodor Kupolov02cb6e72015-09-18 18:20:55 -07003100 * @hide
3101 */
Amith Yamasani12747872015-12-07 14:19:49 -08003102 @Override
Fyodor Kupolov02cb6e72015-09-18 18:20:55 -07003103 public UserInfo createRestrictedProfile(String name, int parentUserId) {
Sudheer Shanka53d41472016-06-16 09:11:08 -07003104 checkManageOrCreateUsersPermission("setupRestrictedProfile");
Sudheer Shanka7cb54a32016-09-16 12:59:05 -07003105 final UserInfo user = createProfileForUser(
3106 name, UserInfo.FLAG_RESTRICTED, parentUserId, null);
Fyodor Kupolov02cb6e72015-09-18 18:20:55 -07003107 if (user == null) {
3108 return null;
3109 }
Fyodor Kupolov9e912ba2016-02-09 18:29:43 -08003110 long identity = Binder.clearCallingIdentity();
3111 try {
3112 setUserRestriction(UserManager.DISALLOW_MODIFY_ACCOUNTS, true, user.id);
3113 // Change the setting before applying the DISALLOW_SHARE_LOCATION restriction, otherwise
3114 // the putIntForUser() will fail.
3115 android.provider.Settings.Secure.putIntForUser(mContext.getContentResolver(),
3116 android.provider.Settings.Secure.LOCATION_MODE,
3117 android.provider.Settings.Secure.LOCATION_MODE_OFF, user.id);
3118 setUserRestriction(UserManager.DISALLOW_SHARE_LOCATION, true, user.id);
3119 } finally {
3120 Binder.restoreCallingIdentity(identity);
3121 }
Fyodor Kupolov02cb6e72015-09-18 18:20:55 -07003122 return user;
3123 }
3124
3125 /**
Adam Lesinskieddeb492014-09-08 17:50:03 -07003126 * Find the current guest user. If the Guest user is partial,
3127 * then do not include it in the results as it is about to die.
Adam Lesinskieddeb492014-09-08 17:50:03 -07003128 */
Fyodor Kupolov82402752015-10-28 14:54:51 -07003129 private UserInfo findCurrentGuestUser() {
3130 synchronized (mUsersLock) {
3131 final int size = mUsers.size();
3132 for (int i = 0; i < size; i++) {
Amith Yamasani12747872015-12-07 14:19:49 -08003133 final UserInfo user = mUsers.valueAt(i).info;
Felipe Lemee35f5b02019-10-14 15:37:44 -07003134 if (user.isGuest() && !user.guestToRemove && !user.preCreated
3135 && !mRemovingUserIds.get(user.id)) {
Fyodor Kupolov82402752015-10-28 14:54:51 -07003136 return user;
3137 }
Adam Lesinskieddeb492014-09-08 17:50:03 -07003138 }
3139 }
3140 return null;
3141 }
3142
3143 /**
Amith Yamasani1df14732014-08-29 21:37:27 -07003144 * Mark this guest user for deletion to allow us to create another guest
3145 * and switch to that user before actually removing this guest.
Bookatzf56f2582019-09-04 16:06:41 -07003146 * @param userId the userid of the current guest
Amith Yamasani1df14732014-08-29 21:37:27 -07003147 * @return whether the user could be marked for deletion
3148 */
Amith Yamasani12747872015-12-07 14:19:49 -08003149 @Override
Bookatzf56f2582019-09-04 16:06:41 -07003150 public boolean markGuestForDeletion(@UserIdInt int userId) {
Amith Yamasani1df14732014-08-29 21:37:27 -07003151 checkManageUsersPermission("Only the system can remove users");
3152 if (getUserRestrictions(UserHandle.getCallingUserId()).getBoolean(
3153 UserManager.DISALLOW_REMOVE_USER, false)) {
3154 Log.w(LOG_TAG, "Cannot remove user. DISALLOW_REMOVE_USER is enabled.");
3155 return false;
3156 }
3157
3158 long ident = Binder.clearCallingIdentity();
3159 try {
Amith Yamasani12747872015-12-07 14:19:49 -08003160 final UserData userData;
Amith Yamasani1df14732014-08-29 21:37:27 -07003161 synchronized (mPackagesLock) {
Fyodor Kupolov82402752015-10-28 14:54:51 -07003162 synchronized (mUsersLock) {
Bookatzf56f2582019-09-04 16:06:41 -07003163 userData = mUsers.get(userId);
3164 if (userId == 0 || userData == null || mRemovingUserIds.get(userId)) {
Fyodor Kupolov82402752015-10-28 14:54:51 -07003165 return false;
3166 }
Amith Yamasani1df14732014-08-29 21:37:27 -07003167 }
Amith Yamasani12747872015-12-07 14:19:49 -08003168 if (!userData.info.isGuest()) {
Amith Yamasani1df14732014-08-29 21:37:27 -07003169 return false;
3170 }
Adam Lesinskieddeb492014-09-08 17:50:03 -07003171 // We set this to a guest user that is to be removed. This is a temporary state
3172 // where we are allowed to add new Guest users, even if this one is still not
3173 // removed. This user will still show up in getUserInfo() calls.
3174 // If we don't get around to removing this Guest user, it will be purged on next
3175 // startup.
Amith Yamasani12747872015-12-07 14:19:49 -08003176 userData.info.guestToRemove = true;
Amith Yamasani1df14732014-08-29 21:37:27 -07003177 // Mark it as disabled, so that it isn't returned any more when
3178 // profiles are queried.
Amith Yamasani12747872015-12-07 14:19:49 -08003179 userData.info.flags |= UserInfo.FLAG_DISABLED;
3180 writeUserLP(userData);
Amith Yamasani1df14732014-08-29 21:37:27 -07003181 }
3182 } finally {
3183 Binder.restoreCallingIdentity(ident);
3184 }
3185 return true;
3186 }
3187
3188 /**
Amith Yamasani0b285492011-04-14 17:35:23 -07003189 * Removes a user and all data directories created for that user. This method should be called
3190 * after the user's processes have been terminated.
Bookatzf56f2582019-09-04 16:06:41 -07003191 * @param userId the user's id
Amith Yamasani0b285492011-04-14 17:35:23 -07003192 */
Amith Yamasani12747872015-12-07 14:19:49 -08003193 @Override
Bookatzf56f2582019-09-04 16:06:41 -07003194 public boolean removeUser(@UserIdInt int userId) {
3195 Slog.i(LOG_TAG, "removeUser u" + userId);
Sudheer Shankaf5cea032016-06-08 17:13:24 -07003196 checkManageOrCreateUsersPermission("Only the system can remove users");
Esteban Talavera6c9116a2016-11-24 16:12:44 +00003197
3198 final boolean isManagedProfile;
3199 synchronized (mUsersLock) {
Bookatzf56f2582019-09-04 16:06:41 -07003200 UserInfo userInfo = getUserInfoLU(userId);
Esteban Talavera6c9116a2016-11-24 16:12:44 +00003201 isManagedProfile = userInfo != null && userInfo.isManagedProfile();
3202 }
3203 String restriction = isManagedProfile
3204 ? UserManager.DISALLOW_REMOVE_MANAGED_PROFILE : UserManager.DISALLOW_REMOVE_USER;
3205 if (getUserRestrictions(UserHandle.getCallingUserId()).getBoolean(restriction, false)) {
3206 Log.w(LOG_TAG, "Cannot remove user. " + restriction + " is enabled.");
Julia Reynolds4ac5f852014-06-23 17:38:51 -04003207 return false;
3208 }
Bookatzf56f2582019-09-04 16:06:41 -07003209 return removeUserUnchecked(userId);
Nicolas Prevotdf1b87d2016-10-25 13:57:08 +01003210 }
Julia Reynolds4ac5f852014-06-23 17:38:51 -04003211
Bookatzf56f2582019-09-04 16:06:41 -07003212 private boolean removeUserUnchecked(@UserIdInt int userId) {
Kenny Guyee58b4f2014-05-23 15:19:53 +01003213 long ident = Binder.clearCallingIdentity();
3214 try {
Amith Yamasani12747872015-12-07 14:19:49 -08003215 final UserData userData;
Fyodor Kupolov0df68cd2015-10-01 13:54:22 -07003216 int currentUser = ActivityManager.getCurrentUser();
Bookatzf56f2582019-09-04 16:06:41 -07003217 if (currentUser == userId) {
jovanaka6763a32018-12-03 17:23:20 -08003218 Log.w(LOG_TAG, "Current user cannot be removed.");
Fyodor Kupolov0df68cd2015-10-01 13:54:22 -07003219 return false;
3220 }
Kenny Guyee58b4f2014-05-23 15:19:53 +01003221 synchronized (mPackagesLock) {
Fyodor Kupolov82402752015-10-28 14:54:51 -07003222 synchronized (mUsersLock) {
Bookatzf56f2582019-09-04 16:06:41 -07003223 userData = mUsers.get(userId);
3224 if (userId == UserHandle.USER_SYSTEM) {
jovanaka6763a32018-12-03 17:23:20 -08003225 Log.e(LOG_TAG, "System user cannot be removed.");
3226 return false;
3227 }
3228
3229 if (userData == null) {
3230 Log.e(LOG_TAG, String.format(
Bookatzf56f2582019-09-04 16:06:41 -07003231 "Cannot remove user %d, invalid user id provided.", userId));
jovanaka6763a32018-12-03 17:23:20 -08003232 return false;
3233 }
3234
Bookatzf56f2582019-09-04 16:06:41 -07003235 if (mRemovingUserIds.get(userId)) {
jovanaka6763a32018-12-03 17:23:20 -08003236 Log.e(LOG_TAG, String.format(
Bookatzf56f2582019-09-04 16:06:41 -07003237 "User %d is already scheduled for removal.", userId));
Fyodor Kupolov82402752015-10-28 14:54:51 -07003238 return false;
3239 }
Jeff Sharkey6eb09392014-11-14 15:57:59 -08003240
Bookatzf56f2582019-09-04 16:06:41 -07003241 addRemovingUserIdLocked(userId);
Fyodor Kupolov82402752015-10-28 14:54:51 -07003242 }
Jeff Sharkey6eb09392014-11-14 15:57:59 -08003243
Kenny Guyee58b4f2014-05-23 15:19:53 +01003244 // Set this to a partially created user, so that the user will be purged
3245 // on next startup, in case the runtime stops now before stopping and
3246 // removing the user completely.
Amith Yamasani12747872015-12-07 14:19:49 -08003247 userData.info.partial = true;
Kenny Guyee58b4f2014-05-23 15:19:53 +01003248 // Mark it as disabled, so that it isn't returned any more when
3249 // profiles are queried.
Amith Yamasani12747872015-12-07 14:19:49 -08003250 userData.info.flags |= UserInfo.FLAG_DISABLED;
3251 writeUserLP(userData);
Kenny Guyee58b4f2014-05-23 15:19:53 +01003252 }
Fyodor Kupolov6c96f7f2017-06-28 18:22:59 -07003253 try {
Bookatzf56f2582019-09-04 16:06:41 -07003254 mAppOpsService.removeUser(userId);
Fyodor Kupolov6c96f7f2017-06-28 18:22:59 -07003255 } catch (RemoteException e) {
jovanaka6763a32018-12-03 17:23:20 -08003256 Log.w(LOG_TAG, "Unable to notify AppOpsService of removing user.", e);
Fyodor Kupolov6c96f7f2017-06-28 18:22:59 -07003257 }
Kenny Guyee58b4f2014-05-23 15:19:53 +01003258
Amith Yamasani12747872015-12-07 14:19:49 -08003259 if (userData.info.profileGroupId != UserInfo.NO_PROFILE_GROUP_ID
3260 && userData.info.isManagedProfile()) {
Kenny Guyee58b4f2014-05-23 15:19:53 +01003261 // Send broadcast to notify system that the user removed was a
3262 // managed user.
Amith Yamasani12747872015-12-07 14:19:49 -08003263 sendProfileRemovedBroadcast(userData.info.profileGroupId, userData.info.id);
Kenny Guyee58b4f2014-05-23 15:19:53 +01003264 }
3265
Bookatzf56f2582019-09-04 16:06:41 -07003266 if (DBG) Slog.i(LOG_TAG, "Stopping user " + userId);
Kenny Guyee58b4f2014-05-23 15:19:53 +01003267 int res;
3268 try {
Bookatzf56f2582019-09-04 16:06:41 -07003269 res = ActivityManager.getService().stopUser(userId, /* force= */ true,
Fyodor Kupolov9cbfc9e2015-10-07 15:52:33 -07003270 new IStopUserCallback.Stub() {
Kenny Guyee58b4f2014-05-23 15:19:53 +01003271 @Override
Bookatzf56f2582019-09-04 16:06:41 -07003272 public void userStopped(int userIdParam) {
3273 finishRemoveUser(userIdParam);
Kenny Guyee58b4f2014-05-23 15:19:53 +01003274 }
3275 @Override
Bookatzf56f2582019-09-04 16:06:41 -07003276 public void userStopAborted(int userIdParam) {
Kenny Guyee58b4f2014-05-23 15:19:53 +01003277 }
3278 });
3279 } catch (RemoteException e) {
jovanaka6763a32018-12-03 17:23:20 -08003280 Log.w(LOG_TAG, "Failed to stop user during removal.", e);
Dianne Hackborn80a4af22012-08-27 19:18:31 -07003281 return false;
3282 }
Kenny Guyee58b4f2014-05-23 15:19:53 +01003283 return res == ActivityManager.USER_OP_SUCCESS;
3284 } finally {
3285 Binder.restoreCallingIdentity(ident);
Dianne Hackborn80a4af22012-08-27 19:18:31 -07003286 }
Dianne Hackborn80a4af22012-08-27 19:18:31 -07003287 }
3288
Andreas Gampea36dc622018-02-05 17:19:22 -08003289 @GuardedBy("mUsersLock")
Fyodor Kupolov0f4533d2016-05-18 18:43:12 -07003290 @VisibleForTesting
Bookatzf56f2582019-09-04 16:06:41 -07003291 void addRemovingUserIdLocked(@UserIdInt int userId) {
Fyodor Kupolov0f4533d2016-05-18 18:43:12 -07003292 // We remember deleted user IDs to prevent them from being
3293 // reused during the current boot; they can still be reused
3294 // after a reboot or recycling of userIds.
3295 mRemovingUserIds.put(userId, true);
3296 mRecentlyRemovedIds.add(userId);
3297 // Keep LRU queue of recently removed IDs for recycling
3298 if (mRecentlyRemovedIds.size() > MAX_RECENTLY_REMOVED_IDS_SIZE) {
3299 mRecentlyRemovedIds.removeFirst();
3300 }
3301 }
3302
Bookatzf56f2582019-09-04 16:06:41 -07003303 void finishRemoveUser(final @UserIdInt int userId) {
3304 if (DBG) Slog.i(LOG_TAG, "finishRemoveUser " + userId);
Amith Yamasanidb6a14c2012-10-17 21:16:52 -07003305 // Let other services shutdown any activity and clean up their state before completely
3306 // wiping the user's system directory and removing from the user list
Dianne Hackborn5dc5a002012-09-15 19:33:48 -07003307 long ident = Binder.clearCallingIdentity();
3308 try {
3309 Intent addedIntent = new Intent(Intent.ACTION_USER_REMOVED);
Bookatzf56f2582019-09-04 16:06:41 -07003310 addedIntent.putExtra(Intent.EXTRA_USER_HANDLE, userId);
Amith Yamasanidb6a14c2012-10-17 21:16:52 -07003311 mContext.sendOrderedBroadcastAsUser(addedIntent, UserHandle.ALL,
3312 android.Manifest.permission.MANAGE_USERS,
3313
3314 new BroadcastReceiver() {
3315 @Override
3316 public void onReceive(Context context, Intent intent) {
3317 if (DBG) {
3318 Slog.i(LOG_TAG,
3319 "USER_REMOVED broadcast sent, cleaning up user data "
Bookatzf56f2582019-09-04 16:06:41 -07003320 + userId);
Amith Yamasanidb6a14c2012-10-17 21:16:52 -07003321 }
3322 new Thread() {
Amith Yamasani12747872015-12-07 14:19:49 -08003323 @Override
Amith Yamasanidb6a14c2012-10-17 21:16:52 -07003324 public void run() {
Wale Ogunwalea6191b42018-05-09 07:41:32 -07003325 // Clean up any ActivityTaskManager state
3326 LocalServices.getService(ActivityTaskManagerInternal.class)
Bookatzf56f2582019-09-04 16:06:41 -07003327 .onUserStopped(userId);
3328 removeUserState(userId);
Amith Yamasanidb6a14c2012-10-17 21:16:52 -07003329 }
3330 }.start();
3331 }
3332 },
3333
3334 null, Activity.RESULT_OK, null, null);
Dianne Hackborn5dc5a002012-09-15 19:33:48 -07003335 } finally {
3336 Binder.restoreCallingIdentity(ident);
3337 }
Amith Yamasani2a003292012-08-14 18:25:45 -07003338 }
3339
Bookatzf56f2582019-09-04 16:06:41 -07003340 private void removeUserState(final @UserIdInt int userId) {
Paul Crowley91293792016-03-25 15:23:07 -07003341 try {
Bookatzf56f2582019-09-04 16:06:41 -07003342 mContext.getSystemService(StorageManager.class).destroyUserKey(userId);
Paul Crowley91293792016-03-25 15:23:07 -07003343 } catch (IllegalStateException e) {
3344 // This may be simply because the user was partially created.
Bookatzf56f2582019-09-04 16:06:41 -07003345 Slog.i(LOG_TAG, "Destroying key for user " + userId + " failed, continuing anyway", e);
Paul Crowley91293792016-03-25 15:23:07 -07003346 }
Jeff Sharkeyfcf1e552016-04-14 20:44:58 -06003347
Amith Yamasanid04aaa32016-06-13 12:09:36 -07003348 // Cleanup gatekeeper secure user id
3349 try {
3350 final IGateKeeperService gk = GateKeeper.getService();
3351 if (gk != null) {
Bookatzf56f2582019-09-04 16:06:41 -07003352 gk.clearSecureUserId(userId);
Amith Yamasanid04aaa32016-06-13 12:09:36 -07003353 }
3354 } catch (Exception ex) {
3355 Slog.w(LOG_TAG, "unable to clear GK secure user id");
3356 }
3357
Dianne Hackbornd4ac8d72012-09-27 23:20:10 -07003358 // Cleanup package manager settings
Bookatzf56f2582019-09-04 16:06:41 -07003359 mPm.cleanUpUser(this, userId);
Amith Yamasanid04aaa32016-06-13 12:09:36 -07003360
3361 // Clean up all data before removing metadata
Bookatzf56f2582019-09-04 16:06:41 -07003362 mUserDataPreparer.destroyUserData(userId,
Amith Yamasanid04aaa32016-06-13 12:09:36 -07003363 StorageManager.FLAG_STORAGE_DE | StorageManager.FLAG_STORAGE_CE);
3364
Dianne Hackbornd4ac8d72012-09-27 23:20:10 -07003365 // Remove this user from the list
Fyodor Kupolov82402752015-10-28 14:54:51 -07003366 synchronized (mUsersLock) {
Bookatzf56f2582019-09-04 16:06:41 -07003367 mUsers.remove(userId);
3368 mIsUserManaged.delete(userId);
Amith Yamasaniea1b9d72016-05-27 15:57:38 +00003369 }
3370 synchronized (mUserStates) {
Bookatzf56f2582019-09-04 16:06:41 -07003371 mUserStates.delete(userId);
Makoto Onukie7927da2015-11-25 10:05:17 -08003372 }
3373 synchronized (mRestrictionsLock) {
Bookatzf56f2582019-09-04 16:06:41 -07003374 mBaseUserRestrictions.remove(userId);
3375 mAppliedUserRestrictions.remove(userId);
3376 mCachedEffectiveUserRestrictions.remove(userId);
3377 mDevicePolicyLocalUserRestrictions.remove(userId);
3378 if (mDevicePolicyGlobalUserRestrictions.get(userId) != null) {
3379 mDevicePolicyGlobalUserRestrictions.remove(userId);
Pavel Grafov6a40f092016-10-25 15:46:51 +01003380 applyUserRestrictionsForAllUsersLR();
3381 }
Fyodor Kupolov82402752015-10-28 14:54:51 -07003382 }
Dianne Hackbornd4ac8d72012-09-27 23:20:10 -07003383 // Update the user list
Fyodor Kupolove80085d2015-11-06 18:21:39 -08003384 synchronized (mPackagesLock) {
3385 writeUserListLP();
3386 }
Jeff Sharkeycd575992016-03-29 14:12:49 -06003387 // Remove user file
Bookatzf56f2582019-09-04 16:06:41 -07003388 AtomicFile userFile = new AtomicFile(new File(mUsersDir, userId + XML_SUFFIX));
Jeff Sharkeycd575992016-03-29 14:12:49 -06003389 userFile.delete();
Fyodor Kupolov82402752015-10-28 14:54:51 -07003390 updateUserIds();
Fyodor Kupolov0f4533d2016-05-18 18:43:12 -07003391 if (RELEASE_DELETED_USER_ID) {
3392 synchronized (mUsers) {
Bookatzf56f2582019-09-04 16:06:41 -07003393 mRemovingUserIds.delete(userId);
Fyodor Kupolov0f4533d2016-05-18 18:43:12 -07003394 }
3395 }
Amith Yamasani61f57372012-08-31 12:12:28 -07003396 }
3397
Kenny Guyf8d3a232014-05-15 16:09:52 +01003398 private void sendProfileRemovedBroadcast(int parentUserId, int removedUserId) {
Adam Connors7b66ed52014-04-14 11:58:10 +01003399 Intent managedProfileIntent = new Intent(Intent.ACTION_MANAGED_PROFILE_REMOVED);
Adam Connorsd4b584e2014-06-09 13:55:47 +01003400 managedProfileIntent.addFlags(Intent.FLAG_RECEIVER_REGISTERED_ONLY |
3401 Intent.FLAG_RECEIVER_FOREGROUND);
Kenny Guyf8d3a232014-05-15 16:09:52 +01003402 managedProfileIntent.putExtra(Intent.EXTRA_USER, new UserHandle(removedUserId));
Jeff Sharkeyaf6ec292015-12-17 11:19:00 -07003403 managedProfileIntent.putExtra(Intent.EXTRA_USER_HANDLE, removedUserId);
Kenny Guyf8d3a232014-05-15 16:09:52 +01003404 mContext.sendBroadcastAsUser(managedProfileIntent, new UserHandle(parentUserId), null);
Adam Connors7b66ed52014-04-14 11:58:10 +01003405 }
3406
Amith Yamasani2a003292012-08-14 18:25:45 -07003407 @Override
Amith Yamasani7e99bc02013-04-16 18:24:51 -07003408 public Bundle getApplicationRestrictions(String packageName) {
3409 return getApplicationRestrictionsForUser(packageName, UserHandle.getCallingUserId());
3410 }
3411
3412 @Override
Bookatzf56f2582019-09-04 16:06:41 -07003413 public Bundle getApplicationRestrictionsForUser(String packageName, @UserIdInt int userId) {
Amith Yamasanidf2e92a2013-03-01 17:04:38 -08003414 if (UserHandle.getCallingUserId() != userId
Amith Yamasani9429afb2013-04-10 18:40:51 -07003415 || !UserHandle.isSameApp(Binder.getCallingUid(), getUidForPackage(packageName))) {
Amith Yamasani0d1fd8d2016-10-12 14:21:51 -07003416 checkSystemOrRoot("get application restrictions for other user/app " + packageName);
Amith Yamasanidf2e92a2013-03-01 17:04:38 -08003417 }
Fyodor Kupolovd31cee92017-09-05 16:31:08 -07003418 synchronized (mAppRestrictionsLock) {
Amith Yamasanidf2e92a2013-03-01 17:04:38 -08003419 // Read the restrictions from XML
Fyodor Kupolovd31cee92017-09-05 16:31:08 -07003420 return readApplicationRestrictionsLAr(packageName, userId);
Amith Yamasanidf2e92a2013-03-01 17:04:38 -08003421 }
3422 }
3423
3424 @Override
Amith Yamasani7e99bc02013-04-16 18:24:51 -07003425 public void setApplicationRestrictions(String packageName, Bundle restrictions,
Bookatzf56f2582019-09-04 16:06:41 -07003426 @UserIdInt int userId) {
Esteban Talavera5b9f1672015-12-11 15:22:34 +00003427 checkSystemOrRoot("set application restrictions");
Fyodor Kupolov0d88d542016-04-19 11:37:22 -07003428 if (restrictions != null) {
3429 restrictions.setDefusable(true);
3430 }
Fyodor Kupolovd31cee92017-09-05 16:31:08 -07003431 synchronized (mAppRestrictionsLock) {
Kenny Guyd21b2182014-07-17 16:38:55 +01003432 if (restrictions == null || restrictions.isEmpty()) {
Fyodor Kupolovd31cee92017-09-05 16:31:08 -07003433 cleanAppRestrictionsForPackageLAr(packageName, userId);
Kenny Guyd21b2182014-07-17 16:38:55 +01003434 } else {
3435 // Write the restrictions to XML
Fyodor Kupolovd31cee92017-09-05 16:31:08 -07003436 writeApplicationRestrictionsLAr(packageName, restrictions, userId);
Kenny Guyd21b2182014-07-17 16:38:55 +01003437 }
Amith Yamasanidf2e92a2013-03-01 17:04:38 -08003438 }
Robin Lee66e5d962014-04-09 16:44:21 +01003439
Fyodor Kupolovd2846122016-02-11 18:06:34 -08003440 // Notify package of changes via an intent - only sent to explicitly registered receivers.
3441 Intent changeIntent = new Intent(Intent.ACTION_APPLICATION_RESTRICTIONS_CHANGED);
3442 changeIntent.setPackage(packageName);
3443 changeIntent.addFlags(Intent.FLAG_RECEIVER_REGISTERED_ONLY);
3444 mContext.sendBroadcastAsUser(changeIntent, UserHandle.of(userId));
Amith Yamasanidf2e92a2013-03-01 17:04:38 -08003445 }
3446
3447 private int getUidForPackage(String packageName) {
Amith Yamasani9429afb2013-04-10 18:40:51 -07003448 long ident = Binder.clearCallingIdentity();
Amith Yamasanidf2e92a2013-03-01 17:04:38 -08003449 try {
3450 return mContext.getPackageManager().getApplicationInfo(packageName,
Amith Yamasani0d1fd8d2016-10-12 14:21:51 -07003451 PackageManager.MATCH_ANY_USER).uid;
Amith Yamasanidf2e92a2013-03-01 17:04:38 -08003452 } catch (NameNotFoundException nnfe) {
3453 return -1;
Amith Yamasani9429afb2013-04-10 18:40:51 -07003454 } finally {
3455 Binder.restoreCallingIdentity(ident);
Amith Yamasanidf2e92a2013-03-01 17:04:38 -08003456 }
3457 }
3458
Fyodor Kupolovd31cee92017-09-05 16:31:08 -07003459 @GuardedBy("mAppRestrictionsLock")
Bookatzf56f2582019-09-04 16:06:41 -07003460 private static Bundle readApplicationRestrictionsLAr(String packageName,
3461 @UserIdInt int userId) {
Fyodor Kupolov262f9952015-03-23 18:55:11 -07003462 AtomicFile restrictionsFile =
3463 new AtomicFile(new File(Environment.getUserSystemDirectory(userId),
3464 packageToRestrictionsFileName(packageName)));
Fyodor Kupolovd31cee92017-09-05 16:31:08 -07003465 return readApplicationRestrictionsLAr(restrictionsFile);
Fyodor Kupolov262f9952015-03-23 18:55:11 -07003466 }
3467
3468 @VisibleForTesting
Fyodor Kupolovd31cee92017-09-05 16:31:08 -07003469 @GuardedBy("mAppRestrictionsLock")
3470 static Bundle readApplicationRestrictionsLAr(AtomicFile restrictionsFile) {
Amith Yamasani7e99bc02013-04-16 18:24:51 -07003471 final Bundle restrictions = new Bundle();
Fyodor Kupolov262f9952015-03-23 18:55:11 -07003472 final ArrayList<String> values = new ArrayList<>();
Fyodor Kupolov6f34d362015-04-02 12:42:13 -07003473 if (!restrictionsFile.getBaseFile().exists()) {
Fyodor Kupolovf6ee2242015-04-06 10:15:07 -07003474 return restrictions;
Fyodor Kupolov6f34d362015-04-02 12:42:13 -07003475 }
Amith Yamasanidf2e92a2013-03-01 17:04:38 -08003476
3477 FileInputStream fis = null;
3478 try {
Amith Yamasanidf2e92a2013-03-01 17:04:38 -08003479 fis = restrictionsFile.openRead();
3480 XmlPullParser parser = Xml.newPullParser();
Wojciech Staszkiewicz9e9e2e72015-05-08 14:58:46 +01003481 parser.setInput(fis, StandardCharsets.UTF_8.name());
Fyodor Kupolov262f9952015-03-23 18:55:11 -07003482 XmlUtils.nextElement(parser);
3483 if (parser.getEventType() != XmlPullParser.START_TAG) {
Amith Yamasanidf2e92a2013-03-01 17:04:38 -08003484 Slog.e(LOG_TAG, "Unable to read restrictions file "
3485 + restrictionsFile.getBaseFile());
Amith Yamasani7e99bc02013-04-16 18:24:51 -07003486 return restrictions;
Amith Yamasanidf2e92a2013-03-01 17:04:38 -08003487 }
Fyodor Kupolov262f9952015-03-23 18:55:11 -07003488 while (parser.next() != XmlPullParser.END_DOCUMENT) {
3489 readEntry(restrictions, values, parser);
Amith Yamasanidf2e92a2013-03-01 17:04:38 -08003490 }
Fyodor Kupolov262f9952015-03-23 18:55:11 -07003491 } catch (IOException|XmlPullParserException e) {
3492 Log.w(LOG_TAG, "Error parsing " + restrictionsFile.getBaseFile(), e);
Amith Yamasanidf2e92a2013-03-01 17:04:38 -08003493 } finally {
Fyodor Kupolov262f9952015-03-23 18:55:11 -07003494 IoUtils.closeQuietly(fis);
Amith Yamasanidf2e92a2013-03-01 17:04:38 -08003495 }
Amith Yamasani7e99bc02013-04-16 18:24:51 -07003496 return restrictions;
Amith Yamasanidf2e92a2013-03-01 17:04:38 -08003497 }
3498
Fyodor Kupolov262f9952015-03-23 18:55:11 -07003499 private static void readEntry(Bundle restrictions, ArrayList<String> values,
3500 XmlPullParser parser) throws XmlPullParserException, IOException {
3501 int type = parser.getEventType();
3502 if (type == XmlPullParser.START_TAG && parser.getName().equals(TAG_ENTRY)) {
3503 String key = parser.getAttributeValue(null, ATTR_KEY);
3504 String valType = parser.getAttributeValue(null, ATTR_VALUE_TYPE);
3505 String multiple = parser.getAttributeValue(null, ATTR_MULTIPLE);
3506 if (multiple != null) {
3507 values.clear();
3508 int count = Integer.parseInt(multiple);
3509 while (count > 0 && (type = parser.next()) != XmlPullParser.END_DOCUMENT) {
3510 if (type == XmlPullParser.START_TAG
3511 && parser.getName().equals(TAG_VALUE)) {
3512 values.add(parser.nextText().trim());
3513 count--;
3514 }
3515 }
3516 String [] valueStrings = new String[values.size()];
3517 values.toArray(valueStrings);
3518 restrictions.putStringArray(key, valueStrings);
3519 } else if (ATTR_TYPE_BUNDLE.equals(valType)) {
3520 restrictions.putBundle(key, readBundleEntry(parser, values));
3521 } else if (ATTR_TYPE_BUNDLE_ARRAY.equals(valType)) {
3522 final int outerDepth = parser.getDepth();
3523 ArrayList<Bundle> bundleList = new ArrayList<>();
3524 while (XmlUtils.nextElementWithin(parser, outerDepth)) {
3525 Bundle childBundle = readBundleEntry(parser, values);
3526 bundleList.add(childBundle);
3527 }
3528 restrictions.putParcelableArray(key,
3529 bundleList.toArray(new Bundle[bundleList.size()]));
3530 } else {
3531 String value = parser.nextText().trim();
3532 if (ATTR_TYPE_BOOLEAN.equals(valType)) {
3533 restrictions.putBoolean(key, Boolean.parseBoolean(value));
3534 } else if (ATTR_TYPE_INTEGER.equals(valType)) {
3535 restrictions.putInt(key, Integer.parseInt(value));
3536 } else {
3537 restrictions.putString(key, value);
3538 }
3539 }
3540 }
3541 }
3542
3543 private static Bundle readBundleEntry(XmlPullParser parser, ArrayList<String> values)
3544 throws IOException, XmlPullParserException {
3545 Bundle childBundle = new Bundle();
3546 final int outerDepth = parser.getDepth();
3547 while (XmlUtils.nextElementWithin(parser, outerDepth)) {
3548 readEntry(childBundle, values, parser);
3549 }
3550 return childBundle;
3551 }
3552
Fyodor Kupolovd31cee92017-09-05 16:31:08 -07003553 @GuardedBy("mAppRestrictionsLock")
3554 private static void writeApplicationRestrictionsLAr(String packageName,
Bookatzf56f2582019-09-04 16:06:41 -07003555 Bundle restrictions, @UserIdInt int userId) {
Amith Yamasanidf2e92a2013-03-01 17:04:38 -08003556 AtomicFile restrictionsFile = new AtomicFile(
3557 new File(Environment.getUserSystemDirectory(userId),
Amith Yamasanifc95e702013-09-26 13:20:17 -07003558 packageToRestrictionsFileName(packageName)));
Fyodor Kupolovd31cee92017-09-05 16:31:08 -07003559 writeApplicationRestrictionsLAr(restrictions, restrictionsFile);
Fyodor Kupolov262f9952015-03-23 18:55:11 -07003560 }
3561
3562 @VisibleForTesting
Fyodor Kupolovd31cee92017-09-05 16:31:08 -07003563 @GuardedBy("mAppRestrictionsLock")
3564 static void writeApplicationRestrictionsLAr(Bundle restrictions, AtomicFile restrictionsFile) {
Fyodor Kupolov262f9952015-03-23 18:55:11 -07003565 FileOutputStream fos = null;
Amith Yamasanidf2e92a2013-03-01 17:04:38 -08003566 try {
3567 fos = restrictionsFile.startWrite();
3568 final BufferedOutputStream bos = new BufferedOutputStream(fos);
3569
Amith Yamasanidf2e92a2013-03-01 17:04:38 -08003570 final XmlSerializer serializer = new FastXmlSerializer();
Wojciech Staszkiewicz9e9e2e72015-05-08 14:58:46 +01003571 serializer.setOutput(bos, StandardCharsets.UTF_8.name());
Amith Yamasanidf2e92a2013-03-01 17:04:38 -08003572 serializer.startDocument(null, true);
3573 serializer.setFeature("http://xmlpull.org/v1/doc/features.html#indent-output", true);
3574
3575 serializer.startTag(null, TAG_RESTRICTIONS);
Fyodor Kupolov262f9952015-03-23 18:55:11 -07003576 writeBundle(restrictions, serializer);
Amith Yamasanidf2e92a2013-03-01 17:04:38 -08003577 serializer.endTag(null, TAG_RESTRICTIONS);
3578
3579 serializer.endDocument();
3580 restrictionsFile.finishWrite(fos);
3581 } catch (Exception e) {
3582 restrictionsFile.failWrite(fos);
Fyodor Kupolov262f9952015-03-23 18:55:11 -07003583 Slog.e(LOG_TAG, "Error writing application restrictions list", e);
3584 }
3585 }
3586
3587 private static void writeBundle(Bundle restrictions, XmlSerializer serializer)
3588 throws IOException {
3589 for (String key : restrictions.keySet()) {
3590 Object value = restrictions.get(key);
3591 serializer.startTag(null, TAG_ENTRY);
3592 serializer.attribute(null, ATTR_KEY, key);
3593
3594 if (value instanceof Boolean) {
3595 serializer.attribute(null, ATTR_VALUE_TYPE, ATTR_TYPE_BOOLEAN);
3596 serializer.text(value.toString());
3597 } else if (value instanceof Integer) {
3598 serializer.attribute(null, ATTR_VALUE_TYPE, ATTR_TYPE_INTEGER);
3599 serializer.text(value.toString());
3600 } else if (value == null || value instanceof String) {
3601 serializer.attribute(null, ATTR_VALUE_TYPE, ATTR_TYPE_STRING);
3602 serializer.text(value != null ? (String) value : "");
3603 } else if (value instanceof Bundle) {
3604 serializer.attribute(null, ATTR_VALUE_TYPE, ATTR_TYPE_BUNDLE);
3605 writeBundle((Bundle) value, serializer);
3606 } else if (value instanceof Parcelable[]) {
3607 serializer.attribute(null, ATTR_VALUE_TYPE, ATTR_TYPE_BUNDLE_ARRAY);
3608 Parcelable[] array = (Parcelable[]) value;
3609 for (Parcelable parcelable : array) {
3610 if (!(parcelable instanceof Bundle)) {
3611 throw new IllegalArgumentException("bundle-array can only hold Bundles");
3612 }
3613 serializer.startTag(null, TAG_ENTRY);
3614 serializer.attribute(null, ATTR_VALUE_TYPE, ATTR_TYPE_BUNDLE);
3615 writeBundle((Bundle) parcelable, serializer);
3616 serializer.endTag(null, TAG_ENTRY);
3617 }
3618 } else {
3619 serializer.attribute(null, ATTR_VALUE_TYPE, ATTR_TYPE_STRING_ARRAY);
3620 String[] values = (String[]) value;
3621 serializer.attribute(null, ATTR_MULTIPLE, Integer.toString(values.length));
3622 for (String choice : values) {
3623 serializer.startTag(null, TAG_VALUE);
3624 serializer.text(choice != null ? choice : "");
3625 serializer.endTag(null, TAG_VALUE);
3626 }
3627 }
3628 serializer.endTag(null, TAG_ENTRY);
Amith Yamasanidf2e92a2013-03-01 17:04:38 -08003629 }
3630 }
3631
3632 @Override
Bookatzf56f2582019-09-04 16:06:41 -07003633 public int getUserSerialNumber(@UserIdInt int userId) {
Fyodor Kupolov82402752015-10-28 14:54:51 -07003634 synchronized (mUsersLock) {
Bookatzf56f2582019-09-04 16:06:41 -07003635 final UserInfo userInfo = getUserInfoLU(userId);
Pavel Grafov9c295d42019-03-26 19:42:08 +00003636 return userInfo != null ? userInfo.serialNumber : -1;
Amith Yamasani2a003292012-08-14 18:25:45 -07003637 }
3638 }
3639
3640 @Override
Bookatzf56f2582019-09-04 16:06:41 -07003641 public boolean isUserNameSet(@UserIdInt int userId) {
Fyodor Kupolov605b12a2017-05-10 15:58:09 -07003642 synchronized (mUsersLock) {
Bookatzf56f2582019-09-04 16:06:41 -07003643 final UserInfo userInfo = getUserInfoLU(userId);
Fyodor Kupolov605b12a2017-05-10 15:58:09 -07003644 return userInfo != null && userInfo.name != null;
3645 }
3646 }
3647
3648 @Override
Amith Yamasani2a003292012-08-14 18:25:45 -07003649 public int getUserHandle(int userSerialNumber) {
Fyodor Kupolov82402752015-10-28 14:54:51 -07003650 synchronized (mUsersLock) {
Amith Yamasani2a003292012-08-14 18:25:45 -07003651 for (int userId : mUserIds) {
Fyodor Kupolov82402752015-10-28 14:54:51 -07003652 UserInfo info = getUserInfoLU(userId);
Kenny Guy945f8832015-02-10 15:17:26 +00003653 if (info != null && info.serialNumber == userSerialNumber) return userId;
Amith Yamasani2a003292012-08-14 18:25:45 -07003654 }
3655 // Not found
3656 return -1;
Amith Yamasani13593602012-03-22 16:16:17 -07003657 }
3658 }
3659
Fyodor Kupolovff7233e2015-04-08 11:28:52 -07003660 @Override
Bookatzf56f2582019-09-04 16:06:41 -07003661 public long getUserCreationTime(@UserIdInt int userId) {
Fyodor Kupolovff7233e2015-04-08 11:28:52 -07003662 int callingUserId = UserHandle.getCallingUserId();
3663 UserInfo userInfo = null;
Fyodor Kupolov82402752015-10-28 14:54:51 -07003664 synchronized (mUsersLock) {
Bookatzf56f2582019-09-04 16:06:41 -07003665 if (callingUserId == userId) {
3666 userInfo = getUserInfoLU(userId);
Fyodor Kupolovff7233e2015-04-08 11:28:52 -07003667 } else {
Bookatzf56f2582019-09-04 16:06:41 -07003668 UserInfo parent = getProfileParentLU(userId);
Fyodor Kupolovff7233e2015-04-08 11:28:52 -07003669 if (parent != null && parent.id == callingUserId) {
Bookatzf56f2582019-09-04 16:06:41 -07003670 userInfo = getUserInfoLU(userId);
Fyodor Kupolovff7233e2015-04-08 11:28:52 -07003671 }
3672 }
3673 }
3674 if (userInfo == null) {
Bookatzf56f2582019-09-04 16:06:41 -07003675 throw new SecurityException("userId can only be the calling user or a managed "
Fyodor Kupolovff7233e2015-04-08 11:28:52 -07003676 + "profile associated with this user");
3677 }
3678 return userInfo.creationTime;
3679 }
3680
Amith Yamasani0b285492011-04-14 17:35:23 -07003681 /**
3682 * Caches the list of user ids in an array, adjusting the array size when necessary.
3683 */
Fyodor Kupolov82402752015-10-28 14:54:51 -07003684 private void updateUserIds() {
Dianne Hackbornd4ac8d72012-09-27 23:20:10 -07003685 int num = 0;
Fyodor Kupolov82402752015-10-28 14:54:51 -07003686 synchronized (mUsersLock) {
3687 final int userSize = mUsers.size();
3688 for (int i = 0; i < userSize; i++) {
Amith Yamasani12747872015-12-07 14:19:49 -08003689 if (!mUsers.valueAt(i).info.partial) {
Fyodor Kupolov82402752015-10-28 14:54:51 -07003690 num++;
3691 }
Dianne Hackbornd4ac8d72012-09-27 23:20:10 -07003692 }
Fyodor Kupolov82402752015-10-28 14:54:51 -07003693 final int[] newUsers = new int[num];
3694 int n = 0;
3695 for (int i = 0; i < userSize; i++) {
Amith Yamasani12747872015-12-07 14:19:49 -08003696 if (!mUsers.valueAt(i).info.partial) {
Fyodor Kupolov82402752015-10-28 14:54:51 -07003697 newUsers[n++] = mUsers.keyAt(i);
3698 }
Dianne Hackbornd4ac8d72012-09-27 23:20:10 -07003699 }
Fyodor Kupolov82402752015-10-28 14:54:51 -07003700 mUserIds = newUsers;
Amith Yamasani0b285492011-04-14 17:35:23 -07003701 }
3702 }
3703
3704 /**
Jeff Sharkey0e62384c2016-01-13 18:52:55 -07003705 * Called right before a user is started. This gives us a chance to prepare
3706 * app storage and apply any user restrictions.
Makoto Onuki1a2cd742015-11-16 13:51:27 -08003707 */
Bookatzf56f2582019-09-04 16:06:41 -07003708 public void onBeforeStartUser(@UserIdInt int userId) {
Fyodor Kupolovd80c3622016-07-19 17:22:09 -07003709 UserInfo userInfo = getUserInfo(userId);
3710 if (userInfo == null) {
3711 return;
3712 }
Felipe Leme3aad1be2019-05-31 11:43:12 -07003713 TimingsTraceAndSlog t = new TimingsTraceAndSlog();
3714 t.traceBegin("onBeforeStartUser-" + userId);
Fyodor Kupolovd80c3622016-07-19 17:22:09 -07003715 final int userSerial = userInfo.serialNumber;
3716 // Migrate only if build fingerprints mismatch
3717 boolean migrateAppsData = !Build.FINGERPRINT.equals(userInfo.lastLoggedInFingerprint);
Felipe Leme3aad1be2019-05-31 11:43:12 -07003718 t.traceBegin("prepareUserData");
Fyodor Kupolov5c0ecfd2017-01-27 11:11:57 -08003719 mUserDataPreparer.prepareUserData(userId, userSerial, StorageManager.FLAG_STORAGE_DE);
Felipe Leme3aad1be2019-05-31 11:43:12 -07003720 t.traceEnd();
3721 t.traceBegin("reconcileAppsData");
Fyodor Kupolovd80c3622016-07-19 17:22:09 -07003722 mPm.reconcileAppsData(userId, StorageManager.FLAG_STORAGE_DE, migrateAppsData);
Felipe Leme3aad1be2019-05-31 11:43:12 -07003723 t.traceEnd();
Jeff Sharkey0e62384c2016-01-13 18:52:55 -07003724
3725 if (userId != UserHandle.USER_SYSTEM) {
Felipe Leme3aad1be2019-05-31 11:43:12 -07003726 t.traceBegin("applyUserRestrictions");
Jeff Sharkey0e62384c2016-01-13 18:52:55 -07003727 synchronized (mRestrictionsLock) {
3728 applyUserRestrictionsLR(userId);
3729 }
Felipe Leme3aad1be2019-05-31 11:43:12 -07003730 t.traceEnd();
Makoto Onuki1a2cd742015-11-16 13:51:27 -08003731 }
Felipe Leme3aad1be2019-05-31 11:43:12 -07003732 t.traceEnd(); // onBeforeStartUser
Makoto Onuki1a2cd742015-11-16 13:51:27 -08003733 }
3734
3735 /**
Jeff Sharkey0e62384c2016-01-13 18:52:55 -07003736 * Called right before a user is unlocked. This gives us a chance to prepare
3737 * app storage.
3738 */
Jeff Sharkeybd91e2f2016-03-22 15:32:31 -06003739 public void onBeforeUnlockUser(@UserIdInt int userId) {
Fyodor Kupolovd80c3622016-07-19 17:22:09 -07003740 UserInfo userInfo = getUserInfo(userId);
3741 if (userInfo == null) {
3742 return;
3743 }
3744 final int userSerial = userInfo.serialNumber;
3745 // Migrate only if build fingerprints mismatch
3746 boolean migrateAppsData = !Build.FINGERPRINT.equals(userInfo.lastLoggedInFingerprint);
Fyodor Kupolov5c0ecfd2017-01-27 11:11:57 -08003747 mUserDataPreparer.prepareUserData(userId, userSerial, StorageManager.FLAG_STORAGE_CE);
Fyodor Kupolovd80c3622016-07-19 17:22:09 -07003748 mPm.reconcileAppsData(userId, StorageManager.FLAG_STORAGE_CE, migrateAppsData);
Jeff Sharkey0e62384c2016-01-13 18:52:55 -07003749 }
3750
3751 /**
Fyodor Kupolov50979d12017-01-27 17:36:32 -08003752 * Examine all users present on given mounted volume, and destroy data
3753 * belonging to users that are no longer valid, or whose user ID has been
3754 * recycled.
3755 */
3756 void reconcileUsers(String volumeUuid) {
3757 mUserDataPreparer.reconcileUsers(volumeUuid, getUsers(true /* excludeDying */));
3758 }
3759
3760 /**
Amith Yamasani1a7472e2013-07-02 11:17:30 -07003761 * Make a note of the last started time of a user and do some cleanup.
Amith Yamasanieb437d42016-04-29 09:31:25 -07003762 * This is called with ActivityManagerService lock held.
Amith Yamasani920ace02012-09-20 22:15:37 -07003763 * @param userId the user that was just foregrounded
3764 */
Jeff Sharkeybd91e2f2016-03-22 15:32:31 -06003765 public void onUserLoggedIn(@UserIdInt int userId) {
Amith Yamasani12747872015-12-07 14:19:49 -08003766 UserData userData = getUserDataNoChecks(userId);
3767 if (userData == null || userData.info.partial) {
Fyodor Kupolove80085d2015-11-06 18:21:39 -08003768 Slog.w(LOG_TAG, "userForeground: unknown user #" + userId);
3769 return;
3770 }
Jeff Sharkeybd91e2f2016-03-22 15:32:31 -06003771
3772 final long now = System.currentTimeMillis();
Fyodor Kupolove80085d2015-11-06 18:21:39 -08003773 if (now > EPOCH_PLUS_30_YEARS) {
Amith Yamasani12747872015-12-07 14:19:49 -08003774 userData.info.lastLoggedInTime = now;
Amith Yamasani920ace02012-09-20 22:15:37 -07003775 }
Jeff Sharkeybd91e2f2016-03-22 15:32:31 -06003776 userData.info.lastLoggedInFingerprint = Build.FINGERPRINT;
3777 scheduleWriteUser(userData);
Amith Yamasani920ace02012-09-20 22:15:37 -07003778 }
3779
3780 /**
Amith Yamasani0b285492011-04-14 17:35:23 -07003781 * Returns the next available user id, filling in any holes in the ids.
Amith Yamasani0b285492011-04-14 17:35:23 -07003782 */
Fyodor Kupolov0f4533d2016-05-18 18:43:12 -07003783 @VisibleForTesting
3784 int getNextAvailableId() {
3785 int nextId;
Fyodor Kupolov82402752015-10-28 14:54:51 -07003786 synchronized (mUsersLock) {
Fyodor Kupolov0f4533d2016-05-18 18:43:12 -07003787 nextId = scanNextAvailableIdLocked();
3788 if (nextId >= 0) {
3789 return nextId;
3790 }
3791 // All ids up to MAX_USER_ID were used. Remove all mRemovingUserIds,
3792 // except most recently removed
3793 if (mRemovingUserIds.size() > 0) {
3794 Slog.i(LOG_TAG, "All available IDs are used. Recycling LRU ids.");
3795 mRemovingUserIds.clear();
3796 for (Integer recentlyRemovedId : mRecentlyRemovedIds) {
3797 mRemovingUserIds.put(recentlyRemovedId, true);
Amith Yamasani195263742012-08-21 15:40:12 -07003798 }
Fyodor Kupolov0f4533d2016-05-18 18:43:12 -07003799 nextId = scanNextAvailableIdLocked();
Amith Yamasani4b2e9342011-03-31 12:38:53 -07003800 }
Amith Yamasani4b2e9342011-03-31 12:38:53 -07003801 }
Fyodor Kupolov0f4533d2016-05-18 18:43:12 -07003802 if (nextId < 0) {
3803 throw new IllegalStateException("No user id available!");
3804 }
3805 return nextId;
3806 }
3807
Andreas Gampea36dc622018-02-05 17:19:22 -08003808 @GuardedBy("mUsersLock")
Fyodor Kupolov0f4533d2016-05-18 18:43:12 -07003809 private int scanNextAvailableIdLocked() {
3810 for (int i = MIN_USER_ID; i < MAX_USER_ID; i++) {
3811 if (mUsers.indexOfKey(i) < 0 && !mRemovingUserIds.get(i)) {
3812 return i;
3813 }
3814 }
3815 return -1;
Amith Yamasani4b2e9342011-03-31 12:38:53 -07003816 }
Amith Yamasani920ace02012-09-20 22:15:37 -07003817
Fyodor Kupolovd31cee92017-09-05 16:31:08 -07003818 private static String packageToRestrictionsFileName(String packageName) {
Amith Yamasanifc95e702013-09-26 13:20:17 -07003819 return RESTRICTIONS_FILE_PREFIX + packageName + XML_SUFFIX;
3820 }
3821
Amith Yamasani920ace02012-09-20 22:15:37 -07003822 @Override
Bookatzf56f2582019-09-04 16:06:41 -07003823 public void setSeedAccountData(@UserIdInt int userId, String accountName, String accountType,
Amith Yamasani12747872015-12-07 14:19:49 -08003824 PersistableBundle accountOptions, boolean persist) {
3825 checkManageUsersPermission("Require MANAGE_USERS permission to set user seed data");
3826 synchronized (mPackagesLock) {
3827 final UserData userData;
3828 synchronized (mUsersLock) {
3829 userData = getUserDataLU(userId);
3830 if (userData == null) {
3831 Slog.e(LOG_TAG, "No such user for settings seed data u=" + userId);
3832 return;
3833 }
3834 userData.seedAccountName = accountName;
3835 userData.seedAccountType = accountType;
3836 userData.seedAccountOptions = accountOptions;
3837 userData.persistSeedData = persist;
3838 }
3839 if (persist) {
3840 writeUserLP(userData);
3841 }
3842 }
3843 }
3844
3845 @Override
3846 public String getSeedAccountName() throws RemoteException {
3847 checkManageUsersPermission("Cannot get seed account information");
3848 synchronized (mUsersLock) {
3849 UserData userData = getUserDataLU(UserHandle.getCallingUserId());
3850 return userData.seedAccountName;
3851 }
3852 }
3853
3854 @Override
3855 public String getSeedAccountType() throws RemoteException {
3856 checkManageUsersPermission("Cannot get seed account information");
3857 synchronized (mUsersLock) {
3858 UserData userData = getUserDataLU(UserHandle.getCallingUserId());
3859 return userData.seedAccountType;
3860 }
3861 }
3862
3863 @Override
3864 public PersistableBundle getSeedAccountOptions() throws RemoteException {
3865 checkManageUsersPermission("Cannot get seed account information");
3866 synchronized (mUsersLock) {
3867 UserData userData = getUserDataLU(UserHandle.getCallingUserId());
3868 return userData.seedAccountOptions;
3869 }
3870 }
3871
3872 @Override
3873 public void clearSeedAccountData() throws RemoteException {
3874 checkManageUsersPermission("Cannot clear seed account information");
3875 synchronized (mPackagesLock) {
3876 UserData userData;
3877 synchronized (mUsersLock) {
3878 userData = getUserDataLU(UserHandle.getCallingUserId());
3879 if (userData == null) return;
3880 userData.clearSeedAccountData();
3881 }
3882 writeUserLP(userData);
3883 }
3884 }
3885
3886 @Override
3887 public boolean someUserHasSeedAccount(String accountName, String accountType)
3888 throws RemoteException {
3889 checkManageUsersPermission("Cannot check seed account information");
3890 synchronized (mUsersLock) {
3891 final int userSize = mUsers.size();
3892 for (int i = 0; i < userSize; i++) {
3893 final UserData data = mUsers.valueAt(i);
3894 if (data.info.isInitialized()) continue;
3895 if (data.seedAccountName == null || !data.seedAccountName.equals(accountName)) {
3896 continue;
3897 }
3898 if (data.seedAccountType == null || !data.seedAccountType.equals(accountType)) {
3899 continue;
3900 }
3901 return true;
3902 }
3903 }
3904 return false;
3905 }
3906
3907 @Override
Todd Kennedy60459ab2015-10-30 11:32:16 -07003908 public void onShellCommand(FileDescriptor in, FileDescriptor out,
Dianne Hackborn354736e2016-08-22 17:00:05 -07003909 FileDescriptor err, String[] args, ShellCallback callback,
3910 ResultReceiver resultReceiver) {
3911 (new Shell()).exec(this, in, out, err, args, callback, resultReceiver);
Todd Kennedy60459ab2015-10-30 11:32:16 -07003912 }
3913
3914 int onShellCommand(Shell shell, String cmd) {
3915 if (cmd == null) {
3916 return shell.handleDefaultCommands(cmd);
3917 }
3918
3919 final PrintWriter pw = shell.getOutPrintWriter();
3920 try {
3921 switch(cmd) {
3922 case "list":
Felipe Lemec1ca4412019-09-11 09:23:26 -07003923 return runList(pw, shell);
Hui Yu8ba65972018-04-16 18:45:48 -07003924 default:
3925 return shell.handleDefaultCommands(cmd);
Todd Kennedy60459ab2015-10-30 11:32:16 -07003926 }
3927 } catch (RemoteException e) {
3928 pw.println("Remote exception: " + e);
3929 }
3930 return -1;
3931 }
3932
Felipe Lemec1ca4412019-09-11 09:23:26 -07003933 private int runList(PrintWriter pw, Shell shell) throws RemoteException {
3934 boolean all = false;
3935 boolean verbose = false;
3936 String opt;
3937 while ((opt = shell.getNextOption()) != null) {
3938 switch (opt) {
3939 case "-v":
3940 verbose = true;
3941 break;
3942 case "--all":
3943 all = true;
3944 break;
3945 default:
3946 pw.println("Invalid option: " + opt);
3947 return -1;
3948 }
3949 }
Sudheer Shankadc589ac2016-11-10 15:30:17 -08003950 final IActivityManager am = ActivityManager.getService();
Felipe Lemec1ca4412019-09-11 09:23:26 -07003951 final List<UserInfo> users = getUsers(/* excludePartial= */ !all,
3952 /* excludingDying=*/ false, /* excludePreCreated= */ !all);
Todd Kennedy60459ab2015-10-30 11:32:16 -07003953 if (users == null) {
3954 pw.println("Error: couldn't get users");
3955 return 1;
3956 } else {
Felipe Lemec1ca4412019-09-11 09:23:26 -07003957 final int size = users.size();
3958 int currentUser = UserHandle.USER_NULL;
3959 if (verbose) {
3960 pw.printf("%d users:\n\n", size);
3961 currentUser = am.getCurrentUser().id;
3962 } else {
3963 // NOTE: the standard "list users" command is used by integration tests and
3964 // hence should not be changed. If you need to add more info, use the
3965 // verbose option.
3966 pw.println("Users:");
3967 }
3968 for (int i = 0; i < size; i++) {
3969 final UserInfo user = users.get(i);
3970 final boolean running = am.isUserRunning(user.id, 0);
3971 final boolean current = user.id == currentUser;
3972 if (verbose) {
3973 pw.printf("%d: id=%d, name=%s, flags=%s%s%s%s%s\n", i, user.id, user.name,
3974 UserInfo.flagsToString(user.flags),
3975 running ? " (running)" : "",
3976 user.partial ? " (partial)" : "",
3977 user.preCreated ? " (pre-created)" : "",
3978 current ? " (current)" : "");
3979 } else {
3980 // NOTE: the standard "list users" command is used by integration tests and
3981 // hence should not be changed. If you need to add more info, use the
3982 // verbose option.
3983 pw.printf("\t%s%s\n", user, running ? " running" : "");
3984 }
Todd Kennedy60459ab2015-10-30 11:32:16 -07003985 }
3986 return 0;
3987 }
3988 }
3989
3990 @Override
Amith Yamasani920ace02012-09-20 22:15:37 -07003991 protected void dump(FileDescriptor fd, PrintWriter pw, String[] args) {
Jeff Sharkeyfe9a53b2017-03-31 14:08:23 -06003992 if (!DumpUtils.checkDumpPermission(mContext, LOG_TAG, pw)) return;
Amith Yamasani920ace02012-09-20 22:15:37 -07003993
3994 long now = System.currentTimeMillis();
Makoto Onuki73dded22017-12-20 13:14:48 +09003995 final long nowRealtime = SystemClock.elapsedRealtime();
Felipe Lemed7b88382019-06-12 17:40:53 -07003996
3997 final int currentUser = LocalServices.getService(ActivityManagerInternal.class)
3998 .getCurrentUserId();
3999 pw.print("Current user: "); pw.println(currentUser);
4000
Amith Yamasani920ace02012-09-20 22:15:37 -07004001 StringBuilder sb = new StringBuilder();
4002 synchronized (mPackagesLock) {
Fyodor Kupolov82402752015-10-28 14:54:51 -07004003 synchronized (mUsersLock) {
4004 pw.println("Users:");
4005 for (int i = 0; i < mUsers.size(); i++) {
Amith Yamasani12747872015-12-07 14:19:49 -08004006 UserData userData = mUsers.valueAt(i);
4007 if (userData == null) {
Fyodor Kupolov82402752015-10-28 14:54:51 -07004008 continue;
4009 }
Amith Yamasani12747872015-12-07 14:19:49 -08004010 UserInfo userInfo = userData.info;
4011 final int userId = userInfo.id;
4012 pw.print(" "); pw.print(userInfo);
4013 pw.print(" serialNo="); pw.print(userInfo.serialNumber);
Felipe Lemed7b88382019-06-12 17:40:53 -07004014 pw.print(" isPrimary="); pw.print(userInfo.isPrimary());
Makoto Onukie7927da2015-11-25 10:05:17 -08004015 if (mRemovingUserIds.get(userId)) {
Fyodor Kupolov82402752015-10-28 14:54:51 -07004016 pw.print(" <removing> ");
4017 }
Amith Yamasani12747872015-12-07 14:19:49 -08004018 if (userInfo.partial) {
Fyodor Kupolov82402752015-10-28 14:54:51 -07004019 pw.print(" <partial>");
4020 }
Felipe Lemec1ca4412019-09-11 09:23:26 -07004021 if (userInfo.preCreated) {
4022 pw.print(" <pre-created>");
4023 }
Fyodor Kupolov82402752015-10-28 14:54:51 -07004024 pw.println();
Felipe Lemee5434c32019-08-13 09:28:33 -07004025 pw.print(" Flags: "); pw.print(userInfo.flags); pw.print(" (");
4026 pw.print(UserInfo.flagsToString(userInfo.flags)); pw.println(")");
Makoto Onuki88aef752017-03-29 16:52:03 -07004027 pw.print(" State: ");
4028 final int state;
4029 synchronized (mUserStates) {
4030 state = mUserStates.get(userId, -1);
4031 }
4032 pw.println(UserState.stateToString(state));
Fyodor Kupolov82402752015-10-28 14:54:51 -07004033 pw.print(" Created: ");
Makoto Onuki73dded22017-12-20 13:14:48 +09004034 dumpTimeAgo(pw, sb, now, userInfo.creationTime);
4035
Fyodor Kupolov82402752015-10-28 14:54:51 -07004036 pw.print(" Last logged in: ");
Makoto Onuki73dded22017-12-20 13:14:48 +09004037 dumpTimeAgo(pw, sb, now, userInfo.lastLoggedInTime);
4038
Jeff Sharkeybd91e2f2016-03-22 15:32:31 -06004039 pw.print(" Last logged in fingerprint: ");
4040 pw.println(userInfo.lastLoggedInFingerprint);
Makoto Onuki73dded22017-12-20 13:14:48 +09004041
4042 pw.print(" Start time: ");
4043 dumpTimeAgo(pw, sb, nowRealtime, userData.startRealtime);
4044
4045 pw.print(" Unlock time: ");
4046 dumpTimeAgo(pw, sb, nowRealtime, userData.unlockRealtime);
4047
Makoto Onukie7927da2015-11-25 10:05:17 -08004048 pw.print(" Has profile owner: ");
4049 pw.println(mIsUserManaged.get(userId));
Fyodor Kupolov82402752015-10-28 14:54:51 -07004050 pw.println(" Restrictions:");
4051 synchronized (mRestrictionsLock) {
4052 UserRestrictionsUtils.dumpRestrictions(
Amith Yamasani12747872015-12-07 14:19:49 -08004053 pw, " ", mBaseUserRestrictions.get(userInfo.id));
Pavel Grafov6a40f092016-10-25 15:46:51 +01004054 pw.println(" Device policy global restrictions:");
4055 UserRestrictionsUtils.dumpRestrictions(
4056 pw, " ", mDevicePolicyGlobalUserRestrictions.get(userInfo.id));
Makoto Onuki1a2cd742015-11-16 13:51:27 -08004057 pw.println(" Device policy local restrictions:");
4058 UserRestrictionsUtils.dumpRestrictions(
Amith Yamasani12747872015-12-07 14:19:49 -08004059 pw, " ", mDevicePolicyLocalUserRestrictions.get(userInfo.id));
Fyodor Kupolov82402752015-10-28 14:54:51 -07004060 pw.println(" Effective restrictions:");
4061 UserRestrictionsUtils.dumpRestrictions(
Amith Yamasani12747872015-12-07 14:19:49 -08004062 pw, " ", mCachedEffectiveUserRestrictions.get(userInfo.id));
Fyodor Kupolov82402752015-10-28 14:54:51 -07004063 }
Amith Yamasani12747872015-12-07 14:19:49 -08004064
4065 if (userData.account != null) {
4066 pw.print(" Account name: " + userData.account);
Xiaohui Chenb3b92582015-12-07 11:22:13 -08004067 pw.println();
4068 }
Amith Yamasani12747872015-12-07 14:19:49 -08004069
4070 if (userData.seedAccountName != null) {
4071 pw.print(" Seed account name: " + userData.seedAccountName);
4072 pw.println();
4073 if (userData.seedAccountType != null) {
4074 pw.print(" account type: " + userData.seedAccountType);
4075 pw.println();
4076 }
4077 if (userData.seedAccountOptions != null) {
4078 pw.print(" account options exist");
4079 pw.println();
4080 }
4081 }
Amith Yamasani920ace02012-09-20 22:15:37 -07004082 }
Amith Yamasani920ace02012-09-20 22:15:37 -07004083 }
Amith Yamasani12747872015-12-07 14:19:49 -08004084 pw.println();
Pavel Grafov6a40f092016-10-25 15:46:51 +01004085 pw.println(" Device owner id:" + mDeviceOwnerUserId);
Zoltan Szatmary-Bane7834602016-04-08 18:41:11 +01004086 pw.println();
Makoto Onuki1a2cd742015-11-16 13:51:27 -08004087 pw.println(" Guest restrictions:");
Fyodor Kupolove80085d2015-11-06 18:21:39 -08004088 synchronized (mGuestRestrictions) {
Makoto Onuki1a2cd742015-11-16 13:51:27 -08004089 UserRestrictionsUtils.dumpRestrictions(pw, " ", mGuestRestrictions);
Fyodor Kupolove80085d2015-11-06 18:21:39 -08004090 }
Makoto Onukie7927da2015-11-25 10:05:17 -08004091 synchronized (mUsersLock) {
4092 pw.println();
4093 pw.println(" Device managed: " + mIsDeviceManaged);
Fyodor Kupolov0f4533d2016-05-18 18:43:12 -07004094 if (mRemovingUserIds.size() > 0) {
4095 pw.println();
4096 pw.println(" Recently removed userIds: " + mRecentlyRemovedIds);
4097 }
Makoto Onukie7927da2015-11-25 10:05:17 -08004098 }
Amith Yamasaniea1b9d72016-05-27 15:57:38 +00004099 synchronized (mUserStates) {
4100 pw.println(" Started users state: " + mUserStates);
4101 }
Felipe Lemed7b88382019-06-12 17:40:53 -07004102 } // synchronized (mPackagesLock)
4103
4104 // Dump some capabilities
4105 pw.println();
Felipe Lemec1ca4412019-09-11 09:23:26 -07004106 pw.print(" Max users: " + UserManager.getMaxSupportedUsers());
4107 pw.println(" (limit reached: " + isUserLimitReached() + ")");
Felipe Lemed7b88382019-06-12 17:40:53 -07004108 pw.println(" Supports switchable users: " + UserManager.supportsMultipleUsers());
Felipe Lemec1ca4412019-09-11 09:23:26 -07004109 pw.println(" All guests ephemeral: " + areGuestUsersEphemeral());
Felipe Lemed7b88382019-06-12 17:40:53 -07004110 pw.println(" Is split-system user: " + UserManager.isSplitSystemUser());
Felipe Lemee5434c32019-08-13 09:28:33 -07004111 pw.println(" Is headless-system mode: " + UserManager.isHeadlessSystemUserMode());
4112 pw.println(" User version: " + mUserVersion);
Bookatz04d7ae52019-08-05 14:07:12 -07004113
4114 // Dump package whitelist
4115 pw.println();
4116 mSystemPackageInstaller.dump(pw);
Amith Yamasani920ace02012-09-20 22:15:37 -07004117 }
Fyodor Kupolov75d0ea82014-12-15 16:21:07 -08004118
Makoto Onuki73dded22017-12-20 13:14:48 +09004119 private static void dumpTimeAgo(PrintWriter pw, StringBuilder sb, long nowTime, long time) {
4120 if (time == 0) {
4121 pw.println("<unknown>");
4122 } else {
4123 sb.setLength(0);
4124 TimeUtils.formatDuration(nowTime - time, sb);
4125 sb.append(" ago");
4126 pw.println(sb);
4127 }
4128 }
4129
Fyodor Kupolov75d0ea82014-12-15 16:21:07 -08004130 final class MainHandler extends Handler {
4131
4132 @Override
4133 public void handleMessage(Message msg) {
4134 switch (msg.what) {
4135 case WRITE_USER_MSG:
4136 removeMessages(WRITE_USER_MSG, msg.obj);
4137 synchronized (mPackagesLock) {
Amith Yamasani12747872015-12-07 14:19:49 -08004138 int userId = ((UserData) msg.obj).info.id;
4139 UserData userData = getUserDataNoChecks(userId);
4140 if (userData != null) {
4141 writeUserLP(userData);
Fyodor Kupolov75d0ea82014-12-15 16:21:07 -08004142 }
4143 }
4144 }
4145 }
4146 }
Amith Yamasanibb054c92015-07-09 14:16:27 -07004147
4148 /**
4149 * @param userId
4150 * @return whether the user has been initialized yet
4151 */
Bookatzf56f2582019-09-04 16:06:41 -07004152 boolean isUserInitialized(@UserIdInt int userId) {
Todd Kennedy0eb97382017-10-03 16:57:22 -07004153 return mLocalService.isUserInitialized(userId);
Amith Yamasanibb054c92015-07-09 14:16:27 -07004154 }
Makoto Onuki068c54a2015-10-13 14:34:03 -07004155
4156 private class LocalService extends UserManagerInternal {
Makoto Onuki068c54a2015-10-13 14:34:03 -07004157 @Override
Bookatzf56f2582019-09-04 16:06:41 -07004158 public void setDevicePolicyUserRestrictions(@UserIdInt int userId,
4159 @Nullable Bundle restrictions, boolean isDeviceOwner, int cameraRestrictionScope) {
Pavel Grafov6a40f092016-10-25 15:46:51 +01004160 UserManagerService.this.setDevicePolicyUserRestrictionsInner(userId, restrictions,
4161 isDeviceOwner, cameraRestrictionScope);
Makoto Onuki068c54a2015-10-13 14:34:03 -07004162 }
4163
4164 @Override
Bookatzf56f2582019-09-04 16:06:41 -07004165 public Bundle getBaseUserRestrictions(@UserIdInt int userId) {
Makoto Onuki068c54a2015-10-13 14:34:03 -07004166 synchronized (mRestrictionsLock) {
4167 return mBaseUserRestrictions.get(userId);
4168 }
4169 }
4170
4171 @Override
4172 public void setBaseUserRestrictionsByDpmsForMigration(
Bookatzf56f2582019-09-04 16:06:41 -07004173 @UserIdInt int userId, Bundle baseRestrictions) {
Makoto Onuki068c54a2015-10-13 14:34:03 -07004174 synchronized (mRestrictionsLock) {
Pavel Grafov6a40f092016-10-25 15:46:51 +01004175 if (updateRestrictionsIfNeededLR(
4176 userId, new Bundle(baseRestrictions), mBaseUserRestrictions)) {
4177 invalidateEffectiveUserRestrictionsLR(userId);
4178 }
Makoto Onuki068c54a2015-10-13 14:34:03 -07004179 }
4180
Amith Yamasani12747872015-12-07 14:19:49 -08004181 final UserData userData = getUserDataNoChecks(userId);
Makoto Onuki068c54a2015-10-13 14:34:03 -07004182 synchronized (mPackagesLock) {
Amith Yamasani12747872015-12-07 14:19:49 -08004183 if (userData != null) {
4184 writeUserLP(userData);
Makoto Onuki068c54a2015-10-13 14:34:03 -07004185 } else {
4186 Slog.w(LOG_TAG, "UserInfo not found for " + userId);
4187 }
4188 }
4189 }
Makoto Onukid45a4a22015-11-02 17:17:38 -08004190
4191 @Override
Bookatzf56f2582019-09-04 16:06:41 -07004192 public boolean getUserRestriction(@UserIdInt int userId, String key) {
Makoto Onukid45a4a22015-11-02 17:17:38 -08004193 return getUserRestrictions(userId).getBoolean(key);
4194 }
4195
4196 @Override
4197 public void addUserRestrictionsListener(UserRestrictionsListener listener) {
4198 synchronized (mUserRestrictionsListeners) {
4199 mUserRestrictionsListeners.add(listener);
4200 }
4201 }
4202
4203 @Override
4204 public void removeUserRestrictionsListener(UserRestrictionsListener listener) {
4205 synchronized (mUserRestrictionsListeners) {
4206 mUserRestrictionsListeners.remove(listener);
4207 }
4208 }
Makoto Onukie7927da2015-11-25 10:05:17 -08004209
4210 @Override
4211 public void setDeviceManaged(boolean isManaged) {
4212 synchronized (mUsersLock) {
4213 mIsDeviceManaged = isManaged;
4214 }
4215 }
4216
4217 @Override
Rubin Xu0f1e56d2019-08-23 13:34:25 +01004218 public boolean isDeviceManaged() {
4219 synchronized (mUsersLock) {
4220 return mIsDeviceManaged;
4221 }
4222 }
4223
4224 @Override
Bookatzf56f2582019-09-04 16:06:41 -07004225 public void setUserManaged(@UserIdInt int userId, boolean isManaged) {
Makoto Onukie7927da2015-11-25 10:05:17 -08004226 synchronized (mUsersLock) {
4227 mIsUserManaged.put(userId, isManaged);
4228 }
4229 }
Oleksandr Peletskyi7f1f1df2016-01-18 15:40:21 +01004230
4231 @Override
Rubin Xu0f1e56d2019-08-23 13:34:25 +01004232 public boolean isUserManaged(@UserIdInt int userId) {
4233 synchronized (mUsersLock) {
4234 return mIsUserManaged.get(userId);
4235 }
4236 }
4237
4238 @Override
Bookatzf56f2582019-09-04 16:06:41 -07004239 public void setUserIcon(@UserIdInt int userId, Bitmap bitmap) {
Oleksandr Peletskyi7f1f1df2016-01-18 15:40:21 +01004240 long ident = Binder.clearCallingIdentity();
4241 try {
4242 synchronized (mPackagesLock) {
4243 UserData userData = getUserDataNoChecks(userId);
4244 if (userData == null || userData.info.partial) {
4245 Slog.w(LOG_TAG, "setUserIcon: unknown user #" + userId);
4246 return;
4247 }
4248 writeBitmapLP(userData.info, bitmap);
4249 writeUserLP(userData);
4250 }
4251 sendUserInfoChangedBroadcast(userId);
4252 } finally {
4253 Binder.restoreCallingIdentity(ident);
4254 }
4255 }
Lenka Trochtovaf348e8e2016-01-07 17:20:34 +01004256
4257 @Override
4258 public void setForceEphemeralUsers(boolean forceEphemeralUsers) {
4259 synchronized (mUsersLock) {
4260 mForceEphemeralUsers = forceEphemeralUsers;
4261 }
4262 }
4263
4264 @Override
4265 public void removeAllUsers() {
4266 if (UserHandle.USER_SYSTEM == ActivityManager.getCurrentUser()) {
4267 // Remove the non-system users straight away.
4268 removeNonSystemUsers();
4269 } else {
4270 // Switch to the system user first and then remove the other users.
4271 BroadcastReceiver userSwitchedReceiver = new BroadcastReceiver() {
4272 @Override
4273 public void onReceive(Context context, Intent intent) {
4274 int userId =
4275 intent.getIntExtra(Intent.EXTRA_USER_HANDLE, UserHandle.USER_NULL);
4276 if (userId != UserHandle.USER_SYSTEM) {
4277 return;
4278 }
4279 mContext.unregisterReceiver(this);
4280 removeNonSystemUsers();
4281 }
4282 };
4283 IntentFilter userSwitchedFilter = new IntentFilter();
4284 userSwitchedFilter.addAction(Intent.ACTION_USER_SWITCHED);
4285 mContext.registerReceiver(
4286 userSwitchedReceiver, userSwitchedFilter, null, mHandler);
4287
4288 // Switch to the system user.
4289 ActivityManager am =
4290 (ActivityManager) mContext.getSystemService(Context.ACTIVITY_SERVICE);
4291 am.switchUser(UserHandle.USER_SYSTEM);
4292 }
4293 }
phweisse9c44062016-02-10 12:57:38 +01004294
4295 @Override
Bookatzf56f2582019-09-04 16:06:41 -07004296 public void onEphemeralUserStop(@UserIdInt int userId) {
Lenka Trochtova1ddda472016-02-12 10:42:12 +01004297 synchronized (mUsersLock) {
4298 UserInfo userInfo = getUserInfoLU(userId);
4299 if (userInfo != null && userInfo.isEphemeral()) {
4300 // Do not allow switching back to the ephemeral user again as the user is going
4301 // to be deleted.
4302 userInfo.flags |= UserInfo.FLAG_DISABLED;
4303 if (userInfo.isGuest()) {
4304 // Indicate that the guest will be deleted after it stops.
4305 userInfo.guestToRemove = true;
4306 }
4307 }
4308 }
4309 }
4310
4311 @Override
Alex Chaub6a9f942017-11-07 11:28:56 +08004312 public UserInfo createUserEvenWhenDisallowed(String name, int flags,
4313 String[] disallowedPackages) {
4314 UserInfo user = createUserInternalUnchecked(name, flags, UserHandle.USER_NULL,
Felipe Lemec1ca4412019-09-11 09:23:26 -07004315 /* preCreated= */ false, disallowedPackages);
phweisse9c44062016-02-10 12:57:38 +01004316 // Keep this in sync with UserManager.createUser
Christine Franks97a54802017-08-09 10:06:43 -07004317 if (user != null && !user.isAdmin() && !user.isDemo()) {
phweisse9c44062016-02-10 12:57:38 +01004318 setUserRestriction(UserManager.DISALLOW_SMS, true, user.id);
4319 setUserRestriction(UserManager.DISALLOW_OUTGOING_CALLS, true, user.id);
4320 }
4321 return user;
4322 }
Fyodor Kupolov6c915ea2016-05-09 19:10:53 -07004323
4324 @Override
Bookatzf56f2582019-09-04 16:06:41 -07004325 public boolean removeUserEvenWhenDisallowed(@UserIdInt int userId) {
Nicolas Prevotdf1b87d2016-10-25 13:57:08 +01004326 return removeUserUnchecked(userId);
4327 }
4328
4329 @Override
Bookatzf56f2582019-09-04 16:06:41 -07004330 public boolean isUserRunning(@UserIdInt int userId) {
Amith Yamasaniea1b9d72016-05-27 15:57:38 +00004331 synchronized (mUserStates) {
4332 return mUserStates.get(userId, -1) >= 0;
4333 }
4334 }
4335
4336 @Override
Bookatzf56f2582019-09-04 16:06:41 -07004337 public void setUserState(@UserIdInt int userId, int userState) {
Amith Yamasaniea1b9d72016-05-27 15:57:38 +00004338 synchronized (mUserStates) {
4339 mUserStates.put(userId, userState);
4340 }
4341 }
4342
4343 @Override
Bookatzf56f2582019-09-04 16:06:41 -07004344 public void removeUserState(@UserIdInt int userId) {
Amith Yamasaniea1b9d72016-05-27 15:57:38 +00004345 synchronized (mUserStates) {
4346 mUserStates.delete(userId);
Fyodor Kupolov6c915ea2016-05-09 19:10:53 -07004347 }
4348 }
4349
4350 @Override
Michael Wachenschwanz3f2b6552017-05-15 13:53:09 -07004351 public int[] getUserIds() {
4352 return UserManagerService.this.getUserIds();
4353 }
4354
4355 @Override
Bookatzf56f2582019-09-04 16:06:41 -07004356 public boolean isUserUnlockingOrUnlocked(@UserIdInt int userId) {
Fyodor Kupolov0468ee92017-05-25 17:06:17 -07004357 int state;
Amith Yamasaniea1b9d72016-05-27 15:57:38 +00004358 synchronized (mUserStates) {
Fyodor Kupolov0468ee92017-05-25 17:06:17 -07004359 state = mUserStates.get(userId, -1);
Fyodor Kupolov6c915ea2016-05-09 19:10:53 -07004360 }
Fyodor Kupolov0468ee92017-05-25 17:06:17 -07004361 // Special case, in the stopping/shutdown state user key can still be unlocked
4362 if (state == UserState.STATE_STOPPING || state == UserState.STATE_SHUTDOWN) {
4363 return StorageManager.isUserKeyUnlocked(userId);
4364 }
4365 return (state == UserState.STATE_RUNNING_UNLOCKING)
4366 || (state == UserState.STATE_RUNNING_UNLOCKED);
Fyodor Kupolov6c915ea2016-05-09 19:10:53 -07004367 }
Fyodor Kupolov2e7e0962016-12-01 18:09:17 -08004368
4369 @Override
Bookatzf56f2582019-09-04 16:06:41 -07004370 public boolean isUserUnlocked(@UserIdInt int userId) {
Fyodor Kupolov0468ee92017-05-25 17:06:17 -07004371 int state;
Fyodor Kupolov2e7e0962016-12-01 18:09:17 -08004372 synchronized (mUserStates) {
Fyodor Kupolov0468ee92017-05-25 17:06:17 -07004373 state = mUserStates.get(userId, -1);
Fyodor Kupolov2e7e0962016-12-01 18:09:17 -08004374 }
Fyodor Kupolov0468ee92017-05-25 17:06:17 -07004375 // Special case, in the stopping/shutdown state user key can still be unlocked
4376 if (state == UserState.STATE_STOPPING || state == UserState.STATE_SHUTDOWN) {
4377 return StorageManager.isUserKeyUnlocked(userId);
4378 }
4379 return state == UserState.STATE_RUNNING_UNLOCKED;
Fyodor Kupolov2e7e0962016-12-01 18:09:17 -08004380 }
Todd Kennedy0eb97382017-10-03 16:57:22 -07004381
4382 @Override
Bookatzf56f2582019-09-04 16:06:41 -07004383 public boolean isUserInitialized(@UserIdInt int userId) {
Todd Kennedy0eb97382017-10-03 16:57:22 -07004384 return (getUserInfo(userId).flags & UserInfo.FLAG_INITIALIZED) != 0;
4385 }
4386
4387 @Override
Bookatzf56f2582019-09-04 16:06:41 -07004388 public boolean exists(@UserIdInt int userId) {
Todd Kennedy0eb97382017-10-03 16:57:22 -07004389 return getUserInfoNoChecks(userId) != null;
4390 }
Sunny Goyal145c8f82018-02-15 14:27:09 -08004391
4392 @Override
4393 public boolean isProfileAccessible(int callingUserId, int targetUserId, String debugMsg,
4394 boolean throwSecurityException) {
4395 if (targetUserId == callingUserId) {
4396 return true;
4397 }
4398 synchronized (mUsersLock) {
4399 UserInfo callingUserInfo = getUserInfoLU(callingUserId);
4400 if (callingUserInfo == null || callingUserInfo.isManagedProfile()) {
4401 if (throwSecurityException) {
4402 throw new SecurityException(
4403 debugMsg + " for another profile "
4404 + targetUserId + " from " + callingUserId);
4405 }
4406 }
4407
4408 UserInfo targetUserInfo = getUserInfoLU(targetUserId);
4409 if (targetUserInfo == null || !targetUserInfo.isEnabled()) {
4410 // Do not throw any exception here as this could happen due to race conditions
4411 // between the system updating its state and the client getting notified.
4412 if (throwSecurityException) {
4413 Slog.w(LOG_TAG, debugMsg + " for disabled profile "
4414 + targetUserId + " from " + callingUserId);
4415 }
4416 return false;
4417 }
4418
4419 if (targetUserInfo.profileGroupId == UserInfo.NO_PROFILE_GROUP_ID ||
4420 targetUserInfo.profileGroupId != callingUserInfo.profileGroupId) {
4421 if (throwSecurityException) {
4422 throw new SecurityException(
4423 debugMsg + " for unrelated profile " + targetUserId);
4424 }
4425 return false;
4426 }
4427 }
4428 return true;
4429 }
4430
4431 @Override
Bookatzf56f2582019-09-04 16:06:41 -07004432 public int getProfileParentId(@UserIdInt int userId) {
Sunny Goyal145c8f82018-02-15 14:27:09 -08004433 synchronized (mUsersLock) {
4434 UserInfo profileParent = getProfileParentLU(userId);
4435 if (profileParent == null) {
4436 return userId;
4437 }
4438 return profileParent.id;
4439 }
4440 }
yuemingw1d13eae2018-01-30 17:27:54 +00004441
4442 @Override
4443 public boolean isSettingRestrictedForUser(String setting, @UserIdInt int userId,
4444 String value, int callingUid) {
Christopher Tate65fb2e42019-10-11 17:00:23 -07004445 return UserManagerService.this.isSettingRestrictedForUser(setting, userId,
yuemingw1d13eae2018-01-30 17:27:54 +00004446 value, callingUid);
4447 }
Patrick Baumann2f2fd712019-07-31 15:18:53 -07004448
4449 @Override
Bookatzf56f2582019-09-04 16:06:41 -07004450 public boolean hasUserRestriction(String restrictionKey, @UserIdInt int userId) {
Patrick Baumann2f2fd712019-07-31 15:18:53 -07004451 if (!UserRestrictionsUtils.isValidRestriction(restrictionKey)) {
4452 return false;
4453 }
4454 Bundle restrictions = getEffectiveUserRestrictions(userId);
4455 return restrictions != null && restrictions.getBoolean(restrictionKey);
4456 }
Felipe Lemee5434c32019-08-13 09:28:33 -07004457
Rubin Xu0f1e56d2019-08-23 13:34:25 +01004458 @Override
Felipe Lemee5434c32019-08-13 09:28:33 -07004459 public @Nullable UserInfo getUserInfo(@UserIdInt int userId) {
4460 UserData userData;
4461 synchronized (mUsersLock) {
4462 userData = mUsers.get(userId);
4463 }
4464 return userData == null ? null : userData.info;
4465 }
Felipe Leme987655d2019-08-26 10:45:24 -07004466
4467 public @NonNull UserInfo[] getUserInfos() {
4468 synchronized (mUsersLock) {
4469 int userSize = mUsers.size();
4470 UserInfo[] allInfos = new UserInfo[userSize];
4471 for (int i = 0; i < userSize; i++) {
4472 allInfos[i] = mUsers.valueAt(i).info;
4473 }
4474 return allInfos;
4475 }
4476 }
Lenka Trochtovaf348e8e2016-01-07 17:20:34 +01004477 }
4478
4479 /* Remove all the users except of the system one. */
4480 private void removeNonSystemUsers() {
4481 ArrayList<UserInfo> usersToRemove = new ArrayList<>();
4482 synchronized (mUsersLock) {
4483 final int userSize = mUsers.size();
4484 for (int i = 0; i < userSize; i++) {
4485 UserInfo ui = mUsers.valueAt(i).info;
4486 if (ui.id != UserHandle.USER_SYSTEM) {
4487 usersToRemove.add(ui);
4488 }
4489 }
4490 }
4491 for (UserInfo ui: usersToRemove) {
4492 removeUser(ui.id);
4493 }
Makoto Onuki068c54a2015-10-13 14:34:03 -07004494 }
Todd Kennedy60459ab2015-10-30 11:32:16 -07004495
4496 private class Shell extends ShellCommand {
4497 @Override
4498 public int onCommand(String cmd) {
4499 return onShellCommand(this, cmd);
4500 }
4501
4502 @Override
4503 public void onHelp() {
4504 final PrintWriter pw = getOutPrintWriter();
4505 pw.println("User manager (user) commands:");
4506 pw.println(" help");
4507 pw.println(" Print this help text.");
4508 pw.println("");
Felipe Lemec1ca4412019-09-11 09:23:26 -07004509 pw.println(" list [-v] [-all]");
Todd Kennedy60459ab2015-10-30 11:32:16 -07004510 pw.println(" Prints all users on the system.");
4511 }
4512 }
Makoto Onuki1a2cd742015-11-16 13:51:27 -08004513
4514 private static void debug(String message) {
4515 Log.d(LOG_TAG, message +
4516 (DBG_WITH_STACKTRACE ? " called at\n" + Debug.getCallers(10, " ") : ""));
4517 }
Kenny Guy02c89902016-11-15 19:36:38 +00004518
4519 @VisibleForTesting
4520 static int getMaxManagedProfiles() {
4521 // Allow overriding max managed profiles on debuggable builds for testing
4522 // of multiple profiles.
4523 if (!Build.IS_DEBUGGABLE) {
4524 return MAX_MANAGED_PROFILES;
4525 } else {
4526 return SystemProperties.getInt("persist.sys.max_profiles",
4527 MAX_MANAGED_PROFILES);
4528 }
4529 }
4530
Andreas Gampe2e8c7672018-07-20 13:01:08 -07004531 @GuardedBy("mUsersLock")
Kenny Guy02c89902016-11-15 19:36:38 +00004532 @VisibleForTesting
4533 int getFreeProfileBadgeLU(int parentUserId) {
4534 int maxManagedProfiles = getMaxManagedProfiles();
4535 boolean[] usedBadges = new boolean[maxManagedProfiles];
4536 final int userSize = mUsers.size();
4537 for (int i = 0; i < userSize; i++) {
4538 UserInfo ui = mUsers.valueAt(i).info;
4539 // Check which badge indexes are already used by this profile group.
4540 if (ui.isManagedProfile()
4541 && ui.profileGroupId == parentUserId
4542 && !mRemovingUserIds.get(ui.id)
4543 && ui.profileBadge < maxManagedProfiles) {
4544 usedBadges[ui.profileBadge] = true;
4545 }
4546 }
4547 for (int i = 0; i < maxManagedProfiles; i++) {
4548 if (!usedBadges[i]) {
4549 return i;
4550 }
4551 }
4552 return 0;
4553 }
Amith Yamasani0d1fd8d2016-10-12 14:21:51 -07004554
4555 /**
4556 * Checks if the given user has a managed profile associated with it.
4557 * @param userId The parent user
4558 * @return
4559 */
Bookatzf56f2582019-09-04 16:06:41 -07004560 boolean hasManagedProfile(@UserIdInt int userId) {
Amith Yamasani0d1fd8d2016-10-12 14:21:51 -07004561 synchronized (mUsersLock) {
4562 UserInfo userInfo = getUserInfoLU(userId);
4563 final int userSize = mUsers.size();
4564 for (int i = 0; i < userSize; i++) {
4565 UserInfo profile = mUsers.valueAt(i).info;
4566 if (userId != profile.id && isProfileOf(userInfo, profile)) {
4567 return true;
4568 }
4569 }
4570 return false;
4571 }
4572 }
Tony Makd390ae92017-12-28 13:23:10 +00004573
4574 /**
4575 * Check if the calling package name matches with the calling UID, throw
4576 * {@link SecurityException} if not.
4577 */
4578 private void verifyCallingPackage(String callingPackage, int callingUid) {
4579 int packageUid = mPm.getPackageUid(callingPackage, 0, UserHandle.getUserId(callingUid));
4580 if (packageUid != callingUid) {
4581 throw new SecurityException("Specified package " + callingPackage
4582 + " does not match the calling uid " + callingUid);
4583 }
4584 }
Amith Yamasani4b2e9342011-03-31 12:38:53 -07004585}