blob: 1e11de9f4ec272b8d9f2bd38bb9aef418ab516d9 [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;
Yao Chene33f07e2016-07-26 12:02:51 -070020import android.app.UiModeManager;
Keun-young Parke54ac272016-02-16 19:02:18 -080021import android.car.Car;
22import android.car.ICar;
Pavel Maltsev0477e292016-05-27 12:22:36 -070023import android.car.cluster.renderer.IInstrumentClusterNavigation;
keunyoungca515072015-07-10 12:21:47 -070024import android.content.Context;
keunyoung1ab8e182015-09-24 09:25:22 -070025import android.content.pm.PackageManager;
Pavel Maltsevcfe93102017-02-02 12:38:08 -080026import android.hardware.automotive.vehicle.V2_0.IVehicle;
Ram Periathiruvadi5cd00cb2018-02-12 13:49:50 -080027import android.hardware.automotive.vehicle.V2_0.VehicleArea;
Keun-young Parkaab47cd2017-06-05 11:04:50 -070028import android.os.Binder;
Enrico Granatae8056ca2018-04-03 13:19:52 -070029import android.os.Build;
keunyoungca515072015-07-10 12:21:47 -070030import android.os.IBinder;
Keun-young Parkaab47cd2017-06-05 11:04:50 -070031import android.os.Process;
Steve Paikc302c7c2017-08-04 14:01:58 -070032import android.os.Trace;
keunyoungca515072015-07-10 12:21:47 -070033import android.util.Log;
Steve Paikc302c7c2017-08-04 14:01:58 -070034import android.util.Slog;
Keun-young Park4a79a382017-08-10 18:19:14 -070035import android.util.TimingsTraceLog;
Gregory Clark26fa6012018-03-14 18:38:56 -070036
Pavel Maltsev1ecdd6c2016-03-02 16:33:44 -080037import com.android.car.cluster.InstrumentClusterService;
keunyoungcc449f72015-08-12 10:46:27 -070038import com.android.car.hal.VehicleHal;
Antonio Cortesc52d5f92017-02-06 08:47:38 -080039import com.android.car.internal.FeatureConfiguration;
Keun-young Park4aeb4bf2015-12-08 18:31:33 -080040import com.android.car.pm.CarPackageManagerService;
Enrico Granatab19bc322017-10-12 12:25:06 -070041import com.android.car.systeminterface.SystemInterface;
keunyoungca515072015-07-10 12:21:47 -070042import com.android.internal.annotations.GuardedBy;
Steve Paik1d8bea22018-02-03 01:54:06 +000043import com.android.internal.car.ICarServiceHelper;
Gregory Clark26fa6012018-03-14 18:38:56 -070044
Enrico Granatae8056ca2018-04-03 13:19:52 -070045import java.io.FileDescriptor;
46import java.io.FileOutputStream;
keunyounga3b28d82015-08-25 13:05:15 -070047import java.io.PrintWriter;
Antonio Cortese4619c72017-02-02 07:53:27 -080048import java.util.ArrayList;
49import java.util.Arrays;
50import java.util.List;
keunyounga3b28d82015-08-25 13:05:15 -070051
keunyoungca515072015-07-10 12:21:47 -070052public class ICarImpl extends ICar.Stub {
keunyoungca515072015-07-10 12:21:47 -070053
Ram Periathiruvadi49d5a5a2017-02-17 18:50:09 -080054 public static final String INTERNAL_INPUT_SERVICE = "internal_input";
Keun-young Park4727da32016-05-31 10:00:51 -070055 public static final String INTERNAL_SYSTEM_ACTIVITY_MONITORING_SERVICE =
56 "system_activity_monitoring";
Keun-young Parka28d7b22016-02-29 16:54:29 -080057
keunyoungca515072015-07-10 12:21:47 -070058 private final Context mContext;
Pavel Maltsevec83b632017-01-05 15:10:55 -080059 private final VehicleHal mHal;
keunyoungca515072015-07-10 12:21:47 -070060
Keun-young Park4727da32016-05-31 10:00:51 -070061 private final SystemActivityMonitoringService mSystemActivityMonitoringService;
keunyoung4b0212c2015-10-29 17:11:57 -070062 private final CarPowerManagementService mCarPowerManagementService;
Keun-young Parka28d7b22016-02-29 16:54:29 -080063 private final CarPackageManagerService mCarPackageManagerService;
64 private final CarInputService mCarInputService;
keunyoungca515072015-07-10 12:21:47 -070065 private final CarSensorService mCarSensorService;
Ram Periathiruvadi25c16f12017-11-17 16:48:37 -080066 private final CarDrivingStateService mCarDrivingStateService;
Ram Periathiruvadi4526a432018-01-24 13:00:54 -080067 private final CarUxRestrictionsManagerService mCarUXRestrictionsService;
keunyounga3b28d82015-08-25 13:05:15 -070068 private final CarInfoService mCarInfoService;
keunyoungd32f4e62015-09-21 11:33:06 -070069 private final CarAudioService mCarAudioService;
Vitalii Tomkiv6e5ee612016-03-09 14:57:32 -080070 private final CarProjectionService mCarProjectionService;
Steve Paik43c04a72016-07-08 19:12:09 -070071 private final CarCabinService mCarCabinService;
Steve Paik66481982015-10-27 15:22:38 -070072 private final CarHvacService mCarHvacService;
Joseph Pirozzo317343d2016-01-25 10:22:37 -080073 private final CarNightService mCarNightService;
Vitalii Tomkiv46371472016-05-23 16:55:22 -070074 private final AppFocusService mAppFocusService;
Yao Chen3a7976d2016-01-20 17:27:08 -080075 private final GarageModeService mGarageModeService;
Pavel Maltsev1ecdd6c2016-03-02 16:33:44 -080076 private final InstrumentClusterService mInstrumentClusterService;
Gregory Clarkd8136062017-12-11 14:27:53 -080077 private final CarLocationService mCarLocationService;
Keun-young Parkd73afae2016-04-08 20:03:32 -070078 private final SystemStateControllerService mSystemStateControllerService;
Pavel Maltsev634e1ff2016-07-14 15:41:26 -070079 private final CarVendorExtensionService mCarVendorExtensionService;
Ram Periathiruvadi7ed84182017-01-20 15:18:08 -080080 private final CarBluetoothService mCarBluetoothService;
Ram Periathiruvadiacb60242017-04-13 16:19:09 -070081 private final PerUserCarServiceHelper mPerUserCarServiceHelper;
Enrico Granata9a916d72017-09-19 14:33:08 -070082 private final CarDiagnosticService mCarDiagnosticService;
83 private final CarStorageMonitoringService mCarStorageMonitoringService;
Steve Paik0f9fc002018-02-09 17:42:00 -080084 private final SystemInterface mSystemInterface;
Antonio Cortese4619c72017-02-02 07:53:27 -080085 private VmsSubscriberService mVmsSubscriberService;
Antonio Cortes6b3544c2017-02-06 16:54:58 -080086 private VmsPublisherService mVmsPublisherService;
keunyounga74b9ca2015-10-21 13:33:58 -070087
Pavel Maltsev0d07c762016-11-03 16:40:15 -070088 private final CarServiceBase[] mAllServices;
89
Steve Paikc302c7c2017-08-04 14:01:58 -070090 private static final String TAG = "ICarImpl";
91 private static final String VHAL_TIMING_TAG = "VehicleHalTiming";
Keun-young Park4a79a382017-08-10 18:19:14 -070092 private static final TimingsTraceLog mBootTiming = new TimingsTraceLog(VHAL_TIMING_TAG,
Gregory Clarkd8136062017-12-11 14:27:53 -080093 Trace.TRACE_TAG_HAL);
Steve Paikc302c7c2017-08-04 14:01:58 -070094
keunyoung1ab8e182015-09-24 09:25:22 -070095 /** Test only service. Populate it only when necessary. */
96 @GuardedBy("this")
97 private CarTestService mCarTestService;
keunyoungca515072015-07-10 12:21:47 -070098
Keun-young Parkaab47cd2017-06-05 11:04:50 -070099 @GuardedBy("this")
100 private ICarServiceHelper mICarServiceHelper;
101
Enrico Granatae8056ca2018-04-03 13:19:52 -0700102 private final String mVehicleInterfaceName;
103
Pavel Maltsevec83b632017-01-05 15:10:55 -0800104 public ICarImpl(Context serviceContext, IVehicle vehicle, SystemInterface systemInterface,
Enrico Granatae8056ca2018-04-03 13:19:52 -0700105 CanBusErrorNotifier errorNotifier, String vehicleInterfaceName) {
keunyoungca515072015-07-10 12:21:47 -0700106 mContext = serviceContext;
Steve Paik0f9fc002018-02-09 17:42:00 -0800107 mSystemInterface = systemInterface;
Pavel Maltsev0d07c762016-11-03 16:40:15 -0700108 mHal = new VehicleHal(vehicle);
Enrico Granatae8056ca2018-04-03 13:19:52 -0700109 mVehicleInterfaceName = vehicleInterfaceName;
Keun-young Park4727da32016-05-31 10:00:51 -0700110 mSystemActivityMonitoringService = new SystemActivityMonitoringService(serviceContext);
Steve Paik388d7772018-02-12 10:54:51 -0800111 mCarPowerManagementService = new CarPowerManagementService(mContext, mHal.getPowerHal(),
112 systemInterface);
Pavel Maltsev0d07c762016-11-03 16:40:15 -0700113 mCarSensorService = new CarSensorService(serviceContext, mHal.getSensorHal());
Ram Periathiruvadi25c16f12017-11-17 16:48:37 -0800114 mCarDrivingStateService = new CarDrivingStateService(serviceContext, mCarSensorService);
Ram Periathiruvadi4526a432018-01-24 13:00:54 -0800115 mCarUXRestrictionsService = new CarUxRestrictionsManagerService(serviceContext,
Ram Periathiruvadied9e8f82018-03-07 11:50:49 -0800116 mCarDrivingStateService, mCarSensorService);
Ram Periathiruvadi2da6d0e2018-01-26 18:02:10 -0800117 mCarPackageManagerService = new CarPackageManagerService(serviceContext,
118 mCarUXRestrictionsService,
Keun-young Park4727da32016-05-31 10:00:51 -0700119 mSystemActivityMonitoringService);
Pavel Maltsev0d07c762016-11-03 16:40:15 -0700120 mCarInputService = new CarInputService(serviceContext, mHal.getInputHal());
Vitalii Tomkiv6e5ee612016-03-09 14:57:32 -0800121 mCarProjectionService = new CarProjectionService(serviceContext, mCarInputService);
Yao Chen3a7976d2016-01-20 17:27:08 -0800122 mGarageModeService = new GarageModeService(mContext, mCarPowerManagementService);
Gregory Clark26fa6012018-03-14 18:38:56 -0700123 mCarLocationService = new CarLocationService(mContext, mCarPowerManagementService,
124 mCarSensorService);
Pavel Maltsev0d07c762016-11-03 16:40:15 -0700125 mCarInfoService = new CarInfoService(serviceContext, mHal.getInfoHal());
Vitalii Tomkiv8c7f2972016-07-11 15:42:04 -0700126 mAppFocusService = new AppFocusService(serviceContext, mSystemActivityMonitoringService);
Hongwei Wang30557232018-01-02 10:25:08 -0800127 mCarAudioService = new CarAudioService(serviceContext);
Pavel Maltsev0d07c762016-11-03 16:40:15 -0700128 mCarCabinService = new CarCabinService(serviceContext, mHal.getCabinHal());
129 mCarHvacService = new CarHvacService(serviceContext, mHal.getHvacHal());
Pavel Maltsev0d07c762016-11-03 16:40:15 -0700130 mCarNightService = new CarNightService(serviceContext, mCarSensorService);
Pavel Maltsev0477e292016-05-27 12:22:36 -0700131 mInstrumentClusterService = new InstrumentClusterService(serviceContext,
Pavel Maltsev03cf60c2016-06-27 15:11:51 -0700132 mAppFocusService, mCarInputService);
Keun-young Parkd73afae2016-04-08 20:03:32 -0700133 mSystemStateControllerService = new SystemStateControllerService(serviceContext,
Keun-young Park3cb89102016-05-05 13:16:03 -0700134 mCarPowerManagementService, mCarAudioService, this);
Pavel Maltsev0d07c762016-11-03 16:40:15 -0700135 mCarVendorExtensionService = new CarVendorExtensionService(serviceContext,
136 mHal.getVendorExtensionHal());
Ram Periathiruvadiacb60242017-04-13 16:19:09 -0700137 mPerUserCarServiceHelper = new PerUserCarServiceHelper(serviceContext);
Ram Periathiruvadi49d5a5a2017-02-17 18:50:09 -0800138 mCarBluetoothService = new CarBluetoothService(serviceContext, mCarCabinService,
Ram Periathiruvadie011a402018-03-22 18:54:33 -0700139 mCarSensorService, mPerUserCarServiceHelper, mCarUXRestrictionsService);
Asaf Rosenfeld39e4f032017-09-16 11:33:50 -0700140 mVmsSubscriberService = new VmsSubscriberService(serviceContext, mHal.getVmsHal());
141 mVmsPublisherService = new VmsPublisherService(serviceContext, mHal.getVmsHal());
Enrico Granatab3634e22017-05-05 18:02:31 -0700142 mCarDiagnosticService = new CarDiagnosticService(serviceContext, mHal.getDiagnosticHal());
Enrico Granata517a1e02017-09-20 16:15:50 -0700143 mCarStorageMonitoringService = new CarStorageMonitoringService(serviceContext,
144 systemInterface);
keunyounga74b9ca2015-10-21 13:33:58 -0700145
keunyounga3b28d82015-08-25 13:05:15 -0700146 // Be careful with order. Service depending on other service should be inited later.
Antonio Cortese4619c72017-02-02 07:53:27 -0800147 List<CarServiceBase> allServices = new ArrayList<>(Arrays.asList(
Keun-young Park4727da32016-05-31 10:00:51 -0700148 mSystemActivityMonitoringService,
keunyoung4b0212c2015-10-29 17:11:57 -0700149 mCarPowerManagementService,
Keun-young Park4727da32016-05-31 10:00:51 -0700150 mCarSensorService,
Ram Periathiruvadi25c16f12017-11-17 16:48:37 -0800151 mCarDrivingStateService,
152 mCarUXRestrictionsService,
Keun-young Park45fdcba2015-12-08 11:38:58 -0800153 mCarPackageManagerService,
Keun-young Parka28d7b22016-02-29 16:54:29 -0800154 mCarInputService,
Gregory Clarkd8136062017-12-11 14:27:53 -0800155 mCarLocationService,
Keun-young Parka28d7b22016-02-29 16:54:29 -0800156 mGarageModeService,
keunyounga3b28d82015-08-25 13:05:15 -0700157 mCarInfoService,
Vitalii Tomkiv46371472016-05-23 16:55:22 -0700158 mAppFocusService,
Sanket Agarwal3cf096a2015-10-13 14:46:31 -0700159 mCarAudioService,
Steve Paik43c04a72016-07-08 19:12:09 -0700160 mCarCabinService,
Steve Paik66481982015-10-27 15:22:38 -0700161 mCarHvacService,
Joseph Pirozzo317343d2016-01-25 10:22:37 -0800162 mCarNightService,
Pavel Maltsev1ecdd6c2016-03-02 16:33:44 -0800163 mInstrumentClusterService,
Vitalii Tomkiv6e5ee612016-03-09 14:57:32 -0800164 mCarProjectionService,
Pavel Maltsev634e1ff2016-07-14 15:41:26 -0700165 mSystemStateControllerService,
Ram Periathiruvadi7ed84182017-01-20 15:18:08 -0800166 mCarVendorExtensionService,
Enrico Granatab3634e22017-05-05 18:02:31 -0700167 mCarBluetoothService,
Ram Periathiruvadia048c0a2017-05-09 07:35:03 -0700168 mCarDiagnosticService,
Asaf Rosenfeld39e4f032017-09-16 11:33:50 -0700169 mPerUserCarServiceHelper,
Enrico Granata9a916d72017-09-19 14:33:08 -0700170 mCarStorageMonitoringService,
Asaf Rosenfeld39e4f032017-09-16 11:33:50 -0700171 mVmsSubscriberService,
172 mVmsPublisherService
Antonio Cortese4619c72017-02-02 07:53:27 -0800173 ));
Antonio Cortese4619c72017-02-02 07:53:27 -0800174 mAllServices = allServices.toArray(new CarServiceBase[0]);
keunyoungca515072015-07-10 12:21:47 -0700175 }
176
Pavel Maltsevabd47232017-10-10 16:54:57 -0700177 @MainThread
Pavel Maltsev8edd2552017-09-18 14:52:16 -0700178 void init() {
Steve Paikc302c7c2017-08-04 14:01:58 -0700179 traceBegin("VehicleHal.init");
Pavel Maltsev0d07c762016-11-03 16:40:15 -0700180 mHal.init();
Steve Paikc302c7c2017-08-04 14:01:58 -0700181 traceEnd();
182 traceBegin("CarService.initAllServices");
Ram Periathiruvadiee28c002017-02-07 21:35:01 -0800183 for (CarServiceBase service : mAllServices) {
keunyounga3b28d82015-08-25 13:05:15 -0700184 service.init();
185 }
Steve Paikc302c7c2017-08-04 14:01:58 -0700186 traceEnd();
keunyoungca515072015-07-10 12:21:47 -0700187 }
188
Pavel Maltsev8edd2552017-09-18 14:52:16 -0700189 void release() {
keunyounga3b28d82015-08-25 13:05:15 -0700190 // release done in opposite order from init
191 for (int i = mAllServices.length - 1; i >= 0; i--) {
192 mAllServices[i].release();
193 }
Pavel Maltsev0d07c762016-11-03 16:40:15 -0700194 mHal.release();
keunyoung1ab8e182015-09-24 09:25:22 -0700195 }
196
Pavel Maltsev8edd2552017-09-18 14:52:16 -0700197 void vehicleHalReconnected(IVehicle vehicle) {
Pavel Maltsevec83b632017-01-05 15:10:55 -0800198 mHal.vehicleHalReconnected(vehicle);
199 for (CarServiceBase service : mAllServices) {
200 service.vehicleHalReconnected();
201 }
202 }
203
keunyoungca515072015-07-10 12:21:47 -0700204 @Override
Keun-young Parkaab47cd2017-06-05 11:04:50 -0700205 public void setCarServiceHelper(IBinder helper) {
206 int uid = Binder.getCallingUid();
207 if (uid != Process.SYSTEM_UID) {
208 throw new SecurityException("Only allowed from system");
209 }
210 synchronized (this) {
211 mICarServiceHelper = ICarServiceHelper.Stub.asInterface(helper);
Steve Paik0f9fc002018-02-09 17:42:00 -0800212 mSystemInterface.setCarServiceHelper(mICarServiceHelper);
Keun-young Parkaab47cd2017-06-05 11:04:50 -0700213 }
214 }
215
216 @Override
keunyoungca515072015-07-10 12:21:47 -0700217 public IBinder getCarService(String serviceName) {
218 switch (serviceName) {
Keun-young Park5672e852016-02-09 19:53:48 -0800219 case Car.AUDIO_SERVICE:
220 return mCarAudioService;
keunyoungca515072015-07-10 12:21:47 -0700221 case Car.SENSOR_SERVICE:
222 return mCarSensorService;
keunyounga3b28d82015-08-25 13:05:15 -0700223 case Car.INFO_SERVICE:
224 return mCarInfoService;
Vitalii Tomkiv46371472016-05-23 16:55:22 -0700225 case Car.APP_FOCUS_SERVICE:
226 return mAppFocusService;
Keun-young Park45fdcba2015-12-08 11:38:58 -0800227 case Car.PACKAGE_SERVICE:
228 return mCarPackageManagerService;
Steve Paik43c04a72016-07-08 19:12:09 -0700229 case Car.CABIN_SERVICE:
230 assertCabinPermission(mContext);
231 return mCarCabinService;
Enrico Granata5c56d2a2017-02-07 15:38:12 -0800232 case Car.DIAGNOSTIC_SERVICE:
Enrico Granatab3634e22017-05-05 18:02:31 -0700233 assertAnyDiagnosticPermission(mContext);
234 return mCarDiagnosticService;
Keun-young Parke54ac272016-02-16 19:02:18 -0800235 case Car.HVAC_SERVICE:
Steve Paik66481982015-10-27 15:22:38 -0700236 assertHvacPermission(mContext);
237 return mCarHvacService;
Steve Paik388d7772018-02-12 10:54:51 -0800238 case Car.POWER_SERVICE:
239 assertPowerPermission(mContext);
240 return mCarPowerManagementService;
Pavel Maltsev7a948e52016-02-02 23:30:14 -0800241 case Car.CAR_NAVIGATION_SERVICE:
Keun-young Parke31a8b22016-03-16 17:34:08 -0700242 assertNavigationManagerPermission(mContext);
Pavel Maltsev0477e292016-05-27 12:22:36 -0700243 IInstrumentClusterNavigation navService =
244 mInstrumentClusterService.getNavigationService();
245 return navService == null ? null : navService.asBinder();
Pavel Maltsev905968c2017-07-16 19:48:57 -0700246 case Car.CAR_INSTRUMENT_CLUSTER_SERVICE:
247 assertClusterManagerPermission(mContext);
248 return mInstrumentClusterService.getManagerService();
Vitalii Tomkiv6e5ee612016-03-09 14:57:32 -0800249 case Car.PROJECTION_SERVICE:
250 assertProjectionPermission(mContext);
251 return mCarProjectionService;
Pavel Maltsev634e1ff2016-07-14 15:41:26 -0700252 case Car.VENDOR_EXTENSION_SERVICE:
253 assertVendorExtensionPermission(mContext);
254 return mCarVendorExtensionService;
Antonio Cortese4619c72017-02-02 07:53:27 -0800255 case Car.VMS_SUBSCRIBER_SERVICE:
Asaf Rosenfeld39e4f032017-09-16 11:33:50 -0700256 assertVmsSubscriberPermission(mContext);
257 return mVmsSubscriberService;
Keun-young Parke54ac272016-02-16 19:02:18 -0800258 case Car.TEST_SERVICE: {
Pavel Maltsev0d07c762016-11-03 16:40:15 -0700259 assertPermission(mContext, Car.PERMISSION_CAR_TEST_SERVICE);
keunyoung1ab8e182015-09-24 09:25:22 -0700260 synchronized (this) {
261 if (mCarTestService == null) {
262 mCarTestService = new CarTestService(mContext, this);
263 }
264 return mCarTestService;
265 }
266 }
Ram Periathiruvadi76a84892017-07-27 18:10:35 -0700267 case Car.BLUETOOTH_SERVICE:
268 return mCarBluetoothService;
Enrico Granata9a916d72017-09-19 14:33:08 -0700269 case Car.STORAGE_MONITORING_SERVICE:
Enrico Granata1172f882017-09-21 14:51:30 -0700270 assertPermission(mContext, Car.PERMISSION_STORAGE_MONITORING);
Enrico Granata9a916d72017-09-19 14:33:08 -0700271 return mCarStorageMonitoringService;
Ram Periathiruvadi25c16f12017-11-17 16:48:37 -0800272 case Car.CAR_DRIVING_STATE_SERVICE:
273 assertDrivingStatePermission(mContext);
274 return mCarDrivingStateService;
275 case Car.CAR_UX_RESTRICTION_SERVICE:
276 return mCarUXRestrictionsService;
keunyoungca515072015-07-10 12:21:47 -0700277 default:
278 Log.w(CarLog.TAG_SERVICE, "getCarService for unknown service:" + serviceName);
279 return null;
280 }
281 }
282
Pavel Maltsev1ecdd6c2016-03-02 16:33:44 -0800283 @Override
284 public int getCarConnectionType() {
Pavel Maltsev0d07c762016-11-03 16:40:15 -0700285 return Car.CONNECTION_TYPE_EMBEDDED;
Pavel Maltsev1ecdd6c2016-03-02 16:33:44 -0800286 }
287
Keun-young Parka28d7b22016-02-29 16:54:29 -0800288 public CarServiceBase getCarInternalService(String serviceName) {
289 switch (serviceName) {
290 case INTERNAL_INPUT_SERVICE:
291 return mCarInputService;
Keun-young Park4727da32016-05-31 10:00:51 -0700292 case INTERNAL_SYSTEM_ACTIVITY_MONITORING_SERVICE:
293 return mSystemActivityMonitoringService;
Keun-young Parka28d7b22016-02-29 16:54:29 -0800294 default:
295 Log.w(CarLog.TAG_SERVICE, "getCarInternalService for unknown service:" +
296 serviceName);
297 return null;
298 }
299 }
300
keunyoung1ab8e182015-09-24 09:25:22 -0700301 public static void assertVehicleHalMockPermission(Context context) {
Steve Paik461ecc62016-06-08 15:28:32 -0700302 assertPermission(context, Car.PERMISSION_MOCK_VEHICLE_HAL);
keunyoung1ab8e182015-09-24 09:25:22 -0700303 }
304
Steve Paik43c04a72016-07-08 19:12:09 -0700305 public static void assertCabinPermission(Context context) {
Kai25c0b852018-03-01 11:52:31 -0800306 assertPermission(context, Car.PERMISSION_ADJUST_CAR_CABIN);
Steve Paik43c04a72016-07-08 19:12:09 -0700307 }
308
Keun-young Parke31a8b22016-03-16 17:34:08 -0700309 public static void assertNavigationManagerPermission(Context context) {
Steve Paik461ecc62016-06-08 15:28:32 -0700310 assertPermission(context, Car.PERMISSION_CAR_NAVIGATION_MANAGER);
Pavel Maltsevce4ffd92016-03-09 10:56:23 -0800311 }
312
Pavel Maltsev905968c2017-07-16 19:48:57 -0700313 public static void assertClusterManagerPermission(Context context) {
314 assertPermission(context, Car.PERMISSION_CAR_INSTRUMENT_CLUSTER_CONTROL);
315 }
316
Steve Paik66481982015-10-27 15:22:38 -0700317 public static void assertHvacPermission(Context context) {
Kai25c0b852018-03-01 11:52:31 -0800318 assertPermission(context, Car.PERMISSION_ADJUST_CAR_CLIMATE);
Steve Paik66481982015-10-27 15:22:38 -0700319 }
320
Steve Paik388d7772018-02-12 10:54:51 -0800321 public static void assertPowerPermission(Context context) {
322 assertPermission(context, Car.PERMISSION_CAR_POWER);
323 }
324
Vitalii Tomkiv6e5ee612016-03-09 14:57:32 -0800325 public static void assertProjectionPermission(Context context) {
Steve Paik461ecc62016-06-08 15:28:32 -0700326 assertPermission(context, Car.PERMISSION_CAR_PROJECTION);
327 }
328
Pavel Maltsev634e1ff2016-07-14 15:41:26 -0700329 public static void assertVendorExtensionPermission(Context context) {
330 assertPermission(context, Car.PERMISSION_VENDOR_EXTENSION);
331 }
332
Enrico Granata3c7a6662017-02-23 18:07:59 -0800333 public static void assertAnyDiagnosticPermission(Context context) {
334 assertAnyPermission(context,
Enrico Granataae25b922017-07-07 11:28:15 -0700335 Car.PERMISSION_CAR_DIAGNOSTIC_READ_ALL,
Enrico Granata3c7a6662017-02-23 18:07:59 -0800336 Car.PERMISSION_CAR_DIAGNOSTIC_CLEAR);
337 }
338
Ram Periathiruvadi25c16f12017-11-17 16:48:37 -0800339 public static void assertDrivingStatePermission(Context context) {
340 assertPermission(context, Car.PERMISSION_CAR_DRIVING_STATE);
341 }
342
Antonio Cortes6b3544c2017-02-06 16:54:58 -0800343 public static void assertVmsPublisherPermission(Context context) {
344 assertPermission(context, Car.PERMISSION_VMS_PUBLISHER);
345 }
346
Antonio Cortese4619c72017-02-02 07:53:27 -0800347 public static void assertVmsSubscriberPermission(Context context) {
348 assertPermission(context, Car.PERMISSION_VMS_SUBSCRIBER);
349 }
350
Steve Paik461ecc62016-06-08 15:28:32 -0700351 public static void assertPermission(Context context, String permission) {
352 if (context.checkCallingOrSelfPermission(permission) != PackageManager.PERMISSION_GRANTED) {
353 throw new SecurityException("requires " + permission);
Vitalii Tomkiv6e5ee612016-03-09 14:57:32 -0800354 }
355 }
356
Enrico Granata3c7a6662017-02-23 18:07:59 -0800357 public static void assertAnyPermission(Context context, String... permissions) {
358 for (String permission : permissions) {
359 if (context.checkCallingOrSelfPermission(permission) ==
360 PackageManager.PERMISSION_GRANTED) {
361 return;
362 }
363 }
364 throw new SecurityException("requires any of " + Arrays.toString(permissions));
365 }
366
Enrico Granatae8056ca2018-04-03 13:19:52 -0700367 @Override
368 protected void dump(FileDescriptor fd, PrintWriter writer, String[] args) {
369 if (mContext.checkCallingOrSelfPermission(android.Manifest.permission.DUMP)
370 != PackageManager.PERMISSION_GRANTED) {
371 writer.println("Permission Denial: can't dump CarService from from pid="
372 + Binder.getCallingPid() + ", uid=" + Binder.getCallingUid()
373 + " without permission " + android.Manifest.permission.DUMP);
374 return;
keunyounga3b28d82015-08-25 13:05:15 -0700375 }
Enrico Granatae8056ca2018-04-03 13:19:52 -0700376 if (args == null || args.length == 0) {
377 writer.println("*dump car service*");
378
379 writer.println("*FutureConfig, DEFAULT:" + FeatureConfiguration.DEFAULT);
380 writer.println("*Dump all services*");
381 for (CarServiceBase service : mAllServices) {
382 dumpService(service, writer);
383 }
384 if (mCarTestService != null) {
385 dumpService(mCarTestService, writer);
386 }
387 writer.println("*Dump Vehicle HAL*");
388 writer.println("Vehicle HAL Interface: " + mVehicleInterfaceName);
389 try {
390 // TODO dump all feature flags by creating a dumpable interface
391 mHal.dump(writer);
392 } catch (Exception e) {
393 writer.println("Failed dumping: " + mHal.getClass().getName());
394 e.printStackTrace(writer);
395 }
396 } else if (Build.IS_USERDEBUG || Build.IS_ENG) {
397 execShellCmd(args, writer);
398 } else {
399 writer.println("Commands not supported in " + Build.TYPE);
Brad Stenninged3d59b2017-11-09 16:15:17 -0800400 }
401 }
402
403 private void dumpService(CarServiceBase service, PrintWriter writer) {
404 try {
405 service.dump(writer);
406 } catch (Exception e) {
407 writer.println("Failed dumping: " + service.getClass().getName());
408 e.printStackTrace(writer);
409 }
keunyoungcc449f72015-08-12 10:46:27 -0700410 }
Yao Chene33f07e2016-07-26 12:02:51 -0700411
412 void execShellCmd(String[] args, PrintWriter writer) {
413 new CarShellCommand().exec(args, writer);
414 }
415
Pavel Maltsevabd47232017-10-10 16:54:57 -0700416 @MainThread
Steve Paikc302c7c2017-08-04 14:01:58 -0700417 private static void traceBegin(String name) {
418 Slog.i(TAG, name);
419 mBootTiming.traceBegin(name);
420 }
421
Pavel Maltsevabd47232017-10-10 16:54:57 -0700422 @MainThread
Steve Paikc302c7c2017-08-04 14:01:58 -0700423 private static void traceEnd() {
424 mBootTiming.traceEnd();
425 }
426
Yao Chene33f07e2016-07-26 12:02:51 -0700427 private class CarShellCommand {
428 private static final String COMMAND_HELP = "-h";
429 private static final String COMMAND_DAY_NIGHT_MODE = "day-night-mode";
Ram Periathiruvadi5cd00cb2018-02-12 13:49:50 -0800430 private static final String COMMAND_INJECT_VHAL_EVENT = "inject-vhal-event";
Ram Periathiruvadibf0eab72018-02-06 12:32:43 -0800431 private static final String COMMAND_ENABLE_UXR = "enable-uxr";
Bryan Eylera32a7c12018-02-27 15:40:00 -0800432 private static final String COMMAND_GARAGE_MODE = "garage-mode";
Ram Periathiruvadi38388302018-02-22 16:42:49 -0800433 private static final String COMMAND_GET_DO_ACTIVITIES = "get-do-activities";
Ram Periathiruvadiee28c002017-02-07 21:35:01 -0800434
Yao Chene33f07e2016-07-26 12:02:51 -0700435 private static final String PARAM_DAY_MODE = "day";
436 private static final String PARAM_NIGHT_MODE = "night";
437 private static final String PARAM_SENSOR_MODE = "sensor";
Ram Periathiruvadi5cd00cb2018-02-12 13:49:50 -0800438 private static final String PARAM_VEHICLE_PROPERTY_AREA_GLOBAL = "0";
Bryan Eylera32a7c12018-02-27 15:40:00 -0800439 private static final String PARAM_ON_MODE = "on";
440 private static final String PARAM_OFF_MODE = "off";
441 private static final String PARAM_QUERY_MODE = "query";
Ram Periathiruvadi5cd00cb2018-02-12 13:49:50 -0800442
Yao Chene33f07e2016-07-26 12:02:51 -0700443
444 private void dumpHelp(PrintWriter pw) {
445 pw.println("Car service commands:");
446 pw.println("\t-h");
447 pw.println("\t Print this help text.");
448 pw.println("\tday-night-mode [day|night|sensor]");
449 pw.println("\t Force into day/night mode or restore to auto.");
Ram Periathiruvadi5cd00cb2018-02-12 13:49:50 -0800450 pw.println("\tinject-vhal-event property [zone] data(can be comma separated list)");
451 pw.println("\t Inject a vehicle property for testing");
Ram Periathiruvadibf0eab72018-02-06 12:32:43 -0800452 pw.println("\tdisable-uxr true|false");
453 pw.println("\t Disable UX restrictions and App blocking.");
Bryan Eylera32a7c12018-02-27 15:40:00 -0800454 pw.println("\tgarage-mode [on|off|query]");
455 pw.println("\t Force into garage mode or check status.");
Ram Periathiruvadi38388302018-02-22 16:42:49 -0800456 pw.println("\tget-do-activities pkgname");
457 pw.println("\t Get Distraction Optimized activities in given package");
Yao Chene33f07e2016-07-26 12:02:51 -0700458 }
459
460 public void exec(String[] args, PrintWriter writer) {
461 String arg = args[0];
462 switch (arg) {
463 case COMMAND_HELP:
464 dumpHelp(writer);
465 break;
Bryan Eylera32a7c12018-02-27 15:40:00 -0800466 case COMMAND_DAY_NIGHT_MODE: {
Yao Chene33f07e2016-07-26 12:02:51 -0700467 String value = args.length < 1 ? "" : args[1];
468 forceDayNightMode(value, writer);
469 break;
Bryan Eylera32a7c12018-02-27 15:40:00 -0800470 }
471 case COMMAND_GARAGE_MODE: {
472 String value = args.length < 1 ? "" : args[1];
473 forceGarageMode(value, writer);
474 break;
475 }
Ram Periathiruvadi5cd00cb2018-02-12 13:49:50 -0800476 case COMMAND_INJECT_VHAL_EVENT:
477 String zone = PARAM_VEHICLE_PROPERTY_AREA_GLOBAL;
478 String data;
479 if (args.length < 3) {
480 writer.println("Incorrect number of arguments.");
481 dumpHelp(writer);
482 break;
483 } else if (args.length > 3) {
484 // Zoned
485 zone = args[2];
486 data = args[3];
487 } else {
488 // Global
489 data = args[2];
Ram Periathiruvadiee28c002017-02-07 21:35:01 -0800490 }
Ram Periathiruvadi5cd00cb2018-02-12 13:49:50 -0800491 injectVhalEvent(args[1], zone, data, writer);
Ram Periathiruvadiee28c002017-02-07 21:35:01 -0800492 break;
Ram Periathiruvadibf0eab72018-02-06 12:32:43 -0800493 case COMMAND_ENABLE_UXR:
494 if (args.length < 2) {
495 writer.println("Incorrect number of arguments");
496 dumpHelp(writer);
497 break;
498 }
499 boolean enableBlocking = Boolean.valueOf(args[1]);
500 if (mCarPackageManagerService != null) {
501 mCarPackageManagerService.setEnableActivityBlocking(enableBlocking);
502 }
503 break;
Ram Periathiruvadi38388302018-02-22 16:42:49 -0800504 case COMMAND_GET_DO_ACTIVITIES:
505 if (args.length < 2) {
506 writer.println("Incorrect number of arguments");
507 dumpHelp(writer);
508 break;
509 }
510 String pkgName = args[1].toLowerCase();
511 if (mCarPackageManagerService != null) {
512 String[] doActivities =
513 mCarPackageManagerService.getDistractionOptimizedActivities(
514 pkgName);
515 if (doActivities != null) {
516 writer.println("DO Activities for " + pkgName);
517 for (String a : doActivities) {
518 writer.println(a);
519 }
520 } else {
521 writer.println("No DO Activities for " + pkgName);
522 }
523 }
524 break;
Yao Chene33f07e2016-07-26 12:02:51 -0700525 default:
526 writer.println("Unknown command.");
527 dumpHelp(writer);
528 }
529 }
530
531 private void forceDayNightMode(String arg, PrintWriter writer) {
532 int mode;
533 switch (arg) {
534 case PARAM_DAY_MODE:
535 mode = CarNightService.FORCED_DAY_MODE;
536 break;
537 case PARAM_NIGHT_MODE:
538 mode = CarNightService.FORCED_NIGHT_MODE;
539 break;
540 case PARAM_SENSOR_MODE:
541 mode = CarNightService.FORCED_SENSOR_MODE;
542 break;
543 default:
544 writer.println("Unknown value. Valid argument: " + PARAM_DAY_MODE + "|"
545 + PARAM_NIGHT_MODE + "|" + PARAM_SENSOR_MODE);
546 return;
547 }
548 int current = mCarNightService.forceDayNightMode(mode);
549 String currentMode = null;
550 switch (current) {
551 case UiModeManager.MODE_NIGHT_AUTO:
552 currentMode = PARAM_SENSOR_MODE;
553 break;
554 case UiModeManager.MODE_NIGHT_YES:
555 currentMode = PARAM_NIGHT_MODE;
556 break;
557 case UiModeManager.MODE_NIGHT_NO:
558 currentMode = PARAM_DAY_MODE;
559 break;
560 }
561 writer.println("DayNightMode changed to: " + currentMode);
562 }
Ram Periathiruvadiee28c002017-02-07 21:35:01 -0800563
Bryan Eylera32a7c12018-02-27 15:40:00 -0800564 private void forceGarageMode(String arg, PrintWriter writer) {
565 switch (arg) {
566 case PARAM_ON_MODE:
567 mGarageModeService.onPrepareShutdown(false);
568 break;
569 case PARAM_OFF_MODE:
570 mGarageModeService.onSleepEntry();
571 break;
572 case PARAM_QUERY_MODE:
573 // Nothing to do. Always query at the end anyway.
574 break;
575 default:
576 writer.println("Unknown value. Valid argument: " + PARAM_ON_MODE + "|"
577 + PARAM_OFF_MODE + "|" + PARAM_QUERY_MODE);
578 return;
579 }
580 writer.println("Garage mode: " + mGarageModeService.isInGarageMode());
581 }
582
Ram Periathiruvadiee28c002017-02-07 21:35:01 -0800583 /**
Ram Periathiruvadi5cd00cb2018-02-12 13:49:50 -0800584 * Inject a fake VHAL event
Ram Periathiruvadi49d5a5a2017-02-17 18:50:09 -0800585 *
Ram Periathiruvadi5cd00cb2018-02-12 13:49:50 -0800586 * @param property the Vehicle property Id as defined in the HAL
587 * @param zone Zone that this event services
588 * @param value Data value of the event
589 * @param writer PrintWriter
Ram Periathiruvadiee28c002017-02-07 21:35:01 -0800590 */
Ram Periathiruvadi5cd00cb2018-02-12 13:49:50 -0800591 private void injectVhalEvent(String property, String zone, String value,
Ram Periathiruvadi49d5a5a2017-02-17 18:50:09 -0800592 PrintWriter writer) {
Ram Periathiruvadi5cd00cb2018-02-12 13:49:50 -0800593 if (zone != null && (zone.equalsIgnoreCase(PARAM_VEHICLE_PROPERTY_AREA_GLOBAL))) {
594 if (!isPropertyAreaTypeGlobal(property)) {
595 writer.println("Property area type inconsistent with given zone");
596 return;
597 }
Ram Periathiruvadiee28c002017-02-07 21:35:01 -0800598 }
599 try {
Ram Periathiruvadi5cd00cb2018-02-12 13:49:50 -0800600 mHal.injectVhalEvent(property, zone, value);
Ram Periathiruvadiee28c002017-02-07 21:35:01 -0800601 } catch (NumberFormatException e) {
Ram Periathiruvadi5cd00cb2018-02-12 13:49:50 -0800602 writer.println("Invalid property Id zone Id or value" + e);
603 dumpHelp(writer);
Ram Periathiruvadiee28c002017-02-07 21:35:01 -0800604 }
Ram Periathiruvadiee28c002017-02-07 21:35:01 -0800605 }
606
Ram Periathiruvadi5cd00cb2018-02-12 13:49:50 -0800607 // Check if the given property is global
608 private boolean isPropertyAreaTypeGlobal(String property) {
609 if (property == null) {
610 return false;
Ram Periathiruvadi49d5a5a2017-02-17 18:50:09 -0800611 }
Ram Periathiruvadi5cd00cb2018-02-12 13:49:50 -0800612 return (Integer.decode(property) & VehicleArea.MASK) == VehicleArea.GLOBAL;
Ram Periathiruvadi49d5a5a2017-02-17 18:50:09 -0800613 }
Yao Chene33f07e2016-07-26 12:02:51 -0700614 }
Keun-young Parkaab47cd2017-06-05 11:04:50 -0700615}