blob: e168af36d1928a361e9e656853e35bc2a852b336 [file] [log] [blame]
keunyoungca515072015-07-10 12:21:47 -07001/*
2 * Copyright (C) 2015 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;
18
Pavel Maltsevabd47232017-10-10 16:54:57 -070019import android.annotation.MainThread;
Keun young Parkf3523cd2019-04-08 10:09:17 -070020import android.app.ActivityManager;
Yao Chene33f07e2016-07-26 12:02:51 -070021import android.app.UiModeManager;
Keun-young Parke54ac272016-02-16 19:02:18 -080022import android.car.Car;
23import android.car.ICar;
Pavel Maltsev0477e292016-05-27 12:22:36 -070024import android.car.cluster.renderer.IInstrumentClusterNavigation;
Ying Zheng9fc99402018-09-19 14:23:59 -070025import android.car.userlib.CarUserManagerHelper;
keunyoungca515072015-07-10 12:21:47 -070026import android.content.Context;
keunyoung1ab8e182015-09-24 09:25:22 -070027import android.content.pm.PackageManager;
Keun young Parkf3523cd2019-04-08 10:09:17 -070028import android.content.res.Resources;
Pavel Maltsevcfe93102017-02-02 12:38:08 -080029import android.hardware.automotive.vehicle.V2_0.IVehicle;
Ram Periathiruvadi5cd00cb2018-02-12 13:49:50 -080030import android.hardware.automotive.vehicle.V2_0.VehicleArea;
Keun-young Parkaab47cd2017-06-05 11:04:50 -070031import android.os.Binder;
Enrico Granatae8056ca2018-04-03 13:19:52 -070032import android.os.Build;
keunyoungca515072015-07-10 12:21:47 -070033import android.os.IBinder;
Keun-young Parkaab47cd2017-06-05 11:04:50 -070034import android.os.Process;
Steve Paikc302c7c2017-08-04 14:01:58 -070035import android.os.Trace;
Anthony Hugh9932a252019-06-12 16:19:56 -070036import android.os.UserManager;
keunyoungca515072015-07-10 12:21:47 -070037import android.util.Log;
Steve Paikc302c7c2017-08-04 14:01:58 -070038import android.util.Slog;
Keun-young Park4a79a382017-08-10 18:19:14 -070039import android.util.TimingsTraceLog;
Gregory Clark26fa6012018-03-14 18:38:56 -070040
Hongwei Wang38549092018-08-22 12:32:42 -070041import com.android.car.audio.CarAudioService;
Pavel Maltsev1ecdd6c2016-03-02 16:33:44 -080042import com.android.car.cluster.InstrumentClusterService;
Serik Beketayev06a66682018-06-12 16:54:29 -070043import com.android.car.garagemode.GarageModeService;
keunyoungcc449f72015-08-12 10:46:27 -070044import com.android.car.hal.VehicleHal;
Antonio Cortesc52d5f92017-02-06 08:47:38 -080045import com.android.car.internal.FeatureConfiguration;
Keun-young Park4aeb4bf2015-12-08 18:31:33 -080046import com.android.car.pm.CarPackageManagerService;
Enrico Granatab19bc322017-10-12 12:25:06 -070047import com.android.car.systeminterface.SystemInterface;
Ram Periathiruvadide0ca082019-03-20 11:16:44 -070048import com.android.car.trust.CarTrustedDeviceService;
Keun young Park7af7d6c2019-09-12 10:31:48 -070049import com.android.car.user.CarUserNoticeService;
Ying Zheng86d1c3e2018-05-11 11:42:48 -070050import com.android.car.user.CarUserService;
Mark Tabry76cfaaa2019-02-01 14:28:30 -080051import com.android.car.vms.VmsBrokerService;
Mark Tabrya8fce562019-01-16 16:24:01 -080052import com.android.car.vms.VmsClientManager;
keunyoungca515072015-07-10 12:21:47 -070053import com.android.internal.annotations.GuardedBy;
Steve Paik1d8bea22018-02-03 01:54:06 +000054import com.android.internal.car.ICarServiceHelper;
Oscar Azucena3f3a25e2019-07-12 14:28:24 -070055import com.android.internal.util.ArrayUtils;
Gregory Clark26fa6012018-03-14 18:38:56 -070056
Enrico Granatae8056ca2018-04-03 13:19:52 -070057import java.io.FileDescriptor;
keunyounga3b28d82015-08-25 13:05:15 -070058import java.io.PrintWriter;
Ying Zheng86d1c3e2018-05-11 11:42:48 -070059import java.util.ArrayList;
Antonio Cortese4619c72017-02-02 07:53:27 -080060import java.util.Arrays;
Ying Zheng86d1c3e2018-05-11 11:42:48 -070061import java.util.List;
keunyounga3b28d82015-08-25 13:05:15 -070062
keunyoungca515072015-07-10 12:21:47 -070063public class ICarImpl extends ICar.Stub {
keunyoungca515072015-07-10 12:21:47 -070064
Ram Periathiruvadi49d5a5a2017-02-17 18:50:09 -080065 public static final String INTERNAL_INPUT_SERVICE = "internal_input";
Keun-young Park4727da32016-05-31 10:00:51 -070066 public static final String INTERNAL_SYSTEM_ACTIVITY_MONITORING_SERVICE =
67 "system_activity_monitoring";
Keun-young Parka28d7b22016-02-29 16:54:29 -080068
keunyoungca515072015-07-10 12:21:47 -070069 private final Context mContext;
Pavel Maltsevec83b632017-01-05 15:10:55 -080070 private final VehicleHal mHal;
keunyoungca515072015-07-10 12:21:47 -070071
Anthony Chen12aec302018-04-25 16:41:48 -070072 private final SystemInterface mSystemInterface;
73
Keun-young Park4727da32016-05-31 10:00:51 -070074 private final SystemActivityMonitoringService mSystemActivityMonitoringService;
keunyoung4b0212c2015-10-29 17:11:57 -070075 private final CarPowerManagementService mCarPowerManagementService;
Keun-young Parka28d7b22016-02-29 16:54:29 -080076 private final CarPackageManagerService mCarPackageManagerService;
77 private final CarInputService mCarInputService;
Ram Periathiruvadi25c16f12017-11-17 16:48:37 -080078 private final CarDrivingStateService mCarDrivingStateService;
Ram Periathiruvadi4526a432018-01-24 13:00:54 -080079 private final CarUxRestrictionsManagerService mCarUXRestrictionsService;
keunyoungd32f4e62015-09-21 11:33:06 -070080 private final CarAudioService mCarAudioService;
Vitalii Tomkiv6e5ee612016-03-09 14:57:32 -080081 private final CarProjectionService mCarProjectionService;
Steve Paik9ec53d72018-04-27 13:28:31 -070082 private final CarPropertyService mCarPropertyService;
Joseph Pirozzo317343d2016-01-25 10:22:37 -080083 private final CarNightService mCarNightService;
Vitalii Tomkiv46371472016-05-23 16:55:22 -070084 private final AppFocusService mAppFocusService;
Yao Chen3a7976d2016-01-20 17:27:08 -080085 private final GarageModeService mGarageModeService;
Pavel Maltsev1ecdd6c2016-03-02 16:33:44 -080086 private final InstrumentClusterService mInstrumentClusterService;
Gregory Clarkd8136062017-12-11 14:27:53 -080087 private final CarLocationService mCarLocationService;
Keun-young Parkd73afae2016-04-08 20:03:32 -070088 private final SystemStateControllerService mSystemStateControllerService;
Ram Periathiruvadi7ed84182017-01-20 15:18:08 -080089 private final CarBluetoothService mCarBluetoothService;
Ram Periathiruvadiacb60242017-04-13 16:19:09 -070090 private final PerUserCarServiceHelper mPerUserCarServiceHelper;
Enrico Granata9a916d72017-09-19 14:33:08 -070091 private final CarDiagnosticService mCarDiagnosticService;
92 private final CarStorageMonitoringService mCarStorageMonitoringService;
Anthony Chen12aec302018-04-25 16:41:48 -070093 private final CarConfigurationService mCarConfigurationService;
Ram Periathiruvadide0ca082019-03-20 11:16:44 -070094 private final CarTrustedDeviceService mCarTrustedDeviceService;
Simon Dai527eb552019-02-12 13:06:15 -080095 private final CarMediaService mCarMediaService;
Ying Zheng86d1c3e2018-05-11 11:42:48 -070096 private final CarUserManagerHelper mUserManagerHelper;
Keun-young Parkd462a912019-02-11 08:53:42 -080097 private final CarUserService mCarUserService;
Keun young Parkbb877e22019-08-02 10:38:01 -070098 private final CarOccupantZoneService mCarOccupantZoneService;
Keun young Park7af7d6c2019-09-12 10:31:48 -070099 private final CarUserNoticeService mCarUserNoticeService;
Mark Tabrya8fce562019-01-16 16:24:01 -0800100 private final VmsClientManager mVmsClientManager;
Mark Tabry76cfaaa2019-02-01 14:28:30 -0800101 private final VmsBrokerService mVmsBrokerService;
Mark Tabrya8fce562019-01-16 16:24:01 -0800102 private final VmsSubscriberService mVmsSubscriberService;
103 private final VmsPublisherService mVmsPublisherService;
Selim Gurunc8c82f62019-04-17 14:07:30 -0700104 private final CarBugreportManagerService mCarBugreportManagerService;
keunyounga74b9ca2015-10-21 13:33:58 -0700105
Pavel Maltsev0d07c762016-11-03 16:40:15 -0700106 private final CarServiceBase[] mAllServices;
107
Steve Paikc302c7c2017-08-04 14:01:58 -0700108 private static final String TAG = "ICarImpl";
109 private static final String VHAL_TIMING_TAG = "VehicleHalTiming";
Serik Beketayev74debf22018-10-04 12:18:09 -0700110
111 private TimingsTraceLog mBootTiming;
Steve Paikc302c7c2017-08-04 14:01:58 -0700112
keunyoung1ab8e182015-09-24 09:25:22 -0700113 /** Test only service. Populate it only when necessary. */
114 @GuardedBy("this")
115 private CarTestService mCarTestService;
keunyoungca515072015-07-10 12:21:47 -0700116
Keun-young Parkaab47cd2017-06-05 11:04:50 -0700117 @GuardedBy("this")
118 private ICarServiceHelper mICarServiceHelper;
119
Enrico Granatae8056ca2018-04-03 13:19:52 -0700120 private final String mVehicleInterfaceName;
121
Pavel Maltsevec83b632017-01-05 15:10:55 -0800122 public ICarImpl(Context serviceContext, IVehicle vehicle, SystemInterface systemInterface,
Enrico Granatae8056ca2018-04-03 13:19:52 -0700123 CanBusErrorNotifier errorNotifier, String vehicleInterfaceName) {
keunyoungca515072015-07-10 12:21:47 -0700124 mContext = serviceContext;
Steve Paik0f9fc002018-02-09 17:42:00 -0800125 mSystemInterface = systemInterface;
Mark Tabryb588d2e2019-09-12 10:50:11 -0700126 mHal = new VehicleHal(serviceContext, vehicle);
Enrico Granatae8056ca2018-04-03 13:19:52 -0700127 mVehicleInterfaceName = vehicleInterfaceName;
Yao, Yuxing0811d5a2018-11-29 16:18:53 -0800128 mUserManagerHelper = new CarUserManagerHelper(serviceContext);
Anthony Hugh9932a252019-06-12 16:19:56 -0700129 UserManager userManager =
130 (UserManager) serviceContext.getSystemService(Context.USER_SERVICE);
Keun young Parkf3523cd2019-04-08 10:09:17 -0700131 final Resources res = mContext.getResources();
132 final int maxRunningUsers = res.getInteger(
133 com.android.internal.R.integer.config_multiuserMaxRunningUsers);
Eric Jeong1545f3b2019-09-16 13:56:52 -0700134 mCarUserService = new CarUserService(serviceContext, userManager,
Keun young Parkf3523cd2019-04-08 10:09:17 -0700135 ActivityManager.getService(), maxRunningUsers);
Keun young Parkbb877e22019-08-02 10:38:01 -0700136 mCarOccupantZoneService = new CarOccupantZoneService(serviceContext);
Keun-young Park4727da32016-05-31 10:00:51 -0700137 mSystemActivityMonitoringService = new SystemActivityMonitoringService(serviceContext);
Steve Paik388d7772018-02-12 10:54:51 -0800138 mCarPowerManagementService = new CarPowerManagementService(mContext, mHal.getPowerHal(),
Keun young Park9b3f2662019-03-19 10:30:25 -0700139 systemInterface, mUserManagerHelper);
Keun young Park7af7d6c2019-09-12 10:31:48 -0700140 mCarUserNoticeService = new CarUserNoticeService(serviceContext);
Steve Paik9ec53d72018-04-27 13:28:31 -0700141 mCarPropertyService = new CarPropertyService(serviceContext, mHal.getPropertyHal());
142 mCarDrivingStateService = new CarDrivingStateService(serviceContext, mCarPropertyService);
Ram Periathiruvadi4526a432018-01-24 13:00:54 -0800143 mCarUXRestrictionsService = new CarUxRestrictionsManagerService(serviceContext,
Yao, Yuxing9bfb7492019-02-15 11:53:34 -0800144 mCarDrivingStateService, mCarPropertyService);
Ram Periathiruvadi2da6d0e2018-01-26 18:02:10 -0800145 mCarPackageManagerService = new CarPackageManagerService(serviceContext,
146 mCarUXRestrictionsService,
Pavel Maltsev38da4312019-04-08 10:38:38 -0700147 mSystemActivityMonitoringService,
148 mUserManagerHelper);
Justin Paupore44985ba2019-01-30 18:53:41 -0800149 mPerUserCarServiceHelper = new PerUserCarServiceHelper(serviceContext);
Sal Savage703c46f2019-04-15 08:39:25 -0700150 mCarBluetoothService = new CarBluetoothService(serviceContext, mPerUserCarServiceHelper);
Pavel Maltsev0d07c762016-11-03 16:40:15 -0700151 mCarInputService = new CarInputService(serviceContext, mHal.getInputHal());
Justin Paupore44985ba2019-01-30 18:53:41 -0800152 mCarProjectionService = new CarProjectionService(
Pavel Maltsev079873b2019-02-25 12:15:09 -0800153 serviceContext, null /* handler */, mCarInputService, mCarBluetoothService);
Serik Beketayevc6ab8be2018-08-28 21:20:53 -0700154 mGarageModeService = new GarageModeService(mContext);
Vitalii Tomkiv8c7f2972016-07-11 15:42:04 -0700155 mAppFocusService = new AppFocusService(serviceContext, mSystemActivityMonitoringService);
Hongwei Wang30557232018-01-02 10:25:08 -0800156 mCarAudioService = new CarAudioService(serviceContext);
Steve Paik9ec53d72018-04-27 13:28:31 -0700157 mCarNightService = new CarNightService(serviceContext, mCarPropertyService);
Pavel Maltsev0477e292016-05-27 12:22:36 -0700158 mInstrumentClusterService = new InstrumentClusterService(serviceContext,
Pavel Maltsev03cf60c2016-06-27 15:11:51 -0700159 mAppFocusService, mCarInputService);
Serik Beketayevf9f2ef02018-09-06 12:37:02 -0700160 mSystemStateControllerService = new SystemStateControllerService(
161 serviceContext, mCarAudioService, this);
Mark Tabry61a06c72019-06-17 10:37:49 -0700162 mVmsBrokerService = new VmsBrokerService();
Mark Tabry1534c062019-03-29 01:30:49 -0700163 mVmsClientManager = new VmsClientManager(
Mark Tabry61a06c72019-06-17 10:37:49 -0700164 serviceContext, mVmsBrokerService, mCarUserService, mUserManagerHelper,
165 mHal.getVmsHal());
Mark Tabry76cfaaa2019-02-01 14:28:30 -0800166 mVmsSubscriberService = new VmsSubscriberService(
Mark Tabry61a06c72019-06-17 10:37:49 -0700167 serviceContext, mVmsBrokerService, mVmsClientManager, mHal.getVmsHal());
Mark Tabry76cfaaa2019-02-01 14:28:30 -0800168 mVmsPublisherService = new VmsPublisherService(
Mark Tabry1534c062019-03-29 01:30:49 -0700169 serviceContext, mVmsBrokerService, mVmsClientManager);
Enrico Granatab3634e22017-05-05 18:02:31 -0700170 mCarDiagnosticService = new CarDiagnosticService(serviceContext, mHal.getDiagnosticHal());
Enrico Granata517a1e02017-09-20 16:15:50 -0700171 mCarStorageMonitoringService = new CarStorageMonitoringService(serviceContext,
172 systemInterface);
Anthony Chen12aec302018-04-25 16:41:48 -0700173 mCarConfigurationService =
174 new CarConfigurationService(serviceContext, new JsonReaderImpl());
Gregory Clarke1519532019-05-10 16:25:57 -0700175 mCarLocationService = new CarLocationService(mContext, mUserManagerHelper);
Ram Periathiruvadide0ca082019-03-20 11:16:44 -0700176 mCarTrustedDeviceService = new CarTrustedDeviceService(serviceContext);
Simon Dai527eb552019-02-12 13:06:15 -0800177 mCarMediaService = new CarMediaService(serviceContext);
Selim Gurunc8c82f62019-04-17 14:07:30 -0700178 mCarBugreportManagerService = new CarBugreportManagerService(serviceContext);
keunyounga74b9ca2015-10-21 13:33:58 -0700179
Keun young Parka5fa4782019-04-16 18:56:27 -0700180 CarLocalServices.addService(CarPowerManagementService.class, mCarPowerManagementService);
Keun young Parkbb877e22019-08-02 10:38:01 -0700181 CarLocalServices.addService(CarPropertyService.class, mCarPropertyService);
Keun-young Parkd462a912019-02-11 08:53:42 -0800182 CarLocalServices.addService(CarUserService.class, mCarUserService);
Gregory Clark18a0ef92019-05-23 20:00:49 -0700183 CarLocalServices.addService(CarTrustedDeviceService.class, mCarTrustedDeviceService);
Gregory Clarka440e812019-02-14 16:05:51 -0800184 CarLocalServices.addService(SystemInterface.class, mSystemInterface);
Gregory Clark18a0ef92019-05-23 20:00:49 -0700185 CarLocalServices.addService(CarDrivingStateService.class, mCarDrivingStateService);
Gregory Clark55620c12019-06-03 17:42:58 -0700186 CarLocalServices.addService(PerUserCarServiceHelper.class, mPerUserCarServiceHelper);
Keun-young Parkd462a912019-02-11 08:53:42 -0800187
keunyounga3b28d82015-08-25 13:05:15 -0700188 // Be careful with order. Service depending on other service should be inited later.
Ying Zheng86d1c3e2018-05-11 11:42:48 -0700189 List<CarServiceBase> allServices = new ArrayList<>();
Keun-young Parkd462a912019-02-11 08:53:42 -0800190 allServices.add(mCarUserService);
Ying Zheng86d1c3e2018-05-11 11:42:48 -0700191 allServices.add(mSystemActivityMonitoringService);
192 allServices.add(mCarPowerManagementService);
193 allServices.add(mCarPropertyService);
194 allServices.add(mCarDrivingStateService);
Keun young Parkbb877e22019-08-02 10:38:01 -0700195 allServices.add(mCarOccupantZoneService);
Ying Zheng86d1c3e2018-05-11 11:42:48 -0700196 allServices.add(mCarUXRestrictionsService);
197 allServices.add(mCarPackageManagerService);
198 allServices.add(mCarInputService);
Ying Zheng86d1c3e2018-05-11 11:42:48 -0700199 allServices.add(mGarageModeService);
Keun young Park7af7d6c2019-09-12 10:31:48 -0700200 allServices.add(mCarUserNoticeService);
Ying Zheng86d1c3e2018-05-11 11:42:48 -0700201 allServices.add(mAppFocusService);
202 allServices.add(mCarAudioService);
203 allServices.add(mCarNightService);
204 allServices.add(mInstrumentClusterService);
Ying Zheng86d1c3e2018-05-11 11:42:48 -0700205 allServices.add(mSystemStateControllerService);
Ying Zheng86d1c3e2018-05-11 11:42:48 -0700206 allServices.add(mPerUserCarServiceHelper);
Justin Paupore44985ba2019-01-30 18:53:41 -0800207 allServices.add(mCarBluetoothService);
208 allServices.add(mCarProjectionService);
209 allServices.add(mCarDiagnosticService);
Ying Zheng86d1c3e2018-05-11 11:42:48 -0700210 allServices.add(mCarStorageMonitoringService);
211 allServices.add(mCarConfigurationService);
Mark Tabrya8fce562019-01-16 16:24:01 -0800212 allServices.add(mVmsClientManager);
Ying Zheng86d1c3e2018-05-11 11:42:48 -0700213 allServices.add(mVmsSubscriberService);
214 allServices.add(mVmsPublisherService);
Ram Periathiruvadide0ca082019-03-20 11:16:44 -0700215 allServices.add(mCarTrustedDeviceService);
Simon Dai527eb552019-02-12 13:06:15 -0800216 allServices.add(mCarMediaService);
Gregory Clarka63ba022018-06-07 16:42:12 -0700217 allServices.add(mCarLocationService);
Selim Gurunc8c82f62019-04-17 14:07:30 -0700218 allServices.add(mCarBugreportManagerService);
Ying Zheng86d1c3e2018-05-11 11:42:48 -0700219 mAllServices = allServices.toArray(new CarServiceBase[allServices.size()]);
keunyoungca515072015-07-10 12:21:47 -0700220 }
221
Pavel Maltsevabd47232017-10-10 16:54:57 -0700222 @MainThread
Pavel Maltsev8edd2552017-09-18 14:52:16 -0700223 void init() {
Serik Beketayev74debf22018-10-04 12:18:09 -0700224 mBootTiming = new TimingsTraceLog(VHAL_TIMING_TAG, Trace.TRACE_TAG_HAL);
Steve Paikc302c7c2017-08-04 14:01:58 -0700225 traceBegin("VehicleHal.init");
Pavel Maltsev0d07c762016-11-03 16:40:15 -0700226 mHal.init();
Steve Paikc302c7c2017-08-04 14:01:58 -0700227 traceEnd();
228 traceBegin("CarService.initAllServices");
Ram Periathiruvadiee28c002017-02-07 21:35:01 -0800229 for (CarServiceBase service : mAllServices) {
keunyounga3b28d82015-08-25 13:05:15 -0700230 service.init();
231 }
Steve Paikc302c7c2017-08-04 14:01:58 -0700232 traceEnd();
keunyoungca515072015-07-10 12:21:47 -0700233 }
234
Pavel Maltsev8edd2552017-09-18 14:52:16 -0700235 void release() {
keunyounga3b28d82015-08-25 13:05:15 -0700236 // release done in opposite order from init
237 for (int i = mAllServices.length - 1; i >= 0; i--) {
238 mAllServices[i].release();
239 }
Pavel Maltsev0d07c762016-11-03 16:40:15 -0700240 mHal.release();
Keun-young Parkd462a912019-02-11 08:53:42 -0800241 CarLocalServices.removeAllServices();
keunyoung1ab8e182015-09-24 09:25:22 -0700242 }
243
Pavel Maltsev8edd2552017-09-18 14:52:16 -0700244 void vehicleHalReconnected(IVehicle vehicle) {
Pavel Maltsevec83b632017-01-05 15:10:55 -0800245 mHal.vehicleHalReconnected(vehicle);
246 for (CarServiceBase service : mAllServices) {
247 service.vehicleHalReconnected();
248 }
249 }
250
keunyoungca515072015-07-10 12:21:47 -0700251 @Override
Keun-young Parkaab47cd2017-06-05 11:04:50 -0700252 public void setCarServiceHelper(IBinder helper) {
Pavel Maltsev17e81832019-04-04 14:38:41 -0700253 assertCallingFromSystemProcess();
Keun-young Parkaab47cd2017-06-05 11:04:50 -0700254 synchronized (this) {
255 mICarServiceHelper = ICarServiceHelper.Stub.asInterface(helper);
Steve Paik0f9fc002018-02-09 17:42:00 -0800256 mSystemInterface.setCarServiceHelper(mICarServiceHelper);
Keun-young Parkaab47cd2017-06-05 11:04:50 -0700257 }
258 }
259
260 @Override
Eric Jeong1545f3b2019-09-16 13:56:52 -0700261 public void setUserLockStatus(int userId, int unlocked) {
Pavel Maltsev17e81832019-04-04 14:38:41 -0700262 assertCallingFromSystemProcess();
Eric Jeong1545f3b2019-09-16 13:56:52 -0700263 mCarUserService.setUserLockStatus(userId, unlocked == 1);
264 mCarMediaService.setUserLockStatus(userId, unlocked == 1);
Pavel Maltsev17e81832019-04-04 14:38:41 -0700265 }
266
267 @Override
Eric Jeong1545f3b2019-09-16 13:56:52 -0700268 public void onSwitchUser(int userId) {
Pavel Maltsev17e81832019-04-04 14:38:41 -0700269 assertCallingFromSystemProcess();
270
Eric Jeong1545f3b2019-09-16 13:56:52 -0700271 Log.i(TAG, "Foreground user switched to " + userId);
272 mCarUserService.onSwitchUser(userId);
Pavel Maltsev17e81832019-04-04 14:38:41 -0700273 }
274
Jim Kayee5133162019-04-22 12:50:27 -0700275 static void assertCallingFromSystemProcess() {
Keun-young Parkd462a912019-02-11 08:53:42 -0800276 int uid = Binder.getCallingUid();
277 if (uid != Process.SYSTEM_UID) {
278 throw new SecurityException("Only allowed from system");
279 }
Keun-young Parkd462a912019-02-11 08:53:42 -0800280 }
281
Keun young Parkaabecd92019-05-03 17:31:27 -0700282 /**
283 * Assert if binder call is coming from system process like system server or if it is called
284 * from its own process even if it is not system. The latter can happen in test environment.
285 * Note that car service runs as system user but test like car service test will not.
286 */
287 static void assertCallingFromSystemProcessOrSelf() {
288 int uid = Binder.getCallingUid();
289 int pid = Binder.getCallingPid();
290 if (uid != Process.SYSTEM_UID && pid != Process.myPid()) {
291 throw new SecurityException("Only allowed from system or self");
292 }
293 }
294
Keun-young Parkd462a912019-02-11 08:53:42 -0800295 @Override
keunyoungca515072015-07-10 12:21:47 -0700296 public IBinder getCarService(String serviceName) {
297 switch (serviceName) {
Keun-young Park5672e852016-02-09 19:53:48 -0800298 case Car.AUDIO_SERVICE:
299 return mCarAudioService;
Vitalii Tomkiv46371472016-05-23 16:55:22 -0700300 case Car.APP_FOCUS_SERVICE:
301 return mAppFocusService;
Keun-young Park45fdcba2015-12-08 11:38:58 -0800302 case Car.PACKAGE_SERVICE:
303 return mCarPackageManagerService;
Enrico Granata5c56d2a2017-02-07 15:38:12 -0800304 case Car.DIAGNOSTIC_SERVICE:
Enrico Granatab3634e22017-05-05 18:02:31 -0700305 assertAnyDiagnosticPermission(mContext);
306 return mCarDiagnosticService;
Steve Paik388d7772018-02-12 10:54:51 -0800307 case Car.POWER_SERVICE:
308 assertPowerPermission(mContext);
309 return mCarPowerManagementService;
Steve Paik9ec53d72018-04-27 13:28:31 -0700310 case Car.CABIN_SERVICE:
311 case Car.HVAC_SERVICE:
312 case Car.INFO_SERVICE:
313 case Car.PROPERTY_SERVICE:
314 case Car.SENSOR_SERVICE:
315 case Car.VENDOR_EXTENSION_SERVICE:
316 return mCarPropertyService;
Pavel Maltsev7a948e52016-02-02 23:30:14 -0800317 case Car.CAR_NAVIGATION_SERVICE:
Keun-young Parke31a8b22016-03-16 17:34:08 -0700318 assertNavigationManagerPermission(mContext);
Pavel Maltsev0477e292016-05-27 12:22:36 -0700319 IInstrumentClusterNavigation navService =
320 mInstrumentClusterService.getNavigationService();
321 return navService == null ? null : navService.asBinder();
Pavel Maltsev905968c2017-07-16 19:48:57 -0700322 case Car.CAR_INSTRUMENT_CLUSTER_SERVICE:
323 assertClusterManagerPermission(mContext);
324 return mInstrumentClusterService.getManagerService();
Vitalii Tomkiv6e5ee612016-03-09 14:57:32 -0800325 case Car.PROJECTION_SERVICE:
Vitalii Tomkiv6e5ee612016-03-09 14:57:32 -0800326 return mCarProjectionService;
Antonio Cortese4619c72017-02-02 07:53:27 -0800327 case Car.VMS_SUBSCRIBER_SERVICE:
Asaf Rosenfeld39e4f032017-09-16 11:33:50 -0700328 assertVmsSubscriberPermission(mContext);
329 return mVmsSubscriberService;
Keun-young Parke54ac272016-02-16 19:02:18 -0800330 case Car.TEST_SERVICE: {
Pavel Maltsev0d07c762016-11-03 16:40:15 -0700331 assertPermission(mContext, Car.PERMISSION_CAR_TEST_SERVICE);
keunyoung1ab8e182015-09-24 09:25:22 -0700332 synchronized (this) {
333 if (mCarTestService == null) {
334 mCarTestService = new CarTestService(mContext, this);
335 }
336 return mCarTestService;
337 }
338 }
Ram Periathiruvadi76a84892017-07-27 18:10:35 -0700339 case Car.BLUETOOTH_SERVICE:
340 return mCarBluetoothService;
Enrico Granata9a916d72017-09-19 14:33:08 -0700341 case Car.STORAGE_MONITORING_SERVICE:
Enrico Granata1172f882017-09-21 14:51:30 -0700342 assertPermission(mContext, Car.PERMISSION_STORAGE_MONITORING);
Enrico Granata9a916d72017-09-19 14:33:08 -0700343 return mCarStorageMonitoringService;
Ram Periathiruvadi25c16f12017-11-17 16:48:37 -0800344 case Car.CAR_DRIVING_STATE_SERVICE:
345 assertDrivingStatePermission(mContext);
346 return mCarDrivingStateService;
347 case Car.CAR_UX_RESTRICTION_SERVICE:
348 return mCarUXRestrictionsService;
Anthony Chend4203d82018-05-16 16:21:52 -0700349 case Car.CAR_CONFIGURATION_SERVICE:
350 return mCarConfigurationService;
Ram Periathiruvadi194ce1b2019-01-14 09:42:12 -0800351 case Car.CAR_TRUST_AGENT_ENROLLMENT_SERVICE:
352 assertTrustAgentEnrollmentPermission(mContext);
Ram Periathiruvadide0ca082019-03-20 11:16:44 -0700353 return mCarTrustedDeviceService.getCarTrustAgentEnrollmentService();
Simon Dai527eb552019-02-12 13:06:15 -0800354 case Car.CAR_MEDIA_SERVICE:
355 return mCarMediaService;
Keun young Parkbb877e22019-08-02 10:38:01 -0700356 case Car.CAR_OCCUPANT_ZONE_SERVICE:
357 return mCarOccupantZoneService;
Selim Gurunc8c82f62019-04-17 14:07:30 -0700358 case Car.CAR_BUGREPORT_SERVICE:
359 return mCarBugreportManagerService;
Eric Jeong1545f3b2019-09-16 13:56:52 -0700360 case Car.CAR_USER_SERVICE:
361 return mCarUserService;
keunyoungca515072015-07-10 12:21:47 -0700362 default:
363 Log.w(CarLog.TAG_SERVICE, "getCarService for unknown service:" + serviceName);
364 return null;
365 }
366 }
367
Pavel Maltsev1ecdd6c2016-03-02 16:33:44 -0800368 @Override
369 public int getCarConnectionType() {
Pavel Maltsev0d07c762016-11-03 16:40:15 -0700370 return Car.CONNECTION_TYPE_EMBEDDED;
Pavel Maltsev1ecdd6c2016-03-02 16:33:44 -0800371 }
372
Keun-young Parka28d7b22016-02-29 16:54:29 -0800373 public CarServiceBase getCarInternalService(String serviceName) {
374 switch (serviceName) {
375 case INTERNAL_INPUT_SERVICE:
376 return mCarInputService;
Keun-young Park4727da32016-05-31 10:00:51 -0700377 case INTERNAL_SYSTEM_ACTIVITY_MONITORING_SERVICE:
378 return mSystemActivityMonitoringService;
Keun-young Parka28d7b22016-02-29 16:54:29 -0800379 default:
380 Log.w(CarLog.TAG_SERVICE, "getCarInternalService for unknown service:" +
381 serviceName);
382 return null;
383 }
384 }
385
keunyoung1ab8e182015-09-24 09:25:22 -0700386 public static void assertVehicleHalMockPermission(Context context) {
Steve Paik461ecc62016-06-08 15:28:32 -0700387 assertPermission(context, Car.PERMISSION_MOCK_VEHICLE_HAL);
keunyoung1ab8e182015-09-24 09:25:22 -0700388 }
389
Keun-young Parke31a8b22016-03-16 17:34:08 -0700390 public static void assertNavigationManagerPermission(Context context) {
Steve Paik461ecc62016-06-08 15:28:32 -0700391 assertPermission(context, Car.PERMISSION_CAR_NAVIGATION_MANAGER);
Pavel Maltsevce4ffd92016-03-09 10:56:23 -0800392 }
393
Pavel Maltsev905968c2017-07-16 19:48:57 -0700394 public static void assertClusterManagerPermission(Context context) {
395 assertPermission(context, Car.PERMISSION_CAR_INSTRUMENT_CLUSTER_CONTROL);
396 }
397
Steve Paik388d7772018-02-12 10:54:51 -0800398 public static void assertPowerPermission(Context context) {
399 assertPermission(context, Car.PERMISSION_CAR_POWER);
400 }
401
Vitalii Tomkiv6e5ee612016-03-09 14:57:32 -0800402 public static void assertProjectionPermission(Context context) {
Steve Paik461ecc62016-06-08 15:28:32 -0700403 assertPermission(context, Car.PERMISSION_CAR_PROJECTION);
404 }
405
Pavel Maltsev079873b2019-02-25 12:15:09 -0800406 /** Verify the calling context has the {@link Car#PERMISSION_CAR_PROJECTION_STATUS} */
407 public static void assertProjectionStatusPermission(Context context) {
408 assertPermission(context, Car.PERMISSION_CAR_PROJECTION_STATUS);
409 }
410
Enrico Granata3c7a6662017-02-23 18:07:59 -0800411 public static void assertAnyDiagnosticPermission(Context context) {
412 assertAnyPermission(context,
Enrico Granataae25b922017-07-07 11:28:15 -0700413 Car.PERMISSION_CAR_DIAGNOSTIC_READ_ALL,
Enrico Granata3c7a6662017-02-23 18:07:59 -0800414 Car.PERMISSION_CAR_DIAGNOSTIC_CLEAR);
415 }
416
Ram Periathiruvadi25c16f12017-11-17 16:48:37 -0800417 public static void assertDrivingStatePermission(Context context) {
418 assertPermission(context, Car.PERMISSION_CAR_DRIVING_STATE);
419 }
420
Antonio Cortes6b3544c2017-02-06 16:54:58 -0800421 public static void assertVmsPublisherPermission(Context context) {
422 assertPermission(context, Car.PERMISSION_VMS_PUBLISHER);
423 }
424
Antonio Cortese4619c72017-02-02 07:53:27 -0800425 public static void assertVmsSubscriberPermission(Context context) {
426 assertPermission(context, Car.PERMISSION_VMS_SUBSCRIBER);
427 }
428
Ram Periathiruvadi194ce1b2019-01-14 09:42:12 -0800429 /**
430 * Ensures the caller has the permission to enroll a Trust Agent.
Ram Periathiruvadi194ce1b2019-01-14 09:42:12 -0800431 */
432 public static void assertTrustAgentEnrollmentPermission(Context context) {
433 assertPermission(context, Car.PERMISSION_CAR_ENROLL_TRUST);
434 }
435
Steve Paik461ecc62016-06-08 15:28:32 -0700436 public static void assertPermission(Context context, String permission) {
437 if (context.checkCallingOrSelfPermission(permission) != PackageManager.PERMISSION_GRANTED) {
438 throw new SecurityException("requires " + permission);
Vitalii Tomkiv6e5ee612016-03-09 14:57:32 -0800439 }
440 }
441
Steve Paik9ec53d72018-04-27 13:28:31 -0700442 /**
443 * Checks to see if the caller has a permission.
Steve Paik9ec53d72018-04-27 13:28:31 -0700444 *
445 * @return boolean TRUE if caller has the permission.
446 */
447 public static boolean hasPermission(Context context, String permission) {
448 return context.checkCallingOrSelfPermission(permission)
449 == PackageManager.PERMISSION_GRANTED;
450 }
451
Enrico Granata3c7a6662017-02-23 18:07:59 -0800452 public static void assertAnyPermission(Context context, String... permissions) {
453 for (String permission : permissions) {
454 if (context.checkCallingOrSelfPermission(permission) ==
455 PackageManager.PERMISSION_GRANTED) {
456 return;
457 }
458 }
459 throw new SecurityException("requires any of " + Arrays.toString(permissions));
460 }
461
Enrico Granatae8056ca2018-04-03 13:19:52 -0700462 @Override
463 protected void dump(FileDescriptor fd, PrintWriter writer, String[] args) {
464 if (mContext.checkCallingOrSelfPermission(android.Manifest.permission.DUMP)
Anthony Chen12aec302018-04-25 16:41:48 -0700465 != PackageManager.PERMISSION_GRANTED) {
Enrico Granatae8056ca2018-04-03 13:19:52 -0700466 writer.println("Permission Denial: can't dump CarService from from pid="
Anthony Chen12aec302018-04-25 16:41:48 -0700467 + Binder.getCallingPid() + ", uid=" + Binder.getCallingUid()
468 + " without permission " + android.Manifest.permission.DUMP);
Enrico Granatae8056ca2018-04-03 13:19:52 -0700469 return;
keunyounga3b28d82015-08-25 13:05:15 -0700470 }
Enrico Granatae8056ca2018-04-03 13:19:52 -0700471
Andrew T Nguyena9228c72019-06-12 11:28:42 -0700472 if (args == null || args.length == 0 || (args.length > 0 && "-a".equals(args[0]))) {
473 writer.println("*Dump car service*");
Enrico Granatae8056ca2018-04-03 13:19:52 -0700474 writer.println("*FutureConfig, DEFAULT:" + FeatureConfiguration.DEFAULT);
475 writer.println("*Dump all services*");
Andrew T Nguyena9228c72019-06-12 11:28:42 -0700476
477 dumpAllServices(writer, false);
478
Enrico Granatae8056ca2018-04-03 13:19:52 -0700479 writer.println("*Dump Vehicle HAL*");
480 writer.println("Vehicle HAL Interface: " + mVehicleInterfaceName);
481 try {
482 // TODO dump all feature flags by creating a dumpable interface
483 mHal.dump(writer);
484 } catch (Exception e) {
485 writer.println("Failed dumping: " + mHal.getClass().getName());
486 e.printStackTrace(writer);
487 }
Andrew T Nguyena9228c72019-06-12 11:28:42 -0700488 } else if ("--metrics".equals(args[0])) {
489 writer.println("*Dump car service metrics*");
490 dumpAllServices(writer, true);
Mark Tabryb588d2e2019-09-12 10:50:11 -0700491 } else if ("--vms-hal".equals(args[0])) {
492 mHal.getVmsHal().dumpMetrics(fd);
Enrico Granatae8056ca2018-04-03 13:19:52 -0700493 } else if (Build.IS_USERDEBUG || Build.IS_ENG) {
494 execShellCmd(args, writer);
495 } else {
496 writer.println("Commands not supported in " + Build.TYPE);
Brad Stenninged3d59b2017-11-09 16:15:17 -0800497 }
498 }
499
Andrew T Nguyena9228c72019-06-12 11:28:42 -0700500 private void dumpAllServices(PrintWriter writer, boolean dumpMetricsOnly) {
501 for (CarServiceBase service : mAllServices) {
502 dumpService(service, writer, dumpMetricsOnly);
503 }
504 if (mCarTestService != null) {
505 dumpService(mCarTestService, writer, dumpMetricsOnly);
506 }
507
508 }
509
510 private void dumpService(CarServiceBase service, PrintWriter writer, boolean dumpMetricsOnly) {
Brad Stenninged3d59b2017-11-09 16:15:17 -0800511 try {
Andrew T Nguyena9228c72019-06-12 11:28:42 -0700512 if (dumpMetricsOnly) {
513 service.dumpMetrics(writer);
514 } else {
515 service.dump(writer);
516 }
Brad Stenninged3d59b2017-11-09 16:15:17 -0800517 } catch (Exception e) {
518 writer.println("Failed dumping: " + service.getClass().getName());
519 e.printStackTrace(writer);
520 }
keunyoungcc449f72015-08-12 10:46:27 -0700521 }
Yao Chene33f07e2016-07-26 12:02:51 -0700522
523 void execShellCmd(String[] args, PrintWriter writer) {
524 new CarShellCommand().exec(args, writer);
525 }
526
Pavel Maltsevabd47232017-10-10 16:54:57 -0700527 @MainThread
Serik Beketayev74debf22018-10-04 12:18:09 -0700528 private void traceBegin(String name) {
Steve Paikc302c7c2017-08-04 14:01:58 -0700529 Slog.i(TAG, name);
530 mBootTiming.traceBegin(name);
531 }
532
Pavel Maltsevabd47232017-10-10 16:54:57 -0700533 @MainThread
Serik Beketayev74debf22018-10-04 12:18:09 -0700534 private void traceEnd() {
Steve Paikc302c7c2017-08-04 14:01:58 -0700535 mBootTiming.traceEnd();
536 }
537
Yao Chene33f07e2016-07-26 12:02:51 -0700538 private class CarShellCommand {
539 private static final String COMMAND_HELP = "-h";
540 private static final String COMMAND_DAY_NIGHT_MODE = "day-night-mode";
Ram Periathiruvadi5cd00cb2018-02-12 13:49:50 -0800541 private static final String COMMAND_INJECT_VHAL_EVENT = "inject-vhal-event";
Kai4b098cf2019-06-05 15:03:28 -0700542 private static final String COMMAND_INJECT_ERROR_EVENT = "inject-error-event";
Ram Periathiruvadibf0eab72018-02-06 12:32:43 -0800543 private static final String COMMAND_ENABLE_UXR = "enable-uxr";
Bryan Eylera32a7c12018-02-27 15:40:00 -0800544 private static final String COMMAND_GARAGE_MODE = "garage-mode";
Ram Periathiruvadi38388302018-02-22 16:42:49 -0800545 private static final String COMMAND_GET_DO_ACTIVITIES = "get-do-activities";
Kaidd4ef5a2019-03-04 14:07:26 -0800546 private static final String COMMAND_GET_CARPROPERTYCONFIG = "get-carpropertyconfig";
Kai29fba112019-04-22 18:37:38 -0700547 private static final String COMMAND_GET_PROPERTY_VALUE = "get-property-value";
Pavel Maltsev371d97f2019-05-20 14:51:31 -0700548 private static final String COMMAND_PROJECTION_AP_TETHERING = "projection-tethering";
Pavel Maltsev48a31942019-03-03 22:08:28 -0800549 private static final String COMMAND_PROJECTION_UI_MODE = "projection-ui-mode";
Jim Kayed76c2742019-04-02 11:33:27 -0700550 private static final String COMMAND_RESUME = "resume";
551 private static final String COMMAND_SUSPEND = "suspend";
Ram Periathiruvadid26a3fb2019-04-15 14:48:23 -0700552 private static final String COMMAND_ENABLE_TRUSTED_DEVICE = "enable-trusted-device";
553 private static final String COMMAND_REMOVE_TRUSTED_DEVICES = "remove-trusted-devices";
Oscar Azucena3f3a25e2019-07-12 14:28:24 -0700554 private static final String COMMAND_SET_UID_TO_ZONE = "set-zoneid-for-uid";
Ram Periathiruvadiee28c002017-02-07 21:35:01 -0800555
Yao Chene33f07e2016-07-26 12:02:51 -0700556 private static final String PARAM_DAY_MODE = "day";
557 private static final String PARAM_NIGHT_MODE = "night";
558 private static final String PARAM_SENSOR_MODE = "sensor";
Ram Periathiruvadi5cd00cb2018-02-12 13:49:50 -0800559 private static final String PARAM_VEHICLE_PROPERTY_AREA_GLOBAL = "0";
Bryan Eylera32a7c12018-02-27 15:40:00 -0800560 private static final String PARAM_ON_MODE = "on";
561 private static final String PARAM_OFF_MODE = "off";
562 private static final String PARAM_QUERY_MODE = "query";
Ram Periathiruvadi5cd00cb2018-02-12 13:49:50 -0800563
Yao Chene33f07e2016-07-26 12:02:51 -0700564
565 private void dumpHelp(PrintWriter pw) {
566 pw.println("Car service commands:");
567 pw.println("\t-h");
568 pw.println("\t Print this help text.");
569 pw.println("\tday-night-mode [day|night|sensor]");
570 pw.println("\t Force into day/night mode or restore to auto.");
Ram Periathiruvadi5cd00cb2018-02-12 13:49:50 -0800571 pw.println("\tinject-vhal-event property [zone] data(can be comma separated list)");
Jim Kayef10b7d82019-02-26 12:53:22 -0800572 pw.println("\t Inject a vehicle property for testing.");
Kai4b098cf2019-06-05 15:03:28 -0700573 pw.println("\tinject-error-event property zone errorCode");
574 pw.println("\t Inject an error event from VHAL for testing.");
Ram Periathiruvadid26a3fb2019-04-15 14:48:23 -0700575 pw.println("\tenable-uxr true|false");
576 pw.println("\t Enable/Disable UX restrictions and App blocking.");
Bryan Eylera32a7c12018-02-27 15:40:00 -0800577 pw.println("\tgarage-mode [on|off|query]");
578 pw.println("\t Force into garage mode or check status.");
Ram Periathiruvadi38388302018-02-22 16:42:49 -0800579 pw.println("\tget-do-activities pkgname");
Jim Kayef10b7d82019-02-26 12:53:22 -0800580 pw.println("\t Get Distraction Optimized activities in given package.");
Kaidd4ef5a2019-03-04 14:07:26 -0800581 pw.println("\tget-carpropertyconfig [propertyId]");
582 pw.println("\t Get a CarPropertyConfig by Id in Hex or list all CarPropertyConfigs");
Kai29fba112019-04-22 18:37:38 -0700583 pw.println("\tget-property-value [propertyId] [areaId]");
584 pw.println("\t Get a vehicle property value by property id in Hex and areaId");
585 pw.println("\t or list all property values for all areaId");
Jim Kayed76c2742019-04-02 11:33:27 -0700586 pw.println("\tsuspend");
587 pw.println("\t Suspend the system to Deep Sleep.");
588 pw.println("\tresume");
589 pw.println("\t Wake the system up after a 'suspend.'");
Ram Periathiruvadid26a3fb2019-04-15 14:48:23 -0700590 pw.println("\tenable-trusted-device true|false");
591 pw.println("\t Enable/Disable Trusted device feature.");
592 pw.println("\tremove-trusted-devices");
593 pw.println("\t Remove all trusted devices for the current foreground user.");
Pavel Maltsev371d97f2019-05-20 14:51:31 -0700594 pw.println("\tprojection-tethering [true|false]");
595 pw.println("\t Whether tethering should be used when creating access point for"
596 + " wireless projection");
Andrew T Nguyena9228c72019-06-12 11:28:42 -0700597 pw.println("\t--metrics");
598 pw.println("\t When used with dumpsys, only metrics will be in the dumpsys output.");
Oscar Azucena3f3a25e2019-07-12 14:28:24 -0700599 pw.println("\tset-zoneid-for-uid [zoneid] [uid]");
600 pw.println("\t Maps the audio zoneid to uid.");
601 }
602
603 private String runSetZoneIdForUid(String zoneString, String uidString) {
604 int uid = Integer.parseInt(uidString);
605 int zoneId = Integer.parseInt(zoneString);
606 if (!ArrayUtils.contains(mCarAudioService.getAudioZoneIds(), zoneId)) {
607 return "zoneid " + zoneId + " not found";
608 }
609 mCarAudioService.setZoneIdForUid(zoneId, uid);
610 return null;
Yao Chene33f07e2016-07-26 12:02:51 -0700611 }
612
613 public void exec(String[] args, PrintWriter writer) {
614 String arg = args[0];
615 switch (arg) {
616 case COMMAND_HELP:
617 dumpHelp(writer);
618 break;
Bryan Eylera32a7c12018-02-27 15:40:00 -0800619 case COMMAND_DAY_NIGHT_MODE: {
Jim Kayef10b7d82019-02-26 12:53:22 -0800620 String value = args.length < 2 ? "" : args[1];
Yao Chene33f07e2016-07-26 12:02:51 -0700621 forceDayNightMode(value, writer);
622 break;
Bryan Eylera32a7c12018-02-27 15:40:00 -0800623 }
624 case COMMAND_GARAGE_MODE: {
Jim Kayef10b7d82019-02-26 12:53:22 -0800625 String value = args.length < 2 ? "" : args[1];
Bryan Eylera32a7c12018-02-27 15:40:00 -0800626 forceGarageMode(value, writer);
627 break;
628 }
Ram Periathiruvadi5cd00cb2018-02-12 13:49:50 -0800629 case COMMAND_INJECT_VHAL_EVENT:
630 String zone = PARAM_VEHICLE_PROPERTY_AREA_GLOBAL;
631 String data;
Jim Kayef10b7d82019-02-26 12:53:22 -0800632 if (args.length != 3 && args.length != 4) {
Ram Periathiruvadi5cd00cb2018-02-12 13:49:50 -0800633 writer.println("Incorrect number of arguments.");
634 dumpHelp(writer);
635 break;
Jim Kayef10b7d82019-02-26 12:53:22 -0800636 } else if (args.length == 4) {
Ram Periathiruvadi5cd00cb2018-02-12 13:49:50 -0800637 // Zoned
638 zone = args[2];
639 data = args[3];
640 } else {
641 // Global
642 data = args[2];
Ram Periathiruvadiee28c002017-02-07 21:35:01 -0800643 }
Kai4b098cf2019-06-05 15:03:28 -0700644 injectVhalEvent(args[1], zone, data, false, writer);
645 break;
646 case COMMAND_INJECT_ERROR_EVENT:
647 if (args.length != 4) {
648 writer.println("Incorrect number of arguments");
649 dumpHelp(writer);
650 break;
651 }
652 String errorAreaId = args[2];
653 String errorCode = args[3];
654 injectVhalEvent(args[1], errorAreaId, errorCode, true, writer);
Ram Periathiruvadiee28c002017-02-07 21:35:01 -0800655 break;
Ram Periathiruvadibf0eab72018-02-06 12:32:43 -0800656 case COMMAND_ENABLE_UXR:
Jim Kayef10b7d82019-02-26 12:53:22 -0800657 if (args.length != 2) {
Ram Periathiruvadibf0eab72018-02-06 12:32:43 -0800658 writer.println("Incorrect number of arguments");
659 dumpHelp(writer);
660 break;
661 }
662 boolean enableBlocking = Boolean.valueOf(args[1]);
663 if (mCarPackageManagerService != null) {
664 mCarPackageManagerService.setEnableActivityBlocking(enableBlocking);
665 }
666 break;
Ram Periathiruvadi38388302018-02-22 16:42:49 -0800667 case COMMAND_GET_DO_ACTIVITIES:
Jim Kayef10b7d82019-02-26 12:53:22 -0800668 if (args.length != 2) {
Ram Periathiruvadi38388302018-02-22 16:42:49 -0800669 writer.println("Incorrect number of arguments");
670 dumpHelp(writer);
671 break;
672 }
673 String pkgName = args[1].toLowerCase();
674 if (mCarPackageManagerService != null) {
675 String[] doActivities =
676 mCarPackageManagerService.getDistractionOptimizedActivities(
677 pkgName);
678 if (doActivities != null) {
679 writer.println("DO Activities for " + pkgName);
680 for (String a : doActivities) {
681 writer.println(a);
682 }
683 } else {
684 writer.println("No DO Activities for " + pkgName);
685 }
686 }
687 break;
Kaidd4ef5a2019-03-04 14:07:26 -0800688 case COMMAND_GET_CARPROPERTYCONFIG:
689 String propertyId = args.length < 2 ? "" : args[1];
690 mHal.dumpPropertyConfigs(writer, propertyId);
691 break;
Kai29fba112019-04-22 18:37:38 -0700692 case COMMAND_GET_PROPERTY_VALUE:
693 String propId = args.length < 2 ? "" : args[1];
694 String areaId = args.length < 3 ? "" : args[2];
695 mHal.dumpPropertyValueByCommend(writer, propId, areaId);
696 break;
Pavel Maltsev48a31942019-03-03 22:08:28 -0800697 case COMMAND_PROJECTION_UI_MODE:
698 if (args.length != 2) {
699 writer.println("Incorrect number of arguments");
700 dumpHelp(writer);
701 break;
702 }
703 mCarProjectionService.setUiMode(Integer.valueOf(args[1]));
Pavel Maltsevd6961f62019-03-26 10:22:31 -0700704 break;
Pavel Maltsev371d97f2019-05-20 14:51:31 -0700705 case COMMAND_PROJECTION_AP_TETHERING:
706 if (args.length != 2) {
707 writer.println("Incorrect number of arguments");
708 dumpHelp(writer);
709 break;
710 }
711 mCarProjectionService.setAccessPointTethering(Boolean.valueOf(args[1]));
712 break;
Jim Kayed76c2742019-04-02 11:33:27 -0700713 case COMMAND_RESUME:
714 mCarPowerManagementService.forceSimulatedResume();
715 writer.println("Resume: Simulating resuming from Deep Sleep");
716 break;
717 case COMMAND_SUSPEND:
718 mCarPowerManagementService.forceSimulatedSuspend();
719 writer.println("Resume: Simulating powering down to Deep Sleep");
720 break;
Ram Periathiruvadid26a3fb2019-04-15 14:48:23 -0700721 case COMMAND_ENABLE_TRUSTED_DEVICE:
722 if (args.length != 2) {
723 writer.println("Incorrect number of arguments");
724 dumpHelp(writer);
725 break;
726 }
727 mCarTrustedDeviceService.getCarTrustAgentEnrollmentService()
728 .setTrustedDeviceEnrollmentEnabled(Boolean.valueOf(args[1]));
729 mCarTrustedDeviceService.getCarTrustAgentUnlockService()
730 .setTrustedDeviceUnlockEnabled(Boolean.valueOf(args[1]));
731 break;
732 case COMMAND_REMOVE_TRUSTED_DEVICES:
733 mCarTrustedDeviceService.getCarTrustAgentEnrollmentService()
734 .removeAllTrustedDevices(
735 mUserManagerHelper.getCurrentForegroundUserId());
736 break;
Oscar Azucena3f3a25e2019-07-12 14:28:24 -0700737 case COMMAND_SET_UID_TO_ZONE:
738 if (args.length != 3) {
739 writer.println("Incorrect number of arguments");
740 dumpHelp(writer);
741 break;
742 }
743 String results = runSetZoneIdForUid(args[1], args[2]);
744 if (results != null) {
745 writer.println(results);
746 dumpHelp(writer);
747 }
748 break;
Yao Chene33f07e2016-07-26 12:02:51 -0700749 default:
Jim Kayef10b7d82019-02-26 12:53:22 -0800750 writer.println("Unknown command: \"" + arg + "\"");
Yao Chene33f07e2016-07-26 12:02:51 -0700751 dumpHelp(writer);
752 }
753 }
754
755 private void forceDayNightMode(String arg, PrintWriter writer) {
756 int mode;
757 switch (arg) {
758 case PARAM_DAY_MODE:
759 mode = CarNightService.FORCED_DAY_MODE;
760 break;
761 case PARAM_NIGHT_MODE:
762 mode = CarNightService.FORCED_NIGHT_MODE;
763 break;
764 case PARAM_SENSOR_MODE:
765 mode = CarNightService.FORCED_SENSOR_MODE;
766 break;
767 default:
768 writer.println("Unknown value. Valid argument: " + PARAM_DAY_MODE + "|"
769 + PARAM_NIGHT_MODE + "|" + PARAM_SENSOR_MODE);
770 return;
771 }
772 int current = mCarNightService.forceDayNightMode(mode);
773 String currentMode = null;
774 switch (current) {
775 case UiModeManager.MODE_NIGHT_AUTO:
776 currentMode = PARAM_SENSOR_MODE;
777 break;
778 case UiModeManager.MODE_NIGHT_YES:
779 currentMode = PARAM_NIGHT_MODE;
780 break;
781 case UiModeManager.MODE_NIGHT_NO:
782 currentMode = PARAM_DAY_MODE;
783 break;
784 }
785 writer.println("DayNightMode changed to: " + currentMode);
786 }
Ram Periathiruvadiee28c002017-02-07 21:35:01 -0800787
Bryan Eylera32a7c12018-02-27 15:40:00 -0800788 private void forceGarageMode(String arg, PrintWriter writer) {
789 switch (arg) {
790 case PARAM_ON_MODE:
Serik Beketayeve0e7ff22018-07-31 21:04:12 -0700791 mGarageModeService.forceStartGarageMode();
Jim Kaye1b5e6182019-05-24 15:48:32 -0700792 writer.println("Garage mode: " + mGarageModeService.isGarageModeActive());
Bryan Eylera32a7c12018-02-27 15:40:00 -0800793 break;
794 case PARAM_OFF_MODE:
Serik Beketayeve0e7ff22018-07-31 21:04:12 -0700795 mGarageModeService.stopAndResetGarageMode();
Jim Kaye1b5e6182019-05-24 15:48:32 -0700796 writer.println("Garage mode: " + mGarageModeService.isGarageModeActive());
Bryan Eylera32a7c12018-02-27 15:40:00 -0800797 break;
798 case PARAM_QUERY_MODE:
Jim Kaye1b5e6182019-05-24 15:48:32 -0700799 mGarageModeService.dump(writer);
Bryan Eylera32a7c12018-02-27 15:40:00 -0800800 break;
801 default:
802 writer.println("Unknown value. Valid argument: " + PARAM_ON_MODE + "|"
803 + PARAM_OFF_MODE + "|" + PARAM_QUERY_MODE);
Bryan Eylera32a7c12018-02-27 15:40:00 -0800804 }
Bryan Eylera32a7c12018-02-27 15:40:00 -0800805 }
806
Ram Periathiruvadiee28c002017-02-07 21:35:01 -0800807 /**
Ram Periathiruvadi5cd00cb2018-02-12 13:49:50 -0800808 * Inject a fake VHAL event
Ram Periathiruvadi49d5a5a2017-02-17 18:50:09 -0800809 *
Ram Periathiruvadi5cd00cb2018-02-12 13:49:50 -0800810 * @param property the Vehicle property Id as defined in the HAL
811 * @param zone Zone that this event services
Kai4b098cf2019-06-05 15:03:28 -0700812 * @param isErrorEvent indicates the type of event
Ram Periathiruvadi5cd00cb2018-02-12 13:49:50 -0800813 * @param value Data value of the event
814 * @param writer PrintWriter
Ram Periathiruvadiee28c002017-02-07 21:35:01 -0800815 */
Ram Periathiruvadi5cd00cb2018-02-12 13:49:50 -0800816 private void injectVhalEvent(String property, String zone, String value,
Kai4b098cf2019-06-05 15:03:28 -0700817 boolean isErrorEvent, PrintWriter writer) {
Ram Periathiruvadi5cd00cb2018-02-12 13:49:50 -0800818 if (zone != null && (zone.equalsIgnoreCase(PARAM_VEHICLE_PROPERTY_AREA_GLOBAL))) {
819 if (!isPropertyAreaTypeGlobal(property)) {
820 writer.println("Property area type inconsistent with given zone");
821 return;
822 }
Ram Periathiruvadiee28c002017-02-07 21:35:01 -0800823 }
824 try {
Kai4b098cf2019-06-05 15:03:28 -0700825 if (isErrorEvent) {
826 mHal.injectOnPropertySetError(property, zone, value);
827 } else {
828 mHal.injectVhalEvent(property, zone, value);
829 }
Ram Periathiruvadiee28c002017-02-07 21:35:01 -0800830 } catch (NumberFormatException e) {
Ram Periathiruvadi5cd00cb2018-02-12 13:49:50 -0800831 writer.println("Invalid property Id zone Id or value" + e);
832 dumpHelp(writer);
Ram Periathiruvadiee28c002017-02-07 21:35:01 -0800833 }
Ram Periathiruvadiee28c002017-02-07 21:35:01 -0800834 }
835
Ram Periathiruvadi5cd00cb2018-02-12 13:49:50 -0800836 // Check if the given property is global
837 private boolean isPropertyAreaTypeGlobal(String property) {
838 if (property == null) {
839 return false;
Ram Periathiruvadi49d5a5a2017-02-17 18:50:09 -0800840 }
Ram Periathiruvadi5cd00cb2018-02-12 13:49:50 -0800841 return (Integer.decode(property) & VehicleArea.MASK) == VehicleArea.GLOBAL;
Ram Periathiruvadi49d5a5a2017-02-17 18:50:09 -0800842 }
Yao Chene33f07e2016-07-26 12:02:51 -0700843 }
kevinjm55822c42018-08-15 11:26:00 -0700844}