blob: 1152310116a05e62b48cd1826c2c05c985aa6ae9 [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;
Sudheer Shanka38c67d32016-08-02 22:13:17 +000030import android.app.AppGlobals;
Todd Kennedy60459ab2015-10-30 11:32:16 -070031import android.app.IActivityManager;
Dianne Hackborn80a4af22012-08-27 19:18:31 -070032import android.app.IStopUserCallback;
Benjamin Franzf02420c2016-04-04 18:52:21 +010033import android.app.KeyguardManager;
Ricky Waib1dd80b2016-06-07 18:00:55 +010034import android.app.PendingIntent;
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;
Amith Yamasani4b2e9342011-03-31 12:38:53 -070042import android.content.pm.UserInfo;
Lenka Trochtova02fee152015-12-22 14:26:18 +010043import android.content.res.Resources;
Amith Yamasanie928d7d2012-09-17 21:46:51 -070044import android.graphics.Bitmap;
Amith Yamasani258848d2012-08-10 17:06:33 -070045import android.os.Binder;
Jeff Sharkeybd91e2f2016-03-22 15:32:31 -060046import android.os.Build;
Amith Yamasanie4cf7342012-12-17 11:12:09 -080047import android.os.Bundle;
Makoto Onuki1a2cd742015-11-16 13:51:27 -080048import android.os.Debug;
Amith Yamasani4b2e9342011-03-31 12:38:53 -070049import android.os.Environment;
50import android.os.FileUtils;
Jeff Sharkeyffe0cb42012-11-05 17:24:43 -080051import android.os.Handler;
Svet Ganov9cea80cd2016-02-16 11:47:00 -080052import android.os.IBinder;
Amith Yamasani258848d2012-08-10 17:06:33 -070053import android.os.IUserManager;
Fyodor Kupolov75d0ea82014-12-15 16:21:07 -080054import android.os.Message;
Adrian Roos1bdff912015-02-17 15:51:35 +010055import android.os.ParcelFileDescriptor;
Fyodor Kupolov262f9952015-03-23 18:55:11 -070056import android.os.Parcelable;
Amith Yamasani12747872015-12-07 14:19:49 -080057import android.os.PersistableBundle;
Amith Yamasani258848d2012-08-10 17:06:33 -070058import android.os.Process;
Dianne Hackborn80a4af22012-08-27 19:18:31 -070059import android.os.RemoteException;
Todd Kennedy60459ab2015-10-30 11:32:16 -070060import android.os.ResultReceiver;
Oleksandr Peletskyicd6fa302016-02-25 16:28:39 +010061import android.os.SELinux;
Jason Monk62062992014-05-06 09:55:28 -040062import android.os.ServiceManager;
Dianne Hackborn354736e2016-08-22 17:00:05 -070063import android.os.ShellCallback;
Todd Kennedy60459ab2015-10-30 11:32:16 -070064import android.os.ShellCommand;
Kenny Guy02c89902016-11-15 19:36:38 +000065import android.os.SystemProperties;
Dianne Hackbornf02b60a2012-08-16 10:48:27 -070066import android.os.UserHandle;
Jeff Sharkey27bd34d2012-09-16 12:49:00 -070067import android.os.UserManager;
Pavel Grafov6a40f092016-10-25 15:46:51 +010068import android.os.UserManager.EnforcingUser;
Makoto Onuki068c54a2015-10-13 14:34:03 -070069import android.os.UserManagerInternal;
Makoto Onukid45a4a22015-11-02 17:17:38 -080070import android.os.UserManagerInternal.UserRestrictionsListener;
Paul Crowley85e4e812015-05-19 12:42:00 +010071import android.os.storage.StorageManager;
Amith Yamasanid04aaa32016-06-13 12:09:36 -070072import android.security.GateKeeper;
73import android.service.gatekeeper.IGateKeeperService;
Jeff Sharkey6dce4962015-07-03 18:08:41 -070074import android.system.ErrnoException;
75import android.system.Os;
76import android.system.OsConstants;
Amith Yamasanieb437d42016-04-29 09:31:25 -070077import android.text.TextUtils;
Amith Yamasani2a003292012-08-14 18:25:45 -070078import android.util.AtomicFile;
Fyodor Kupolov7f98aa42016-04-07 14:56:25 -070079import android.util.IntArray;
Amith Yamasani655d0e22013-06-12 14:19:10 -070080import android.util.Log;
Amith Yamasani4b2e9342011-03-31 12:38:53 -070081import android.util.Slog;
82import android.util.SparseArray;
Jeff Sharkeyffe0cb42012-11-05 17:24:43 -080083import android.util.SparseBooleanArray;
Amith Yamasaniea1b9d72016-05-27 15:57:38 +000084import android.util.SparseIntArray;
Amith Yamasani920ace02012-09-20 22:15:37 -070085import android.util.TimeUtils;
Amith Yamasani4b2e9342011-03-31 12:38:53 -070086import android.util.Xml;
87
Makoto Onuki068c54a2015-10-13 14:34:03 -070088import com.android.internal.annotations.GuardedBy;
Fyodor Kupolov262f9952015-03-23 18:55:11 -070089import com.android.internal.annotations.VisibleForTesting;
Jason Monk62062992014-05-06 09:55:28 -040090import com.android.internal.app.IAppOpsService;
Fyodor Kupolov8385e4b2015-12-29 18:15:32 -080091import com.android.internal.logging.MetricsLogger;
Jeff Sharkeyfe9a53b2017-03-31 14:08:23 -060092import com.android.internal.util.DumpUtils;
Jeff Sharkeyffe0cb42012-11-05 17:24:43 -080093import com.android.internal.util.FastXmlSerializer;
Makoto Onuki068c54a2015-10-13 14:34:03 -070094import com.android.internal.util.Preconditions;
Fyodor Kupolov262f9952015-03-23 18:55:11 -070095import com.android.internal.util.XmlUtils;
Clara Bayarri10ad84a2015-12-01 17:38:05 +000096import com.android.internal.widget.LockPatternUtils;
Amith Yamasani515d4062015-09-28 11:30:06 -070097import com.android.server.LocalServices;
Jeff Sharkey5f3e9342017-03-13 14:53:11 -060098import com.android.server.LockGuard;
Amith Yamasanid04aaa32016-06-13 12:09:36 -070099import com.android.server.SystemService;
Amith Yamasaniea1b9d72016-05-27 15:57:38 +0000100import com.android.server.am.UserState;
Suprabh Shuklac5e057c2016-08-08 16:22:44 -0700101import com.android.server.storage.DeviceStorageMonitorInternal;
Tony Mak6dc428f2016-10-10 15:48:27 +0100102
Jeff Sharkey47f71082016-02-01 17:03:54 -0700103import libcore.io.IoUtils;
104import libcore.util.Objects;
Jeff Sharkeyffe0cb42012-11-05 17:24:43 -0800105
106import org.xmlpull.v1.XmlPullParser;
107import org.xmlpull.v1.XmlPullParserException;
108import org.xmlpull.v1.XmlSerializer;
109
Amith Yamasani4b2e9342011-03-31 12:38:53 -0700110import java.io.BufferedOutputStream;
111import java.io.File;
Amith Yamasani920ace02012-09-20 22:15:37 -0700112import java.io.FileDescriptor;
Amith Yamasani4b2e9342011-03-31 12:38:53 -0700113import java.io.FileInputStream;
Amith Yamasanib8151ec2012-04-18 18:02:48 -0700114import java.io.FileNotFoundException;
Amith Yamasani4b2e9342011-03-31 12:38:53 -0700115import java.io.FileOutputStream;
Kenny Guy02c89902016-11-15 19:36:38 +0000116import java.io.InputStream;
117import java.io.OutputStream;
Amith Yamasani4b2e9342011-03-31 12:38:53 -0700118import java.io.IOException;
Amith Yamasani920ace02012-09-20 22:15:37 -0700119import java.io.PrintWriter;
Wojciech Staszkiewicz9e9e2e72015-05-08 14:58:46 +0100120import java.nio.charset.StandardCharsets;
Amith Yamasani4b2e9342011-03-31 12:38:53 -0700121import java.util.ArrayList;
Pavel Grafov6a40f092016-10-25 15:46:51 +0100122import java.util.Collections;
Fyodor Kupolov0f4533d2016-05-18 18:43:12 -0700123import java.util.LinkedList;
Amith Yamasani4b2e9342011-03-31 12:38:53 -0700124import java.util.List;
125
Makoto Onuki068c54a2015-10-13 14:34:03 -0700126/**
127 * Service for {@link UserManager}.
128 *
129 * Method naming convention:
Fyodor Kupolov82402752015-10-28 14:54:51 -0700130 * <ul>
Fyodor Kupolovd31cee92017-09-05 16:31:08 -0700131 * <li> Methods suffixed with "LAr" should be called within the {@link #mAppRestrictionsLock} lock.
Fyodor Kupolove80085d2015-11-06 18:21:39 -0800132 * <li> Methods suffixed with "LP" should be called within the {@link #mPackagesLock} lock.
Fyodor Kupolov82402752015-10-28 14:54:51 -0700133 * <li> Methods suffixed with "LR" should be called within the {@link #mRestrictionsLock} lock.
134 * <li> Methods suffixed with "LU" should be called within the {@link #mUsersLock} lock.
135 * </ul>
Makoto Onuki068c54a2015-10-13 14:34:03 -0700136 */
Amith Yamasani258848d2012-08-10 17:06:33 -0700137public class UserManagerService extends IUserManager.Stub {
Amith Yamasanid04aaa32016-06-13 12:09:36 -0700138
Amith Yamasani2a003292012-08-14 18:25:45 -0700139 private static final String LOG_TAG = "UserManagerService";
Makoto Onuki81c61ea2016-01-22 11:22:26 -0800140 static final boolean DBG = false; // DO NOT SUBMIT WITH TRUE
Makoto Onuki1a2cd742015-11-16 13:51:27 -0800141 private static final boolean DBG_WITH_STACKTRACE = false; // DO NOT SUBMIT WITH TRUE
Fyodor Kupolov0f4533d2016-05-18 18:43:12 -0700142 // Can be used for manual testing of id recycling
143 private static final boolean RELEASE_DELETED_USER_ID = false; // DO NOT SUBMIT WITH TRUE
Amith Yamasani16389312012-10-17 21:20:14 -0700144
Amith Yamasani4b2e9342011-03-31 12:38:53 -0700145 private static final String TAG_NAME = "name";
Xiaohui Chenb3b92582015-12-07 11:22:13 -0800146 private static final String TAG_ACCOUNT = "account";
Amith Yamasani4b2e9342011-03-31 12:38:53 -0700147 private static final String ATTR_FLAGS = "flags";
Amith Yamasanib8151ec2012-04-18 18:02:48 -0700148 private static final String ATTR_ICON_PATH = "icon";
Amith Yamasani4b2e9342011-03-31 12:38:53 -0700149 private static final String ATTR_ID = "id";
Amith Yamasani920ace02012-09-20 22:15:37 -0700150 private static final String ATTR_CREATION_TIME = "created";
151 private static final String ATTR_LAST_LOGGED_IN_TIME = "lastLoggedIn";
Jeff Sharkeybd91e2f2016-03-22 15:32:31 -0600152 private static final String ATTR_LAST_LOGGED_IN_FINGERPRINT = "lastLoggedInFingerprint";
Amith Yamasani2a003292012-08-14 18:25:45 -0700153 private static final String ATTR_SERIAL_NO = "serialNumber";
154 private static final String ATTR_NEXT_SERIAL_NO = "nextSerialNumber";
Dianne Hackbornd4ac8d72012-09-27 23:20:10 -0700155 private static final String ATTR_PARTIAL = "partial";
Adam Lesinskieddeb492014-09-08 17:50:03 -0700156 private static final String ATTR_GUEST_TO_REMOVE = "guestToRemove";
Amith Yamasani6f34b412012-10-22 18:19:27 -0700157 private static final String ATTR_USER_VERSION = "version";
Kenny Guy2a764942014-04-02 13:29:20 +0100158 private static final String ATTR_PROFILE_GROUP_ID = "profileGroupId";
Kenny Guy02c89902016-11-15 19:36:38 +0000159 private static final String ATTR_PROFILE_BADGE = "profileBadge";
Fyodor Kupolov06a484a2015-08-21 16:33:20 -0700160 private static final String ATTR_RESTRICTED_PROFILE_PARENT_ID = "restrictedProfileParentId";
Amith Yamasani12747872015-12-07 14:19:49 -0800161 private static final String ATTR_SEED_ACCOUNT_NAME = "seedAccountName";
162 private static final String ATTR_SEED_ACCOUNT_TYPE = "seedAccountType";
Amith Yamasanie4afaa32014-06-30 14:55:07 +0530163 private static final String TAG_GUEST_RESTRICTIONS = "guestRestrictions";
Amith Yamasani4b2e9342011-03-31 12:38:53 -0700164 private static final String TAG_USERS = "users";
Amith Yamasani4b2e9342011-03-31 12:38:53 -0700165 private static final String TAG_USER = "user";
Amith Yamasanie4cf7342012-12-17 11:12:09 -0800166 private static final String TAG_RESTRICTIONS = "restrictions";
Makoto Onuki1a2cd742015-11-16 13:51:27 -0800167 private static final String TAG_DEVICE_POLICY_RESTRICTIONS = "device_policy_restrictions";
Pavel Grafov6a40f092016-10-25 15:46:51 +0100168 private static final String TAG_DEVICE_POLICY_GLOBAL_RESTRICTIONS =
169 "device_policy_global_restrictions";
170 /** Legacy name for device owner id tag. */
Zoltan Szatmary-Bane7834602016-04-08 18:41:11 +0100171 private static final String TAG_GLOBAL_RESTRICTION_OWNER_ID = "globalRestrictionOwnerUserId";
Pavel Grafov6a40f092016-10-25 15:46:51 +0100172 private static final String TAG_DEVICE_OWNER_USER_ID = "deviceOwnerUserId";
Amith Yamasanidf2e92a2013-03-01 17:04:38 -0800173 private static final String TAG_ENTRY = "entry";
174 private static final String TAG_VALUE = "value";
Amith Yamasani12747872015-12-07 14:19:49 -0800175 private static final String TAG_SEED_ACCOUNT_OPTIONS = "seedAccountOptions";
Amith Yamasanidf2e92a2013-03-01 17:04:38 -0800176 private static final String ATTR_KEY = "key";
Amith Yamasani7e99bc02013-04-16 18:24:51 -0700177 private static final String ATTR_VALUE_TYPE = "type";
Amith Yamasanidf2e92a2013-03-01 17:04:38 -0800178 private static final String ATTR_MULTIPLE = "m";
Amith Yamasani4b2e9342011-03-31 12:38:53 -0700179
Amith Yamasani7e99bc02013-04-16 18:24:51 -0700180 private static final String ATTR_TYPE_STRING_ARRAY = "sa";
181 private static final String ATTR_TYPE_STRING = "s";
182 private static final String ATTR_TYPE_BOOLEAN = "b";
Amith Yamasani5b5aa402014-06-01 20:10:14 -0700183 private static final String ATTR_TYPE_INTEGER = "i";
Fyodor Kupolov262f9952015-03-23 18:55:11 -0700184 private static final String ATTR_TYPE_BUNDLE = "B";
185 private static final String ATTR_TYPE_BUNDLE_ARRAY = "BA";
Amith Yamasani7e99bc02013-04-16 18:24:51 -0700186
Amith Yamasani0b285492011-04-14 17:35:23 -0700187 private static final String USER_INFO_DIR = "system" + File.separator + "users";
Amith Yamasani4b2e9342011-03-31 12:38:53 -0700188 private static final String USER_LIST_FILENAME = "userlist.xml";
Amith Yamasanib8151ec2012-04-18 18:02:48 -0700189 private static final String USER_PHOTO_FILENAME = "photo.png";
Adrian Roos1bdff912015-02-17 15:51:35 +0100190 private static final String USER_PHOTO_FILENAME_TMP = USER_PHOTO_FILENAME + ".tmp";
Amith Yamasani4b2e9342011-03-31 12:38:53 -0700191
Amith Yamasanidf2e92a2013-03-01 17:04:38 -0800192 private static final String RESTRICTIONS_FILE_PREFIX = "res_";
Amith Yamasanifc95e702013-09-26 13:20:17 -0700193 private static final String XML_SUFFIX = ".xml";
Amith Yamasanidf2e92a2013-03-01 17:04:38 -0800194
Sudheer Shankaf5cea032016-06-08 17:13:24 -0700195 private static final int ALLOWED_FLAGS_FOR_CREATE_USERS_PERMISSION =
196 UserInfo.FLAG_MANAGED_PROFILE
197 | UserInfo.FLAG_EPHEMERAL
198 | UserInfo.FLAG_RESTRICTED
Sudheer Shanka234d1af2016-08-26 15:42:53 -0700199 | UserInfo.FLAG_GUEST
200 | UserInfo.FLAG_DEMO;
Sudheer Shankaf5cea032016-06-08 17:13:24 -0700201
Fyodor Kupolov0f4533d2016-05-18 18:43:12 -0700202 @VisibleForTesting
203 static final int MIN_USER_ID = 10;
Xiaohui Chen621b3fc2015-10-02 14:41:42 -0700204 // We need to keep process uid within Integer.MAX_VALUE.
Fyodor Kupolov0f4533d2016-05-18 18:43:12 -0700205 @VisibleForTesting
206 static final int MAX_USER_ID = Integer.MAX_VALUE / UserHandle.PER_USER_RANGE;
207
208 // Max size of the queue of recently removed users
209 @VisibleForTesting
210 static final int MAX_RECENTLY_REMOVED_IDS_SIZE = 100;
Amith Yamasani634cf312012-10-04 17:34:21 -0700211
Pavel Grafov6a40f092016-10-25 15:46:51 +0100212 private static final int USER_VERSION = 7;
Amith Yamasani6f34b412012-10-22 18:19:27 -0700213
Amith Yamasani920ace02012-09-20 22:15:37 -0700214 private static final long EPOCH_PLUS_30_YEARS = 30L * 365 * 24 * 60 * 60 * 1000L; // ms
215
Nicolas Prevotb8186812015-08-06 15:00:03 +0100216 // Maximum number of managed profiles permitted per user is 1. This cannot be increased
Amith Yamasani95ab7842014-08-11 17:09:26 -0700217 // without first making sure that the rest of the framework is prepared for it.
Kenny Guy02c89902016-11-15 19:36:38 +0000218 @VisibleForTesting
219 static final int MAX_MANAGED_PROFILES = 1;
Amith Yamasani95ab7842014-08-11 17:09:26 -0700220
Fyodor Kupolov75d0ea82014-12-15 16:21:07 -0800221 static final int WRITE_USER_MSG = 1;
222 static final int WRITE_USER_DELAY = 2*1000; // 2 seconds
Amith Yamasanie4afaa32014-06-30 14:55:07 +0530223
Fyodor Kupolov8385e4b2015-12-29 18:15:32 -0800224 // Tron counters
225 private static final String TRON_GUEST_CREATED = "users_guest_created";
226 private static final String TRON_USER_CREATED = "users_user_created";
Christine Franks88220562017-05-24 11:11:21 -0700227 private static final String TRON_DEMO_CREATED = "users_demo_created";
Fyodor Kupolov8385e4b2015-12-29 18:15:32 -0800228
Dianne Hackborn4428e172012-08-24 17:43:05 -0700229 private final Context mContext;
230 private final PackageManagerService mPm;
Dianne Hackborn4428e172012-08-24 17:43:05 -0700231 private final Object mPackagesLock;
Fyodor Kupolov5c0ecfd2017-01-27 11:11:57 -0800232 private final UserDataPreparer mUserDataPreparer;
Fyodor Kupolov82402752015-10-28 14:54:51 -0700233 // Short-term lock for internal state, when interaction/sync with PM is not required
Jeff Sharkey5f3e9342017-03-13 14:53:11 -0600234 private final Object mUsersLock = LockGuard.installNewLock(LockGuard.INDEX_USER);
Fyodor Kupolov82402752015-10-28 14:54:51 -0700235 private final Object mRestrictionsLock = new Object();
Fyodor Kupolovd31cee92017-09-05 16:31:08 -0700236 // Used for serializing access to app restriction files
237 private final Object mAppRestrictionsLock = new Object();
Amith Yamasani4b2e9342011-03-31 12:38:53 -0700238
Jeff Sharkeyffe0cb42012-11-05 17:24:43 -0800239 private final Handler mHandler;
240
Amith Yamasani4b2e9342011-03-31 12:38:53 -0700241 private final File mUsersDir;
242 private final File mUserListFile;
Dianne Hackborn4428e172012-08-24 17:43:05 -0700243
Svet Ganov9cea80cd2016-02-16 11:47:00 -0800244 private static final IBinder mUserRestriconToken = new Binder();
245
Makoto Onuki068c54a2015-10-13 14:34:03 -0700246 /**
Amith Yamasani12747872015-12-07 14:19:49 -0800247 * User-related information that is used for persisting to flash. Only UserInfo is
248 * directly exposed to other system apps.
Xiaohui Chenb3b92582015-12-07 11:22:13 -0800249 */
Kenny Guy02c89902016-11-15 19:36:38 +0000250 @VisibleForTesting
251 static class UserData {
Amith Yamasani12747872015-12-07 14:19:49 -0800252 // Basic user information and properties
253 UserInfo info;
254 // Account name used when there is a strong association between a user and an account
255 String account;
256 // Account information for seeding into a newly created user. This could also be
257 // used for login validation for an existing user, for updating their credentials.
258 // In the latter case, data may not need to be persisted as it is only valid for the
259 // current login session.
260 String seedAccountName;
261 String seedAccountType;
262 PersistableBundle seedAccountOptions;
263 // Whether to perist the seed account information to be available after a boot
264 boolean persistSeedData;
265
266 void clearSeedAccountData() {
267 seedAccountName = null;
268 seedAccountType = null;
269 seedAccountOptions = null;
270 persistSeedData = false;
271 }
272 }
273
Xiaohui Chenb3b92582015-12-07 11:22:13 -0800274 @GuardedBy("mUsersLock")
Amith Yamasani12747872015-12-07 14:19:49 -0800275 private final SparseArray<UserData> mUsers = new SparseArray<>();
Xiaohui Chenb3b92582015-12-07 11:22:13 -0800276
277 /**
Makoto Onuki068c54a2015-10-13 14:34:03 -0700278 * User restrictions set via UserManager. This doesn't include restrictions set by
Pavel Grafov6a40f092016-10-25 15:46:51 +0100279 * device owner / profile owners. Only non-empty restriction bundles are stored.
Makoto Onuki068c54a2015-10-13 14:34:03 -0700280 *
281 * DO NOT Change existing {@link Bundle} in it. When changing a restriction for a user,
282 * a new {@link Bundle} should always be created and set. This is because a {@link Bundle}
283 * maybe shared between {@link #mBaseUserRestrictions} and
284 * {@link #mCachedEffectiveUserRestrictions}, but they should always updated separately.
285 * (Otherwise we won't be able to detect what restrictions have changed in
Fyodor Kupolov82402752015-10-28 14:54:51 -0700286 * {@link #updateUserRestrictionsInternalLR}.
Makoto Onuki068c54a2015-10-13 14:34:03 -0700287 */
288 @GuardedBy("mRestrictionsLock")
289 private final SparseArray<Bundle> mBaseUserRestrictions = new SparseArray<>();
290
291 /**
292 * Cached user restrictions that are in effect -- i.e. {@link #mBaseUserRestrictions} combined
293 * with device / profile owner restrictions. We'll initialize it lazily; use
294 * {@link #getEffectiveUserRestrictions} to access it.
295 *
296 * DO NOT Change existing {@link Bundle} in it. When changing a restriction for a user,
297 * a new {@link Bundle} should always be created and set. This is because a {@link Bundle}
298 * maybe shared between {@link #mBaseUserRestrictions} and
299 * {@link #mCachedEffectiveUserRestrictions}, but they should always updated separately.
300 * (Otherwise we won't be able to detect what restrictions have changed in
Fyodor Kupolov82402752015-10-28 14:54:51 -0700301 * {@link #updateUserRestrictionsInternalLR}.
Makoto Onuki068c54a2015-10-13 14:34:03 -0700302 */
303 @GuardedBy("mRestrictionsLock")
304 private final SparseArray<Bundle> mCachedEffectiveUserRestrictions = new SparseArray<>();
305
Makoto Onuki4f160732015-10-27 17:15:38 -0700306 /**
Makoto Onuki1a2cd742015-11-16 13:51:27 -0800307 * User restrictions that have already been applied in
308 * {@link #updateUserRestrictionsInternalLR(Bundle, int)}. We use it to detect restrictions
309 * that have changed since the last
310 * {@link #updateUserRestrictionsInternalLR(Bundle, int)} call.
Makoto Onuki4f160732015-10-27 17:15:38 -0700311 */
312 @GuardedBy("mRestrictionsLock")
313 private final SparseArray<Bundle> mAppliedUserRestrictions = new SparseArray<>();
314
Makoto Onuki1a2cd742015-11-16 13:51:27 -0800315 /**
Makoto Onukie7927da2015-11-25 10:05:17 -0800316 * User restrictions set by {@link com.android.server.devicepolicy.DevicePolicyManagerService}
Pavel Grafov6a40f092016-10-25 15:46:51 +0100317 * that should be applied to all users, including guests. Only non-empty restriction bundles are
318 * stored.
Makoto Onuki1a2cd742015-11-16 13:51:27 -0800319 */
320 @GuardedBy("mRestrictionsLock")
Pavel Grafov6a40f092016-10-25 15:46:51 +0100321 private final SparseArray<Bundle> mDevicePolicyGlobalUserRestrictions = new SparseArray<>();
Makoto Onuki1a2cd742015-11-16 13:51:27 -0800322
323 /**
Zoltan Szatmary-Bane7834602016-04-08 18:41:11 +0100324 * Id of the user that set global restrictions.
325 */
326 @GuardedBy("mRestrictionsLock")
Pavel Grafov6a40f092016-10-25 15:46:51 +0100327 private int mDeviceOwnerUserId = UserHandle.USER_NULL;
Zoltan Szatmary-Bane7834602016-04-08 18:41:11 +0100328
329 /**
Makoto Onukie7927da2015-11-25 10:05:17 -0800330 * User restrictions set by {@link com.android.server.devicepolicy.DevicePolicyManagerService}
Pavel Grafov6a40f092016-10-25 15:46:51 +0100331 * for each user. Only non-empty restriction bundles are stored.
Makoto Onuki1a2cd742015-11-16 13:51:27 -0800332 */
333 @GuardedBy("mRestrictionsLock")
334 private final SparseArray<Bundle> mDevicePolicyLocalUserRestrictions = new SparseArray<>();
335
Fyodor Kupolove80085d2015-11-06 18:21:39 -0800336 @GuardedBy("mGuestRestrictions")
Amith Yamasanie4afaa32014-06-30 14:55:07 +0530337 private final Bundle mGuestRestrictions = new Bundle();
Jeff Sharkeyffe0cb42012-11-05 17:24:43 -0800338
339 /**
340 * Set of user IDs being actively removed. Removed IDs linger in this set
341 * for several seconds to work around a VFS caching issue.
Fyodor Kupolov0f4533d2016-05-18 18:43:12 -0700342 * Use {@link #addRemovingUserIdLocked(int)} to add elements to this array
Jeff Sharkeyffe0cb42012-11-05 17:24:43 -0800343 */
Fyodor Kupolov82402752015-10-28 14:54:51 -0700344 @GuardedBy("mUsersLock")
Jeff Sharkeyffe0cb42012-11-05 17:24:43 -0800345 private final SparseBooleanArray mRemovingUserIds = new SparseBooleanArray();
Dianne Hackborn4428e172012-08-24 17:43:05 -0700346
Fyodor Kupolov0f4533d2016-05-18 18:43:12 -0700347 /**
348 * Queue of recently removed userIds. Used for recycling of userIds
349 */
350 @GuardedBy("mUsersLock")
351 private final LinkedList<Integer> mRecentlyRemovedIds = new LinkedList<>();
352
Fyodor Kupolov82402752015-10-28 14:54:51 -0700353 @GuardedBy("mUsersLock")
Amith Yamasani0b285492011-04-14 17:35:23 -0700354 private int[] mUserIds;
Fyodor Kupolove80085d2015-11-06 18:21:39 -0800355 @GuardedBy("mPackagesLock")
Amith Yamasani2a003292012-08-14 18:25:45 -0700356 private int mNextSerialNumber;
Amith Yamasani6f34b412012-10-22 18:19:27 -0700357 private int mUserVersion = 0;
Amith Yamasani0b285492011-04-14 17:35:23 -0700358
Jason Monk62062992014-05-06 09:55:28 -0400359 private IAppOpsService mAppOpsService;
360
Makoto Onuki068c54a2015-10-13 14:34:03 -0700361 private final LocalService mLocalService;
362
Makoto Onukie7927da2015-11-25 10:05:17 -0800363 @GuardedBy("mUsersLock")
364 private boolean mIsDeviceManaged;
365
366 @GuardedBy("mUsersLock")
367 private final SparseBooleanArray mIsUserManaged = new SparseBooleanArray();
368
Makoto Onukid45a4a22015-11-02 17:17:38 -0800369 @GuardedBy("mUserRestrictionsListeners")
370 private final ArrayList<UserRestrictionsListener> mUserRestrictionsListeners =
371 new ArrayList<>();
372
Clara Bayarria1771112015-12-18 16:29:18 +0000373 private final LockPatternUtils mLockPatternUtils;
374
Ricky Waib1dd80b2016-06-07 18:00:55 +0100375 private final String ACTION_DISABLE_QUIET_MODE_AFTER_UNLOCK =
376 "com.android.server.pm.DISABLE_QUIET_MODE_AFTER_UNLOCK";
377
378 private final BroadcastReceiver mDisableQuietModeCallback = new BroadcastReceiver() {
379 @Override
380 public void onReceive(Context context, Intent intent) {
381 if (ACTION_DISABLE_QUIET_MODE_AFTER_UNLOCK.equals(intent.getAction())) {
382 final IntentSender target = intent.getParcelableExtra(Intent.EXTRA_INTENT);
383 final int userHandle = intent.getIntExtra(Intent.EXTRA_USER_ID, 0);
384 setQuietModeEnabled(userHandle, false);
385 if (target != null) {
386 try {
387 mContext.startIntentSender(target, null, 0, 0, 0);
388 } catch (IntentSender.SendIntentException e) {
389 /* ignore */
390 }
391 }
392 }
393 }
394 };
395
Lenka Trochtovaf348e8e2016-01-07 17:20:34 +0100396 /**
397 * Whether all users should be created ephemeral.
398 */
399 @GuardedBy("mUsersLock")
400 private boolean mForceEphemeralUsers;
401
Amith Yamasaniea1b9d72016-05-27 15:57:38 +0000402 @GuardedBy("mUserStates")
403 private final SparseIntArray mUserStates = new SparseIntArray();
Fyodor Kupolov6c915ea2016-05-09 19:10:53 -0700404
Amith Yamasani258848d2012-08-10 17:06:33 -0700405 private static UserManagerService sInstance;
Amith Yamasani258848d2012-08-10 17:06:33 -0700406
Dianne Hackborn4428e172012-08-24 17:43:05 -0700407 public static UserManagerService getInstance() {
408 synchronized (UserManagerService.class) {
409 return sInstance;
Amith Yamasani258848d2012-08-10 17:06:33 -0700410 }
Amith Yamasani258848d2012-08-10 17:06:33 -0700411 }
Amith Yamasani4b2e9342011-03-31 12:38:53 -0700412
Amith Yamasanid04aaa32016-06-13 12:09:36 -0700413 public static class LifeCycle extends SystemService {
414
415 private UserManagerService mUms;
416
417 /**
418 * @param context
419 */
420 public LifeCycle(Context context) {
421 super(context);
422 }
423
424 @Override
425 public void onStart() {
426 mUms = UserManagerService.getInstance();
427 publishBinderService(Context.USER_SERVICE, mUms);
428 }
429
430 @Override
431 public void onBootPhase(int phase) {
432 if (phase == SystemService.PHASE_ACTIVITY_MANAGER_READY) {
433 mUms.cleanupPartialUsers();
434 }
435 }
436 }
437
Fyodor Kupolov0f4533d2016-05-18 18:43:12 -0700438 // TODO b/28848102 Add support for test dependencies injection
Fyodor Kupolove80085d2015-11-06 18:21:39 -0800439 @VisibleForTesting
Fyodor Kupolov0f4533d2016-05-18 18:43:12 -0700440 UserManagerService(Context context) {
Fyodor Kupolov5c0ecfd2017-01-27 11:11:57 -0800441 this(context, null, null, new Object(), context.getCacheDir());
Amith Yamasani4b2e9342011-03-31 12:38:53 -0700442 }
443
Dianne Hackborn4428e172012-08-24 17:43:05 -0700444 /**
445 * Called by package manager to create the service. This is closely
446 * associated with the package manager, and the given lock is the
447 * package manager's own lock.
448 */
Fyodor Kupolov5c0ecfd2017-01-27 11:11:57 -0800449 UserManagerService(Context context, PackageManagerService pm, UserDataPreparer userDataPreparer,
450 Object packagesLock) {
451 this(context, pm, userDataPreparer, packagesLock, Environment.getDataDirectory());
Amith Yamasani4b2e9342011-03-31 12:38:53 -0700452 }
453
Dianne Hackborn4428e172012-08-24 17:43:05 -0700454 private UserManagerService(Context context, PackageManagerService pm,
Fyodor Kupolov5c0ecfd2017-01-27 11:11:57 -0800455 UserDataPreparer userDataPreparer, Object packagesLock, File dataDir) {
Dianne Hackbornd4ac8d72012-09-27 23:20:10 -0700456 mContext = context;
457 mPm = pm;
Dianne Hackbornd4ac8d72012-09-27 23:20:10 -0700458 mPackagesLock = packagesLock;
Fyodor Kupolov75d0ea82014-12-15 16:21:07 -0800459 mHandler = new MainHandler();
Fyodor Kupolov5c0ecfd2017-01-27 11:11:57 -0800460 mUserDataPreparer = userDataPreparer;
Fyodor Kupolove80085d2015-11-06 18:21:39 -0800461 synchronized (mPackagesLock) {
462 mUsersDir = new File(dataDir, USER_INFO_DIR);
463 mUsersDir.mkdirs();
464 // Make zeroth user directory, for services to migrate their files to that location
465 File userZeroDir = new File(mUsersDir, String.valueOf(UserHandle.USER_SYSTEM));
466 userZeroDir.mkdirs();
467 FileUtils.setPermissions(mUsersDir.toString(),
468 FileUtils.S_IRWXU | FileUtils.S_IRWXG | FileUtils.S_IROTH | FileUtils.S_IXOTH,
469 -1, -1);
470 mUserListFile = new File(mUsersDir, USER_LIST_FILENAME);
471 initDefaultGuestRestrictions();
472 readUserListLP();
473 sInstance = this;
Xiaohui Chen4be96e42015-05-06 09:55:43 -0700474 }
Makoto Onuki068c54a2015-10-13 14:34:03 -0700475 mLocalService = new LocalService();
476 LocalServices.addService(UserManagerInternal.class, mLocalService);
Clara Bayarria1771112015-12-18 16:29:18 +0000477 mLockPatternUtils = new LockPatternUtils(mContext);
Amith Yamasaniea1b9d72016-05-27 15:57:38 +0000478 mUserStates.put(UserHandle.USER_SYSTEM, UserState.STATE_BOOTING);
Xiaohui Chen4be96e42015-05-06 09:55:43 -0700479 }
480
481 void systemReady() {
Jason Monk62062992014-05-06 09:55:28 -0400482 mAppOpsService = IAppOpsService.Stub.asInterface(
483 ServiceManager.getService(Context.APP_OPS_SERVICE));
Makoto Onuki1a2cd742015-11-16 13:51:27 -0800484
485 synchronized (mRestrictionsLock) {
486 applyUserRestrictionsLR(UserHandle.USER_SYSTEM);
Jason Monk62062992014-05-06 09:55:28 -0400487 }
Samuel Tand9453b82016-03-14 15:57:02 -0700488
489 UserInfo currentGuestUser = findCurrentGuestUser();
490 if (currentGuestUser != null && !hasUserRestriction(
491 UserManager.DISALLOW_CONFIG_WIFI, currentGuestUser.id)) {
492 // If a guest user currently exists, apply the DISALLOW_CONFIG_WIFI option
493 // to it, in case this guest was created in a previous version where this
494 // user restriction was not a default guest restriction.
495 setUserRestriction(UserManager.DISALLOW_CONFIG_WIFI, true, currentGuestUser.id);
496 }
Amith Yamasanieb437d42016-04-29 09:31:25 -0700497
Ricky Waib1dd80b2016-06-07 18:00:55 +0100498 mContext.registerReceiver(mDisableQuietModeCallback,
499 new IntentFilter(ACTION_DISABLE_QUIET_MODE_AFTER_UNLOCK),
500 null, mHandler);
Amith Yamasani258848d2012-08-10 17:06:33 -0700501 }
502
Amith Yamasanid04aaa32016-06-13 12:09:36 -0700503 void cleanupPartialUsers() {
504 // Prune out any partially created, partially removed and ephemeral users.
505 ArrayList<UserInfo> partials = new ArrayList<>();
506 synchronized (mUsersLock) {
507 final int userSize = mUsers.size();
508 for (int i = 0; i < userSize; i++) {
509 UserInfo ui = mUsers.valueAt(i).info;
510 if ((ui.partial || ui.guestToRemove || ui.isEphemeral()) && i != 0) {
511 partials.add(ui);
Fyodor Kupolov0f4533d2016-05-18 18:43:12 -0700512 addRemovingUserIdLocked(ui.id);
Amith Yamasaniae261892016-06-27 10:40:09 -0700513 ui.partial = true;
Amith Yamasanid04aaa32016-06-13 12:09:36 -0700514 }
515 }
516 }
517 final int partialsSize = partials.size();
518 for (int i = 0; i < partialsSize; i++) {
519 UserInfo ui = partials.get(i);
520 Slog.w(LOG_TAG, "Removing partially created user " + ui.id
521 + " (name=" + ui.name + ")");
522 removeUserState(ui.id);
523 }
524 }
525
Amith Yamasani258848d2012-08-10 17:06:33 -0700526 @Override
Xiaohui Chenb3b92582015-12-07 11:22:13 -0800527 public String getUserAccount(int userId) {
528 checkManageUserAndAcrossUsersFullPermission("get user account");
529 synchronized (mUsersLock) {
Amith Yamasani12747872015-12-07 14:19:49 -0800530 return mUsers.get(userId).account;
Xiaohui Chenb3b92582015-12-07 11:22:13 -0800531 }
532 }
533
534 @Override
535 public void setUserAccount(int userId, String accountName) {
536 checkManageUserAndAcrossUsersFullPermission("set user account");
Amith Yamasani12747872015-12-07 14:19:49 -0800537 UserData userToUpdate = null;
Xiaohui Chenb3b92582015-12-07 11:22:13 -0800538 synchronized (mPackagesLock) {
539 synchronized (mUsersLock) {
Amith Yamasani12747872015-12-07 14:19:49 -0800540 final UserData userData = mUsers.get(userId);
541 if (userData == null) {
542 Slog.e(LOG_TAG, "User not found for setting user account: u" + userId);
543 return;
544 }
545 String currentAccount = userData.account;
Xiaohui Chenb3b92582015-12-07 11:22:13 -0800546 if (!Objects.equal(currentAccount, accountName)) {
Amith Yamasani12747872015-12-07 14:19:49 -0800547 userData.account = accountName;
548 userToUpdate = userData;
Xiaohui Chenb3b92582015-12-07 11:22:13 -0800549 }
550 }
551
552 if (userToUpdate != null) {
553 writeUserLP(userToUpdate);
554 }
555 }
556 }
557
558 @Override
Xiaohui Chen70f6c382015-04-28 14:21:43 -0700559 public UserInfo getPrimaryUser() {
560 checkManageUsersPermission("query users");
Fyodor Kupolov82402752015-10-28 14:54:51 -0700561 synchronized (mUsersLock) {
Amith Yamasani515d4062015-09-28 11:30:06 -0700562 final int userSize = mUsers.size();
563 for (int i = 0; i < userSize; i++) {
Amith Yamasani12747872015-12-07 14:19:49 -0800564 UserInfo ui = mUsers.valueAt(i).info;
Xiaohui Chend3e9e182015-11-18 13:37:32 -0800565 if (ui.isPrimary() && !mRemovingUserIds.get(ui.id)) {
Xiaohui Chen70f6c382015-04-28 14:21:43 -0700566 return ui;
567 }
568 }
569 }
570 return null;
571 }
572
573 @Override
Xiaohui Chen594f2082015-08-18 11:04:20 -0700574 public @NonNull List<UserInfo> getUsers(boolean excludeDying) {
Sudheer Shankaf5cea032016-06-08 17:13:24 -0700575 checkManageOrCreateUsersPermission("query users");
Fyodor Kupolov82402752015-10-28 14:54:51 -0700576 synchronized (mUsersLock) {
Amith Yamasani13593602012-03-22 16:16:17 -0700577 ArrayList<UserInfo> users = new ArrayList<UserInfo>(mUsers.size());
Amith Yamasani515d4062015-09-28 11:30:06 -0700578 final int userSize = mUsers.size();
579 for (int i = 0; i < userSize; i++) {
Amith Yamasani12747872015-12-07 14:19:49 -0800580 UserInfo ui = mUsers.valueAt(i).info;
Dianne Hackbornd4ac8d72012-09-27 23:20:10 -0700581 if (ui.partial) {
582 continue;
583 }
Jeff Sharkeyffe0cb42012-11-05 17:24:43 -0800584 if (!excludeDying || !mRemovingUserIds.get(ui.id)) {
Amith Yamasani6f48d6e2016-03-23 14:28:25 -0700585 users.add(userWithName(ui));
Amith Yamasani920ace02012-09-20 22:15:37 -0700586 }
Amith Yamasani13593602012-03-22 16:16:17 -0700587 }
588 return users;
Amith Yamasani4b2e9342011-03-31 12:38:53 -0700589 }
Amith Yamasani13593602012-03-22 16:16:17 -0700590 }
591
Amith Yamasani258848d2012-08-10 17:06:33 -0700592 @Override
Alexandra Gherghina385124d2014-04-03 13:37:39 +0100593 public List<UserInfo> getProfiles(int userId, boolean enabledOnly) {
Fyodor Kupolovc533b562016-04-01 14:37:07 -0700594 boolean returnFullInfo = true;
Amith Yamasani4f582632014-02-19 14:31:52 -0800595 if (userId != UserHandle.getCallingUserId()) {
Sudheer Shanka74680912016-07-29 11:03:37 -0700596 checkManageOrCreateUsersPermission("getting profiles related to user " + userId);
Fyodor Kupolovc533b562016-04-01 14:37:07 -0700597 } else {
598 returnFullInfo = hasManageUsersPermission();
Amith Yamasani4f582632014-02-19 14:31:52 -0800599 }
Amith Yamasanibe465322014-04-24 13:45:17 -0700600 final long ident = Binder.clearCallingIdentity();
601 try {
Fyodor Kupolov82402752015-10-28 14:54:51 -0700602 synchronized (mUsersLock) {
Fyodor Kupolovc533b562016-04-01 14:37:07 -0700603 return getProfilesLU(userId, enabledOnly, returnFullInfo);
Alexandra Gherghina385124d2014-04-03 13:37:39 +0100604 }
Amith Yamasanibe465322014-04-24 13:45:17 -0700605 } finally {
606 Binder.restoreCallingIdentity(ident);
Kenny Guya52dc3e2014-02-11 15:33:14 +0000607 }
608 }
609
Fyodor Kupolov7f98aa42016-04-07 14:56:25 -0700610 @Override
611 public int[] getProfileIds(int userId, boolean enabledOnly) {
612 if (userId != UserHandle.getCallingUserId()) {
bohu12d23a12016-09-26 16:20:07 -0700613 checkManageOrCreateUsersPermission("getting profiles related to user " + userId);
Fyodor Kupolov7f98aa42016-04-07 14:56:25 -0700614 }
615 final long ident = Binder.clearCallingIdentity();
616 try {
617 synchronized (mUsersLock) {
618 return getProfileIdsLU(userId, enabledOnly).toArray();
619 }
620 } finally {
621 Binder.restoreCallingIdentity(ident);
622 }
623 }
624
Amith Yamasanibe465322014-04-24 13:45:17 -0700625 /** Assume permissions already checked and caller's identity cleared */
Fyodor Kupolovc533b562016-04-01 14:37:07 -0700626 private List<UserInfo> getProfilesLU(int userId, boolean enabledOnly, boolean fullInfo) {
Fyodor Kupolov7f98aa42016-04-07 14:56:25 -0700627 IntArray profileIds = getProfileIdsLU(userId, enabledOnly);
628 ArrayList<UserInfo> users = new ArrayList<>(profileIds.size());
629 for (int i = 0; i < profileIds.size(); i++) {
630 int profileId = profileIds.get(i);
631 UserInfo userInfo = mUsers.get(profileId).info;
632 // If full info is not required - clear PII data to prevent 3P apps from reading it
633 if (!fullInfo) {
634 userInfo = new UserInfo(userInfo);
635 userInfo.name = null;
636 userInfo.iconPath = null;
637 } else {
638 userInfo = userWithName(userInfo);
639 }
640 users.add(userInfo);
641 }
642 return users;
643 }
644
645 /**
646 * Assume permissions already checked and caller's identity cleared
647 */
648 private IntArray getProfileIdsLU(int userId, boolean enabledOnly) {
Fyodor Kupolov82402752015-10-28 14:54:51 -0700649 UserInfo user = getUserInfoLU(userId);
Fyodor Kupolov7f98aa42016-04-07 14:56:25 -0700650 IntArray result = new IntArray(mUsers.size());
Amith Yamasanidda003f2014-08-28 18:06:51 -0700651 if (user == null) {
652 // Probably a dying user
Fyodor Kupolov7f98aa42016-04-07 14:56:25 -0700653 return result;
Amith Yamasanidda003f2014-08-28 18:06:51 -0700654 }
Amith Yamasani515d4062015-09-28 11:30:06 -0700655 final int userSize = mUsers.size();
656 for (int i = 0; i < userSize; i++) {
Amith Yamasani12747872015-12-07 14:19:49 -0800657 UserInfo profile = mUsers.valueAt(i).info;
Amith Yamasanibe465322014-04-24 13:45:17 -0700658 if (!isProfileOf(user, profile)) {
659 continue;
660 }
Alexandra Gherghinadf35d572014-04-09 13:54:39 +0100661 if (enabledOnly && !profile.isEnabled()) {
662 continue;
Amith Yamasanibe465322014-04-24 13:45:17 -0700663 }
Amith Yamasani70fcf0c2014-07-11 08:40:19 -0700664 if (mRemovingUserIds.get(profile.id)) {
665 continue;
666 }
Tony Mak80189cd2016-04-05 17:21:42 +0100667 if (profile.partial) {
668 continue;
669 }
Fyodor Kupolov7f98aa42016-04-07 14:56:25 -0700670 result.add(profile.id);
Amith Yamasanibe465322014-04-24 13:45:17 -0700671 }
Fyodor Kupolov7f98aa42016-04-07 14:56:25 -0700672 return result;
Amith Yamasanibe465322014-04-24 13:45:17 -0700673 }
674
Jessica Hummelbe81c802014-04-22 15:49:22 +0100675 @Override
Andres Moralesc5548c02015-08-05 10:23:12 -0700676 public int getCredentialOwnerProfile(int userHandle) {
677 checkManageUsersPermission("get the credential owner");
Clara Bayarria1771112015-12-18 16:29:18 +0000678 if (!mLockPatternUtils.isSeparateProfileChallengeEnabled(userHandle)) {
Fyodor Kupolov82402752015-10-28 14:54:51 -0700679 synchronized (mUsersLock) {
680 UserInfo profileParent = getProfileParentLU(userHandle);
Andres Moralesc5548c02015-08-05 10:23:12 -0700681 if (profileParent != null) {
682 return profileParent.id;
683 }
684 }
685 }
686
687 return userHandle;
688 }
689
690 @Override
Xiaohui Chenfd5b7742015-10-14 15:47:04 -0700691 public boolean isSameProfileGroup(int userId, int otherUserId) {
692 if (userId == otherUserId) return true;
693 checkManageUsersPermission("check if in the same profile group");
Fyodor Kupolov0fb772e2016-10-13 16:27:34 -0700694 return isSameProfileGroupNoChecks(userId, otherUserId);
695 }
696
697 private boolean isSameProfileGroupNoChecks(int userId, int otherUserId) {
Fyodor Kupolov82402752015-10-28 14:54:51 -0700698 synchronized (mUsersLock) {
699 UserInfo userInfo = getUserInfoLU(userId);
700 if (userInfo == null || userInfo.profileGroupId == UserInfo.NO_PROFILE_GROUP_ID) {
701 return false;
702 }
703 UserInfo otherUserInfo = getUserInfoLU(otherUserId);
704 if (otherUserInfo == null
705 || otherUserInfo.profileGroupId == UserInfo.NO_PROFILE_GROUP_ID) {
706 return false;
707 }
708 return userInfo.profileGroupId == otherUserInfo.profileGroupId;
Xiaohui Chenfd5b7742015-10-14 15:47:04 -0700709 }
Xiaohui Chenfd5b7742015-10-14 15:47:04 -0700710 }
711
712 @Override
Jessica Hummelbe81c802014-04-22 15:49:22 +0100713 public UserInfo getProfileParent(int userHandle) {
714 checkManageUsersPermission("get the profile parent");
Fyodor Kupolov82402752015-10-28 14:54:51 -0700715 synchronized (mUsersLock) {
716 return getProfileParentLU(userHandle);
Fyodor Kupolovff7233e2015-04-08 11:28:52 -0700717 }
718 }
719
Fyodor Kupolov82402752015-10-28 14:54:51 -0700720 private UserInfo getProfileParentLU(int userHandle) {
721 UserInfo profile = getUserInfoLU(userHandle);
Fyodor Kupolovff7233e2015-04-08 11:28:52 -0700722 if (profile == null) {
723 return null;
724 }
725 int parentUserId = profile.profileGroupId;
Amith Yamasani801e3422017-01-25 11:35:44 -0800726 if (parentUserId == userHandle || parentUserId == UserInfo.NO_PROFILE_GROUP_ID) {
Fyodor Kupolovff7233e2015-04-08 11:28:52 -0700727 return null;
728 } else {
Fyodor Kupolov82402752015-10-28 14:54:51 -0700729 return getUserInfoLU(parentUserId);
Jessica Hummelbe81c802014-04-22 15:49:22 +0100730 }
731 }
732
Fyodor Kupolov82402752015-10-28 14:54:51 -0700733 private static boolean isProfileOf(UserInfo user, UserInfo profile) {
Kenny Guy2a764942014-04-02 13:29:20 +0100734 return user.id == profile.id ||
735 (user.profileGroupId != UserInfo.NO_PROFILE_GROUP_ID
736 && user.profileGroupId == profile.profileGroupId);
Kenny Guya52dc3e2014-02-11 15:33:14 +0000737 }
738
Rubin Xu0a29ecd2015-11-04 15:11:48 +0000739 private void broadcastProfileAvailabilityChanges(UserHandle profileHandle,
Rubin Xuf13c9802016-01-21 18:06:00 +0000740 UserHandle parentHandle, boolean inQuietMode) {
Rubin Xue95057a2016-04-01 16:49:25 +0100741 Intent intent = new Intent();
742 if (inQuietMode) {
743 intent.setAction(Intent.ACTION_MANAGED_PROFILE_UNAVAILABLE);
744 } else {
745 intent.setAction(Intent.ACTION_MANAGED_PROFILE_AVAILABLE);
746 }
Rubin Xuf13c9802016-01-21 18:06:00 +0000747 intent.putExtra(Intent.EXTRA_QUIET_MODE, inQuietMode);
748 intent.putExtra(Intent.EXTRA_USER, profileHandle);
749 intent.putExtra(Intent.EXTRA_USER_HANDLE, profileHandle.getIdentifier());
Rubin Xu0a29ecd2015-11-04 15:11:48 +0000750 intent.addFlags(Intent.FLAG_RECEIVER_REGISTERED_ONLY);
Rubin Xuf13c9802016-01-21 18:06:00 +0000751 mContext.sendBroadcastAsUser(intent, parentHandle);
Rubin Xu0a29ecd2015-11-04 15:11:48 +0000752 }
753
754 @Override
755 public void setQuietModeEnabled(int userHandle, boolean enableQuietMode) {
756 checkManageUsersPermission("silence profile");
757 boolean changed = false;
758 UserInfo profile, parent;
759 synchronized (mPackagesLock) {
760 synchronized (mUsersLock) {
761 profile = getUserInfoLU(userHandle);
762 parent = getProfileParentLU(userHandle);
763
764 }
765 if (profile == null || !profile.isManagedProfile()) {
766 throw new IllegalArgumentException("User " + userHandle + " is not a profile");
767 }
768 if (profile.isQuietModeEnabled() != enableQuietMode) {
769 profile.flags ^= UserInfo.FLAG_QUIET_MODE;
Amith Yamasani12747872015-12-07 14:19:49 -0800770 writeUserLP(getUserDataLU(profile.id));
Rubin Xu0a29ecd2015-11-04 15:11:48 +0000771 changed = true;
772 }
773 }
774 if (changed) {
Rubin Xuf13c9802016-01-21 18:06:00 +0000775 long identity = Binder.clearCallingIdentity();
776 try {
777 if (enableQuietMode) {
Sudheer Shankadc589ac2016-11-10 15:30:17 -0800778 ActivityManager.getService().stopUser(userHandle, /* force */true, null);
Rubin Xuf8451b92016-04-01 15:50:58 +0100779 LocalServices.getService(ActivityManagerInternal.class)
780 .killForegroundAppsForUser(userHandle);
Rubin Xuf13c9802016-01-21 18:06:00 +0000781 } else {
Sudheer Shankadc589ac2016-11-10 15:30:17 -0800782 ActivityManager.getService().startUserInBackground(userHandle);
Rubin Xuf13c9802016-01-21 18:06:00 +0000783 }
784 } catch (RemoteException e) {
785 Slog.e(LOG_TAG, "fail to start/stop user for quiet mode", e);
786 } finally {
787 Binder.restoreCallingIdentity(identity);
788 }
789
790 broadcastProfileAvailabilityChanges(profile.getUserHandle(), parent.getUserHandle(),
791 enableQuietMode);
Rubin Xu0a29ecd2015-11-04 15:11:48 +0000792 }
793 }
794
795 @Override
796 public boolean isQuietModeEnabled(int userHandle) {
797 synchronized (mPackagesLock) {
798 UserInfo info;
799 synchronized (mUsersLock) {
800 info = getUserInfoLU(userHandle);
801 }
802 if (info == null || !info.isManagedProfile()) {
Rubin Xuf13c9802016-01-21 18:06:00 +0000803 return false;
Rubin Xu0a29ecd2015-11-04 15:11:48 +0000804 }
805 return info.isQuietModeEnabled();
806 }
807 }
808
Kenny Guya52dc3e2014-02-11 15:33:14 +0000809 @Override
Benjamin Franzf02420c2016-04-04 18:52:21 +0100810 public boolean trySetQuietModeDisabled(int userHandle, IntentSender target) {
Ricky Waib1dd80b2016-06-07 18:00:55 +0100811 checkManageUsersPermission("silence profile");
Jeff Sharkeyce18c812016-04-27 16:00:41 -0600812 if (StorageManager.isUserKeyUnlocked(userHandle)
Ricky Wai9cc7ad62016-05-11 18:00:20 +0100813 || !mLockPatternUtils.isSecure(userHandle)) {
Benjamin Franzf02420c2016-04-04 18:52:21 +0100814 // if the user is already unlocked, no need to show a profile challenge
815 setQuietModeEnabled(userHandle, false);
816 return true;
817 }
818
819 long identity = Binder.clearCallingIdentity();
820 try {
821 // otherwise, we show a profile challenge to trigger decryption of the user
822 final KeyguardManager km = (KeyguardManager) mContext.getSystemService(
823 Context.KEYGUARD_SERVICE);
Ricky Wai7881cf82016-04-15 17:20:12 +0100824 // We should use userHandle not credentialOwnerUserId here, as even if it is unified
825 // lock, confirm screenlock page will know and show personal challenge, and unlock
826 // work profile when personal challenge is correct
Benjamin Franzf02420c2016-04-04 18:52:21 +0100827 final Intent unlockIntent = km.createConfirmDeviceCredentialIntent(null, null,
828 userHandle);
829 if (unlockIntent == null) {
830 return false;
831 }
Ricky Waib1dd80b2016-06-07 18:00:55 +0100832 final Intent callBackIntent = new Intent(
833 ACTION_DISABLE_QUIET_MODE_AFTER_UNLOCK);
Benjamin Franzf02420c2016-04-04 18:52:21 +0100834 if (target != null) {
Ricky Waib1dd80b2016-06-07 18:00:55 +0100835 callBackIntent.putExtra(Intent.EXTRA_INTENT, target);
Benjamin Franzf02420c2016-04-04 18:52:21 +0100836 }
Ricky Waib1dd80b2016-06-07 18:00:55 +0100837 callBackIntent.putExtra(Intent.EXTRA_USER_ID, userHandle);
838 callBackIntent.setPackage(mContext.getPackageName());
839 callBackIntent.addFlags(Intent.FLAG_RECEIVER_FOREGROUND);
840 final PendingIntent pendingIntent = PendingIntent.getBroadcast(
841 mContext,
842 0,
843 callBackIntent,
844 PendingIntent.FLAG_CANCEL_CURRENT |
845 PendingIntent.FLAG_ONE_SHOT |
846 PendingIntent.FLAG_IMMUTABLE);
847 // After unlocking the challenge, it will disable quiet mode and run the original
848 // intentSender
849 unlockIntent.putExtra(Intent.EXTRA_INTENT, pendingIntent.getIntentSender());
Benjamin Franzf02420c2016-04-04 18:52:21 +0100850 unlockIntent.setFlags(FLAG_ACTIVITY_NEW_TASK | FLAG_ACTIVITY_EXCLUDE_FROM_RECENTS);
851 mContext.startActivity(unlockIntent);
852 } finally {
853 Binder.restoreCallingIdentity(identity);
854 }
855 return false;
856 }
857
858 @Override
Alexandra Gherghinadf35d572014-04-09 13:54:39 +0100859 public void setUserEnabled(int userId) {
860 checkManageUsersPermission("enable user");
861 synchronized (mPackagesLock) {
Fyodor Kupolov82402752015-10-28 14:54:51 -0700862 UserInfo info;
863 synchronized (mUsersLock) {
864 info = getUserInfoLU(userId);
865 }
Alexandra Gherghinadf35d572014-04-09 13:54:39 +0100866 if (info != null && !info.isEnabled()) {
867 info.flags ^= UserInfo.FLAG_DISABLED;
Amith Yamasani12747872015-12-07 14:19:49 -0800868 writeUserLP(getUserDataLU(info.id));
Alexandra Gherghinadf35d572014-04-09 13:54:39 +0100869 }
870 }
871 }
872
Andrew Scull85a63bc2016-10-24 13:47:47 +0100873 /**
874 * Evicts a user's CE key by stopping and restarting the user.
875 *
876 * The key is evicted automatically by the user controller when the user has stopped.
877 */
878 @Override
879 public void evictCredentialEncryptionKey(@UserIdInt int userId) {
880 checkManageUsersPermission("evict CE key");
881 final IActivityManager am = ActivityManagerNative.getDefault();
882 final long identity = Binder.clearCallingIdentity();
883 try {
884 am.restartUserInBackground(userId);
885 } catch (RemoteException re) {
886 throw re.rethrowAsRuntimeException();
887 } finally {
888 Binder.restoreCallingIdentity(identity);
889 }
890 }
891
Alexandra Gherghinadf35d572014-04-09 13:54:39 +0100892 @Override
Amith Yamasani258848d2012-08-10 17:06:33 -0700893 public UserInfo getUserInfo(int userId) {
Sudheer Shankaaccaa082016-06-14 16:22:57 -0700894 checkManageOrCreateUsersPermission("query user");
Tony Mak8673b282016-03-21 21:10:59 +0000895 synchronized (mUsersLock) {
Amith Yamasani6f48d6e2016-03-23 14:28:25 -0700896 return userWithName(getUserInfoLU(userId));
897 }
898 }
899
900 /**
901 * Returns a UserInfo object with the name filled in, for Owner, or the original
902 * if the name is already set.
903 */
904 private UserInfo userWithName(UserInfo orig) {
905 if (orig != null && orig.name == null && orig.id == UserHandle.USER_SYSTEM) {
906 UserInfo withName = new UserInfo(orig);
907 withName.name = getOwnerName();
908 return withName;
909 } else {
910 return orig;
Tony Mak8673b282016-03-21 21:10:59 +0000911 }
912 }
913
914 @Override
Kenny Guy02c89902016-11-15 19:36:38 +0000915 public int getManagedProfileBadge(@UserIdInt int userId) {
916 int callingUserId = UserHandle.getCallingUserId();
917 if (callingUserId != userId && !hasManageUsersPermission()) {
918 if (!isSameProfileGroupNoChecks(callingUserId, userId)) {
919 throw new SecurityException(
920 "You need MANAGE_USERS permission to: check if specified user a " +
921 "managed profile outside your profile group");
922 }
923 }
924 synchronized (mUsersLock) {
925 UserInfo userInfo = getUserInfoLU(userId);
926 return userInfo != null ? userInfo.profileBadge : 0;
927 }
928 }
929
930 @Override
Tony Mak8673b282016-03-21 21:10:59 +0000931 public boolean isManagedProfile(int userId) {
Tony Makb531d082016-03-16 14:49:52 +0000932 int callingUserId = UserHandle.getCallingUserId();
933 if (callingUserId != userId && !hasManageUsersPermission()) {
Fyodor Kupolov0fb772e2016-10-13 16:27:34 -0700934 if (!isSameProfileGroupNoChecks(callingUserId, userId)) {
Fyodor Kupolovc413f702016-10-06 17:11:14 -0700935 throw new SecurityException(
936 "You need MANAGE_USERS permission to: check if specified user a " +
937 "managed profile outside your profile group");
Tony Makb531d082016-03-16 14:49:52 +0000938 }
Tony Mak4dc008c2016-03-16 10:46:49 +0000939 }
Fyodor Kupolov82402752015-10-28 14:54:51 -0700940 synchronized (mUsersLock) {
Amith Yamasani1c41dc82016-06-28 16:13:15 -0700941 UserInfo userInfo = getUserInfoLU(userId);
Tony Mak8673b282016-03-21 21:10:59 +0000942 return userInfo != null && userInfo.isManagedProfile();
Amith Yamasani13593602012-03-22 16:16:17 -0700943 }
944 }
945
Amith Yamasani71e6c692013-03-24 17:39:28 -0700946 @Override
Fyodor Kupolovc413f702016-10-06 17:11:14 -0700947 public boolean isUserUnlockingOrUnlocked(int userId) {
Fyodor Kupolov2e7e0962016-12-01 18:09:17 -0800948 checkManageOrInteractPermIfCallerInOtherProfileGroup(userId, "isUserUnlockingOrUnlocked");
Fyodor Kupolovc413f702016-10-06 17:11:14 -0700949 return mLocalService.isUserUnlockingOrUnlocked(userId);
950 }
951
952 @Override
Fyodor Kupolov2e7e0962016-12-01 18:09:17 -0800953 public boolean isUserUnlocked(int userId) {
954 checkManageOrInteractPermIfCallerInOtherProfileGroup(userId, "isUserUnlocked");
Fyodor Kupolov0468ee92017-05-25 17:06:17 -0700955 return mLocalService.isUserUnlocked(userId);
Fyodor Kupolov2e7e0962016-12-01 18:09:17 -0800956 }
957
958 @Override
959 public boolean isUserRunning(int userId) {
960 checkManageOrInteractPermIfCallerInOtherProfileGroup(userId, "isUserRunning");
961 return mLocalService.isUserRunning(userId);
962 }
963
964 private void checkManageOrInteractPermIfCallerInOtherProfileGroup(int userId, String name) {
965 int callingUserId = UserHandle.getCallingUserId();
966 if (callingUserId == userId || isSameProfileGroupNoChecks(callingUserId, userId) ||
967 hasManageUsersPermission()) {
968 return;
969 }
970 if (ActivityManager.checkComponentPermission(Manifest.permission.INTERACT_ACROSS_USERS,
971 Binder.getCallingUid(), -1, true) != PackageManager.PERMISSION_GRANTED) {
972 throw new SecurityException("You need INTERACT_ACROSS_USERS or MANAGE_USERS permission "
973 + "to: check " + name);
974 }
975 }
976
977 @Override
Amith Yamasani1c41dc82016-06-28 16:13:15 -0700978 public boolean isDemoUser(int userId) {
979 int callingUserId = UserHandle.getCallingUserId();
980 if (callingUserId != userId && !hasManageUsersPermission()) {
981 throw new SecurityException("You need MANAGE_USERS permission to query if u=" + userId
982 + " is a demo user");
983 }
984 synchronized (mUsersLock) {
985 UserInfo userInfo = getUserInfoLU(userId);
986 return userInfo != null && userInfo.isDemo();
987 }
988 }
989
990 @Override
Amith Yamasani71e6c692013-03-24 17:39:28 -0700991 public boolean isRestricted() {
Fyodor Kupolov82402752015-10-28 14:54:51 -0700992 synchronized (mUsersLock) {
993 return getUserInfoLU(UserHandle.getCallingUserId()).isRestricted();
Amith Yamasani71e6c692013-03-24 17:39:28 -0700994 }
995 }
996
Fyodor Kupolov1c363152015-09-02 13:27:21 -0700997 @Override
998 public boolean canHaveRestrictedProfile(int userId) {
999 checkManageUsersPermission("canHaveRestrictedProfile");
Fyodor Kupolov82402752015-10-28 14:54:51 -07001000 synchronized (mUsersLock) {
1001 final UserInfo userInfo = getUserInfoLU(userId);
Fyodor Kupolov1c363152015-09-02 13:27:21 -07001002 if (userInfo == null || !userInfo.canHaveProfile()) {
1003 return false;
1004 }
1005 if (!userInfo.isAdmin()) {
1006 return false;
1007 }
Makoto Onukie7927da2015-11-25 10:05:17 -08001008 // restricted profile can be created if there is no DO set and the admin user has no PO;
1009 return !mIsDeviceManaged && !mIsUserManaged.get(userId);
Fyodor Kupolov1c363152015-09-02 13:27:21 -07001010 }
Fyodor Kupolov1c363152015-09-02 13:27:21 -07001011 }
1012
Fyodor Kupolovca177562017-11-09 17:43:01 -08001013 @Override
1014 public boolean hasRestrictedProfiles() {
1015 checkManageUsersPermission("hasRestrictedProfiles");
1016 final int callingUserId = UserHandle.getCallingUserId();
1017 synchronized (mUsersLock) {
1018 final int userSize = mUsers.size();
1019 for (int i = 0; i < userSize; i++) {
1020 UserInfo profile = mUsers.valueAt(i).info;
1021 if (callingUserId != profile.id
1022 && profile.restrictedProfileParentId == callingUserId) {
1023 return true;
1024 }
1025 }
1026 return false;
1027 }
1028 }
1029
Amith Yamasani195263742012-08-21 15:40:12 -07001030 /*
1031 * Should be locked on mUsers before calling this.
1032 */
Fyodor Kupolov82402752015-10-28 14:54:51 -07001033 private UserInfo getUserInfoLU(int userId) {
Amith Yamasani12747872015-12-07 14:19:49 -08001034 final UserData userData = mUsers.get(userId);
Amith Yamasani16389312012-10-17 21:20:14 -07001035 // If it is partial and not in the process of being removed, return as unknown user.
Amith Yamasani12747872015-12-07 14:19:49 -08001036 if (userData != null && userData.info.partial && !mRemovingUserIds.get(userId)) {
Dianne Hackbornd4ac8d72012-09-27 23:20:10 -07001037 Slog.w(LOG_TAG, "getUserInfo: unknown user #" + userId);
1038 return null;
1039 }
Amith Yamasani12747872015-12-07 14:19:49 -08001040 return userData != null ? userData.info : null;
1041 }
1042
1043 private UserData getUserDataLU(int userId) {
1044 final UserData userData = mUsers.get(userId);
1045 // If it is partial and not in the process of being removed, return as unknown user.
1046 if (userData != null && userData.info.partial && !mRemovingUserIds.get(userId)) {
1047 return null;
1048 }
1049 return userData;
Amith Yamasani195263742012-08-21 15:40:12 -07001050 }
1051
Fyodor Kupolov82402752015-10-28 14:54:51 -07001052 /**
1053 * Obtains {@link #mUsersLock} and return UserInfo from mUsers.
1054 * <p>No permissions checking or any addition checks are made</p>
1055 */
1056 private UserInfo getUserInfoNoChecks(int userId) {
1057 synchronized (mUsersLock) {
Amith Yamasani12747872015-12-07 14:19:49 -08001058 final UserData userData = mUsers.get(userId);
1059 return userData != null ? userData.info : null;
1060 }
1061 }
1062
1063 /**
1064 * Obtains {@link #mUsersLock} and return UserData from mUsers.
1065 * <p>No permissions checking or any addition checks are made</p>
1066 */
1067 private UserData getUserDataNoChecks(int userId) {
1068 synchronized (mUsersLock) {
Fyodor Kupolov82402752015-10-28 14:54:51 -07001069 return mUsers.get(userId);
1070 }
1071 }
1072
Amith Yamasani236b2b52015-08-18 14:32:14 -07001073 /** Called by PackageManagerService */
Amith Yamasani13593602012-03-22 16:16:17 -07001074 public boolean exists(int userId) {
Todd Kennedy0eb97382017-10-03 16:57:22 -07001075 return mLocalService.exists(userId);
Amith Yamasani13593602012-03-22 16:16:17 -07001076 }
1077
Amith Yamasani258848d2012-08-10 17:06:33 -07001078 @Override
Amith Yamasanib8151ec2012-04-18 18:02:48 -07001079 public void setUserName(int userId, String name) {
Amith Yamasani2a003292012-08-14 18:25:45 -07001080 checkManageUsersPermission("rename users");
Dianne Hackbornd4ac8d72012-09-27 23:20:10 -07001081 boolean changed = false;
Dianne Hackborn4428e172012-08-24 17:43:05 -07001082 synchronized (mPackagesLock) {
Amith Yamasani12747872015-12-07 14:19:49 -08001083 UserData userData = getUserDataNoChecks(userId);
1084 if (userData == null || userData.info.partial) {
Dianne Hackbornd4ac8d72012-09-27 23:20:10 -07001085 Slog.w(LOG_TAG, "setUserName: unknown user #" + userId);
1086 return;
1087 }
Amith Yamasani12747872015-12-07 14:19:49 -08001088 if (name != null && !name.equals(userData.info.name)) {
1089 userData.info.name = name;
1090 writeUserLP(userData);
Dianne Hackbornd4ac8d72012-09-27 23:20:10 -07001091 changed = true;
Amith Yamasani13593602012-03-22 16:16:17 -07001092 }
1093 }
Dianne Hackbornd4ac8d72012-09-27 23:20:10 -07001094 if (changed) {
1095 sendUserInfoChangedBroadcast(userId);
1096 }
Amith Yamasani4b2e9342011-03-31 12:38:53 -07001097 }
1098
Amith Yamasani258848d2012-08-10 17:06:33 -07001099 @Override
Amith Yamasanie928d7d2012-09-17 21:46:51 -07001100 public void setUserIcon(int userId, Bitmap bitmap) {
Amith Yamasani2a003292012-08-14 18:25:45 -07001101 checkManageUsersPermission("update users");
Oleksandr Peletskyi7f1f1df2016-01-18 15:40:21 +01001102 if (hasUserRestriction(UserManager.DISALLOW_SET_USER_ICON, userId)) {
1103 Log.w(LOG_TAG, "Cannot set user icon. DISALLOW_SET_USER_ICON is enabled.");
1104 return;
Amith Yamasanib8151ec2012-04-18 18:02:48 -07001105 }
Oleksandr Peletskyi7f1f1df2016-01-18 15:40:21 +01001106 mLocalService.setUserIcon(userId, bitmap);
Amith Yamasanie928d7d2012-09-17 21:46:51 -07001107 }
1108
Oleksandr Peletskyi7f1f1df2016-01-18 15:40:21 +01001109
1110
Amith Yamasanie928d7d2012-09-17 21:46:51 -07001111 private void sendUserInfoChangedBroadcast(int userId) {
1112 Intent changedIntent = new Intent(Intent.ACTION_USER_INFO_CHANGED);
1113 changedIntent.putExtra(Intent.EXTRA_USER_HANDLE, userId);
1114 changedIntent.addFlags(Intent.FLAG_RECEIVER_REGISTERED_ONLY);
Amith Yamasani6fc1d4e2013-05-08 16:43:58 -07001115 mContext.sendBroadcastAsUser(changedIntent, UserHandle.ALL);
Amith Yamasanib8151ec2012-04-18 18:02:48 -07001116 }
1117
Amith Yamasani258848d2012-08-10 17:06:33 -07001118 @Override
Oleksandr Peletskyicd6fa302016-02-25 16:28:39 +01001119 public ParcelFileDescriptor getUserIcon(int targetUserId) {
Adrian Roos1bdff912015-02-17 15:51:35 +01001120 String iconPath;
Amith Yamasani3b49f072012-09-17 10:21:43 -07001121 synchronized (mPackagesLock) {
Oleksandr Peletskyicd6fa302016-02-25 16:28:39 +01001122 UserInfo targetUserInfo = getUserInfoNoChecks(targetUserId);
1123 if (targetUserInfo == null || targetUserInfo.partial) {
1124 Slog.w(LOG_TAG, "getUserIcon: unknown user #" + targetUserId);
Dianne Hackbornd4ac8d72012-09-27 23:20:10 -07001125 return null;
1126 }
Oleksandr Peletskyicd6fa302016-02-25 16:28:39 +01001127
1128 final int callingUserId = UserHandle.getCallingUserId();
1129 final int callingGroupId = getUserInfoNoChecks(callingUserId).profileGroupId;
1130 final int targetGroupId = targetUserInfo.profileGroupId;
1131 final boolean sameGroup = (callingGroupId != UserInfo.NO_PROFILE_GROUP_ID
1132 && callingGroupId == targetGroupId);
1133 if ((callingUserId != targetUserId) && !sameGroup) {
Nicolas Prevot88cc3462014-05-14 14:51:48 +01001134 checkManageUsersPermission("get the icon of a user who is not related");
1135 }
Oleksandr Peletskyicd6fa302016-02-25 16:28:39 +01001136
1137 if (targetUserInfo.iconPath == null) {
Dianne Hackbornd4ac8d72012-09-27 23:20:10 -07001138 return null;
1139 }
Oleksandr Peletskyicd6fa302016-02-25 16:28:39 +01001140 iconPath = targetUserInfo.iconPath;
Amith Yamasani3b49f072012-09-17 10:21:43 -07001141 }
Adrian Roos1bdff912015-02-17 15:51:35 +01001142
1143 try {
1144 return ParcelFileDescriptor.open(
1145 new File(iconPath), ParcelFileDescriptor.MODE_READ_ONLY);
1146 } catch (FileNotFoundException e) {
1147 Log.e(LOG_TAG, "Couldn't find icon file", e);
1148 }
1149 return null;
Amith Yamasani3b49f072012-09-17 10:21:43 -07001150 }
1151
Dianne Hackborn5dc5a002012-09-15 19:33:48 -07001152 public void makeInitialized(int userId) {
1153 checkManageUsersPermission("makeInitialized");
Fyodor Kupolove80085d2015-11-06 18:21:39 -08001154 boolean scheduleWriteUser = false;
Amith Yamasani12747872015-12-07 14:19:49 -08001155 UserData userData;
Fyodor Kupolove80085d2015-11-06 18:21:39 -08001156 synchronized (mUsersLock) {
Amith Yamasani12747872015-12-07 14:19:49 -08001157 userData = mUsers.get(userId);
1158 if (userData == null || userData.info.partial) {
Dianne Hackbornd4ac8d72012-09-27 23:20:10 -07001159 Slog.w(LOG_TAG, "makeInitialized: unknown user #" + userId);
Fyodor Kupolove80085d2015-11-06 18:21:39 -08001160 return;
Dianne Hackbornd4ac8d72012-09-27 23:20:10 -07001161 }
Amith Yamasani12747872015-12-07 14:19:49 -08001162 if ((userData.info.flags & UserInfo.FLAG_INITIALIZED) == 0) {
1163 userData.info.flags |= UserInfo.FLAG_INITIALIZED;
Fyodor Kupolove80085d2015-11-06 18:21:39 -08001164 scheduleWriteUser = true;
Dianne Hackborn5dc5a002012-09-15 19:33:48 -07001165 }
1166 }
Fyodor Kupolove80085d2015-11-06 18:21:39 -08001167 if (scheduleWriteUser) {
Amith Yamasani12747872015-12-07 14:19:49 -08001168 scheduleWriteUser(userData);
Fyodor Kupolove80085d2015-11-06 18:21:39 -08001169 }
Dianne Hackborn5dc5a002012-09-15 19:33:48 -07001170 }
1171
Amith Yamasaniaa6634e2014-10-06 14:20:28 -07001172 /**
1173 * If default guest restrictions haven't been initialized yet, add the basic
1174 * restrictions.
1175 */
1176 private void initDefaultGuestRestrictions() {
Fyodor Kupolove80085d2015-11-06 18:21:39 -08001177 synchronized (mGuestRestrictions) {
1178 if (mGuestRestrictions.isEmpty()) {
Samuel Tand9453b82016-03-14 15:57:02 -07001179 mGuestRestrictions.putBoolean(UserManager.DISALLOW_CONFIG_WIFI, true);
Fyodor Kupolove04462c2015-11-30 15:02:53 -08001180 mGuestRestrictions.putBoolean(UserManager.DISALLOW_INSTALL_UNKNOWN_SOURCES, true);
Fyodor Kupolove80085d2015-11-06 18:21:39 -08001181 mGuestRestrictions.putBoolean(UserManager.DISALLOW_OUTGOING_CALLS, true);
1182 mGuestRestrictions.putBoolean(UserManager.DISALLOW_SMS, true);
1183 }
Amith Yamasaniaa6634e2014-10-06 14:20:28 -07001184 }
1185 }
1186
Amith Yamasanie4cf7342012-12-17 11:12:09 -08001187 @Override
Amith Yamasanie4afaa32014-06-30 14:55:07 +05301188 public Bundle getDefaultGuestRestrictions() {
1189 checkManageUsersPermission("getDefaultGuestRestrictions");
Fyodor Kupolove80085d2015-11-06 18:21:39 -08001190 synchronized (mGuestRestrictions) {
Amith Yamasanie4afaa32014-06-30 14:55:07 +05301191 return new Bundle(mGuestRestrictions);
1192 }
1193 }
1194
1195 @Override
1196 public void setDefaultGuestRestrictions(Bundle restrictions) {
1197 checkManageUsersPermission("setDefaultGuestRestrictions");
Fyodor Kupolove80085d2015-11-06 18:21:39 -08001198 synchronized (mGuestRestrictions) {
1199 mGuestRestrictions.clear();
1200 mGuestRestrictions.putAll(restrictions);
1201 }
1202 synchronized (mPackagesLock) {
1203 writeUserListLP();
Amith Yamasanie4afaa32014-06-30 14:55:07 +05301204 }
1205 }
1206
Makoto Onuki1a2cd742015-11-16 13:51:27 -08001207 /**
Pavel Grafov6a40f092016-10-25 15:46:51 +01001208 * See {@link UserManagerInternal#setDevicePolicyUserRestrictions}
Makoto Onuki1a2cd742015-11-16 13:51:27 -08001209 */
Pavel Grafov6a40f092016-10-25 15:46:51 +01001210 private void setDevicePolicyUserRestrictionsInner(int userId, @Nullable Bundle restrictions,
1211 boolean isDeviceOwner, int cameraRestrictionScope) {
1212 final Bundle global = new Bundle();
1213 final Bundle local = new Bundle();
1214
1215 // Sort restrictions into local and global ensuring they don't overlap.
1216 UserRestrictionsUtils.sortToGlobalAndLocal(restrictions, isDeviceOwner,
1217 cameraRestrictionScope, global, local);
1218
1219 boolean globalChanged, localChanged;
Makoto Onuki1a2cd742015-11-16 13:51:27 -08001220 synchronized (mRestrictionsLock) {
Pavel Grafov6a40f092016-10-25 15:46:51 +01001221 // Update global and local restrictions if they were changed.
1222 globalChanged = updateRestrictionsIfNeededLR(
1223 userId, global, mDevicePolicyGlobalUserRestrictions);
1224 localChanged = updateRestrictionsIfNeededLR(
1225 userId, local, mDevicePolicyLocalUserRestrictions);
1226
1227 if (isDeviceOwner) {
Zoltan Szatmary-Bane7834602016-04-08 18:41:11 +01001228 // Remember the global restriction owner userId to be able to make a distinction
1229 // in getUserRestrictionSource on who set local policies.
Pavel Grafov6a40f092016-10-25 15:46:51 +01001230 mDeviceOwnerUserId = userId;
Zoltan Szatmary-Bane7834602016-04-08 18:41:11 +01001231 } else {
Pavel Grafov6a40f092016-10-25 15:46:51 +01001232 if (mDeviceOwnerUserId == userId) {
Zoltan Szatmary-Ban8a5536d2016-05-27 17:56:44 +01001233 // When profile owner sets restrictions it passes null global bundle and we
1234 // reset global restriction owner userId.
1235 // This means this user used to have DO, but now the DO is gone and the user
1236 // instead has PO.
Pavel Grafov6a40f092016-10-25 15:46:51 +01001237 mDeviceOwnerUserId = UserHandle.USER_NULL;
Makoto Onuki1a2cd742015-11-16 13:51:27 -08001238 }
1239 }
1240 }
1241 if (DBG) {
1242 Log.d(LOG_TAG, "setDevicePolicyUserRestrictions: userId=" + userId
1243 + " global=" + global + (globalChanged ? " (changed)" : "")
1244 + " local=" + local + (localChanged ? " (changed)" : "")
1245 );
1246 }
1247 // Don't call them within the mRestrictionsLock.
1248 synchronized (mPackagesLock) {
Pavel Grafov6a40f092016-10-25 15:46:51 +01001249 if (localChanged || globalChanged) {
Amith Yamasani12747872015-12-07 14:19:49 -08001250 writeUserLP(getUserDataNoChecks(userId));
Makoto Onuki1a2cd742015-11-16 13:51:27 -08001251 }
1252 }
1253
1254 synchronized (mRestrictionsLock) {
1255 if (globalChanged) {
1256 applyUserRestrictionsForAllUsersLR();
1257 } else if (localChanged) {
1258 applyUserRestrictionsLR(userId);
1259 }
1260 }
1261 }
1262
Pavel Grafov6a40f092016-10-25 15:46:51 +01001263 /**
1264 * Updates restriction bundle for a given user in a given restriction array. If new bundle is
1265 * empty, record is removed from the array.
1266 * @return whether restrictions bundle is different from the old one.
1267 */
1268 private boolean updateRestrictionsIfNeededLR(int userId, @Nullable Bundle restrictions,
1269 SparseArray<Bundle> restrictionsArray) {
1270 final boolean changed =
1271 !UserRestrictionsUtils.areEqual(restrictionsArray.get(userId), restrictions);
1272 if (changed) {
1273 if (!UserRestrictionsUtils.isEmpty(restrictions)) {
1274 restrictionsArray.put(userId, restrictions);
1275 } else {
1276 restrictionsArray.delete(userId);
1277 }
1278 }
1279 return changed;
1280 }
1281
Makoto Onuki068c54a2015-10-13 14:34:03 -07001282 @GuardedBy("mRestrictionsLock")
Fyodor Kupolov82402752015-10-28 14:54:51 -07001283 private Bundle computeEffectiveUserRestrictionsLR(int userId) {
Makoto Onuki1a2cd742015-11-16 13:51:27 -08001284 final Bundle baseRestrictions =
1285 UserRestrictionsUtils.nonNull(mBaseUserRestrictions.get(userId));
Pavel Grafov6a40f092016-10-25 15:46:51 +01001286 final Bundle global = UserRestrictionsUtils.mergeAll(mDevicePolicyGlobalUserRestrictions);
Makoto Onuki1a2cd742015-11-16 13:51:27 -08001287 final Bundle local = mDevicePolicyLocalUserRestrictions.get(userId);
Makoto Onuki068c54a2015-10-13 14:34:03 -07001288
Makoto Onuki1a2cd742015-11-16 13:51:27 -08001289 if (UserRestrictionsUtils.isEmpty(global) && UserRestrictionsUtils.isEmpty(local)) {
1290 // Common case first.
1291 return baseRestrictions;
Makoto Onuki068c54a2015-10-13 14:34:03 -07001292 }
Makoto Onuki1a2cd742015-11-16 13:51:27 -08001293 final Bundle effective = UserRestrictionsUtils.clone(baseRestrictions);
1294 UserRestrictionsUtils.merge(effective, global);
1295 UserRestrictionsUtils.merge(effective, local);
1296
Makoto Onuki068c54a2015-10-13 14:34:03 -07001297 return effective;
1298 }
1299
1300 @GuardedBy("mRestrictionsLock")
Fyodor Kupolov82402752015-10-28 14:54:51 -07001301 private void invalidateEffectiveUserRestrictionsLR(int userId) {
Makoto Onuki068c54a2015-10-13 14:34:03 -07001302 if (DBG) {
1303 Log.d(LOG_TAG, "invalidateEffectiveUserRestrictions userId=" + userId);
1304 }
1305 mCachedEffectiveUserRestrictions.remove(userId);
1306 }
1307
1308 private Bundle getEffectiveUserRestrictions(int userId) {
1309 synchronized (mRestrictionsLock) {
1310 Bundle restrictions = mCachedEffectiveUserRestrictions.get(userId);
1311 if (restrictions == null) {
Fyodor Kupolov82402752015-10-28 14:54:51 -07001312 restrictions = computeEffectiveUserRestrictionsLR(userId);
Makoto Onuki068c54a2015-10-13 14:34:03 -07001313 mCachedEffectiveUserRestrictions.put(userId, restrictions);
1314 }
1315 return restrictions;
Amith Yamasani8cd28b52014-06-08 17:54:27 -07001316 }
1317 }
1318
Makoto Onuki068c54a2015-10-13 14:34:03 -07001319 /** @return a specific user restriction that's in effect currently. */
1320 @Override
1321 public boolean hasUserRestriction(String restrictionKey, int userId) {
Makoto Onuki1f1ceef2016-01-28 11:32:32 -08001322 if (!UserRestrictionsUtils.isValidRestriction(restrictionKey)) {
1323 return false;
1324 }
Makoto Onuki068c54a2015-10-13 14:34:03 -07001325 Bundle restrictions = getEffectiveUserRestrictions(userId);
1326 return restrictions != null && restrictions.getBoolean(restrictionKey);
1327 }
1328
1329 /**
Zoltan Szatmary-Bane7834602016-04-08 18:41:11 +01001330 * @hide
1331 *
1332 * Returns who set a user restriction on a user.
1333 * Requires {@link android.Manifest.permission#MANAGE_USERS} permission.
1334 * @param restrictionKey the string key representing the restriction
1335 * @param userId the id of the user for whom to retrieve the restrictions.
1336 * @return The source of user restriction. Any combination of
1337 * {@link UserManager#RESTRICTION_NOT_SET},
1338 * {@link UserManager#RESTRICTION_SOURCE_SYSTEM},
1339 * {@link UserManager#RESTRICTION_SOURCE_DEVICE_OWNER}
1340 * and {@link UserManager#RESTRICTION_SOURCE_PROFILE_OWNER}
1341 */
1342 @Override
1343 public int getUserRestrictionSource(String restrictionKey, int userId) {
Pavel Grafov6a40f092016-10-25 15:46:51 +01001344 List<EnforcingUser> enforcingUsers = getUserRestrictionSources(restrictionKey, userId);
1345 // Get "bitwise or" of restriction sources for all enforcing users.
Zoltan Szatmary-Bane7834602016-04-08 18:41:11 +01001346 int result = UserManager.RESTRICTION_NOT_SET;
Pavel Grafov6a40f092016-10-25 15:46:51 +01001347 for (int i = enforcingUsers.size() - 1; i >= 0; i--) {
1348 result |= enforcingUsers.get(i).getUserRestrictionSource();
1349 }
1350 return result;
1351 }
1352
1353 @Override
1354 public List<EnforcingUser> getUserRestrictionSources(
1355 String restrictionKey, @UserIdInt int userId) {
1356 checkManageUsersPermission("getUserRestrictionSource");
Zoltan Szatmary-Bane7834602016-04-08 18:41:11 +01001357
1358 // Shortcut for the most common case
1359 if (!hasUserRestriction(restrictionKey, userId)) {
Pavel Grafov6a40f092016-10-25 15:46:51 +01001360 return Collections.emptyList();
Zoltan Szatmary-Bane7834602016-04-08 18:41:11 +01001361 }
1362
Pavel Grafov6a40f092016-10-25 15:46:51 +01001363 final List<EnforcingUser> result = new ArrayList<>();
1364
1365 // Check if it is base restriction.
Zoltan Szatmary-Bane7834602016-04-08 18:41:11 +01001366 if (hasBaseUserRestriction(restrictionKey, userId)) {
Pavel Grafov6a40f092016-10-25 15:46:51 +01001367 result.add(new EnforcingUser(
1368 UserHandle.USER_NULL, UserManager.RESTRICTION_SOURCE_SYSTEM));
Zoltan Szatmary-Bane7834602016-04-08 18:41:11 +01001369 }
1370
Pavel Grafov6a40f092016-10-25 15:46:51 +01001371 synchronized (mRestrictionsLock) {
1372 // Check if it is set by profile owner.
1373 Bundle profileOwnerRestrictions = mDevicePolicyLocalUserRestrictions.get(userId);
1374 if (UserRestrictionsUtils.contains(profileOwnerRestrictions, restrictionKey)) {
1375 result.add(getEnforcingUserLocked(userId));
1376 }
1377
1378 // Iterate over all users who enforce global restrictions.
1379 for (int i = mDevicePolicyGlobalUserRestrictions.size() - 1; i >= 0; i--) {
1380 Bundle globalRestrictions = mDevicePolicyGlobalUserRestrictions.valueAt(i);
1381 int profileUserId = mDevicePolicyGlobalUserRestrictions.keyAt(i);
1382 if (UserRestrictionsUtils.contains(globalRestrictions, restrictionKey)) {
1383 result.add(getEnforcingUserLocked(profileUserId));
Zoltan Szatmary-Bane7834602016-04-08 18:41:11 +01001384 }
1385 }
Zoltan Szatmary-Bane7834602016-04-08 18:41:11 +01001386 }
Zoltan Szatmary-Bane7834602016-04-08 18:41:11 +01001387 return result;
1388 }
1389
Pavel Grafov6a40f092016-10-25 15:46:51 +01001390 private EnforcingUser getEnforcingUserLocked(@UserIdInt int userId) {
1391 int source = mDeviceOwnerUserId == userId ? UserManager.RESTRICTION_SOURCE_DEVICE_OWNER
1392 : UserManager.RESTRICTION_SOURCE_PROFILE_OWNER;
1393 return new EnforcingUser(userId, source);
1394 }
1395
Zoltan Szatmary-Bane7834602016-04-08 18:41:11 +01001396 /**
Makoto Onuki068c54a2015-10-13 14:34:03 -07001397 * @return UserRestrictions that are in effect currently. This always returns a new
1398 * {@link Bundle}.
1399 */
Amith Yamasani8cd28b52014-06-08 17:54:27 -07001400 @Override
Amith Yamasanie4cf7342012-12-17 11:12:09 -08001401 public Bundle getUserRestrictions(int userId) {
Makoto Onuki1a2cd742015-11-16 13:51:27 -08001402 return UserRestrictionsUtils.clone(getEffectiveUserRestrictions(userId));
Amith Yamasanie4cf7342012-12-17 11:12:09 -08001403 }
1404
1405 @Override
Zoltan Szatmary-Ban3bbcedd2015-11-26 13:45:51 +00001406 public boolean hasBaseUserRestriction(String restrictionKey, int userId) {
1407 checkManageUsersPermission("hasBaseUserRestriction");
Makoto Onuki1f1ceef2016-01-28 11:32:32 -08001408 if (!UserRestrictionsUtils.isValidRestriction(restrictionKey)) {
1409 return false;
1410 }
Zoltan Szatmary-Ban3bbcedd2015-11-26 13:45:51 +00001411 synchronized (mRestrictionsLock) {
1412 Bundle bundle = mBaseUserRestrictions.get(userId);
1413 return (bundle != null && bundle.getBoolean(restrictionKey, false));
1414 }
1415 }
1416
1417 @Override
Fyodor Kupolovb5013302015-04-17 17:59:14 -07001418 public void setUserRestriction(String key, boolean value, int userId) {
Fyodor Kupolovd4b26042015-07-27 14:30:59 -07001419 checkManageUsersPermission("setUserRestriction");
Makoto Onuki1f1ceef2016-01-28 11:32:32 -08001420 if (!UserRestrictionsUtils.isValidRestriction(key)) {
1421 return;
1422 }
Makoto Onuki068c54a2015-10-13 14:34:03 -07001423 synchronized (mRestrictionsLock) {
1424 // Note we can't modify Bundles stored in mBaseUserRestrictions directly, so create
1425 // a copy.
Makoto Onuki1a2cd742015-11-16 13:51:27 -08001426 final Bundle newRestrictions = UserRestrictionsUtils.clone(
1427 mBaseUserRestrictions.get(userId));
Makoto Onuki068c54a2015-10-13 14:34:03 -07001428 newRestrictions.putBoolean(key, value);
1429
Fyodor Kupolov82402752015-10-28 14:54:51 -07001430 updateUserRestrictionsInternalLR(newRestrictions, userId);
Fyodor Kupolovb5013302015-04-17 17:59:14 -07001431 }
1432 }
1433
Makoto Onuki068c54a2015-10-13 14:34:03 -07001434 /**
Makoto Onuki1a2cd742015-11-16 13:51:27 -08001435 * Optionally updating user restrictions, calculate the effective user restrictions and also
1436 * propagate to other services and system settings.
Makoto Onuki068c54a2015-10-13 14:34:03 -07001437 *
Pavel Grafov6a40f092016-10-25 15:46:51 +01001438 * @param newBaseRestrictions User restrictions to set.
Makoto Onuki1a2cd742015-11-16 13:51:27 -08001439 * If null, will not update user restrictions and only does the propagation.
Makoto Onuki068c54a2015-10-13 14:34:03 -07001440 * @param userId target user ID.
1441 */
1442 @GuardedBy("mRestrictionsLock")
Fyodor Kupolov82402752015-10-28 14:54:51 -07001443 private void updateUserRestrictionsInternalLR(
Pavel Grafov6a40f092016-10-25 15:46:51 +01001444 @Nullable Bundle newBaseRestrictions, int userId) {
Makoto Onuki1a2cd742015-11-16 13:51:27 -08001445 final Bundle prevAppliedRestrictions = UserRestrictionsUtils.nonNull(
1446 mAppliedUserRestrictions.get(userId));
1447
1448 // Update base restrictions.
Pavel Grafov6a40f092016-10-25 15:46:51 +01001449 if (newBaseRestrictions != null) {
1450 // If newBaseRestrictions == the current one, it's probably a bug.
Makoto Onuki1a2cd742015-11-16 13:51:27 -08001451 final Bundle prevBaseRestrictions = mBaseUserRestrictions.get(userId);
1452
Pavel Grafov6a40f092016-10-25 15:46:51 +01001453 Preconditions.checkState(prevBaseRestrictions != newBaseRestrictions);
Makoto Onuki068c54a2015-10-13 14:34:03 -07001454 Preconditions.checkState(mCachedEffectiveUserRestrictions.get(userId)
Pavel Grafov6a40f092016-10-25 15:46:51 +01001455 != newBaseRestrictions);
Makoto Onuki1a2cd742015-11-16 13:51:27 -08001456
Pavel Grafov6a40f092016-10-25 15:46:51 +01001457 if (updateRestrictionsIfNeededLR(userId, newBaseRestrictions, mBaseUserRestrictions)) {
Amith Yamasani12747872015-12-07 14:19:49 -08001458 scheduleWriteUser(getUserDataNoChecks(userId));
Makoto Onuki1a2cd742015-11-16 13:51:27 -08001459 }
Makoto Onuki068c54a2015-10-13 14:34:03 -07001460 }
1461
Fyodor Kupolov82402752015-10-28 14:54:51 -07001462 final Bundle effective = computeEffectiveUserRestrictionsLR(userId);
Makoto Onuki068c54a2015-10-13 14:34:03 -07001463
Makoto Onuki759a7632015-10-28 16:43:10 -07001464 mCachedEffectiveUserRestrictions.put(userId, effective);
1465
Makoto Onuki1a2cd742015-11-16 13:51:27 -08001466 // Apply the new restrictions.
Makoto Onuki4f160732015-10-27 17:15:38 -07001467 if (DBG) {
Makoto Onuki1a2cd742015-11-16 13:51:27 -08001468 debug("Applying user restrictions: userId=" + userId
1469 + " new=" + effective + " prev=" + prevAppliedRestrictions);
Makoto Onuki4f160732015-10-27 17:15:38 -07001470 }
1471
Makoto Onuki1a2cd742015-11-16 13:51:27 -08001472 if (mAppOpsService != null) { // We skip it until system-ready.
Fyodor Kupolovec30ca32016-06-16 15:09:29 -07001473 mHandler.post(new Runnable() {
1474 @Override
1475 public void run() {
1476 try {
1477 mAppOpsService.setUserRestrictions(effective, mUserRestriconToken, userId);
1478 } catch (RemoteException e) {
1479 Log.w(LOG_TAG, "Unable to notify AppOpsService of UserRestrictions");
1480 }
1481 }
1482 });
Fyodor Kupolovb5013302015-04-17 17:59:14 -07001483 }
Makoto Onuki068c54a2015-10-13 14:34:03 -07001484
Makoto Onuki1a2cd742015-11-16 13:51:27 -08001485 propagateUserRestrictionsLR(userId, effective, prevAppliedRestrictions);
Makoto Onuki4f160732015-10-27 17:15:38 -07001486
Makoto Onuki1a2cd742015-11-16 13:51:27 -08001487 mAppliedUserRestrictions.put(userId, new Bundle(effective));
Makoto Onuki068c54a2015-10-13 14:34:03 -07001488 }
1489
Makoto Onuki1a2cd742015-11-16 13:51:27 -08001490 private void propagateUserRestrictionsLR(final int userId,
Makoto Onukid45a4a22015-11-02 17:17:38 -08001491 Bundle newRestrictions, Bundle prevRestrictions) {
Makoto Onuki1a2cd742015-11-16 13:51:27 -08001492 // Note this method doesn't touch any state, meaning it doesn't require mRestrictionsLock
1493 // actually, but we still need some kind of synchronization otherwise we might end up
1494 // calling listeners out-of-order, thus "LR".
1495
1496 if (UserRestrictionsUtils.areEqual(newRestrictions, prevRestrictions)) {
1497 return;
1498 }
Makoto Onukid45a4a22015-11-02 17:17:38 -08001499
1500 final Bundle newRestrictionsFinal = new Bundle(newRestrictions);
1501 final Bundle prevRestrictionsFinal = new Bundle(prevRestrictions);
1502
1503 mHandler.post(new Runnable() {
1504 @Override
1505 public void run() {
Fyodor Kupolov9cbfc9e2015-10-07 15:52:33 -07001506 UserRestrictionsUtils.applyUserRestrictions(
1507 mContext, userId, newRestrictionsFinal, prevRestrictionsFinal);
Makoto Onuki1a2cd742015-11-16 13:51:27 -08001508
Makoto Onukid45a4a22015-11-02 17:17:38 -08001509 final UserRestrictionsListener[] listeners;
1510 synchronized (mUserRestrictionsListeners) {
1511 listeners = new UserRestrictionsListener[mUserRestrictionsListeners.size()];
1512 mUserRestrictionsListeners.toArray(listeners);
1513 }
1514 for (int i = 0; i < listeners.length; i++) {
1515 listeners[i].onUserRestrictionsChanged(userId,
1516 newRestrictionsFinal, prevRestrictionsFinal);
1517 }
Makoto Onukie72f81b2017-03-16 14:08:19 -07001518
1519 final Intent broadcast = new Intent(UserManager.ACTION_USER_RESTRICTIONS_CHANGED)
1520 .setFlags(Intent.FLAG_RECEIVER_REGISTERED_ONLY);
1521 mContext.sendBroadcastAsUser(broadcast, UserHandle.of(userId));
Makoto Onukid45a4a22015-11-02 17:17:38 -08001522 }
1523 });
1524 }
1525
Makoto Onuki1a2cd742015-11-16 13:51:27 -08001526 // Package private for the inner class.
1527 void applyUserRestrictionsLR(int userId) {
Fyodor Kupolov82402752015-10-28 14:54:51 -07001528 updateUserRestrictionsInternalLR(null, userId);
Makoto Onuki068c54a2015-10-13 14:34:03 -07001529 }
1530
1531 @GuardedBy("mRestrictionsLock")
Makoto Onuki1a2cd742015-11-16 13:51:27 -08001532 // Package private for the inner class.
1533 void applyUserRestrictionsForAllUsersLR() {
1534 if (DBG) {
1535 debug("applyUserRestrictionsForAllUsersLR");
1536 }
Makoto Onuki068c54a2015-10-13 14:34:03 -07001537 // First, invalidate all cached values.
Makoto Onuki4f160732015-10-27 17:15:38 -07001538 mCachedEffectiveUserRestrictions.clear();
1539
Sudheer Shankadc589ac2016-11-10 15:30:17 -08001540 // We don't want to call into ActivityManagerService while taking a lock, so we'll call
Makoto Onuki068c54a2015-10-13 14:34:03 -07001541 // it on a handler.
1542 final Runnable r = new Runnable() {
1543 @Override
1544 public void run() {
1545 // Then get the list of running users.
1546 final int[] runningUsers;
1547 try {
Sudheer Shankadc589ac2016-11-10 15:30:17 -08001548 runningUsers = ActivityManager.getService().getRunningUserIds();
Makoto Onuki068c54a2015-10-13 14:34:03 -07001549 } catch (RemoteException e) {
Sudheer Shankadc589ac2016-11-10 15:30:17 -08001550 Log.w(LOG_TAG, "Unable to access ActivityManagerService");
Makoto Onuki068c54a2015-10-13 14:34:03 -07001551 return;
1552 }
1553 // Then re-calculate the effective restrictions and apply, only for running users.
1554 // It's okay if a new user has started after the getRunningUserIds() call,
1555 // because we'll do the same thing (re-calculate the restrictions and apply)
1556 // when we start a user.
Makoto Onuki068c54a2015-10-13 14:34:03 -07001557 synchronized (mRestrictionsLock) {
1558 for (int i = 0; i < runningUsers.length; i++) {
Makoto Onuki1a2cd742015-11-16 13:51:27 -08001559 applyUserRestrictionsLR(runningUsers[i]);
Makoto Onuki068c54a2015-10-13 14:34:03 -07001560 }
1561 }
1562 }
1563 };
1564 mHandler.post(r);
Fyodor Kupolovb5013302015-04-17 17:59:14 -07001565 }
1566
Amith Yamasani258848d2012-08-10 17:06:33 -07001567 /**
Amith Yamasanifaea76f2012-09-11 10:59:48 -07001568 * Check if we've hit the limit of how many users can be created.
1569 */
Fyodor Kupolov82402752015-10-28 14:54:51 -07001570 private boolean isUserLimitReached() {
1571 int count;
1572 synchronized (mUsersLock) {
1573 count = getAliveUsersExcludingGuestsCountLU();
1574 }
1575 return count >= UserManager.getMaxSupportedUsers();
Nicolas Prevot12678a92015-05-13 12:15:03 -07001576 }
1577
1578 @Override
Nicolas Prevot07387fe2015-10-30 17:53:30 +00001579 public boolean canAddMoreManagedProfiles(int userId, boolean allowedToRemoveOne) {
Nicolas Prevot12678a92015-05-13 12:15:03 -07001580 checkManageUsersPermission("check if more managed profiles can be added.");
1581 if (ActivityManager.isLowRamDeviceStatic()) {
1582 return false;
1583 }
Fyodor Kupolovb6157992015-06-05 15:32:28 -07001584 if (!mContext.getPackageManager().hasSystemFeature(
1585 PackageManager.FEATURE_MANAGED_USERS)) {
1586 return false;
1587 }
Nicolas Prevotb8186812015-08-06 15:00:03 +01001588 // Limit number of managed profiles that can be created
Benjamin Franzc8776152017-01-06 14:16:41 +00001589 final int managedProfilesCount = getProfiles(userId, false).size() - 1;
Nicolas Prevot07387fe2015-10-30 17:53:30 +00001590 final int profilesRemovedCount = managedProfilesCount > 0 && allowedToRemoveOne ? 1 : 0;
Kenny Guy02c89902016-11-15 19:36:38 +00001591 if (managedProfilesCount - profilesRemovedCount >= getMaxManagedProfiles()) {
Nicolas Prevotb8186812015-08-06 15:00:03 +01001592 return false;
1593 }
Fyodor Kupolov82402752015-10-28 14:54:51 -07001594 synchronized(mUsersLock) {
1595 UserInfo userInfo = getUserInfoLU(userId);
yuanhao47f9f7c2017-01-18 09:54:45 +08001596 if (userInfo == null || !userInfo.canHaveProfile()) {
Nicolas Prevot12678a92015-05-13 12:15:03 -07001597 return false;
1598 }
Nicolas Prevot07387fe2015-10-30 17:53:30 +00001599 int usersCountAfterRemoving = getAliveUsersExcludingGuestsCountLU()
1600 - profilesRemovedCount;
Nicolas Prevot12678a92015-05-13 12:15:03 -07001601 // We allow creating a managed profile in the special case where there is only one user.
Nicolas Prevot07387fe2015-10-30 17:53:30 +00001602 return usersCountAfterRemoving == 1
1603 || usersCountAfterRemoving < UserManager.getMaxSupportedUsers();
Nicolas Prevot12678a92015-05-13 12:15:03 -07001604 }
1605 }
1606
Fyodor Kupolov82402752015-10-28 14:54:51 -07001607 private int getAliveUsersExcludingGuestsCountLU() {
Amith Yamasanif584f012014-05-19 17:57:25 -07001608 int aliveUserCount = 0;
1609 final int totalUserCount = mUsers.size();
1610 // Skip over users being removed
1611 for (int i = 0; i < totalUserCount; i++) {
Amith Yamasani12747872015-12-07 14:19:49 -08001612 UserInfo user = mUsers.valueAt(i).info;
Fyodor Kupolov6e99d3f2016-11-01 17:18:41 -07001613 if (!mRemovingUserIds.get(user.id) && !user.isGuest()) {
Amith Yamasanif584f012014-05-19 17:57:25 -07001614 aliveUserCount++;
1615 }
1616 }
Nicolas Prevot12678a92015-05-13 12:15:03 -07001617 return aliveUserCount;
Amith Yamasanifaea76f2012-09-11 10:59:48 -07001618 }
1619
1620 /**
Amith Yamasani195263742012-08-21 15:40:12 -07001621 * Enforces that only the system UID or root's UID or apps that have the
Xiaohui Chenb3b92582015-12-07 11:22:13 -08001622 * {@link android.Manifest.permission#MANAGE_USERS MANAGE_USERS} and
1623 * {@link android.Manifest.permission#INTERACT_ACROSS_USERS_FULL INTERACT_ACROSS_USERS_FULL}
1624 * permissions can make certain calls to the UserManager.
1625 *
1626 * @param message used as message if SecurityException is thrown
1627 * @throws SecurityException if the caller does not have enough privilege.
1628 */
1629 private static final void checkManageUserAndAcrossUsersFullPermission(String message) {
1630 final int uid = Binder.getCallingUid();
1631 if (uid != Process.SYSTEM_UID && uid != 0
1632 && ActivityManager.checkComponentPermission(
1633 Manifest.permission.MANAGE_USERS,
1634 uid, -1, true) != PackageManager.PERMISSION_GRANTED
1635 && ActivityManager.checkComponentPermission(
1636 Manifest.permission.INTERACT_ACROSS_USERS_FULL,
1637 uid, -1, true) != PackageManager.PERMISSION_GRANTED) {
1638 throw new SecurityException(
1639 "You need MANAGE_USERS and INTERACT_ACROSS_USERS_FULL permission to: "
1640 + message);
1641 }
1642 }
1643
1644 /**
1645 * Enforces that only the system UID or root's UID or apps that have the
Dianne Hackborn10ad9822014-03-17 11:28:36 -07001646 * {@link android.Manifest.permission#MANAGE_USERS MANAGE_USERS}
Amith Yamasani195263742012-08-21 15:40:12 -07001647 * permission can make certain calls to the UserManager.
Amith Yamasani258848d2012-08-10 17:06:33 -07001648 *
1649 * @param message used as message if SecurityException is thrown
1650 * @throws SecurityException if the caller is not system or root
Tony Mak4dc008c2016-03-16 10:46:49 +00001651 * @see #hasManageUsersPermission()
Amith Yamasani258848d2012-08-10 17:06:33 -07001652 */
Amith Yamasanibe465322014-04-24 13:45:17 -07001653 private static final void checkManageUsersPermission(String message) {
Tony Mak4dc008c2016-03-16 10:46:49 +00001654 if (!hasManageUsersPermission()) {
Amith Yamasanibe465322014-04-24 13:45:17 -07001655 throw new SecurityException("You need MANAGE_USERS permission to: " + message);
1656 }
Emily Bernier7a2b4d12014-04-23 12:51:35 -04001657 }
1658
Esteban Talavera5b9f1672015-12-11 15:22:34 +00001659 /**
Sudheer Shankaf5cea032016-06-08 17:13:24 -07001660 * Enforces that only the system UID or root's UID or apps that have the
1661 * {@link android.Manifest.permission#MANAGE_USERS MANAGE_USERS} or
1662 * {@link android.Manifest.permission#CREATE_USERS CREATE_USERS}
1663 * can make certain calls to the UserManager.
1664 *
1665 * @param message used as message if SecurityException is thrown
1666 * @throws SecurityException if the caller is not system or root
1667 * @see #hasManageOrCreateUsersPermission()
1668 */
1669 private static final void checkManageOrCreateUsersPermission(String message) {
1670 if (!hasManageOrCreateUsersPermission()) {
1671 throw new SecurityException(
1672 "You either need MANAGE_USERS or CREATE_USERS permission to: " + message);
1673 }
1674 }
1675
1676 /**
1677 * Similar to {@link #checkManageOrCreateUsersPermission(String)} but when the caller is tries
1678 * to create user/profiles other than what is allowed for
1679 * {@link android.Manifest.permission#CREATE_USERS CREATE_USERS} permission, then it will only
1680 * allow callers with {@link android.Manifest.permission#MANAGE_USERS MANAGE_USERS} permission.
1681 */
1682 private static final void checkManageOrCreateUsersPermission(int creationFlags) {
1683 if ((creationFlags & ~ALLOWED_FLAGS_FOR_CREATE_USERS_PERMISSION) == 0) {
1684 if (!hasManageOrCreateUsersPermission()) {
1685 throw new SecurityException("You either need MANAGE_USERS or CREATE_USERS "
1686 + "permission to create an user with flags: " + creationFlags);
1687 }
1688 } else if (!hasManageUsersPermission()) {
1689 throw new SecurityException("You need MANAGE_USERS permission to create an user "
1690 + " with flags: " + creationFlags);
1691 }
1692 }
1693
1694 /**
Tony Mak4dc008c2016-03-16 10:46:49 +00001695 * @return whether the calling UID is system UID or root's UID or the calling app has the
1696 * {@link android.Manifest.permission#MANAGE_USERS MANAGE_USERS}.
1697 */
1698 private static final boolean hasManageUsersPermission() {
1699 final int callingUid = Binder.getCallingUid();
1700 return UserHandle.isSameApp(callingUid, Process.SYSTEM_UID)
1701 || callingUid == Process.ROOT_UID
1702 || ActivityManager.checkComponentPermission(
1703 android.Manifest.permission.MANAGE_USERS,
1704 callingUid, -1, true) == PackageManager.PERMISSION_GRANTED;
1705 }
1706
1707 /**
Sudheer Shankaf5cea032016-06-08 17:13:24 -07001708 * @return whether the calling UID is system UID or root's UID or the calling app has the
1709 * {@link android.Manifest.permission#MANAGE_USERS MANAGE_USERS} or
1710 * {@link android.Manifest.permission#CREATE_USERS CREATE_USERS}.
1711 */
1712 private static final boolean hasManageOrCreateUsersPermission() {
1713 final int callingUid = Binder.getCallingUid();
1714 return UserHandle.isSameApp(callingUid, Process.SYSTEM_UID)
1715 || callingUid == Process.ROOT_UID
1716 || ActivityManager.checkComponentPermission(
1717 android.Manifest.permission.MANAGE_USERS,
1718 callingUid, -1, true) == PackageManager.PERMISSION_GRANTED
1719 || ActivityManager.checkComponentPermission(
1720 android.Manifest.permission.CREATE_USERS,
1721 callingUid, -1, true) == PackageManager.PERMISSION_GRANTED;
1722 }
1723
1724 /**
Esteban Talavera5b9f1672015-12-11 15:22:34 +00001725 * Enforces that only the system UID or root's UID (on any user) can make certain calls to the
1726 * UserManager.
1727 *
1728 * @param message used as message if SecurityException is thrown
1729 * @throws SecurityException if the caller is not system or root
1730 */
1731 private static void checkSystemOrRoot(String message) {
1732 final int uid = Binder.getCallingUid();
1733 if (!UserHandle.isSameApp(uid, Process.SYSTEM_UID) && uid != Process.ROOT_UID) {
1734 throw new SecurityException("Only system may: " + message);
1735 }
1736 }
1737
Fyodor Kupolov82402752015-10-28 14:54:51 -07001738 private void writeBitmapLP(UserInfo info, Bitmap bitmap) {
Amith Yamasanib8151ec2012-04-18 18:02:48 -07001739 try {
1740 File dir = new File(mUsersDir, Integer.toString(info.id));
1741 File file = new File(dir, USER_PHOTO_FILENAME);
Adrian Roos1bdff912015-02-17 15:51:35 +01001742 File tmp = new File(dir, USER_PHOTO_FILENAME_TMP);
Amith Yamasanib8151ec2012-04-18 18:02:48 -07001743 if (!dir.exists()) {
1744 dir.mkdir();
1745 FileUtils.setPermissions(
1746 dir.getPath(),
1747 FileUtils.S_IRWXU|FileUtils.S_IRWXG|FileUtils.S_IXOTH,
1748 -1, -1);
1749 }
Amith Yamasanie928d7d2012-09-17 21:46:51 -07001750 FileOutputStream os;
Adrian Roos1bdff912015-02-17 15:51:35 +01001751 if (bitmap.compress(Bitmap.CompressFormat.PNG, 100, os = new FileOutputStream(tmp))
Oleksandr Peletskyicd6fa302016-02-25 16:28:39 +01001752 && tmp.renameTo(file) && SELinux.restorecon(file)) {
Amith Yamasani3b49f072012-09-17 10:21:43 -07001753 info.iconPath = file.getAbsolutePath();
1754 }
Amith Yamasanie928d7d2012-09-17 21:46:51 -07001755 try {
1756 os.close();
1757 } catch (IOException ioe) {
1758 // What the ... !
1759 }
Adrian Roos1bdff912015-02-17 15:51:35 +01001760 tmp.delete();
Amith Yamasanib8151ec2012-04-18 18:02:48 -07001761 } catch (FileNotFoundException e) {
Amith Yamasani2a003292012-08-14 18:25:45 -07001762 Slog.w(LOG_TAG, "Error setting photo for user ", e);
Amith Yamasanib8151ec2012-04-18 18:02:48 -07001763 }
Amith Yamasanib8151ec2012-04-18 18:02:48 -07001764 }
1765
Amith Yamasani0b285492011-04-14 17:35:23 -07001766 /**
1767 * Returns an array of user ids. This array is cached here for quick access, so do not modify or
1768 * cache it elsewhere.
1769 * @return the array of user ids.
1770 */
Dianne Hackborn1676c852012-09-10 14:52:30 -07001771 public int[] getUserIds() {
Fyodor Kupolov82402752015-10-28 14:54:51 -07001772 synchronized (mUsersLock) {
Dianne Hackborn7767eac2012-08-23 18:25:40 -07001773 return mUserIds;
1774 }
Amith Yamasani0b285492011-04-14 17:35:23 -07001775 }
1776
Fyodor Kupolove80085d2015-11-06 18:21:39 -08001777 private void readUserListLP() {
Amith Yamasani4b2e9342011-03-31 12:38:53 -07001778 if (!mUserListFile.exists()) {
Fyodor Kupolove80085d2015-11-06 18:21:39 -08001779 fallbackToSingleUserLP();
Amith Yamasani4b2e9342011-03-31 12:38:53 -07001780 return;
1781 }
1782 FileInputStream fis = null;
Amith Yamasani2a003292012-08-14 18:25:45 -07001783 AtomicFile userListFile = new AtomicFile(mUserListFile);
Amith Yamasani4b2e9342011-03-31 12:38:53 -07001784 try {
Amith Yamasani2a003292012-08-14 18:25:45 -07001785 fis = userListFile.openRead();
Amith Yamasani4b2e9342011-03-31 12:38:53 -07001786 XmlPullParser parser = Xml.newPullParser();
Wojciech Staszkiewicz9e9e2e72015-05-08 14:58:46 +01001787 parser.setInput(fis, StandardCharsets.UTF_8.name());
Amith Yamasani4b2e9342011-03-31 12:38:53 -07001788 int type;
1789 while ((type = parser.next()) != XmlPullParser.START_TAG
1790 && type != XmlPullParser.END_DOCUMENT) {
Amith Yamasani12747872015-12-07 14:19:49 -08001791 // Skip
Amith Yamasani4b2e9342011-03-31 12:38:53 -07001792 }
1793
1794 if (type != XmlPullParser.START_TAG) {
Amith Yamasani0b285492011-04-14 17:35:23 -07001795 Slog.e(LOG_TAG, "Unable to read user list");
Fyodor Kupolove80085d2015-11-06 18:21:39 -08001796 fallbackToSingleUserLP();
Amith Yamasani4b2e9342011-03-31 12:38:53 -07001797 return;
1798 }
1799
Amith Yamasani2a003292012-08-14 18:25:45 -07001800 mNextSerialNumber = -1;
1801 if (parser.getName().equals(TAG_USERS)) {
1802 String lastSerialNumber = parser.getAttributeValue(null, ATTR_NEXT_SERIAL_NO);
1803 if (lastSerialNumber != null) {
1804 mNextSerialNumber = Integer.parseInt(lastSerialNumber);
1805 }
Amith Yamasani6f34b412012-10-22 18:19:27 -07001806 String versionNumber = parser.getAttributeValue(null, ATTR_USER_VERSION);
1807 if (versionNumber != null) {
1808 mUserVersion = Integer.parseInt(versionNumber);
1809 }
Amith Yamasani2a003292012-08-14 18:25:45 -07001810 }
1811
Pavel Grafov6a40f092016-10-25 15:46:51 +01001812 // Pre-O global user restriction were stored as a single bundle (as opposed to per-user
1813 // currently), take care of it in case of upgrade.
1814 Bundle oldDevicePolicyGlobalUserRestrictions = null;
Makoto Onuki1a2cd742015-11-16 13:51:27 -08001815
Amith Yamasani4b2e9342011-03-31 12:38:53 -07001816 while ((type = parser.next()) != XmlPullParser.END_DOCUMENT) {
Amith Yamasanie4afaa32014-06-30 14:55:07 +05301817 if (type == XmlPullParser.START_TAG) {
1818 final String name = parser.getName();
1819 if (name.equals(TAG_USER)) {
1820 String id = parser.getAttributeValue(null, ATTR_ID);
Amith Yamasani6f34b412012-10-22 18:19:27 -07001821
Amith Yamasani12747872015-12-07 14:19:49 -08001822 UserData userData = readUserLP(Integer.parseInt(id));
1823
1824 if (userData != null) {
Fyodor Kupolov82402752015-10-28 14:54:51 -07001825 synchronized (mUsersLock) {
Amith Yamasani12747872015-12-07 14:19:49 -08001826 mUsers.put(userData.info.id, userData);
1827 if (mNextSerialNumber < 0
1828 || mNextSerialNumber <= userData.info.id) {
1829 mNextSerialNumber = userData.info.id + 1;
Fyodor Kupolov82402752015-10-28 14:54:51 -07001830 }
Amith Yamasanie4afaa32014-06-30 14:55:07 +05301831 }
Amith Yamasani2a003292012-08-14 18:25:45 -07001832 }
Amith Yamasanie4afaa32014-06-30 14:55:07 +05301833 } else if (name.equals(TAG_GUEST_RESTRICTIONS)) {
Amith Yamasanida0b1682014-11-21 12:58:17 -08001834 while ((type = parser.next()) != XmlPullParser.END_DOCUMENT
1835 && type != XmlPullParser.END_TAG) {
1836 if (type == XmlPullParser.START_TAG) {
1837 if (parser.getName().equals(TAG_RESTRICTIONS)) {
Fyodor Kupolove80085d2015-11-06 18:21:39 -08001838 synchronized (mGuestRestrictions) {
Fyodor Kupoloveafee022017-03-15 17:09:04 -07001839 UserRestrictionsUtils
1840 .readRestrictions(parser, mGuestRestrictions);
Fyodor Kupolove80085d2015-11-06 18:21:39 -08001841 }
Amith Yamasanida0b1682014-11-21 12:58:17 -08001842 }
1843 break;
1844 }
1845 }
Pavel Grafov6a40f092016-10-25 15:46:51 +01001846 } else if (name.equals(TAG_DEVICE_OWNER_USER_ID)
1847 // Legacy name, should only be encountered when upgrading from pre-O.
1848 || name.equals(TAG_GLOBAL_RESTRICTION_OWNER_ID)) {
Zoltan Szatmary-Bane7834602016-04-08 18:41:11 +01001849 String ownerUserId = parser.getAttributeValue(null, ATTR_ID);
1850 if (ownerUserId != null) {
Pavel Grafov6a40f092016-10-25 15:46:51 +01001851 mDeviceOwnerUserId = Integer.parseInt(ownerUserId);
Zoltan Szatmary-Bane7834602016-04-08 18:41:11 +01001852 }
Pavel Grafov6a40f092016-10-25 15:46:51 +01001853 } else if (name.equals(TAG_DEVICE_POLICY_RESTRICTIONS)) {
1854 // Should only happen when upgrading from pre-O (version < 7).
1855 oldDevicePolicyGlobalUserRestrictions =
1856 UserRestrictionsUtils.readRestrictions(parser);
Amith Yamasani258848d2012-08-10 17:06:33 -07001857 }
Amith Yamasani4b2e9342011-03-31 12:38:53 -07001858 }
1859 }
Pavel Grafov6a40f092016-10-25 15:46:51 +01001860
Fyodor Kupolov82402752015-10-28 14:54:51 -07001861 updateUserIds();
Pavel Grafov6a40f092016-10-25 15:46:51 +01001862 upgradeIfNecessaryLP(oldDevicePolicyGlobalUserRestrictions);
Fyodor Kupolove80085d2015-11-06 18:21:39 -08001863 } catch (IOException | XmlPullParserException e) {
1864 fallbackToSingleUserLP();
Dianne Hackbornbfd89b32011-12-15 18:22:54 -08001865 } finally {
Fyodor Kupolove80085d2015-11-06 18:21:39 -08001866 IoUtils.closeQuietly(fis);
Amith Yamasani4b2e9342011-03-31 12:38:53 -07001867 }
1868 }
1869
Amith Yamasani6f34b412012-10-22 18:19:27 -07001870 /**
Amith Yamasanibc9625052012-11-15 14:39:18 -08001871 * Upgrade steps between versions, either for fixing bugs or changing the data format.
Pavel Grafov6a40f092016-10-25 15:46:51 +01001872 * @param oldGlobalUserRestrictions Pre-O global device policy restrictions.
Amith Yamasani6f34b412012-10-22 18:19:27 -07001873 */
Pavel Grafov6a40f092016-10-25 15:46:51 +01001874 private void upgradeIfNecessaryLP(Bundle oldGlobalUserRestrictions) {
Makoto Onuki1a2cd742015-11-16 13:51:27 -08001875 final int originalVersion = mUserVersion;
Amith Yamasani6f34b412012-10-22 18:19:27 -07001876 int userVersion = mUserVersion;
1877 if (userVersion < 1) {
1878 // Assign a proper name for the owner, if not initialized correctly before
Amith Yamasani12747872015-12-07 14:19:49 -08001879 UserData userData = getUserDataNoChecks(UserHandle.USER_SYSTEM);
1880 if ("Primary".equals(userData.info.name)) {
1881 userData.info.name =
1882 mContext.getResources().getString(com.android.internal.R.string.owner_name);
1883 scheduleWriteUser(userData);
Amith Yamasani6f34b412012-10-22 18:19:27 -07001884 }
1885 userVersion = 1;
1886 }
1887
Amith Yamasanibc9625052012-11-15 14:39:18 -08001888 if (userVersion < 2) {
1889 // Owner should be marked as initialized
Amith Yamasani12747872015-12-07 14:19:49 -08001890 UserData userData = getUserDataNoChecks(UserHandle.USER_SYSTEM);
1891 if ((userData.info.flags & UserInfo.FLAG_INITIALIZED) == 0) {
1892 userData.info.flags |= UserInfo.FLAG_INITIALIZED;
1893 scheduleWriteUser(userData);
Amith Yamasanibc9625052012-11-15 14:39:18 -08001894 }
1895 userVersion = 2;
1896 }
1897
Amith Yamasani350962c2013-08-06 11:18:53 -07001898
Amith Yamasani5e486f52013-08-07 11:06:44 -07001899 if (userVersion < 4) {
Amith Yamasani5e486f52013-08-07 11:06:44 -07001900 userVersion = 4;
1901 }
1902
Amith Yamasaniaa6634e2014-10-06 14:20:28 -07001903 if (userVersion < 5) {
1904 initDefaultGuestRestrictions();
1905 userVersion = 5;
1906 }
1907
Fyodor Kupolov1c363152015-09-02 13:27:21 -07001908 if (userVersion < 6) {
1909 final boolean splitSystemUser = UserManager.isSplitSystemUser();
Fyodor Kupolov82402752015-10-28 14:54:51 -07001910 synchronized (mUsersLock) {
1911 for (int i = 0; i < mUsers.size(); i++) {
Amith Yamasani12747872015-12-07 14:19:49 -08001912 UserData userData = mUsers.valueAt(i);
Fyodor Kupolov82402752015-10-28 14:54:51 -07001913 // In non-split mode, only user 0 can have restricted profiles
Amith Yamasani12747872015-12-07 14:19:49 -08001914 if (!splitSystemUser && userData.info.isRestricted()
1915 && (userData.info.restrictedProfileParentId
1916 == UserInfo.NO_PROFILE_GROUP_ID)) {
1917 userData.info.restrictedProfileParentId = UserHandle.USER_SYSTEM;
1918 scheduleWriteUser(userData);
Fyodor Kupolov82402752015-10-28 14:54:51 -07001919 }
Fyodor Kupolov1c363152015-09-02 13:27:21 -07001920 }
1921 }
1922 userVersion = 6;
1923 }
1924
Pavel Grafov6a40f092016-10-25 15:46:51 +01001925 if (userVersion < 7) {
1926 // Previously only one user could enforce global restrictions, now it is per-user.
1927 synchronized (mRestrictionsLock) {
1928 if (!UserRestrictionsUtils.isEmpty(oldGlobalUserRestrictions)
1929 && mDeviceOwnerUserId != UserHandle.USER_NULL) {
1930 mDevicePolicyGlobalUserRestrictions.put(
1931 mDeviceOwnerUserId, oldGlobalUserRestrictions);
1932 }
1933 // ENSURE_VERIFY_APPS is now enforced globally even if put by profile owner, so move
1934 // it from local to global bundle for all users who set it.
1935 UserRestrictionsUtils.moveRestriction(UserManager.ENSURE_VERIFY_APPS,
1936 mDevicePolicyLocalUserRestrictions, mDevicePolicyGlobalUserRestrictions
1937 );
1938 }
1939 userVersion = 7;
1940 }
1941
Amith Yamasani6f34b412012-10-22 18:19:27 -07001942 if (userVersion < USER_VERSION) {
1943 Slog.w(LOG_TAG, "User version " + mUserVersion + " didn't upgrade as expected to "
1944 + USER_VERSION);
1945 } else {
1946 mUserVersion = userVersion;
Makoto Onuki1a2cd742015-11-16 13:51:27 -08001947
1948 if (originalVersion < mUserVersion) {
1949 writeUserListLP();
1950 }
Amith Yamasani6f34b412012-10-22 18:19:27 -07001951 }
1952 }
1953
Fyodor Kupolove80085d2015-11-06 18:21:39 -08001954 private void fallbackToSingleUserLP() {
Xiaohui Chenb31e14a2015-07-13 16:04:55 -07001955 int flags = UserInfo.FLAG_INITIALIZED;
1956 // In split system user mode, the admin and primary flags are assigned to the first human
1957 // user.
1958 if (!UserManager.isSplitSystemUser()) {
1959 flags |= UserInfo.FLAG_ADMIN | UserInfo.FLAG_PRIMARY;
1960 }
Xiaohui Chen70f6c382015-04-28 14:21:43 -07001961 // Create the system user
Amith Yamasani6f48d6e2016-03-23 14:28:25 -07001962 UserInfo system = new UserInfo(UserHandle.USER_SYSTEM, null, null, flags);
Fyodor Kupolov0f4533d2016-05-18 18:43:12 -07001963 UserData userData = putUserInfo(system);
Amith Yamasani634cf312012-10-04 17:34:21 -07001964 mNextSerialNumber = MIN_USER_ID;
Geoffrey Borggaard15b8b2c2013-08-28 22:11:10 -04001965 mUserVersion = USER_VERSION;
Amith Yamasani67df64b2012-12-14 12:09:36 -08001966
Geoffrey Borggaarde45e45e32013-01-24 10:03:20 -05001967 Bundle restrictions = new Bundle();
Mahaver Chopra3d9805d2016-07-07 16:25:05 +01001968 try {
1969 final String[] defaultFirstUserRestrictions = mContext.getResources().getStringArray(
1970 com.android.internal.R.array.config_defaultFirstUserRestrictions);
1971 for (String userRestriction : defaultFirstUserRestrictions) {
1972 if (UserRestrictionsUtils.isValidRestriction(userRestriction)) {
1973 restrictions.putBoolean(userRestriction, true);
1974 }
1975 }
1976 } catch (Resources.NotFoundException e) {
1977 Log.e(LOG_TAG, "Couldn't find resource: config_defaultFirstUserRestrictions", e);
1978 }
1979
Pavel Grafov6a40f092016-10-25 15:46:51 +01001980 if (!restrictions.isEmpty()) {
1981 synchronized (mRestrictionsLock) {
1982 mBaseUserRestrictions.append(UserHandle.USER_SYSTEM, restrictions);
1983 }
Makoto Onuki068c54a2015-10-13 14:34:03 -07001984 }
Amith Yamasani67df64b2012-12-14 12:09:36 -08001985
Fyodor Kupolov82402752015-10-28 14:54:51 -07001986 updateUserIds();
Amith Yamasaniaa6634e2014-10-06 14:20:28 -07001987 initDefaultGuestRestrictions();
Amith Yamasani4b2e9342011-03-31 12:38:53 -07001988
Amith Yamasani12747872015-12-07 14:19:49 -08001989 writeUserLP(userData);
Jeff Sharkeycd575992016-03-29 14:12:49 -06001990 writeUserListLP();
Amith Yamasani4b2e9342011-03-31 12:38:53 -07001991 }
1992
Amith Yamasani6f48d6e2016-03-23 14:28:25 -07001993 private String getOwnerName() {
1994 return mContext.getResources().getString(com.android.internal.R.string.owner_name);
1995 }
1996
Amith Yamasani12747872015-12-07 14:19:49 -08001997 private void scheduleWriteUser(UserData UserData) {
Makoto Onuki1a2cd742015-11-16 13:51:27 -08001998 if (DBG) {
1999 debug("scheduleWriteUser");
2000 }
Makoto Onuki9e935a32015-11-06 14:24:24 -08002001 // No need to wrap it within a lock -- worst case, we'll just post the same message
2002 // twice.
Amith Yamasani12747872015-12-07 14:19:49 -08002003 if (!mHandler.hasMessages(WRITE_USER_MSG, UserData)) {
2004 Message msg = mHandler.obtainMessage(WRITE_USER_MSG, UserData);
Fyodor Kupolov75d0ea82014-12-15 16:21:07 -08002005 mHandler.sendMessageDelayed(msg, WRITE_USER_DELAY);
2006 }
2007 }
2008
Amith Yamasani12747872015-12-07 14:19:49 -08002009 private void writeUserLP(UserData userData) {
Makoto Onuki1a2cd742015-11-16 13:51:27 -08002010 if (DBG) {
Amith Yamasani12747872015-12-07 14:19:49 -08002011 debug("writeUserLP " + userData);
Makoto Onuki1a2cd742015-11-16 13:51:27 -08002012 }
Amith Yamasani742a6712011-05-04 14:49:28 -07002013 FileOutputStream fos = null;
Amith Yamasani12747872015-12-07 14:19:49 -08002014 AtomicFile userFile = new AtomicFile(new File(mUsersDir, userData.info.id + XML_SUFFIX));
Amith Yamasani4b2e9342011-03-31 12:38:53 -07002015 try {
Amith Yamasani2a003292012-08-14 18:25:45 -07002016 fos = userFile.startWrite();
Amith Yamasani4b2e9342011-03-31 12:38:53 -07002017 final BufferedOutputStream bos = new BufferedOutputStream(fos);
Kenny Guy02c89902016-11-15 19:36:38 +00002018 writeUserLP(userData, bos);
Amith Yamasani2a003292012-08-14 18:25:45 -07002019 userFile.finishWrite(fos);
2020 } catch (Exception ioe) {
Jeff Sharkeycd575992016-03-29 14:12:49 -06002021 Slog.e(LOG_TAG, "Error writing user info " + userData.info.id, ioe);
Amith Yamasani2a003292012-08-14 18:25:45 -07002022 userFile.failWrite(fos);
Amith Yamasani4b2e9342011-03-31 12:38:53 -07002023 }
2024 }
2025
2026 /*
Kenny Guy02c89902016-11-15 19:36:38 +00002027 * Writes the user file in this format:
2028 *
2029 * <user flags="20039023" id="0">
2030 * <name>Primary</name>
2031 * </user>
2032 */
2033 @VisibleForTesting
2034 void writeUserLP(UserData userData, OutputStream os)
2035 throws IOException, XmlPullParserException {
2036 // XmlSerializer serializer = XmlUtils.serializerInstance();
2037 final XmlSerializer serializer = new FastXmlSerializer();
2038 serializer.setOutput(os, StandardCharsets.UTF_8.name());
2039 serializer.startDocument(null, true);
2040 serializer.setFeature("http://xmlpull.org/v1/doc/features.html#indent-output", true);
2041
2042 final UserInfo userInfo = userData.info;
2043 serializer.startTag(null, TAG_USER);
2044 serializer.attribute(null, ATTR_ID, Integer.toString(userInfo.id));
2045 serializer.attribute(null, ATTR_SERIAL_NO, Integer.toString(userInfo.serialNumber));
2046 serializer.attribute(null, ATTR_FLAGS, Integer.toString(userInfo.flags));
2047 serializer.attribute(null, ATTR_CREATION_TIME, Long.toString(userInfo.creationTime));
2048 serializer.attribute(null, ATTR_LAST_LOGGED_IN_TIME,
2049 Long.toString(userInfo.lastLoggedInTime));
2050 if (userInfo.lastLoggedInFingerprint != null) {
2051 serializer.attribute(null, ATTR_LAST_LOGGED_IN_FINGERPRINT,
2052 userInfo.lastLoggedInFingerprint);
2053 }
2054 if (userInfo.iconPath != null) {
2055 serializer.attribute(null, ATTR_ICON_PATH, userInfo.iconPath);
2056 }
2057 if (userInfo.partial) {
2058 serializer.attribute(null, ATTR_PARTIAL, "true");
2059 }
2060 if (userInfo.guestToRemove) {
2061 serializer.attribute(null, ATTR_GUEST_TO_REMOVE, "true");
2062 }
2063 if (userInfo.profileGroupId != UserInfo.NO_PROFILE_GROUP_ID) {
2064 serializer.attribute(null, ATTR_PROFILE_GROUP_ID,
2065 Integer.toString(userInfo.profileGroupId));
2066 }
2067 serializer.attribute(null, ATTR_PROFILE_BADGE,
2068 Integer.toString(userInfo.profileBadge));
2069 if (userInfo.restrictedProfileParentId != UserInfo.NO_PROFILE_GROUP_ID) {
2070 serializer.attribute(null, ATTR_RESTRICTED_PROFILE_PARENT_ID,
2071 Integer.toString(userInfo.restrictedProfileParentId));
2072 }
2073 // Write seed data
2074 if (userData.persistSeedData) {
2075 if (userData.seedAccountName != null) {
2076 serializer.attribute(null, ATTR_SEED_ACCOUNT_NAME, userData.seedAccountName);
2077 }
2078 if (userData.seedAccountType != null) {
2079 serializer.attribute(null, ATTR_SEED_ACCOUNT_TYPE, userData.seedAccountType);
2080 }
2081 }
2082 if (userInfo.name != null) {
2083 serializer.startTag(null, TAG_NAME);
2084 serializer.text(userInfo.name);
2085 serializer.endTag(null, TAG_NAME);
2086 }
2087 synchronized (mRestrictionsLock) {
2088 UserRestrictionsUtils.writeRestrictions(serializer,
2089 mBaseUserRestrictions.get(userInfo.id), TAG_RESTRICTIONS);
2090 UserRestrictionsUtils.writeRestrictions(serializer,
2091 mDevicePolicyLocalUserRestrictions.get(userInfo.id),
2092 TAG_DEVICE_POLICY_RESTRICTIONS);
Pavel Grafov6a40f092016-10-25 15:46:51 +01002093 UserRestrictionsUtils.writeRestrictions(serializer,
2094 mDevicePolicyGlobalUserRestrictions.get(userInfo.id),
2095 TAG_DEVICE_POLICY_GLOBAL_RESTRICTIONS);
Kenny Guy02c89902016-11-15 19:36:38 +00002096 }
2097
2098 if (userData.account != null) {
2099 serializer.startTag(null, TAG_ACCOUNT);
2100 serializer.text(userData.account);
2101 serializer.endTag(null, TAG_ACCOUNT);
2102 }
2103
2104 if (userData.persistSeedData && userData.seedAccountOptions != null) {
2105 serializer.startTag(null, TAG_SEED_ACCOUNT_OPTIONS);
2106 userData.seedAccountOptions.saveToXml(serializer);
2107 serializer.endTag(null, TAG_SEED_ACCOUNT_OPTIONS);
2108 }
2109
2110 serializer.endTag(null, TAG_USER);
2111
2112 serializer.endDocument();
2113 }
2114
2115 /*
Amith Yamasani4b2e9342011-03-31 12:38:53 -07002116 * Writes the user list file in this format:
2117 *
Amith Yamasani2a003292012-08-14 18:25:45 -07002118 * <users nextSerialNumber="3">
Amith Yamasani4b2e9342011-03-31 12:38:53 -07002119 * <user id="0"></user>
2120 * <user id="2"></user>
2121 * </users>
2122 */
Fyodor Kupolove80085d2015-11-06 18:21:39 -08002123 private void writeUserListLP() {
Makoto Onuki1a2cd742015-11-16 13:51:27 -08002124 if (DBG) {
2125 debug("writeUserList");
2126 }
Amith Yamasani742a6712011-05-04 14:49:28 -07002127 FileOutputStream fos = null;
Amith Yamasani2a003292012-08-14 18:25:45 -07002128 AtomicFile userListFile = new AtomicFile(mUserListFile);
Amith Yamasani4b2e9342011-03-31 12:38:53 -07002129 try {
Amith Yamasani2a003292012-08-14 18:25:45 -07002130 fos = userListFile.startWrite();
Amith Yamasani4b2e9342011-03-31 12:38:53 -07002131 final BufferedOutputStream bos = new BufferedOutputStream(fos);
2132
2133 // XmlSerializer serializer = XmlUtils.serializerInstance();
2134 final XmlSerializer serializer = new FastXmlSerializer();
Wojciech Staszkiewicz9e9e2e72015-05-08 14:58:46 +01002135 serializer.setOutput(bos, StandardCharsets.UTF_8.name());
Amith Yamasani4b2e9342011-03-31 12:38:53 -07002136 serializer.startDocument(null, true);
2137 serializer.setFeature("http://xmlpull.org/v1/doc/features.html#indent-output", true);
2138
2139 serializer.startTag(null, TAG_USERS);
Amith Yamasani2a003292012-08-14 18:25:45 -07002140 serializer.attribute(null, ATTR_NEXT_SERIAL_NO, Integer.toString(mNextSerialNumber));
Amith Yamasani6f34b412012-10-22 18:19:27 -07002141 serializer.attribute(null, ATTR_USER_VERSION, Integer.toString(mUserVersion));
Amith Yamasani4b2e9342011-03-31 12:38:53 -07002142
Adam Lesinskieddeb492014-09-08 17:50:03 -07002143 serializer.startTag(null, TAG_GUEST_RESTRICTIONS);
Fyodor Kupolove80085d2015-11-06 18:21:39 -08002144 synchronized (mGuestRestrictions) {
2145 UserRestrictionsUtils
2146 .writeRestrictions(serializer, mGuestRestrictions, TAG_RESTRICTIONS);
2147 }
Amith Yamasanie4afaa32014-06-30 14:55:07 +05302148 serializer.endTag(null, TAG_GUEST_RESTRICTIONS);
Pavel Grafov6a40f092016-10-25 15:46:51 +01002149 serializer.startTag(null, TAG_DEVICE_OWNER_USER_ID);
2150 serializer.attribute(null, ATTR_ID, Integer.toString(mDeviceOwnerUserId));
2151 serializer.endTag(null, TAG_DEVICE_OWNER_USER_ID);
Fyodor Kupolov82402752015-10-28 14:54:51 -07002152 int[] userIdsToWrite;
2153 synchronized (mUsersLock) {
2154 userIdsToWrite = new int[mUsers.size()];
2155 for (int i = 0; i < userIdsToWrite.length; i++) {
Amith Yamasani12747872015-12-07 14:19:49 -08002156 UserInfo user = mUsers.valueAt(i).info;
Fyodor Kupolov82402752015-10-28 14:54:51 -07002157 userIdsToWrite[i] = user.id;
2158 }
2159 }
2160 for (int id : userIdsToWrite) {
Amith Yamasani4b2e9342011-03-31 12:38:53 -07002161 serializer.startTag(null, TAG_USER);
Fyodor Kupolov82402752015-10-28 14:54:51 -07002162 serializer.attribute(null, ATTR_ID, Integer.toString(id));
Amith Yamasani4b2e9342011-03-31 12:38:53 -07002163 serializer.endTag(null, TAG_USER);
Amith Yamasani4b2e9342011-03-31 12:38:53 -07002164 }
2165
2166 serializer.endTag(null, TAG_USERS);
2167
2168 serializer.endDocument();
Amith Yamasani2a003292012-08-14 18:25:45 -07002169 userListFile.finishWrite(fos);
2170 } catch (Exception e) {
2171 userListFile.failWrite(fos);
Amith Yamasani0b285492011-04-14 17:35:23 -07002172 Slog.e(LOG_TAG, "Error writing user list");
Amith Yamasani4b2e9342011-03-31 12:38:53 -07002173 }
2174 }
2175
Amith Yamasani12747872015-12-07 14:19:49 -08002176 private UserData readUserLP(int id) {
Kenny Guy02c89902016-11-15 19:36:38 +00002177 FileInputStream fis = null;
2178 try {
2179 AtomicFile userFile =
2180 new AtomicFile(new File(mUsersDir, Integer.toString(id) + XML_SUFFIX));
2181 fis = userFile.openRead();
2182 return readUserLP(id, fis);
2183 } catch (IOException ioe) {
2184 Slog.e(LOG_TAG, "Error reading user list");
2185 } catch (XmlPullParserException pe) {
2186 Slog.e(LOG_TAG, "Error reading user list");
2187 } finally {
2188 IoUtils.closeQuietly(fis);
2189 }
2190 return null;
2191 }
2192
2193 @VisibleForTesting
2194 UserData readUserLP(int id, InputStream is) throws IOException,
2195 XmlPullParserException {
Amith Yamasani4b2e9342011-03-31 12:38:53 -07002196 int flags = 0;
Amith Yamasani2a003292012-08-14 18:25:45 -07002197 int serialNumber = id;
Amith Yamasani4b2e9342011-03-31 12:38:53 -07002198 String name = null;
Xiaohui Chenb3b92582015-12-07 11:22:13 -08002199 String account = null;
Amith Yamasanib8151ec2012-04-18 18:02:48 -07002200 String iconPath = null;
Amith Yamasani920ace02012-09-20 22:15:37 -07002201 long creationTime = 0L;
2202 long lastLoggedInTime = 0L;
Jeff Sharkeybd91e2f2016-03-22 15:32:31 -06002203 String lastLoggedInFingerprint = null;
Kenny Guy2a764942014-04-02 13:29:20 +01002204 int profileGroupId = UserInfo.NO_PROFILE_GROUP_ID;
Kenny Guy02c89902016-11-15 19:36:38 +00002205 int profileBadge = 0;
Fyodor Kupolov06a484a2015-08-21 16:33:20 -07002206 int restrictedProfileParentId = UserInfo.NO_PROFILE_GROUP_ID;
Dianne Hackbornd4ac8d72012-09-27 23:20:10 -07002207 boolean partial = false;
Adam Lesinskieddeb492014-09-08 17:50:03 -07002208 boolean guestToRemove = false;
Amith Yamasani12747872015-12-07 14:19:49 -08002209 boolean persistSeedData = false;
2210 String seedAccountName = null;
2211 String seedAccountType = null;
2212 PersistableBundle seedAccountOptions = null;
Pavel Grafov6a40f092016-10-25 15:46:51 +01002213 Bundle baseRestrictions = null;
2214 Bundle localRestrictions = null;
2215 Bundle globalRestrictions = null;
Amith Yamasani4b2e9342011-03-31 12:38:53 -07002216
Kenny Guy02c89902016-11-15 19:36:38 +00002217 XmlPullParser parser = Xml.newPullParser();
2218 parser.setInput(is, StandardCharsets.UTF_8.name());
2219 int type;
2220 while ((type = parser.next()) != XmlPullParser.START_TAG
2221 && type != XmlPullParser.END_DOCUMENT) {
2222 // Skip
2223 }
Amith Yamasani4b2e9342011-03-31 12:38:53 -07002224
Kenny Guy02c89902016-11-15 19:36:38 +00002225 if (type != XmlPullParser.START_TAG) {
2226 Slog.e(LOG_TAG, "Unable to read user " + id);
2227 return null;
2228 }
2229
2230 if (type == XmlPullParser.START_TAG && parser.getName().equals(TAG_USER)) {
2231 int storedId = readIntAttribute(parser, ATTR_ID, -1);
2232 if (storedId != id) {
2233 Slog.e(LOG_TAG, "User id does not match the file name");
Amith Yamasani4b2e9342011-03-31 12:38:53 -07002234 return null;
2235 }
Kenny Guy02c89902016-11-15 19:36:38 +00002236 serialNumber = readIntAttribute(parser, ATTR_SERIAL_NO, id);
2237 flags = readIntAttribute(parser, ATTR_FLAGS, 0);
2238 iconPath = parser.getAttributeValue(null, ATTR_ICON_PATH);
2239 creationTime = readLongAttribute(parser, ATTR_CREATION_TIME, 0);
2240 lastLoggedInTime = readLongAttribute(parser, ATTR_LAST_LOGGED_IN_TIME, 0);
2241 lastLoggedInFingerprint = parser.getAttributeValue(null,
2242 ATTR_LAST_LOGGED_IN_FINGERPRINT);
2243 profileGroupId = readIntAttribute(parser, ATTR_PROFILE_GROUP_ID,
2244 UserInfo.NO_PROFILE_GROUP_ID);
2245 profileBadge = readIntAttribute(parser, ATTR_PROFILE_BADGE, 0);
2246 restrictedProfileParentId = readIntAttribute(parser,
2247 ATTR_RESTRICTED_PROFILE_PARENT_ID, UserInfo.NO_PROFILE_GROUP_ID);
2248 String valueString = parser.getAttributeValue(null, ATTR_PARTIAL);
2249 if ("true".equals(valueString)) {
2250 partial = true;
2251 }
2252 valueString = parser.getAttributeValue(null, ATTR_GUEST_TO_REMOVE);
2253 if ("true".equals(valueString)) {
2254 guestToRemove = true;
2255 }
Amith Yamasani4b2e9342011-03-31 12:38:53 -07002256
Kenny Guy02c89902016-11-15 19:36:38 +00002257 seedAccountName = parser.getAttributeValue(null, ATTR_SEED_ACCOUNT_NAME);
2258 seedAccountType = parser.getAttributeValue(null, ATTR_SEED_ACCOUNT_TYPE);
2259 if (seedAccountName != null || seedAccountType != null) {
2260 persistSeedData = true;
2261 }
Amith Yamasani4b2e9342011-03-31 12:38:53 -07002262
Kenny Guy02c89902016-11-15 19:36:38 +00002263 int outerDepth = parser.getDepth();
2264 while ((type = parser.next()) != XmlPullParser.END_DOCUMENT
2265 && (type != XmlPullParser.END_TAG || parser.getDepth() > outerDepth)) {
2266 if (type == XmlPullParser.END_TAG || type == XmlPullParser.TEXT) {
2267 continue;
2268 }
2269 String tag = parser.getName();
2270 if (TAG_NAME.equals(tag)) {
2271 type = parser.next();
2272 if (type == XmlPullParser.TEXT) {
2273 name = parser.getText();
2274 }
2275 } else if (TAG_RESTRICTIONS.equals(tag)) {
Pavel Grafov6a40f092016-10-25 15:46:51 +01002276 baseRestrictions = UserRestrictionsUtils.readRestrictions(parser);
Kenny Guy02c89902016-11-15 19:36:38 +00002277 } else if (TAG_DEVICE_POLICY_RESTRICTIONS.equals(tag)) {
Pavel Grafov6a40f092016-10-25 15:46:51 +01002278 localRestrictions = UserRestrictionsUtils.readRestrictions(parser);
2279 } else if (TAG_DEVICE_POLICY_GLOBAL_RESTRICTIONS.equals(tag)) {
2280 globalRestrictions = UserRestrictionsUtils.readRestrictions(parser);
Kenny Guy02c89902016-11-15 19:36:38 +00002281 } else if (TAG_ACCOUNT.equals(tag)) {
2282 type = parser.next();
2283 if (type == XmlPullParser.TEXT) {
2284 account = parser.getText();
2285 }
2286 } else if (TAG_SEED_ACCOUNT_OPTIONS.equals(tag)) {
2287 seedAccountOptions = PersistableBundle.restoreFromXml(parser);
Amith Yamasani12747872015-12-07 14:19:49 -08002288 persistSeedData = true;
2289 }
Dianne Hackbornbfd89b32011-12-15 18:22:54 -08002290 }
Amith Yamasani4b2e9342011-03-31 12:38:53 -07002291 }
Kenny Guy02c89902016-11-15 19:36:38 +00002292
2293 // Create the UserInfo object that gets passed around
2294 UserInfo userInfo = new UserInfo(id, name, iconPath, flags);
2295 userInfo.serialNumber = serialNumber;
2296 userInfo.creationTime = creationTime;
2297 userInfo.lastLoggedInTime = lastLoggedInTime;
2298 userInfo.lastLoggedInFingerprint = lastLoggedInFingerprint;
2299 userInfo.partial = partial;
2300 userInfo.guestToRemove = guestToRemove;
2301 userInfo.profileGroupId = profileGroupId;
2302 userInfo.profileBadge = profileBadge;
2303 userInfo.restrictedProfileParentId = restrictedProfileParentId;
2304
2305 // Create the UserData object that's internal to this class
2306 UserData userData = new UserData();
2307 userData.info = userInfo;
2308 userData.account = account;
2309 userData.seedAccountName = seedAccountName;
2310 userData.seedAccountType = seedAccountType;
2311 userData.persistSeedData = persistSeedData;
2312 userData.seedAccountOptions = seedAccountOptions;
2313
2314 synchronized (mRestrictionsLock) {
Pavel Grafov6a40f092016-10-25 15:46:51 +01002315 if (baseRestrictions != null) {
2316 mBaseUserRestrictions.put(id, baseRestrictions);
2317 }
2318 if (localRestrictions != null) {
2319 mDevicePolicyLocalUserRestrictions.put(id, localRestrictions);
2320 }
2321 if (globalRestrictions != null) {
2322 mDevicePolicyGlobalUserRestrictions.put(id, globalRestrictions);
2323 }
Kenny Guy02c89902016-11-15 19:36:38 +00002324 }
2325 return userData;
Amith Yamasani4b2e9342011-03-31 12:38:53 -07002326 }
2327
Amith Yamasani920ace02012-09-20 22:15:37 -07002328 private int readIntAttribute(XmlPullParser parser, String attr, int defaultValue) {
2329 String valueString = parser.getAttributeValue(null, attr);
2330 if (valueString == null) return defaultValue;
2331 try {
2332 return Integer.parseInt(valueString);
2333 } catch (NumberFormatException nfe) {
2334 return defaultValue;
2335 }
2336 }
2337
2338 private long readLongAttribute(XmlPullParser parser, String attr, long defaultValue) {
2339 String valueString = parser.getAttributeValue(null, attr);
2340 if (valueString == null) return defaultValue;
2341 try {
2342 return Long.parseLong(valueString);
2343 } catch (NumberFormatException nfe) {
2344 return defaultValue;
2345 }
2346 }
2347
Amith Yamasanib82add22013-07-09 11:24:44 -07002348 /**
Amith Yamasani1a7472e2013-07-02 11:17:30 -07002349 * Removes the app restrictions file for a specific package and user id, if it exists.
2350 */
Fyodor Kupolovd31cee92017-09-05 16:31:08 -07002351 private static void cleanAppRestrictionsForPackageLAr(String pkg, int userId) {
2352 File dir = Environment.getUserSystemDirectory(userId);
2353 File resFile = new File(dir, packageToRestrictionsFileName(pkg));
2354 if (resFile.exists()) {
2355 resFile.delete();
Amith Yamasani1a7472e2013-07-02 11:17:30 -07002356 }
2357 }
2358
Kenny Guya52dc3e2014-02-11 15:33:14 +00002359 @Override
Sudheer Shanka7cb54a32016-09-16 12:59:05 -07002360 public UserInfo createProfileForUser(String name, int flags, int userId,
2361 String[] disallowedPackages) {
Sudheer Shankaf5cea032016-06-08 17:13:24 -07002362 checkManageOrCreateUsersPermission(flags);
Sudheer Shanka7cb54a32016-09-16 12:59:05 -07002363 return createUserInternal(name, flags, userId, disallowedPackages);
Kenny Guya52dc3e2014-02-11 15:33:14 +00002364 }
2365
Amith Yamasani258848d2012-08-10 17:06:33 -07002366 @Override
Tony Mak6dc428f2016-10-10 15:48:27 +01002367 public UserInfo createProfileForUserEvenWhenDisallowed(String name, int flags, int userId,
2368 String[] disallowedPackages) {
2369 checkManageOrCreateUsersPermission(flags);
2370 return createUserInternalUnchecked(name, flags, userId, disallowedPackages);
2371 }
2372
2373 @Override
Nicolas Prevotd37c4a92017-01-23 11:56:00 +00002374 public boolean removeUserEvenWhenDisallowed(@UserIdInt int userHandle) {
2375 checkManageOrCreateUsersPermission("Only the system can remove users");
2376 return removeUserUnchecked(userHandle);
2377 }
2378
2379 @Override
Amith Yamasani13593602012-03-22 16:16:17 -07002380 public UserInfo createUser(String name, int flags) {
Sudheer Shankaf5cea032016-06-08 17:13:24 -07002381 checkManageOrCreateUsersPermission(flags);
Nicolas Prevotc6d033e2014-02-27 13:11:09 +00002382 return createUserInternal(name, flags, UserHandle.USER_NULL);
Kenny Guya52dc3e2014-02-11 15:33:14 +00002383 }
Amith Yamasanifaea76f2012-09-11 10:59:48 -07002384
Jessica Hummelbe81c802014-04-22 15:49:22 +01002385 private UserInfo createUserInternal(String name, int flags, int parentId) {
Sudheer Shanka7cb54a32016-09-16 12:59:05 -07002386 return createUserInternal(name, flags, parentId, null);
2387 }
2388
2389 private UserInfo createUserInternal(String name, int flags, int parentId,
2390 String[] disallowedPackages) {
Esteban Talavera6c9116a2016-11-24 16:12:44 +00002391 String restriction = ((flags & UserInfo.FLAG_MANAGED_PROFILE) != 0)
2392 ? UserManager.DISALLOW_ADD_MANAGED_PROFILE
2393 : UserManager.DISALLOW_ADD_USER;
2394 if (hasUserRestriction(restriction, UserHandle.getCallingUserId())) {
2395 Log.w(LOG_TAG, "Cannot add user. " + restriction + " is enabled.");
Julia Reynolds75175022014-06-26 16:35:00 -04002396 return null;
2397 }
Tony Mak6dc428f2016-10-10 15:48:27 +01002398 return createUserInternalUnchecked(name, flags, parentId, disallowedPackages);
2399 }
2400
2401 private UserInfo createUserInternalUnchecked(String name, int flags, int parentId,
2402 String[] disallowedPackages) {
Suprabh Shuklac5e057c2016-08-08 16:22:44 -07002403 DeviceStorageMonitorInternal dsm = LocalServices
2404 .getService(DeviceStorageMonitorInternal.class);
2405 if (dsm.isMemoryLow()) {
2406 Log.w(LOG_TAG, "Cannot add user. Not enough space on disk.");
2407 return null;
2408 }
Nicolas Prevot12678a92015-05-13 12:15:03 -07002409 if (ActivityManager.isLowRamDeviceStatic()) {
2410 return null;
2411 }
Amith Yamasani95ab7842014-08-11 17:09:26 -07002412 final boolean isGuest = (flags & UserInfo.FLAG_GUEST) != 0;
Nicolas Prevot12678a92015-05-13 12:15:03 -07002413 final boolean isManagedProfile = (flags & UserInfo.FLAG_MANAGED_PROFILE) != 0;
Fyodor Kupolov06a484a2015-08-21 16:33:20 -07002414 final boolean isRestricted = (flags & UserInfo.FLAG_RESTRICTED) != 0;
Amith Yamasani52c21e32016-05-31 09:12:20 -07002415 final boolean isDemo = (flags & UserInfo.FLAG_DEMO) != 0;
Dianne Hackborn5dc5a002012-09-15 19:33:48 -07002416 final long ident = Binder.clearCallingIdentity();
Fyodor Kupolove80085d2015-11-06 18:21:39 -08002417 UserInfo userInfo;
Amith Yamasani12747872015-12-07 14:19:49 -08002418 UserData userData;
Amith Yamasanibb054c92015-07-09 14:16:27 -07002419 final int userId;
Dianne Hackborn5dc5a002012-09-15 19:33:48 -07002420 try {
Fyodor Kupolove80085d2015-11-06 18:21:39 -08002421 synchronized (mPackagesLock) {
Amith Yamasani12747872015-12-07 14:19:49 -08002422 UserData parent = null;
Fyodor Kupolove80085d2015-11-06 18:21:39 -08002423 if (parentId != UserHandle.USER_NULL) {
2424 synchronized (mUsersLock) {
Amith Yamasani12747872015-12-07 14:19:49 -08002425 parent = getUserDataLU(parentId);
Nicolas Prevotc6d033e2014-02-27 13:11:09 +00002426 }
Fyodor Kupolove80085d2015-11-06 18:21:39 -08002427 if (parent == null) return null;
2428 }
2429 if (isManagedProfile && !canAddMoreManagedProfiles(parentId, false)) {
2430 Log.e(LOG_TAG, "Cannot add more managed profiles for user " + parentId);
2431 return null;
2432 }
Amith Yamasani52c21e32016-05-31 09:12:20 -07002433 if (!isGuest && !isManagedProfile && !isDemo && isUserLimitReached()) {
2434 // If we're not adding a guest/demo user or a managed profile and the limit has
Fyodor Kupolove80085d2015-11-06 18:21:39 -08002435 // been reached, cannot add a user.
2436 return null;
2437 }
2438 // If we're adding a guest and there already exists one, bail.
2439 if (isGuest && findCurrentGuestUser() != null) {
2440 return null;
2441 }
2442 // In legacy mode, restricted profile's parent can only be the owner user
2443 if (isRestricted && !UserManager.isSplitSystemUser()
2444 && (parentId != UserHandle.USER_SYSTEM)) {
2445 Log.w(LOG_TAG, "Cannot add restricted profile - parent user must be owner");
2446 return null;
2447 }
2448 if (isRestricted && UserManager.isSplitSystemUser()) {
2449 if (parent == null) {
2450 Log.w(LOG_TAG, "Cannot add restricted profile - parent user must be "
2451 + "specified");
Nicolas Prevot12678a92015-05-13 12:15:03 -07002452 return null;
2453 }
Amith Yamasani12747872015-12-07 14:19:49 -08002454 if (!parent.info.canHaveProfile()) {
Fyodor Kupolove80085d2015-11-06 18:21:39 -08002455 Log.w(LOG_TAG, "Cannot add restricted profile - profiles cannot be "
2456 + "created for the specified parent user id " + parentId);
Amith Yamasani95ab7842014-08-11 17:09:26 -07002457 return null;
2458 }
Fyodor Kupolove80085d2015-11-06 18:21:39 -08002459 }
2460 // In split system user mode, we assign the first human user the primary flag.
2461 // And if there is no device owner, we also assign the admin flag to primary user.
2462 if (UserManager.isSplitSystemUser()
2463 && !isGuest && !isManagedProfile && getPrimaryUser() == null) {
2464 flags |= UserInfo.FLAG_PRIMARY;
Makoto Onukie7927da2015-11-25 10:05:17 -08002465 synchronized (mUsersLock) {
2466 if (!mIsDeviceManaged) {
2467 flags |= UserInfo.FLAG_ADMIN;
2468 }
Amith Yamasani95ab7842014-08-11 17:09:26 -07002469 }
Fyodor Kupolove80085d2015-11-06 18:21:39 -08002470 }
Lenka Trochtovac4dd0212015-11-18 12:22:06 +01002471
Lenka Trochtovaf348e8e2016-01-07 17:20:34 +01002472 userId = getNextAvailableId();
2473 Environment.getUserSystemDirectory(userId).mkdirs();
Lenka Trochtova02fee152015-12-22 14:26:18 +01002474 boolean ephemeralGuests = Resources.getSystem()
2475 .getBoolean(com.android.internal.R.bool.config_guestUserEphemeral);
Lenka Trochtovaf348e8e2016-01-07 17:20:34 +01002476
Fyodor Kupolove80085d2015-11-06 18:21:39 -08002477 synchronized (mUsersLock) {
Lenka Trochtovaf348e8e2016-01-07 17:20:34 +01002478 // Add ephemeral flag to guests/users if required. Also inherit it from parent.
2479 if ((isGuest && ephemeralGuests) || mForceEphemeralUsers
2480 || (parent != null && parent.info.isEphemeral())) {
2481 flags |= UserInfo.FLAG_EPHEMERAL;
2482 }
2483
2484 userInfo = new UserInfo(userId, name, null, flags);
2485 userInfo.serialNumber = mNextSerialNumber++;
2486 long now = System.currentTimeMillis();
2487 userInfo.creationTime = (now > EPOCH_PLUS_30_YEARS) ? now : 0;
2488 userInfo.partial = true;
Fyodor Kupolov83c24242016-03-31 13:30:42 -07002489 userInfo.lastLoggedInFingerprint = Build.FINGERPRINT;
Kenny Guy02c89902016-11-15 19:36:38 +00002490 if (isManagedProfile && parentId != UserHandle.USER_NULL) {
2491 userInfo.profileBadge = getFreeProfileBadgeLU(parentId);
2492 }
Lenka Trochtovaf348e8e2016-01-07 17:20:34 +01002493 userData = new UserData();
2494 userData.info = userInfo;
Amith Yamasani12747872015-12-07 14:19:49 -08002495 mUsers.put(userId, userData);
Fyodor Kupolove80085d2015-11-06 18:21:39 -08002496 }
Jeff Sharkeycd575992016-03-29 14:12:49 -06002497 writeUserLP(userData);
Fyodor Kupolove80085d2015-11-06 18:21:39 -08002498 writeUserListLP();
2499 if (parent != null) {
2500 if (isManagedProfile) {
Amith Yamasani12747872015-12-07 14:19:49 -08002501 if (parent.info.profileGroupId == UserInfo.NO_PROFILE_GROUP_ID) {
2502 parent.info.profileGroupId = parent.info.id;
Fyodor Kupolove80085d2015-11-06 18:21:39 -08002503 writeUserLP(parent);
Kenny Guya52dc3e2014-02-11 15:33:14 +00002504 }
Amith Yamasani12747872015-12-07 14:19:49 -08002505 userInfo.profileGroupId = parent.info.profileGroupId;
Fyodor Kupolove80085d2015-11-06 18:21:39 -08002506 } else if (isRestricted) {
Amith Yamasani12747872015-12-07 14:19:49 -08002507 if (parent.info.restrictedProfileParentId == UserInfo.NO_PROFILE_GROUP_ID) {
2508 parent.info.restrictedProfileParentId = parent.info.id;
Fyodor Kupolove80085d2015-11-06 18:21:39 -08002509 writeUserLP(parent);
Jeff Sharkey6dce4962015-07-03 18:08:41 -07002510 }
Amith Yamasani12747872015-12-07 14:19:49 -08002511 userInfo.restrictedProfileParentId = parent.info.restrictedProfileParentId;
Makoto Onuki068c54a2015-10-13 14:34:03 -07002512 }
Dianne Hackborn5dc5a002012-09-15 19:33:48 -07002513 }
Dianne Hackborn4428e172012-08-24 17:43:05 -07002514 }
Fyodor Kupolove80085d2015-11-06 18:21:39 -08002515 final StorageManager storage = mContext.getSystemService(StorageManager.class);
Lenka Trochtovac4dd0212015-11-18 12:22:06 +01002516 storage.createUserKey(userId, userInfo.serialNumber, userInfo.isEphemeral());
Fyodor Kupolov5c0ecfd2017-01-27 11:11:57 -08002517 mUserDataPreparer.prepareUserData(userId, userInfo.serialNumber,
Jeff Sharkey47f71082016-02-01 17:03:54 -07002518 StorageManager.FLAG_STORAGE_DE | StorageManager.FLAG_STORAGE_CE);
Sudheer Shanka7cb54a32016-09-16 12:59:05 -07002519 mPm.createNewUser(userId, disallowedPackages);
Fyodor Kupolove80085d2015-11-06 18:21:39 -08002520 userInfo.partial = false;
2521 synchronized (mPackagesLock) {
Amith Yamasani12747872015-12-07 14:19:49 -08002522 writeUserLP(userData);
Fyodor Kupolove80085d2015-11-06 18:21:39 -08002523 }
2524 updateUserIds();
2525 Bundle restrictions = new Bundle();
Fyodor Kupolove04462c2015-11-30 15:02:53 -08002526 if (isGuest) {
2527 synchronized (mGuestRestrictions) {
2528 restrictions.putAll(mGuestRestrictions);
2529 }
2530 }
Fyodor Kupolove80085d2015-11-06 18:21:39 -08002531 synchronized (mRestrictionsLock) {
2532 mBaseUserRestrictions.append(userId, restrictions);
2533 }
Fyodor Kupolov5fd967d2016-07-12 14:46:19 -07002534 mPm.onNewUserCreated(userId);
Fyodor Kupolove80085d2015-11-06 18:21:39 -08002535 Intent addedIntent = new Intent(Intent.ACTION_USER_ADDED);
2536 addedIntent.putExtra(Intent.EXTRA_USER_HANDLE, userId);
2537 mContext.sendBroadcastAsUser(addedIntent, UserHandle.ALL,
2538 android.Manifest.permission.MANAGE_USERS);
Christine Franks88220562017-05-24 11:11:21 -07002539 MetricsLogger.count(mContext, isGuest ? TRON_GUEST_CREATED
2540 : (isDemo ? TRON_DEMO_CREATED : TRON_USER_CREATED), 1);
Dianne Hackborn5dc5a002012-09-15 19:33:48 -07002541 } finally {
2542 Binder.restoreCallingIdentity(ident);
Amith Yamasani258848d2012-08-10 17:06:33 -07002543 }
Amith Yamasani4b2e9342011-03-31 12:38:53 -07002544 return userInfo;
2545 }
2546
Fyodor Kupolov0f4533d2016-05-18 18:43:12 -07002547 @VisibleForTesting
2548 UserData putUserInfo(UserInfo userInfo) {
2549 final UserData userData = new UserData();
2550 userData.info = userInfo;
2551 synchronized (mUsers) {
2552 mUsers.put(userInfo.id, userData);
2553 }
2554 return userData;
2555 }
2556
2557 @VisibleForTesting
2558 void removeUserInfo(int userId) {
2559 synchronized (mUsers) {
2560 mUsers.remove(userId);
2561 }
2562 }
2563
Amith Yamasani0b285492011-04-14 17:35:23 -07002564 /**
Fyodor Kupolov02cb6e72015-09-18 18:20:55 -07002565 * @hide
2566 */
Amith Yamasani12747872015-12-07 14:19:49 -08002567 @Override
Fyodor Kupolov02cb6e72015-09-18 18:20:55 -07002568 public UserInfo createRestrictedProfile(String name, int parentUserId) {
Sudheer Shanka53d41472016-06-16 09:11:08 -07002569 checkManageOrCreateUsersPermission("setupRestrictedProfile");
Sudheer Shanka7cb54a32016-09-16 12:59:05 -07002570 final UserInfo user = createProfileForUser(
2571 name, UserInfo.FLAG_RESTRICTED, parentUserId, null);
Fyodor Kupolov02cb6e72015-09-18 18:20:55 -07002572 if (user == null) {
2573 return null;
2574 }
Fyodor Kupolov9e912ba2016-02-09 18:29:43 -08002575 long identity = Binder.clearCallingIdentity();
2576 try {
2577 setUserRestriction(UserManager.DISALLOW_MODIFY_ACCOUNTS, true, user.id);
2578 // Change the setting before applying the DISALLOW_SHARE_LOCATION restriction, otherwise
2579 // the putIntForUser() will fail.
2580 android.provider.Settings.Secure.putIntForUser(mContext.getContentResolver(),
2581 android.provider.Settings.Secure.LOCATION_MODE,
2582 android.provider.Settings.Secure.LOCATION_MODE_OFF, user.id);
2583 setUserRestriction(UserManager.DISALLOW_SHARE_LOCATION, true, user.id);
2584 } finally {
2585 Binder.restoreCallingIdentity(identity);
2586 }
Fyodor Kupolov02cb6e72015-09-18 18:20:55 -07002587 return user;
2588 }
2589
2590 /**
Adam Lesinskieddeb492014-09-08 17:50:03 -07002591 * Find the current guest user. If the Guest user is partial,
2592 * then do not include it in the results as it is about to die.
Adam Lesinskieddeb492014-09-08 17:50:03 -07002593 */
Fyodor Kupolov82402752015-10-28 14:54:51 -07002594 private UserInfo findCurrentGuestUser() {
2595 synchronized (mUsersLock) {
2596 final int size = mUsers.size();
2597 for (int i = 0; i < size; i++) {
Amith Yamasani12747872015-12-07 14:19:49 -08002598 final UserInfo user = mUsers.valueAt(i).info;
Fyodor Kupolov82402752015-10-28 14:54:51 -07002599 if (user.isGuest() && !user.guestToRemove && !mRemovingUserIds.get(user.id)) {
2600 return user;
2601 }
Adam Lesinskieddeb492014-09-08 17:50:03 -07002602 }
2603 }
2604 return null;
2605 }
2606
2607 /**
Amith Yamasani1df14732014-08-29 21:37:27 -07002608 * Mark this guest user for deletion to allow us to create another guest
2609 * and switch to that user before actually removing this guest.
2610 * @param userHandle the userid of the current guest
2611 * @return whether the user could be marked for deletion
2612 */
Amith Yamasani12747872015-12-07 14:19:49 -08002613 @Override
Amith Yamasani1df14732014-08-29 21:37:27 -07002614 public boolean markGuestForDeletion(int userHandle) {
2615 checkManageUsersPermission("Only the system can remove users");
2616 if (getUserRestrictions(UserHandle.getCallingUserId()).getBoolean(
2617 UserManager.DISALLOW_REMOVE_USER, false)) {
2618 Log.w(LOG_TAG, "Cannot remove user. DISALLOW_REMOVE_USER is enabled.");
2619 return false;
2620 }
2621
2622 long ident = Binder.clearCallingIdentity();
2623 try {
Amith Yamasani12747872015-12-07 14:19:49 -08002624 final UserData userData;
Amith Yamasani1df14732014-08-29 21:37:27 -07002625 synchronized (mPackagesLock) {
Fyodor Kupolov82402752015-10-28 14:54:51 -07002626 synchronized (mUsersLock) {
Amith Yamasani12747872015-12-07 14:19:49 -08002627 userData = mUsers.get(userHandle);
2628 if (userHandle == 0 || userData == null || mRemovingUserIds.get(userHandle)) {
Fyodor Kupolov82402752015-10-28 14:54:51 -07002629 return false;
2630 }
Amith Yamasani1df14732014-08-29 21:37:27 -07002631 }
Amith Yamasani12747872015-12-07 14:19:49 -08002632 if (!userData.info.isGuest()) {
Amith Yamasani1df14732014-08-29 21:37:27 -07002633 return false;
2634 }
Adam Lesinskieddeb492014-09-08 17:50:03 -07002635 // We set this to a guest user that is to be removed. This is a temporary state
2636 // where we are allowed to add new Guest users, even if this one is still not
2637 // removed. This user will still show up in getUserInfo() calls.
2638 // If we don't get around to removing this Guest user, it will be purged on next
2639 // startup.
Amith Yamasani12747872015-12-07 14:19:49 -08002640 userData.info.guestToRemove = true;
Amith Yamasani1df14732014-08-29 21:37:27 -07002641 // Mark it as disabled, so that it isn't returned any more when
2642 // profiles are queried.
Amith Yamasani12747872015-12-07 14:19:49 -08002643 userData.info.flags |= UserInfo.FLAG_DISABLED;
2644 writeUserLP(userData);
Amith Yamasani1df14732014-08-29 21:37:27 -07002645 }
2646 } finally {
2647 Binder.restoreCallingIdentity(ident);
2648 }
2649 return true;
2650 }
2651
2652 /**
Amith Yamasani0b285492011-04-14 17:35:23 -07002653 * Removes a user and all data directories created for that user. This method should be called
2654 * after the user's processes have been terminated.
Dianne Hackborn10ad9822014-03-17 11:28:36 -07002655 * @param userHandle the user's id
Amith Yamasani0b285492011-04-14 17:35:23 -07002656 */
Amith Yamasani12747872015-12-07 14:19:49 -08002657 @Override
Amith Yamasani258848d2012-08-10 17:06:33 -07002658 public boolean removeUser(int userHandle) {
Fyodor Kupolov4593e422016-10-27 11:00:29 -07002659 Slog.i(LOG_TAG, "removeUser u" + userHandle);
Sudheer Shankaf5cea032016-06-08 17:13:24 -07002660 checkManageOrCreateUsersPermission("Only the system can remove users");
Esteban Talavera6c9116a2016-11-24 16:12:44 +00002661
2662 final boolean isManagedProfile;
2663 synchronized (mUsersLock) {
2664 UserInfo userInfo = getUserInfoLU(userHandle);
2665 isManagedProfile = userInfo != null && userInfo.isManagedProfile();
2666 }
2667 String restriction = isManagedProfile
2668 ? UserManager.DISALLOW_REMOVE_MANAGED_PROFILE : UserManager.DISALLOW_REMOVE_USER;
2669 if (getUserRestrictions(UserHandle.getCallingUserId()).getBoolean(restriction, false)) {
2670 Log.w(LOG_TAG, "Cannot remove user. " + restriction + " is enabled.");
Julia Reynolds4ac5f852014-06-23 17:38:51 -04002671 return false;
2672 }
Nicolas Prevotdf1b87d2016-10-25 13:57:08 +01002673 return removeUserUnchecked(userHandle);
2674 }
Julia Reynolds4ac5f852014-06-23 17:38:51 -04002675
Nicolas Prevotdf1b87d2016-10-25 13:57:08 +01002676 private boolean removeUserUnchecked(int userHandle) {
Kenny Guyee58b4f2014-05-23 15:19:53 +01002677 long ident = Binder.clearCallingIdentity();
2678 try {
Amith Yamasani12747872015-12-07 14:19:49 -08002679 final UserData userData;
Fyodor Kupolov0df68cd2015-10-01 13:54:22 -07002680 int currentUser = ActivityManager.getCurrentUser();
2681 if (currentUser == userHandle) {
2682 Log.w(LOG_TAG, "Current user cannot be removed");
2683 return false;
2684 }
Kenny Guyee58b4f2014-05-23 15:19:53 +01002685 synchronized (mPackagesLock) {
Fyodor Kupolov82402752015-10-28 14:54:51 -07002686 synchronized (mUsersLock) {
Amith Yamasani12747872015-12-07 14:19:49 -08002687 userData = mUsers.get(userHandle);
2688 if (userHandle == 0 || userData == null || mRemovingUserIds.get(userHandle)) {
Fyodor Kupolov82402752015-10-28 14:54:51 -07002689 return false;
2690 }
Jeff Sharkey6eb09392014-11-14 15:57:59 -08002691
Fyodor Kupolov0f4533d2016-05-18 18:43:12 -07002692 addRemovingUserIdLocked(userHandle);
Fyodor Kupolov82402752015-10-28 14:54:51 -07002693 }
Jeff Sharkey6eb09392014-11-14 15:57:59 -08002694
Kenny Guyee58b4f2014-05-23 15:19:53 +01002695 // Set this to a partially created user, so that the user will be purged
2696 // on next startup, in case the runtime stops now before stopping and
2697 // removing the user completely.
Amith Yamasani12747872015-12-07 14:19:49 -08002698 userData.info.partial = true;
Kenny Guyee58b4f2014-05-23 15:19:53 +01002699 // Mark it as disabled, so that it isn't returned any more when
2700 // profiles are queried.
Amith Yamasani12747872015-12-07 14:19:49 -08002701 userData.info.flags |= UserInfo.FLAG_DISABLED;
2702 writeUserLP(userData);
Kenny Guyee58b4f2014-05-23 15:19:53 +01002703 }
Fyodor Kupolov6c96f7f2017-06-28 18:22:59 -07002704 try {
2705 mAppOpsService.removeUser(userHandle);
2706 } catch (RemoteException e) {
2707 Log.w(LOG_TAG, "Unable to notify AppOpsService of removing user", e);
2708 }
Kenny Guyee58b4f2014-05-23 15:19:53 +01002709
Amith Yamasani12747872015-12-07 14:19:49 -08002710 if (userData.info.profileGroupId != UserInfo.NO_PROFILE_GROUP_ID
2711 && userData.info.isManagedProfile()) {
Kenny Guyee58b4f2014-05-23 15:19:53 +01002712 // Send broadcast to notify system that the user removed was a
2713 // managed user.
Amith Yamasani12747872015-12-07 14:19:49 -08002714 sendProfileRemovedBroadcast(userData.info.profileGroupId, userData.info.id);
Kenny Guyee58b4f2014-05-23 15:19:53 +01002715 }
2716
2717 if (DBG) Slog.i(LOG_TAG, "Stopping user " + userHandle);
2718 int res;
2719 try {
Sudheer Shankadc589ac2016-11-10 15:30:17 -08002720 res = ActivityManager.getService().stopUser(userHandle, /* force= */ true,
Fyodor Kupolov9cbfc9e2015-10-07 15:52:33 -07002721 new IStopUserCallback.Stub() {
Kenny Guyee58b4f2014-05-23 15:19:53 +01002722 @Override
2723 public void userStopped(int userId) {
2724 finishRemoveUser(userId);
2725 }
2726 @Override
2727 public void userStopAborted(int userId) {
2728 }
2729 });
2730 } catch (RemoteException e) {
Dianne Hackborn80a4af22012-08-27 19:18:31 -07002731 return false;
2732 }
Kenny Guyee58b4f2014-05-23 15:19:53 +01002733 return res == ActivityManager.USER_OP_SUCCESS;
2734 } finally {
2735 Binder.restoreCallingIdentity(ident);
Dianne Hackborn80a4af22012-08-27 19:18:31 -07002736 }
Dianne Hackborn80a4af22012-08-27 19:18:31 -07002737 }
2738
Fyodor Kupolov0f4533d2016-05-18 18:43:12 -07002739 @VisibleForTesting
2740 void addRemovingUserIdLocked(int userId) {
2741 // We remember deleted user IDs to prevent them from being
2742 // reused during the current boot; they can still be reused
2743 // after a reboot or recycling of userIds.
2744 mRemovingUserIds.put(userId, true);
2745 mRecentlyRemovedIds.add(userId);
2746 // Keep LRU queue of recently removed IDs for recycling
2747 if (mRecentlyRemovedIds.size() > MAX_RECENTLY_REMOVED_IDS_SIZE) {
2748 mRecentlyRemovedIds.removeFirst();
2749 }
2750 }
2751
Amith Yamasanidb6a14c2012-10-17 21:16:52 -07002752 void finishRemoveUser(final int userHandle) {
Amith Yamasani16389312012-10-17 21:20:14 -07002753 if (DBG) Slog.i(LOG_TAG, "finishRemoveUser " + userHandle);
Amith Yamasanidb6a14c2012-10-17 21:16:52 -07002754 // Let other services shutdown any activity and clean up their state before completely
2755 // wiping the user's system directory and removing from the user list
Dianne Hackborn5dc5a002012-09-15 19:33:48 -07002756 long ident = Binder.clearCallingIdentity();
2757 try {
2758 Intent addedIntent = new Intent(Intent.ACTION_USER_REMOVED);
2759 addedIntent.putExtra(Intent.EXTRA_USER_HANDLE, userHandle);
Amith Yamasanidb6a14c2012-10-17 21:16:52 -07002760 mContext.sendOrderedBroadcastAsUser(addedIntent, UserHandle.ALL,
2761 android.Manifest.permission.MANAGE_USERS,
2762
2763 new BroadcastReceiver() {
2764 @Override
2765 public void onReceive(Context context, Intent intent) {
2766 if (DBG) {
2767 Slog.i(LOG_TAG,
2768 "USER_REMOVED broadcast sent, cleaning up user data "
2769 + userHandle);
2770 }
2771 new Thread() {
Amith Yamasani12747872015-12-07 14:19:49 -08002772 @Override
Amith Yamasanidb6a14c2012-10-17 21:16:52 -07002773 public void run() {
Amith Yamasani515d4062015-09-28 11:30:06 -07002774 // Clean up any ActivityManager state
2775 LocalServices.getService(ActivityManagerInternal.class)
2776 .onUserRemoved(userHandle);
Fyodor Kupolove80085d2015-11-06 18:21:39 -08002777 removeUserState(userHandle);
Amith Yamasanidb6a14c2012-10-17 21:16:52 -07002778 }
2779 }.start();
2780 }
2781 },
2782
2783 null, Activity.RESULT_OK, null, null);
Dianne Hackborn5dc5a002012-09-15 19:33:48 -07002784 } finally {
2785 Binder.restoreCallingIdentity(ident);
2786 }
Amith Yamasani2a003292012-08-14 18:25:45 -07002787 }
2788
Fyodor Kupolove80085d2015-11-06 18:21:39 -08002789 private void removeUserState(final int userHandle) {
Paul Crowley91293792016-03-25 15:23:07 -07002790 try {
2791 mContext.getSystemService(StorageManager.class).destroyUserKey(userHandle);
2792 } catch (IllegalStateException e) {
2793 // This may be simply because the user was partially created.
2794 Slog.i(LOG_TAG,
2795 "Destroying key for user " + userHandle + " failed, continuing anyway", e);
2796 }
Jeff Sharkeyfcf1e552016-04-14 20:44:58 -06002797
Amith Yamasanid04aaa32016-06-13 12:09:36 -07002798 // Cleanup gatekeeper secure user id
2799 try {
2800 final IGateKeeperService gk = GateKeeper.getService();
2801 if (gk != null) {
2802 gk.clearSecureUserId(userHandle);
2803 }
2804 } catch (Exception ex) {
2805 Slog.w(LOG_TAG, "unable to clear GK secure user id");
2806 }
2807
Dianne Hackbornd4ac8d72012-09-27 23:20:10 -07002808 // Cleanup package manager settings
Fyodor Kupolove80085d2015-11-06 18:21:39 -08002809 mPm.cleanUpUser(this, userHandle);
Amith Yamasanid04aaa32016-06-13 12:09:36 -07002810
2811 // Clean up all data before removing metadata
Fyodor Kupolov5c0ecfd2017-01-27 11:11:57 -08002812 mUserDataPreparer.destroyUserData(userHandle,
Amith Yamasanid04aaa32016-06-13 12:09:36 -07002813 StorageManager.FLAG_STORAGE_DE | StorageManager.FLAG_STORAGE_CE);
2814
Dianne Hackbornd4ac8d72012-09-27 23:20:10 -07002815 // Remove this user from the list
Fyodor Kupolov82402752015-10-28 14:54:51 -07002816 synchronized (mUsersLock) {
2817 mUsers.remove(userHandle);
Makoto Onukie7927da2015-11-25 10:05:17 -08002818 mIsUserManaged.delete(userHandle);
Amith Yamasaniea1b9d72016-05-27 15:57:38 +00002819 }
2820 synchronized (mUserStates) {
2821 mUserStates.delete(userHandle);
Makoto Onukie7927da2015-11-25 10:05:17 -08002822 }
2823 synchronized (mRestrictionsLock) {
2824 mBaseUserRestrictions.remove(userHandle);
2825 mAppliedUserRestrictions.remove(userHandle);
2826 mCachedEffectiveUserRestrictions.remove(userHandle);
2827 mDevicePolicyLocalUserRestrictions.remove(userHandle);
Pavel Grafov6a40f092016-10-25 15:46:51 +01002828 if (mDevicePolicyGlobalUserRestrictions.get(userHandle) != null) {
2829 mDevicePolicyGlobalUserRestrictions.remove(userHandle);
2830 applyUserRestrictionsForAllUsersLR();
2831 }
Fyodor Kupolov82402752015-10-28 14:54:51 -07002832 }
Dianne Hackbornd4ac8d72012-09-27 23:20:10 -07002833 // Update the user list
Fyodor Kupolove80085d2015-11-06 18:21:39 -08002834 synchronized (mPackagesLock) {
2835 writeUserListLP();
2836 }
Jeff Sharkeycd575992016-03-29 14:12:49 -06002837 // Remove user file
2838 AtomicFile userFile = new AtomicFile(new File(mUsersDir, userHandle + XML_SUFFIX));
2839 userFile.delete();
Fyodor Kupolov82402752015-10-28 14:54:51 -07002840 updateUserIds();
Fyodor Kupolov0f4533d2016-05-18 18:43:12 -07002841 if (RELEASE_DELETED_USER_ID) {
2842 synchronized (mUsers) {
2843 mRemovingUserIds.delete(userHandle);
2844 }
2845 }
Amith Yamasani61f57372012-08-31 12:12:28 -07002846 }
2847
Kenny Guyf8d3a232014-05-15 16:09:52 +01002848 private void sendProfileRemovedBroadcast(int parentUserId, int removedUserId) {
Adam Connors7b66ed52014-04-14 11:58:10 +01002849 Intent managedProfileIntent = new Intent(Intent.ACTION_MANAGED_PROFILE_REMOVED);
Adam Connorsd4b584e2014-06-09 13:55:47 +01002850 managedProfileIntent.addFlags(Intent.FLAG_RECEIVER_REGISTERED_ONLY |
2851 Intent.FLAG_RECEIVER_FOREGROUND);
Kenny Guyf8d3a232014-05-15 16:09:52 +01002852 managedProfileIntent.putExtra(Intent.EXTRA_USER, new UserHandle(removedUserId));
Jeff Sharkeyaf6ec292015-12-17 11:19:00 -07002853 managedProfileIntent.putExtra(Intent.EXTRA_USER_HANDLE, removedUserId);
Kenny Guyf8d3a232014-05-15 16:09:52 +01002854 mContext.sendBroadcastAsUser(managedProfileIntent, new UserHandle(parentUserId), null);
Adam Connors7b66ed52014-04-14 11:58:10 +01002855 }
2856
Amith Yamasani2a003292012-08-14 18:25:45 -07002857 @Override
Amith Yamasani7e99bc02013-04-16 18:24:51 -07002858 public Bundle getApplicationRestrictions(String packageName) {
2859 return getApplicationRestrictionsForUser(packageName, UserHandle.getCallingUserId());
2860 }
2861
2862 @Override
2863 public Bundle getApplicationRestrictionsForUser(String packageName, int userId) {
Amith Yamasanidf2e92a2013-03-01 17:04:38 -08002864 if (UserHandle.getCallingUserId() != userId
Amith Yamasani9429afb2013-04-10 18:40:51 -07002865 || !UserHandle.isSameApp(Binder.getCallingUid(), getUidForPackage(packageName))) {
Amith Yamasani0d1fd8d2016-10-12 14:21:51 -07002866 checkSystemOrRoot("get application restrictions for other user/app " + packageName);
Amith Yamasanidf2e92a2013-03-01 17:04:38 -08002867 }
Fyodor Kupolovd31cee92017-09-05 16:31:08 -07002868 synchronized (mAppRestrictionsLock) {
Amith Yamasanidf2e92a2013-03-01 17:04:38 -08002869 // Read the restrictions from XML
Fyodor Kupolovd31cee92017-09-05 16:31:08 -07002870 return readApplicationRestrictionsLAr(packageName, userId);
Amith Yamasanidf2e92a2013-03-01 17:04:38 -08002871 }
2872 }
2873
2874 @Override
Amith Yamasani7e99bc02013-04-16 18:24:51 -07002875 public void setApplicationRestrictions(String packageName, Bundle restrictions,
Amith Yamasanidf2e92a2013-03-01 17:04:38 -08002876 int userId) {
Esteban Talavera5b9f1672015-12-11 15:22:34 +00002877 checkSystemOrRoot("set application restrictions");
Fyodor Kupolov0d88d542016-04-19 11:37:22 -07002878 if (restrictions != null) {
2879 restrictions.setDefusable(true);
2880 }
Fyodor Kupolovd31cee92017-09-05 16:31:08 -07002881 synchronized (mAppRestrictionsLock) {
Kenny Guyd21b2182014-07-17 16:38:55 +01002882 if (restrictions == null || restrictions.isEmpty()) {
Fyodor Kupolovd31cee92017-09-05 16:31:08 -07002883 cleanAppRestrictionsForPackageLAr(packageName, userId);
Kenny Guyd21b2182014-07-17 16:38:55 +01002884 } else {
2885 // Write the restrictions to XML
Fyodor Kupolovd31cee92017-09-05 16:31:08 -07002886 writeApplicationRestrictionsLAr(packageName, restrictions, userId);
Kenny Guyd21b2182014-07-17 16:38:55 +01002887 }
Amith Yamasanidf2e92a2013-03-01 17:04:38 -08002888 }
Robin Lee66e5d962014-04-09 16:44:21 +01002889
Fyodor Kupolovd2846122016-02-11 18:06:34 -08002890 // Notify package of changes via an intent - only sent to explicitly registered receivers.
2891 Intent changeIntent = new Intent(Intent.ACTION_APPLICATION_RESTRICTIONS_CHANGED);
2892 changeIntent.setPackage(packageName);
2893 changeIntent.addFlags(Intent.FLAG_RECEIVER_REGISTERED_ONLY);
2894 mContext.sendBroadcastAsUser(changeIntent, UserHandle.of(userId));
Amith Yamasanidf2e92a2013-03-01 17:04:38 -08002895 }
2896
2897 private int getUidForPackage(String packageName) {
Amith Yamasani9429afb2013-04-10 18:40:51 -07002898 long ident = Binder.clearCallingIdentity();
Amith Yamasanidf2e92a2013-03-01 17:04:38 -08002899 try {
2900 return mContext.getPackageManager().getApplicationInfo(packageName,
Amith Yamasani0d1fd8d2016-10-12 14:21:51 -07002901 PackageManager.MATCH_ANY_USER).uid;
Amith Yamasanidf2e92a2013-03-01 17:04:38 -08002902 } catch (NameNotFoundException nnfe) {
2903 return -1;
Amith Yamasani9429afb2013-04-10 18:40:51 -07002904 } finally {
2905 Binder.restoreCallingIdentity(ident);
Amith Yamasanidf2e92a2013-03-01 17:04:38 -08002906 }
2907 }
2908
Fyodor Kupolovd31cee92017-09-05 16:31:08 -07002909 @GuardedBy("mAppRestrictionsLock")
2910 private static Bundle readApplicationRestrictionsLAr(String packageName, int userId) {
Fyodor Kupolov262f9952015-03-23 18:55:11 -07002911 AtomicFile restrictionsFile =
2912 new AtomicFile(new File(Environment.getUserSystemDirectory(userId),
2913 packageToRestrictionsFileName(packageName)));
Fyodor Kupolovd31cee92017-09-05 16:31:08 -07002914 return readApplicationRestrictionsLAr(restrictionsFile);
Fyodor Kupolov262f9952015-03-23 18:55:11 -07002915 }
2916
2917 @VisibleForTesting
Fyodor Kupolovd31cee92017-09-05 16:31:08 -07002918 @GuardedBy("mAppRestrictionsLock")
2919 static Bundle readApplicationRestrictionsLAr(AtomicFile restrictionsFile) {
Amith Yamasani7e99bc02013-04-16 18:24:51 -07002920 final Bundle restrictions = new Bundle();
Fyodor Kupolov262f9952015-03-23 18:55:11 -07002921 final ArrayList<String> values = new ArrayList<>();
Fyodor Kupolov6f34d362015-04-02 12:42:13 -07002922 if (!restrictionsFile.getBaseFile().exists()) {
Fyodor Kupolovf6ee2242015-04-06 10:15:07 -07002923 return restrictions;
Fyodor Kupolov6f34d362015-04-02 12:42:13 -07002924 }
Amith Yamasanidf2e92a2013-03-01 17:04:38 -08002925
2926 FileInputStream fis = null;
2927 try {
Amith Yamasanidf2e92a2013-03-01 17:04:38 -08002928 fis = restrictionsFile.openRead();
2929 XmlPullParser parser = Xml.newPullParser();
Wojciech Staszkiewicz9e9e2e72015-05-08 14:58:46 +01002930 parser.setInput(fis, StandardCharsets.UTF_8.name());
Fyodor Kupolov262f9952015-03-23 18:55:11 -07002931 XmlUtils.nextElement(parser);
2932 if (parser.getEventType() != XmlPullParser.START_TAG) {
Amith Yamasanidf2e92a2013-03-01 17:04:38 -08002933 Slog.e(LOG_TAG, "Unable to read restrictions file "
2934 + restrictionsFile.getBaseFile());
Amith Yamasani7e99bc02013-04-16 18:24:51 -07002935 return restrictions;
Amith Yamasanidf2e92a2013-03-01 17:04:38 -08002936 }
Fyodor Kupolov262f9952015-03-23 18:55:11 -07002937 while (parser.next() != XmlPullParser.END_DOCUMENT) {
2938 readEntry(restrictions, values, parser);
Amith Yamasanidf2e92a2013-03-01 17:04:38 -08002939 }
Fyodor Kupolov262f9952015-03-23 18:55:11 -07002940 } catch (IOException|XmlPullParserException e) {
2941 Log.w(LOG_TAG, "Error parsing " + restrictionsFile.getBaseFile(), e);
Amith Yamasanidf2e92a2013-03-01 17:04:38 -08002942 } finally {
Fyodor Kupolov262f9952015-03-23 18:55:11 -07002943 IoUtils.closeQuietly(fis);
Amith Yamasanidf2e92a2013-03-01 17:04:38 -08002944 }
Amith Yamasani7e99bc02013-04-16 18:24:51 -07002945 return restrictions;
Amith Yamasanidf2e92a2013-03-01 17:04:38 -08002946 }
2947
Fyodor Kupolov262f9952015-03-23 18:55:11 -07002948 private static void readEntry(Bundle restrictions, ArrayList<String> values,
2949 XmlPullParser parser) throws XmlPullParserException, IOException {
2950 int type = parser.getEventType();
2951 if (type == XmlPullParser.START_TAG && parser.getName().equals(TAG_ENTRY)) {
2952 String key = parser.getAttributeValue(null, ATTR_KEY);
2953 String valType = parser.getAttributeValue(null, ATTR_VALUE_TYPE);
2954 String multiple = parser.getAttributeValue(null, ATTR_MULTIPLE);
2955 if (multiple != null) {
2956 values.clear();
2957 int count = Integer.parseInt(multiple);
2958 while (count > 0 && (type = parser.next()) != XmlPullParser.END_DOCUMENT) {
2959 if (type == XmlPullParser.START_TAG
2960 && parser.getName().equals(TAG_VALUE)) {
2961 values.add(parser.nextText().trim());
2962 count--;
2963 }
2964 }
2965 String [] valueStrings = new String[values.size()];
2966 values.toArray(valueStrings);
2967 restrictions.putStringArray(key, valueStrings);
2968 } else if (ATTR_TYPE_BUNDLE.equals(valType)) {
2969 restrictions.putBundle(key, readBundleEntry(parser, values));
2970 } else if (ATTR_TYPE_BUNDLE_ARRAY.equals(valType)) {
2971 final int outerDepth = parser.getDepth();
2972 ArrayList<Bundle> bundleList = new ArrayList<>();
2973 while (XmlUtils.nextElementWithin(parser, outerDepth)) {
2974 Bundle childBundle = readBundleEntry(parser, values);
2975 bundleList.add(childBundle);
2976 }
2977 restrictions.putParcelableArray(key,
2978 bundleList.toArray(new Bundle[bundleList.size()]));
2979 } else {
2980 String value = parser.nextText().trim();
2981 if (ATTR_TYPE_BOOLEAN.equals(valType)) {
2982 restrictions.putBoolean(key, Boolean.parseBoolean(value));
2983 } else if (ATTR_TYPE_INTEGER.equals(valType)) {
2984 restrictions.putInt(key, Integer.parseInt(value));
2985 } else {
2986 restrictions.putString(key, value);
2987 }
2988 }
2989 }
2990 }
2991
2992 private static Bundle readBundleEntry(XmlPullParser parser, ArrayList<String> values)
2993 throws IOException, XmlPullParserException {
2994 Bundle childBundle = new Bundle();
2995 final int outerDepth = parser.getDepth();
2996 while (XmlUtils.nextElementWithin(parser, outerDepth)) {
2997 readEntry(childBundle, values, parser);
2998 }
2999 return childBundle;
3000 }
3001
Fyodor Kupolovd31cee92017-09-05 16:31:08 -07003002 @GuardedBy("mAppRestrictionsLock")
3003 private static void writeApplicationRestrictionsLAr(String packageName,
Amith Yamasani7e99bc02013-04-16 18:24:51 -07003004 Bundle restrictions, int userId) {
Amith Yamasanidf2e92a2013-03-01 17:04:38 -08003005 AtomicFile restrictionsFile = new AtomicFile(
3006 new File(Environment.getUserSystemDirectory(userId),
Amith Yamasanifc95e702013-09-26 13:20:17 -07003007 packageToRestrictionsFileName(packageName)));
Fyodor Kupolovd31cee92017-09-05 16:31:08 -07003008 writeApplicationRestrictionsLAr(restrictions, restrictionsFile);
Fyodor Kupolov262f9952015-03-23 18:55:11 -07003009 }
3010
3011 @VisibleForTesting
Fyodor Kupolovd31cee92017-09-05 16:31:08 -07003012 @GuardedBy("mAppRestrictionsLock")
3013 static void writeApplicationRestrictionsLAr(Bundle restrictions, AtomicFile restrictionsFile) {
Fyodor Kupolov262f9952015-03-23 18:55:11 -07003014 FileOutputStream fos = null;
Amith Yamasanidf2e92a2013-03-01 17:04:38 -08003015 try {
3016 fos = restrictionsFile.startWrite();
3017 final BufferedOutputStream bos = new BufferedOutputStream(fos);
3018
Amith Yamasanidf2e92a2013-03-01 17:04:38 -08003019 final XmlSerializer serializer = new FastXmlSerializer();
Wojciech Staszkiewicz9e9e2e72015-05-08 14:58:46 +01003020 serializer.setOutput(bos, StandardCharsets.UTF_8.name());
Amith Yamasanidf2e92a2013-03-01 17:04:38 -08003021 serializer.startDocument(null, true);
3022 serializer.setFeature("http://xmlpull.org/v1/doc/features.html#indent-output", true);
3023
3024 serializer.startTag(null, TAG_RESTRICTIONS);
Fyodor Kupolov262f9952015-03-23 18:55:11 -07003025 writeBundle(restrictions, serializer);
Amith Yamasanidf2e92a2013-03-01 17:04:38 -08003026 serializer.endTag(null, TAG_RESTRICTIONS);
3027
3028 serializer.endDocument();
3029 restrictionsFile.finishWrite(fos);
3030 } catch (Exception e) {
3031 restrictionsFile.failWrite(fos);
Fyodor Kupolov262f9952015-03-23 18:55:11 -07003032 Slog.e(LOG_TAG, "Error writing application restrictions list", e);
3033 }
3034 }
3035
3036 private static void writeBundle(Bundle restrictions, XmlSerializer serializer)
3037 throws IOException {
3038 for (String key : restrictions.keySet()) {
3039 Object value = restrictions.get(key);
3040 serializer.startTag(null, TAG_ENTRY);
3041 serializer.attribute(null, ATTR_KEY, key);
3042
3043 if (value instanceof Boolean) {
3044 serializer.attribute(null, ATTR_VALUE_TYPE, ATTR_TYPE_BOOLEAN);
3045 serializer.text(value.toString());
3046 } else if (value instanceof Integer) {
3047 serializer.attribute(null, ATTR_VALUE_TYPE, ATTR_TYPE_INTEGER);
3048 serializer.text(value.toString());
3049 } else if (value == null || value instanceof String) {
3050 serializer.attribute(null, ATTR_VALUE_TYPE, ATTR_TYPE_STRING);
3051 serializer.text(value != null ? (String) value : "");
3052 } else if (value instanceof Bundle) {
3053 serializer.attribute(null, ATTR_VALUE_TYPE, ATTR_TYPE_BUNDLE);
3054 writeBundle((Bundle) value, serializer);
3055 } else if (value instanceof Parcelable[]) {
3056 serializer.attribute(null, ATTR_VALUE_TYPE, ATTR_TYPE_BUNDLE_ARRAY);
3057 Parcelable[] array = (Parcelable[]) value;
3058 for (Parcelable parcelable : array) {
3059 if (!(parcelable instanceof Bundle)) {
3060 throw new IllegalArgumentException("bundle-array can only hold Bundles");
3061 }
3062 serializer.startTag(null, TAG_ENTRY);
3063 serializer.attribute(null, ATTR_VALUE_TYPE, ATTR_TYPE_BUNDLE);
3064 writeBundle((Bundle) parcelable, serializer);
3065 serializer.endTag(null, TAG_ENTRY);
3066 }
3067 } else {
3068 serializer.attribute(null, ATTR_VALUE_TYPE, ATTR_TYPE_STRING_ARRAY);
3069 String[] values = (String[]) value;
3070 serializer.attribute(null, ATTR_MULTIPLE, Integer.toString(values.length));
3071 for (String choice : values) {
3072 serializer.startTag(null, TAG_VALUE);
3073 serializer.text(choice != null ? choice : "");
3074 serializer.endTag(null, TAG_VALUE);
3075 }
3076 }
3077 serializer.endTag(null, TAG_ENTRY);
Amith Yamasanidf2e92a2013-03-01 17:04:38 -08003078 }
3079 }
3080
3081 @Override
Amith Yamasani2a003292012-08-14 18:25:45 -07003082 public int getUserSerialNumber(int userHandle) {
Fyodor Kupolov82402752015-10-28 14:54:51 -07003083 synchronized (mUsersLock) {
Amith Yamasani2a003292012-08-14 18:25:45 -07003084 if (!exists(userHandle)) return -1;
Fyodor Kupolov82402752015-10-28 14:54:51 -07003085 return getUserInfoLU(userHandle).serialNumber;
Amith Yamasani2a003292012-08-14 18:25:45 -07003086 }
3087 }
3088
3089 @Override
Fyodor Kupolov605b12a2017-05-10 15:58:09 -07003090 public boolean isUserNameSet(int userHandle) {
3091 synchronized (mUsersLock) {
3092 UserInfo userInfo = getUserInfoLU(userHandle);
3093 return userInfo != null && userInfo.name != null;
3094 }
3095 }
3096
3097 @Override
Amith Yamasani2a003292012-08-14 18:25:45 -07003098 public int getUserHandle(int userSerialNumber) {
Fyodor Kupolov82402752015-10-28 14:54:51 -07003099 synchronized (mUsersLock) {
Amith Yamasani2a003292012-08-14 18:25:45 -07003100 for (int userId : mUserIds) {
Fyodor Kupolov82402752015-10-28 14:54:51 -07003101 UserInfo info = getUserInfoLU(userId);
Kenny Guy945f8832015-02-10 15:17:26 +00003102 if (info != null && info.serialNumber == userSerialNumber) return userId;
Amith Yamasani2a003292012-08-14 18:25:45 -07003103 }
3104 // Not found
3105 return -1;
Amith Yamasani13593602012-03-22 16:16:17 -07003106 }
3107 }
3108
Fyodor Kupolovff7233e2015-04-08 11:28:52 -07003109 @Override
3110 public long getUserCreationTime(int userHandle) {
3111 int callingUserId = UserHandle.getCallingUserId();
3112 UserInfo userInfo = null;
Fyodor Kupolov82402752015-10-28 14:54:51 -07003113 synchronized (mUsersLock) {
Fyodor Kupolovff7233e2015-04-08 11:28:52 -07003114 if (callingUserId == userHandle) {
Fyodor Kupolov82402752015-10-28 14:54:51 -07003115 userInfo = getUserInfoLU(userHandle);
Fyodor Kupolovff7233e2015-04-08 11:28:52 -07003116 } else {
Fyodor Kupolov82402752015-10-28 14:54:51 -07003117 UserInfo parent = getProfileParentLU(userHandle);
Fyodor Kupolovff7233e2015-04-08 11:28:52 -07003118 if (parent != null && parent.id == callingUserId) {
Fyodor Kupolov82402752015-10-28 14:54:51 -07003119 userInfo = getUserInfoLU(userHandle);
Fyodor Kupolovff7233e2015-04-08 11:28:52 -07003120 }
3121 }
3122 }
3123 if (userInfo == null) {
3124 throw new SecurityException("userHandle can only be the calling user or a managed "
3125 + "profile associated with this user");
3126 }
3127 return userInfo.creationTime;
3128 }
3129
Amith Yamasani0b285492011-04-14 17:35:23 -07003130 /**
3131 * Caches the list of user ids in an array, adjusting the array size when necessary.
3132 */
Fyodor Kupolov82402752015-10-28 14:54:51 -07003133 private void updateUserIds() {
Dianne Hackbornd4ac8d72012-09-27 23:20:10 -07003134 int num = 0;
Fyodor Kupolov82402752015-10-28 14:54:51 -07003135 synchronized (mUsersLock) {
3136 final int userSize = mUsers.size();
3137 for (int i = 0; i < userSize; i++) {
Amith Yamasani12747872015-12-07 14:19:49 -08003138 if (!mUsers.valueAt(i).info.partial) {
Fyodor Kupolov82402752015-10-28 14:54:51 -07003139 num++;
3140 }
Dianne Hackbornd4ac8d72012-09-27 23:20:10 -07003141 }
Fyodor Kupolov82402752015-10-28 14:54:51 -07003142 final int[] newUsers = new int[num];
3143 int n = 0;
3144 for (int i = 0; i < userSize; i++) {
Amith Yamasani12747872015-12-07 14:19:49 -08003145 if (!mUsers.valueAt(i).info.partial) {
Fyodor Kupolov82402752015-10-28 14:54:51 -07003146 newUsers[n++] = mUsers.keyAt(i);
3147 }
Dianne Hackbornd4ac8d72012-09-27 23:20:10 -07003148 }
Fyodor Kupolov82402752015-10-28 14:54:51 -07003149 mUserIds = newUsers;
Amith Yamasani0b285492011-04-14 17:35:23 -07003150 }
3151 }
3152
3153 /**
Jeff Sharkey0e62384c2016-01-13 18:52:55 -07003154 * Called right before a user is started. This gives us a chance to prepare
3155 * app storage and apply any user restrictions.
Makoto Onuki1a2cd742015-11-16 13:51:27 -08003156 */
3157 public void onBeforeStartUser(int userId) {
Fyodor Kupolovd80c3622016-07-19 17:22:09 -07003158 UserInfo userInfo = getUserInfo(userId);
3159 if (userInfo == null) {
3160 return;
3161 }
3162 final int userSerial = userInfo.serialNumber;
3163 // Migrate only if build fingerprints mismatch
3164 boolean migrateAppsData = !Build.FINGERPRINT.equals(userInfo.lastLoggedInFingerprint);
Fyodor Kupolov5c0ecfd2017-01-27 11:11:57 -08003165 mUserDataPreparer.prepareUserData(userId, userSerial, StorageManager.FLAG_STORAGE_DE);
Fyodor Kupolovd80c3622016-07-19 17:22:09 -07003166 mPm.reconcileAppsData(userId, StorageManager.FLAG_STORAGE_DE, migrateAppsData);
Jeff Sharkey0e62384c2016-01-13 18:52:55 -07003167
3168 if (userId != UserHandle.USER_SYSTEM) {
3169 synchronized (mRestrictionsLock) {
3170 applyUserRestrictionsLR(userId);
3171 }
Makoto Onuki1a2cd742015-11-16 13:51:27 -08003172 }
3173 }
3174
3175 /**
Jeff Sharkey0e62384c2016-01-13 18:52:55 -07003176 * Called right before a user is unlocked. This gives us a chance to prepare
3177 * app storage.
3178 */
Jeff Sharkeybd91e2f2016-03-22 15:32:31 -06003179 public void onBeforeUnlockUser(@UserIdInt int userId) {
Fyodor Kupolovd80c3622016-07-19 17:22:09 -07003180 UserInfo userInfo = getUserInfo(userId);
3181 if (userInfo == null) {
3182 return;
3183 }
3184 final int userSerial = userInfo.serialNumber;
3185 // Migrate only if build fingerprints mismatch
3186 boolean migrateAppsData = !Build.FINGERPRINT.equals(userInfo.lastLoggedInFingerprint);
Fyodor Kupolov5c0ecfd2017-01-27 11:11:57 -08003187 mUserDataPreparer.prepareUserData(userId, userSerial, StorageManager.FLAG_STORAGE_CE);
Fyodor Kupolovd80c3622016-07-19 17:22:09 -07003188 mPm.reconcileAppsData(userId, StorageManager.FLAG_STORAGE_CE, migrateAppsData);
Jeff Sharkey0e62384c2016-01-13 18:52:55 -07003189 }
3190
3191 /**
Fyodor Kupolov50979d12017-01-27 17:36:32 -08003192 * Examine all users present on given mounted volume, and destroy data
3193 * belonging to users that are no longer valid, or whose user ID has been
3194 * recycled.
3195 */
3196 void reconcileUsers(String volumeUuid) {
3197 mUserDataPreparer.reconcileUsers(volumeUuid, getUsers(true /* excludeDying */));
3198 }
3199
3200 /**
Amith Yamasani1a7472e2013-07-02 11:17:30 -07003201 * Make a note of the last started time of a user and do some cleanup.
Amith Yamasanieb437d42016-04-29 09:31:25 -07003202 * This is called with ActivityManagerService lock held.
Amith Yamasani920ace02012-09-20 22:15:37 -07003203 * @param userId the user that was just foregrounded
3204 */
Jeff Sharkeybd91e2f2016-03-22 15:32:31 -06003205 public void onUserLoggedIn(@UserIdInt int userId) {
Amith Yamasani12747872015-12-07 14:19:49 -08003206 UserData userData = getUserDataNoChecks(userId);
3207 if (userData == null || userData.info.partial) {
Fyodor Kupolove80085d2015-11-06 18:21:39 -08003208 Slog.w(LOG_TAG, "userForeground: unknown user #" + userId);
3209 return;
3210 }
Jeff Sharkeybd91e2f2016-03-22 15:32:31 -06003211
3212 final long now = System.currentTimeMillis();
Fyodor Kupolove80085d2015-11-06 18:21:39 -08003213 if (now > EPOCH_PLUS_30_YEARS) {
Amith Yamasani12747872015-12-07 14:19:49 -08003214 userData.info.lastLoggedInTime = now;
Amith Yamasani920ace02012-09-20 22:15:37 -07003215 }
Jeff Sharkeybd91e2f2016-03-22 15:32:31 -06003216 userData.info.lastLoggedInFingerprint = Build.FINGERPRINT;
3217 scheduleWriteUser(userData);
Amith Yamasani920ace02012-09-20 22:15:37 -07003218 }
3219
3220 /**
Amith Yamasani0b285492011-04-14 17:35:23 -07003221 * Returns the next available user id, filling in any holes in the ids.
Amith Yamasani0b285492011-04-14 17:35:23 -07003222 */
Fyodor Kupolov0f4533d2016-05-18 18:43:12 -07003223 @VisibleForTesting
3224 int getNextAvailableId() {
3225 int nextId;
Fyodor Kupolov82402752015-10-28 14:54:51 -07003226 synchronized (mUsersLock) {
Fyodor Kupolov0f4533d2016-05-18 18:43:12 -07003227 nextId = scanNextAvailableIdLocked();
3228 if (nextId >= 0) {
3229 return nextId;
3230 }
3231 // All ids up to MAX_USER_ID were used. Remove all mRemovingUserIds,
3232 // except most recently removed
3233 if (mRemovingUserIds.size() > 0) {
3234 Slog.i(LOG_TAG, "All available IDs are used. Recycling LRU ids.");
3235 mRemovingUserIds.clear();
3236 for (Integer recentlyRemovedId : mRecentlyRemovedIds) {
3237 mRemovingUserIds.put(recentlyRemovedId, true);
Amith Yamasani195263742012-08-21 15:40:12 -07003238 }
Fyodor Kupolov0f4533d2016-05-18 18:43:12 -07003239 nextId = scanNextAvailableIdLocked();
Amith Yamasani4b2e9342011-03-31 12:38:53 -07003240 }
Amith Yamasani4b2e9342011-03-31 12:38:53 -07003241 }
Fyodor Kupolov0f4533d2016-05-18 18:43:12 -07003242 if (nextId < 0) {
3243 throw new IllegalStateException("No user id available!");
3244 }
3245 return nextId;
3246 }
3247
3248 private int scanNextAvailableIdLocked() {
3249 for (int i = MIN_USER_ID; i < MAX_USER_ID; i++) {
3250 if (mUsers.indexOfKey(i) < 0 && !mRemovingUserIds.get(i)) {
3251 return i;
3252 }
3253 }
3254 return -1;
Amith Yamasani4b2e9342011-03-31 12:38:53 -07003255 }
Amith Yamasani920ace02012-09-20 22:15:37 -07003256
Fyodor Kupolovd31cee92017-09-05 16:31:08 -07003257 private static String packageToRestrictionsFileName(String packageName) {
Amith Yamasanifc95e702013-09-26 13:20:17 -07003258 return RESTRICTIONS_FILE_PREFIX + packageName + XML_SUFFIX;
3259 }
3260
Amith Yamasani920ace02012-09-20 22:15:37 -07003261 @Override
Amith Yamasani12747872015-12-07 14:19:49 -08003262 public void setSeedAccountData(int userId, String accountName, String accountType,
3263 PersistableBundle accountOptions, boolean persist) {
3264 checkManageUsersPermission("Require MANAGE_USERS permission to set user seed data");
3265 synchronized (mPackagesLock) {
3266 final UserData userData;
3267 synchronized (mUsersLock) {
3268 userData = getUserDataLU(userId);
3269 if (userData == null) {
3270 Slog.e(LOG_TAG, "No such user for settings seed data u=" + userId);
3271 return;
3272 }
3273 userData.seedAccountName = accountName;
3274 userData.seedAccountType = accountType;
3275 userData.seedAccountOptions = accountOptions;
3276 userData.persistSeedData = persist;
3277 }
3278 if (persist) {
3279 writeUserLP(userData);
3280 }
3281 }
3282 }
3283
3284 @Override
3285 public String getSeedAccountName() throws RemoteException {
3286 checkManageUsersPermission("Cannot get seed account information");
3287 synchronized (mUsersLock) {
3288 UserData userData = getUserDataLU(UserHandle.getCallingUserId());
3289 return userData.seedAccountName;
3290 }
3291 }
3292
3293 @Override
3294 public String getSeedAccountType() throws RemoteException {
3295 checkManageUsersPermission("Cannot get seed account information");
3296 synchronized (mUsersLock) {
3297 UserData userData = getUserDataLU(UserHandle.getCallingUserId());
3298 return userData.seedAccountType;
3299 }
3300 }
3301
3302 @Override
3303 public PersistableBundle getSeedAccountOptions() throws RemoteException {
3304 checkManageUsersPermission("Cannot get seed account information");
3305 synchronized (mUsersLock) {
3306 UserData userData = getUserDataLU(UserHandle.getCallingUserId());
3307 return userData.seedAccountOptions;
3308 }
3309 }
3310
3311 @Override
3312 public void clearSeedAccountData() throws RemoteException {
3313 checkManageUsersPermission("Cannot clear seed account information");
3314 synchronized (mPackagesLock) {
3315 UserData userData;
3316 synchronized (mUsersLock) {
3317 userData = getUserDataLU(UserHandle.getCallingUserId());
3318 if (userData == null) return;
3319 userData.clearSeedAccountData();
3320 }
3321 writeUserLP(userData);
3322 }
3323 }
3324
3325 @Override
3326 public boolean someUserHasSeedAccount(String accountName, String accountType)
3327 throws RemoteException {
3328 checkManageUsersPermission("Cannot check seed account information");
3329 synchronized (mUsersLock) {
3330 final int userSize = mUsers.size();
3331 for (int i = 0; i < userSize; i++) {
3332 final UserData data = mUsers.valueAt(i);
3333 if (data.info.isInitialized()) continue;
3334 if (data.seedAccountName == null || !data.seedAccountName.equals(accountName)) {
3335 continue;
3336 }
3337 if (data.seedAccountType == null || !data.seedAccountType.equals(accountType)) {
3338 continue;
3339 }
3340 return true;
3341 }
3342 }
3343 return false;
3344 }
3345
3346 @Override
Todd Kennedy60459ab2015-10-30 11:32:16 -07003347 public void onShellCommand(FileDescriptor in, FileDescriptor out,
Dianne Hackborn354736e2016-08-22 17:00:05 -07003348 FileDescriptor err, String[] args, ShellCallback callback,
3349 ResultReceiver resultReceiver) {
3350 (new Shell()).exec(this, in, out, err, args, callback, resultReceiver);
Todd Kennedy60459ab2015-10-30 11:32:16 -07003351 }
3352
3353 int onShellCommand(Shell shell, String cmd) {
3354 if (cmd == null) {
3355 return shell.handleDefaultCommands(cmd);
3356 }
3357
3358 final PrintWriter pw = shell.getOutPrintWriter();
3359 try {
3360 switch(cmd) {
3361 case "list":
3362 return runList(pw);
3363 }
3364 } catch (RemoteException e) {
3365 pw.println("Remote exception: " + e);
3366 }
3367 return -1;
3368 }
3369
3370 private int runList(PrintWriter pw) throws RemoteException {
Sudheer Shankadc589ac2016-11-10 15:30:17 -08003371 final IActivityManager am = ActivityManager.getService();
Todd Kennedy60459ab2015-10-30 11:32:16 -07003372 final List<UserInfo> users = getUsers(false);
3373 if (users == null) {
3374 pw.println("Error: couldn't get users");
3375 return 1;
3376 } else {
3377 pw.println("Users:");
3378 for (int i = 0; i < users.size(); i++) {
Jeff Sharkeye17ac152015-11-06 22:40:29 -08003379 String running = am.isUserRunning(users.get(i).id, 0) ? " running" : "";
Todd Kennedy60459ab2015-10-30 11:32:16 -07003380 pw.println("\t" + users.get(i).toString() + running);
3381 }
3382 return 0;
3383 }
3384 }
3385
3386 @Override
Amith Yamasani920ace02012-09-20 22:15:37 -07003387 protected void dump(FileDescriptor fd, PrintWriter pw, String[] args) {
Jeff Sharkeyfe9a53b2017-03-31 14:08:23 -06003388 if (!DumpUtils.checkDumpPermission(mContext, LOG_TAG, pw)) return;
Amith Yamasani920ace02012-09-20 22:15:37 -07003389
3390 long now = System.currentTimeMillis();
3391 StringBuilder sb = new StringBuilder();
3392 synchronized (mPackagesLock) {
Fyodor Kupolov82402752015-10-28 14:54:51 -07003393 synchronized (mUsersLock) {
3394 pw.println("Users:");
3395 for (int i = 0; i < mUsers.size(); i++) {
Amith Yamasani12747872015-12-07 14:19:49 -08003396 UserData userData = mUsers.valueAt(i);
3397 if (userData == null) {
Fyodor Kupolov82402752015-10-28 14:54:51 -07003398 continue;
3399 }
Amith Yamasani12747872015-12-07 14:19:49 -08003400 UserInfo userInfo = userData.info;
3401 final int userId = userInfo.id;
3402 pw.print(" "); pw.print(userInfo);
3403 pw.print(" serialNo="); pw.print(userInfo.serialNumber);
Makoto Onukie7927da2015-11-25 10:05:17 -08003404 if (mRemovingUserIds.get(userId)) {
Fyodor Kupolov82402752015-10-28 14:54:51 -07003405 pw.print(" <removing> ");
3406 }
Amith Yamasani12747872015-12-07 14:19:49 -08003407 if (userInfo.partial) {
Fyodor Kupolov82402752015-10-28 14:54:51 -07003408 pw.print(" <partial>");
3409 }
3410 pw.println();
Makoto Onuki88aef752017-03-29 16:52:03 -07003411 pw.print(" State: ");
3412 final int state;
3413 synchronized (mUserStates) {
3414 state = mUserStates.get(userId, -1);
3415 }
3416 pw.println(UserState.stateToString(state));
Fyodor Kupolov82402752015-10-28 14:54:51 -07003417 pw.print(" Created: ");
Amith Yamasani12747872015-12-07 14:19:49 -08003418 if (userInfo.creationTime == 0) {
Fyodor Kupolov82402752015-10-28 14:54:51 -07003419 pw.println("<unknown>");
3420 } else {
3421 sb.setLength(0);
Amith Yamasani12747872015-12-07 14:19:49 -08003422 TimeUtils.formatDuration(now - userInfo.creationTime, sb);
Fyodor Kupolov82402752015-10-28 14:54:51 -07003423 sb.append(" ago");
3424 pw.println(sb);
3425 }
3426 pw.print(" Last logged in: ");
Amith Yamasani12747872015-12-07 14:19:49 -08003427 if (userInfo.lastLoggedInTime == 0) {
Fyodor Kupolov82402752015-10-28 14:54:51 -07003428 pw.println("<unknown>");
3429 } else {
3430 sb.setLength(0);
Amith Yamasani12747872015-12-07 14:19:49 -08003431 TimeUtils.formatDuration(now - userInfo.lastLoggedInTime, sb);
Fyodor Kupolov82402752015-10-28 14:54:51 -07003432 sb.append(" ago");
3433 pw.println(sb);
3434 }
Jeff Sharkeybd91e2f2016-03-22 15:32:31 -06003435 pw.print(" Last logged in fingerprint: ");
3436 pw.println(userInfo.lastLoggedInFingerprint);
Makoto Onukie7927da2015-11-25 10:05:17 -08003437 pw.print(" Has profile owner: ");
3438 pw.println(mIsUserManaged.get(userId));
Fyodor Kupolov82402752015-10-28 14:54:51 -07003439 pw.println(" Restrictions:");
3440 synchronized (mRestrictionsLock) {
3441 UserRestrictionsUtils.dumpRestrictions(
Amith Yamasani12747872015-12-07 14:19:49 -08003442 pw, " ", mBaseUserRestrictions.get(userInfo.id));
Pavel Grafov6a40f092016-10-25 15:46:51 +01003443 pw.println(" Device policy global restrictions:");
3444 UserRestrictionsUtils.dumpRestrictions(
3445 pw, " ", mDevicePolicyGlobalUserRestrictions.get(userInfo.id));
Makoto Onuki1a2cd742015-11-16 13:51:27 -08003446 pw.println(" Device policy local restrictions:");
3447 UserRestrictionsUtils.dumpRestrictions(
Amith Yamasani12747872015-12-07 14:19:49 -08003448 pw, " ", mDevicePolicyLocalUserRestrictions.get(userInfo.id));
Fyodor Kupolov82402752015-10-28 14:54:51 -07003449 pw.println(" Effective restrictions:");
3450 UserRestrictionsUtils.dumpRestrictions(
Amith Yamasani12747872015-12-07 14:19:49 -08003451 pw, " ", mCachedEffectiveUserRestrictions.get(userInfo.id));
Fyodor Kupolov82402752015-10-28 14:54:51 -07003452 }
Amith Yamasani12747872015-12-07 14:19:49 -08003453
3454 if (userData.account != null) {
3455 pw.print(" Account name: " + userData.account);
Xiaohui Chenb3b92582015-12-07 11:22:13 -08003456 pw.println();
3457 }
Amith Yamasani12747872015-12-07 14:19:49 -08003458
3459 if (userData.seedAccountName != null) {
3460 pw.print(" Seed account name: " + userData.seedAccountName);
3461 pw.println();
3462 if (userData.seedAccountType != null) {
3463 pw.print(" account type: " + userData.seedAccountType);
3464 pw.println();
3465 }
3466 if (userData.seedAccountOptions != null) {
3467 pw.print(" account options exist");
3468 pw.println();
3469 }
3470 }
Amith Yamasani920ace02012-09-20 22:15:37 -07003471 }
Amith Yamasani920ace02012-09-20 22:15:37 -07003472 }
Amith Yamasani12747872015-12-07 14:19:49 -08003473 pw.println();
Pavel Grafov6a40f092016-10-25 15:46:51 +01003474 pw.println(" Device owner id:" + mDeviceOwnerUserId);
Zoltan Szatmary-Bane7834602016-04-08 18:41:11 +01003475 pw.println();
Makoto Onuki1a2cd742015-11-16 13:51:27 -08003476 pw.println(" Guest restrictions:");
Fyodor Kupolove80085d2015-11-06 18:21:39 -08003477 synchronized (mGuestRestrictions) {
Makoto Onuki1a2cd742015-11-16 13:51:27 -08003478 UserRestrictionsUtils.dumpRestrictions(pw, " ", mGuestRestrictions);
Fyodor Kupolove80085d2015-11-06 18:21:39 -08003479 }
Makoto Onukie7927da2015-11-25 10:05:17 -08003480 synchronized (mUsersLock) {
3481 pw.println();
3482 pw.println(" Device managed: " + mIsDeviceManaged);
Fyodor Kupolov0f4533d2016-05-18 18:43:12 -07003483 if (mRemovingUserIds.size() > 0) {
3484 pw.println();
3485 pw.println(" Recently removed userIds: " + mRecentlyRemovedIds);
3486 }
Makoto Onukie7927da2015-11-25 10:05:17 -08003487 }
Amith Yamasaniea1b9d72016-05-27 15:57:38 +00003488 synchronized (mUserStates) {
3489 pw.println(" Started users state: " + mUserStates);
3490 }
Amith Yamasani12747872015-12-07 14:19:49 -08003491 // Dump some capabilities
3492 pw.println();
3493 pw.println(" Max users: " + UserManager.getMaxSupportedUsers());
3494 pw.println(" Supports switchable users: " + UserManager.supportsMultipleUsers());
Lenka Trochtova02fee152015-12-22 14:26:18 +01003495 pw.println(" All guests ephemeral: " + Resources.getSystem().getBoolean(
3496 com.android.internal.R.bool.config_guestUserEphemeral));
Amith Yamasani920ace02012-09-20 22:15:37 -07003497 }
3498 }
Fyodor Kupolov75d0ea82014-12-15 16:21:07 -08003499
3500 final class MainHandler extends Handler {
3501
3502 @Override
3503 public void handleMessage(Message msg) {
3504 switch (msg.what) {
3505 case WRITE_USER_MSG:
3506 removeMessages(WRITE_USER_MSG, msg.obj);
3507 synchronized (mPackagesLock) {
Amith Yamasani12747872015-12-07 14:19:49 -08003508 int userId = ((UserData) msg.obj).info.id;
3509 UserData userData = getUserDataNoChecks(userId);
3510 if (userData != null) {
3511 writeUserLP(userData);
Fyodor Kupolov75d0ea82014-12-15 16:21:07 -08003512 }
3513 }
3514 }
3515 }
3516 }
Amith Yamasanibb054c92015-07-09 14:16:27 -07003517
3518 /**
3519 * @param userId
3520 * @return whether the user has been initialized yet
3521 */
Todd Kennedy0eb97382017-10-03 16:57:22 -07003522 boolean isUserInitialized(int userId) {
3523 return mLocalService.isUserInitialized(userId);
Amith Yamasanibb054c92015-07-09 14:16:27 -07003524 }
Makoto Onuki068c54a2015-10-13 14:34:03 -07003525
3526 private class LocalService extends UserManagerInternal {
Makoto Onuki068c54a2015-10-13 14:34:03 -07003527 @Override
Pavel Grafov6a40f092016-10-25 15:46:51 +01003528 public void setDevicePolicyUserRestrictions(int userId, @Nullable Bundle restrictions,
3529 boolean isDeviceOwner, int cameraRestrictionScope) {
3530 UserManagerService.this.setDevicePolicyUserRestrictionsInner(userId, restrictions,
3531 isDeviceOwner, cameraRestrictionScope);
Makoto Onuki068c54a2015-10-13 14:34:03 -07003532 }
3533
3534 @Override
3535 public Bundle getBaseUserRestrictions(int userId) {
3536 synchronized (mRestrictionsLock) {
3537 return mBaseUserRestrictions.get(userId);
3538 }
3539 }
3540
3541 @Override
3542 public void setBaseUserRestrictionsByDpmsForMigration(
3543 int userId, Bundle baseRestrictions) {
3544 synchronized (mRestrictionsLock) {
Pavel Grafov6a40f092016-10-25 15:46:51 +01003545 if (updateRestrictionsIfNeededLR(
3546 userId, new Bundle(baseRestrictions), mBaseUserRestrictions)) {
3547 invalidateEffectiveUserRestrictionsLR(userId);
3548 }
Makoto Onuki068c54a2015-10-13 14:34:03 -07003549 }
3550
Amith Yamasani12747872015-12-07 14:19:49 -08003551 final UserData userData = getUserDataNoChecks(userId);
Makoto Onuki068c54a2015-10-13 14:34:03 -07003552 synchronized (mPackagesLock) {
Amith Yamasani12747872015-12-07 14:19:49 -08003553 if (userData != null) {
3554 writeUserLP(userData);
Makoto Onuki068c54a2015-10-13 14:34:03 -07003555 } else {
3556 Slog.w(LOG_TAG, "UserInfo not found for " + userId);
3557 }
3558 }
3559 }
Makoto Onukid45a4a22015-11-02 17:17:38 -08003560
3561 @Override
3562 public boolean getUserRestriction(int userId, String key) {
3563 return getUserRestrictions(userId).getBoolean(key);
3564 }
3565
3566 @Override
3567 public void addUserRestrictionsListener(UserRestrictionsListener listener) {
3568 synchronized (mUserRestrictionsListeners) {
3569 mUserRestrictionsListeners.add(listener);
3570 }
3571 }
3572
3573 @Override
3574 public void removeUserRestrictionsListener(UserRestrictionsListener listener) {
3575 synchronized (mUserRestrictionsListeners) {
3576 mUserRestrictionsListeners.remove(listener);
3577 }
3578 }
Makoto Onukie7927da2015-11-25 10:05:17 -08003579
3580 @Override
3581 public void setDeviceManaged(boolean isManaged) {
3582 synchronized (mUsersLock) {
3583 mIsDeviceManaged = isManaged;
3584 }
3585 }
3586
3587 @Override
3588 public void setUserManaged(int userId, boolean isManaged) {
3589 synchronized (mUsersLock) {
3590 mIsUserManaged.put(userId, isManaged);
3591 }
3592 }
Oleksandr Peletskyi7f1f1df2016-01-18 15:40:21 +01003593
3594 @Override
3595 public void setUserIcon(int userId, Bitmap bitmap) {
3596 long ident = Binder.clearCallingIdentity();
3597 try {
3598 synchronized (mPackagesLock) {
3599 UserData userData = getUserDataNoChecks(userId);
3600 if (userData == null || userData.info.partial) {
3601 Slog.w(LOG_TAG, "setUserIcon: unknown user #" + userId);
3602 return;
3603 }
3604 writeBitmapLP(userData.info, bitmap);
3605 writeUserLP(userData);
3606 }
3607 sendUserInfoChangedBroadcast(userId);
3608 } finally {
3609 Binder.restoreCallingIdentity(ident);
3610 }
3611 }
Lenka Trochtovaf348e8e2016-01-07 17:20:34 +01003612
3613 @Override
3614 public void setForceEphemeralUsers(boolean forceEphemeralUsers) {
3615 synchronized (mUsersLock) {
3616 mForceEphemeralUsers = forceEphemeralUsers;
3617 }
3618 }
3619
3620 @Override
3621 public void removeAllUsers() {
3622 if (UserHandle.USER_SYSTEM == ActivityManager.getCurrentUser()) {
3623 // Remove the non-system users straight away.
3624 removeNonSystemUsers();
3625 } else {
3626 // Switch to the system user first and then remove the other users.
3627 BroadcastReceiver userSwitchedReceiver = new BroadcastReceiver() {
3628 @Override
3629 public void onReceive(Context context, Intent intent) {
3630 int userId =
3631 intent.getIntExtra(Intent.EXTRA_USER_HANDLE, UserHandle.USER_NULL);
3632 if (userId != UserHandle.USER_SYSTEM) {
3633 return;
3634 }
3635 mContext.unregisterReceiver(this);
3636 removeNonSystemUsers();
3637 }
3638 };
3639 IntentFilter userSwitchedFilter = new IntentFilter();
3640 userSwitchedFilter.addAction(Intent.ACTION_USER_SWITCHED);
3641 mContext.registerReceiver(
3642 userSwitchedReceiver, userSwitchedFilter, null, mHandler);
3643
3644 // Switch to the system user.
3645 ActivityManager am =
3646 (ActivityManager) mContext.getSystemService(Context.ACTIVITY_SERVICE);
3647 am.switchUser(UserHandle.USER_SYSTEM);
3648 }
3649 }
phweisse9c44062016-02-10 12:57:38 +01003650
3651 @Override
Lenka Trochtova1ddda472016-02-12 10:42:12 +01003652 public void onEphemeralUserStop(int userId) {
3653 synchronized (mUsersLock) {
3654 UserInfo userInfo = getUserInfoLU(userId);
3655 if (userInfo != null && userInfo.isEphemeral()) {
3656 // Do not allow switching back to the ephemeral user again as the user is going
3657 // to be deleted.
3658 userInfo.flags |= UserInfo.FLAG_DISABLED;
3659 if (userInfo.isGuest()) {
3660 // Indicate that the guest will be deleted after it stops.
3661 userInfo.guestToRemove = true;
3662 }
3663 }
3664 }
3665 }
3666
3667 @Override
phweisse9c44062016-02-10 12:57:38 +01003668 public UserInfo createUserEvenWhenDisallowed(String name, int flags) {
Sudheer Shanka7cb54a32016-09-16 12:59:05 -07003669 UserInfo user = createUserInternalUnchecked(name, flags, UserHandle.USER_NULL, null);
phweisse9c44062016-02-10 12:57:38 +01003670 // Keep this in sync with UserManager.createUser
Christine Franks97a54802017-08-09 10:06:43 -07003671 if (user != null && !user.isAdmin() && !user.isDemo()) {
phweisse9c44062016-02-10 12:57:38 +01003672 setUserRestriction(UserManager.DISALLOW_SMS, true, user.id);
3673 setUserRestriction(UserManager.DISALLOW_OUTGOING_CALLS, true, user.id);
3674 }
3675 return user;
3676 }
Fyodor Kupolov6c915ea2016-05-09 19:10:53 -07003677
3678 @Override
Nicolas Prevotdf1b87d2016-10-25 13:57:08 +01003679 public boolean removeUserEvenWhenDisallowed(int userId) {
3680 return removeUserUnchecked(userId);
3681 }
3682
3683 @Override
Amith Yamasaniea1b9d72016-05-27 15:57:38 +00003684 public boolean isUserRunning(int userId) {
3685 synchronized (mUserStates) {
3686 return mUserStates.get(userId, -1) >= 0;
3687 }
3688 }
3689
3690 @Override
3691 public void setUserState(int userId, int userState) {
3692 synchronized (mUserStates) {
3693 mUserStates.put(userId, userState);
3694 }
3695 }
3696
3697 @Override
3698 public void removeUserState(int userId) {
3699 synchronized (mUserStates) {
3700 mUserStates.delete(userId);
Fyodor Kupolov6c915ea2016-05-09 19:10:53 -07003701 }
3702 }
3703
3704 @Override
Michael Wachenschwanz3f2b6552017-05-15 13:53:09 -07003705 public int[] getUserIds() {
3706 return UserManagerService.this.getUserIds();
3707 }
3708
3709 @Override
Fyodor Kupolov6c915ea2016-05-09 19:10:53 -07003710 public boolean isUserUnlockingOrUnlocked(int userId) {
Fyodor Kupolov0468ee92017-05-25 17:06:17 -07003711 int state;
Amith Yamasaniea1b9d72016-05-27 15:57:38 +00003712 synchronized (mUserStates) {
Fyodor Kupolov0468ee92017-05-25 17:06:17 -07003713 state = mUserStates.get(userId, -1);
Fyodor Kupolov6c915ea2016-05-09 19:10:53 -07003714 }
Fyodor Kupolov0468ee92017-05-25 17:06:17 -07003715 // Special case, in the stopping/shutdown state user key can still be unlocked
3716 if (state == UserState.STATE_STOPPING || state == UserState.STATE_SHUTDOWN) {
3717 return StorageManager.isUserKeyUnlocked(userId);
3718 }
3719 return (state == UserState.STATE_RUNNING_UNLOCKING)
3720 || (state == UserState.STATE_RUNNING_UNLOCKED);
Fyodor Kupolov6c915ea2016-05-09 19:10:53 -07003721 }
Fyodor Kupolov2e7e0962016-12-01 18:09:17 -08003722
3723 @Override
3724 public boolean isUserUnlocked(int userId) {
Fyodor Kupolov0468ee92017-05-25 17:06:17 -07003725 int state;
Fyodor Kupolov2e7e0962016-12-01 18:09:17 -08003726 synchronized (mUserStates) {
Fyodor Kupolov0468ee92017-05-25 17:06:17 -07003727 state = mUserStates.get(userId, -1);
Fyodor Kupolov2e7e0962016-12-01 18:09:17 -08003728 }
Fyodor Kupolov0468ee92017-05-25 17:06:17 -07003729 // Special case, in the stopping/shutdown state user key can still be unlocked
3730 if (state == UserState.STATE_STOPPING || state == UserState.STATE_SHUTDOWN) {
3731 return StorageManager.isUserKeyUnlocked(userId);
3732 }
3733 return state == UserState.STATE_RUNNING_UNLOCKED;
Fyodor Kupolov2e7e0962016-12-01 18:09:17 -08003734 }
Todd Kennedy0eb97382017-10-03 16:57:22 -07003735
3736 @Override
3737 public boolean isUserInitialized(int userId) {
3738 return (getUserInfo(userId).flags & UserInfo.FLAG_INITIALIZED) != 0;
3739 }
3740
3741 @Override
3742 public boolean exists(int userId) {
3743 return getUserInfoNoChecks(userId) != null;
3744 }
Lenka Trochtovaf348e8e2016-01-07 17:20:34 +01003745 }
3746
3747 /* Remove all the users except of the system one. */
3748 private void removeNonSystemUsers() {
3749 ArrayList<UserInfo> usersToRemove = new ArrayList<>();
3750 synchronized (mUsersLock) {
3751 final int userSize = mUsers.size();
3752 for (int i = 0; i < userSize; i++) {
3753 UserInfo ui = mUsers.valueAt(i).info;
3754 if (ui.id != UserHandle.USER_SYSTEM) {
3755 usersToRemove.add(ui);
3756 }
3757 }
3758 }
3759 for (UserInfo ui: usersToRemove) {
3760 removeUser(ui.id);
3761 }
Makoto Onuki068c54a2015-10-13 14:34:03 -07003762 }
Todd Kennedy60459ab2015-10-30 11:32:16 -07003763
3764 private class Shell extends ShellCommand {
3765 @Override
3766 public int onCommand(String cmd) {
3767 return onShellCommand(this, cmd);
3768 }
3769
3770 @Override
3771 public void onHelp() {
3772 final PrintWriter pw = getOutPrintWriter();
3773 pw.println("User manager (user) commands:");
3774 pw.println(" help");
3775 pw.println(" Print this help text.");
3776 pw.println("");
3777 pw.println(" list");
3778 pw.println(" Prints all users on the system.");
3779 }
3780 }
Makoto Onuki1a2cd742015-11-16 13:51:27 -08003781
3782 private static void debug(String message) {
3783 Log.d(LOG_TAG, message +
3784 (DBG_WITH_STACKTRACE ? " called at\n" + Debug.getCallers(10, " ") : ""));
3785 }
Kenny Guy02c89902016-11-15 19:36:38 +00003786
3787 @VisibleForTesting
3788 static int getMaxManagedProfiles() {
3789 // Allow overriding max managed profiles on debuggable builds for testing
3790 // of multiple profiles.
3791 if (!Build.IS_DEBUGGABLE) {
3792 return MAX_MANAGED_PROFILES;
3793 } else {
3794 return SystemProperties.getInt("persist.sys.max_profiles",
3795 MAX_MANAGED_PROFILES);
3796 }
3797 }
3798
3799 @VisibleForTesting
3800 int getFreeProfileBadgeLU(int parentUserId) {
3801 int maxManagedProfiles = getMaxManagedProfiles();
3802 boolean[] usedBadges = new boolean[maxManagedProfiles];
3803 final int userSize = mUsers.size();
3804 for (int i = 0; i < userSize; i++) {
3805 UserInfo ui = mUsers.valueAt(i).info;
3806 // Check which badge indexes are already used by this profile group.
3807 if (ui.isManagedProfile()
3808 && ui.profileGroupId == parentUserId
3809 && !mRemovingUserIds.get(ui.id)
3810 && ui.profileBadge < maxManagedProfiles) {
3811 usedBadges[ui.profileBadge] = true;
3812 }
3813 }
3814 for (int i = 0; i < maxManagedProfiles; i++) {
3815 if (!usedBadges[i]) {
3816 return i;
3817 }
3818 }
3819 return 0;
3820 }
Amith Yamasani0d1fd8d2016-10-12 14:21:51 -07003821
3822 /**
3823 * Checks if the given user has a managed profile associated with it.
3824 * @param userId The parent user
3825 * @return
3826 */
3827 boolean hasManagedProfile(int userId) {
3828 synchronized (mUsersLock) {
3829 UserInfo userInfo = getUserInfoLU(userId);
3830 final int userSize = mUsers.size();
3831 for (int i = 0; i < userSize; i++) {
3832 UserInfo profile = mUsers.valueAt(i).info;
3833 if (userId != profile.id && isProfileOf(userInfo, profile)) {
3834 return true;
3835 }
3836 }
3837 return false;
3838 }
3839 }
Amith Yamasani4b2e9342011-03-31 12:38:53 -07003840}