blob: f846d355d7f366952abf5ed71ea284cd47165bfe [file] [log] [blame]
Ying Zhengd3cb98e2018-05-11 11:42:48 -07001/*
2 * Copyright (C) 2018 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.car.user;
18
Eric Jeong1545f3b2019-09-16 13:56:52 -070019import static com.android.car.CarLog.TAG_USER;
20
21import android.annotation.NonNull;
Ying Zhengd3cb98e2018-05-11 11:42:48 -070022import android.annotation.Nullable;
Eric Jeong1545f3b2019-09-16 13:56:52 -070023import android.annotation.UserIdInt;
Keun young Parkfb656372019-03-12 18:37:55 -070024import android.app.ActivityManager;
Eric Jeongc91f9452019-08-30 15:04:21 -070025import android.app.ActivityManager.StackInfo;
Keun young Parkfb656372019-03-12 18:37:55 -070026import android.app.IActivityManager;
Eric Jeongc91f9452019-08-30 15:04:21 -070027import android.car.CarOccupantZoneManager;
28import android.car.CarOccupantZoneManager.OccupantTypeEnum;
29import android.car.CarOccupantZoneManager.OccupantZoneInfo;
Eric Jeong1545f3b2019-09-16 13:56:52 -070030import android.car.ICarUserService;
jovanak24470652018-09-11 17:51:57 -070031import android.car.settings.CarSettings;
Felipe Leme5528ff72020-02-10 19:05:14 -080032import android.car.user.CarUserManager;
Antonio Kantekc8114752020-03-05 21:37:39 -080033import android.car.user.CarUserManager.UserLifecycleEvent;
felipeale8c5dce2020-04-15 11:27:06 -070034import android.car.user.CarUserManager.UserLifecycleEventType;
Antonio Kantekc8114752020-03-05 21:37:39 -080035import android.car.user.CarUserManager.UserLifecycleListener;
felipealdfdf8512020-06-01 09:35:45 -070036import android.car.user.UserCreationResult;
felipeal159a2a42020-05-08 10:32:11 -070037import android.car.user.UserIdentificationAssociationResponse;
Mayank Garga55c3092020-05-28 03:19:24 -070038import android.car.user.UserRemovalResult;
felipeale5bf0322020-04-16 15:10:57 -070039import android.car.user.UserSwitchResult;
Eric Jeong3a793b02019-09-30 16:12:53 -070040import android.car.userlib.CarUserManagerHelper;
felipeal19e3d732020-03-18 12:07:32 -070041import android.car.userlib.HalCallback;
42import android.car.userlib.UserHalHelper;
Mayank Garga480dd92020-05-14 03:14:57 -070043import android.content.ComponentName;
Ying Zhengd3cb98e2018-05-11 11:42:48 -070044import android.content.Context;
Mayank Garga480dd92020-05-14 03:14:57 -070045import android.content.pm.PackageManager;
46import android.content.pm.PackageManager.NameNotFoundException;
Eric Jeong1545f3b2019-09-16 13:56:52 -070047import android.content.pm.UserInfo;
felipealdfdf8512020-06-01 09:35:45 -070048import android.content.pm.UserInfo.UserInfoFlag;
Felipe Leme315a53b2020-03-12 10:51:04 -070049import android.content.res.Resources;
Anthony Hugh6fed1e92019-10-22 16:22:03 -070050import android.graphics.Bitmap;
felipealdfdf8512020-06-01 09:35:45 -070051import android.hardware.automotive.vehicle.V2_0.CreateUserRequest;
52import android.hardware.automotive.vehicle.V2_0.CreateUserStatus;
Mayank Garg70732a82020-08-05 20:17:47 -070053import android.hardware.automotive.vehicle.V2_0.InitialUserInfoRequestType;
Felipe Lemec6e3c2a2020-02-19 16:53:57 -080054import android.hardware.automotive.vehicle.V2_0.InitialUserInfoResponseAction;
Mayank Garga55c3092020-05-28 03:19:24 -070055import android.hardware.automotive.vehicle.V2_0.RemoveUserRequest;
Mayank Gargeb37d092020-06-02 14:37:57 -070056import android.hardware.automotive.vehicle.V2_0.SwitchUserRequest;
Mayank Garg59f22192020-03-27 00:51:45 -070057import android.hardware.automotive.vehicle.V2_0.SwitchUserStatus;
felipeal5e3ede42020-04-23 18:04:07 -070058import android.hardware.automotive.vehicle.V2_0.UserIdentificationGetRequest;
59import android.hardware.automotive.vehicle.V2_0.UserIdentificationResponse;
felipeal159a2a42020-05-08 10:32:11 -070060import android.hardware.automotive.vehicle.V2_0.UserIdentificationSetAssociation;
61import android.hardware.automotive.vehicle.V2_0.UserIdentificationSetRequest;
Felipe Lemec6e3c2a2020-02-19 16:53:57 -080062import android.hardware.automotive.vehicle.V2_0.UsersInfo;
Ying Zheng1ab32b62018-06-26 12:47:26 -070063import android.location.LocationManager;
Eric Jeong1545f3b2019-09-16 13:56:52 -070064import android.os.Binder;
Felipe Leme5528ff72020-02-10 19:05:14 -080065import android.os.Bundle;
Antonio Kantek7236a5b2020-04-06 19:53:55 -070066import android.os.Handler;
67import android.os.HandlerThread;
Keun young Parkfb656372019-03-12 18:37:55 -070068import android.os.RemoteException;
Mayank Garg31e73042020-01-23 00:10:38 -080069import android.os.Trace;
Ying Zhengcf20f442018-06-22 16:54:51 -070070import android.os.UserHandle;
Ying Zheng8f90edb2018-06-13 12:42:31 -070071import android.os.UserManager;
jovanak24470652018-09-11 17:51:57 -070072import android.provider.Settings;
Felipe Lemee3cab982020-03-12 11:39:29 -070073import android.sysprop.CarProperties;
felipeal159a2a42020-05-08 10:32:11 -070074import android.text.TextUtils;
felipeal312416a2020-04-14 12:28:24 -070075import android.util.EventLog;
Ying Zhengd3cb98e2018-05-11 11:42:48 -070076import android.util.Log;
Felipe Leme5528ff72020-02-10 19:05:14 -080077import android.util.SparseArray;
Mayank Garg31e73042020-01-23 00:10:38 -080078import android.util.TimingsTraceLog;
Ying Zhengd3cb98e2018-05-11 11:42:48 -070079
80import com.android.car.CarServiceBase;
Keun young Parkb241d022020-04-20 20:31:34 -070081import com.android.car.CarServiceUtils;
Eric Jeongc91f9452019-08-30 15:04:21 -070082import com.android.car.R;
Felipe Leme58412202020-01-09 13:45:33 -080083import com.android.car.hal.UserHalService;
Mayank Garg94f3eb92020-08-12 12:38:58 -070084import com.android.car.internal.CommonConstants;
85import com.android.car.internal.EventLogTags;
86import com.android.car.internal.UserHelperLite;
Mayank Garg4bdfbf72020-08-06 13:27:43 -070087import com.android.car.power.CarPowerManagementService;
Mayank Garg665c20b2020-08-07 16:19:28 -070088import com.android.car.user.InitialUserSetter.InitialUserInfo;
Keun-young Parkd462a912019-02-11 08:53:42 -080089import com.android.internal.annotations.GuardedBy;
Keun young Parkf3523cd2019-04-08 10:09:17 -070090import com.android.internal.annotations.VisibleForTesting;
felipeale5bf0322020-04-16 15:10:57 -070091import com.android.internal.infra.AndroidFuture;
Felipe Leme5528ff72020-02-10 19:05:14 -080092import com.android.internal.os.IResultReceiver;
felipeal5e3ede42020-04-23 18:04:07 -070093import com.android.internal.util.ArrayUtils;
felipeal2a84d512020-04-06 18:52:15 -070094import com.android.internal.util.FunctionalUtils;
Mayank Garge19c2922020-03-30 18:05:53 -070095import com.android.internal.util.Preconditions;
Anthony Hugh6fed1e92019-10-22 16:22:03 -070096import com.android.internal.util.UserIcons;
Ying Zhengd3cb98e2018-05-11 11:42:48 -070097
98import java.io.PrintWriter;
Keun-young Parkd462a912019-02-11 08:53:42 -080099import java.util.ArrayList;
felipeal2d0483c2019-11-02 14:07:22 -0700100import java.util.Arrays;
Eric Jeong1545f3b2019-09-16 13:56:52 -0700101import java.util.Iterator;
102import java.util.List;
Daulet Zhanguzin4ded6782020-01-03 15:47:10 +0000103import java.util.Objects;
Pavel Maltsev17e81832019-04-04 14:38:41 -0700104import java.util.concurrent.CopyOnWriteArrayList;
Antonio Kantek7236a5b2020-04-06 19:53:55 -0700105import java.util.concurrent.CountDownLatch;
106import java.util.concurrent.TimeUnit;
Ying Zhengd3cb98e2018-05-11 11:42:48 -0700107
108/**
109 * User service for cars. Manages users at boot time. Including:
110 *
111 * <ol>
Eric Jeong1545f3b2019-09-16 13:56:52 -0700112 * <li> Creates a user used as driver.
113 * <li> Creates a user used as passenger.
Ying Zhengd3cb98e2018-05-11 11:42:48 -0700114 * <li> Creates a secondary admin user on first run.
Eric Jeong1545f3b2019-09-16 13:56:52 -0700115 * <li> Switch drivers.
Ying Zhengd3cb98e2018-05-11 11:42:48 -0700116 * <ol/>
117 */
Eric Jeong1545f3b2019-09-16 13:56:52 -0700118public final class CarUserService extends ICarUserService.Stub implements CarServiceBase {
Felipe Leme5528ff72020-02-10 19:05:14 -0800119
felipealf7368962020-04-16 12:55:19 -0700120 private static final String TAG = TAG_USER;
121
Felipe Lemeabbf2da2020-02-24 18:25:29 -0800122 /** {@code int} extra used to represent a user id in a {@link IResultReceiver} response. */
Mayank Garg94f3eb92020-08-12 12:38:58 -0700123 public static final String BUNDLE_USER_ID = CommonConstants.BUNDLE_USER_ID;
Felipe Lemeabbf2da2020-02-24 18:25:29 -0800124 /** {@code int} extra used to represent user flags in a {@link IResultReceiver} response. */
Mayank Garg94f3eb92020-08-12 12:38:58 -0700125 public static final String BUNDLE_USER_FLAGS = CommonConstants.BUNDLE_USER_FLAGS;
Felipe Lemeabbf2da2020-02-24 18:25:29 -0800126 /** {@code String} extra used to represent a user name in a {@link IResultReceiver} response. */
Mayank Garg94f3eb92020-08-12 12:38:58 -0700127 public static final String BUNDLE_USER_NAME = CommonConstants.BUNDLE_USER_NAME;
felipeala68ecef2020-05-19 12:46:08 -0700128 /**
129 * {@code int} extra used to represent the user locales in a {@link IResultReceiver} response.
130 */
131 public static final String BUNDLE_USER_LOCALES =
Mayank Garg94f3eb92020-08-12 12:38:58 -0700132 CommonConstants.BUNDLE_USER_LOCALES;
felipeala68ecef2020-05-19 12:46:08 -0700133 /**
134 * {@code int} extra used to represent the info action in a {@link IResultReceiver} response.
135 */
felipeal1a9410d2020-05-06 13:30:05 -0700136 public static final String BUNDLE_INITIAL_INFO_ACTION =
Mayank Garg94f3eb92020-08-12 12:38:58 -0700137 CommonConstants.BUNDLE_INITIAL_INFO_ACTION;
Felipe Leme5528ff72020-02-10 19:05:14 -0800138
Mayank Garg9ed099e2020-06-04 16:05:20 -0700139 public static final String VEHICLE_HAL_NOT_SUPPORTED = "Vehicle Hal not supported.";
140
Ying Zhengd3cb98e2018-05-11 11:42:48 -0700141 private final Context mContext;
Eric Jeong3a793b02019-09-30 16:12:53 -0700142 private final CarUserManagerHelper mCarUserManagerHelper;
Keun young Parkfb656372019-03-12 18:37:55 -0700143 private final IActivityManager mAm;
Anthony Hugh9932a252019-06-12 16:19:56 -0700144 private final UserManager mUserManager;
145 private final int mMaxRunningUsers;
Mayank Garg70732a82020-08-05 20:17:47 -0700146 private final InitialUserSetter mInitialUserSetter;
Eric Jeongc91f9452019-08-30 15:04:21 -0700147 private final boolean mEnablePassengerSupport;
Mayank Garg9732d602020-08-09 21:02:40 -0700148 private final UserPreCreator mUserPreCreator;
Ying Zhengd3cb98e2018-05-11 11:42:48 -0700149
Eric Jeongc91f9452019-08-30 15:04:21 -0700150 private final Object mLockUser = new Object();
151 @GuardedBy("mLockUser")
Keun-young Parkd462a912019-02-11 08:53:42 -0800152 private boolean mUser0Unlocked;
Eric Jeongc91f9452019-08-30 15:04:21 -0700153 @GuardedBy("mLockUser")
Keun-young Parkd462a912019-02-11 08:53:42 -0800154 private final ArrayList<Runnable> mUser0UnlockTasks = new ArrayList<>();
Eric Jeongc91f9452019-08-30 15:04:21 -0700155 // Only one passenger is supported.
156 @GuardedBy("mLockUser")
157 private @UserIdInt int mLastPassengerId;
Keun young Parkf3523cd2019-04-08 10:09:17 -0700158 /**
159 * Background users that will be restarted in garage mode. This list can include the
Mayank Garg31e73042020-01-23 00:10:38 -0800160 * current foreground user but the current foreground user should not be restarted.
Keun young Parkf3523cd2019-04-08 10:09:17 -0700161 */
Eric Jeongc91f9452019-08-30 15:04:21 -0700162 @GuardedBy("mLockUser")
Keun young Parkf3523cd2019-04-08 10:09:17 -0700163 private final ArrayList<Integer> mBackgroundUsersToRestart = new ArrayList<>();
164 /**
165 * Keep the list of background users started here. This is wholly for debugging purpose.
166 */
Eric Jeongc91f9452019-08-30 15:04:21 -0700167 @GuardedBy("mLockUser")
Keun young Parkf3523cd2019-04-08 10:09:17 -0700168 private final ArrayList<Integer> mBackgroundUsersRestartedHere = new ArrayList<>();
169
Felipe Leme58412202020-01-09 13:45:33 -0800170 private final UserHalService mHal;
171
Antonio Kantek7236a5b2020-04-06 19:53:55 -0700172 // HandlerThread and Handler used when notifying app listeners (mAppLifecycleListeners).
Keun young Parkb241d022020-04-20 20:31:34 -0700173 private final HandlerThread mHandlerThread = CarServiceUtils.getHandlerThread(
174 getClass().getSimpleName());
175 private final Handler mHandler = new Handler(mHandlerThread.getLooper());
Antonio Kantek7236a5b2020-04-06 19:53:55 -0700176
Felipe Leme5528ff72020-02-10 19:05:14 -0800177 /**
Antonio Kantekc8114752020-03-05 21:37:39 -0800178 * List of listeners to be notified on new user activities events.
Antonio Kantek7236a5b2020-04-06 19:53:55 -0700179 * This collection should be accessed and manipulated by mHandlerThread only.
Antonio Kantekc8114752020-03-05 21:37:39 -0800180 */
Antonio Kantek7236a5b2020-04-06 19:53:55 -0700181 private final List<UserLifecycleListener> mUserLifecycleListeners = new ArrayList<>();
Antonio Kantekc8114752020-03-05 21:37:39 -0800182
183 /**
Felipe Leme5528ff72020-02-10 19:05:14 -0800184 * List of lifecycle listeners by uid.
Antonio Kantek7236a5b2020-04-06 19:53:55 -0700185 * This collection should be accessed and manipulated by mHandlerThread only.
Felipe Leme5528ff72020-02-10 19:05:14 -0800186 */
Antonio Kantek7236a5b2020-04-06 19:53:55 -0700187 private final SparseArray<IResultReceiver> mAppLifecycleListeners = new SparseArray<>();
Felipe Leme5528ff72020-02-10 19:05:14 -0800188
Mayank Garg7a114c82020-04-08 21:25:06 -0700189 /**
190 * User Id for the user switch in process, if any.
191 */
192 @GuardedBy("mLockUser")
felipealf7368962020-04-16 12:55:19 -0700193 private int mUserIdForUserSwitchInProcess = UserHandle.USER_NULL;
Mayank Garg7a114c82020-04-08 21:25:06 -0700194 /**
195 * Request Id for the user switch in process, if any.
196 */
197 @GuardedBy("mLockUser")
felipealf7368962020-04-16 12:55:19 -0700198 private int mRequestIdForUserSwitchInProcess;
Felipe Lemee3cab982020-03-12 11:39:29 -0700199 private final int mHalTimeoutMs = CarProperties.user_hal_timeout().orElse(5_000);
200
Eric Jeongc91f9452019-08-30 15:04:21 -0700201 private final CopyOnWriteArrayList<PassengerCallback> mPassengerCallbacks =
202 new CopyOnWriteArrayList<>();
203
Mayank Garg7e1450b2020-08-07 18:15:15 -0700204 // TODO(b/163566866): Use mSwitchGuestUserBeforeSleep for new create guest request
205 private final boolean mSwitchGuestUserBeforeSleep;
206
felipeal61ce3732020-04-03 11:01:00 -0700207 @Nullable
208 @GuardedBy("mLockUser")
209 private UserInfo mInitialUser;
210
Mayank Garg587f1942020-05-06 01:41:34 -0700211 private IResultReceiver mUserSwitchUiReceiver;
212
Eric Jeongc91f9452019-08-30 15:04:21 -0700213 /** Interface for callbaks related to passenger activities. */
214 public interface PassengerCallback {
215 /** Called when passenger is started at a certain zone. */
216 void onPassengerStarted(@UserIdInt int passengerId, int zoneId);
217 /** Called when passenger is stopped. */
218 void onPassengerStopped(@UserIdInt int passengerId);
219 }
220
221 /** Interface for delegating zone-related implementation to CarOccupantZoneService. */
222 public interface ZoneUserBindingHelper {
223 /** Gets occupant zones corresponding to the occupant type. */
224 @NonNull
225 List<OccupantZoneInfo> getOccupantZones(@OccupantTypeEnum int occupantType);
226 /** Assigns the user to the occupant zone. */
227 boolean assignUserToOccupantZone(@UserIdInt int userId, int zoneId);
228 /** Makes the occupant zone unoccupied. */
229 boolean unassignUserFromOccupantZone(@UserIdInt int userId);
230 /** Returns whether there is a passenger display. */
231 boolean isPassengerDisplayAvailable();
232 }
233
234 private final Object mLockHelper = new Object();
235 @GuardedBy("mLockHelper")
236 private ZoneUserBindingHelper mZoneUserBindingHelper;
237
Felipe Leme58412202020-01-09 13:45:33 -0800238 public CarUserService(@NonNull Context context, @NonNull UserHalService hal,
Mayank Garg71661ea2020-04-29 01:25:03 -0700239 @NonNull CarUserManagerHelper carUserManagerHelper, @NonNull UserManager userManager,
240 @NonNull IActivityManager am, int maxRunningUsers) {
241 this(context, hal, carUserManagerHelper, userManager, am, maxRunningUsers,
Mayank Gargccad8062020-08-30 15:05:10 -0700242 /* initialUserSetter= */ null);
Mayank Garg71661ea2020-04-29 01:25:03 -0700243 }
244
245 @VisibleForTesting
246 CarUserService(@NonNull Context context, @NonNull UserHalService hal,
247 @NonNull CarUserManagerHelper carUserManagerHelper, @NonNull UserManager userManager,
Mayank Gargccad8062020-08-30 15:05:10 -0700248 @NonNull IActivityManager am, int maxRunningUsers,
Mayank Garg70732a82020-08-05 20:17:47 -0700249 @Nullable InitialUserSetter initialUserSetter) {
Eric Jeong1545f3b2019-09-16 13:56:52 -0700250 if (Log.isLoggable(TAG_USER, Log.DEBUG)) {
251 Log.d(TAG_USER, "constructed");
Ying Zhengd3cb98e2018-05-11 11:42:48 -0700252 }
253 mContext = context;
Felipe Leme58412202020-01-09 13:45:33 -0800254 mHal = hal;
Eric Jeong3a793b02019-09-30 16:12:53 -0700255 mCarUserManagerHelper = carUserManagerHelper;
Keun young Parkf3523cd2019-04-08 10:09:17 -0700256 mAm = am;
257 mMaxRunningUsers = maxRunningUsers;
Anthony Hugh9932a252019-06-12 16:19:56 -0700258 mUserManager = userManager;
Eric Jeongc91f9452019-08-30 15:04:21 -0700259 mLastPassengerId = UserHandle.USER_NULL;
Mayank Garg70732a82020-08-05 20:17:47 -0700260 if (initialUserSetter == null) {
261 mInitialUserSetter = new InitialUserSetter(context, (u) -> setInitialUser(u));
262 } else {
263 mInitialUserSetter = initialUserSetter;
264 }
Mayank Garg9732d602020-08-09 21:02:40 -0700265 mUserPreCreator = new UserPreCreator(mUserManager);
Mayank Garg7e1450b2020-08-07 18:15:15 -0700266 Resources resources = context.getResources();
267 mEnablePassengerSupport = resources.getBoolean(R.bool.enablePassengerSupport);
268 mSwitchGuestUserBeforeSleep = resources.getBoolean(
269 R.bool.config_switchGuestUserBeforeGoingSleep);
Ying Zhengd3cb98e2018-05-11 11:42:48 -0700270 }
271
272 @Override
273 public void init() {
Eric Jeong1545f3b2019-09-16 13:56:52 -0700274 if (Log.isLoggable(TAG_USER, Log.DEBUG)) {
275 Log.d(TAG_USER, "init");
Ying Zhengd3cb98e2018-05-11 11:42:48 -0700276 }
Ying Zhengd3cb98e2018-05-11 11:42:48 -0700277 }
278
279 @Override
280 public void release() {
Eric Jeong1545f3b2019-09-16 13:56:52 -0700281 if (Log.isLoggable(TAG_USER, Log.DEBUG)) {
282 Log.d(TAG_USER, "release");
Ying Zhengd3cb98e2018-05-11 11:42:48 -0700283 }
Ying Zhengd3cb98e2018-05-11 11:42:48 -0700284 }
285
286 @Override
Eric Jeong1545f3b2019-09-16 13:56:52 -0700287 public void dump(@NonNull PrintWriter writer) {
felipeal2d0483c2019-11-02 14:07:22 -0700288 checkAtLeastOnePermission("dump()", android.Manifest.permission.DUMP);
Eric Jeong1545f3b2019-09-16 13:56:52 -0700289 writer.println("*CarUserService*");
Felipe Leme5528ff72020-02-10 19:05:14 -0800290 String indent = " ";
Antonio Kantek7236a5b2020-04-06 19:53:55 -0700291 handleDumpListeners(writer, indent);
Mayank Garg587f1942020-05-06 01:41:34 -0700292 writer.printf("User switch UI receiver %s\n", mUserSwitchUiReceiver);
Eric Jeongc91f9452019-08-30 15:04:21 -0700293 synchronized (mLockUser) {
Eric Jeong1545f3b2019-09-16 13:56:52 -0700294 writer.println("User0Unlocked: " + mUser0Unlocked);
Eric Jeong1545f3b2019-09-16 13:56:52 -0700295 writer.println("BackgroundUsersToRestart: " + mBackgroundUsersToRestart);
296 writer.println("BackgroundUsersRestarted: " + mBackgroundUsersRestartedHere);
Antonio Kantek7236a5b2020-04-06 19:53:55 -0700297 }
298 writer.println("MaxRunningUsers: " + mMaxRunningUsers);
299 List<UserInfo> allDrivers = getAllDrivers();
300 int driversSize = allDrivers.size();
301 writer.println("NumberOfDrivers: " + driversSize);
302 for (int i = 0; i < driversSize; i++) {
303 int driverId = allDrivers.get(i).id;
304 writer.print(indent + "#" + i + ": id=" + driverId);
305 List<UserInfo> passengers = getPassengers(driverId);
306 int passengersSize = passengers.size();
307 writer.print(" NumberPassengers: " + passengersSize);
308 if (passengersSize > 0) {
309 writer.print(" [");
310 for (int j = 0; j < passengersSize; j++) {
311 writer.print(passengers.get(j).id);
312 if (j < passengersSize - 1) {
313 writer.print(" ");
felipeal2d0483c2019-11-02 14:07:22 -0700314 }
felipeal2d0483c2019-11-02 14:07:22 -0700315 }
Antonio Kantek7236a5b2020-04-06 19:53:55 -0700316 writer.print("]");
felipeal2d0483c2019-11-02 14:07:22 -0700317 }
Antonio Kantek7236a5b2020-04-06 19:53:55 -0700318 writer.println();
319 }
320 writer.printf("EnablePassengerSupport: %s\n", mEnablePassengerSupport);
321 writer.printf("User HAL timeout: %dms\n", mHalTimeoutMs);
322 writer.printf("Initial user: %s\n", mInitialUser);
felipealbf327652020-06-03 11:33:29 -0700323
Antonio Kantek7236a5b2020-04-06 19:53:55 -0700324 writer.println("Relevant overlayable properties");
325 Resources res = mContext.getResources();
326 writer.printf("%sowner_name=%s\n", indent,
327 res.getString(com.android.internal.R.string.owner_name));
328 writer.printf("%sdefault_guest_name=%s\n", indent,
329 res.getString(R.string.default_guest_name));
felipealf7368962020-04-16 12:55:19 -0700330 writer.printf("User switch in process=%d\n", mUserIdForUserSwitchInProcess);
Mayank Garg7a114c82020-04-08 21:25:06 -0700331 writer.printf("Request Id for the user switch in process=%d\n ",
332 mRequestIdForUserSwitchInProcess);
Mayank Garga480dd92020-05-14 03:14:57 -0700333 writer.printf("System UI package name=%s\n", getSystemUiPackageName());
felipeale8c5dce2020-04-15 11:27:06 -0700334
felipealbf327652020-06-03 11:33:29 -0700335 writer.println("Relevant Global settings");
336 dumpGlobalProperty(writer, indent, CarSettings.Global.LAST_ACTIVE_USER_ID);
337 dumpGlobalProperty(writer, indent, CarSettings.Global.LAST_ACTIVE_PERSISTENT_USER_ID);
338
Mayank Garg4bdfbf72020-08-06 13:27:43 -0700339 mInitialUserSetter.dump(writer);
felipeale8c5dce2020-04-15 11:27:06 -0700340 }
341
felipealbf327652020-06-03 11:33:29 -0700342 private void dumpGlobalProperty(PrintWriter writer, String indent, String property) {
343 String value = Settings.Global.getString(mContext.getContentResolver(), property);
344 writer.printf("%s%s=%s\n", indent, property, value);
345 }
346
Antonio Kantek7236a5b2020-04-06 19:53:55 -0700347 private void handleDumpListeners(@NonNull PrintWriter writer, String indent) {
348 CountDownLatch latch = new CountDownLatch(1);
349 mHandler.post(() -> {
felipealde1e16d2020-06-03 13:20:48 -0700350 handleDumpServiceLifecycleListeners(writer);
Antonio Kantek7236a5b2020-04-06 19:53:55 -0700351 handleDumpAppLifecycleListeners(writer, indent);
352 latch.countDown();
353 });
354 int timeout = 5;
355 try {
356 if (!latch.await(timeout, TimeUnit.SECONDS)) {
357 writer.printf("Handler thread didn't respond in %ds when dumping listeners\n",
358 timeout);
359 }
360 } catch (InterruptedException e) {
361 Thread.currentThread().interrupt();
362 writer.println("Interrupted waiting for handler thread to dump app and user listeners");
363 }
364 }
365
felipealde1e16d2020-06-03 13:20:48 -0700366 private void handleDumpServiceLifecycleListeners(@NonNull PrintWriter writer) {
Antonio Kantek7236a5b2020-04-06 19:53:55 -0700367 if (mUserLifecycleListeners.isEmpty()) {
felipealde1e16d2020-06-03 13:20:48 -0700368 writer.println("No lifecycle listeners for internal services");
Antonio Kantek7236a5b2020-04-06 19:53:55 -0700369 return;
370 }
felipealde1e16d2020-06-03 13:20:48 -0700371 int size = mUserLifecycleListeners.size();
372 writer.printf("%d lifecycle listener%s for services\n", size, size == 1 ? "" : "s");
373 String indent = " ";
Antonio Kantek7236a5b2020-04-06 19:53:55 -0700374 for (UserLifecycleListener listener : mUserLifecycleListeners) {
felipealde1e16d2020-06-03 13:20:48 -0700375 writer.printf("%s%s\n", indent, FunctionalUtils.getLambdaName(listener));
Antonio Kantek7236a5b2020-04-06 19:53:55 -0700376 }
377 }
378
379 private void handleDumpAppLifecycleListeners(@NonNull PrintWriter writer, String indent) {
felipealde1e16d2020-06-03 13:20:48 -0700380 int size = mAppLifecycleListeners.size();
381 if (size == 0) {
382 writer.println("No lifecycle listeners for apps");
Antonio Kantek7236a5b2020-04-06 19:53:55 -0700383 return;
384 }
felipealde1e16d2020-06-03 13:20:48 -0700385 writer.printf("%d lifecycle listener%s for apps \n", size, size == 1 ? "" : "s");
386 for (int i = 0; i < size; i++) {
Antonio Kantek7236a5b2020-04-06 19:53:55 -0700387 int uid = mAppLifecycleListeners.keyAt(i);
388 IResultReceiver listener = mAppLifecycleListeners.valueAt(i);
felipealde1e16d2020-06-03 13:20:48 -0700389 writer.printf("%suid: %d\n", indent, uid);
Keun-young Parkd462a912019-02-11 08:53:42 -0800390 }
Eric Jeong1545f3b2019-09-16 13:56:52 -0700391 }
392
393 /**
Eric Jeongb2dc6ff2020-06-05 17:00:26 -0700394 * @see ExperimentalCarUserManager.createDriver
Eric Jeong1545f3b2019-09-16 13:56:52 -0700395 */
396 @Override
Eric Jeongb2dc6ff2020-06-05 17:00:26 -0700397 public AndroidFuture<UserCreationResult> createDriver(@NonNull String name, boolean admin) {
Eric Jeong1545f3b2019-09-16 13:56:52 -0700398 checkManageUsersPermission("createDriver");
Daulet Zhanguzin4ded6782020-01-03 15:47:10 +0000399 Objects.requireNonNull(name, "name cannot be null");
Eric Jeongb2dc6ff2020-06-05 17:00:26 -0700400
401 AndroidFuture<UserCreationResult> future = new AndroidFuture<UserCreationResult>() {
402 @Override
403 protected void onCompleted(UserCreationResult result, Throwable err) {
404 if (result == null) {
405 Log.w(TAG, "createDriver(" + name + "," + admin + ") failed: " + err);
406 } else {
407 if (result.getStatus() == UserCreationResult.STATUS_SUCCESSFUL) {
408 assignDefaultIcon(result.getUser());
409 }
410 }
411 super.onCompleted(result, err);
412 };
413 };
414 int flags = 0;
Eric Jeong1545f3b2019-09-16 13:56:52 -0700415 if (admin) {
Eric Jeongb2dc6ff2020-06-05 17:00:26 -0700416 if (!(mUserManager.isAdminUser() || mUserManager.isSystemUser())) {
417 Log.e(TAG_USER, "Only admin users and system user can create other admins.");
418 sendUserCreationResultFailure(future, UserCreationResult.STATUS_INVALID_REQUEST);
419 return future;
420 }
421 flags = UserInfo.FLAG_ADMIN;
Eric Jeong1545f3b2019-09-16 13:56:52 -0700422 }
Eric Jeongb2dc6ff2020-06-05 17:00:26 -0700423 createUser(name, UserInfo.getDefaultUserType(flags), flags, mHalTimeoutMs, future);
424 return future;
Eric Jeong1545f3b2019-09-16 13:56:52 -0700425 }
426
427 /**
Eric Jeongb2dc6ff2020-06-05 17:00:26 -0700428 * @see ExperimentalCarUserManager.createPassenger
Eric Jeong1545f3b2019-09-16 13:56:52 -0700429 */
430 @Override
431 @Nullable
432 public UserInfo createPassenger(@NonNull String name, @UserIdInt int driverId) {
433 checkManageUsersPermission("createPassenger");
Daulet Zhanguzin4ded6782020-01-03 15:47:10 +0000434 Objects.requireNonNull(name, "name cannot be null");
Eric Jeong1545f3b2019-09-16 13:56:52 -0700435 UserInfo driver = mUserManager.getUserInfo(driverId);
436 if (driver == null) {
437 Log.w(TAG_USER, "the driver is invalid");
438 return null;
439 }
440 if (driver.isGuest()) {
441 Log.w(TAG_USER, "a guest driver cannot create a passenger");
442 return null;
443 }
Eric Jeongb2dc6ff2020-06-05 17:00:26 -0700444 // createPassenger doesn't use user HAL because user HAL doesn't support profile user yet.
Bookatz42fb1a62019-10-30 11:45:01 -0700445 UserInfo user = mUserManager.createProfileForUser(name,
446 UserManager.USER_TYPE_PROFILE_MANAGED, /* flags */ 0, driverId);
Eric Jeong1545f3b2019-09-16 13:56:52 -0700447 if (user == null) {
448 // Couldn't create user, most likely because there are too many.
449 Log.w(TAG_USER, "can't create a profile for user" + driverId);
450 return null;
451 }
452 // Passenger user should be a non-admin user.
Eric Jeong3a793b02019-09-30 16:12:53 -0700453 mCarUserManagerHelper.setDefaultNonAdminRestrictions(user, /* enable= */ true);
Anthony Hugh6fed1e92019-10-22 16:22:03 -0700454 assignDefaultIcon(user);
Eric Jeong1545f3b2019-09-16 13:56:52 -0700455 return user;
456 }
457
458 /**
Eric Jeongb2dc6ff2020-06-05 17:00:26 -0700459 * @see ExperimentalCarUserManager.switchDriver
Eric Jeong1545f3b2019-09-16 13:56:52 -0700460 */
461 @Override
Eric Jeong25666cf2020-05-14 15:16:27 -0700462 public void switchDriver(@UserIdInt int driverId, AndroidFuture<UserSwitchResult> receiver) {
Eric Jeong1545f3b2019-09-16 13:56:52 -0700463 checkManageUsersPermission("switchDriver");
Mayank Garg94f3eb92020-08-12 12:38:58 -0700464 if (UserHelperLite.isHeadlessSystemUser(driverId)) {
Eric Jeong1545f3b2019-09-16 13:56:52 -0700465 // System user doesn't associate with real person, can not be switched to.
466 Log.w(TAG_USER, "switching to system user in headless system user mode is not allowed");
felipealdfdf8512020-06-01 09:35:45 -0700467 sendUserSwitchResult(receiver, UserSwitchResult.STATUS_INVALID_REQUEST);
Eric Jeong25666cf2020-05-14 15:16:27 -0700468 return;
Eric Jeong1545f3b2019-09-16 13:56:52 -0700469 }
470 int userSwitchable = mUserManager.getUserSwitchability();
471 if (userSwitchable != UserManager.SWITCHABILITY_STATUS_OK) {
472 Log.w(TAG_USER, "current process is not allowed to switch user");
felipealdfdf8512020-06-01 09:35:45 -0700473 sendUserSwitchResult(receiver, UserSwitchResult.STATUS_INVALID_REQUEST);
Eric Jeong25666cf2020-05-14 15:16:27 -0700474 return;
Eric Jeong1545f3b2019-09-16 13:56:52 -0700475 }
Eric Jeong25666cf2020-05-14 15:16:27 -0700476 switchUser(driverId, mHalTimeoutMs, receiver);
Eric Jeong1545f3b2019-09-16 13:56:52 -0700477 }
478
479 /**
Eric Jeonge7916fc2019-12-20 14:03:34 -0800480 * Returns all drivers who can occupy the driving zone. Guest users are included in the list.
481 *
482 * @return the list of {@link UserInfo} who can be a driver on the device.
Eric Jeong1545f3b2019-09-16 13:56:52 -0700483 */
484 @Override
485 @NonNull
486 public List<UserInfo> getAllDrivers() {
felipeal2d0483c2019-11-02 14:07:22 -0700487 checkManageUsersOrDumpPermission("getAllDrivers");
Mayank Garg94f3eb92020-08-12 12:38:58 -0700488 return getUsers((user) -> !UserHelperLite.isHeadlessSystemUser(user.id) && user.isEnabled()
Antonio Kantek7236a5b2020-04-06 19:53:55 -0700489 && !user.isManagedProfile() && !user.isEphemeral());
Eric Jeong1545f3b2019-09-16 13:56:52 -0700490 }
491
492 /**
Eric Jeonge7916fc2019-12-20 14:03:34 -0800493 * Returns all passengers under the given driver.
494 *
495 * @param driverId User id of a driver.
496 * @return the list of {@link UserInfo} who is a passenger under the given driver.
Eric Jeong1545f3b2019-09-16 13:56:52 -0700497 */
498 @Override
499 @NonNull
500 public List<UserInfo> getPassengers(@UserIdInt int driverId) {
felipeal2d0483c2019-11-02 14:07:22 -0700501 checkManageUsersOrDumpPermission("getPassengers");
Eric Jeong1545f3b2019-09-16 13:56:52 -0700502 return getUsers((user) -> {
Mayank Garg94f3eb92020-08-12 12:38:58 -0700503 return !UserHelperLite.isHeadlessSystemUser(user.id) && user.isEnabled()
Eric Jeong40f8fa32020-05-12 12:23:33 -0700504 && user.isManagedProfile() && user.profileGroupId == driverId;
Eric Jeong1545f3b2019-09-16 13:56:52 -0700505 });
506 }
507
508 /**
509 * @see CarUserManager.startPassenger
510 */
511 @Override
512 public boolean startPassenger(@UserIdInt int passengerId, int zoneId) {
513 checkManageUsersPermission("startPassenger");
Eric Jeongc91f9452019-08-30 15:04:21 -0700514 synchronized (mLockUser) {
515 try {
516 if (!mAm.startUserInBackgroundWithListener(passengerId, null)) {
517 Log.w(TAG_USER, "could not start passenger");
518 return false;
519 }
520 } catch (RemoteException e) {
521 // ignore
522 Log.w(TAG_USER, "error while starting passenger", e);
523 return false;
524 }
525 if (!assignUserToOccupantZone(passengerId, zoneId)) {
526 Log.w(TAG_USER, "could not assign passenger to zone");
527 return false;
528 }
529 mLastPassengerId = passengerId;
530 }
531 for (PassengerCallback callback : mPassengerCallbacks) {
532 callback.onPassengerStarted(passengerId, zoneId);
533 }
534 return true;
Eric Jeong1545f3b2019-09-16 13:56:52 -0700535 }
536
537 /**
538 * @see CarUserManager.stopPassenger
539 */
540 @Override
541 public boolean stopPassenger(@UserIdInt int passengerId) {
542 checkManageUsersPermission("stopPassenger");
Eric Jeongc91f9452019-08-30 15:04:21 -0700543 return stopPassengerInternal(passengerId, true);
544 }
545
546 private boolean stopPassengerInternal(@UserIdInt int passengerId, boolean checkCurrentDriver) {
547 synchronized (mLockUser) {
548 UserInfo passenger = mUserManager.getUserInfo(passengerId);
549 if (passenger == null) {
550 Log.w(TAG_USER, "passenger " + passengerId + " doesn't exist");
551 return false;
552 }
553 if (mLastPassengerId != passengerId) {
554 Log.w(TAG_USER, "passenger " + passengerId + " hasn't been started");
555 return true;
556 }
557 if (checkCurrentDriver) {
558 int currentUser = ActivityManager.getCurrentUser();
559 if (passenger.profileGroupId != currentUser) {
560 Log.w(TAG_USER, "passenger " + passengerId
561 + " is not a profile of the current user");
562 return false;
563 }
564 }
565 // Passenger is a profile, so cannot be stopped through activity manager.
566 // Instead, activities started by the passenger are stopped and the passenger is
567 // unassigned from the zone.
568 stopAllTasks(passengerId);
569 if (!unassignUserFromOccupantZone(passengerId)) {
570 Log.w(TAG_USER, "could not unassign user from occupant zone");
571 return false;
572 }
573 mLastPassengerId = UserHandle.USER_NULL;
574 }
575 for (PassengerCallback callback : mPassengerCallbacks) {
576 callback.onPassengerStopped(passengerId);
577 }
578 return true;
579 }
580
581 private void stopAllTasks(@UserIdInt int userId) {
582 try {
583 for (StackInfo info : mAm.getAllStackInfos()) {
584 for (int i = 0; i < info.taskIds.length; i++) {
585 if (info.taskUserIds[i] == userId) {
586 int taskId = info.taskIds[i];
587 if (!mAm.removeTask(taskId)) {
588 Log.w(TAG_USER, "could not remove task " + taskId);
589 }
590 }
591 }
592 }
593 } catch (RemoteException e) {
594 Log.e(TAG_USER, "could not get stack info", e);
595 }
Eric Jeong1545f3b2019-09-16 13:56:52 -0700596 }
597
Felipe Leme5528ff72020-02-10 19:05:14 -0800598 @Override
599 public void setLifecycleListenerForUid(IResultReceiver listener) {
600 int uid = Binder.getCallingUid();
felipeal312416a2020-04-14 12:28:24 -0700601 EventLog.writeEvent(EventLogTags.CAR_USER_SVC_SET_LIFECYCLE_LISTENER, uid);
Felipe Leme5528ff72020-02-10 19:05:14 -0800602 checkInteractAcrossUsersPermission("setLifecycleListenerForUid" + uid);
603
604 try {
605 listener.asBinder().linkToDeath(() -> onListenerDeath(uid), 0);
606 } catch (RemoteException e) {
607 Log.wtf(TAG_USER, "Cannot listen to death of " + uid);
608 }
Antonio Kantek7236a5b2020-04-06 19:53:55 -0700609 mHandler.post(() -> mAppLifecycleListeners.append(uid, listener));
Felipe Leme5528ff72020-02-10 19:05:14 -0800610 }
611
612 private void onListenerDeath(int uid) {
613 Log.i(TAG_USER, "Removing listeners for uid " + uid + " on binder death");
Antonio Kantek7236a5b2020-04-06 19:53:55 -0700614 mHandler.post(() -> mAppLifecycleListeners.remove(uid));
Felipe Leme5528ff72020-02-10 19:05:14 -0800615 }
616
617 @Override
618 public void resetLifecycleListenerForUid() {
619 int uid = Binder.getCallingUid();
felipeal312416a2020-04-14 12:28:24 -0700620 EventLog.writeEvent(EventLogTags.CAR_USER_SVC_RESET_LIFECYCLE_LISTENER, uid);
Felipe Leme5528ff72020-02-10 19:05:14 -0800621 checkInteractAcrossUsersPermission("resetLifecycleListenerForUid-" + uid);
Antonio Kantek7236a5b2020-04-06 19:53:55 -0700622 mHandler.post(() -> mAppLifecycleListeners.remove(uid));
Felipe Leme5528ff72020-02-10 19:05:14 -0800623 }
624
Felipe Lemee3cab982020-03-12 11:39:29 -0700625 /**
felipeal61ce3732020-04-03 11:01:00 -0700626 * Gets the initial foreground user after the device boots or resumes from suspension.
627 *
628 * <p>When the OEM supports the User HAL, the initial user won't be available until the HAL
629 * returns the initial value to {@code CarService} - if HAL takes too long or times out, this
630 * method returns {@code null}.
631 *
632 * <p>If the HAL eventually times out, {@code CarService} will fallback to its default behavior
633 * (like switching to the last active user), and this method will return the result of such
634 * operation.
635 *
636 * <p>Notice that if {@code CarService} crashes, subsequent calls to this method will return
637 * {@code null}.
638 *
639 * @hide
640 */
641 @Nullable
642 public UserInfo getInitialUser() {
643 checkInteractAcrossUsersPermission("getInitialUser");
644 synchronized (mLockUser) {
645 return mInitialUser;
646 }
647 }
648
felipeal61ce3732020-04-03 11:01:00 -0700649 /**
650 * Sets the initial foreground user after the device boots or resumes from suspension.
651 */
652 public void setInitialUser(@Nullable UserInfo user) {
felipeal312416a2020-04-14 12:28:24 -0700653 EventLog.writeEvent(EventLogTags.CAR_USER_SVC_SET_INITIAL_USER,
654 user == null ? UserHandle.USER_NULL : user.id);
felipeal61ce3732020-04-03 11:01:00 -0700655 synchronized (mLockUser) {
656 mInitialUser = user;
657 }
658 if (user == null) {
659 // This mean InitialUserSetter failed and could not fallback, so the initial user was
660 // not switched (and most likely is SYSTEM_USER).
661 // TODO(b/153104378): should we set it to ActivityManager.getCurrentUser() instead?
662 Log.wtf(TAG_USER, "Initial user set to null");
663 }
664 }
665
Mayank Garg7e1450b2020-08-07 18:15:15 -0700666 private void initResumeReplaceGuest() {
Mayank Garg4bdfbf72020-08-06 13:27:43 -0700667 int currentUserId = ActivityManager.getCurrentUser();
668 UserInfo currentUser = mUserManager.getUserInfo(currentUserId);
669
670 if (!mInitialUserSetter.canReplaceGuestUser(currentUser)) return; // Not a guest
671
672 InitialUserInfo info =
673 new InitialUserSetter.Builder(InitialUserSetter.TYPE_REPLACE_GUEST).build();
674
675 mInitialUserSetter.set(info);
676 }
677
678 /**
Mayank Garg0baf88a2020-08-30 21:57:36 -0700679 * Calls to switch user at the power suspend.
Mayank Garg7e1450b2020-08-07 18:15:15 -0700680 *
681 * <p><b>Note:</b> Should be used only by {@link CarPowerManagementService}
682 *
Mayank Garg7e1450b2020-08-07 18:15:15 -0700683 */
Mayank Garg0baf88a2020-08-30 21:57:36 -0700684 public void onSuspend() {
Mayank Garg7e1450b2020-08-07 18:15:15 -0700685 if (Log.isLoggable(TAG_USER, Log.DEBUG)) {
Mayank Garg0baf88a2020-08-30 21:57:36 -0700686 Log.d(TAG_USER, "onSuspend called.");
Mayank Garg7e1450b2020-08-07 18:15:15 -0700687 }
688
Mayank Garg0baf88a2020-08-30 21:57:36 -0700689 if (mSwitchGuestUserBeforeSleep) {
690 initResumeReplaceGuest();
Mayank Garg7e1450b2020-08-07 18:15:15 -0700691 }
692 }
693
694 /**
Mayank Garg0baf88a2020-08-30 21:57:36 -0700695 * Calls to switch user at the power resume.
696 *
697 * <p>
698 * <b>Note:</b> Should be used only by {@link CarPowerManagementService}
699 *
700 */
701 public void onResume() {
702 if (Log.isLoggable(TAG_USER, Log.DEBUG)) {
703 Log.d(TAG_USER, "onResume called.");
704 }
705
706 initBootUser(InitialUserInfoRequestType.RESUME);
707 }
708
709 /**
Mayank Garg4bdfbf72020-08-06 13:27:43 -0700710 * Calls to start user at the android startup.
Mayank Garg70732a82020-08-05 20:17:47 -0700711 */
712 public void initBootUser() {
713 int requestType = getInitialUserInfoRequestType();
Mayank Garg7e1450b2020-08-07 18:15:15 -0700714 initBootUser(requestType);
Mayank Garg4bdfbf72020-08-06 13:27:43 -0700715 }
716
Mayank Garg7e1450b2020-08-07 18:15:15 -0700717 private void initBootUser(int requestType) {
718 boolean replaceGuest =
719 requestType == InitialUserInfoRequestType.RESUME && !mSwitchGuestUserBeforeSleep;
Mayank Garg70732a82020-08-05 20:17:47 -0700720 EventLog.writeEvent(EventLogTags.CAR_USER_SVC_INITIAL_USER_INFO_REQ, requestType,
721 mHalTimeoutMs);
722 checkManageUsersPermission("startInitialUser");
723
724 if (!isUserHalSupported()) {
Mayank Garg4bdfbf72020-08-06 13:27:43 -0700725 fallbackToDefaultInitialUserBehavior(/* userLocales= */ null, replaceGuest);
Mayank Garg70732a82020-08-05 20:17:47 -0700726 return;
727 }
728
729 UsersInfo usersInfo = UserHalHelper.newUsersInfo(mUserManager);
730 mHal.getInitialUserInfo(requestType, mHalTimeoutMs, usersInfo, (status, resp) -> {
731 if (resp != null) {
732 EventLog.writeEvent(EventLogTags.CAR_USER_SVC_INITIAL_USER_INFO_RESP,
733 status, resp.action, resp.userToSwitchOrCreate.userId,
734 resp.userToSwitchOrCreate.flags, resp.userNameToCreate, resp.userLocales);
735
736 String userLocales = resp.userLocales;
737 InitialUserInfo info;
738 switch (resp.action) {
739 case InitialUserInfoResponseAction.SWITCH:
740 int userId = resp.userToSwitchOrCreate.userId;
741 if (userId <= 0) {
742 Log.w(TAG, "invalid (or missing) user id sent by HAL: " + userId);
Mayank Garg4bdfbf72020-08-06 13:27:43 -0700743 fallbackToDefaultInitialUserBehavior(userLocales, replaceGuest);
Mayank Garg70732a82020-08-05 20:17:47 -0700744 break;
745 }
746 info = new InitialUserSetter.Builder(InitialUserSetter.TYPE_SWITCH)
747 .setUserLocales(userLocales)
748 .setSwitchUserId(userId)
Mayank Garg4bdfbf72020-08-06 13:27:43 -0700749 .setReplaceGuest(replaceGuest)
Mayank Garg70732a82020-08-05 20:17:47 -0700750 .build();
751 mInitialUserSetter.set(info);
752 break;
753
754 case InitialUserInfoResponseAction.CREATE:
755 int halFlags = resp.userToSwitchOrCreate.flags;
756 String userName = resp.userNameToCreate;
757 info = new InitialUserSetter.Builder(InitialUserSetter.TYPE_CREATE)
758 .setUserLocales(userLocales)
759 .setNewUserName(userName)
760 .setNewUserFlags(halFlags)
761 .build();
762 mInitialUserSetter.set(info);
763 break;
764
765 case InitialUserInfoResponseAction.DEFAULT:
Mayank Garg4bdfbf72020-08-06 13:27:43 -0700766 fallbackToDefaultInitialUserBehavior(userLocales, replaceGuest);
Mayank Garg70732a82020-08-05 20:17:47 -0700767 break;
768 default:
769 Log.w(TAG_USER, "invalid response action on " + resp);
Mayank Garg4bdfbf72020-08-06 13:27:43 -0700770 fallbackToDefaultInitialUserBehavior(/* user locale */ null, replaceGuest);
Mayank Garg70732a82020-08-05 20:17:47 -0700771 break;
772
773 }
774 } else {
775 EventLog.writeEvent(EventLogTags.CAR_USER_SVC_INITIAL_USER_INFO_RESP, status);
Mayank Garg4bdfbf72020-08-06 13:27:43 -0700776 fallbackToDefaultInitialUserBehavior(/* user locale */ null, replaceGuest);
Mayank Garg70732a82020-08-05 20:17:47 -0700777 }
778 });
779 }
780
Mayank Garg4bdfbf72020-08-06 13:27:43 -0700781 private void fallbackToDefaultInitialUserBehavior(String userLocales, boolean replaceGuest) {
Mayank Garg70732a82020-08-05 20:17:47 -0700782 InitialUserInfo info = new InitialUserSetter.Builder(
783 InitialUserSetter.TYPE_DEFAULT_BEHAVIOR)
784 .setUserLocales(userLocales)
Mayank Garg4bdfbf72020-08-06 13:27:43 -0700785 .setReplaceGuest(replaceGuest)
Mayank Garg70732a82020-08-05 20:17:47 -0700786 .build();
787 mInitialUserSetter.set(info);
788 }
789
790 @VisibleForTesting
791 int getInitialUserInfoRequestType() {
792 if (!mCarUserManagerHelper.hasInitialUser()) {
793 return InitialUserInfoRequestType.FIRST_BOOT;
794 }
795 if (mContext.getPackageManager().isDeviceUpgrading()) {
796 return InitialUserInfoRequestType.FIRST_BOOT_AFTER_OTA;
797 }
798 return InitialUserInfoRequestType.COLD_BOOT;
799 }
800
801 /**
Mayank Garg1f20dcd2020-04-22 17:46:01 -0700802 * Calls the {@link UserHalService} and {@link IActivityManager} for user switch.
803 *
804 * <p>
Mayank Gargb08f6772020-05-01 18:06:48 -0700805 * When everything works well, the workflow is:
806 * <ol>
807 * <li> {@link UserHalService} is called for HAL user switch with ANDROID_SWITCH request
808 * type, current user id, target user id, and a callback.
809 * <li> HAL called back with SUCCESS.
810 * <li> {@link IActivityManager} is called for Android user switch.
811 * <li> Receiver would receive {@code STATUS_SUCCESSFUL}.
812 * <li> Once user is unlocked, {@link UserHalService} is again called with ANDROID_POST_SWITCH
813 * request type, current user id, and target user id. In this case, the current and target
814 * user IDs would be same.
815 * <ol/>
Mayank Garg1f20dcd2020-04-22 17:46:01 -0700816 *
817 * <p>
Mayank Gargb08f6772020-05-01 18:06:48 -0700818 * Corner cases:
819 * <ul>
820 * <li> If target user is already the current user, no user switch is performed and receiver
Mayank Gargef1b9332020-06-11 17:36:56 -0700821 * would receive {@code STATUS_OK_USER_ALREADY_IN_FOREGROUND} right away.
Mayank Gargb08f6772020-05-01 18:06:48 -0700822 * <li> If HAL user switch call fails, no Android user switch. Receiver would receive
823 * {@code STATUS_HAL_INTERNAL_FAILURE}.
824 * <li> If HAL user switch call is successful, but android user switch call fails,
825 * {@link UserHalService} is again called with request type POST_SWITCH, current user id, and
826 * target user id, but in this case the current and target user IDs would be different.
827 * <li> If another user switch request for the same target user is received while previous
828 * request is in process, receiver would receive
829 * {@code STATUS_TARGET_USER_ALREADY_BEING_SWITCHED_TO} for the new request right away.
830 * <li> If a user switch request is received while another user switch request for different
831 * target user is in process, the previous request would be abandoned and new request will be
832 * processed. No POST_SWITCH would be sent for the previous request.
833 * <ul/>
Mayank Garg59f22192020-03-27 00:51:45 -0700834 *
Mayank Garge19c2922020-03-30 18:05:53 -0700835 * @param targetUserId - target user Id
Mayank Garg59f22192020-03-27 00:51:45 -0700836 * @param timeoutMs - timeout for HAL to wait
837 * @param receiver - receiver for the results
838 */
Mayank Garge19c2922020-03-30 18:05:53 -0700839 @Override
840 public void switchUser(@UserIdInt int targetUserId, int timeoutMs,
felipeale5bf0322020-04-16 15:10:57 -0700841 @NonNull AndroidFuture<UserSwitchResult> receiver) {
Mayank Garg1f20dcd2020-04-22 17:46:01 -0700842 EventLog.writeEvent(EventLogTags.CAR_USER_SVC_SWITCH_USER_REQ, targetUserId, timeoutMs);
Mayank Garg59f22192020-03-27 00:51:45 -0700843 checkManageUsersPermission("switchUser");
Mayank Garge19c2922020-03-30 18:05:53 -0700844 Objects.requireNonNull(receiver);
845 UserInfo targetUser = mUserManager.getUserInfo(targetUserId);
felipealf7368962020-04-16 12:55:19 -0700846 Preconditions.checkArgument(targetUser != null, "Target user doesn't exist");
Mayank Garg7a114c82020-04-08 21:25:06 -0700847
felipealf7368962020-04-16 12:55:19 -0700848 int currentUser = ActivityManager.getCurrentUser();
849 if (currentUser == targetUserId) {
Mayank Garg0e239142020-04-14 19:16:31 -0700850 if (Log.isLoggable(TAG_USER, Log.DEBUG)) {
851 Log.d(TAG_USER, "Current user is same as requested target user: " + targetUserId);
852 }
Mayank Gargef1b9332020-06-11 17:36:56 -0700853 int resultStatus = UserSwitchResult.STATUS_OK_USER_ALREADY_IN_FOREGROUND;
felipealdfdf8512020-06-01 09:35:45 -0700854 sendUserSwitchResult(receiver, resultStatus);
Mayank Garg0e239142020-04-14 19:16:31 -0700855 return;
856 }
857
Mayank Garg9ed099e2020-06-04 16:05:20 -0700858 // If User Hal is not supported, just android user switch.
859 if (!isUserHalSupported()) {
860 try {
861 if (mAm.switchUser(targetUserId)) {
862 sendUserSwitchResult(receiver, UserSwitchResult.STATUS_SUCCESSFUL);
863 return;
864 }
865 } catch (RemoteException e) {
866 // ignore
867 Log.w(TAG_USER,
868 "error while switching user " + targetUser.toFullString(), e);
869 }
870 sendUserSwitchResult(receiver, UserSwitchResult.STATUS_ANDROID_FAILURE);
871 return;
872 }
873
Mayank Garg7a114c82020-04-08 21:25:06 -0700874 synchronized (mLockUser) {
felipealf7368962020-04-16 12:55:19 -0700875 if (Log.isLoggable(TAG_USER, Log.DEBUG)) {
876 Log.d(TAG_USER, "switchUser(" + targetUserId + "): currentuser=" + currentUser
877 + ", mUserIdForUserSwitchInProcess=" + mUserIdForUserSwitchInProcess);
878 }
879
Mayank Garg1f20dcd2020-04-22 17:46:01 -0700880 // If there is another request for the same target user, return another request in
881 // process, else {@link mUserIdForUserSwitchInProcess} is updated and {@link
882 // mRequestIdForUserSwitchInProcess} is reset. It is possible that there may be another
883 // user switch request in process for different target user, but that request is now
884 // ignored.
felipealf7368962020-04-16 12:55:19 -0700885 if (mUserIdForUserSwitchInProcess == targetUserId) {
Mayank Garg1f20dcd2020-04-22 17:46:01 -0700886 if (Log.isLoggable(TAG_USER, Log.DEBUG)) {
887 Log.d(TAG_USER,
888 "Another user switch request in process for the requested target user: "
889 + targetUserId);
890 }
891
892 int resultStatus = UserSwitchResult.STATUS_TARGET_USER_ALREADY_BEING_SWITCHED_TO;
felipealdfdf8512020-06-01 09:35:45 -0700893 sendUserSwitchResult(receiver, resultStatus);
Mayank Garg7a114c82020-04-08 21:25:06 -0700894 return;
895 }
Mayank Garg1f20dcd2020-04-22 17:46:01 -0700896 else {
897 mUserIdForUserSwitchInProcess = targetUserId;
898 mRequestIdForUserSwitchInProcess = 0;
899 }
Mayank Garg7a114c82020-04-08 21:25:06 -0700900 }
901
felipealdfdf8512020-06-01 09:35:45 -0700902 UsersInfo usersInfo = UserHalHelper.newUsersInfo(mUserManager);
Mayank Gargeb37d092020-06-02 14:37:57 -0700903 SwitchUserRequest request = createUserSwitchRequest(targetUserId, usersInfo);
904
905 mHal.switchUser(request, timeoutMs, (status, resp) -> {
felipealf7368962020-04-16 12:55:19 -0700906 if (Log.isLoggable(TAG_USER, Log.DEBUG)) {
907 Log.d(TAG, "switch response: status="
908 + UserHalHelper.halCallbackStatusToString(status) + ", resp=" + resp);
909 }
910
felipeale5bf0322020-04-16 15:10:57 -0700911 int resultStatus = UserSwitchResult.STATUS_HAL_INTERNAL_FAILURE;
felipealf7368962020-04-16 12:55:19 -0700912
Mayank Garg1f20dcd2020-04-22 17:46:01 -0700913 synchronized (mLockUser) {
914 if (status != HalCallback.STATUS_OK) {
915 EventLog.writeEvent(EventLogTags.CAR_USER_SVC_SWITCH_USER_RESP, status);
916 Log.w(TAG, "invalid callback status ("
917 + UserHalHelper.halCallbackStatusToString(status) + ") for response "
918 + resp);
felipealdfdf8512020-06-01 09:35:45 -0700919 sendUserSwitchResult(receiver, resultStatus);
Mayank Garg1f20dcd2020-04-22 17:46:01 -0700920 mUserIdForUserSwitchInProcess = UserHandle.USER_NULL;
921 return;
922 }
felipealf7368962020-04-16 12:55:19 -0700923
Mayank Garg1f20dcd2020-04-22 17:46:01 -0700924 EventLog.writeEvent(EventLogTags.CAR_USER_SVC_SWITCH_USER_RESP, status, resp.status,
925 resp.errorMessage);
926
927 if (mUserIdForUserSwitchInProcess != targetUserId) {
928 // Another user switch request received while HAL responded. No need to process
929 // this request further
930 if (Log.isLoggable(TAG_USER, Log.DEBUG)) {
931 Log.d(TAG_USER, "Another user switch received while HAL responsed. Request "
932 + "abondoned for : " + targetUserId + ". Current user in process: "
933 + mUserIdForUserSwitchInProcess);
felipealf7368962020-04-16 12:55:19 -0700934 }
Mayank Garg1f20dcd2020-04-22 17:46:01 -0700935 resultStatus =
936 UserSwitchResult.STATUS_TARGET_USER_ABANDONED_DUE_TO_A_NEW_REQUEST;
felipealdfdf8512020-06-01 09:35:45 -0700937 sendUserSwitchResult(receiver, resultStatus);
Mayank Garg1f20dcd2020-04-22 17:46:01 -0700938 mUserIdForUserSwitchInProcess = UserHandle.USER_NULL;
939 return;
940 }
941
942 switch (resp.status) {
943 case SwitchUserStatus.SUCCESS:
944 boolean switched;
945 try {
946 switched = mAm.switchUser(targetUserId);
947 if (switched) {
Mayank Garg587f1942020-05-06 01:41:34 -0700948 sendUserSwitchUiCallback(targetUserId);
Mayank Garg1f20dcd2020-04-22 17:46:01 -0700949 resultStatus = UserSwitchResult.STATUS_SUCCESSFUL;
950 mRequestIdForUserSwitchInProcess = resp.requestId;
951 } else {
952 resultStatus = UserSwitchResult.STATUS_ANDROID_FAILURE;
953 postSwitchHalResponse(resp.requestId, targetUserId);
954 }
955 } catch (RemoteException e) {
956 // ignore
957 Log.w(TAG_USER,
958 "error while switching user " + targetUser.toFullString(), e);
959 }
960 break;
961 case SwitchUserStatus.FAILURE:
962 // HAL failed to switch user
963 resultStatus = UserSwitchResult.STATUS_HAL_FAILURE;
964 break;
felipealdfdf8512020-06-01 09:35:45 -0700965 default:
966 // Shouldn't happen because UserHalService validates the status
967 Log.wtf(TAG, "Received invalid user switch status from HAL: " + resp);
Mayank Garg1f20dcd2020-04-22 17:46:01 -0700968 }
969
970 if (mRequestIdForUserSwitchInProcess == 0) {
971 mUserIdForUserSwitchInProcess = UserHandle.USER_NULL;
972 }
Mayank Garg59f22192020-03-27 00:51:45 -0700973 }
felipealdfdf8512020-06-01 09:35:45 -0700974 sendUserSwitchResult(receiver, resultStatus, resp.errorMessage);
Mayank Garg59f22192020-03-27 00:51:45 -0700975 });
976 }
977
Mayank Garga55c3092020-05-28 03:19:24 -0700978 @Override
979 public UserRemovalResult removeUser(@UserIdInt int userId) {
980 checkManageUsersPermission("removeUser");
981 EventLog.writeEvent(EventLogTags.CAR_USER_SVC_REMOVE_USER_REQ, userId);
982 // If the requested user is the current user, return error.
983 if (ActivityManager.getCurrentUser() == userId) {
984 return logAndGetResults(userId,
985 UserRemovalResult.STATUS_TARGET_USER_IS_CURRENT_USER);
986 }
987
988 // If requested user is the only admin user, return error.
989 UserInfo userInfo = mUserManager.getUserInfo(userId);
990 if (userInfo == null) {
991 return logAndGetResults(userId, UserRemovalResult.STATUS_USER_DOES_NOT_EXIST);
992 }
993
994 android.hardware.automotive.vehicle.V2_0.UserInfo halUser =
995 new android.hardware.automotive.vehicle.V2_0.UserInfo();
996 halUser.userId = userInfo.id;
997 halUser.flags = UserHalHelper.convertFlags(userInfo);
998 UsersInfo usersInfo = UserHalHelper.newUsersInfo(mUserManager);
999
1000 // Do not delete last admin user.
1001 if (UserHalHelper.isAdmin(halUser.flags)) {
1002 int size = usersInfo.existingUsers.size();
1003 int totalAdminUsers = 0;
1004 for (int i = 0; i < size; i++) {
1005 if (UserHalHelper.isAdmin(usersInfo.existingUsers.get(i).flags)) {
1006 totalAdminUsers++;
1007 }
1008 }
1009 if (totalAdminUsers == 1) {
1010 return logAndGetResults(userId,
1011 UserRemovalResult.STATUS_TARGET_USER_IS_LAST_ADMIN_USER);
1012 }
1013 }
1014
1015 // First remove user from android and then remove from HAL because HAL remove user is one
1016 // way call.
1017 if (!mUserManager.removeUser(userId)) {
1018 return logAndGetResults(userId, UserRemovalResult.STATUS_ANDROID_FAILURE);
1019 }
1020
Mayank Garg9ed099e2020-06-04 16:05:20 -07001021 if (isUserHalSupported()) {
1022 RemoveUserRequest request = new RemoveUserRequest();
1023 request.removedUserInfo = halUser;
Mayank Garg4adef862020-06-16 18:12:28 -07001024 request.usersInfo = UserHalHelper.newUsersInfo(mUserManager);
Mayank Garg9ed099e2020-06-04 16:05:20 -07001025 mHal.removeUser(request);
1026 }
1027
Mayank Garga55c3092020-05-28 03:19:24 -07001028 return logAndGetResults(userId, UserRemovalResult.STATUS_SUCCESSFUL);
1029 }
1030
1031 private UserRemovalResult logAndGetResults(@UserIdInt int userId,
1032 @UserRemovalResult.Status int result) {
1033 EventLog.writeEvent(EventLogTags.CAR_USER_SVC_REMOVE_USER_RESP, userId, result);
1034 return new UserRemovalResult(result);
1035 }
1036
Mayank Garg587f1942020-05-06 01:41:34 -07001037 private void sendUserSwitchUiCallback(@UserIdInt int targetUserId) {
1038 if (mUserSwitchUiReceiver == null) {
1039 Log.w(TAG_USER, "No User switch UI receiver.");
1040 return;
1041 }
1042
felipealdfdf8512020-06-01 09:35:45 -07001043 EventLog.writeEvent(EventLogTags.CAR_USER_SVC_SWITCH_USER_UI_REQ, targetUserId);
Mayank Garg587f1942020-05-06 01:41:34 -07001044 try {
Mayank Garg587f1942020-05-06 01:41:34 -07001045 mUserSwitchUiReceiver.send(targetUserId, null);
1046 } catch (RemoteException e) {
1047 Log.e(TAG_USER, "Error calling user switch UI receiver.", e);
1048 }
1049 }
1050
felipeal5e3ede42020-04-23 18:04:07 -07001051 @Override
felipealdfdf8512020-06-01 09:35:45 -07001052 public void createUser(@Nullable String name, @NonNull String userType, @UserInfoFlag int flags,
1053 int timeoutMs, @NonNull AndroidFuture<UserCreationResult> receiver) {
1054 Objects.requireNonNull(userType, "user type cannot be null");
1055 Objects.requireNonNull(receiver, "receiver cannot be null");
1056 checkManageOrCreateUsersPermission("createUser");
Mayank Garg94f3eb92020-08-12 12:38:58 -07001057 EventLog.writeEvent(EventLogTags.CAR_USER_SVC_CREATE_USER_REQ,
1058 UserHelperLite.safeName(name), userType, flags, timeoutMs);
felipealdfdf8512020-06-01 09:35:45 -07001059
1060 UserInfo newUser;
1061 try {
1062 newUser = mUserManager.createUser(name, userType, flags);
1063 if (newUser == null) {
1064 Log.w(TAG, "um.createUser() returned null for user of type " + userType
1065 + " and flags " + UserInfo.flagsToString(flags));
1066 sendUserCreationResultFailure(receiver, UserCreationResult.STATUS_ANDROID_FAILURE);
1067 return;
1068 }
1069 if (Log.isLoggable(TAG_USER, Log.DEBUG)) {
1070 Log.d(TAG, "Created user: " + newUser.toFullString());
1071 }
1072 EventLog.writeEvent(EventLogTags.CAR_USER_SVC_CREATE_USER_USER_CREATED, newUser.id,
Mayank Garg94f3eb92020-08-12 12:38:58 -07001073 UserHelperLite.safeName(newUser.name), newUser.userType, newUser.flags);
felipealdfdf8512020-06-01 09:35:45 -07001074 } catch (RuntimeException e) {
1075 Log.e(TAG_USER, "Error creating user of type " + userType + " and flags"
1076 + UserInfo.flagsToString(flags), e);
1077 sendUserCreationResultFailure(receiver, UserCreationResult.STATUS_ANDROID_FAILURE);
1078 return;
1079 }
1080
Mayank Garg9ed099e2020-06-04 16:05:20 -07001081 if (!isUserHalSupported()) {
1082 sendUserCreationResult(receiver, UserCreationResult.STATUS_SUCCESSFUL, newUser, null);
1083 return;
1084 }
1085
felipealdfdf8512020-06-01 09:35:45 -07001086 CreateUserRequest request = new CreateUserRequest();
1087 request.usersInfo = UserHalHelper.newUsersInfo(mUserManager);
1088 if (!TextUtils.isEmpty(name)) {
1089 request.newUserName = name;
1090 }
1091 request.newUserInfo.userId = newUser.id;
1092 request.newUserInfo.flags = UserHalHelper.convertFlags(newUser);
1093 if (Log.isLoggable(TAG_USER, Log.DEBUG)) {
1094 Log.d(TAG, "Create user request: " + request);
1095 }
1096
1097 try {
1098 mHal.createUser(request, timeoutMs, (status, resp) -> {
1099 int resultStatus = UserCreationResult.STATUS_HAL_INTERNAL_FAILURE;
1100 if (Log.isLoggable(TAG_USER, Log.DEBUG)) {
1101 Log.d(TAG, "createUserResponse: status="
1102 + UserHalHelper.halCallbackStatusToString(status) + ", resp=" + resp);
1103 }
1104 UserInfo user = null; // user returned in the result
1105 if (status != HalCallback.STATUS_OK) {
1106 Log.w(TAG, "invalid callback status ("
1107 + UserHalHelper.halCallbackStatusToString(status) + ") for response "
1108 + resp);
1109 EventLog.writeEvent(EventLogTags.CAR_USER_SVC_CREATE_USER_RESP, status,
1110 resultStatus, resp.errorMessage);
1111 removeUser(newUser, "HAL call failed with "
1112 + UserHalHelper.halCallbackStatusToString(status));
1113 sendUserCreationResult(receiver, resultStatus, user, /* errorMsg= */ null);
1114 return;
1115 }
1116
1117 switch (resp.status) {
1118 case CreateUserStatus.SUCCESS:
1119 resultStatus = UserCreationResult.STATUS_SUCCESSFUL;
1120 user = newUser;
1121 break;
1122 case CreateUserStatus.FAILURE:
1123 // HAL failed to switch user
1124 resultStatus = UserCreationResult.STATUS_HAL_FAILURE;
1125 break;
1126 default:
1127 // Shouldn't happen because UserHalService validates the status
1128 Log.wtf(TAG, "Received invalid user switch status from HAL: " + resp);
1129 }
1130 EventLog.writeEvent(EventLogTags.CAR_USER_SVC_CREATE_USER_RESP, status,
1131 resultStatus, resp.errorMessage);
1132 if (user == null) {
1133 removeUser(newUser, "HAL returned "
1134 + UserCreationResult.statusToString(resultStatus));
1135 }
1136 sendUserCreationResult(receiver, resultStatus, user, resp.errorMessage);
1137 });
1138 } catch (Exception e) {
1139 Log.w(TAG, "mHal.createUser(" + request + ") failed", e);
1140 removeUser(newUser, "mHal.createUser() failed");
1141 sendUserCreationResultFailure(receiver, UserCreationResult.STATUS_HAL_INTERNAL_FAILURE);
1142 }
1143 }
1144
1145 private void removeUser(@NonNull UserInfo user, @NonNull String reason) {
1146 EventLog.writeEvent(EventLogTags.CAR_USER_SVC_CREATE_USER_USER_REMOVED, user.id, reason);
1147 try {
1148 if (!mUserManager.removeUser(user.id)) {
1149 Log.w(TAG, "Failed to remove user " + user.toFullString());
1150 }
1151 } catch (Exception e) {
1152 Log.e(TAG, "Failed to remove user " + user.toFullString(), e);
1153 }
1154 }
1155
1156 @Override
felipeal159a2a42020-05-08 10:32:11 -07001157 public UserIdentificationAssociationResponse getUserIdentificationAssociation(int[] types) {
Mayank Garg9ed099e2020-06-04 16:05:20 -07001158 if (!isUserHalUserAssociationSupported()) {
1159 return UserIdentificationAssociationResponse.forFailure(VEHICLE_HAL_NOT_SUPPORTED);
1160 }
1161
felipeal5e3ede42020-04-23 18:04:07 -07001162 Preconditions.checkArgument(!ArrayUtils.isEmpty(types), "must have at least one type");
1163 checkManageUsersPermission("getUserIdentificationAssociation");
1164
1165 int uid = getCallingUid();
1166 int userId = UserHandle.getUserId(uid);
1167 EventLog.writeEvent(EventLogTags.CAR_USER_MGR_GET_USER_AUTH_REQ, uid, userId);
1168
1169 UserIdentificationGetRequest request = new UserIdentificationGetRequest();
1170 request.userInfo.userId = userId;
1171 request.userInfo.flags = getHalUserInfoFlags(userId);
1172
1173 request.numberAssociationTypes = types.length;
1174 for (int i = 0; i < types.length; i++) {
1175 request.associationTypes.add(types[i]);
1176 }
1177
1178 UserIdentificationResponse halResponse = mHal.getUserAssociation(request);
1179 if (halResponse == null) {
1180 Log.w(TAG, "getUserIdentificationAssociation(): HAL returned null for "
1181 + Arrays.toString(types));
felipeal159a2a42020-05-08 10:32:11 -07001182 return UserIdentificationAssociationResponse.forFailure();
felipeal5e3ede42020-04-23 18:04:07 -07001183 }
1184
1185 int[] values = new int[halResponse.associations.size()];
1186 for (int i = 0; i < values.length; i++) {
1187 values[i] = halResponse.associations.get(i).value;
1188 }
1189 EventLog.writeEvent(EventLogTags.CAR_USER_MGR_GET_USER_AUTH_RESP, values.length);
1190
felipeal159a2a42020-05-08 10:32:11 -07001191 return UserIdentificationAssociationResponse.forSuccess(values, halResponse.errorMessage);
1192 }
1193
1194 @Override
1195 public void setUserIdentificationAssociation(int timeoutMs, int[] types, int[] values,
1196 AndroidFuture<UserIdentificationAssociationResponse> result) {
Mayank Garg9ed099e2020-06-04 16:05:20 -07001197 if (!isUserHalUserAssociationSupported()) {
1198 result.complete(
1199 UserIdentificationAssociationResponse.forFailure(VEHICLE_HAL_NOT_SUPPORTED));
1200 return;
1201 }
1202
felipeal159a2a42020-05-08 10:32:11 -07001203 Preconditions.checkArgument(!ArrayUtils.isEmpty(types), "must have at least one type");
1204 Preconditions.checkArgument(!ArrayUtils.isEmpty(values), "must have at least one value");
1205 if (types.length != values.length) {
1206 throw new IllegalArgumentException("types (" + Arrays.toString(types) + ") and values ("
1207 + Arrays.toString(values) + ") should have the same length");
1208 }
1209 checkManageUsersPermission("setUserIdentificationAssociation");
1210
1211 int uid = getCallingUid();
1212 int userId = UserHandle.getUserId(uid);
1213 EventLog.writeEvent(EventLogTags.CAR_USER_MGR_SET_USER_AUTH_REQ, uid, userId, types.length);
1214
1215 UserIdentificationSetRequest request = new UserIdentificationSetRequest();
1216 request.userInfo.userId = userId;
1217 request.userInfo.flags = getHalUserInfoFlags(userId);
1218
1219 request.numberAssociations = types.length;
1220 for (int i = 0; i < types.length; i++) {
1221 UserIdentificationSetAssociation association = new UserIdentificationSetAssociation();
1222 association.type = types[i];
1223 association.value = values[i];
1224 request.associations.add(association);
1225 }
1226
1227 mHal.setUserAssociation(timeoutMs, request, (status, resp) -> {
1228 if (status != HalCallback.STATUS_OK) {
1229 Log.w(TAG, "setUserIdentificationAssociation(): invalid callback status ("
1230 + UserHalHelper.halCallbackStatusToString(status) + ") for response "
1231 + resp);
1232 if (resp == null || TextUtils.isEmpty(resp.errorMessage)) {
1233 EventLog.writeEvent(EventLogTags.CAR_USER_MGR_SET_USER_AUTH_RESP, 0);
1234 result.complete(UserIdentificationAssociationResponse.forFailure());
1235 return;
1236 }
1237 EventLog.writeEvent(EventLogTags.CAR_USER_MGR_SET_USER_AUTH_RESP, 0,
1238 resp.errorMessage);
1239 result.complete(
1240 UserIdentificationAssociationResponse.forFailure(resp.errorMessage));
1241 return;
1242 }
1243 int respSize = resp.associations.size();
1244 EventLog.writeEvent(EventLogTags.CAR_USER_MGR_SET_USER_AUTH_RESP, respSize,
1245 resp.errorMessage);
1246
1247 int[] responseTypes = new int[respSize];
1248 for (int i = 0; i < respSize; i++) {
1249 responseTypes[i] = resp.associations.get(i).value;
1250 }
1251 UserIdentificationAssociationResponse response = UserIdentificationAssociationResponse
1252 .forSuccess(responseTypes, resp.errorMessage);
1253 if (Log.isLoggable(TAG_USER, Log.DEBUG)) {
1254 Log.d(TAG, "setUserIdentificationAssociation(): resp= " + resp
1255 + ", converted=" + response);
1256 }
1257 result.complete(response);
1258 });
felipeal5e3ede42020-04-23 18:04:07 -07001259 }
1260
1261 /**
1262 * Gets the User HAL flags for the given user.
1263 *
1264 * @throws IllegalArgumentException if the user does not exist.
1265 */
1266 private int getHalUserInfoFlags(@UserIdInt int userId) {
1267 UserInfo user = mUserManager.getUserInfo(userId);
1268 Preconditions.checkArgument(user != null, "no user for id %d", userId);
1269 return UserHalHelper.convertFlags(user);
1270 }
1271
Mayank Garg0e239142020-04-14 19:16:31 -07001272 private void sendResult(@NonNull IResultReceiver receiver, int resultCode,
1273 @Nullable Bundle resultData) {
1274 try {
1275 receiver.send(resultCode, resultData);
1276 } catch (RemoteException e) {
1277 // ignore
1278 Log.w(TAG_USER, "error while sending results", e);
1279 }
1280 }
1281
felipealdfdf8512020-06-01 09:35:45 -07001282 private void sendUserSwitchResult(@NonNull AndroidFuture<UserSwitchResult> receiver,
felipeale5bf0322020-04-16 15:10:57 -07001283 @UserSwitchResult.Status int status) {
felipealdfdf8512020-06-01 09:35:45 -07001284 sendUserSwitchResult(receiver, status, /* errorMessage= */ null);
felipeale5bf0322020-04-16 15:10:57 -07001285 }
1286
felipealdfdf8512020-06-01 09:35:45 -07001287 private void sendUserSwitchResult(@NonNull AndroidFuture<UserSwitchResult> receiver,
felipeale5bf0322020-04-16 15:10:57 -07001288 @UserSwitchResult.Status int status, @Nullable String errorMessage) {
1289 receiver.complete(new UserSwitchResult(status, errorMessage));
1290 }
1291
felipealdfdf8512020-06-01 09:35:45 -07001292 private void sendUserCreationResultFailure(@NonNull AndroidFuture<UserCreationResult> receiver,
1293 @UserCreationResult.Status int status) {
1294 sendUserCreationResult(receiver, status, /* user= */ null, /* errorMessage= */ null);
1295 }
1296
1297 private void sendUserCreationResult(@NonNull AndroidFuture<UserCreationResult> receiver,
1298 @UserCreationResult.Status int status, @NonNull UserInfo user,
1299 @Nullable String errorMessage) {
1300 if (TextUtils.isEmpty(errorMessage)) {
1301 errorMessage = null;
1302 }
1303 receiver.complete(new UserCreationResult(status, user, errorMessage));
1304 }
1305
Mayank Garg6307fe42020-04-15 23:09:03 -07001306 /**
1307 * Calls activity manager for user switch.
1308 *
1309 * <p><b>NOTE</b> This method is meant to be called just by UserHalService.
1310 *
1311 * @param requestId for the user switch request
1312 * @param targetUserId of the target user
1313 *
1314 * @hide
1315 */
1316 public void switchAndroidUserFromHal(int requestId, @UserIdInt int targetUserId) {
1317 EventLog.writeEvent(EventLogTags.CAR_USER_SVC_SWITCH_USER_FROM_HAL_REQ, requestId,
1318 targetUserId);
1319 Log.i(TAG_USER, "User hal requested a user switch. Target user id " + targetUserId);
1320
1321 try {
1322 boolean result = mAm.switchUser(targetUserId);
1323 if (result) {
1324 updateUserSwitchInProcess(requestId, targetUserId);
1325 } else {
1326 postSwitchHalResponse(requestId, targetUserId);
1327 }
1328 } catch (RemoteException e) {
1329 // ignore
1330 Log.w(TAG_USER, "error while switching user " + targetUserId, e);
1331 }
1332 }
1333
1334 private void updateUserSwitchInProcess(int requestId, @UserIdInt int targetUserId) {
1335 synchronized (mLockUser) {
1336 if (mUserIdForUserSwitchInProcess != UserHandle.USER_NULL) {
1337 // Some other user switch is in process.
1338 if (Log.isLoggable(TAG_USER, Log.DEBUG)) {
1339 Log.d(TAG_USER, "User switch for user: " + mUserIdForUserSwitchInProcess
1340 + " is in process. Abandoning it as a new user switch is requested"
1341 + " for the target user: " + targetUserId);
1342 }
1343 }
1344 mUserIdForUserSwitchInProcess = targetUserId;
1345 mRequestIdForUserSwitchInProcess = requestId;
1346 }
1347 }
Mayank Garg9ed099e2020-06-04 16:05:20 -07001348
Mayank Garg7a114c82020-04-08 21:25:06 -07001349 private void postSwitchHalResponse(int requestId, @UserIdInt int targetUserId) {
Mayank Garg9ed099e2020-06-04 16:05:20 -07001350 if (!isUserHalSupported()) return;
1351
felipealdfdf8512020-06-01 09:35:45 -07001352 UsersInfo usersInfo = UserHalHelper.newUsersInfo(mUserManager);
Mayank Gargeb37d092020-06-02 14:37:57 -07001353 EventLog.writeEvent(EventLogTags.CAR_USER_SVC_POST_SWITCH_USER_REQ, requestId,
1354 targetUserId, usersInfo.currentUser.userId);
1355 SwitchUserRequest request = createUserSwitchRequest(targetUserId, usersInfo);
1356 request.requestId = requestId;
1357 mHal.postSwitchResponse(request);
1358 }
1359
1360 private SwitchUserRequest createUserSwitchRequest(@UserIdInt int targetUserId,
1361 @NonNull UsersInfo usersInfo) {
1362 UserInfo targetUser = mUserManager.getUserInfo(targetUserId);
Mayank Garg7a114c82020-04-08 21:25:06 -07001363 android.hardware.automotive.vehicle.V2_0.UserInfo halTargetUser =
1364 new android.hardware.automotive.vehicle.V2_0.UserInfo();
1365 halTargetUser.userId = targetUser.id;
1366 halTargetUser.flags = UserHalHelper.convertFlags(targetUser);
Mayank Gargeb37d092020-06-02 14:37:57 -07001367 SwitchUserRequest request = new SwitchUserRequest();
1368 request.targetUser = halTargetUser;
1369 request.usersInfo = usersInfo;
1370 return request;
Mayank Garg7a114c82020-04-08 21:25:06 -07001371 }
1372
Mayank Garg59f22192020-03-27 00:51:45 -07001373 /**
Felipe Lemee3cab982020-03-12 11:39:29 -07001374 * Checks if the User HAL is supported.
1375 */
1376 public boolean isUserHalSupported() {
1377 return mHal.isSupported();
1378 }
1379
Mayank Garg587f1942020-05-06 01:41:34 -07001380 /**
Mayank Garg9ed099e2020-06-04 16:05:20 -07001381 * Checks if the User HAL user association is supported.
1382 */
1383 @Override
1384 public boolean isUserHalUserAssociationSupported() {
1385 return mHal.isUserAssociationSupported();
1386 }
1387
1388 /**
Mayank Garg587f1942020-05-06 01:41:34 -07001389 * Sets a callback which is invoked before user switch.
1390 *
1391 * <p>
1392 * This method should only be called by the Car System UI. The purpose of this call is to notify
1393 * Car System UI to show the user switch UI before the user switch.
1394 */
1395 @Override
1396 public void setUserSwitchUiCallback(@NonNull IResultReceiver receiver) {
Yan Zhu67a383e2020-05-11 20:46:24 -07001397 checkManageUsersPermission("setUserSwitchUiCallback");
Mayank Garga480dd92020-05-14 03:14:57 -07001398
1399 // Confirm that caller is system UI.
1400 String systemUiPackageName = getSystemUiPackageName();
1401 if (systemUiPackageName == null) {
1402 throw new IllegalStateException("System UI package not found.");
1403 }
1404
1405 try {
1406 int systemUiUid = mContext
1407 .createContextAsUser(UserHandle.SYSTEM, /* flags= */ 0).getPackageManager()
1408 .getPackageUid(systemUiPackageName, PackageManager.MATCH_SYSTEM_ONLY);
1409 int callerUid = Binder.getCallingUid();
1410 if (systemUiUid != callerUid) {
1411 throw new SecurityException("Invalid caller. Only" + systemUiPackageName
1412 + " is allowed to make this call");
1413 }
1414 } catch (NameNotFoundException e) {
1415 throw new IllegalStateException("Package " + systemUiPackageName + " not found.");
1416 }
1417
Mayank Garg587f1942020-05-06 01:41:34 -07001418 mUserSwitchUiReceiver = receiver;
1419 }
1420
Mayank Garga480dd92020-05-14 03:14:57 -07001421 // TODO(157082995): This information can be taken from
1422 // PackageManageInternalImpl.getSystemUiServiceComponent
1423 @Nullable
1424 private String getSystemUiPackageName() {
1425 try {
1426 ComponentName componentName = ComponentName.unflattenFromString(mContext.getResources()
1427 .getString(com.android.internal.R.string.config_systemUIServiceComponent));
1428 return componentName.getPackageName();
1429 } catch (RuntimeException e) {
1430 Log.w(TAG_USER, "error while getting system UI package name.", e);
1431 return null;
1432 }
1433 }
1434
Keun young Park13a7a822019-04-04 15:53:08 -07001435 private void updateDefaultUserRestriction() {
1436 // We want to set restrictions on system and guest users only once. These are persisted
1437 // onto disk, so it's sufficient to do it once + we minimize the number of disk writes.
1438 if (Settings.Global.getInt(mContext.getContentResolver(),
Eric Jeong1545f3b2019-09-16 13:56:52 -07001439 CarSettings.Global.DEFAULT_USER_RESTRICTIONS_SET, /* default= */ 0) != 0) {
1440 return;
Keun young Park13a7a822019-04-04 15:53:08 -07001441 }
Eric Jeong1545f3b2019-09-16 13:56:52 -07001442 // Only apply the system user restrictions if the system user is headless.
1443 if (UserManager.isHeadlessSystemUserMode()) {
1444 setSystemUserRestrictions();
1445 }
Eric Jeong1545f3b2019-09-16 13:56:52 -07001446 Settings.Global.putInt(mContext.getContentResolver(),
1447 CarSettings.Global.DEFAULT_USER_RESTRICTIONS_SET, 1);
Keun young Park13a7a822019-04-04 15:53:08 -07001448 }
1449
Eric Jeong1545f3b2019-09-16 13:56:52 -07001450 private boolean isPersistentUser(@UserIdInt int userId) {
Anthony Hugh9932a252019-06-12 16:19:56 -07001451 return !mUserManager.getUserInfo(userId).isEphemeral();
1452 }
1453
Antonio Kantekc8114752020-03-05 21:37:39 -08001454 /**
Antonio Kantekc8114752020-03-05 21:37:39 -08001455 * Adds a new {@link UserLifecycleListener} to listen to user activity events.
1456 */
1457 public void addUserLifecycleListener(@NonNull UserLifecycleListener listener) {
1458 Objects.requireNonNull(listener, "listener cannot be null");
Antonio Kantek7236a5b2020-04-06 19:53:55 -07001459 mHandler.post(() -> mUserLifecycleListeners.add(listener));
Antonio Kantekc8114752020-03-05 21:37:39 -08001460 }
1461
1462 /**
1463 * Removes previously added {@link UserLifecycleListener}.
1464 */
1465 public void removeUserLifecycleListener(@NonNull UserLifecycleListener listener) {
1466 Objects.requireNonNull(listener, "listener cannot be null");
Antonio Kantek7236a5b2020-04-06 19:53:55 -07001467 mHandler.post(() -> mUserLifecycleListeners.remove(listener));
Antonio Kantekc8114752020-03-05 21:37:39 -08001468 }
1469
Eric Jeongc91f9452019-08-30 15:04:21 -07001470 /** Adds callback to listen to passenger activity events. */
1471 public void addPassengerCallback(@NonNull PassengerCallback callback) {
Daulet Zhanguzin4ded6782020-01-03 15:47:10 +00001472 Objects.requireNonNull(callback, "callback cannot be null");
Eric Jeongc91f9452019-08-30 15:04:21 -07001473 mPassengerCallbacks.add(callback);
1474 }
1475
1476 /** Removes previously added callback to listen passenger events. */
1477 public void removePassengerCallback(@NonNull PassengerCallback callback) {
Daulet Zhanguzin4ded6782020-01-03 15:47:10 +00001478 Objects.requireNonNull(callback, "callback cannot be null");
Eric Jeongc91f9452019-08-30 15:04:21 -07001479 mPassengerCallbacks.remove(callback);
1480 }
1481
1482 /** Sets the implementation of ZoneUserBindingHelper. */
1483 public void setZoneUserBindingHelper(@NonNull ZoneUserBindingHelper helper) {
1484 synchronized (mLockHelper) {
1485 mZoneUserBindingHelper = helper;
1486 }
1487 }
1488
felipeal98900c82020-04-09 09:05:02 -07001489 private void onUserUnlocked(@UserIdInt int userId) {
Keun-young Parkd462a912019-02-11 08:53:42 -08001490 ArrayList<Runnable> tasks = null;
Eric Jeongc91f9452019-08-30 15:04:21 -07001491 synchronized (mLockUser) {
Mayank Garg7a114c82020-04-08 21:25:06 -07001492 sendPostSwitchToHalLocked(userId);
Eric Jeong1545f3b2019-09-16 13:56:52 -07001493 if (userId == UserHandle.USER_SYSTEM) {
Keun young Parkf3523cd2019-04-08 10:09:17 -07001494 if (!mUser0Unlocked) { // user 0, unlocked, do this only once
1495 updateDefaultUserRestriction();
1496 tasks = new ArrayList<>(mUser0UnlockTasks);
1497 mUser0UnlockTasks.clear();
Antonio Kantek4cf199d2020-03-27 15:56:13 -07001498 mUser0Unlocked = true;
Keun young Parkf3523cd2019-04-08 10:09:17 -07001499 }
1500 } else { // none user0
Eric Jeong1545f3b2019-09-16 13:56:52 -07001501 Integer user = userId;
1502 if (isPersistentUser(userId)) {
Keun young Parkf3523cd2019-04-08 10:09:17 -07001503 // current foreground user should stay in top priority.
Anthony Hughfbb67762019-10-15 12:54:54 -07001504 if (userId == ActivityManager.getCurrentUser()) {
Keun young Parkf3523cd2019-04-08 10:09:17 -07001505 mBackgroundUsersToRestart.remove(user);
1506 mBackgroundUsersToRestart.add(0, user);
1507 }
1508 // -1 for user 0
1509 if (mBackgroundUsersToRestart.size() > (mMaxRunningUsers - 1)) {
Eric Jeong1545f3b2019-09-16 13:56:52 -07001510 int userToDrop = mBackgroundUsersToRestart.get(
Keun young Parkf3523cd2019-04-08 10:09:17 -07001511 mBackgroundUsersToRestart.size() - 1);
Eric Jeong1545f3b2019-09-16 13:56:52 -07001512 Log.i(TAG_USER, "New user unlocked:" + userId
Keun young Parkf3523cd2019-04-08 10:09:17 -07001513 + ", dropping least recently user from restart list:" + userToDrop);
1514 // Drop the least recently used user.
1515 mBackgroundUsersToRestart.remove(mBackgroundUsersToRestart.size() - 1);
1516 }
1517 }
Keun-young Parkd462a912019-02-11 08:53:42 -08001518 }
1519 }
1520 if (tasks != null && tasks.size() > 0) {
Eric Jeong1545f3b2019-09-16 13:56:52 -07001521 Log.d(TAG_USER, "User0 unlocked, run queued tasks:" + tasks.size());
Keun-young Parkd462a912019-02-11 08:53:42 -08001522 for (Runnable r : tasks) {
1523 r.run();
1524 }
1525 }
1526 }
1527
1528 /**
Eric Jeong1545f3b2019-09-16 13:56:52 -07001529 * Starts all background users that were active in system.
1530 *
Keun young Parkfb656372019-03-12 18:37:55 -07001531 * @return list of background users started successfully.
1532 */
Eric Jeong1545f3b2019-09-16 13:56:52 -07001533 @NonNull
Keun young Parkfb656372019-03-12 18:37:55 -07001534 public ArrayList<Integer> startAllBackgroundUsers() {
1535 ArrayList<Integer> users;
Eric Jeongc91f9452019-08-30 15:04:21 -07001536 synchronized (mLockUser) {
Keun young Parkf3523cd2019-04-08 10:09:17 -07001537 users = new ArrayList<>(mBackgroundUsersToRestart);
1538 mBackgroundUsersRestartedHere.clear();
1539 mBackgroundUsersRestartedHere.addAll(mBackgroundUsersToRestart);
Keun young Parkfb656372019-03-12 18:37:55 -07001540 }
1541 ArrayList<Integer> startedUsers = new ArrayList<>();
1542 for (Integer user : users) {
Anthony Hughfbb67762019-10-15 12:54:54 -07001543 if (user == ActivityManager.getCurrentUser()) {
Keun young Parkfb656372019-03-12 18:37:55 -07001544 continue;
1545 }
1546 try {
1547 if (mAm.startUserInBackground(user)) {
Keun young Parkf3523cd2019-04-08 10:09:17 -07001548 if (mUserManager.isUserUnlockingOrUnlocked(user)) {
1549 // already unlocked / unlocking. No need to unlock.
Keun young Parkfb656372019-03-12 18:37:55 -07001550 startedUsers.add(user);
Keun young Parkf3523cd2019-04-08 10:09:17 -07001551 } else if (mAm.unlockUser(user, null, null, null)) {
1552 startedUsers.add(user);
1553 } else { // started but cannot unlock
Eric Jeong1545f3b2019-09-16 13:56:52 -07001554 Log.w(TAG_USER, "Background user started but cannot be unlocked:" + user);
Keun young Parkf3523cd2019-04-08 10:09:17 -07001555 if (mUserManager.isUserRunning(user)) {
1556 // add to started list so that it can be stopped later.
1557 startedUsers.add(user);
1558 }
Keun young Parkfb656372019-03-12 18:37:55 -07001559 }
1560 }
1561 } catch (RemoteException e) {
1562 // ignore
Eric Jeong1545f3b2019-09-16 13:56:52 -07001563 Log.w(TAG_USER, "error while starting user in background", e);
Keun young Parkfb656372019-03-12 18:37:55 -07001564 }
1565 }
Keun young Parkf3523cd2019-04-08 10:09:17 -07001566 // Keep only users that were re-started in mBackgroundUsersRestartedHere
Eric Jeongc91f9452019-08-30 15:04:21 -07001567 synchronized (mLockUser) {
Keun young Parkf3523cd2019-04-08 10:09:17 -07001568 ArrayList<Integer> usersToRemove = new ArrayList<>();
1569 for (Integer user : mBackgroundUsersToRestart) {
1570 if (!startedUsers.contains(user)) {
1571 usersToRemove.add(user);
1572 }
1573 }
1574 mBackgroundUsersRestartedHere.removeAll(usersToRemove);
1575 }
Keun young Parkfb656372019-03-12 18:37:55 -07001576 return startedUsers;
1577 }
1578
1579 /**
Eric Jeong1545f3b2019-09-16 13:56:52 -07001580 * Stops all background users that were active in system.
1581 *
1582 * @return whether stopping succeeds.
Keun young Parkfb656372019-03-12 18:37:55 -07001583 */
Eric Jeong1545f3b2019-09-16 13:56:52 -07001584 public boolean stopBackgroundUser(@UserIdInt int userId) {
Keun young Parkf3523cd2019-04-08 10:09:17 -07001585 if (userId == UserHandle.USER_SYSTEM) {
1586 return false;
1587 }
Anthony Hughfbb67762019-10-15 12:54:54 -07001588 if (userId == ActivityManager.getCurrentUser()) {
Eric Jeong1545f3b2019-09-16 13:56:52 -07001589 Log.i(TAG_USER, "stopBackgroundUser, already a FG user:" + userId);
Keun young Parkfb656372019-03-12 18:37:55 -07001590 return false;
1591 }
1592 try {
Keun young Parked9e6282019-09-19 17:38:26 -07001593 int r = mAm.stopUserWithDelayedLocking(userId, true, null);
Keun young Parkf3523cd2019-04-08 10:09:17 -07001594 if (r == ActivityManager.USER_OP_SUCCESS) {
Eric Jeongc91f9452019-08-30 15:04:21 -07001595 synchronized (mLockUser) {
Keun young Parkf3523cd2019-04-08 10:09:17 -07001596 Integer user = userId;
1597 mBackgroundUsersRestartedHere.remove(user);
1598 }
1599 } else if (r == ActivityManager.USER_OP_IS_CURRENT) {
1600 return false;
1601 } else {
Eric Jeong1545f3b2019-09-16 13:56:52 -07001602 Log.i(TAG_USER, "stopBackgroundUser failed, user:" + userId + " err:" + r);
Keun young Parkfb656372019-03-12 18:37:55 -07001603 return false;
1604 }
1605 } catch (RemoteException e) {
1606 // ignore
Eric Jeong1545f3b2019-09-16 13:56:52 -07001607 Log.w(TAG_USER, "error while stopping user", e);
Keun young Parkfb656372019-03-12 18:37:55 -07001608 }
1609 return true;
1610 }
1611
1612 /**
Antonio Kantek4cf199d2020-03-27 15:56:13 -07001613 * Notifies all registered {@link UserLifecycleListener} with the event passed as argument.
Pavel Maltsev17e81832019-04-04 14:38:41 -07001614 */
Mayank Gargccad8062020-08-30 15:05:10 -07001615 public void onUserLifecycleEvent(@UserLifecycleEventType int eventType,
felipeale8c5dce2020-04-15 11:27:06 -07001616 @UserIdInt int fromUserId, @UserIdInt int toUserId) {
1617 int userId = toUserId;
felipeal98900c82020-04-09 09:05:02 -07001618
Antonio Kantek7236a5b2020-04-06 19:53:55 -07001619 // Handle special cases first...
felipeal98900c82020-04-09 09:05:02 -07001620 if (eventType == CarUserManager.USER_LIFECYCLE_EVENT_TYPE_SWITCHING) {
Mayank Garge5de0f92020-04-23 21:38:38 -07001621 onUserSwitching(fromUserId, toUserId);
felipeal98900c82020-04-09 09:05:02 -07001622 } else if (eventType == CarUserManager.USER_LIFECYCLE_EVENT_TYPE_UNLOCKED) {
1623 onUserUnlocked(userId);
Antonio Kantek4cf199d2020-03-27 15:56:13 -07001624 }
1625
felipeale8c5dce2020-04-15 11:27:06 -07001626 // ...then notify listeners.
Yan Zhue7921522020-04-16 15:59:25 -07001627 UserLifecycleEvent event = new UserLifecycleEvent(eventType, fromUserId, userId);
felipeale8c5dce2020-04-15 11:27:06 -07001628
Antonio Kantek7236a5b2020-04-06 19:53:55 -07001629 mHandler.post(() -> {
1630 handleNotifyServiceUserLifecycleListeners(event);
1631 handleNotifyAppUserLifecycleListeners(event);
1632 });
felipeale8c5dce2020-04-15 11:27:06 -07001633 }
1634
Mayank Garg7a114c82020-04-08 21:25:06 -07001635 private void sendPostSwitchToHalLocked(@UserIdInt int userId) {
felipealf7368962020-04-16 12:55:19 -07001636 if (mUserIdForUserSwitchInProcess == UserHandle.USER_NULL
Mayank Garg1f20dcd2020-04-22 17:46:01 -07001637 || mUserIdForUserSwitchInProcess != userId
1638 || mRequestIdForUserSwitchInProcess == 0) {
Mayank Garg7a114c82020-04-08 21:25:06 -07001639 if (Log.isLoggable(TAG_USER, Log.DEBUG)) {
1640 Log.d(TAG_USER, "No user switch request Id. No android post switch sent.");
1641 }
1642 return;
1643 }
felipealf7368962020-04-16 12:55:19 -07001644 postSwitchHalResponse(mRequestIdForUserSwitchInProcess, mUserIdForUserSwitchInProcess);
1645 mUserIdForUserSwitchInProcess = UserHandle.USER_NULL;
Mayank Garg1f20dcd2020-04-22 17:46:01 -07001646 mRequestIdForUserSwitchInProcess = 0;
Mayank Garg7a114c82020-04-08 21:25:06 -07001647 }
1648
Antonio Kantek7236a5b2020-04-06 19:53:55 -07001649 private void handleNotifyAppUserLifecycleListeners(UserLifecycleEvent event) {
1650 int listenersSize = mAppLifecycleListeners.size();
Antonio Kantek4cf199d2020-03-27 15:56:13 -07001651 if (listenersSize == 0) {
felipeal2a84d512020-04-06 18:52:15 -07001652 if (Log.isLoggable(TAG_USER, Log.DEBUG)) {
1653 Log.d(TAG_USER, "No app listener to be notified of " + event);
1654 }
Antonio Kantek4cf199d2020-03-27 15:56:13 -07001655 return;
1656 }
Antonio Kantek7236a5b2020-04-06 19:53:55 -07001657 // Must use a different TimingsTraceLog because it's another thread
1658 if (Log.isLoggable(TAG_USER, Log.DEBUG)) {
1659 Log.d(TAG_USER, "Notifying " + listenersSize + " app listeners of " + event);
1660 }
felipeal2a84d512020-04-06 18:52:15 -07001661 int userId = event.getUserId();
Antonio Kantek7236a5b2020-04-06 19:53:55 -07001662 TimingsTraceLog t = new TimingsTraceLog(TAG_USER, Trace.TRACE_TAG_SYSTEM_SERVER);
felipealde1e16d2020-06-03 13:20:48 -07001663 int eventType = event.getEventType();
1664 t.traceBegin("notify-app-listeners-user-" + userId + "-event-" + eventType);
Antonio Kantek7236a5b2020-04-06 19:53:55 -07001665 for (int i = 0; i < listenersSize; i++) {
1666 int uid = mAppLifecycleListeners.keyAt(i);
felipealde1e16d2020-06-03 13:20:48 -07001667
Antonio Kantek7236a5b2020-04-06 19:53:55 -07001668 IResultReceiver listener = mAppLifecycleListeners.valueAt(i);
1669 Bundle data = new Bundle();
felipealde1e16d2020-06-03 13:20:48 -07001670 data.putInt(CarUserManager.BUNDLE_PARAM_ACTION, eventType);
Yan Zhue7921522020-04-16 15:59:25 -07001671
felipealde1e16d2020-06-03 13:20:48 -07001672 int fromUserId = event.getPreviousUserId();
1673 if (fromUserId != UserHandle.USER_NULL) {
1674 data.putInt(CarUserManager.BUNDLE_PARAM_PREVIOUS_USER_ID, fromUserId);
Yan Zhue7921522020-04-16 15:59:25 -07001675 }
1676
felipeal2a84d512020-04-06 18:52:15 -07001677 if (Log.isLoggable(TAG_USER, Log.DEBUG)) {
Antonio Kantek7236a5b2020-04-06 19:53:55 -07001678 Log.d(TAG_USER, "Notifying listener for uid " + uid);
felipeal2a84d512020-04-06 18:52:15 -07001679 }
felipealde1e16d2020-06-03 13:20:48 -07001680 EventLog.writeEvent(EventLogTags.CAR_USER_SVC_NOTIFY_APP_LIFECYCLE_LISTENER,
1681 uid, eventType, fromUserId, userId);
Antonio Kantek7236a5b2020-04-06 19:53:55 -07001682 try {
felipealde1e16d2020-06-03 13:20:48 -07001683 t.traceBegin("notify-app-listener-uid-" + uid);
Antonio Kantek7236a5b2020-04-06 19:53:55 -07001684 listener.send(userId, data);
1685 } catch (RemoteException e) {
1686 Log.e(TAG_USER, "Error calling lifecycle listener", e);
1687 } finally {
1688 t.traceEnd();
Antonio Kantek4cf199d2020-03-27 15:56:13 -07001689 }
Antonio Kantek7236a5b2020-04-06 19:53:55 -07001690 }
1691 t.traceEnd(); // notify-app-listeners-user-USERID-event-EVENT_TYPE
Antonio Kantek4cf199d2020-03-27 15:56:13 -07001692 }
1693
Antonio Kantek7236a5b2020-04-06 19:53:55 -07001694 private void handleNotifyServiceUserLifecycleListeners(UserLifecycleEvent event) {
Antonio Kantek4cf199d2020-03-27 15:56:13 -07001695 TimingsTraceLog t = new TimingsTraceLog(TAG_USER, Trace.TRACE_TAG_SYSTEM_SERVER);
1696 if (mUserLifecycleListeners.isEmpty()) {
felipeal2a84d512020-04-06 18:52:15 -07001697 Log.w(TAG_USER, "Not notifying internal UserLifecycleListeners");
Antonio Kantek4cf199d2020-03-27 15:56:13 -07001698 return;
felipeal2a84d512020-04-06 18:52:15 -07001699 } else if (Log.isLoggable(TAG_USER, Log.DEBUG)) {
1700 Log.d(TAG_USER, "Notifying " + mUserLifecycleListeners.size() + " service listeners of "
1701 + event);
Antonio Kantek4cf199d2020-03-27 15:56:13 -07001702 }
felipeal2a84d512020-04-06 18:52:15 -07001703
felipealde1e16d2020-06-03 13:20:48 -07001704 int userId = event.getUserId();
1705 int eventType = event.getEventType();
1706 t.traceBegin("notify-listeners-user-" + userId + "-event-" + eventType);
Antonio Kantek4cf199d2020-03-27 15:56:13 -07001707 for (UserLifecycleListener listener : mUserLifecycleListeners) {
felipeal2a84d512020-04-06 18:52:15 -07001708 String listenerName = FunctionalUtils.getLambdaName(listener);
felipealde1e16d2020-06-03 13:20:48 -07001709 EventLog.writeEvent(EventLogTags.CAR_USER_SVC_NOTIFY_INTERNAL_LIFECYCLE_LISTENER,
1710 listenerName, eventType, event.getPreviousUserId(), userId);
Antonio Kantek4cf199d2020-03-27 15:56:13 -07001711 try {
Antonio Kantek7236a5b2020-04-06 19:53:55 -07001712 t.traceBegin("notify-listener-" + listenerName);
Antonio Kantek4cf199d2020-03-27 15:56:13 -07001713 listener.onEvent(event);
1714 } catch (RuntimeException e) {
1715 Log.e(TAG_USER,
felipeal2a84d512020-04-06 18:52:15 -07001716 "Exception raised when invoking onEvent for " + listenerName, e);
Antonio Kantek7236a5b2020-04-06 19:53:55 -07001717 } finally {
1718 t.traceEnd();
Antonio Kantek4cf199d2020-03-27 15:56:13 -07001719 }
Antonio Kantek4cf199d2020-03-27 15:56:13 -07001720 }
Antonio Kantek7236a5b2020-04-06 19:53:55 -07001721 t.traceEnd(); // notify-listeners-user-USERID-event-EVENT_TYPE
Antonio Kantek4cf199d2020-03-27 15:56:13 -07001722 }
1723
Mayank Garge5de0f92020-04-23 21:38:38 -07001724 private void onUserSwitching(@UserIdInt int fromUserId, @UserIdInt int toUserId) {
Eric Jeong40f8fa32020-05-12 12:23:33 -07001725 Log.i(TAG_USER, "onUserSwitching() callback for user " + toUserId);
Felipe Leme5528ff72020-02-10 19:05:14 -08001726 TimingsTraceLog t = new TimingsTraceLog(TAG_USER, Trace.TRACE_TAG_SYSTEM_SERVER);
Mayank Garge5de0f92020-04-23 21:38:38 -07001727 t.traceBegin("onUserSwitching-" + toUserId);
Felipe Leme5528ff72020-02-10 19:05:14 -08001728
Mayank Garge5de0f92020-04-23 21:38:38 -07001729 // Switch HAL users if user switch is not requested by CarUserService
1730 notifyHalLegacySwitch(fromUserId, toUserId);
1731
felipealbf327652020-06-03 11:33:29 -07001732 mCarUserManagerHelper.setLastActiveUser(toUserId);
1733
Eric Jeongc91f9452019-08-30 15:04:21 -07001734 if (mLastPassengerId != UserHandle.USER_NULL) {
1735 stopPassengerInternal(mLastPassengerId, false);
1736 }
1737 if (mEnablePassengerSupport && isPassengerDisplayAvailable()) {
1738 setupPassengerUser();
Mayank Garge5de0f92020-04-23 21:38:38 -07001739 startFirstPassenger(toUserId);
Eric Jeongc91f9452019-08-30 15:04:21 -07001740 }
felipeal98900c82020-04-09 09:05:02 -07001741 t.traceEnd();
Pavel Maltsev17e81832019-04-04 14:38:41 -07001742 }
1743
Mayank Garge5de0f92020-04-23 21:38:38 -07001744 private void notifyHalLegacySwitch(@UserIdInt int fromUserId, @UserIdInt int toUserId) {
1745 synchronized (mLockUser) {
felipeal7d12ee22020-06-05 09:30:19 -07001746 if (mUserIdForUserSwitchInProcess != UserHandle.USER_NULL) {
1747 if (Log.isLoggable(TAG_USER, Log.DEBUG)) {
1748 Log.d(TAG, "notifyHalLegacySwitch(" + fromUserId + ", " + toUserId
1749 + "): not needed, normal switch for " + mUserIdForUserSwitchInProcess);
1750 }
1751 return;
1752 }
Mayank Garge5de0f92020-04-23 21:38:38 -07001753 }
1754
Mayank Garg9ed099e2020-06-04 16:05:20 -07001755 if (!isUserHalSupported()) return;
1756
Mayank Garge5de0f92020-04-23 21:38:38 -07001757 // switch HAL user
felipeal7d12ee22020-06-05 09:30:19 -07001758 UsersInfo usersInfo = UserHalHelper.newUsersInfo(mUserManager, fromUserId);
Mayank Gargeb37d092020-06-02 14:37:57 -07001759 SwitchUserRequest request = createUserSwitchRequest(toUserId, usersInfo);
1760 mHal.legacyUserSwitch(request);
Mayank Garge5de0f92020-04-23 21:38:38 -07001761 }
1762
Pavel Maltsev17e81832019-04-04 14:38:41 -07001763 /**
Eric Jeong1545f3b2019-09-16 13:56:52 -07001764 * Runs the given runnable when user 0 is unlocked. If user 0 is already unlocked, it is
Keun-young Parkd462a912019-02-11 08:53:42 -08001765 * run inside this call.
Eric Jeong1545f3b2019-09-16 13:56:52 -07001766 *
Keun-young Parkd462a912019-02-11 08:53:42 -08001767 * @param r Runnable to run.
1768 */
Eric Jeong1545f3b2019-09-16 13:56:52 -07001769 public void runOnUser0Unlock(@NonNull Runnable r) {
Daulet Zhanguzin4ded6782020-01-03 15:47:10 +00001770 Objects.requireNonNull(r, "runnable cannot be null");
Keun-young Parkd462a912019-02-11 08:53:42 -08001771 boolean runNow = false;
Eric Jeongc91f9452019-08-30 15:04:21 -07001772 synchronized (mLockUser) {
Keun-young Parkd462a912019-02-11 08:53:42 -08001773 if (mUser0Unlocked) {
1774 runNow = true;
1775 } else {
1776 mUser0UnlockTasks.add(r);
1777 }
1778 }
1779 if (runNow) {
1780 r.run();
1781 }
1782 }
1783
Keun young Parkf3523cd2019-04-08 10:09:17 -07001784 @VisibleForTesting
Eric Jeong1545f3b2019-09-16 13:56:52 -07001785 @NonNull
1786 ArrayList<Integer> getBackgroundUsersToRestart() {
1787 ArrayList<Integer> backgroundUsersToRestart = null;
Eric Jeongc91f9452019-08-30 15:04:21 -07001788 synchronized (mLockUser) {
Keun young Parkf3523cd2019-04-08 10:09:17 -07001789 backgroundUsersToRestart = new ArrayList<>(mBackgroundUsersToRestart);
1790 }
1791 return backgroundUsersToRestart;
1792 }
1793
Ying Zheng1ab32b62018-06-26 12:47:26 -07001794 private void setSystemUserRestrictions() {
Ying Zheng1ab32b62018-06-26 12:47:26 -07001795 // Disable Location service for system user.
1796 LocationManager locationManager =
1797 (LocationManager) mContext.getSystemService(Context.LOCATION_SERVICE);
Anthony Hugh04ee04f2019-12-17 16:11:33 -08001798 locationManager.setLocationEnabledForUser(
1799 /* enabled= */ false, UserHandle.of(UserHandle.USER_SYSTEM));
Ying Zheng1ab32b62018-06-26 12:47:26 -07001800 }
Eric Jeong1545f3b2019-09-16 13:56:52 -07001801
1802 /**
Anthony Hugh6fed1e92019-10-22 16:22:03 -07001803 * Assigns a default icon to a user according to the user's id.
1804 *
1805 * @param userInfo User whose avatar is set to default icon.
Anthony Hugh6fed1e92019-10-22 16:22:03 -07001806 */
Eric Jeongb2dc6ff2020-06-05 17:00:26 -07001807 private void assignDefaultIcon(UserInfo userInfo) {
Anthony Hugh6fed1e92019-10-22 16:22:03 -07001808 int idForIcon = userInfo.isGuest() ? UserHandle.USER_NULL : userInfo.id;
1809 Bitmap bitmap = UserIcons.convertToBitmap(
1810 UserIcons.getDefaultUserIcon(mContext.getResources(), idForIcon, false));
1811 mUserManager.setUserIcon(userInfo.id, bitmap);
Anthony Hugh6fed1e92019-10-22 16:22:03 -07001812 }
1813
Eric Jeong1545f3b2019-09-16 13:56:52 -07001814 private interface UserFilter {
1815 boolean isEligibleUser(UserInfo user);
1816 }
1817
1818 /** Returns all users who are matched by the given filter. */
1819 private List<UserInfo> getUsers(UserFilter filter) {
Colin Cross0df71ea2020-08-27 04:12:26 +00001820 List<UserInfo> users = mUserManager.getAliveUsers();
Eric Jeong1545f3b2019-09-16 13:56:52 -07001821
1822 for (Iterator<UserInfo> iterator = users.iterator(); iterator.hasNext(); ) {
1823 UserInfo user = iterator.next();
1824 if (!filter.isEligibleUser(user)) {
1825 iterator.remove();
1826 }
1827 }
1828 return users;
1829 }
1830
1831 /**
Eric Jeong1545f3b2019-09-16 13:56:52 -07001832 * Enforces that apps which have the
1833 * {@link android.Manifest.permission#MANAGE_USERS MANAGE_USERS}
1834 * can make certain calls to the CarUserManager.
1835 *
1836 * @param message used as message if SecurityException is thrown.
1837 * @throws SecurityException if the caller is not system or root.
1838 */
1839 private static void checkManageUsersPermission(String message) {
felipeal2d0483c2019-11-02 14:07:22 -07001840 checkAtLeastOnePermission(message, android.Manifest.permission.MANAGE_USERS);
1841 }
1842
felipealdfdf8512020-06-01 09:35:45 -07001843 private static void checkManageOrCreateUsersPermission(String message) {
1844 checkAtLeastOnePermission(message,
1845 android.Manifest.permission.MANAGE_USERS,
1846 android.Manifest.permission.CREATE_USERS);
1847 }
1848
felipeal2d0483c2019-11-02 14:07:22 -07001849 private static void checkManageUsersOrDumpPermission(String message) {
1850 checkAtLeastOnePermission(message,
1851 android.Manifest.permission.MANAGE_USERS,
1852 android.Manifest.permission.DUMP);
1853 }
1854
Felipe Leme5528ff72020-02-10 19:05:14 -08001855 private void checkInteractAcrossUsersPermission(String message) {
1856 checkAtLeastOnePermission(message, android.Manifest.permission.INTERACT_ACROSS_USERS,
1857 android.Manifest.permission.INTERACT_ACROSS_USERS_FULL);
1858 }
1859
felipeal2d0483c2019-11-02 14:07:22 -07001860 private static void checkAtLeastOnePermission(String message, String...permissions) {
Eric Jeong1545f3b2019-09-16 13:56:52 -07001861 int callingUid = Binder.getCallingUid();
felipeal2d0483c2019-11-02 14:07:22 -07001862 if (!hasAtLeastOnePermissionGranted(callingUid, permissions)) {
1863 throw new SecurityException("You need one of " + Arrays.toString(permissions)
Felipe Leme5528ff72020-02-10 19:05:14 -08001864 + " to: " + message);
Eric Jeong1545f3b2019-09-16 13:56:52 -07001865 }
1866 }
1867
felipeal2d0483c2019-11-02 14:07:22 -07001868 private static boolean hasAtLeastOnePermissionGranted(int uid, String... permissions) {
1869 for (String permission : permissions) {
1870 if (ActivityManager.checkComponentPermission(permission, uid, /* owningUid = */-1,
1871 /* exported = */ true)
1872 == android.content.pm.PackageManager.PERMISSION_GRANTED) {
1873 return true;
1874 }
1875 }
1876 return false;
Eric Jeong1545f3b2019-09-16 13:56:52 -07001877 }
Eric Jeongc91f9452019-08-30 15:04:21 -07001878
1879 private int getNumberOfManagedProfiles(@UserIdInt int userId) {
Colin Cross0df71ea2020-08-27 04:12:26 +00001880 List<UserInfo> users = mUserManager.getAliveUsers();
Eric Jeongc91f9452019-08-30 15:04:21 -07001881 // Count all users that are managed profiles of the given user.
1882 int managedProfilesCount = 0;
1883 for (UserInfo user : users) {
1884 if (user.isManagedProfile() && user.profileGroupId == userId) {
1885 managedProfilesCount++;
1886 }
1887 }
1888 return managedProfilesCount;
1889 }
1890
1891 /**
1892 * Starts the first passenger of the given driver and assigns the passenger to the front
1893 * passenger zone.
1894 *
1895 * @param driverId User id of the driver.
1896 * @return whether it succeeds.
1897 */
1898 private boolean startFirstPassenger(@UserIdInt int driverId) {
1899 int zoneId = getAvailablePassengerZone();
1900 if (zoneId == OccupantZoneInfo.INVALID_ZONE_ID) {
1901 Log.w(TAG_USER, "passenger occupant zone is not found");
1902 return false;
1903 }
1904 List<UserInfo> passengers = getPassengers(driverId);
1905 if (passengers.size() < 1) {
1906 Log.w(TAG_USER, "passenger is not found");
1907 return false;
1908 }
1909 // Only one passenger is supported. If there are two or more passengers, the first passenger
1910 // is chosen.
1911 int passengerId = passengers.get(0).id;
1912 if (!startPassenger(passengerId, zoneId)) {
1913 Log.w(TAG_USER, "cannot start passenger " + passengerId);
1914 return false;
1915 }
1916 return true;
1917 }
1918
1919 private int getAvailablePassengerZone() {
1920 int[] occupantTypes = new int[] {CarOccupantZoneManager.OCCUPANT_TYPE_FRONT_PASSENGER,
1921 CarOccupantZoneManager.OCCUPANT_TYPE_REAR_PASSENGER};
1922 for (int occupantType : occupantTypes) {
1923 int zoneId = getZoneId(occupantType);
1924 if (zoneId != OccupantZoneInfo.INVALID_ZONE_ID) {
1925 return zoneId;
1926 }
1927 }
1928 return OccupantZoneInfo.INVALID_ZONE_ID;
1929 }
1930
1931 /**
1932 * Creates a new passenger user when there is no passenger user.
1933 */
1934 private void setupPassengerUser() {
1935 int currentUser = ActivityManager.getCurrentUser();
1936 int profileCount = getNumberOfManagedProfiles(currentUser);
1937 if (profileCount > 0) {
1938 Log.w(TAG_USER, "max profile of user" + currentUser
1939 + " is exceeded: current profile count is " + profileCount);
1940 return;
1941 }
1942 // TODO(b/140311342): Use resource string for the default passenger name.
1943 UserInfo passenger = createPassenger("Passenger", currentUser);
1944 if (passenger == null) {
1945 // Couldn't create user, most likely because there are too many.
1946 Log.w(TAG_USER, "cannot create a passenger user");
1947 return;
1948 }
1949 }
1950
1951 @NonNull
1952 private List<OccupantZoneInfo> getOccupantZones(@OccupantTypeEnum int occupantType) {
1953 ZoneUserBindingHelper helper = null;
1954 synchronized (mLockHelper) {
1955 if (mZoneUserBindingHelper == null) {
1956 Log.w(TAG_USER, "implementation is not delegated");
1957 return new ArrayList<OccupantZoneInfo>();
1958 }
1959 helper = mZoneUserBindingHelper;
1960 }
1961 return helper.getOccupantZones(occupantType);
1962 }
1963
1964 private boolean assignUserToOccupantZone(@UserIdInt int userId, int zoneId) {
1965 ZoneUserBindingHelper helper = null;
1966 synchronized (mLockHelper) {
1967 if (mZoneUserBindingHelper == null) {
1968 Log.w(TAG_USER, "implementation is not delegated");
1969 return false;
1970 }
1971 helper = mZoneUserBindingHelper;
1972 }
1973 return helper.assignUserToOccupantZone(userId, zoneId);
1974 }
1975
1976 private boolean unassignUserFromOccupantZone(@UserIdInt int userId) {
1977 ZoneUserBindingHelper helper = null;
1978 synchronized (mLockHelper) {
1979 if (mZoneUserBindingHelper == null) {
1980 Log.w(TAG_USER, "implementation is not delegated");
1981 return false;
1982 }
1983 helper = mZoneUserBindingHelper;
1984 }
1985 return helper.unassignUserFromOccupantZone(userId);
1986 }
1987
1988 private boolean isPassengerDisplayAvailable() {
1989 ZoneUserBindingHelper helper = null;
1990 synchronized (mLockHelper) {
1991 if (mZoneUserBindingHelper == null) {
1992 Log.w(TAG_USER, "implementation is not delegated");
1993 return false;
1994 }
1995 helper = mZoneUserBindingHelper;
1996 }
1997 return helper.isPassengerDisplayAvailable();
1998 }
1999
2000 /**
2001 * Gets the zone id of the given occupant type. If there are two or more zones, the first found
2002 * zone is returned.
2003 *
2004 * @param occupantType The type of an occupant.
2005 * @return The zone id of the given occupant type. {@link OccupantZoneInfo.INVALID_ZONE_ID},
2006 * if not found.
2007 */
2008 private int getZoneId(@OccupantTypeEnum int occupantType) {
2009 List<OccupantZoneInfo> zoneInfos = getOccupantZones(occupantType);
2010 return (zoneInfos.size() > 0) ? zoneInfos.get(0).zoneId : OccupantZoneInfo.INVALID_ZONE_ID;
2011 }
Mayank Garg9732d602020-08-09 21:02:40 -07002012
2013 /**
2014 * Manages the required number of pre-created users.
2015 */
2016 public void preCreateUsers() {
2017 mUserPreCreator.managePreCreatedUsers();
2018 }
Antonio Kantek4cf199d2020-03-27 15:56:13 -07002019}