Mathias Agopian | 65ab471 | 2010-07-14 17:59:35 -0700 | [diff] [blame] | 1 | /* |
Ruben Brunk | d1176ef | 2014-02-21 10:51:38 -0800 | [diff] [blame] | 2 | * Copyright (C) 2008 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 | */ |
Mathias Agopian | 65ab471 | 2010-07-14 17:59:35 -0700 | [diff] [blame] | 16 | |
| 17 | #define LOG_TAG "CameraService" |
Eino-Ville Talvala | a84bbe6 | 2015-09-08 17:59:17 -0700 | [diff] [blame] | 18 | #define ATRACE_TAG ATRACE_TAG_CAMERA |
Iliyan Malchev | 8951a97 | 2011-04-14 16:55:59 -0700 | [diff] [blame] | 19 | //#define LOG_NDEBUG 0 |
Mathias Agopian | 65ab471 | 2010-07-14 17:59:35 -0700 | [diff] [blame] | 20 | |
Ruben Brunk | cc77671 | 2015-02-17 20:18:47 -0800 | [diff] [blame] | 21 | #include <algorithm> |
| 22 | #include <climits> |
Mathias Agopian | 65ab471 | 2010-07-14 17:59:35 -0700 | [diff] [blame] | 23 | #include <stdio.h> |
Ruben Brunk | cc77671 | 2015-02-17 20:18:47 -0800 | [diff] [blame] | 24 | #include <cstring> |
| 25 | #include <ctime> |
| 26 | #include <string> |
Mathias Agopian | 65ab471 | 2010-07-14 17:59:35 -0700 | [diff] [blame] | 27 | #include <sys/types.h> |
Ruben Brunk | cc77671 | 2015-02-17 20:18:47 -0800 | [diff] [blame] | 28 | #include <inttypes.h> |
Mathias Agopian | 65ab471 | 2010-07-14 17:59:35 -0700 | [diff] [blame] | 29 | #include <pthread.h> |
| 30 | |
Eino-Ville Talvala | d56db1d | 2015-12-17 16:50:35 -0800 | [diff] [blame] | 31 | #include <android/hardware/ICamera.h> |
| 32 | #include <android/hardware/ICameraClient.h> |
| 33 | |
Eino-Ville Talvala | ceb388d | 2013-02-19 10:40:14 -0800 | [diff] [blame] | 34 | #include <binder/AppOpsManager.h> |
Mathias Agopian | 65ab471 | 2010-07-14 17:59:35 -0700 | [diff] [blame] | 35 | #include <binder/IPCThreadState.h> |
| 36 | #include <binder/IServiceManager.h> |
| 37 | #include <binder/MemoryBase.h> |
| 38 | #include <binder/MemoryHeapBase.h> |
Ruben Brunk | cc77671 | 2015-02-17 20:18:47 -0800 | [diff] [blame] | 39 | #include <binder/ProcessInfoService.h> |
Mathias Agopian | 65ab471 | 2010-07-14 17:59:35 -0700 | [diff] [blame] | 40 | #include <cutils/atomic.h> |
Nipun Kwatra | b5ca461 | 2010-09-11 19:31:10 -0700 | [diff] [blame] | 41 | #include <cutils/properties.h> |
Mathias Agopian | df712ea | 2012-02-25 18:48:35 -0800 | [diff] [blame] | 42 | #include <gui/Surface.h> |
Mathias Agopian | 65ab471 | 2010-07-14 17:59:35 -0700 | [diff] [blame] | 43 | #include <hardware/hardware.h> |
Eino-Ville Talvala | d89821e | 2016-04-20 11:23:50 -0700 | [diff] [blame] | 44 | #include <memunreachable/memunreachable.h> |
Mathias Agopian | 65ab471 | 2010-07-14 17:59:35 -0700 | [diff] [blame] | 45 | #include <media/AudioSystem.h> |
Andreas Huber | 1b86fe0 | 2014-01-29 11:13:26 -0800 | [diff] [blame] | 46 | #include <media/IMediaHTTPService.h> |
Mathias Agopian | 65ab471 | 2010-07-14 17:59:35 -0700 | [diff] [blame] | 47 | #include <media/mediaplayer.h> |
Ruben Brunk | 99e6971 | 2015-05-26 17:25:07 -0700 | [diff] [blame] | 48 | #include <mediautils/BatteryNotifier.h> |
Mathias Agopian | 65ab471 | 2010-07-14 17:59:35 -0700 | [diff] [blame] | 49 | #include <utils/Errors.h> |
| 50 | #include <utils/Log.h> |
| 51 | #include <utils/String16.h> |
Ruben Brunk | d1176ef | 2014-02-21 10:51:38 -0800 | [diff] [blame] | 52 | #include <utils/Trace.h> |
Chien-Yu Chen | 98a668f | 2015-12-18 14:10:33 -0800 | [diff] [blame] | 53 | #include <private/android_filesystem_config.h> |
Ruben Brunk | d1176ef | 2014-02-21 10:51:38 -0800 | [diff] [blame] | 54 | #include <system/camera_vendor_tags.h> |
Ruben Brunk | b2119af | 2014-05-09 19:57:56 -0700 | [diff] [blame] | 55 | #include <system/camera_metadata.h> |
| 56 | #include <system/camera.h> |
Mathias Agopian | 65ab471 | 2010-07-14 17:59:35 -0700 | [diff] [blame] | 57 | |
| 58 | #include "CameraService.h" |
Eino-Ville Talvala | 7b82efe | 2013-07-25 17:12:35 -0700 | [diff] [blame] | 59 | #include "api1/CameraClient.h" |
| 60 | #include "api1/Camera2Client.h" |
Eino-Ville Talvala | 7b82efe | 2013-07-25 17:12:35 -0700 | [diff] [blame] | 61 | #include "api2/CameraDeviceClient.h" |
Igor Murashkin | ff3e31d | 2013-10-23 16:40:06 -0700 | [diff] [blame] | 62 | #include "utils/CameraTraces.h" |
Mathias Agopian | 65ab471 | 2010-07-14 17:59:35 -0700 | [diff] [blame] | 63 | |
Yin-Chia Yeh | 0dea57f | 2015-12-09 16:46:07 -0800 | [diff] [blame] | 64 | namespace { |
| 65 | const char* kPermissionServiceName = "permission"; |
| 66 | }; // namespace anonymous |
| 67 | |
Mathias Agopian | 65ab471 | 2010-07-14 17:59:35 -0700 | [diff] [blame] | 68 | namespace android { |
| 69 | |
Eino-Ville Talvala | d56db1d | 2015-12-17 16:50:35 -0800 | [diff] [blame] | 70 | using binder::Status; |
| 71 | using namespace hardware; |
| 72 | |
Mathias Agopian | 65ab471 | 2010-07-14 17:59:35 -0700 | [diff] [blame] | 73 | // ---------------------------------------------------------------------------- |
| 74 | // Logging support -- this is for debugging only |
| 75 | // Use "adb shell dumpsys media.camera -v 1" to change it. |
Eino-Ville Talvala | 5e08d60 | 2012-05-16 14:59:25 -0700 | [diff] [blame] | 76 | volatile int32_t gLogLevel = 0; |
Mathias Agopian | 65ab471 | 2010-07-14 17:59:35 -0700 | [diff] [blame] | 77 | |
Steve Block | b8a8052 | 2011-12-20 16:23:08 +0000 | [diff] [blame] | 78 | #define LOG1(...) ALOGD_IF(gLogLevel >= 1, __VA_ARGS__); |
| 79 | #define LOG2(...) ALOGD_IF(gLogLevel >= 2, __VA_ARGS__); |
Mathias Agopian | 65ab471 | 2010-07-14 17:59:35 -0700 | [diff] [blame] | 80 | |
| 81 | static void setLogLevel(int level) { |
| 82 | android_atomic_write(level, &gLogLevel); |
| 83 | } |
| 84 | |
Eino-Ville Talvala | d56db1d | 2015-12-17 16:50:35 -0800 | [diff] [blame] | 85 | // Convenience methods for constructing binder::Status objects for error returns |
| 86 | |
| 87 | #define STATUS_ERROR(errorCode, errorString) \ |
| 88 | binder::Status::fromServiceSpecificError(errorCode, \ |
| 89 | String8::format("%s:%d: %s", __FUNCTION__, __LINE__, errorString)) |
| 90 | |
| 91 | #define STATUS_ERROR_FMT(errorCode, errorString, ...) \ |
| 92 | binder::Status::fromServiceSpecificError(errorCode, \ |
| 93 | String8::format("%s:%d: " errorString, __FUNCTION__, __LINE__, \ |
| 94 | __VA_ARGS__)) |
| 95 | |
Mathias Agopian | 65ab471 | 2010-07-14 17:59:35 -0700 | [diff] [blame] | 96 | // ---------------------------------------------------------------------------- |
| 97 | |
Igor Murashkin | cba2c16 | 2013-03-20 15:56:31 -0700 | [diff] [blame] | 98 | extern "C" { |
| 99 | static void camera_device_status_change( |
| 100 | const struct camera_module_callbacks* callbacks, |
| 101 | int camera_id, |
| 102 | int new_status) { |
| 103 | sp<CameraService> cs = const_cast<CameraService*>( |
Ruben Brunk | cc77671 | 2015-02-17 20:18:47 -0800 | [diff] [blame] | 104 | static_cast<const CameraService*>(callbacks)); |
Igor Murashkin | cba2c16 | 2013-03-20 15:56:31 -0700 | [diff] [blame] | 105 | |
Ruben Brunk | cc77671 | 2015-02-17 20:18:47 -0800 | [diff] [blame] | 106 | cs->onDeviceStatusChanged(static_cast<camera_device_status_t>(camera_id), |
| 107 | static_cast<camera_device_status_t>(new_status)); |
Igor Murashkin | cba2c16 | 2013-03-20 15:56:31 -0700 | [diff] [blame] | 108 | } |
Chien-Yu Chen | 3068d73 | 2015-02-09 13:29:57 -0800 | [diff] [blame] | 109 | |
| 110 | static void torch_mode_status_change( |
| 111 | const struct camera_module_callbacks* callbacks, |
| 112 | const char* camera_id, |
| 113 | int new_status) { |
| 114 | if (!callbacks || !camera_id) { |
| 115 | ALOGE("%s invalid parameters. callbacks %p, camera_id %p", __FUNCTION__, |
| 116 | callbacks, camera_id); |
| 117 | } |
| 118 | sp<CameraService> cs = const_cast<CameraService*>( |
| 119 | static_cast<const CameraService*>(callbacks)); |
| 120 | |
Eino-Ville Talvala | d56db1d | 2015-12-17 16:50:35 -0800 | [diff] [blame] | 121 | int32_t status; |
Chien-Yu Chen | 3068d73 | 2015-02-09 13:29:57 -0800 | [diff] [blame] | 122 | switch (new_status) { |
Chien-Yu Chen | 88da526 | 2015-02-17 13:56:46 -0800 | [diff] [blame] | 123 | case TORCH_MODE_STATUS_NOT_AVAILABLE: |
Chien-Yu Chen | 3068d73 | 2015-02-09 13:29:57 -0800 | [diff] [blame] | 124 | status = ICameraServiceListener::TORCH_STATUS_NOT_AVAILABLE; |
| 125 | break; |
Chien-Yu Chen | 88da526 | 2015-02-17 13:56:46 -0800 | [diff] [blame] | 126 | case TORCH_MODE_STATUS_AVAILABLE_OFF: |
| 127 | status = ICameraServiceListener::TORCH_STATUS_AVAILABLE_OFF; |
| 128 | break; |
| 129 | case TORCH_MODE_STATUS_AVAILABLE_ON: |
| 130 | status = ICameraServiceListener::TORCH_STATUS_AVAILABLE_ON; |
Chien-Yu Chen | 3068d73 | 2015-02-09 13:29:57 -0800 | [diff] [blame] | 131 | break; |
| 132 | default: |
| 133 | ALOGE("Unknown torch status %d", new_status); |
| 134 | return; |
| 135 | } |
| 136 | |
| 137 | cs->onTorchStatusChanged( |
Chien-Yu Chen | 88da526 | 2015-02-17 13:56:46 -0800 | [diff] [blame] | 138 | String8(camera_id), |
Chien-Yu Chen | 3068d73 | 2015-02-09 13:29:57 -0800 | [diff] [blame] | 139 | status); |
| 140 | } |
Igor Murashkin | cba2c16 | 2013-03-20 15:56:31 -0700 | [diff] [blame] | 141 | } // extern "C" |
| 142 | |
Mathias Agopian | 65ab471 | 2010-07-14 17:59:35 -0700 | [diff] [blame] | 143 | // ---------------------------------------------------------------------------- |
| 144 | |
| 145 | // This is ugly and only safe if we never re-create the CameraService, but |
| 146 | // should be ok for now. |
| 147 | static CameraService *gCameraService; |
| 148 | |
Eino-Ville Talvala | 49c9705 | 2016-01-12 14:29:40 -0800 | [diff] [blame] | 149 | CameraService::CameraService() : |
| 150 | mEventLog(DEFAULT_EVENT_LOG_LENGTH), |
Eino-Ville Talvala | d56db1d | 2015-12-17 16:50:35 -0800 | [diff] [blame] | 151 | mNumberOfCameras(0), mNumberOfNormalCameras(0), |
| 152 | mSoundRef(0), mModule(nullptr) { |
Steve Block | df64d15 | 2012-01-04 20:05:49 +0000 | [diff] [blame] | 153 | ALOGI("CameraService started (pid=%d)", getpid()); |
Mathias Agopian | 65ab471 | 2010-07-14 17:59:35 -0700 | [diff] [blame] | 154 | gCameraService = this; |
Igor Murashkin | bfc9915 | 2013-02-27 12:55:20 -0800 | [diff] [blame] | 155 | |
Igor Murashkin | cba2c16 | 2013-03-20 15:56:31 -0700 | [diff] [blame] | 156 | this->camera_device_status_change = android::camera_device_status_change; |
Chien-Yu Chen | 3068d73 | 2015-02-09 13:29:57 -0800 | [diff] [blame] | 157 | this->torch_mode_status_change = android::torch_mode_status_change; |
| 158 | |
Ruben Brunk | cc77671 | 2015-02-17 20:18:47 -0800 | [diff] [blame] | 159 | mServiceLockWrapper = std::make_shared<WaitableMutexWrapper>(&mServiceLock); |
Mathias Agopian | 65ab471 | 2010-07-14 17:59:35 -0700 | [diff] [blame] | 160 | } |
| 161 | |
Iliyan Malchev | 8951a97 | 2011-04-14 16:55:59 -0700 | [diff] [blame] | 162 | void CameraService::onFirstRef() |
| 163 | { |
Ruben Brunk | cc77671 | 2015-02-17 20:18:47 -0800 | [diff] [blame] | 164 | ALOGI("CameraService process starting"); |
Igor Murashkin | 634a515 | 2013-02-20 17:15:11 -0800 | [diff] [blame] | 165 | |
Iliyan Malchev | 8951a97 | 2011-04-14 16:55:59 -0700 | [diff] [blame] | 166 | BnCameraService::onFirstRef(); |
| 167 | |
Ruben Brunk | 99e6971 | 2015-05-26 17:25:07 -0700 | [diff] [blame] | 168 | // Update battery life tracking if service is restarting |
| 169 | BatteryNotifier& notifier(BatteryNotifier::getInstance()); |
| 170 | notifier.noteResetCamera(); |
| 171 | notifier.noteResetFlashlight(); |
| 172 | |
Yin-Chia Yeh | e074a93 | 2015-01-30 10:29:02 -0800 | [diff] [blame] | 173 | camera_module_t *rawModule; |
Eino-Ville Talvala | 1527f07 | 2015-04-07 15:55:31 -0700 | [diff] [blame] | 174 | int err = hw_get_module(CAMERA_HARDWARE_MODULE_ID, |
| 175 | (const hw_module_t **)&rawModule); |
| 176 | if (err < 0) { |
| 177 | ALOGE("Could not load camera HAL module: %d (%s)", err, strerror(-err)); |
| 178 | logServiceError("Could not load camera HAL module", err); |
Eino-Ville Talvala | 1527f07 | 2015-04-07 15:55:31 -0700 | [diff] [blame] | 179 | return; |
Iliyan Malchev | 8951a97 | 2011-04-14 16:55:59 -0700 | [diff] [blame] | 180 | } |
Chien-Yu Chen | 88da526 | 2015-02-17 13:56:46 -0800 | [diff] [blame] | 181 | |
Eino-Ville Talvala | 1527f07 | 2015-04-07 15:55:31 -0700 | [diff] [blame] | 182 | mModule = new CameraModule(rawModule); |
Eino-Ville Talvala | 1527f07 | 2015-04-07 15:55:31 -0700 | [diff] [blame] | 183 | err = mModule->init(); |
| 184 | if (err != OK) { |
| 185 | ALOGE("Could not initialize camera HAL module: %d (%s)", err, |
| 186 | strerror(-err)); |
| 187 | logServiceError("Could not initialize camera HAL module", err); |
Chien-Yu Chen | 88da526 | 2015-02-17 13:56:46 -0800 | [diff] [blame] | 188 | |
Eino-Ville Talvala | 1527f07 | 2015-04-07 15:55:31 -0700 | [diff] [blame] | 189 | delete mModule; |
| 190 | mModule = nullptr; |
| 191 | return; |
Iliyan Malchev | 8951a97 | 2011-04-14 16:55:59 -0700 | [diff] [blame] | 192 | } |
Eino-Ville Talvala | a84bbe6 | 2015-09-08 17:59:17 -0700 | [diff] [blame] | 193 | ALOGI("Loaded \"%s\" camera module", mModule->getModuleName()); |
Eino-Ville Talvala | 1527f07 | 2015-04-07 15:55:31 -0700 | [diff] [blame] | 194 | |
| 195 | mNumberOfCameras = mModule->getNumberOfCameras(); |
Eino-Ville Talvala | bad4358 | 2015-08-14 13:12:32 -0700 | [diff] [blame] | 196 | mNumberOfNormalCameras = mNumberOfCameras; |
Eino-Ville Talvala | 1527f07 | 2015-04-07 15:55:31 -0700 | [diff] [blame] | 197 | |
Yin-Chia Yeh | d4a653a | 2015-10-14 11:05:44 -0700 | [diff] [blame] | 198 | // Setup vendor tags before we call get_camera_info the first time |
| 199 | // because HAL might need to setup static vendor keys in get_camera_info |
| 200 | VendorTagDescriptor::clearGlobalVendorTagDescriptor(); |
| 201 | if (mModule->getModuleApiVersion() >= CAMERA_MODULE_API_VERSION_2_2) { |
| 202 | setUpVendorTags(); |
| 203 | } |
| 204 | |
Eino-Ville Talvala | 1527f07 | 2015-04-07 15:55:31 -0700 | [diff] [blame] | 205 | mFlashlight = new CameraFlashlight(*mModule, *this); |
| 206 | status_t res = mFlashlight->findFlashUnits(); |
| 207 | if (res) { |
| 208 | // impossible because we haven't open any camera devices. |
| 209 | ALOGE("Failed to find flash units."); |
| 210 | } |
| 211 | |
Eino-Ville Talvala | bad4358 | 2015-08-14 13:12:32 -0700 | [diff] [blame] | 212 | int latestStrangeCameraId = INT_MAX; |
Eino-Ville Talvala | 1527f07 | 2015-04-07 15:55:31 -0700 | [diff] [blame] | 213 | for (int i = 0; i < mNumberOfCameras; i++) { |
| 214 | String8 cameraId = String8::format("%d", i); |
| 215 | |
Eino-Ville Talvala | bad4358 | 2015-08-14 13:12:32 -0700 | [diff] [blame] | 216 | // Get camera info |
| 217 | |
| 218 | struct camera_info info; |
| 219 | bool haveInfo = true; |
| 220 | status_t rc = mModule->getCameraInfo(i, &info); |
| 221 | if (rc != NO_ERROR) { |
| 222 | ALOGE("%s: Received error loading camera info for device %d, cost and" |
| 223 | " conflicting devices fields set to defaults for this device.", |
| 224 | __FUNCTION__, i); |
| 225 | haveInfo = false; |
| 226 | } |
| 227 | |
| 228 | // Check for backwards-compatibility support |
| 229 | if (haveInfo) { |
| 230 | if (checkCameraCapabilities(i, info, &latestStrangeCameraId) != OK) { |
| 231 | delete mModule; |
| 232 | mModule = nullptr; |
| 233 | return; |
| 234 | } |
| 235 | } |
| 236 | |
Eino-Ville Talvala | 1527f07 | 2015-04-07 15:55:31 -0700 | [diff] [blame] | 237 | // Defaults to use for cost and conflicting devices |
| 238 | int cost = 100; |
| 239 | char** conflicting_devices = nullptr; |
| 240 | size_t conflicting_devices_length = 0; |
| 241 | |
| 242 | // If using post-2.4 module version, query the cost + conflicting devices from the HAL |
Eino-Ville Talvala | bad4358 | 2015-08-14 13:12:32 -0700 | [diff] [blame] | 243 | if (mModule->getModuleApiVersion() >= CAMERA_MODULE_API_VERSION_2_4 && haveInfo) { |
| 244 | cost = info.resource_cost; |
| 245 | conflicting_devices = info.conflicting_devices; |
| 246 | conflicting_devices_length = info.conflicting_devices_length; |
Eino-Ville Talvala | 1527f07 | 2015-04-07 15:55:31 -0700 | [diff] [blame] | 247 | } |
| 248 | |
| 249 | std::set<String8> conflicting; |
| 250 | for (size_t i = 0; i < conflicting_devices_length; i++) { |
| 251 | conflicting.emplace(String8(conflicting_devices[i])); |
| 252 | } |
| 253 | |
| 254 | // Initialize state for each camera device |
| 255 | { |
| 256 | Mutex::Autolock lock(mCameraStatesLock); |
| 257 | mCameraStates.emplace(cameraId, std::make_shared<CameraState>(cameraId, cost, |
| 258 | conflicting)); |
| 259 | } |
| 260 | |
| 261 | if (mFlashlight->hasFlashUnit(cameraId)) { |
| 262 | mTorchStatusMap.add(cameraId, |
| 263 | ICameraServiceListener::TORCH_STATUS_AVAILABLE_OFF); |
| 264 | } |
| 265 | } |
| 266 | |
| 267 | if (mModule->getModuleApiVersion() >= CAMERA_MODULE_API_VERSION_2_1) { |
| 268 | mModule->setCallbacks(this); |
| 269 | } |
| 270 | |
Ruben Brunk | 2823ce0 | 2015-05-19 17:25:13 -0700 | [diff] [blame] | 271 | CameraService::pingCameraServiceProxy(); |
| 272 | } |
| 273 | |
Eino-Ville Talvala | 412fe56 | 2015-08-20 17:08:32 -0700 | [diff] [blame] | 274 | sp<ICameraServiceProxy> CameraService::getCameraServiceProxy() { |
Ruben Brunk | 2823ce0 | 2015-05-19 17:25:13 -0700 | [diff] [blame] | 275 | sp<IServiceManager> sm = defaultServiceManager(); |
| 276 | sp<IBinder> binder = sm->getService(String16("media.camera.proxy")); |
| 277 | if (binder == nullptr) { |
Eino-Ville Talvala | 412fe56 | 2015-08-20 17:08:32 -0700 | [diff] [blame] | 278 | return nullptr; |
Ruben Brunk | 2823ce0 | 2015-05-19 17:25:13 -0700 | [diff] [blame] | 279 | } |
| 280 | sp<ICameraServiceProxy> proxyBinder = interface_cast<ICameraServiceProxy>(binder); |
Eino-Ville Talvala | 412fe56 | 2015-08-20 17:08:32 -0700 | [diff] [blame] | 281 | return proxyBinder; |
| 282 | } |
| 283 | |
| 284 | void CameraService::pingCameraServiceProxy() { |
| 285 | sp<ICameraServiceProxy> proxyBinder = getCameraServiceProxy(); |
| 286 | if (proxyBinder == nullptr) return; |
Ruben Brunk | 2823ce0 | 2015-05-19 17:25:13 -0700 | [diff] [blame] | 287 | proxyBinder->pingForUserUpdate(); |
Iliyan Malchev | 8951a97 | 2011-04-14 16:55:59 -0700 | [diff] [blame] | 288 | } |
| 289 | |
Mathias Agopian | 65ab471 | 2010-07-14 17:59:35 -0700 | [diff] [blame] | 290 | CameraService::~CameraService() { |
Yin-Chia Yeh | e074a93 | 2015-01-30 10:29:02 -0800 | [diff] [blame] | 291 | if (mModule) { |
| 292 | delete mModule; |
Ruben Brunk | cc77671 | 2015-02-17 20:18:47 -0800 | [diff] [blame] | 293 | mModule = nullptr; |
Yin-Chia Yeh | e074a93 | 2015-01-30 10:29:02 -0800 | [diff] [blame] | 294 | } |
Ruben Brunk | d1176ef | 2014-02-21 10:51:38 -0800 | [diff] [blame] | 295 | VendorTagDescriptor::clearGlobalVendorTagDescriptor(); |
Ruben Brunk | cc77671 | 2015-02-17 20:18:47 -0800 | [diff] [blame] | 296 | gCameraService = nullptr; |
Mathias Agopian | 65ab471 | 2010-07-14 17:59:35 -0700 | [diff] [blame] | 297 | } |
| 298 | |
Ruben Brunk | cc77671 | 2015-02-17 20:18:47 -0800 | [diff] [blame] | 299 | void CameraService::onDeviceStatusChanged(camera_device_status_t cameraId, |
| 300 | camera_device_status_t newStatus) { |
| 301 | ALOGI("%s: Status changed for cameraId=%d, newStatus=%d", __FUNCTION__, |
Igor Murashkin | cba2c16 | 2013-03-20 15:56:31 -0700 | [diff] [blame] | 302 | cameraId, newStatus); |
| 303 | |
Ruben Brunk | cc77671 | 2015-02-17 20:18:47 -0800 | [diff] [blame] | 304 | String8 id = String8::format("%d", cameraId); |
| 305 | std::shared_ptr<CameraState> state = getCameraState(id); |
| 306 | |
| 307 | if (state == nullptr) { |
Igor Murashkin | cba2c16 | 2013-03-20 15:56:31 -0700 | [diff] [blame] | 308 | ALOGE("%s: Bad camera ID %d", __FUNCTION__, cameraId); |
| 309 | return; |
| 310 | } |
| 311 | |
Eino-Ville Talvala | d56db1d | 2015-12-17 16:50:35 -0800 | [diff] [blame] | 312 | int32_t oldStatus = state->getStatus(); |
Ruben Brunk | cc77671 | 2015-02-17 20:18:47 -0800 | [diff] [blame] | 313 | |
Eino-Ville Talvala | d56db1d | 2015-12-17 16:50:35 -0800 | [diff] [blame] | 314 | if (oldStatus == static_cast<int32_t>(newStatus)) { |
Ruben Brunk | cc77671 | 2015-02-17 20:18:47 -0800 | [diff] [blame] | 315 | ALOGE("%s: State transition to the same status %#x not allowed", __FUNCTION__, newStatus); |
Igor Murashkin | cba2c16 | 2013-03-20 15:56:31 -0700 | [diff] [blame] | 316 | return; |
| 317 | } |
| 318 | |
Igor Murashkin | cba2c16 | 2013-03-20 15:56:31 -0700 | [diff] [blame] | 319 | if (newStatus == CAMERA_DEVICE_STATUS_NOT_PRESENT) { |
Ruben Brunk | a8ca915 | 2015-04-07 14:23:40 -0700 | [diff] [blame] | 320 | logDeviceRemoved(id, String8::format("Device status changed from %d to %d", oldStatus, |
| 321 | newStatus)); |
Ruben Brunk | cc77671 | 2015-02-17 20:18:47 -0800 | [diff] [blame] | 322 | sp<BasicClient> clientToDisconnect; |
Igor Murashkin | cba2c16 | 2013-03-20 15:56:31 -0700 | [diff] [blame] | 323 | { |
Ruben Brunk | cc77671 | 2015-02-17 20:18:47 -0800 | [diff] [blame] | 324 | // Don't do this in updateStatus to avoid deadlock over mServiceLock |
| 325 | Mutex::Autolock lock(mServiceLock); |
Igor Murashkin | cba2c16 | 2013-03-20 15:56:31 -0700 | [diff] [blame] | 326 | |
Ruben Brunk | cc77671 | 2015-02-17 20:18:47 -0800 | [diff] [blame] | 327 | // Set the device status to NOT_PRESENT, clients will no longer be able to connect |
| 328 | // to this device until the status changes |
| 329 | updateStatus(ICameraServiceListener::STATUS_NOT_PRESENT, id); |
Ruben Brunk | b2119af | 2014-05-09 19:57:56 -0700 | [diff] [blame] | 330 | |
Ruben Brunk | cc77671 | 2015-02-17 20:18:47 -0800 | [diff] [blame] | 331 | // Remove cached shim parameters |
| 332 | state->setShimParams(CameraParameters()); |
Igor Murashkin | cba2c16 | 2013-03-20 15:56:31 -0700 | [diff] [blame] | 333 | |
Ruben Brunk | cc77671 | 2015-02-17 20:18:47 -0800 | [diff] [blame] | 334 | // Remove the client from the list of active clients |
| 335 | clientToDisconnect = removeClientLocked(id); |
| 336 | |
| 337 | // Notify the client of disconnection |
Eino-Ville Talvala | d56db1d | 2015-12-17 16:50:35 -0800 | [diff] [blame] | 338 | clientToDisconnect->notifyError( |
| 339 | hardware::camera2::ICameraDeviceCallbacks::ERROR_CAMERA_DISCONNECTED, |
Ruben Brunk | cc77671 | 2015-02-17 20:18:47 -0800 | [diff] [blame] | 340 | CaptureResultExtras{}); |
Igor Murashkin | cba2c16 | 2013-03-20 15:56:31 -0700 | [diff] [blame] | 341 | } |
| 342 | |
Ruben Brunk | cc77671 | 2015-02-17 20:18:47 -0800 | [diff] [blame] | 343 | ALOGI("%s: Client for camera ID %s evicted due to device status change from HAL", |
| 344 | __FUNCTION__, id.string()); |
Igor Murashkin | cba2c16 | 2013-03-20 15:56:31 -0700 | [diff] [blame] | 345 | |
Ruben Brunk | cc77671 | 2015-02-17 20:18:47 -0800 | [diff] [blame] | 346 | // Disconnect client |
| 347 | if (clientToDisconnect.get() != nullptr) { |
| 348 | // Ensure not in binder RPC so client disconnect PID checks work correctly |
| 349 | LOG_ALWAYS_FATAL_IF(getCallingPid() != getpid(), |
| 350 | "onDeviceStatusChanged must be called from the camera service process!"); |
| 351 | clientToDisconnect->disconnect(); |
Igor Murashkin | cba2c16 | 2013-03-20 15:56:31 -0700 | [diff] [blame] | 352 | } |
| 353 | |
Ruben Brunk | cc77671 | 2015-02-17 20:18:47 -0800 | [diff] [blame] | 354 | } else { |
Eino-Ville Talvala | d56db1d | 2015-12-17 16:50:35 -0800 | [diff] [blame] | 355 | if (oldStatus == ICameraServiceListener::STATUS_NOT_PRESENT) { |
Ruben Brunk | a8ca915 | 2015-04-07 14:23:40 -0700 | [diff] [blame] | 356 | logDeviceAdded(id, String8::format("Device status changed from %d to %d", oldStatus, |
| 357 | newStatus)); |
| 358 | } |
Eino-Ville Talvala | d56db1d | 2015-12-17 16:50:35 -0800 | [diff] [blame] | 359 | updateStatus(static_cast<int32_t>(newStatus), id); |
Igor Murashkin | cba2c16 | 2013-03-20 15:56:31 -0700 | [diff] [blame] | 360 | } |
| 361 | |
Igor Murashkin | cba2c16 | 2013-03-20 15:56:31 -0700 | [diff] [blame] | 362 | } |
| 363 | |
Chien-Yu Chen | 88da526 | 2015-02-17 13:56:46 -0800 | [diff] [blame] | 364 | void CameraService::onTorchStatusChanged(const String8& cameraId, |
Eino-Ville Talvala | d56db1d | 2015-12-17 16:50:35 -0800 | [diff] [blame] | 365 | int32_t newStatus) { |
Chien-Yu Chen | 3068d73 | 2015-02-09 13:29:57 -0800 | [diff] [blame] | 366 | Mutex::Autolock al(mTorchStatusMutex); |
| 367 | onTorchStatusChangedLocked(cameraId, newStatus); |
| 368 | } |
| 369 | |
Chien-Yu Chen | 88da526 | 2015-02-17 13:56:46 -0800 | [diff] [blame] | 370 | void CameraService::onTorchStatusChangedLocked(const String8& cameraId, |
Eino-Ville Talvala | d56db1d | 2015-12-17 16:50:35 -0800 | [diff] [blame] | 371 | int32_t newStatus) { |
Chien-Yu Chen | 3068d73 | 2015-02-09 13:29:57 -0800 | [diff] [blame] | 372 | ALOGI("%s: Torch status changed for cameraId=%s, newStatus=%d", |
| 373 | __FUNCTION__, cameraId.string(), newStatus); |
| 374 | |
Eino-Ville Talvala | d56db1d | 2015-12-17 16:50:35 -0800 | [diff] [blame] | 375 | int32_t status; |
Chien-Yu Chen | 88da526 | 2015-02-17 13:56:46 -0800 | [diff] [blame] | 376 | status_t res = getTorchStatusLocked(cameraId, &status); |
| 377 | if (res) { |
Chien-Yu Chen | f6463fc | 2015-04-07 15:11:31 -0700 | [diff] [blame] | 378 | ALOGE("%s: cannot get torch status of camera %s: %s (%d)", |
| 379 | __FUNCTION__, cameraId.string(), strerror(-res), res); |
Chien-Yu Chen | 88da526 | 2015-02-17 13:56:46 -0800 | [diff] [blame] | 380 | return; |
| 381 | } |
| 382 | if (status == newStatus) { |
Chien-Yu Chen | 3068d73 | 2015-02-09 13:29:57 -0800 | [diff] [blame] | 383 | return; |
| 384 | } |
| 385 | |
Chien-Yu Chen | 88da526 | 2015-02-17 13:56:46 -0800 | [diff] [blame] | 386 | res = setTorchStatusLocked(cameraId, newStatus); |
Chien-Yu Chen | 3068d73 | 2015-02-09 13:29:57 -0800 | [diff] [blame] | 387 | if (res) { |
Eino-Ville Talvala | d309fb9 | 2015-11-25 12:12:45 -0800 | [diff] [blame] | 388 | ALOGE("%s: Failed to set the torch status to %d: %s (%d)", __FUNCTION__, |
| 389 | (uint32_t)newStatus, strerror(-res), res); |
Chien-Yu Chen | 3068d73 | 2015-02-09 13:29:57 -0800 | [diff] [blame] | 390 | return; |
| 391 | } |
| 392 | |
Ruben Brunk | cc77671 | 2015-02-17 20:18:47 -0800 | [diff] [blame] | 393 | { |
Ruben Brunk | 99e6971 | 2015-05-26 17:25:07 -0700 | [diff] [blame] | 394 | // Update battery life logging for flashlight |
Chien-Yu Chen | fe751be | 2015-09-01 14:16:44 -0700 | [diff] [blame] | 395 | Mutex::Autolock al(mTorchUidMapMutex); |
Ruben Brunk | 99e6971 | 2015-05-26 17:25:07 -0700 | [diff] [blame] | 396 | auto iter = mTorchUidMap.find(cameraId); |
| 397 | if (iter != mTorchUidMap.end()) { |
| 398 | int oldUid = iter->second.second; |
| 399 | int newUid = iter->second.first; |
| 400 | BatteryNotifier& notifier(BatteryNotifier::getInstance()); |
| 401 | if (oldUid != newUid) { |
| 402 | // If the UID has changed, log the status and update current UID in mTorchUidMap |
| 403 | if (status == ICameraServiceListener::TORCH_STATUS_AVAILABLE_ON) { |
| 404 | notifier.noteFlashlightOff(cameraId, oldUid); |
| 405 | } |
| 406 | if (newStatus == ICameraServiceListener::TORCH_STATUS_AVAILABLE_ON) { |
| 407 | notifier.noteFlashlightOn(cameraId, newUid); |
| 408 | } |
| 409 | iter->second.second = newUid; |
| 410 | } else { |
| 411 | // If the UID has not changed, log the status |
| 412 | if (newStatus == ICameraServiceListener::TORCH_STATUS_AVAILABLE_ON) { |
| 413 | notifier.noteFlashlightOn(cameraId, oldUid); |
| 414 | } else { |
| 415 | notifier.noteFlashlightOff(cameraId, oldUid); |
| 416 | } |
| 417 | } |
| 418 | } |
| 419 | } |
| 420 | |
| 421 | { |
Ruben Brunk | cc77671 | 2015-02-17 20:18:47 -0800 | [diff] [blame] | 422 | Mutex::Autolock lock(mStatusListenerLock); |
| 423 | for (auto& i : mListenerList) { |
| 424 | i->onTorchStatusChanged(newStatus, String16{cameraId}); |
| 425 | } |
Chien-Yu Chen | 3068d73 | 2015-02-09 13:29:57 -0800 | [diff] [blame] | 426 | } |
| 427 | } |
| 428 | |
Eino-Ville Talvala | d56db1d | 2015-12-17 16:50:35 -0800 | [diff] [blame] | 429 | Status CameraService::getNumberOfCameras(int32_t type, int32_t* numCameras) { |
Eino-Ville Talvala | a84bbe6 | 2015-09-08 17:59:17 -0700 | [diff] [blame] | 430 | ATRACE_CALL(); |
Eino-Ville Talvala | bad4358 | 2015-08-14 13:12:32 -0700 | [diff] [blame] | 431 | switch (type) { |
| 432 | case CAMERA_TYPE_BACKWARD_COMPATIBLE: |
Eino-Ville Talvala | d56db1d | 2015-12-17 16:50:35 -0800 | [diff] [blame] | 433 | *numCameras = mNumberOfNormalCameras; |
| 434 | break; |
Eino-Ville Talvala | bad4358 | 2015-08-14 13:12:32 -0700 | [diff] [blame] | 435 | case CAMERA_TYPE_ALL: |
Eino-Ville Talvala | d56db1d | 2015-12-17 16:50:35 -0800 | [diff] [blame] | 436 | *numCameras = mNumberOfCameras; |
| 437 | break; |
Eino-Ville Talvala | bad4358 | 2015-08-14 13:12:32 -0700 | [diff] [blame] | 438 | default: |
Eino-Ville Talvala | d56db1d | 2015-12-17 16:50:35 -0800 | [diff] [blame] | 439 | ALOGW("%s: Unknown camera type %d", |
Eino-Ville Talvala | bad4358 | 2015-08-14 13:12:32 -0700 | [diff] [blame] | 440 | __FUNCTION__, type); |
Eino-Ville Talvala | d56db1d | 2015-12-17 16:50:35 -0800 | [diff] [blame] | 441 | return STATUS_ERROR_FMT(ERROR_ILLEGAL_ARGUMENT, |
| 442 | "Unknown camera type %d", type); |
Eino-Ville Talvala | bad4358 | 2015-08-14 13:12:32 -0700 | [diff] [blame] | 443 | } |
Eino-Ville Talvala | d56db1d | 2015-12-17 16:50:35 -0800 | [diff] [blame] | 444 | return Status::ok(); |
Mathias Agopian | 65ab471 | 2010-07-14 17:59:35 -0700 | [diff] [blame] | 445 | } |
| 446 | |
Eino-Ville Talvala | d56db1d | 2015-12-17 16:50:35 -0800 | [diff] [blame] | 447 | Status CameraService::getCameraInfo(int cameraId, |
| 448 | CameraInfo* cameraInfo) { |
Eino-Ville Talvala | a84bbe6 | 2015-09-08 17:59:17 -0700 | [diff] [blame] | 449 | ATRACE_CALL(); |
Iliyan Malchev | 8951a97 | 2011-04-14 16:55:59 -0700 | [diff] [blame] | 450 | if (!mModule) { |
Eino-Ville Talvala | d56db1d | 2015-12-17 16:50:35 -0800 | [diff] [blame] | 451 | return STATUS_ERROR(ERROR_DISCONNECTED, |
| 452 | "Camera subsystem is not available"); |
Iliyan Malchev | 8951a97 | 2011-04-14 16:55:59 -0700 | [diff] [blame] | 453 | } |
| 454 | |
Mathias Agopian | 65ab471 | 2010-07-14 17:59:35 -0700 | [diff] [blame] | 455 | if (cameraId < 0 || cameraId >= mNumberOfCameras) { |
Eino-Ville Talvala | d56db1d | 2015-12-17 16:50:35 -0800 | [diff] [blame] | 456 | return STATUS_ERROR(ERROR_ILLEGAL_ARGUMENT, |
| 457 | "CameraId is not valid"); |
Mathias Agopian | 65ab471 | 2010-07-14 17:59:35 -0700 | [diff] [blame] | 458 | } |
| 459 | |
Iliyan Malchev | 8951a97 | 2011-04-14 16:55:59 -0700 | [diff] [blame] | 460 | struct camera_info info; |
Eino-Ville Talvala | d56db1d | 2015-12-17 16:50:35 -0800 | [diff] [blame] | 461 | Status rc = filterGetInfoErrorCode( |
Yin-Chia Yeh | e074a93 | 2015-01-30 10:29:02 -0800 | [diff] [blame] | 462 | mModule->getCameraInfo(cameraId, &info)); |
Eino-Ville Talvala | d56db1d | 2015-12-17 16:50:35 -0800 | [diff] [blame] | 463 | |
| 464 | if (rc.isOk()) { |
| 465 | cameraInfo->facing = info.facing; |
| 466 | cameraInfo->orientation = info.orientation; |
Yin-Chia Yeh | 9b5a6e9 | 2016-04-22 13:24:05 -0700 | [diff] [blame] | 467 | // CameraInfo is for android.hardware.Camera which does not |
| 468 | // support external camera facing. The closest approximation would be |
| 469 | // front camera. |
| 470 | if (cameraInfo->orientation == CAMERA_FACING_EXTERNAL) { |
| 471 | cameraInfo->orientation = CAMERA_FACING_FRONT; |
| 472 | } |
Eino-Ville Talvala | d56db1d | 2015-12-17 16:50:35 -0800 | [diff] [blame] | 473 | } |
Iliyan Malchev | 8951a97 | 2011-04-14 16:55:59 -0700 | [diff] [blame] | 474 | return rc; |
Mathias Agopian | 65ab471 | 2010-07-14 17:59:35 -0700 | [diff] [blame] | 475 | } |
| 476 | |
Ruben Brunk | cc77671 | 2015-02-17 20:18:47 -0800 | [diff] [blame] | 477 | int CameraService::cameraIdToInt(const String8& cameraId) { |
| 478 | errno = 0; |
| 479 | size_t pos = 0; |
| 480 | int ret = stoi(std::string{cameraId.string()}, &pos); |
| 481 | if (errno != 0 || pos != cameraId.size()) { |
| 482 | return -1; |
| 483 | } |
| 484 | return ret; |
| 485 | } |
Ruben Brunk | b2119af | 2014-05-09 19:57:56 -0700 | [diff] [blame] | 486 | |
Eino-Ville Talvala | d56db1d | 2015-12-17 16:50:35 -0800 | [diff] [blame] | 487 | Status CameraService::generateShimMetadata(int cameraId, /*out*/CameraMetadata* cameraInfo) { |
Eino-Ville Talvala | a84bbe6 | 2015-09-08 17:59:17 -0700 | [diff] [blame] | 488 | ATRACE_CALL(); |
Eino-Ville Talvala | d56db1d | 2015-12-17 16:50:35 -0800 | [diff] [blame] | 489 | |
| 490 | Status ret = Status::ok(); |
| 491 | |
Ruben Brunk | b2119af | 2014-05-09 19:57:56 -0700 | [diff] [blame] | 492 | struct CameraInfo info; |
Eino-Ville Talvala | d56db1d | 2015-12-17 16:50:35 -0800 | [diff] [blame] | 493 | if (!(ret = getCameraInfo(cameraId, &info)).isOk()) { |
Ruben Brunk | b2119af | 2014-05-09 19:57:56 -0700 | [diff] [blame] | 494 | return ret; |
| 495 | } |
| 496 | |
| 497 | CameraMetadata shimInfo; |
| 498 | int32_t orientation = static_cast<int32_t>(info.orientation); |
Eino-Ville Talvala | d56db1d | 2015-12-17 16:50:35 -0800 | [diff] [blame] | 499 | status_t rc; |
| 500 | if ((rc = shimInfo.update(ANDROID_SENSOR_ORIENTATION, &orientation, 1)) != OK) { |
| 501 | return STATUS_ERROR_FMT(ERROR_INVALID_OPERATION, |
| 502 | "Error updating metadata: %d (%s)", rc, strerror(-rc)); |
Ruben Brunk | b2119af | 2014-05-09 19:57:56 -0700 | [diff] [blame] | 503 | } |
| 504 | |
| 505 | uint8_t facing = (info.facing == CAMERA_FACING_FRONT) ? |
| 506 | ANDROID_LENS_FACING_FRONT : ANDROID_LENS_FACING_BACK; |
Eino-Ville Talvala | d56db1d | 2015-12-17 16:50:35 -0800 | [diff] [blame] | 507 | if ((rc = shimInfo.update(ANDROID_LENS_FACING, &facing, 1)) != OK) { |
| 508 | return STATUS_ERROR_FMT(ERROR_INVALID_OPERATION, |
| 509 | "Error updating metadata: %d (%s)", rc, strerror(-rc)); |
Ruben Brunk | b2119af | 2014-05-09 19:57:56 -0700 | [diff] [blame] | 510 | } |
| 511 | |
Igor Murashkin | 65d14b9 | 2014-06-17 12:03:20 -0700 | [diff] [blame] | 512 | CameraParameters shimParams; |
Eino-Ville Talvala | d56db1d | 2015-12-17 16:50:35 -0800 | [diff] [blame] | 513 | if (!(ret = getLegacyParametersLazy(cameraId, /*out*/&shimParams)).isOk()) { |
Igor Murashkin | 65d14b9 | 2014-06-17 12:03:20 -0700 | [diff] [blame] | 514 | // Error logged by callee |
| 515 | return ret; |
Ruben Brunk | b2119af | 2014-05-09 19:57:56 -0700 | [diff] [blame] | 516 | } |
| 517 | |
| 518 | Vector<Size> sizes; |
Ruben Brunk | 152dbcf | 2014-06-12 19:11:45 -0700 | [diff] [blame] | 519 | Vector<Size> jpegSizes; |
Ruben Brunk | b2119af | 2014-05-09 19:57:56 -0700 | [diff] [blame] | 520 | Vector<int32_t> formats; |
Igor Murashkin | 65d14b9 | 2014-06-17 12:03:20 -0700 | [diff] [blame] | 521 | { |
| 522 | shimParams.getSupportedPreviewSizes(/*out*/sizes); |
| 523 | shimParams.getSupportedPreviewFormats(/*out*/formats); |
| 524 | shimParams.getSupportedPictureSizes(/*out*/jpegSizes); |
Ruben Brunk | b2119af | 2014-05-09 19:57:56 -0700 | [diff] [blame] | 525 | } |
| 526 | |
| 527 | // Always include IMPLEMENTATION_DEFINED |
| 528 | formats.add(HAL_PIXEL_FORMAT_IMPLEMENTATION_DEFINED); |
| 529 | |
| 530 | const size_t INTS_PER_CONFIG = 4; |
| 531 | |
| 532 | // Build available stream configurations metadata |
Ruben Brunk | 152dbcf | 2014-06-12 19:11:45 -0700 | [diff] [blame] | 533 | size_t streamConfigSize = (sizes.size() * formats.size() + jpegSizes.size()) * INTS_PER_CONFIG; |
| 534 | |
| 535 | Vector<int32_t> streamConfigs; |
| 536 | streamConfigs.setCapacity(streamConfigSize); |
| 537 | |
Ruben Brunk | b2119af | 2014-05-09 19:57:56 -0700 | [diff] [blame] | 538 | for (size_t i = 0; i < formats.size(); ++i) { |
| 539 | for (size_t j = 0; j < sizes.size(); ++j) { |
Ruben Brunk | 152dbcf | 2014-06-12 19:11:45 -0700 | [diff] [blame] | 540 | streamConfigs.add(formats[i]); |
| 541 | streamConfigs.add(sizes[j].width); |
| 542 | streamConfigs.add(sizes[j].height); |
| 543 | streamConfigs.add(ANDROID_SCALER_AVAILABLE_STREAM_CONFIGURATIONS_OUTPUT); |
Ruben Brunk | b2119af | 2014-05-09 19:57:56 -0700 | [diff] [blame] | 544 | } |
| 545 | } |
| 546 | |
Ruben Brunk | 152dbcf | 2014-06-12 19:11:45 -0700 | [diff] [blame] | 547 | for (size_t i = 0; i < jpegSizes.size(); ++i) { |
| 548 | streamConfigs.add(HAL_PIXEL_FORMAT_BLOB); |
| 549 | streamConfigs.add(jpegSizes[i].width); |
| 550 | streamConfigs.add(jpegSizes[i].height); |
| 551 | streamConfigs.add(ANDROID_SCALER_AVAILABLE_STREAM_CONFIGURATIONS_OUTPUT); |
| 552 | } |
| 553 | |
Eino-Ville Talvala | d56db1d | 2015-12-17 16:50:35 -0800 | [diff] [blame] | 554 | if ((rc = shimInfo.update(ANDROID_SCALER_AVAILABLE_STREAM_CONFIGURATIONS, |
Ruben Brunk | 152dbcf | 2014-06-12 19:11:45 -0700 | [diff] [blame] | 555 | streamConfigs.array(), streamConfigSize)) != OK) { |
Eino-Ville Talvala | d56db1d | 2015-12-17 16:50:35 -0800 | [diff] [blame] | 556 | return STATUS_ERROR_FMT(ERROR_INVALID_OPERATION, |
| 557 | "Error updating metadata: %d (%s)", rc, strerror(-rc)); |
Ruben Brunk | b2119af | 2014-05-09 19:57:56 -0700 | [diff] [blame] | 558 | } |
| 559 | |
| 560 | int64_t fakeMinFrames[0]; |
| 561 | // TODO: Fixme, don't fake min frame durations. |
Eino-Ville Talvala | d56db1d | 2015-12-17 16:50:35 -0800 | [diff] [blame] | 562 | if ((rc = shimInfo.update(ANDROID_SCALER_AVAILABLE_MIN_FRAME_DURATIONS, |
Ruben Brunk | b2119af | 2014-05-09 19:57:56 -0700 | [diff] [blame] | 563 | fakeMinFrames, 0)) != OK) { |
Eino-Ville Talvala | d56db1d | 2015-12-17 16:50:35 -0800 | [diff] [blame] | 564 | return STATUS_ERROR_FMT(ERROR_INVALID_OPERATION, |
| 565 | "Error updating metadata: %d (%s)", rc, strerror(-rc)); |
Ruben Brunk | b2119af | 2014-05-09 19:57:56 -0700 | [diff] [blame] | 566 | } |
| 567 | |
| 568 | int64_t fakeStalls[0]; |
| 569 | // TODO: Fixme, don't fake stall durations. |
Eino-Ville Talvala | d56db1d | 2015-12-17 16:50:35 -0800 | [diff] [blame] | 570 | if ((rc = shimInfo.update(ANDROID_SCALER_AVAILABLE_STALL_DURATIONS, |
Ruben Brunk | b2119af | 2014-05-09 19:57:56 -0700 | [diff] [blame] | 571 | fakeStalls, 0)) != OK) { |
Eino-Ville Talvala | d56db1d | 2015-12-17 16:50:35 -0800 | [diff] [blame] | 572 | return STATUS_ERROR_FMT(ERROR_INVALID_OPERATION, |
| 573 | "Error updating metadata: %d (%s)", rc, strerror(-rc)); |
Ruben Brunk | b2119af | 2014-05-09 19:57:56 -0700 | [diff] [blame] | 574 | } |
| 575 | |
| 576 | *cameraInfo = shimInfo; |
Eino-Ville Talvala | d56db1d | 2015-12-17 16:50:35 -0800 | [diff] [blame] | 577 | return ret; |
Ruben Brunk | b2119af | 2014-05-09 19:57:56 -0700 | [diff] [blame] | 578 | } |
| 579 | |
Eino-Ville Talvala | d56db1d | 2015-12-17 16:50:35 -0800 | [diff] [blame] | 580 | Status CameraService::getCameraCharacteristics(int cameraId, |
Zhijun He | 2b59be8 | 2013-09-25 10:14:30 -0700 | [diff] [blame] | 581 | CameraMetadata* cameraInfo) { |
Eino-Ville Talvala | a84bbe6 | 2015-09-08 17:59:17 -0700 | [diff] [blame] | 582 | ATRACE_CALL(); |
Zhijun He | 2b59be8 | 2013-09-25 10:14:30 -0700 | [diff] [blame] | 583 | if (!cameraInfo) { |
| 584 | ALOGE("%s: cameraInfo is NULL", __FUNCTION__); |
Eino-Ville Talvala | d56db1d | 2015-12-17 16:50:35 -0800 | [diff] [blame] | 585 | return STATUS_ERROR(ERROR_ILLEGAL_ARGUMENT, "cameraInfo is NULL"); |
Zhijun He | 2b59be8 | 2013-09-25 10:14:30 -0700 | [diff] [blame] | 586 | } |
| 587 | |
| 588 | if (!mModule) { |
| 589 | ALOGE("%s: camera hardware module doesn't exist", __FUNCTION__); |
Eino-Ville Talvala | d56db1d | 2015-12-17 16:50:35 -0800 | [diff] [blame] | 590 | return STATUS_ERROR(ERROR_DISCONNECTED, |
| 591 | "Camera subsystem is not available");; |
Zhijun He | 2b59be8 | 2013-09-25 10:14:30 -0700 | [diff] [blame] | 592 | } |
| 593 | |
Zhijun He | 2b59be8 | 2013-09-25 10:14:30 -0700 | [diff] [blame] | 594 | if (cameraId < 0 || cameraId >= mNumberOfCameras) { |
| 595 | ALOGE("%s: Invalid camera id: %d", __FUNCTION__, cameraId); |
Eino-Ville Talvala | d56db1d | 2015-12-17 16:50:35 -0800 | [diff] [blame] | 596 | return STATUS_ERROR_FMT(ERROR_ILLEGAL_ARGUMENT, |
| 597 | "Invalid camera id: %d", cameraId); |
Zhijun He | 2b59be8 | 2013-09-25 10:14:30 -0700 | [diff] [blame] | 598 | } |
| 599 | |
| 600 | int facing; |
Eino-Ville Talvala | d56db1d | 2015-12-17 16:50:35 -0800 | [diff] [blame] | 601 | Status ret; |
Chien-Yu Chen | 676b21b | 2015-02-24 10:28:19 -0800 | [diff] [blame] | 602 | if (mModule->getModuleApiVersion() < CAMERA_MODULE_API_VERSION_2_0 || |
Eino-Ville Talvala | d309fb9 | 2015-11-25 12:12:45 -0800 | [diff] [blame] | 603 | getDeviceVersion(cameraId, &facing) < CAMERA_DEVICE_API_VERSION_3_0) { |
Ruben Brunk | b2119af | 2014-05-09 19:57:56 -0700 | [diff] [blame] | 604 | /** |
| 605 | * Backwards compatibility mode for old HALs: |
| 606 | * - Convert CameraInfo into static CameraMetadata properties. |
| 607 | * - Retrieve cached CameraParameters for this camera. If none exist, |
| 608 | * attempt to open CameraClient and retrieve the CameraParameters. |
| 609 | * - Convert cached CameraParameters into static CameraMetadata |
| 610 | * properties. |
| 611 | */ |
| 612 | ALOGI("%s: Switching to HAL1 shim implementation...", __FUNCTION__); |
Zhijun He | 2b59be8 | 2013-09-25 10:14:30 -0700 | [diff] [blame] | 613 | |
Eino-Ville Talvala | d56db1d | 2015-12-17 16:50:35 -0800 | [diff] [blame] | 614 | ret = generateShimMetadata(cameraId, cameraInfo); |
Ruben Brunk | b2119af | 2014-05-09 19:57:56 -0700 | [diff] [blame] | 615 | } else { |
| 616 | /** |
| 617 | * Normal HAL 2.1+ codepath. |
| 618 | */ |
| 619 | struct camera_info info; |
Yin-Chia Yeh | e074a93 | 2015-01-30 10:29:02 -0800 | [diff] [blame] | 620 | ret = filterGetInfoErrorCode(mModule->getCameraInfo(cameraId, &info)); |
Eino-Ville Talvala | d56db1d | 2015-12-17 16:50:35 -0800 | [diff] [blame] | 621 | if (ret.isOk()) { |
| 622 | *cameraInfo = info.static_camera_characteristics; |
| 623 | } |
Ruben Brunk | b2119af | 2014-05-09 19:57:56 -0700 | [diff] [blame] | 624 | } |
Zhijun He | 2b59be8 | 2013-09-25 10:14:30 -0700 | [diff] [blame] | 625 | |
| 626 | return ret; |
| 627 | } |
| 628 | |
Ruben Brunk | cc77671 | 2015-02-17 20:18:47 -0800 | [diff] [blame] | 629 | int CameraService::getCallingPid() { |
| 630 | return IPCThreadState::self()->getCallingPid(); |
| 631 | } |
| 632 | |
| 633 | int CameraService::getCallingUid() { |
| 634 | return IPCThreadState::self()->getCallingUid(); |
| 635 | } |
| 636 | |
| 637 | String8 CameraService::getFormattedCurrentTime() { |
| 638 | time_t now = time(nullptr); |
| 639 | char formattedTime[64]; |
| 640 | strftime(formattedTime, sizeof(formattedTime), "%m-%d %H:%M:%S", localtime(&now)); |
| 641 | return String8(formattedTime); |
| 642 | } |
| 643 | |
| 644 | int CameraService::getCameraPriorityFromProcState(int procState) { |
| 645 | // Find the priority for the camera usage based on the process state. Higher priority clients |
| 646 | // win for evictions. |
Ruben Brunk | be0b6b4 | 2015-05-12 16:10:52 -0700 | [diff] [blame] | 647 | if (procState < 0) { |
| 648 | ALOGE("%s: Received invalid process state %d from ActivityManagerService!", __FUNCTION__, |
| 649 | procState); |
| 650 | return -1; |
Ruben Brunk | cc77671 | 2015-02-17 20:18:47 -0800 | [diff] [blame] | 651 | } |
Eino-Ville Talvala | 52aad85 | 2015-09-03 12:24:24 -0700 | [diff] [blame] | 652 | // Treat sleeping TOP processes the same as regular TOP processes, for |
| 653 | // access priority. This is important for lock-screen camera launch scenarios |
| 654 | if (procState == PROCESS_STATE_TOP_SLEEPING) { |
| 655 | procState = PROCESS_STATE_TOP; |
| 656 | } |
Ruben Brunk | be0b6b4 | 2015-05-12 16:10:52 -0700 | [diff] [blame] | 657 | return INT_MAX - procState; |
Ruben Brunk | cc77671 | 2015-02-17 20:18:47 -0800 | [diff] [blame] | 658 | } |
| 659 | |
Eino-Ville Talvala | d56db1d | 2015-12-17 16:50:35 -0800 | [diff] [blame] | 660 | Status CameraService::getCameraVendorTagDescriptor( |
| 661 | /*out*/ |
| 662 | hardware::camera2::params::VendorTagDescriptor* desc) { |
Eino-Ville Talvala | a84bbe6 | 2015-09-08 17:59:17 -0700 | [diff] [blame] | 663 | ATRACE_CALL(); |
Ruben Brunk | d1176ef | 2014-02-21 10:51:38 -0800 | [diff] [blame] | 664 | if (!mModule) { |
| 665 | ALOGE("%s: camera hardware module doesn't exist", __FUNCTION__); |
Eino-Ville Talvala | d56db1d | 2015-12-17 16:50:35 -0800 | [diff] [blame] | 666 | return STATUS_ERROR(ERROR_DISCONNECTED, "Camera subsystem not available"); |
Ruben Brunk | d1176ef | 2014-02-21 10:51:38 -0800 | [diff] [blame] | 667 | } |
Eino-Ville Talvala | 1e74e24 | 2016-03-03 11:24:28 -0800 | [diff] [blame] | 668 | sp<VendorTagDescriptor> globalDescriptor = VendorTagDescriptor::getGlobalVendorTagDescriptor(); |
| 669 | if (globalDescriptor != nullptr) { |
| 670 | *desc = *(globalDescriptor.get()); |
| 671 | } |
Eino-Ville Talvala | d56db1d | 2015-12-17 16:50:35 -0800 | [diff] [blame] | 672 | return Status::ok(); |
Ruben Brunk | d1176ef | 2014-02-21 10:51:38 -0800 | [diff] [blame] | 673 | } |
| 674 | |
Igor Murashkin | 634a515 | 2013-02-20 17:15:11 -0800 | [diff] [blame] | 675 | int CameraService::getDeviceVersion(int cameraId, int* facing) { |
Eino-Ville Talvala | a84bbe6 | 2015-09-08 17:59:17 -0700 | [diff] [blame] | 676 | ATRACE_CALL(); |
Igor Murashkin | 634a515 | 2013-02-20 17:15:11 -0800 | [diff] [blame] | 677 | struct camera_info info; |
Yin-Chia Yeh | e074a93 | 2015-01-30 10:29:02 -0800 | [diff] [blame] | 678 | if (mModule->getCameraInfo(cameraId, &info) != OK) { |
Igor Murashkin | 634a515 | 2013-02-20 17:15:11 -0800 | [diff] [blame] | 679 | return -1; |
| 680 | } |
| 681 | |
| 682 | int deviceVersion; |
Chien-Yu Chen | 676b21b | 2015-02-24 10:28:19 -0800 | [diff] [blame] | 683 | if (mModule->getModuleApiVersion() >= CAMERA_MODULE_API_VERSION_2_0) { |
Igor Murashkin | 634a515 | 2013-02-20 17:15:11 -0800 | [diff] [blame] | 684 | deviceVersion = info.device_version; |
| 685 | } else { |
| 686 | deviceVersion = CAMERA_DEVICE_API_VERSION_1_0; |
| 687 | } |
| 688 | |
| 689 | if (facing) { |
| 690 | *facing = info.facing; |
| 691 | } |
| 692 | |
| 693 | return deviceVersion; |
| 694 | } |
| 695 | |
Eino-Ville Talvala | d56db1d | 2015-12-17 16:50:35 -0800 | [diff] [blame] | 696 | Status CameraService::filterGetInfoErrorCode(status_t err) { |
Eino-Ville Talvala | f67e23e | 2014-07-23 17:17:59 -0700 | [diff] [blame] | 697 | switch(err) { |
| 698 | case NO_ERROR: |
Eino-Ville Talvala | d56db1d | 2015-12-17 16:50:35 -0800 | [diff] [blame] | 699 | return Status::ok(); |
Eino-Ville Talvala | f67e23e | 2014-07-23 17:17:59 -0700 | [diff] [blame] | 700 | case -EINVAL: |
Eino-Ville Talvala | d56db1d | 2015-12-17 16:50:35 -0800 | [diff] [blame] | 701 | return STATUS_ERROR(ERROR_ILLEGAL_ARGUMENT, |
| 702 | "CameraId is not valid for HAL module"); |
| 703 | case -ENODEV: |
| 704 | return STATUS_ERROR(ERROR_DISCONNECTED, |
| 705 | "Camera device not available"); |
Eino-Ville Talvala | f67e23e | 2014-07-23 17:17:59 -0700 | [diff] [blame] | 706 | default: |
Eino-Ville Talvala | d56db1d | 2015-12-17 16:50:35 -0800 | [diff] [blame] | 707 | return STATUS_ERROR_FMT(ERROR_INVALID_OPERATION, |
| 708 | "Camera HAL encountered error %d: %s", |
| 709 | err, strerror(-err)); |
Eino-Ville Talvala | f67e23e | 2014-07-23 17:17:59 -0700 | [diff] [blame] | 710 | } |
Igor Murashkin | bfc9915 | 2013-02-27 12:55:20 -0800 | [diff] [blame] | 711 | } |
| 712 | |
Ruben Brunk | d1176ef | 2014-02-21 10:51:38 -0800 | [diff] [blame] | 713 | bool CameraService::setUpVendorTags() { |
Eino-Ville Talvala | a84bbe6 | 2015-09-08 17:59:17 -0700 | [diff] [blame] | 714 | ATRACE_CALL(); |
Ruben Brunk | d1176ef | 2014-02-21 10:51:38 -0800 | [diff] [blame] | 715 | vendor_tag_ops_t vOps = vendor_tag_ops_t(); |
| 716 | |
| 717 | // Check if vendor operations have been implemented |
Yin-Chia Yeh | e074a93 | 2015-01-30 10:29:02 -0800 | [diff] [blame] | 718 | if (!mModule->isVendorTagDefined()) { |
Ruben Brunk | d1176ef | 2014-02-21 10:51:38 -0800 | [diff] [blame] | 719 | ALOGI("%s: No vendor tags defined for this device.", __FUNCTION__); |
| 720 | return false; |
| 721 | } |
| 722 | |
Yin-Chia Yeh | e074a93 | 2015-01-30 10:29:02 -0800 | [diff] [blame] | 723 | mModule->getVendorTagOps(&vOps); |
Ruben Brunk | d1176ef | 2014-02-21 10:51:38 -0800 | [diff] [blame] | 724 | |
| 725 | // Ensure all vendor operations are present |
| 726 | if (vOps.get_tag_count == NULL || vOps.get_all_tags == NULL || |
| 727 | vOps.get_section_name == NULL || vOps.get_tag_name == NULL || |
| 728 | vOps.get_tag_type == NULL) { |
| 729 | ALOGE("%s: Vendor tag operations not fully defined. Ignoring definitions." |
| 730 | , __FUNCTION__); |
| 731 | return false; |
| 732 | } |
| 733 | |
| 734 | // Read all vendor tag definitions into a descriptor |
| 735 | sp<VendorTagDescriptor> desc; |
| 736 | status_t res; |
| 737 | if ((res = VendorTagDescriptor::createDescriptorFromOps(&vOps, /*out*/desc)) |
| 738 | != OK) { |
| 739 | ALOGE("%s: Could not generate descriptor from vendor tag operations," |
| 740 | "received error %s (%d). Camera clients will not be able to use" |
| 741 | "vendor tags", __FUNCTION__, strerror(res), res); |
| 742 | return false; |
| 743 | } |
| 744 | |
| 745 | // Set the global descriptor to use with camera metadata |
| 746 | VendorTagDescriptor::setAsGlobalVendorTagDescriptor(desc); |
| 747 | return true; |
| 748 | } |
| 749 | |
Eino-Ville Talvala | d56db1d | 2015-12-17 16:50:35 -0800 | [diff] [blame] | 750 | Status CameraService::makeClient(const sp<CameraService>& cameraService, |
| 751 | const sp<IInterface>& cameraCb, const String16& packageName, int cameraId, |
Ruben Brunk | cc77671 | 2015-02-17 20:18:47 -0800 | [diff] [blame] | 752 | int facing, int clientPid, uid_t clientUid, int servicePid, bool legacyMode, |
| 753 | int halVersion, int deviceVersion, apiLevel effectiveApiLevel, |
| 754 | /*out*/sp<BasicClient>* client) { |
| 755 | |
Ruben Brunk | cc77671 | 2015-02-17 20:18:47 -0800 | [diff] [blame] | 756 | if (halVersion < 0 || halVersion == deviceVersion) { |
| 757 | // Default path: HAL version is unspecified by caller, create CameraClient |
| 758 | // based on device version reported by the HAL. |
| 759 | switch(deviceVersion) { |
| 760 | case CAMERA_DEVICE_API_VERSION_1_0: |
| 761 | if (effectiveApiLevel == API_1) { // Camera1 API route |
| 762 | sp<ICameraClient> tmp = static_cast<ICameraClient*>(cameraCb.get()); |
Eino-Ville Talvala | d56db1d | 2015-12-17 16:50:35 -0800 | [diff] [blame] | 763 | *client = new CameraClient(cameraService, tmp, packageName, cameraId, facing, |
Ruben Brunk | cc77671 | 2015-02-17 20:18:47 -0800 | [diff] [blame] | 764 | clientPid, clientUid, getpid(), legacyMode); |
| 765 | } else { // Camera2 API route |
| 766 | ALOGW("Camera using old HAL version: %d", deviceVersion); |
Eino-Ville Talvala | d56db1d | 2015-12-17 16:50:35 -0800 | [diff] [blame] | 767 | return STATUS_ERROR_FMT(ERROR_DEPRECATED_HAL, |
| 768 | "Camera device \"%d\" HAL version %d does not support camera2 API", |
| 769 | cameraId, deviceVersion); |
Ruben Brunk | cc77671 | 2015-02-17 20:18:47 -0800 | [diff] [blame] | 770 | } |
| 771 | break; |
Ruben Brunk | cc77671 | 2015-02-17 20:18:47 -0800 | [diff] [blame] | 772 | case CAMERA_DEVICE_API_VERSION_3_0: |
| 773 | case CAMERA_DEVICE_API_VERSION_3_1: |
| 774 | case CAMERA_DEVICE_API_VERSION_3_2: |
| 775 | case CAMERA_DEVICE_API_VERSION_3_3: |
| 776 | if (effectiveApiLevel == API_1) { // Camera1 API route |
| 777 | sp<ICameraClient> tmp = static_cast<ICameraClient*>(cameraCb.get()); |
Eino-Ville Talvala | d56db1d | 2015-12-17 16:50:35 -0800 | [diff] [blame] | 778 | *client = new Camera2Client(cameraService, tmp, packageName, cameraId, facing, |
Ruben Brunk | cc77671 | 2015-02-17 20:18:47 -0800 | [diff] [blame] | 779 | clientPid, clientUid, servicePid, legacyMode); |
| 780 | } else { // Camera2 API route |
Eino-Ville Talvala | d56db1d | 2015-12-17 16:50:35 -0800 | [diff] [blame] | 781 | sp<hardware::camera2::ICameraDeviceCallbacks> tmp = |
| 782 | static_cast<hardware::camera2::ICameraDeviceCallbacks*>(cameraCb.get()); |
| 783 | *client = new CameraDeviceClient(cameraService, tmp, packageName, cameraId, |
Ruben Brunk | cc77671 | 2015-02-17 20:18:47 -0800 | [diff] [blame] | 784 | facing, clientPid, clientUid, servicePid); |
| 785 | } |
| 786 | break; |
| 787 | default: |
| 788 | // Should not be reachable |
| 789 | ALOGE("Unknown camera device HAL version: %d", deviceVersion); |
Eino-Ville Talvala | d56db1d | 2015-12-17 16:50:35 -0800 | [diff] [blame] | 790 | return STATUS_ERROR_FMT(ERROR_INVALID_OPERATION, |
| 791 | "Camera device \"%d\" has unknown HAL version %d", |
| 792 | cameraId, deviceVersion); |
Ruben Brunk | cc77671 | 2015-02-17 20:18:47 -0800 | [diff] [blame] | 793 | } |
| 794 | } else { |
| 795 | // A particular HAL version is requested by caller. Create CameraClient |
| 796 | // based on the requested HAL version. |
| 797 | if (deviceVersion > CAMERA_DEVICE_API_VERSION_1_0 && |
| 798 | halVersion == CAMERA_DEVICE_API_VERSION_1_0) { |
| 799 | // Only support higher HAL version device opened as HAL1.0 device. |
| 800 | sp<ICameraClient> tmp = static_cast<ICameraClient*>(cameraCb.get()); |
Eino-Ville Talvala | d56db1d | 2015-12-17 16:50:35 -0800 | [diff] [blame] | 801 | *client = new CameraClient(cameraService, tmp, packageName, cameraId, facing, |
Ruben Brunk | cc77671 | 2015-02-17 20:18:47 -0800 | [diff] [blame] | 802 | clientPid, clientUid, servicePid, legacyMode); |
| 803 | } else { |
| 804 | // Other combinations (e.g. HAL3.x open as HAL2.x) are not supported yet. |
| 805 | ALOGE("Invalid camera HAL version %x: HAL %x device can only be" |
| 806 | " opened as HAL %x device", halVersion, deviceVersion, |
| 807 | CAMERA_DEVICE_API_VERSION_1_0); |
Eino-Ville Talvala | d56db1d | 2015-12-17 16:50:35 -0800 | [diff] [blame] | 808 | return STATUS_ERROR_FMT(ERROR_ILLEGAL_ARGUMENT, |
| 809 | "Camera device \"%d\" (HAL version %d) cannot be opened as HAL version %d", |
| 810 | cameraId, deviceVersion, halVersion); |
Ruben Brunk | cc77671 | 2015-02-17 20:18:47 -0800 | [diff] [blame] | 811 | } |
| 812 | } |
Eino-Ville Talvala | d56db1d | 2015-12-17 16:50:35 -0800 | [diff] [blame] | 813 | return Status::ok(); |
Ruben Brunk | cc77671 | 2015-02-17 20:18:47 -0800 | [diff] [blame] | 814 | } |
| 815 | |
Ruben Brunk | 6267b53 | 2015-04-30 17:44:07 -0700 | [diff] [blame] | 816 | String8 CameraService::toString(std::set<userid_t> intSet) { |
| 817 | String8 s(""); |
| 818 | bool first = true; |
| 819 | for (userid_t i : intSet) { |
| 820 | if (first) { |
| 821 | s.appendFormat("%d", i); |
| 822 | first = false; |
| 823 | } else { |
| 824 | s.appendFormat(", %d", i); |
| 825 | } |
| 826 | } |
| 827 | return s; |
| 828 | } |
| 829 | |
Eino-Ville Talvala | d56db1d | 2015-12-17 16:50:35 -0800 | [diff] [blame] | 830 | Status CameraService::initializeShimMetadata(int cameraId) { |
Ruben Brunk | cc77671 | 2015-02-17 20:18:47 -0800 | [diff] [blame] | 831 | int uid = getCallingUid(); |
Ruben Brunk | b2119af | 2014-05-09 19:57:56 -0700 | [diff] [blame] | 832 | |
Chien-Yu Chen | 98a668f | 2015-12-18 14:10:33 -0800 | [diff] [blame] | 833 | String16 internalPackageName("cameraserver"); |
Ruben Brunk | cc77671 | 2015-02-17 20:18:47 -0800 | [diff] [blame] | 834 | String8 id = String8::format("%d", cameraId); |
Eino-Ville Talvala | d56db1d | 2015-12-17 16:50:35 -0800 | [diff] [blame] | 835 | Status ret = Status::ok(); |
Ruben Brunk | cc77671 | 2015-02-17 20:18:47 -0800 | [diff] [blame] | 836 | sp<Client> tmp = nullptr; |
Eino-Ville Talvala | d56db1d | 2015-12-17 16:50:35 -0800 | [diff] [blame] | 837 | if (!(ret = connectHelper<ICameraClient,Client>( |
| 838 | sp<ICameraClient>{nullptr}, id, static_cast<int>(CAMERA_HAL_API_VERSION_UNSPECIFIED), |
| 839 | internalPackageName, uid, USE_CALLING_PID, |
| 840 | API_1, /*legacyMode*/ false, /*shimUpdateOnly*/ true, |
| 841 | /*out*/ tmp) |
| 842 | ).isOk()) { |
| 843 | ALOGE("%s: Error initializing shim metadata: %s", __FUNCTION__, ret.toString8().string()); |
Ruben Brunk | b2119af | 2014-05-09 19:57:56 -0700 | [diff] [blame] | 844 | } |
Eino-Ville Talvala | d56db1d | 2015-12-17 16:50:35 -0800 | [diff] [blame] | 845 | return ret; |
Ruben Brunk | b2119af | 2014-05-09 19:57:56 -0700 | [diff] [blame] | 846 | } |
| 847 | |
Eino-Ville Talvala | d56db1d | 2015-12-17 16:50:35 -0800 | [diff] [blame] | 848 | Status CameraService::getLegacyParametersLazy(int cameraId, |
Igor Murashkin | 65d14b9 | 2014-06-17 12:03:20 -0700 | [diff] [blame] | 849 | /*out*/ |
| 850 | CameraParameters* parameters) { |
| 851 | |
| 852 | ALOGV("%s: for cameraId: %d", __FUNCTION__, cameraId); |
| 853 | |
Eino-Ville Talvala | d56db1d | 2015-12-17 16:50:35 -0800 | [diff] [blame] | 854 | Status ret = Status::ok(); |
Igor Murashkin | 65d14b9 | 2014-06-17 12:03:20 -0700 | [diff] [blame] | 855 | |
| 856 | if (parameters == NULL) { |
| 857 | ALOGE("%s: parameters must not be null", __FUNCTION__); |
Eino-Ville Talvala | d56db1d | 2015-12-17 16:50:35 -0800 | [diff] [blame] | 858 | return STATUS_ERROR(ERROR_ILLEGAL_ARGUMENT, "Parameters must not be null"); |
Igor Murashkin | 65d14b9 | 2014-06-17 12:03:20 -0700 | [diff] [blame] | 859 | } |
| 860 | |
Ruben Brunk | cc77671 | 2015-02-17 20:18:47 -0800 | [diff] [blame] | 861 | String8 id = String8::format("%d", cameraId); |
| 862 | |
| 863 | // Check if we already have parameters |
| 864 | { |
| 865 | // Scope for service lock |
Igor Murashkin | 65d14b9 | 2014-06-17 12:03:20 -0700 | [diff] [blame] | 866 | Mutex::Autolock lock(mServiceLock); |
Ruben Brunk | cc77671 | 2015-02-17 20:18:47 -0800 | [diff] [blame] | 867 | auto cameraState = getCameraState(id); |
| 868 | if (cameraState == nullptr) { |
| 869 | ALOGE("%s: Invalid camera ID: %s", __FUNCTION__, id.string()); |
Eino-Ville Talvala | d56db1d | 2015-12-17 16:50:35 -0800 | [diff] [blame] | 870 | return STATUS_ERROR_FMT(ERROR_ILLEGAL_ARGUMENT, |
| 871 | "Invalid camera ID: %s", id.string()); |
Ruben Brunk | cc77671 | 2015-02-17 20:18:47 -0800 | [diff] [blame] | 872 | } |
| 873 | CameraParameters p = cameraState->getShimParams(); |
| 874 | if (!p.isEmpty()) { |
| 875 | *parameters = p; |
Eino-Ville Talvala | d56db1d | 2015-12-17 16:50:35 -0800 | [diff] [blame] | 876 | return ret; |
Igor Murashkin | 65d14b9 | 2014-06-17 12:03:20 -0700 | [diff] [blame] | 877 | } |
| 878 | } |
| 879 | |
Ruben Brunk | cc77671 | 2015-02-17 20:18:47 -0800 | [diff] [blame] | 880 | int64_t token = IPCThreadState::self()->clearCallingIdentity(); |
| 881 | ret = initializeShimMetadata(cameraId); |
| 882 | IPCThreadState::self()->restoreCallingIdentity(token); |
Eino-Ville Talvala | d56db1d | 2015-12-17 16:50:35 -0800 | [diff] [blame] | 883 | if (!ret.isOk()) { |
Ruben Brunk | cc77671 | 2015-02-17 20:18:47 -0800 | [diff] [blame] | 884 | // Error already logged by callee |
| 885 | return ret; |
| 886 | } |
| 887 | |
| 888 | // Check for parameters again |
| 889 | { |
| 890 | // Scope for service lock |
| 891 | Mutex::Autolock lock(mServiceLock); |
| 892 | auto cameraState = getCameraState(id); |
| 893 | if (cameraState == nullptr) { |
| 894 | ALOGE("%s: Invalid camera ID: %s", __FUNCTION__, id.string()); |
Eino-Ville Talvala | d56db1d | 2015-12-17 16:50:35 -0800 | [diff] [blame] | 895 | return STATUS_ERROR_FMT(ERROR_ILLEGAL_ARGUMENT, |
| 896 | "Invalid camera ID: %s", id.string()); |
Igor Murashkin | 65d14b9 | 2014-06-17 12:03:20 -0700 | [diff] [blame] | 897 | } |
Ruben Brunk | cc77671 | 2015-02-17 20:18:47 -0800 | [diff] [blame] | 898 | CameraParameters p = cameraState->getShimParams(); |
| 899 | if (!p.isEmpty()) { |
| 900 | *parameters = p; |
Eino-Ville Talvala | d56db1d | 2015-12-17 16:50:35 -0800 | [diff] [blame] | 901 | return ret; |
Igor Murashkin | 65d14b9 | 2014-06-17 12:03:20 -0700 | [diff] [blame] | 902 | } |
| 903 | } |
| 904 | |
Ruben Brunk | cc77671 | 2015-02-17 20:18:47 -0800 | [diff] [blame] | 905 | ALOGE("%s: Parameters were not initialized, or were empty. Device may not be present.", |
| 906 | __FUNCTION__); |
Eino-Ville Talvala | d56db1d | 2015-12-17 16:50:35 -0800 | [diff] [blame] | 907 | return STATUS_ERROR(ERROR_INVALID_OPERATION, "Unable to initialize legacy parameters"); |
Igor Murashkin | 65d14b9 | 2014-06-17 12:03:20 -0700 | [diff] [blame] | 908 | } |
| 909 | |
Chien-Yu Chen | 98a668f | 2015-12-18 14:10:33 -0800 | [diff] [blame] | 910 | // Can camera service trust the caller based on the calling UID? |
| 911 | static bool isTrustedCallingUid(uid_t uid) { |
| 912 | switch (uid) { |
| 913 | case AID_MEDIA: // mediaserver |
| 914 | case AID_CAMERASERVER: // cameraserver |
| 915 | return true; |
| 916 | default: |
| 917 | return false; |
| 918 | } |
| 919 | } |
| 920 | |
Eino-Ville Talvala | d56db1d | 2015-12-17 16:50:35 -0800 | [diff] [blame] | 921 | Status CameraService::validateConnectLocked(const String8& cameraId, |
Chien-Yu Chen | 18df60e | 2016-03-18 18:18:09 -0700 | [diff] [blame] | 922 | const String8& clientName8, /*inout*/int& clientUid, /*inout*/int& clientPid, |
| 923 | /*out*/int& originalClientPid) const { |
Eino-Ville Talvala | ceb388d | 2013-02-19 10:40:14 -0800 | [diff] [blame] | 924 | |
Mathias Agopian | 65ab471 | 2010-07-14 17:59:35 -0700 | [diff] [blame] | 925 | int callingPid = getCallingPid(); |
Chien-Yu Chen | 98a668f | 2015-12-18 14:10:33 -0800 | [diff] [blame] | 926 | int callingUid = getCallingUid(); |
Tyler Luu | 5861a9a | 2011-10-06 00:00:03 -0500 | [diff] [blame] | 927 | |
Chien-Yu Chen | 98a668f | 2015-12-18 14:10:33 -0800 | [diff] [blame] | 928 | // Check if we can trust clientUid |
Eino-Ville Talvala | ceb388d | 2013-02-19 10:40:14 -0800 | [diff] [blame] | 929 | if (clientUid == USE_CALLING_UID) { |
Chien-Yu Chen | 98a668f | 2015-12-18 14:10:33 -0800 | [diff] [blame] | 930 | clientUid = callingUid; |
| 931 | } else if (!isTrustedCallingUid(callingUid)) { |
| 932 | ALOGE("CameraService::connect X (calling PID %d, calling UID %d) rejected " |
| 933 | "(don't trust clientUid %d)", callingPid, callingUid, clientUid); |
Eino-Ville Talvala | d56db1d | 2015-12-17 16:50:35 -0800 | [diff] [blame] | 934 | return STATUS_ERROR_FMT(ERROR_PERMISSION_DENIED, |
| 935 | "Untrusted caller (calling PID %d, UID %d) trying to " |
| 936 | "forward camera access to camera %s for client %s (PID %d, UID %d)", |
| 937 | callingPid, callingUid, cameraId.string(), |
| 938 | clientName8.string(), clientUid, clientPid); |
Eino-Ville Talvala | ceb388d | 2013-02-19 10:40:14 -0800 | [diff] [blame] | 939 | } |
Mathias Agopian | 65ab471 | 2010-07-14 17:59:35 -0700 | [diff] [blame] | 940 | |
Chien-Yu Chen | 98a668f | 2015-12-18 14:10:33 -0800 | [diff] [blame] | 941 | // Check if we can trust clientPid |
| 942 | if (clientPid == USE_CALLING_PID) { |
| 943 | clientPid = callingPid; |
| 944 | } else if (!isTrustedCallingUid(callingUid)) { |
| 945 | ALOGE("CameraService::connect X (calling PID %d, calling UID %d) rejected " |
| 946 | "(don't trust clientPid %d)", callingPid, callingUid, clientPid); |
Eino-Ville Talvala | d56db1d | 2015-12-17 16:50:35 -0800 | [diff] [blame] | 947 | return STATUS_ERROR_FMT(ERROR_PERMISSION_DENIED, |
| 948 | "Untrusted caller (calling PID %d, UID %d) trying to " |
| 949 | "forward camera access to camera %s for client %s (PID %d, UID %d)", |
| 950 | callingPid, callingUid, cameraId.string(), |
| 951 | clientName8.string(), clientUid, clientPid); |
Chien-Yu Chen | 98a668f | 2015-12-18 14:10:33 -0800 | [diff] [blame] | 952 | } |
| 953 | |
| 954 | // If it's not calling from cameraserver, check the permission. |
| 955 | if (callingPid != getpid() && |
| 956 | !checkPermission(String16("android.permission.CAMERA"), clientPid, clientUid)) { |
| 957 | ALOGE("Permission Denial: can't use the camera pid=%d, uid=%d", clientPid, clientUid); |
Eino-Ville Talvala | d56db1d | 2015-12-17 16:50:35 -0800 | [diff] [blame] | 958 | return STATUS_ERROR_FMT(ERROR_PERMISSION_DENIED, |
| 959 | "Caller \"%s\" (PID %d, UID %d) cannot open camera \"%s\" without camera permission", |
| 960 | clientName8.string(), clientUid, clientPid, cameraId.string()); |
Chien-Yu Chen | 98a668f | 2015-12-18 14:10:33 -0800 | [diff] [blame] | 961 | } |
| 962 | |
| 963 | // Only use passed in clientPid to check permission. Use calling PID as the client PID that's |
| 964 | // connected to camera service directly. |
Chien-Yu Chen | 18df60e | 2016-03-18 18:18:09 -0700 | [diff] [blame] | 965 | originalClientPid = clientPid; |
Chien-Yu Chen | 98a668f | 2015-12-18 14:10:33 -0800 | [diff] [blame] | 966 | clientPid = callingPid; |
| 967 | |
Iliyan Malchev | 8951a97 | 2011-04-14 16:55:59 -0700 | [diff] [blame] | 968 | if (!mModule) { |
Ruben Brunk | cc77671 | 2015-02-17 20:18:47 -0800 | [diff] [blame] | 969 | ALOGE("CameraService::connect X (PID %d) rejected (camera HAL module not loaded)", |
| 970 | callingPid); |
Eino-Ville Talvala | d56db1d | 2015-12-17 16:50:35 -0800 | [diff] [blame] | 971 | return STATUS_ERROR_FMT(ERROR_DISCONNECTED, |
| 972 | "No camera HAL module available to open camera device \"%s\"", cameraId.string()); |
Iliyan Malchev | 8951a97 | 2011-04-14 16:55:59 -0700 | [diff] [blame] | 973 | } |
| 974 | |
Ruben Brunk | cc77671 | 2015-02-17 20:18:47 -0800 | [diff] [blame] | 975 | if (getCameraState(cameraId) == nullptr) { |
| 976 | ALOGE("CameraService::connect X (PID %d) rejected (invalid camera ID %s)", callingPid, |
| 977 | cameraId.string()); |
Eino-Ville Talvala | d56db1d | 2015-12-17 16:50:35 -0800 | [diff] [blame] | 978 | return STATUS_ERROR_FMT(ERROR_DISCONNECTED, |
| 979 | "No camera device with ID \"%s\" available", cameraId.string()); |
Mathias Agopian | 65ab471 | 2010-07-14 17:59:35 -0700 | [diff] [blame] | 980 | } |
| 981 | |
Ruben Brunk | 6267b53 | 2015-04-30 17:44:07 -0700 | [diff] [blame] | 982 | userid_t clientUserId = multiuser_get_user_id(clientUid); |
Wu-cheng Li | a335543 | 2011-05-20 14:54:25 +0800 | [diff] [blame] | 983 | |
Ruben Brunk | a8ca915 | 2015-04-07 14:23:40 -0700 | [diff] [blame] | 984 | // Only allow clients who are being used by the current foreground device user, unless calling |
| 985 | // from our own process. |
Ruben Brunk | 6267b53 | 2015-04-30 17:44:07 -0700 | [diff] [blame] | 986 | if (callingPid != getpid() && (mAllowedUsers.find(clientUserId) == mAllowedUsers.end())) { |
| 987 | ALOGE("CameraService::connect X (PID %d) rejected (cannot connect from " |
| 988 | "device user %d, currently allowed device users: %s)", callingPid, clientUserId, |
| 989 | toString(mAllowedUsers).string()); |
Eino-Ville Talvala | d56db1d | 2015-12-17 16:50:35 -0800 | [diff] [blame] | 990 | return STATUS_ERROR_FMT(ERROR_PERMISSION_DENIED, |
| 991 | "Callers from device user %d are not currently allowed to connect to camera \"%s\"", |
| 992 | clientUserId, cameraId.string()); |
Ruben Brunk | 36597b2 | 2015-03-20 22:15:57 -0700 | [diff] [blame] | 993 | } |
| 994 | |
Eino-Ville Talvala | d56db1d | 2015-12-17 16:50:35 -0800 | [diff] [blame] | 995 | status_t err = checkIfDeviceIsUsable(cameraId); |
| 996 | if (err != NO_ERROR) { |
| 997 | switch(err) { |
| 998 | case -ENODEV: |
| 999 | case -EBUSY: |
| 1000 | return STATUS_ERROR_FMT(ERROR_DISCONNECTED, |
| 1001 | "No camera device with ID \"%s\" currently available", cameraId.string()); |
| 1002 | default: |
| 1003 | return STATUS_ERROR_FMT(ERROR_INVALID_OPERATION, |
| 1004 | "Unknown error connecting to ID \"%s\"", cameraId.string()); |
| 1005 | } |
| 1006 | } |
| 1007 | return Status::ok(); |
Ruben Brunk | cc77671 | 2015-02-17 20:18:47 -0800 | [diff] [blame] | 1008 | } |
| 1009 | |
| 1010 | status_t CameraService::checkIfDeviceIsUsable(const String8& cameraId) const { |
| 1011 | auto cameraState = getCameraState(cameraId); |
| 1012 | int callingPid = getCallingPid(); |
| 1013 | if (cameraState == nullptr) { |
| 1014 | ALOGE("CameraService::connect X (PID %d) rejected (invalid camera ID %s)", callingPid, |
| 1015 | cameraId.string()); |
| 1016 | return -ENODEV; |
| 1017 | } |
| 1018 | |
Eino-Ville Talvala | d56db1d | 2015-12-17 16:50:35 -0800 | [diff] [blame] | 1019 | int32_t currentStatus = cameraState->getStatus(); |
Igor Murashkin | cba2c16 | 2013-03-20 15:56:31 -0700 | [diff] [blame] | 1020 | if (currentStatus == ICameraServiceListener::STATUS_NOT_PRESENT) { |
Ruben Brunk | cc77671 | 2015-02-17 20:18:47 -0800 | [diff] [blame] | 1021 | ALOGE("CameraService::connect X (PID %d) rejected (camera %s is not connected)", |
| 1022 | callingPid, cameraId.string()); |
Ruben Brunk | 0f61d8f | 2013-08-08 13:07:18 -0700 | [diff] [blame] | 1023 | return -ENODEV; |
Igor Murashkin | cba2c16 | 2013-03-20 15:56:31 -0700 | [diff] [blame] | 1024 | } else if (currentStatus == ICameraServiceListener::STATUS_ENUMERATING) { |
Ruben Brunk | cc77671 | 2015-02-17 20:18:47 -0800 | [diff] [blame] | 1025 | ALOGE("CameraService::connect X (PID %d) rejected, (camera %s is initializing)", |
| 1026 | callingPid, cameraId.string()); |
Ruben Brunk | 0f61d8f | 2013-08-08 13:07:18 -0700 | [diff] [blame] | 1027 | return -EBUSY; |
Igor Murashkin | cba2c16 | 2013-03-20 15:56:31 -0700 | [diff] [blame] | 1028 | } |
Igor Murashkin | cba2c16 | 2013-03-20 15:56:31 -0700 | [diff] [blame] | 1029 | |
Ruben Brunk | cc77671 | 2015-02-17 20:18:47 -0800 | [diff] [blame] | 1030 | return NO_ERROR; |
Igor Murashkin | e6800ce | 2013-03-04 17:25:57 -0800 | [diff] [blame] | 1031 | } |
| 1032 | |
Ruben Brunk | cc77671 | 2015-02-17 20:18:47 -0800 | [diff] [blame] | 1033 | void CameraService::finishConnectLocked(const sp<BasicClient>& client, |
| 1034 | const CameraService::DescriptorPtr& desc) { |
Igor Murashkin | e6800ce | 2013-03-04 17:25:57 -0800 | [diff] [blame] | 1035 | |
Ruben Brunk | cc77671 | 2015-02-17 20:18:47 -0800 | [diff] [blame] | 1036 | // Make a descriptor for the incoming client |
| 1037 | auto clientDescriptor = CameraService::CameraClientManager::makeClientDescriptor(client, desc); |
| 1038 | auto evicted = mActiveClientManager.addAndEvict(clientDescriptor); |
| 1039 | |
| 1040 | logConnected(desc->getKey(), static_cast<int>(desc->getOwnerId()), |
| 1041 | String8(client->getPackageName())); |
| 1042 | |
| 1043 | if (evicted.size() > 0) { |
| 1044 | // This should never happen - clients should already have been removed in disconnect |
| 1045 | for (auto& i : evicted) { |
| 1046 | ALOGE("%s: Invalid state: Client for camera %s was not removed in disconnect", |
| 1047 | __FUNCTION__, i->getKey().string()); |
| 1048 | } |
| 1049 | |
| 1050 | LOG_ALWAYS_FATAL("%s: Invalid state for CameraService, clients not evicted properly", |
| 1051 | __FUNCTION__); |
| 1052 | } |
Eino-Ville Talvala | 24901c8 | 2015-09-04 14:15:58 -0700 | [diff] [blame] | 1053 | |
| 1054 | // And register a death notification for the client callback. Do |
| 1055 | // this last to avoid Binder policy where a nested Binder |
| 1056 | // transaction might be pre-empted to service the client death |
| 1057 | // notification if the client process dies before linkToDeath is |
| 1058 | // invoked. |
| 1059 | sp<IBinder> remoteCallback = client->getRemote(); |
| 1060 | if (remoteCallback != nullptr) { |
| 1061 | remoteCallback->linkToDeath(this); |
| 1062 | } |
Ruben Brunk | cc77671 | 2015-02-17 20:18:47 -0800 | [diff] [blame] | 1063 | } |
| 1064 | |
| 1065 | status_t CameraService::handleEvictionsLocked(const String8& cameraId, int clientPid, |
| 1066 | apiLevel effectiveApiLevel, const sp<IBinder>& remoteCallback, const String8& packageName, |
| 1067 | /*out*/ |
| 1068 | sp<BasicClient>* client, |
| 1069 | std::shared_ptr<resource_policy::ClientDescriptor<String8, sp<BasicClient>>>* partial) { |
Eino-Ville Talvala | a84bbe6 | 2015-09-08 17:59:17 -0700 | [diff] [blame] | 1070 | ATRACE_CALL(); |
Ruben Brunk | cc77671 | 2015-02-17 20:18:47 -0800 | [diff] [blame] | 1071 | status_t ret = NO_ERROR; |
Ruben Brunk | 4f9576b | 2015-04-10 17:26:56 -0700 | [diff] [blame] | 1072 | std::vector<DescriptorPtr> evictedClients; |
Ruben Brunk | cc77671 | 2015-02-17 20:18:47 -0800 | [diff] [blame] | 1073 | DescriptorPtr clientDescriptor; |
| 1074 | { |
| 1075 | if (effectiveApiLevel == API_1) { |
| 1076 | // If we are using API1, any existing client for this camera ID with the same remote |
| 1077 | // should be returned rather than evicted to allow MediaRecorder to work properly. |
| 1078 | |
| 1079 | auto current = mActiveClientManager.get(cameraId); |
| 1080 | if (current != nullptr) { |
| 1081 | auto clientSp = current->getValue(); |
| 1082 | if (clientSp.get() != nullptr) { // should never be needed |
Ruben Brunk | 0bbf8b2 | 2015-04-30 14:35:42 -0700 | [diff] [blame] | 1083 | if (!clientSp->canCastToApiClient(effectiveApiLevel)) { |
| 1084 | ALOGW("CameraService connect called from same client, but with a different" |
| 1085 | " API level, evicting prior client..."); |
| 1086 | } else if (clientSp->getRemote() == remoteCallback) { |
Ruben Brunk | cc77671 | 2015-02-17 20:18:47 -0800 | [diff] [blame] | 1087 | ALOGI("CameraService::connect X (PID %d) (second call from same" |
Ruben Brunk | 0bbf8b2 | 2015-04-30 14:35:42 -0700 | [diff] [blame] | 1088 | " app binder, returning the same client)", clientPid); |
Ruben Brunk | cc77671 | 2015-02-17 20:18:47 -0800 | [diff] [blame] | 1089 | *client = clientSp; |
| 1090 | return NO_ERROR; |
| 1091 | } |
| 1092 | } |
Wu-cheng Li | 2fd2440 | 2012-02-23 19:01:00 -0800 | [diff] [blame] | 1093 | } |
Wu-cheng Li | 2fd2440 | 2012-02-23 19:01:00 -0800 | [diff] [blame] | 1094 | } |
Wu-cheng Li | 08ad5ef | 2012-04-19 12:35:00 +0800 | [diff] [blame] | 1095 | |
Ruben Brunk | cc77671 | 2015-02-17 20:18:47 -0800 | [diff] [blame] | 1096 | // Get current active client PIDs |
| 1097 | std::vector<int> ownerPids(mActiveClientManager.getAllOwners()); |
| 1098 | ownerPids.push_back(clientPid); |
Igor Murashkin | e6800ce | 2013-03-04 17:25:57 -0800 | [diff] [blame] | 1099 | |
Chih-Hung Hsieh | 54b4246 | 2015-03-19 12:04:54 -0700 | [diff] [blame] | 1100 | // Use the value +PROCESS_STATE_NONEXISTENT, to avoid taking |
| 1101 | // address of PROCESS_STATE_NONEXISTENT as a reference argument |
| 1102 | // for the vector constructor. PROCESS_STATE_NONEXISTENT does |
| 1103 | // not have an out-of-class definition. |
| 1104 | std::vector<int> priorities(ownerPids.size(), +PROCESS_STATE_NONEXISTENT); |
Igor Murashkin | e6800ce | 2013-03-04 17:25:57 -0800 | [diff] [blame] | 1105 | |
Ruben Brunk | cc77671 | 2015-02-17 20:18:47 -0800 | [diff] [blame] | 1106 | // Get priorites of all active PIDs |
| 1107 | ProcessInfoService::getProcessStatesFromPids(ownerPids.size(), &ownerPids[0], |
| 1108 | /*out*/&priorities[0]); |
Ruben Brunk | b2119af | 2014-05-09 19:57:56 -0700 | [diff] [blame] | 1109 | |
Ruben Brunk | cc77671 | 2015-02-17 20:18:47 -0800 | [diff] [blame] | 1110 | // Update all active clients' priorities |
| 1111 | std::map<int,int> pidToPriorityMap; |
| 1112 | for (size_t i = 0; i < ownerPids.size() - 1; i++) { |
| 1113 | pidToPriorityMap.emplace(ownerPids[i], getCameraPriorityFromProcState(priorities[i])); |
| 1114 | } |
| 1115 | mActiveClientManager.updatePriorities(pidToPriorityMap); |
Chien-Yu Chen | 3068d73 | 2015-02-09 13:29:57 -0800 | [diff] [blame] | 1116 | |
Ruben Brunk | cc77671 | 2015-02-17 20:18:47 -0800 | [diff] [blame] | 1117 | // Get state for the given cameraId |
| 1118 | auto state = getCameraState(cameraId); |
| 1119 | if (state == nullptr) { |
| 1120 | ALOGE("CameraService::connect X (PID %d) rejected (no camera device with ID %s)", |
| 1121 | clientPid, cameraId.string()); |
Eino-Ville Talvala | d56db1d | 2015-12-17 16:50:35 -0800 | [diff] [blame] | 1122 | // Should never get here because validateConnectLocked should have errored out |
Zhijun He | b10cdad | 2014-06-16 16:38:35 -0700 | [diff] [blame] | 1123 | return BAD_VALUE; |
Zhijun He | b10cdad | 2014-06-16 16:38:35 -0700 | [diff] [blame] | 1124 | } |
Ruben Brunk | cc77671 | 2015-02-17 20:18:47 -0800 | [diff] [blame] | 1125 | |
| 1126 | // Make descriptor for incoming client |
| 1127 | clientDescriptor = CameraClientManager::makeClientDescriptor(cameraId, |
| 1128 | sp<BasicClient>{nullptr}, static_cast<int32_t>(state->getCost()), |
| 1129 | state->getConflicting(), |
| 1130 | getCameraPriorityFromProcState(priorities[priorities.size() - 1]), clientPid); |
| 1131 | |
| 1132 | // Find clients that would be evicted |
| 1133 | auto evicted = mActiveClientManager.wouldEvict(clientDescriptor); |
| 1134 | |
| 1135 | // If the incoming client was 'evicted,' higher priority clients have the camera in the |
| 1136 | // background, so we cannot do evictions |
| 1137 | if (std::find(evicted.begin(), evicted.end(), clientDescriptor) != evicted.end()) { |
| 1138 | ALOGE("CameraService::connect X (PID %d) rejected (existing client(s) with higher" |
| 1139 | " priority).", clientPid); |
| 1140 | |
| 1141 | sp<BasicClient> clientSp = clientDescriptor->getValue(); |
| 1142 | String8 curTime = getFormattedCurrentTime(); |
| 1143 | auto incompatibleClients = |
| 1144 | mActiveClientManager.getIncompatibleClients(clientDescriptor); |
| 1145 | |
| 1146 | String8 msg = String8::format("%s : DENIED connect device %s client for package %s " |
Ruben Brunk | a8ca915 | 2015-04-07 14:23:40 -0700 | [diff] [blame] | 1147 | "(PID %d, priority %d) due to eviction policy", curTime.string(), |
Ruben Brunk | cc77671 | 2015-02-17 20:18:47 -0800 | [diff] [blame] | 1148 | cameraId.string(), packageName.string(), clientPid, |
| 1149 | getCameraPriorityFromProcState(priorities[priorities.size() - 1])); |
| 1150 | |
| 1151 | for (auto& i : incompatibleClients) { |
| 1152 | msg.appendFormat("\n - Blocked by existing device %s client for package %s" |
| 1153 | "(PID %" PRId32 ", priority %" PRId32 ")", i->getKey().string(), |
| 1154 | String8{i->getValue()->getPackageName()}.string(), i->getOwnerId(), |
| 1155 | i->getPriority()); |
Eino-Ville Talvala | 022f0cb | 2015-05-19 16:31:16 -0700 | [diff] [blame] | 1156 | ALOGE(" Conflicts with: Device %s, client package %s (PID %" |
| 1157 | PRId32 ", priority %" PRId32 ")", i->getKey().string(), |
| 1158 | String8{i->getValue()->getPackageName()}.string(), i->getOwnerId(), |
| 1159 | i->getPriority()); |
Ruben Brunk | cc77671 | 2015-02-17 20:18:47 -0800 | [diff] [blame] | 1160 | } |
| 1161 | |
| 1162 | // Log the client's attempt |
Ruben Brunk | a8ca915 | 2015-04-07 14:23:40 -0700 | [diff] [blame] | 1163 | Mutex::Autolock l(mLogLock); |
Ruben Brunk | cc77671 | 2015-02-17 20:18:47 -0800 | [diff] [blame] | 1164 | mEventLog.add(msg); |
| 1165 | |
| 1166 | return -EBUSY; |
| 1167 | } |
| 1168 | |
| 1169 | for (auto& i : evicted) { |
| 1170 | sp<BasicClient> clientSp = i->getValue(); |
| 1171 | if (clientSp.get() == nullptr) { |
| 1172 | ALOGE("%s: Invalid state: Null client in active client list.", __FUNCTION__); |
| 1173 | |
| 1174 | // TODO: Remove this |
| 1175 | LOG_ALWAYS_FATAL("%s: Invalid state for CameraService, null client in active list", |
| 1176 | __FUNCTION__); |
| 1177 | mActiveClientManager.remove(i); |
| 1178 | continue; |
| 1179 | } |
| 1180 | |
| 1181 | ALOGE("CameraService::connect evicting conflicting client for camera ID %s", |
| 1182 | i->getKey().string()); |
Ruben Brunk | 4f9576b | 2015-04-10 17:26:56 -0700 | [diff] [blame] | 1183 | evictedClients.push_back(i); |
Ruben Brunk | cc77671 | 2015-02-17 20:18:47 -0800 | [diff] [blame] | 1184 | |
Ruben Brunk | cc77671 | 2015-02-17 20:18:47 -0800 | [diff] [blame] | 1185 | // Log the clients evicted |
Ruben Brunk | a8ca915 | 2015-04-07 14:23:40 -0700 | [diff] [blame] | 1186 | logEvent(String8::format("EVICT device %s client held by package %s (PID" |
| 1187 | " %" PRId32 ", priority %" PRId32 ")\n - Evicted by device %s client for" |
| 1188 | " package %s (PID %d, priority %" PRId32 ")", |
Ruben Brunk | cc77671 | 2015-02-17 20:18:47 -0800 | [diff] [blame] | 1189 | i->getKey().string(), String8{clientSp->getPackageName()}.string(), |
| 1190 | i->getOwnerId(), i->getPriority(), cameraId.string(), |
| 1191 | packageName.string(), clientPid, |
| 1192 | getCameraPriorityFromProcState(priorities[priorities.size() - 1]))); |
| 1193 | |
| 1194 | // Notify the client of disconnection |
Eino-Ville Talvala | d56db1d | 2015-12-17 16:50:35 -0800 | [diff] [blame] | 1195 | clientSp->notifyError(hardware::camera2::ICameraDeviceCallbacks::ERROR_CAMERA_DISCONNECTED, |
Ruben Brunk | cc77671 | 2015-02-17 20:18:47 -0800 | [diff] [blame] | 1196 | CaptureResultExtras()); |
Zhijun He | b10cdad | 2014-06-16 16:38:35 -0700 | [diff] [blame] | 1197 | } |
Ruben Brunk | b2119af | 2014-05-09 19:57:56 -0700 | [diff] [blame] | 1198 | } |
| 1199 | |
Ruben Brunk | cc77671 | 2015-02-17 20:18:47 -0800 | [diff] [blame] | 1200 | // Do not hold mServiceLock while disconnecting clients, but retain the condition blocking |
| 1201 | // other clients from connecting in mServiceLockWrapper if held |
| 1202 | mServiceLock.unlock(); |
| 1203 | |
| 1204 | // Clear caller identity temporarily so client disconnect PID checks work correctly |
| 1205 | int64_t token = IPCThreadState::self()->clearCallingIdentity(); |
| 1206 | |
| 1207 | // Destroy evicted clients |
| 1208 | for (auto& i : evictedClients) { |
| 1209 | // Disconnect is blocking, and should only have returned when HAL has cleaned up |
Ruben Brunk | 4f9576b | 2015-04-10 17:26:56 -0700 | [diff] [blame] | 1210 | i->getValue()->disconnect(); // Clients will remove themselves from the active client list |
Ruben Brunk | cc77671 | 2015-02-17 20:18:47 -0800 | [diff] [blame] | 1211 | } |
Ruben Brunk | cc77671 | 2015-02-17 20:18:47 -0800 | [diff] [blame] | 1212 | |
| 1213 | IPCThreadState::self()->restoreCallingIdentity(token); |
| 1214 | |
Ruben Brunk | 4f9576b | 2015-04-10 17:26:56 -0700 | [diff] [blame] | 1215 | for (const auto& i : evictedClients) { |
| 1216 | ALOGV("%s: Waiting for disconnect to complete for client for device %s (PID %" PRId32 ")", |
| 1217 | __FUNCTION__, i->getKey().string(), i->getOwnerId()); |
| 1218 | ret = mActiveClientManager.waitUntilRemoved(i, DEFAULT_DISCONNECT_TIMEOUT_NS); |
| 1219 | if (ret == TIMED_OUT) { |
| 1220 | ALOGE("%s: Timed out waiting for client for device %s to disconnect, " |
| 1221 | "current clients:\n%s", __FUNCTION__, i->getKey().string(), |
| 1222 | mActiveClientManager.toString().string()); |
| 1223 | return -EBUSY; |
| 1224 | } |
| 1225 | if (ret != NO_ERROR) { |
| 1226 | ALOGE("%s: Received error waiting for client for device %s to disconnect: %s (%d), " |
| 1227 | "current clients:\n%s", __FUNCTION__, i->getKey().string(), strerror(-ret), |
| 1228 | ret, mActiveClientManager.toString().string()); |
| 1229 | return ret; |
| 1230 | } |
| 1231 | } |
| 1232 | |
| 1233 | evictedClients.clear(); |
| 1234 | |
Ruben Brunk | cc77671 | 2015-02-17 20:18:47 -0800 | [diff] [blame] | 1235 | // Once clients have been disconnected, relock |
| 1236 | mServiceLock.lock(); |
| 1237 | |
| 1238 | // Check again if the device was unplugged or something while we weren't holding mServiceLock |
| 1239 | if ((ret = checkIfDeviceIsUsable(cameraId)) != NO_ERROR) { |
| 1240 | return ret; |
Ruben Brunk | b2119af | 2014-05-09 19:57:56 -0700 | [diff] [blame] | 1241 | } |
| 1242 | |
Ruben Brunk | cc77671 | 2015-02-17 20:18:47 -0800 | [diff] [blame] | 1243 | *partial = clientDescriptor; |
| 1244 | return NO_ERROR; |
Ruben Brunk | b2119af | 2014-05-09 19:57:56 -0700 | [diff] [blame] | 1245 | } |
| 1246 | |
Eino-Ville Talvala | d56db1d | 2015-12-17 16:50:35 -0800 | [diff] [blame] | 1247 | Status CameraService::connect( |
Igor Murashkin | e6800ce | 2013-03-04 17:25:57 -0800 | [diff] [blame] | 1248 | const sp<ICameraClient>& cameraClient, |
| 1249 | int cameraId, |
Svetoslav Ganov | 280405a | 2015-05-12 02:19:27 +0000 | [diff] [blame] | 1250 | const String16& clientPackageName, |
Ruben Brunk | 0f61d8f | 2013-08-08 13:07:18 -0700 | [diff] [blame] | 1251 | int clientUid, |
Chien-Yu Chen | 98a668f | 2015-12-18 14:10:33 -0800 | [diff] [blame] | 1252 | int clientPid, |
Ruben Brunk | 0f61d8f | 2013-08-08 13:07:18 -0700 | [diff] [blame] | 1253 | /*out*/ |
Eino-Ville Talvala | d56db1d | 2015-12-17 16:50:35 -0800 | [diff] [blame] | 1254 | sp<ICamera>* device) { |
Igor Murashkin | e6800ce | 2013-03-04 17:25:57 -0800 | [diff] [blame] | 1255 | |
Eino-Ville Talvala | a84bbe6 | 2015-09-08 17:59:17 -0700 | [diff] [blame] | 1256 | ATRACE_CALL(); |
Eino-Ville Talvala | d56db1d | 2015-12-17 16:50:35 -0800 | [diff] [blame] | 1257 | Status ret = Status::ok(); |
Ruben Brunk | cc77671 | 2015-02-17 20:18:47 -0800 | [diff] [blame] | 1258 | String8 id = String8::format("%d", cameraId); |
| 1259 | sp<Client> client = nullptr; |
Eino-Ville Talvala | d56db1d | 2015-12-17 16:50:35 -0800 | [diff] [blame] | 1260 | ret = connectHelper<ICameraClient,Client>(cameraClient, id, |
| 1261 | CAMERA_HAL_API_VERSION_UNSPECIFIED, clientPackageName, clientUid, clientPid, API_1, |
| 1262 | /*legacyMode*/ false, /*shimUpdateOnly*/ false, |
| 1263 | /*out*/client); |
Igor Murashkin | e6800ce | 2013-03-04 17:25:57 -0800 | [diff] [blame] | 1264 | |
Eino-Ville Talvala | d56db1d | 2015-12-17 16:50:35 -0800 | [diff] [blame] | 1265 | if(!ret.isOk()) { |
Svetoslav Ganov | 280405a | 2015-05-12 02:19:27 +0000 | [diff] [blame] | 1266 | logRejected(id, getCallingPid(), String8(clientPackageName), |
Eino-Ville Talvala | d56db1d | 2015-12-17 16:50:35 -0800 | [diff] [blame] | 1267 | ret.toString8()); |
Ruben Brunk | cc77671 | 2015-02-17 20:18:47 -0800 | [diff] [blame] | 1268 | return ret; |
Mathias Agopian | 65ab471 | 2010-07-14 17:59:35 -0700 | [diff] [blame] | 1269 | } |
| 1270 | |
Eino-Ville Talvala | d56db1d | 2015-12-17 16:50:35 -0800 | [diff] [blame] | 1271 | *device = client; |
| 1272 | return ret; |
Mathias Agopian | 65ab471 | 2010-07-14 17:59:35 -0700 | [diff] [blame] | 1273 | } |
| 1274 | |
Eino-Ville Talvala | d56db1d | 2015-12-17 16:50:35 -0800 | [diff] [blame] | 1275 | Status CameraService::connectLegacy( |
Zhijun He | b10cdad | 2014-06-16 16:38:35 -0700 | [diff] [blame] | 1276 | const sp<ICameraClient>& cameraClient, |
| 1277 | int cameraId, int halVersion, |
Svetoslav Ganov | 280405a | 2015-05-12 02:19:27 +0000 | [diff] [blame] | 1278 | const String16& clientPackageName, |
Zhijun He | b10cdad | 2014-06-16 16:38:35 -0700 | [diff] [blame] | 1279 | int clientUid, |
| 1280 | /*out*/ |
Eino-Ville Talvala | d56db1d | 2015-12-17 16:50:35 -0800 | [diff] [blame] | 1281 | sp<ICamera>* device) { |
Zhijun He | b10cdad | 2014-06-16 16:38:35 -0700 | [diff] [blame] | 1282 | |
Eino-Ville Talvala | a84bbe6 | 2015-09-08 17:59:17 -0700 | [diff] [blame] | 1283 | ATRACE_CALL(); |
Ruben Brunk | a8ca915 | 2015-04-07 14:23:40 -0700 | [diff] [blame] | 1284 | String8 id = String8::format("%d", cameraId); |
Chien-Yu Chen | 676b21b | 2015-02-24 10:28:19 -0800 | [diff] [blame] | 1285 | int apiVersion = mModule->getModuleApiVersion(); |
Igor Murashkin | 3d07d1a | 2014-06-20 11:27:03 -0700 | [diff] [blame] | 1286 | if (halVersion != CAMERA_HAL_API_VERSION_UNSPECIFIED && |
Yin-Chia Yeh | e074a93 | 2015-01-30 10:29:02 -0800 | [diff] [blame] | 1287 | apiVersion < CAMERA_MODULE_API_VERSION_2_3) { |
Igor Murashkin | 3d07d1a | 2014-06-20 11:27:03 -0700 | [diff] [blame] | 1288 | /* |
| 1289 | * Either the HAL version is unspecified in which case this just creates |
| 1290 | * a camera client selected by the latest device version, or |
| 1291 | * it's a particular version in which case the HAL must supported |
| 1292 | * the open_legacy call |
| 1293 | */ |
Eino-Ville Talvala | d56db1d | 2015-12-17 16:50:35 -0800 | [diff] [blame] | 1294 | String8 msg = String8::format("Camera HAL module version %x too old for connectLegacy!", |
| 1295 | apiVersion); |
| 1296 | ALOGE("%s: %s", |
| 1297 | __FUNCTION__, msg.string()); |
Svetoslav Ganov | 280405a | 2015-05-12 02:19:27 +0000 | [diff] [blame] | 1298 | logRejected(id, getCallingPid(), String8(clientPackageName), |
Eino-Ville Talvala | d56db1d | 2015-12-17 16:50:35 -0800 | [diff] [blame] | 1299 | msg); |
| 1300 | return STATUS_ERROR(ERROR_ILLEGAL_ARGUMENT, msg.string()); |
Zhijun He | b10cdad | 2014-06-16 16:38:35 -0700 | [diff] [blame] | 1301 | } |
| 1302 | |
Eino-Ville Talvala | d56db1d | 2015-12-17 16:50:35 -0800 | [diff] [blame] | 1303 | Status ret = Status::ok(); |
Ruben Brunk | cc77671 | 2015-02-17 20:18:47 -0800 | [diff] [blame] | 1304 | sp<Client> client = nullptr; |
Eino-Ville Talvala | d56db1d | 2015-12-17 16:50:35 -0800 | [diff] [blame] | 1305 | ret = connectHelper<ICameraClient,Client>(cameraClient, id, halVersion, |
| 1306 | clientPackageName, clientUid, USE_CALLING_PID, API_1, |
| 1307 | /*legacyMode*/ true, /*shimUpdateOnly*/ false, |
| 1308 | /*out*/client); |
Zhijun He | b10cdad | 2014-06-16 16:38:35 -0700 | [diff] [blame] | 1309 | |
Eino-Ville Talvala | d56db1d | 2015-12-17 16:50:35 -0800 | [diff] [blame] | 1310 | if(!ret.isOk()) { |
Svetoslav Ganov | 280405a | 2015-05-12 02:19:27 +0000 | [diff] [blame] | 1311 | logRejected(id, getCallingPid(), String8(clientPackageName), |
Eino-Ville Talvala | d56db1d | 2015-12-17 16:50:35 -0800 | [diff] [blame] | 1312 | ret.toString8()); |
Ruben Brunk | cc77671 | 2015-02-17 20:18:47 -0800 | [diff] [blame] | 1313 | return ret; |
Zhijun He | b10cdad | 2014-06-16 16:38:35 -0700 | [diff] [blame] | 1314 | } |
| 1315 | |
Eino-Ville Talvala | d56db1d | 2015-12-17 16:50:35 -0800 | [diff] [blame] | 1316 | *device = client; |
| 1317 | return ret; |
Zhijun He | b10cdad | 2014-06-16 16:38:35 -0700 | [diff] [blame] | 1318 | } |
| 1319 | |
Eino-Ville Talvala | d56db1d | 2015-12-17 16:50:35 -0800 | [diff] [blame] | 1320 | Status CameraService::connectDevice( |
| 1321 | const sp<hardware::camera2::ICameraDeviceCallbacks>& cameraCb, |
Ruben Brunk | cc77671 | 2015-02-17 20:18:47 -0800 | [diff] [blame] | 1322 | int cameraId, |
Svetoslav Ganov | 280405a | 2015-05-12 02:19:27 +0000 | [diff] [blame] | 1323 | const String16& clientPackageName, |
Ruben Brunk | cc77671 | 2015-02-17 20:18:47 -0800 | [diff] [blame] | 1324 | int clientUid, |
| 1325 | /*out*/ |
Eino-Ville Talvala | d56db1d | 2015-12-17 16:50:35 -0800 | [diff] [blame] | 1326 | sp<hardware::camera2::ICameraDeviceUser>* device) { |
Ruben Brunk | cc77671 | 2015-02-17 20:18:47 -0800 | [diff] [blame] | 1327 | |
Eino-Ville Talvala | a84bbe6 | 2015-09-08 17:59:17 -0700 | [diff] [blame] | 1328 | ATRACE_CALL(); |
Eino-Ville Talvala | d56db1d | 2015-12-17 16:50:35 -0800 | [diff] [blame] | 1329 | Status ret = Status::ok(); |
Ruben Brunk | cc77671 | 2015-02-17 20:18:47 -0800 | [diff] [blame] | 1330 | String8 id = String8::format("%d", cameraId); |
| 1331 | sp<CameraDeviceClient> client = nullptr; |
Eino-Ville Talvala | d56db1d | 2015-12-17 16:50:35 -0800 | [diff] [blame] | 1332 | ret = connectHelper<hardware::camera2::ICameraDeviceCallbacks,CameraDeviceClient>(cameraCb, id, |
| 1333 | CAMERA_HAL_API_VERSION_UNSPECIFIED, clientPackageName, |
| 1334 | clientUid, USE_CALLING_PID, API_2, |
| 1335 | /*legacyMode*/ false, /*shimUpdateOnly*/ false, |
| 1336 | /*out*/client); |
Ruben Brunk | cc77671 | 2015-02-17 20:18:47 -0800 | [diff] [blame] | 1337 | |
Eino-Ville Talvala | d56db1d | 2015-12-17 16:50:35 -0800 | [diff] [blame] | 1338 | if(!ret.isOk()) { |
Svetoslav Ganov | 280405a | 2015-05-12 02:19:27 +0000 | [diff] [blame] | 1339 | logRejected(id, getCallingPid(), String8(clientPackageName), |
Eino-Ville Talvala | d56db1d | 2015-12-17 16:50:35 -0800 | [diff] [blame] | 1340 | ret.toString8()); |
Ruben Brunk | cc77671 | 2015-02-17 20:18:47 -0800 | [diff] [blame] | 1341 | return ret; |
Chien-Yu Chen | 88da526 | 2015-02-17 13:56:46 -0800 | [diff] [blame] | 1342 | } |
| 1343 | |
Eino-Ville Talvala | d56db1d | 2015-12-17 16:50:35 -0800 | [diff] [blame] | 1344 | *device = client; |
| 1345 | return ret; |
Chien-Yu Chen | 88da526 | 2015-02-17 13:56:46 -0800 | [diff] [blame] | 1346 | } |
| 1347 | |
Eino-Ville Talvala | d56db1d | 2015-12-17 16:50:35 -0800 | [diff] [blame] | 1348 | Status CameraService::setTorchMode(const String16& cameraId, bool enabled, |
Chien-Yu Chen | 3068d73 | 2015-02-09 13:29:57 -0800 | [diff] [blame] | 1349 | const sp<IBinder>& clientBinder) { |
Eino-Ville Talvala | a84bbe6 | 2015-09-08 17:59:17 -0700 | [diff] [blame] | 1350 | |
| 1351 | ATRACE_CALL(); |
Ruben Brunk | 99e6971 | 2015-05-26 17:25:07 -0700 | [diff] [blame] | 1352 | if (enabled && clientBinder == nullptr) { |
Chien-Yu Chen | 3068d73 | 2015-02-09 13:29:57 -0800 | [diff] [blame] | 1353 | ALOGE("%s: torch client binder is NULL", __FUNCTION__); |
Eino-Ville Talvala | d56db1d | 2015-12-17 16:50:35 -0800 | [diff] [blame] | 1354 | return STATUS_ERROR(ERROR_ILLEGAL_ARGUMENT, |
| 1355 | "Torch client Binder is null"); |
Chien-Yu Chen | 3068d73 | 2015-02-09 13:29:57 -0800 | [diff] [blame] | 1356 | } |
| 1357 | |
Chien-Yu Chen | 88da526 | 2015-02-17 13:56:46 -0800 | [diff] [blame] | 1358 | String8 id = String8(cameraId.string()); |
Ruben Brunk | 99e6971 | 2015-05-26 17:25:07 -0700 | [diff] [blame] | 1359 | int uid = getCallingUid(); |
Chien-Yu Chen | 88da526 | 2015-02-17 13:56:46 -0800 | [diff] [blame] | 1360 | |
| 1361 | // verify id is valid. |
Ruben Brunk | cc77671 | 2015-02-17 20:18:47 -0800 | [diff] [blame] | 1362 | auto state = getCameraState(id); |
| 1363 | if (state == nullptr) { |
Chien-Yu Chen | f6463fc | 2015-04-07 15:11:31 -0700 | [diff] [blame] | 1364 | ALOGE("%s: camera id is invalid %s", __FUNCTION__, id.string()); |
Eino-Ville Talvala | d56db1d | 2015-12-17 16:50:35 -0800 | [diff] [blame] | 1365 | return STATUS_ERROR_FMT(ERROR_ILLEGAL_ARGUMENT, |
| 1366 | "Camera ID \"%s\" is a not valid camera ID", id.string()); |
Ruben Brunk | cc77671 | 2015-02-17 20:18:47 -0800 | [diff] [blame] | 1367 | } |
| 1368 | |
Eino-Ville Talvala | d56db1d | 2015-12-17 16:50:35 -0800 | [diff] [blame] | 1369 | int32_t cameraStatus = state->getStatus(); |
Ruben Brunk | cc77671 | 2015-02-17 20:18:47 -0800 | [diff] [blame] | 1370 | if (cameraStatus != ICameraServiceListener::STATUS_PRESENT && |
| 1371 | cameraStatus != ICameraServiceListener::STATUS_NOT_AVAILABLE) { |
Chien-Yu Chen | f6463fc | 2015-04-07 15:11:31 -0700 | [diff] [blame] | 1372 | ALOGE("%s: camera id is invalid %s", __FUNCTION__, id.string()); |
Eino-Ville Talvala | d56db1d | 2015-12-17 16:50:35 -0800 | [diff] [blame] | 1373 | return STATUS_ERROR_FMT(ERROR_ILLEGAL_ARGUMENT, |
| 1374 | "Camera ID \"%s\" is a not valid camera ID", id.string()); |
Chien-Yu Chen | 88da526 | 2015-02-17 13:56:46 -0800 | [diff] [blame] | 1375 | } |
| 1376 | |
| 1377 | { |
| 1378 | Mutex::Autolock al(mTorchStatusMutex); |
Eino-Ville Talvala | d56db1d | 2015-12-17 16:50:35 -0800 | [diff] [blame] | 1379 | int32_t status; |
| 1380 | status_t err = getTorchStatusLocked(id, &status); |
| 1381 | if (err != OK) { |
| 1382 | if (err == NAME_NOT_FOUND) { |
| 1383 | return STATUS_ERROR_FMT(ERROR_ILLEGAL_ARGUMENT, |
| 1384 | "Camera \"%s\" does not have a flash unit", id.string()); |
| 1385 | } |
Chien-Yu Chen | 88da526 | 2015-02-17 13:56:46 -0800 | [diff] [blame] | 1386 | ALOGE("%s: getting current torch status failed for camera %s", |
| 1387 | __FUNCTION__, id.string()); |
Eino-Ville Talvala | d56db1d | 2015-12-17 16:50:35 -0800 | [diff] [blame] | 1388 | return STATUS_ERROR_FMT(ERROR_INVALID_OPERATION, |
| 1389 | "Error updating torch status for camera \"%s\": %s (%d)", id.string(), |
| 1390 | strerror(-err), err); |
Chien-Yu Chen | 88da526 | 2015-02-17 13:56:46 -0800 | [diff] [blame] | 1391 | } |
| 1392 | |
| 1393 | if (status == ICameraServiceListener::TORCH_STATUS_NOT_AVAILABLE) { |
Ruben Brunk | cc77671 | 2015-02-17 20:18:47 -0800 | [diff] [blame] | 1394 | if (cameraStatus == ICameraServiceListener::STATUS_NOT_AVAILABLE) { |
Chien-Yu Chen | 88da526 | 2015-02-17 13:56:46 -0800 | [diff] [blame] | 1395 | ALOGE("%s: torch mode of camera %s is not available because " |
| 1396 | "camera is in use", __FUNCTION__, id.string()); |
Eino-Ville Talvala | d56db1d | 2015-12-17 16:50:35 -0800 | [diff] [blame] | 1397 | return STATUS_ERROR_FMT(ERROR_CAMERA_IN_USE, |
| 1398 | "Torch for camera \"%s\" is not available due to an existing camera user", |
| 1399 | id.string()); |
Chien-Yu Chen | 88da526 | 2015-02-17 13:56:46 -0800 | [diff] [blame] | 1400 | } else { |
| 1401 | ALOGE("%s: torch mode of camera %s is not available due to " |
| 1402 | "insufficient resources", __FUNCTION__, id.string()); |
Eino-Ville Talvala | d56db1d | 2015-12-17 16:50:35 -0800 | [diff] [blame] | 1403 | return STATUS_ERROR_FMT(ERROR_MAX_CAMERAS_IN_USE, |
| 1404 | "Torch for camera \"%s\" is not available due to insufficient resources", |
| 1405 | id.string()); |
Chien-Yu Chen | 88da526 | 2015-02-17 13:56:46 -0800 | [diff] [blame] | 1406 | } |
| 1407 | } |
| 1408 | } |
| 1409 | |
Ruben Brunk | 99e6971 | 2015-05-26 17:25:07 -0700 | [diff] [blame] | 1410 | { |
| 1411 | // Update UID map - this is used in the torch status changed callbacks, so must be done |
| 1412 | // before setTorchMode |
Chien-Yu Chen | fe751be | 2015-09-01 14:16:44 -0700 | [diff] [blame] | 1413 | Mutex::Autolock al(mTorchUidMapMutex); |
Ruben Brunk | 99e6971 | 2015-05-26 17:25:07 -0700 | [diff] [blame] | 1414 | if (mTorchUidMap.find(id) == mTorchUidMap.end()) { |
| 1415 | mTorchUidMap[id].first = uid; |
| 1416 | mTorchUidMap[id].second = uid; |
| 1417 | } else { |
| 1418 | // Set the pending UID |
| 1419 | mTorchUidMap[id].first = uid; |
| 1420 | } |
| 1421 | } |
| 1422 | |
Eino-Ville Talvala | d56db1d | 2015-12-17 16:50:35 -0800 | [diff] [blame] | 1423 | status_t err = mFlashlight->setTorchMode(id, enabled); |
Ruben Brunk | 99e6971 | 2015-05-26 17:25:07 -0700 | [diff] [blame] | 1424 | |
Eino-Ville Talvala | d56db1d | 2015-12-17 16:50:35 -0800 | [diff] [blame] | 1425 | if (err != OK) { |
| 1426 | int32_t errorCode; |
| 1427 | String8 msg; |
| 1428 | switch (err) { |
| 1429 | case -ENOSYS: |
| 1430 | msg = String8::format("Camera \"%s\" has no flashlight", |
| 1431 | id.string()); |
| 1432 | errorCode = ERROR_ILLEGAL_ARGUMENT; |
| 1433 | break; |
| 1434 | default: |
| 1435 | msg = String8::format( |
| 1436 | "Setting torch mode of camera \"%s\" to %d failed: %s (%d)", |
| 1437 | id.string(), enabled, strerror(-err), err); |
| 1438 | errorCode = ERROR_INVALID_OPERATION; |
| 1439 | } |
| 1440 | ALOGE("%s: %s", __FUNCTION__, msg.string()); |
| 1441 | return STATUS_ERROR(errorCode, msg.string()); |
Chien-Yu Chen | 3068d73 | 2015-02-09 13:29:57 -0800 | [diff] [blame] | 1442 | } |
| 1443 | |
Chien-Yu Chen | 88da526 | 2015-02-17 13:56:46 -0800 | [diff] [blame] | 1444 | { |
| 1445 | // update the link to client's death |
| 1446 | Mutex::Autolock al(mTorchClientMapMutex); |
| 1447 | ssize_t index = mTorchClientMap.indexOfKey(id); |
| 1448 | if (enabled) { |
| 1449 | if (index == NAME_NOT_FOUND) { |
| 1450 | mTorchClientMap.add(id, clientBinder); |
| 1451 | } else { |
Ruben Brunk | 99e6971 | 2015-05-26 17:25:07 -0700 | [diff] [blame] | 1452 | mTorchClientMap.valueAt(index)->unlinkToDeath(this); |
Chien-Yu Chen | 88da526 | 2015-02-17 13:56:46 -0800 | [diff] [blame] | 1453 | mTorchClientMap.replaceValueAt(index, clientBinder); |
| 1454 | } |
| 1455 | clientBinder->linkToDeath(this); |
| 1456 | } else if (index != NAME_NOT_FOUND) { |
Ruben Brunk | 99e6971 | 2015-05-26 17:25:07 -0700 | [diff] [blame] | 1457 | mTorchClientMap.valueAt(index)->unlinkToDeath(this); |
Chien-Yu Chen | 3068d73 | 2015-02-09 13:29:57 -0800 | [diff] [blame] | 1458 | } |
Chien-Yu Chen | 3068d73 | 2015-02-09 13:29:57 -0800 | [diff] [blame] | 1459 | } |
| 1460 | |
Eino-Ville Talvala | d56db1d | 2015-12-17 16:50:35 -0800 | [diff] [blame] | 1461 | return Status::ok(); |
Chien-Yu Chen | 3068d73 | 2015-02-09 13:29:57 -0800 | [diff] [blame] | 1462 | } |
| 1463 | |
Eino-Ville Talvala | d56db1d | 2015-12-17 16:50:35 -0800 | [diff] [blame] | 1464 | Status CameraService::notifySystemEvent(int32_t eventId, |
| 1465 | const std::vector<int32_t>& args) { |
Eino-Ville Talvala | a84bbe6 | 2015-09-08 17:59:17 -0700 | [diff] [blame] | 1466 | ATRACE_CALL(); |
| 1467 | |
Ruben Brunk | 36597b2 | 2015-03-20 22:15:57 -0700 | [diff] [blame] | 1468 | switch(eventId) { |
Eino-Ville Talvala | d56db1d | 2015-12-17 16:50:35 -0800 | [diff] [blame] | 1469 | case ICameraService::EVENT_USER_SWITCHED: { |
| 1470 | doUserSwitch(/*newUserIds*/ args); |
Ruben Brunk | 36597b2 | 2015-03-20 22:15:57 -0700 | [diff] [blame] | 1471 | break; |
| 1472 | } |
Eino-Ville Talvala | d56db1d | 2015-12-17 16:50:35 -0800 | [diff] [blame] | 1473 | case ICameraService::EVENT_NONE: |
Ruben Brunk | 36597b2 | 2015-03-20 22:15:57 -0700 | [diff] [blame] | 1474 | default: { |
| 1475 | ALOGW("%s: Received invalid system event from system_server: %d", __FUNCTION__, |
| 1476 | eventId); |
| 1477 | break; |
| 1478 | } |
| 1479 | } |
Eino-Ville Talvala | d56db1d | 2015-12-17 16:50:35 -0800 | [diff] [blame] | 1480 | return Status::ok(); |
Ruben Brunk | 36597b2 | 2015-03-20 22:15:57 -0700 | [diff] [blame] | 1481 | } |
| 1482 | |
Eino-Ville Talvala | d56db1d | 2015-12-17 16:50:35 -0800 | [diff] [blame] | 1483 | Status CameraService::addListener(const sp<ICameraServiceListener>& listener) { |
Eino-Ville Talvala | a84bbe6 | 2015-09-08 17:59:17 -0700 | [diff] [blame] | 1484 | ATRACE_CALL(); |
| 1485 | |
Igor Murashkin | bfc9915 | 2013-02-27 12:55:20 -0800 | [diff] [blame] | 1486 | ALOGV("%s: Add listener %p", __FUNCTION__, listener.get()); |
Igor Murashkin | 634a515 | 2013-02-20 17:15:11 -0800 | [diff] [blame] | 1487 | |
Ruben Brunk | 3450ba7 | 2015-06-16 11:00:37 -0700 | [diff] [blame] | 1488 | if (listener == nullptr) { |
Igor Murashkin | bd3e2e0 | 2014-03-17 13:01:41 -0700 | [diff] [blame] | 1489 | ALOGE("%s: Listener must not be null", __FUNCTION__); |
Eino-Ville Talvala | d56db1d | 2015-12-17 16:50:35 -0800 | [diff] [blame] | 1490 | return STATUS_ERROR(ERROR_ILLEGAL_ARGUMENT, "Null listener given to addListener"); |
Igor Murashkin | bd3e2e0 | 2014-03-17 13:01:41 -0700 | [diff] [blame] | 1491 | } |
| 1492 | |
Igor Murashkin | bfc9915 | 2013-02-27 12:55:20 -0800 | [diff] [blame] | 1493 | Mutex::Autolock lock(mServiceLock); |
| 1494 | |
Ruben Brunk | cc77671 | 2015-02-17 20:18:47 -0800 | [diff] [blame] | 1495 | { |
| 1496 | Mutex::Autolock lock(mStatusListenerLock); |
| 1497 | for (auto& it : mListenerList) { |
| 1498 | if (IInterface::asBinder(it) == IInterface::asBinder(listener)) { |
| 1499 | ALOGW("%s: Tried to add listener %p which was already subscribed", |
| 1500 | __FUNCTION__, listener.get()); |
Eino-Ville Talvala | d56db1d | 2015-12-17 16:50:35 -0800 | [diff] [blame] | 1501 | return STATUS_ERROR(ERROR_ALREADY_EXISTS, "Listener already registered"); |
Ruben Brunk | cc77671 | 2015-02-17 20:18:47 -0800 | [diff] [blame] | 1502 | } |
Igor Murashkin | bfc9915 | 2013-02-27 12:55:20 -0800 | [diff] [blame] | 1503 | } |
Ruben Brunk | cc77671 | 2015-02-17 20:18:47 -0800 | [diff] [blame] | 1504 | |
| 1505 | mListenerList.push_back(listener); |
Igor Murashkin | bfc9915 | 2013-02-27 12:55:20 -0800 | [diff] [blame] | 1506 | } |
| 1507 | |
Igor Murashkin | bfc9915 | 2013-02-27 12:55:20 -0800 | [diff] [blame] | 1508 | |
Igor Murashkin | cba2c16 | 2013-03-20 15:56:31 -0700 | [diff] [blame] | 1509 | /* Immediately signal current status to this listener only */ |
| 1510 | { |
Ruben Brunk | cc77671 | 2015-02-17 20:18:47 -0800 | [diff] [blame] | 1511 | Mutex::Autolock lock(mCameraStatesLock); |
| 1512 | for (auto& i : mCameraStates) { |
| 1513 | // TODO: Update binder to use String16 for camera IDs and remove; |
| 1514 | int id = cameraIdToInt(i.first); |
| 1515 | if (id == -1) continue; |
| 1516 | |
| 1517 | listener->onStatusChanged(i.second->getStatus(), id); |
Igor Murashkin | cba2c16 | 2013-03-20 15:56:31 -0700 | [diff] [blame] | 1518 | } |
| 1519 | } |
| 1520 | |
Chien-Yu Chen | 3068d73 | 2015-02-09 13:29:57 -0800 | [diff] [blame] | 1521 | /* Immediately signal current torch status to this listener only */ |
| 1522 | { |
| 1523 | Mutex::Autolock al(mTorchStatusMutex); |
| 1524 | for (size_t i = 0; i < mTorchStatusMap.size(); i++ ) { |
Chien-Yu Chen | 88da526 | 2015-02-17 13:56:46 -0800 | [diff] [blame] | 1525 | String16 id = String16(mTorchStatusMap.keyAt(i).string()); |
| 1526 | listener->onTorchStatusChanged(mTorchStatusMap.valueAt(i), id); |
Chien-Yu Chen | 3068d73 | 2015-02-09 13:29:57 -0800 | [diff] [blame] | 1527 | } |
Chien-Yu Chen | 3068d73 | 2015-02-09 13:29:57 -0800 | [diff] [blame] | 1528 | } |
| 1529 | |
Eino-Ville Talvala | d56db1d | 2015-12-17 16:50:35 -0800 | [diff] [blame] | 1530 | return Status::ok(); |
Igor Murashkin | bfc9915 | 2013-02-27 12:55:20 -0800 | [diff] [blame] | 1531 | } |
Ruben Brunk | cc77671 | 2015-02-17 20:18:47 -0800 | [diff] [blame] | 1532 | |
Eino-Ville Talvala | d56db1d | 2015-12-17 16:50:35 -0800 | [diff] [blame] | 1533 | Status CameraService::removeListener(const sp<ICameraServiceListener>& listener) { |
Eino-Ville Talvala | a84bbe6 | 2015-09-08 17:59:17 -0700 | [diff] [blame] | 1534 | ATRACE_CALL(); |
| 1535 | |
Igor Murashkin | bfc9915 | 2013-02-27 12:55:20 -0800 | [diff] [blame] | 1536 | ALOGV("%s: Remove listener %p", __FUNCTION__, listener.get()); |
| 1537 | |
Igor Murashkin | bd3e2e0 | 2014-03-17 13:01:41 -0700 | [diff] [blame] | 1538 | if (listener == 0) { |
| 1539 | ALOGE("%s: Listener must not be null", __FUNCTION__); |
Eino-Ville Talvala | d56db1d | 2015-12-17 16:50:35 -0800 | [diff] [blame] | 1540 | return STATUS_ERROR(ERROR_ILLEGAL_ARGUMENT, "Null listener given to removeListener"); |
Igor Murashkin | bd3e2e0 | 2014-03-17 13:01:41 -0700 | [diff] [blame] | 1541 | } |
| 1542 | |
Igor Murashkin | bfc9915 | 2013-02-27 12:55:20 -0800 | [diff] [blame] | 1543 | Mutex::Autolock lock(mServiceLock); |
| 1544 | |
Ruben Brunk | cc77671 | 2015-02-17 20:18:47 -0800 | [diff] [blame] | 1545 | { |
| 1546 | Mutex::Autolock lock(mStatusListenerLock); |
| 1547 | for (auto it = mListenerList.begin(); it != mListenerList.end(); it++) { |
| 1548 | if (IInterface::asBinder(*it) == IInterface::asBinder(listener)) { |
| 1549 | mListenerList.erase(it); |
Eino-Ville Talvala | d56db1d | 2015-12-17 16:50:35 -0800 | [diff] [blame] | 1550 | return Status::ok(); |
Ruben Brunk | cc77671 | 2015-02-17 20:18:47 -0800 | [diff] [blame] | 1551 | } |
Igor Murashkin | bfc9915 | 2013-02-27 12:55:20 -0800 | [diff] [blame] | 1552 | } |
| 1553 | } |
| 1554 | |
| 1555 | ALOGW("%s: Tried to remove a listener %p which was not subscribed", |
| 1556 | __FUNCTION__, listener.get()); |
| 1557 | |
Eino-Ville Talvala | d56db1d | 2015-12-17 16:50:35 -0800 | [diff] [blame] | 1558 | return STATUS_ERROR(ERROR_ILLEGAL_ARGUMENT, "Unregistered listener given to removeListener"); |
Igor Murashkin | 634a515 | 2013-02-20 17:15:11 -0800 | [diff] [blame] | 1559 | } |
| 1560 | |
Eino-Ville Talvala | d56db1d | 2015-12-17 16:50:35 -0800 | [diff] [blame] | 1561 | Status CameraService::getLegacyParameters(int cameraId, /*out*/String16* parameters) { |
Eino-Ville Talvala | a84bbe6 | 2015-09-08 17:59:17 -0700 | [diff] [blame] | 1562 | |
| 1563 | ATRACE_CALL(); |
Igor Murashkin | 65d14b9 | 2014-06-17 12:03:20 -0700 | [diff] [blame] | 1564 | ALOGV("%s: for camera ID = %d", __FUNCTION__, cameraId); |
| 1565 | |
| 1566 | if (parameters == NULL) { |
| 1567 | ALOGE("%s: parameters must not be null", __FUNCTION__); |
Eino-Ville Talvala | d56db1d | 2015-12-17 16:50:35 -0800 | [diff] [blame] | 1568 | return STATUS_ERROR(ERROR_ILLEGAL_ARGUMENT, "Parameters must not be null"); |
Igor Murashkin | 65d14b9 | 2014-06-17 12:03:20 -0700 | [diff] [blame] | 1569 | } |
| 1570 | |
Eino-Ville Talvala | d56db1d | 2015-12-17 16:50:35 -0800 | [diff] [blame] | 1571 | Status ret = Status::ok(); |
Igor Murashkin | 65d14b9 | 2014-06-17 12:03:20 -0700 | [diff] [blame] | 1572 | |
| 1573 | CameraParameters shimParams; |
Eino-Ville Talvala | d56db1d | 2015-12-17 16:50:35 -0800 | [diff] [blame] | 1574 | if (!(ret = getLegacyParametersLazy(cameraId, /*out*/&shimParams)).isOk()) { |
Igor Murashkin | 65d14b9 | 2014-06-17 12:03:20 -0700 | [diff] [blame] | 1575 | // Error logged by caller |
| 1576 | return ret; |
| 1577 | } |
| 1578 | |
| 1579 | String8 shimParamsString8 = shimParams.flatten(); |
| 1580 | String16 shimParamsString16 = String16(shimParamsString8); |
| 1581 | |
| 1582 | *parameters = shimParamsString16; |
| 1583 | |
Eino-Ville Talvala | d56db1d | 2015-12-17 16:50:35 -0800 | [diff] [blame] | 1584 | return ret; |
Igor Murashkin | 65d14b9 | 2014-06-17 12:03:20 -0700 | [diff] [blame] | 1585 | } |
| 1586 | |
Eino-Ville Talvala | d56db1d | 2015-12-17 16:50:35 -0800 | [diff] [blame] | 1587 | Status CameraService::supportsCameraApi(int cameraId, int apiVersion, bool *isSupported) { |
Eino-Ville Talvala | a84bbe6 | 2015-09-08 17:59:17 -0700 | [diff] [blame] | 1588 | ATRACE_CALL(); |
| 1589 | |
Igor Murashkin | 65d14b9 | 2014-06-17 12:03:20 -0700 | [diff] [blame] | 1590 | ALOGV("%s: for camera ID = %d", __FUNCTION__, cameraId); |
| 1591 | |
| 1592 | switch (apiVersion) { |
| 1593 | case API_VERSION_1: |
| 1594 | case API_VERSION_2: |
| 1595 | break; |
| 1596 | default: |
Eino-Ville Talvala | d56db1d | 2015-12-17 16:50:35 -0800 | [diff] [blame] | 1597 | String8 msg = String8::format("Unknown API version %d", apiVersion); |
| 1598 | ALOGE("%s: %s", __FUNCTION__, msg.string()); |
| 1599 | return STATUS_ERROR(ERROR_ILLEGAL_ARGUMENT, msg.string()); |
Igor Murashkin | 65d14b9 | 2014-06-17 12:03:20 -0700 | [diff] [blame] | 1600 | } |
| 1601 | |
| 1602 | int facing = -1; |
| 1603 | int deviceVersion = getDeviceVersion(cameraId, &facing); |
| 1604 | |
| 1605 | switch(deviceVersion) { |
Eino-Ville Talvala | d56db1d | 2015-12-17 16:50:35 -0800 | [diff] [blame] | 1606 | case CAMERA_DEVICE_API_VERSION_1_0: |
| 1607 | case CAMERA_DEVICE_API_VERSION_3_0: |
| 1608 | case CAMERA_DEVICE_API_VERSION_3_1: |
| 1609 | if (apiVersion == API_VERSION_2) { |
| 1610 | ALOGV("%s: Camera id %d uses HAL version %d <3.2, doesn't support api2 without shim", |
| 1611 | __FUNCTION__, cameraId, deviceVersion); |
| 1612 | *isSupported = false; |
| 1613 | } else { // if (apiVersion == API_VERSION_1) { |
| 1614 | ALOGV("%s: Camera id %d uses older HAL before 3.2, but api1 is always supported", |
| 1615 | __FUNCTION__, cameraId); |
| 1616 | *isSupported = true; |
| 1617 | } |
| 1618 | break; |
| 1619 | case CAMERA_DEVICE_API_VERSION_3_2: |
| 1620 | case CAMERA_DEVICE_API_VERSION_3_3: |
| 1621 | ALOGV("%s: Camera id %d uses HAL3.2 or newer, supports api1/api2 directly", |
Igor Murashkin | 65d14b9 | 2014-06-17 12:03:20 -0700 | [diff] [blame] | 1622 | __FUNCTION__, cameraId); |
Eino-Ville Talvala | d56db1d | 2015-12-17 16:50:35 -0800 | [diff] [blame] | 1623 | *isSupported = true; |
| 1624 | break; |
| 1625 | case -1: { |
| 1626 | String8 msg = String8::format("Unknown camera ID %d", cameraId); |
| 1627 | ALOGE("%s: %s", __FUNCTION__, msg.string()); |
| 1628 | return STATUS_ERROR(ERROR_ILLEGAL_ARGUMENT, msg.string()); |
Igor Murashkin | 65d14b9 | 2014-06-17 12:03:20 -0700 | [diff] [blame] | 1629 | } |
Eino-Ville Talvala | d56db1d | 2015-12-17 16:50:35 -0800 | [diff] [blame] | 1630 | default: { |
| 1631 | String8 msg = String8::format("Unknown device version %d for device %d", |
| 1632 | deviceVersion, cameraId); |
| 1633 | ALOGE("%s: %s", __FUNCTION__, msg.string()); |
| 1634 | return STATUS_ERROR(ERROR_INVALID_OPERATION, msg.string()); |
| 1635 | } |
Igor Murashkin | 65d14b9 | 2014-06-17 12:03:20 -0700 | [diff] [blame] | 1636 | } |
| 1637 | |
Eino-Ville Talvala | d56db1d | 2015-12-17 16:50:35 -0800 | [diff] [blame] | 1638 | return Status::ok(); |
Igor Murashkin | 65d14b9 | 2014-06-17 12:03:20 -0700 | [diff] [blame] | 1639 | } |
| 1640 | |
Ruben Brunk | cc77671 | 2015-02-17 20:18:47 -0800 | [diff] [blame] | 1641 | void CameraService::removeByClient(const BasicClient* client) { |
Igor Murashkin | ecf17e8 | 2012-10-02 16:05:11 -0700 | [diff] [blame] | 1642 | Mutex::Autolock lock(mServiceLock); |
Ruben Brunk | cc77671 | 2015-02-17 20:18:47 -0800 | [diff] [blame] | 1643 | for (auto& i : mActiveClientManager.getAll()) { |
| 1644 | auto clientSp = i->getValue(); |
| 1645 | if (clientSp.get() == client) { |
| 1646 | mActiveClientManager.remove(i); |
Igor Murashkin | 634a515 | 2013-02-20 17:15:11 -0800 | [diff] [blame] | 1647 | } |
Igor Murashkin | ecf17e8 | 2012-10-02 16:05:11 -0700 | [diff] [blame] | 1648 | } |
Igor Murashkin | 634a515 | 2013-02-20 17:15:11 -0800 | [diff] [blame] | 1649 | } |
| 1650 | |
Ruben Brunk | cc77671 | 2015-02-17 20:18:47 -0800 | [diff] [blame] | 1651 | bool CameraService::evictClientIdByRemote(const wp<IBinder>& remote) { |
| 1652 | const int callingPid = getCallingPid(); |
| 1653 | const int servicePid = getpid(); |
| 1654 | bool ret = false; |
| 1655 | { |
| 1656 | // Acquire mServiceLock and prevent other clients from connecting |
| 1657 | std::unique_ptr<AutoConditionLock> lock = |
| 1658 | AutoConditionLock::waitAndAcquire(mServiceLockWrapper); |
Igor Murashkin | 634a515 | 2013-02-20 17:15:11 -0800 | [diff] [blame] | 1659 | |
Igor Murashkin | 634a515 | 2013-02-20 17:15:11 -0800 | [diff] [blame] | 1660 | |
Ruben Brunk | cc77671 | 2015-02-17 20:18:47 -0800 | [diff] [blame] | 1661 | std::vector<sp<BasicClient>> evicted; |
| 1662 | for (auto& i : mActiveClientManager.getAll()) { |
| 1663 | auto clientSp = i->getValue(); |
| 1664 | if (clientSp.get() == nullptr) { |
| 1665 | ALOGE("%s: Dead client still in mActiveClientManager.", __FUNCTION__); |
| 1666 | mActiveClientManager.remove(i); |
| 1667 | continue; |
| 1668 | } |
| 1669 | if (remote == clientSp->getRemote() && (callingPid == servicePid || |
| 1670 | callingPid == clientSp->getClientPid())) { |
| 1671 | mActiveClientManager.remove(i); |
| 1672 | evicted.push_back(clientSp); |
Igor Murashkin | 634a515 | 2013-02-20 17:15:11 -0800 | [diff] [blame] | 1673 | |
Ruben Brunk | cc77671 | 2015-02-17 20:18:47 -0800 | [diff] [blame] | 1674 | // Notify the client of disconnection |
Eino-Ville Talvala | d56db1d | 2015-12-17 16:50:35 -0800 | [diff] [blame] | 1675 | clientSp->notifyError( |
| 1676 | hardware::camera2::ICameraDeviceCallbacks::ERROR_CAMERA_DISCONNECTED, |
Ruben Brunk | cc77671 | 2015-02-17 20:18:47 -0800 | [diff] [blame] | 1677 | CaptureResultExtras()); |
Igor Murashkin | 634a515 | 2013-02-20 17:15:11 -0800 | [diff] [blame] | 1678 | } |
| 1679 | } |
| 1680 | |
Ruben Brunk | cc77671 | 2015-02-17 20:18:47 -0800 | [diff] [blame] | 1681 | // Do not hold mServiceLock while disconnecting clients, but retain the condition blocking |
| 1682 | // other clients from connecting in mServiceLockWrapper if held |
| 1683 | mServiceLock.unlock(); |
| 1684 | |
Ruben Brunk | 36597b2 | 2015-03-20 22:15:57 -0700 | [diff] [blame] | 1685 | // Do not clear caller identity, remote caller should be client proccess |
| 1686 | |
Ruben Brunk | cc77671 | 2015-02-17 20:18:47 -0800 | [diff] [blame] | 1687 | for (auto& i : evicted) { |
| 1688 | if (i.get() != nullptr) { |
| 1689 | i->disconnect(); |
| 1690 | ret = true; |
| 1691 | } |
Igor Murashkin | 634a515 | 2013-02-20 17:15:11 -0800 | [diff] [blame] | 1692 | } |
| 1693 | |
Ruben Brunk | cc77671 | 2015-02-17 20:18:47 -0800 | [diff] [blame] | 1694 | // Reacquire mServiceLock |
| 1695 | mServiceLock.lock(); |
Igor Murashkin | 634a515 | 2013-02-20 17:15:11 -0800 | [diff] [blame] | 1696 | |
Ruben Brunk | cc77671 | 2015-02-17 20:18:47 -0800 | [diff] [blame] | 1697 | } // lock is destroyed, allow further connect calls |
| 1698 | |
| 1699 | return ret; |
Igor Murashkin | ecf17e8 | 2012-10-02 16:05:11 -0700 | [diff] [blame] | 1700 | } |
| 1701 | |
Igor Murashkin | ecf17e8 | 2012-10-02 16:05:11 -0700 | [diff] [blame] | 1702 | |
Eino-Ville Talvala | bad4358 | 2015-08-14 13:12:32 -0700 | [diff] [blame] | 1703 | /** |
| 1704 | * Check camera capabilities, such as support for basic color operation |
Eino-Ville Talvala | d309fb9 | 2015-11-25 12:12:45 -0800 | [diff] [blame] | 1705 | * Also check that the device HAL version is still in support |
Eino-Ville Talvala | bad4358 | 2015-08-14 13:12:32 -0700 | [diff] [blame] | 1706 | */ |
| 1707 | int CameraService::checkCameraCapabilities(int id, camera_info info, int *latestStrangeCameraId) { |
Yin-Chia Yeh | 654b4bf | 2015-12-08 12:19:31 -0800 | [diff] [blame] | 1708 | // device_version undefined in CAMERA_MODULE_API_VERSION_1_0, |
| 1709 | // All CAMERA_MODULE_API_VERSION_1_0 devices are backward-compatible |
| 1710 | if (mModule->getModuleApiVersion() >= CAMERA_MODULE_API_VERSION_2_0) { |
| 1711 | // Verify the device version is in the supported range |
| 1712 | switch (info.device_version) { |
| 1713 | case CAMERA_DEVICE_API_VERSION_1_0: |
| 1714 | case CAMERA_DEVICE_API_VERSION_3_0: |
| 1715 | case CAMERA_DEVICE_API_VERSION_3_1: |
| 1716 | case CAMERA_DEVICE_API_VERSION_3_2: |
| 1717 | case CAMERA_DEVICE_API_VERSION_3_3: |
| 1718 | // in support |
| 1719 | break; |
| 1720 | case CAMERA_DEVICE_API_VERSION_2_0: |
| 1721 | case CAMERA_DEVICE_API_VERSION_2_1: |
| 1722 | // no longer supported |
| 1723 | default: |
| 1724 | ALOGE("%s: Device %d has HAL version %x, which is not supported", |
| 1725 | __FUNCTION__, id, info.device_version); |
| 1726 | String8 msg = String8::format( |
| 1727 | "Unsupported device HAL version %x for device %d", |
| 1728 | info.device_version, id); |
| 1729 | logServiceError(msg.string(), NO_INIT); |
| 1730 | return NO_INIT; |
| 1731 | } |
Eino-Ville Talvala | d309fb9 | 2015-11-25 12:12:45 -0800 | [diff] [blame] | 1732 | } |
| 1733 | |
Eino-Ville Talvala | bad4358 | 2015-08-14 13:12:32 -0700 | [diff] [blame] | 1734 | // Assume all devices pre-v3.3 are backward-compatible |
| 1735 | bool isBackwardCompatible = true; |
| 1736 | if (mModule->getModuleApiVersion() >= CAMERA_MODULE_API_VERSION_2_0 |
| 1737 | && info.device_version >= CAMERA_DEVICE_API_VERSION_3_3) { |
| 1738 | isBackwardCompatible = false; |
| 1739 | status_t res; |
| 1740 | camera_metadata_ro_entry_t caps; |
| 1741 | res = find_camera_metadata_ro_entry( |
| 1742 | info.static_camera_characteristics, |
| 1743 | ANDROID_REQUEST_AVAILABLE_CAPABILITIES, |
| 1744 | &caps); |
| 1745 | if (res != 0) { |
| 1746 | ALOGW("%s: Unable to find camera capabilities for camera device %d", |
| 1747 | __FUNCTION__, id); |
| 1748 | caps.count = 0; |
| 1749 | } |
| 1750 | for (size_t i = 0; i < caps.count; i++) { |
| 1751 | if (caps.data.u8[i] == |
| 1752 | ANDROID_REQUEST_AVAILABLE_CAPABILITIES_BACKWARD_COMPATIBLE) { |
| 1753 | isBackwardCompatible = true; |
| 1754 | break; |
| 1755 | } |
| 1756 | } |
| 1757 | } |
| 1758 | |
| 1759 | if (!isBackwardCompatible) { |
| 1760 | mNumberOfNormalCameras--; |
| 1761 | *latestStrangeCameraId = id; |
| 1762 | } else { |
| 1763 | if (id > *latestStrangeCameraId) { |
| 1764 | ALOGE("%s: Normal camera ID %d higher than strange camera ID %d. " |
| 1765 | "This is not allowed due backward-compatibility requirements", |
| 1766 | __FUNCTION__, id, *latestStrangeCameraId); |
Eino-Ville Talvala | d309fb9 | 2015-11-25 12:12:45 -0800 | [diff] [blame] | 1767 | logServiceError("Invalid order of camera devices", NO_INIT); |
Eino-Ville Talvala | bad4358 | 2015-08-14 13:12:32 -0700 | [diff] [blame] | 1768 | mNumberOfCameras = 0; |
| 1769 | mNumberOfNormalCameras = 0; |
Eino-Ville Talvala | d309fb9 | 2015-11-25 12:12:45 -0800 | [diff] [blame] | 1770 | return NO_INIT; |
Eino-Ville Talvala | bad4358 | 2015-08-14 13:12:32 -0700 | [diff] [blame] | 1771 | } |
| 1772 | } |
| 1773 | return OK; |
| 1774 | } |
| 1775 | |
Ruben Brunk | cc77671 | 2015-02-17 20:18:47 -0800 | [diff] [blame] | 1776 | std::shared_ptr<CameraService::CameraState> CameraService::getCameraState( |
| 1777 | const String8& cameraId) const { |
| 1778 | std::shared_ptr<CameraState> state; |
| 1779 | { |
| 1780 | Mutex::Autolock lock(mCameraStatesLock); |
| 1781 | auto iter = mCameraStates.find(cameraId); |
| 1782 | if (iter != mCameraStates.end()) { |
| 1783 | state = iter->second; |
Mathias Agopian | 65ab471 | 2010-07-14 17:59:35 -0700 | [diff] [blame] | 1784 | } |
| 1785 | } |
Ruben Brunk | cc77671 | 2015-02-17 20:18:47 -0800 | [diff] [blame] | 1786 | return state; |
Mathias Agopian | 65ab471 | 2010-07-14 17:59:35 -0700 | [diff] [blame] | 1787 | } |
| 1788 | |
Ruben Brunk | cc77671 | 2015-02-17 20:18:47 -0800 | [diff] [blame] | 1789 | sp<CameraService::BasicClient> CameraService::removeClientLocked(const String8& cameraId) { |
| 1790 | // Remove from active clients list |
| 1791 | auto clientDescriptorPtr = mActiveClientManager.remove(cameraId); |
| 1792 | if (clientDescriptorPtr == nullptr) { |
| 1793 | ALOGW("%s: Could not evict client, no client for camera ID %s", __FUNCTION__, |
| 1794 | cameraId.string()); |
| 1795 | return sp<BasicClient>{nullptr}; |
| 1796 | } |
| 1797 | |
| 1798 | return clientDescriptorPtr->getValue(); |
Keun young Park | d8973a7 | 2012-03-28 14:13:09 -0700 | [diff] [blame] | 1799 | } |
| 1800 | |
Eino-Ville Talvala | d56db1d | 2015-12-17 16:50:35 -0800 | [diff] [blame] | 1801 | void CameraService::doUserSwitch(const std::vector<int32_t>& newUserIds) { |
Ruben Brunk | 36597b2 | 2015-03-20 22:15:57 -0700 | [diff] [blame] | 1802 | // Acquire mServiceLock and prevent other clients from connecting |
| 1803 | std::unique_ptr<AutoConditionLock> lock = |
| 1804 | AutoConditionLock::waitAndAcquire(mServiceLockWrapper); |
| 1805 | |
Ruben Brunk | 6267b53 | 2015-04-30 17:44:07 -0700 | [diff] [blame] | 1806 | std::set<userid_t> newAllowedUsers; |
Eino-Ville Talvala | d56db1d | 2015-12-17 16:50:35 -0800 | [diff] [blame] | 1807 | for (size_t i = 0; i < newUserIds.size(); i++) { |
| 1808 | if (newUserIds[i] < 0) { |
Ruben Brunk | 6267b53 | 2015-04-30 17:44:07 -0700 | [diff] [blame] | 1809 | ALOGE("%s: Bad user ID %d given during user switch, ignoring.", |
Eino-Ville Talvala | d56db1d | 2015-12-17 16:50:35 -0800 | [diff] [blame] | 1810 | __FUNCTION__, newUserIds[i]); |
Ruben Brunk | 6267b53 | 2015-04-30 17:44:07 -0700 | [diff] [blame] | 1811 | return; |
| 1812 | } |
Eino-Ville Talvala | d56db1d | 2015-12-17 16:50:35 -0800 | [diff] [blame] | 1813 | newAllowedUsers.insert(static_cast<userid_t>(newUserIds[i])); |
Ruben Brunk | 36597b2 | 2015-03-20 22:15:57 -0700 | [diff] [blame] | 1814 | } |
| 1815 | |
Ruben Brunk | a8ca915 | 2015-04-07 14:23:40 -0700 | [diff] [blame] | 1816 | |
Ruben Brunk | 6267b53 | 2015-04-30 17:44:07 -0700 | [diff] [blame] | 1817 | if (newAllowedUsers == mAllowedUsers) { |
| 1818 | ALOGW("%s: Received notification of user switch with no updated user IDs.", __FUNCTION__); |
| 1819 | return; |
| 1820 | } |
| 1821 | |
| 1822 | logUserSwitch(mAllowedUsers, newAllowedUsers); |
| 1823 | |
| 1824 | mAllowedUsers = std::move(newAllowedUsers); |
Ruben Brunk | 36597b2 | 2015-03-20 22:15:57 -0700 | [diff] [blame] | 1825 | |
| 1826 | // Current user has switched, evict all current clients. |
| 1827 | std::vector<sp<BasicClient>> evicted; |
| 1828 | for (auto& i : mActiveClientManager.getAll()) { |
| 1829 | auto clientSp = i->getValue(); |
| 1830 | |
| 1831 | if (clientSp.get() == nullptr) { |
| 1832 | ALOGE("%s: Dead client still in mActiveClientManager.", __FUNCTION__); |
| 1833 | continue; |
| 1834 | } |
| 1835 | |
Ruben Brunk | 6267b53 | 2015-04-30 17:44:07 -0700 | [diff] [blame] | 1836 | // Don't evict clients that are still allowed. |
| 1837 | uid_t clientUid = clientSp->getClientUid(); |
| 1838 | userid_t clientUserId = multiuser_get_user_id(clientUid); |
| 1839 | if (mAllowedUsers.find(clientUserId) != mAllowedUsers.end()) { |
| 1840 | continue; |
| 1841 | } |
| 1842 | |
Ruben Brunk | 36597b2 | 2015-03-20 22:15:57 -0700 | [diff] [blame] | 1843 | evicted.push_back(clientSp); |
| 1844 | |
| 1845 | String8 curTime = getFormattedCurrentTime(); |
| 1846 | |
| 1847 | ALOGE("Evicting conflicting client for camera ID %s due to user change", |
| 1848 | i->getKey().string()); |
Ruben Brunk | a8ca915 | 2015-04-07 14:23:40 -0700 | [diff] [blame] | 1849 | |
Ruben Brunk | 36597b2 | 2015-03-20 22:15:57 -0700 | [diff] [blame] | 1850 | // Log the clients evicted |
Ruben Brunk | a8ca915 | 2015-04-07 14:23:40 -0700 | [diff] [blame] | 1851 | logEvent(String8::format("EVICT device %s client held by package %s (PID %" |
Ruben Brunk | 36597b2 | 2015-03-20 22:15:57 -0700 | [diff] [blame] | 1852 | PRId32 ", priority %" PRId32 ")\n - Evicted due to user switch.", |
Ruben Brunk | a8ca915 | 2015-04-07 14:23:40 -0700 | [diff] [blame] | 1853 | i->getKey().string(), String8{clientSp->getPackageName()}.string(), |
| 1854 | i->getOwnerId(), i->getPriority())); |
Ruben Brunk | 36597b2 | 2015-03-20 22:15:57 -0700 | [diff] [blame] | 1855 | |
| 1856 | } |
| 1857 | |
| 1858 | // Do not hold mServiceLock while disconnecting clients, but retain the condition |
| 1859 | // blocking other clients from connecting in mServiceLockWrapper if held. |
| 1860 | mServiceLock.unlock(); |
| 1861 | |
| 1862 | // Clear caller identity temporarily so client disconnect PID checks work correctly |
| 1863 | int64_t token = IPCThreadState::self()->clearCallingIdentity(); |
| 1864 | |
| 1865 | for (auto& i : evicted) { |
| 1866 | i->disconnect(); |
| 1867 | } |
| 1868 | |
| 1869 | IPCThreadState::self()->restoreCallingIdentity(token); |
| 1870 | |
| 1871 | // Reacquire mServiceLock |
| 1872 | mServiceLock.lock(); |
| 1873 | } |
Ruben Brunk | cc77671 | 2015-02-17 20:18:47 -0800 | [diff] [blame] | 1874 | |
Ruben Brunk | a8ca915 | 2015-04-07 14:23:40 -0700 | [diff] [blame] | 1875 | void CameraService::logEvent(const char* event) { |
Ruben Brunk | cc77671 | 2015-02-17 20:18:47 -0800 | [diff] [blame] | 1876 | String8 curTime = getFormattedCurrentTime(); |
Ruben Brunk | a8ca915 | 2015-04-07 14:23:40 -0700 | [diff] [blame] | 1877 | Mutex::Autolock l(mLogLock); |
| 1878 | mEventLog.add(String8::format("%s : %s", curTime.string(), event)); |
Mathias Agopian | 65ab471 | 2010-07-14 17:59:35 -0700 | [diff] [blame] | 1879 | } |
| 1880 | |
Ruben Brunk | a8ca915 | 2015-04-07 14:23:40 -0700 | [diff] [blame] | 1881 | void CameraService::logDisconnected(const char* cameraId, int clientPid, |
Svetoslav Ganov | 280405a | 2015-05-12 02:19:27 +0000 | [diff] [blame] | 1882 | const char* clientPackage) { |
Ruben Brunk | cc77671 | 2015-02-17 20:18:47 -0800 | [diff] [blame] | 1883 | // Log the clients evicted |
Ruben Brunk | a8ca915 | 2015-04-07 14:23:40 -0700 | [diff] [blame] | 1884 | logEvent(String8::format("DISCONNECT device %s client for package %s (PID %d)", cameraId, |
Svetoslav Ganov | 280405a | 2015-05-12 02:19:27 +0000 | [diff] [blame] | 1885 | clientPackage, clientPid)); |
Ruben Brunk | a8ca915 | 2015-04-07 14:23:40 -0700 | [diff] [blame] | 1886 | } |
| 1887 | |
| 1888 | void CameraService::logConnected(const char* cameraId, int clientPid, |
Svetoslav Ganov | 280405a | 2015-05-12 02:19:27 +0000 | [diff] [blame] | 1889 | const char* clientPackage) { |
Ruben Brunk | a8ca915 | 2015-04-07 14:23:40 -0700 | [diff] [blame] | 1890 | // Log the clients evicted |
| 1891 | logEvent(String8::format("CONNECT device %s client for package %s (PID %d)", cameraId, |
Svetoslav Ganov | 280405a | 2015-05-12 02:19:27 +0000 | [diff] [blame] | 1892 | clientPackage, clientPid)); |
Ruben Brunk | a8ca915 | 2015-04-07 14:23:40 -0700 | [diff] [blame] | 1893 | } |
| 1894 | |
| 1895 | void CameraService::logRejected(const char* cameraId, int clientPid, |
Svetoslav Ganov | 280405a | 2015-05-12 02:19:27 +0000 | [diff] [blame] | 1896 | const char* clientPackage, const char* reason) { |
Ruben Brunk | a8ca915 | 2015-04-07 14:23:40 -0700 | [diff] [blame] | 1897 | // Log the client rejected |
| 1898 | logEvent(String8::format("REJECT device %s client for package %s (PID %d), reason: (%s)", |
Svetoslav Ganov | 280405a | 2015-05-12 02:19:27 +0000 | [diff] [blame] | 1899 | cameraId, clientPackage, clientPid, reason)); |
Ruben Brunk | a8ca915 | 2015-04-07 14:23:40 -0700 | [diff] [blame] | 1900 | } |
| 1901 | |
Ruben Brunk | 6267b53 | 2015-04-30 17:44:07 -0700 | [diff] [blame] | 1902 | void CameraService::logUserSwitch(const std::set<userid_t>& oldUserIds, |
| 1903 | const std::set<userid_t>& newUserIds) { |
| 1904 | String8 newUsers = toString(newUserIds); |
| 1905 | String8 oldUsers = toString(oldUserIds); |
Ruben Brunk | a8ca915 | 2015-04-07 14:23:40 -0700 | [diff] [blame] | 1906 | // Log the new and old users |
Ruben Brunk | 6267b53 | 2015-04-30 17:44:07 -0700 | [diff] [blame] | 1907 | logEvent(String8::format("USER_SWITCH previous allowed users: %s , current allowed users: %s", |
| 1908 | oldUsers.string(), newUsers.string())); |
Ruben Brunk | a8ca915 | 2015-04-07 14:23:40 -0700 | [diff] [blame] | 1909 | } |
| 1910 | |
| 1911 | void CameraService::logDeviceRemoved(const char* cameraId, const char* reason) { |
| 1912 | // Log the device removal |
| 1913 | logEvent(String8::format("REMOVE device %s, reason: (%s)", cameraId, reason)); |
| 1914 | } |
| 1915 | |
| 1916 | void CameraService::logDeviceAdded(const char* cameraId, const char* reason) { |
| 1917 | // Log the device removal |
| 1918 | logEvent(String8::format("ADD device %s, reason: (%s)", cameraId, reason)); |
| 1919 | } |
| 1920 | |
| 1921 | void CameraService::logClientDied(int clientPid, const char* reason) { |
| 1922 | // Log the device removal |
| 1923 | logEvent(String8::format("DIED client(s) with PID %d, reason: (%s)", clientPid, reason)); |
Igor Murashkin | ecf17e8 | 2012-10-02 16:05:11 -0700 | [diff] [blame] | 1924 | } |
| 1925 | |
Eino-Ville Talvala | 1527f07 | 2015-04-07 15:55:31 -0700 | [diff] [blame] | 1926 | void CameraService::logServiceError(const char* msg, int errorCode) { |
| 1927 | String8 curTime = getFormattedCurrentTime(); |
Eino-Ville Talvala | d309fb9 | 2015-11-25 12:12:45 -0800 | [diff] [blame] | 1928 | logEvent(String8::format("SERVICE ERROR: %s : %d (%s)", msg, errorCode, strerror(-errorCode))); |
Eino-Ville Talvala | 1527f07 | 2015-04-07 15:55:31 -0700 | [diff] [blame] | 1929 | } |
| 1930 | |
Ruben Brunk | 36597b2 | 2015-03-20 22:15:57 -0700 | [diff] [blame] | 1931 | status_t CameraService::onTransact(uint32_t code, const Parcel& data, Parcel* reply, |
| 1932 | uint32_t flags) { |
| 1933 | |
| 1934 | const int pid = getCallingPid(); |
| 1935 | const int selfPid = getpid(); |
| 1936 | |
Mathias Agopian | 65ab471 | 2010-07-14 17:59:35 -0700 | [diff] [blame] | 1937 | // Permission checks |
| 1938 | switch (code) { |
Eino-Ville Talvala | d56db1d | 2015-12-17 16:50:35 -0800 | [diff] [blame] | 1939 | case BnCameraService::NOTIFYSYSTEMEVENT: { |
Ruben Brunk | 36597b2 | 2015-03-20 22:15:57 -0700 | [diff] [blame] | 1940 | if (pid != selfPid) { |
| 1941 | // Ensure we're being called by system_server, or similar process with |
| 1942 | // permissions to notify the camera service about system events |
| 1943 | if (!checkCallingPermission( |
| 1944 | String16("android.permission.CAMERA_SEND_SYSTEM_EVENTS"))) { |
| 1945 | const int uid = getCallingUid(); |
| 1946 | ALOGE("Permission Denial: cannot send updates to camera service about system" |
| 1947 | " events from pid=%d, uid=%d", pid, uid); |
| 1948 | return PERMISSION_DENIED; |
| 1949 | } |
| 1950 | } |
| 1951 | break; |
| 1952 | } |
Mathias Agopian | 65ab471 | 2010-07-14 17:59:35 -0700 | [diff] [blame] | 1953 | } |
| 1954 | |
| 1955 | return BnCameraService::onTransact(code, data, reply, flags); |
| 1956 | } |
| 1957 | |
Mathias Agopian | 65ab471 | 2010-07-14 17:59:35 -0700 | [diff] [blame] | 1958 | // We share the media players for shutter and recording sound for all clients. |
| 1959 | // A reference count is kept to determine when we will actually release the |
| 1960 | // media players. |
| 1961 | |
Chih-Chung Chang | ff4f55c | 2011-10-17 19:03:12 +0800 | [diff] [blame] | 1962 | MediaPlayer* CameraService::newMediaPlayer(const char *file) { |
Mathias Agopian | 65ab471 | 2010-07-14 17:59:35 -0700 | [diff] [blame] | 1963 | MediaPlayer* mp = new MediaPlayer(); |
Andreas Huber | 1b86fe0 | 2014-01-29 11:13:26 -0800 | [diff] [blame] | 1964 | if (mp->setDataSource(NULL /* httpService */, file, NULL) == NO_ERROR) { |
Eino-Ville Talvala | 60a78ac | 2012-01-05 15:34:53 -0800 | [diff] [blame] | 1965 | mp->setAudioStreamType(AUDIO_STREAM_ENFORCED_AUDIBLE); |
Mathias Agopian | 65ab471 | 2010-07-14 17:59:35 -0700 | [diff] [blame] | 1966 | mp->prepare(); |
| 1967 | } else { |
Steve Block | 29357bc | 2012-01-06 19:20:56 +0000 | [diff] [blame] | 1968 | ALOGE("Failed to load CameraService sounds: %s", file); |
Mathias Agopian | 65ab471 | 2010-07-14 17:59:35 -0700 | [diff] [blame] | 1969 | return NULL; |
| 1970 | } |
| 1971 | return mp; |
| 1972 | } |
| 1973 | |
| 1974 | void CameraService::loadSound() { |
Eino-Ville Talvala | a84bbe6 | 2015-09-08 17:59:17 -0700 | [diff] [blame] | 1975 | ATRACE_CALL(); |
| 1976 | |
Mathias Agopian | 65ab471 | 2010-07-14 17:59:35 -0700 | [diff] [blame] | 1977 | Mutex::Autolock lock(mSoundLock); |
| 1978 | LOG1("CameraService::loadSound ref=%d", mSoundRef); |
| 1979 | if (mSoundRef++) return; |
| 1980 | |
| 1981 | mSoundPlayer[SOUND_SHUTTER] = newMediaPlayer("/system/media/audio/ui/camera_click.ogg"); |
Chien-Yu Chen | 82104eb | 2015-10-14 11:29:31 -0700 | [diff] [blame] | 1982 | mSoundPlayer[SOUND_RECORDING_START] = newMediaPlayer("/system/media/audio/ui/VideoRecord.ogg"); |
| 1983 | mSoundPlayer[SOUND_RECORDING_STOP] = newMediaPlayer("/system/media/audio/ui/VideoStop.ogg"); |
Mathias Agopian | 65ab471 | 2010-07-14 17:59:35 -0700 | [diff] [blame] | 1984 | } |
| 1985 | |
| 1986 | void CameraService::releaseSound() { |
| 1987 | Mutex::Autolock lock(mSoundLock); |
| 1988 | LOG1("CameraService::releaseSound ref=%d", mSoundRef); |
| 1989 | if (--mSoundRef) return; |
| 1990 | |
| 1991 | for (int i = 0; i < NUM_SOUNDS; i++) { |
| 1992 | if (mSoundPlayer[i] != 0) { |
| 1993 | mSoundPlayer[i]->disconnect(); |
| 1994 | mSoundPlayer[i].clear(); |
| 1995 | } |
| 1996 | } |
| 1997 | } |
| 1998 | |
| 1999 | void CameraService::playSound(sound_kind kind) { |
Eino-Ville Talvala | a84bbe6 | 2015-09-08 17:59:17 -0700 | [diff] [blame] | 2000 | ATRACE_CALL(); |
| 2001 | |
Mathias Agopian | 65ab471 | 2010-07-14 17:59:35 -0700 | [diff] [blame] | 2002 | LOG1("playSound(%d)", kind); |
| 2003 | Mutex::Autolock lock(mSoundLock); |
| 2004 | sp<MediaPlayer> player = mSoundPlayer[kind]; |
| 2005 | if (player != 0) { |
Chih-Chung Chang | 8888a75 | 2011-10-20 10:47:26 +0800 | [diff] [blame] | 2006 | player->seekTo(0); |
| 2007 | player->start(); |
Mathias Agopian | 65ab471 | 2010-07-14 17:59:35 -0700 | [diff] [blame] | 2008 | } |
| 2009 | } |
| 2010 | |
| 2011 | // ---------------------------------------------------------------------------- |
| 2012 | |
| 2013 | CameraService::Client::Client(const sp<CameraService>& cameraService, |
Wu-cheng Li | b7a6794 | 2010-08-17 15:45:37 -0700 | [diff] [blame] | 2014 | const sp<ICameraClient>& cameraClient, |
Svetoslav Ganov | 280405a | 2015-05-12 02:19:27 +0000 | [diff] [blame] | 2015 | const String16& clientPackageName, |
Eino-Ville Talvala | ceb388d | 2013-02-19 10:40:14 -0800 | [diff] [blame] | 2016 | int cameraId, int cameraFacing, |
| 2017 | int clientPid, uid_t clientUid, |
| 2018 | int servicePid) : |
Eino-Ville Talvala | e992e75 | 2014-11-07 16:17:48 -0800 | [diff] [blame] | 2019 | CameraService::BasicClient(cameraService, |
Marco Nelissen | f888020 | 2014-11-14 07:58:25 -0800 | [diff] [blame] | 2020 | IInterface::asBinder(cameraClient), |
Svetoslav Ganov | 280405a | 2015-05-12 02:19:27 +0000 | [diff] [blame] | 2021 | clientPackageName, |
Eino-Ville Talvala | ceb388d | 2013-02-19 10:40:14 -0800 | [diff] [blame] | 2022 | cameraId, cameraFacing, |
| 2023 | clientPid, clientUid, |
| 2024 | servicePid) |
Igor Murashkin | 634a515 | 2013-02-20 17:15:11 -0800 | [diff] [blame] | 2025 | { |
Mathias Agopian | 65ab471 | 2010-07-14 17:59:35 -0700 | [diff] [blame] | 2026 | int callingPid = getCallingPid(); |
Wu-cheng Li | 2fd2440 | 2012-02-23 19:01:00 -0800 | [diff] [blame] | 2027 | LOG1("Client::Client E (pid %d, id %d)", callingPid, cameraId); |
Mathias Agopian | 65ab471 | 2010-07-14 17:59:35 -0700 | [diff] [blame] | 2028 | |
Igor Murashkin | 44cfcf0 | 2013-03-01 16:22:28 -0800 | [diff] [blame] | 2029 | mRemoteCallback = cameraClient; |
Mathias Agopian | 65ab471 | 2010-07-14 17:59:35 -0700 | [diff] [blame] | 2030 | |
Mathias Agopian | 65ab471 | 2010-07-14 17:59:35 -0700 | [diff] [blame] | 2031 | cameraService->loadSound(); |
Eino-Ville Talvala | ceb388d | 2013-02-19 10:40:14 -0800 | [diff] [blame] | 2032 | |
Wu-cheng Li | 2fd2440 | 2012-02-23 19:01:00 -0800 | [diff] [blame] | 2033 | LOG1("Client::Client X (pid %d, id %d)", callingPid, cameraId); |
Mathias Agopian | 65ab471 | 2010-07-14 17:59:35 -0700 | [diff] [blame] | 2034 | } |
| 2035 | |
Mathias Agopian | 65ab471 | 2010-07-14 17:59:35 -0700 | [diff] [blame] | 2036 | // tear down the client |
| 2037 | CameraService::Client::~Client() { |
Eino-Ville Talvala | d09801b | 2013-04-23 15:16:57 -0700 | [diff] [blame] | 2038 | ALOGV("~Client"); |
Igor Murashkin | 634a515 | 2013-02-20 17:15:11 -0800 | [diff] [blame] | 2039 | mDestructionStarted = true; |
| 2040 | |
Eino-Ville Talvala | f69c70d | 2012-05-20 15:59:14 -0700 | [diff] [blame] | 2041 | mCameraService->releaseSound(); |
Igor Murashkin | 036bc3e | 2012-10-08 15:09:46 -0700 | [diff] [blame] | 2042 | // unconditionally disconnect. function is idempotent |
| 2043 | Client::disconnect(); |
Mathias Agopian | 65ab471 | 2010-07-14 17:59:35 -0700 | [diff] [blame] | 2044 | } |
| 2045 | |
Igor Murashkin | 634a515 | 2013-02-20 17:15:11 -0800 | [diff] [blame] | 2046 | CameraService::BasicClient::BasicClient(const sp<CameraService>& cameraService, |
Eino-Ville Talvala | ceb388d | 2013-02-19 10:40:14 -0800 | [diff] [blame] | 2047 | const sp<IBinder>& remoteCallback, |
Svetoslav Ganov | 280405a | 2015-05-12 02:19:27 +0000 | [diff] [blame] | 2048 | const String16& clientPackageName, |
Eino-Ville Talvala | ceb388d | 2013-02-19 10:40:14 -0800 | [diff] [blame] | 2049 | int cameraId, int cameraFacing, |
| 2050 | int clientPid, uid_t clientUid, |
| 2051 | int servicePid): |
Svetoslav Ganov | 280405a | 2015-05-12 02:19:27 +0000 | [diff] [blame] | 2052 | mClientPackageName(clientPackageName), mDisconnected(false) |
Igor Murashkin | 634a515 | 2013-02-20 17:15:11 -0800 | [diff] [blame] | 2053 | { |
| 2054 | mCameraService = cameraService; |
Igor Murashkin | 44cfcf0 | 2013-03-01 16:22:28 -0800 | [diff] [blame] | 2055 | mRemoteBinder = remoteCallback; |
Igor Murashkin | 634a515 | 2013-02-20 17:15:11 -0800 | [diff] [blame] | 2056 | mCameraId = cameraId; |
| 2057 | mCameraFacing = cameraFacing; |
| 2058 | mClientPid = clientPid; |
Eino-Ville Talvala | ceb388d | 2013-02-19 10:40:14 -0800 | [diff] [blame] | 2059 | mClientUid = clientUid; |
Igor Murashkin | 634a515 | 2013-02-20 17:15:11 -0800 | [diff] [blame] | 2060 | mServicePid = servicePid; |
Eino-Ville Talvala | ceb388d | 2013-02-19 10:40:14 -0800 | [diff] [blame] | 2061 | mOpsActive = false; |
Igor Murashkin | 634a515 | 2013-02-20 17:15:11 -0800 | [diff] [blame] | 2062 | mDestructionStarted = false; |
Yin-Chia Yeh | 0dea57f | 2015-12-09 16:46:07 -0800 | [diff] [blame] | 2063 | |
| 2064 | // In some cases the calling code has no access to the package it runs under. |
| 2065 | // For example, NDK camera API. |
| 2066 | // In this case we will get the packages for the calling UID and pick the first one |
| 2067 | // for attributing the app op. This will work correctly for runtime permissions |
| 2068 | // as for legacy apps we will toggle the app op for all packages in the UID. |
| 2069 | // The caveat is that the operation may be attributed to the wrong package and |
| 2070 | // stats based on app ops may be slightly off. |
| 2071 | if (mClientPackageName.size() <= 0) { |
| 2072 | sp<IServiceManager> sm = defaultServiceManager(); |
| 2073 | sp<IBinder> binder = sm->getService(String16(kPermissionServiceName)); |
| 2074 | if (binder == 0) { |
| 2075 | ALOGE("Cannot get permission service"); |
| 2076 | // Leave mClientPackageName unchanged (empty) and the further interaction |
| 2077 | // with camera will fail in BasicClient::startCameraOps |
| 2078 | return; |
| 2079 | } |
| 2080 | |
| 2081 | sp<IPermissionController> permCtrl = interface_cast<IPermissionController>(binder); |
| 2082 | Vector<String16> packages; |
| 2083 | |
| 2084 | permCtrl->getPackagesForUid(mClientUid, packages); |
| 2085 | |
| 2086 | if (packages.isEmpty()) { |
| 2087 | ALOGE("No packages for calling UID"); |
| 2088 | // Leave mClientPackageName unchanged (empty) and the further interaction |
| 2089 | // with camera will fail in BasicClient::startCameraOps |
| 2090 | return; |
| 2091 | } |
| 2092 | mClientPackageName = packages[0]; |
| 2093 | } |
Igor Murashkin | 634a515 | 2013-02-20 17:15:11 -0800 | [diff] [blame] | 2094 | } |
| 2095 | |
| 2096 | CameraService::BasicClient::~BasicClient() { |
Eino-Ville Talvala | d09801b | 2013-04-23 15:16:57 -0700 | [diff] [blame] | 2097 | ALOGV("~BasicClient"); |
Igor Murashkin | 634a515 | 2013-02-20 17:15:11 -0800 | [diff] [blame] | 2098 | mDestructionStarted = true; |
| 2099 | } |
| 2100 | |
Eino-Ville Talvala | d56db1d | 2015-12-17 16:50:35 -0800 | [diff] [blame] | 2101 | binder::Status CameraService::BasicClient::disconnect() { |
| 2102 | binder::Status res = Status::ok(); |
Ruben Brunk | 36597b2 | 2015-03-20 22:15:57 -0700 | [diff] [blame] | 2103 | if (mDisconnected) { |
Eino-Ville Talvala | d56db1d | 2015-12-17 16:50:35 -0800 | [diff] [blame] | 2104 | return res; |
Ruben Brunk | 36597b2 | 2015-03-20 22:15:57 -0700 | [diff] [blame] | 2105 | } |
Eino-Ville Talvala | 24901c8 | 2015-09-04 14:15:58 -0700 | [diff] [blame] | 2106 | mDisconnected = true; |
Ruben Brunk | cc77671 | 2015-02-17 20:18:47 -0800 | [diff] [blame] | 2107 | |
| 2108 | mCameraService->removeByClient(this); |
| 2109 | mCameraService->logDisconnected(String8::format("%d", mCameraId), mClientPid, |
Svetoslav Ganov | 280405a | 2015-05-12 02:19:27 +0000 | [diff] [blame] | 2110 | String8(mClientPackageName)); |
Ruben Brunk | cc77671 | 2015-02-17 20:18:47 -0800 | [diff] [blame] | 2111 | |
| 2112 | sp<IBinder> remote = getRemote(); |
| 2113 | if (remote != nullptr) { |
| 2114 | remote->unlinkToDeath(mCameraService); |
| 2115 | } |
Eino-Ville Talvala | f67e23e | 2014-07-23 17:17:59 -0700 | [diff] [blame] | 2116 | |
| 2117 | finishCameraOps(); |
Ruben Brunk | cc77671 | 2015-02-17 20:18:47 -0800 | [diff] [blame] | 2118 | ALOGI("%s: Disconnected client for camera %d for PID %d", __FUNCTION__, mCameraId, mClientPid); |
| 2119 | |
Igor Murashkin | cba2c16 | 2013-03-20 15:56:31 -0700 | [diff] [blame] | 2120 | // client shouldn't be able to call into us anymore |
| 2121 | mClientPid = 0; |
Eino-Ville Talvala | d56db1d | 2015-12-17 16:50:35 -0800 | [diff] [blame] | 2122 | |
| 2123 | return res; |
Igor Murashkin | 634a515 | 2013-02-20 17:15:11 -0800 | [diff] [blame] | 2124 | } |
| 2125 | |
Eino-Ville Talvala | c400396 | 2016-01-13 10:07:04 -0800 | [diff] [blame] | 2126 | status_t CameraService::BasicClient::dump(int, const Vector<String16>&) { |
| 2127 | // No dumping of clients directly over Binder, |
| 2128 | // must go through CameraService::dump |
| 2129 | android_errorWriteWithInfoLog(SN_EVENT_LOG_ID, "26265403", |
| 2130 | IPCThreadState::self()->getCallingUid(), NULL, 0); |
| 2131 | return OK; |
| 2132 | } |
| 2133 | |
Ruben Brunk | cc77671 | 2015-02-17 20:18:47 -0800 | [diff] [blame] | 2134 | String16 CameraService::BasicClient::getPackageName() const { |
Svetoslav Ganov | 280405a | 2015-05-12 02:19:27 +0000 | [diff] [blame] | 2135 | return mClientPackageName; |
Ruben Brunk | cc77671 | 2015-02-17 20:18:47 -0800 | [diff] [blame] | 2136 | } |
| 2137 | |
| 2138 | |
| 2139 | int CameraService::BasicClient::getClientPid() const { |
| 2140 | return mClientPid; |
| 2141 | } |
| 2142 | |
Ruben Brunk | 6267b53 | 2015-04-30 17:44:07 -0700 | [diff] [blame] | 2143 | uid_t CameraService::BasicClient::getClientUid() const { |
| 2144 | return mClientUid; |
| 2145 | } |
| 2146 | |
Ruben Brunk | 0bbf8b2 | 2015-04-30 14:35:42 -0700 | [diff] [blame] | 2147 | bool CameraService::BasicClient::canCastToApiClient(apiLevel level) const { |
| 2148 | // Defaults to API2. |
| 2149 | return level == API_2; |
| 2150 | } |
| 2151 | |
Eino-Ville Talvala | ceb388d | 2013-02-19 10:40:14 -0800 | [diff] [blame] | 2152 | status_t CameraService::BasicClient::startCameraOps() { |
Eino-Ville Talvala | a84bbe6 | 2015-09-08 17:59:17 -0700 | [diff] [blame] | 2153 | ATRACE_CALL(); |
| 2154 | |
Eino-Ville Talvala | ceb388d | 2013-02-19 10:40:14 -0800 | [diff] [blame] | 2155 | int32_t res; |
Eino-Ville Talvala | f67e23e | 2014-07-23 17:17:59 -0700 | [diff] [blame] | 2156 | // Notify app ops that the camera is not available |
Eino-Ville Talvala | ceb388d | 2013-02-19 10:40:14 -0800 | [diff] [blame] | 2157 | mOpsCallback = new OpsCallback(this); |
| 2158 | |
Igor Murashkin | e6800ce | 2013-03-04 17:25:57 -0800 | [diff] [blame] | 2159 | { |
| 2160 | ALOGV("%s: Start camera ops, package name = %s, client UID = %d", |
Svetoslav Ganov | 280405a | 2015-05-12 02:19:27 +0000 | [diff] [blame] | 2161 | __FUNCTION__, String8(mClientPackageName).string(), mClientUid); |
Igor Murashkin | e6800ce | 2013-03-04 17:25:57 -0800 | [diff] [blame] | 2162 | } |
| 2163 | |
Eino-Ville Talvala | ceb388d | 2013-02-19 10:40:14 -0800 | [diff] [blame] | 2164 | mAppOpsManager.startWatchingMode(AppOpsManager::OP_CAMERA, |
Svetoslav Ganov | 280405a | 2015-05-12 02:19:27 +0000 | [diff] [blame] | 2165 | mClientPackageName, mOpsCallback); |
Eino-Ville Talvala | ceb388d | 2013-02-19 10:40:14 -0800 | [diff] [blame] | 2166 | res = mAppOpsManager.startOp(AppOpsManager::OP_CAMERA, |
Svetoslav Ganov | 280405a | 2015-05-12 02:19:27 +0000 | [diff] [blame] | 2167 | mClientUid, mClientPackageName); |
Eino-Ville Talvala | ceb388d | 2013-02-19 10:40:14 -0800 | [diff] [blame] | 2168 | |
Svetoslav | 28e8ef7 | 2015-05-11 19:21:31 -0700 | [diff] [blame] | 2169 | if (res == AppOpsManager::MODE_ERRORED) { |
Eino-Ville Talvala | ceb388d | 2013-02-19 10:40:14 -0800 | [diff] [blame] | 2170 | ALOGI("Camera %d: Access for \"%s\" has been revoked", |
Svetoslav Ganov | 280405a | 2015-05-12 02:19:27 +0000 | [diff] [blame] | 2171 | mCameraId, String8(mClientPackageName).string()); |
Eino-Ville Talvala | ceb388d | 2013-02-19 10:40:14 -0800 | [diff] [blame] | 2172 | return PERMISSION_DENIED; |
| 2173 | } |
Eino-Ville Talvala | f67e23e | 2014-07-23 17:17:59 -0700 | [diff] [blame] | 2174 | |
Svetoslav | 28e8ef7 | 2015-05-11 19:21:31 -0700 | [diff] [blame] | 2175 | if (res == AppOpsManager::MODE_IGNORED) { |
| 2176 | ALOGI("Camera %d: Access for \"%s\" has been restricted", |
| 2177 | mCameraId, String8(mClientPackageName).string()); |
Eino-Ville Talvala | e3afb2c | 2015-06-03 16:03:30 -0700 | [diff] [blame] | 2178 | // Return the same error as for device policy manager rejection |
| 2179 | return -EACCES; |
Svetoslav | 28e8ef7 | 2015-05-11 19:21:31 -0700 | [diff] [blame] | 2180 | } |
| 2181 | |
Eino-Ville Talvala | ceb388d | 2013-02-19 10:40:14 -0800 | [diff] [blame] | 2182 | mOpsActive = true; |
Eino-Ville Talvala | f67e23e | 2014-07-23 17:17:59 -0700 | [diff] [blame] | 2183 | |
| 2184 | // Transition device availability listeners from PRESENT -> NOT_AVAILABLE |
| 2185 | mCameraService->updateStatus(ICameraServiceListener::STATUS_NOT_AVAILABLE, |
Ruben Brunk | cc77671 | 2015-02-17 20:18:47 -0800 | [diff] [blame] | 2186 | String8::format("%d", mCameraId)); |
Eino-Ville Talvala | f67e23e | 2014-07-23 17:17:59 -0700 | [diff] [blame] | 2187 | |
Eino-Ville Talvala | 412fe56 | 2015-08-20 17:08:32 -0700 | [diff] [blame] | 2188 | // Transition device state to OPEN |
| 2189 | mCameraService->updateProxyDeviceState(ICameraServiceProxy::CAMERA_STATE_OPEN, |
| 2190 | String8::format("%d", mCameraId)); |
| 2191 | |
Eino-Ville Talvala | ceb388d | 2013-02-19 10:40:14 -0800 | [diff] [blame] | 2192 | return OK; |
| 2193 | } |
| 2194 | |
| 2195 | status_t CameraService::BasicClient::finishCameraOps() { |
Eino-Ville Talvala | a84bbe6 | 2015-09-08 17:59:17 -0700 | [diff] [blame] | 2196 | ATRACE_CALL(); |
| 2197 | |
Eino-Ville Talvala | f67e23e | 2014-07-23 17:17:59 -0700 | [diff] [blame] | 2198 | // Check if startCameraOps succeeded, and if so, finish the camera op |
Eino-Ville Talvala | ceb388d | 2013-02-19 10:40:14 -0800 | [diff] [blame] | 2199 | if (mOpsActive) { |
Eino-Ville Talvala | f67e23e | 2014-07-23 17:17:59 -0700 | [diff] [blame] | 2200 | // Notify app ops that the camera is available again |
Eino-Ville Talvala | ceb388d | 2013-02-19 10:40:14 -0800 | [diff] [blame] | 2201 | mAppOpsManager.finishOp(AppOpsManager::OP_CAMERA, mClientUid, |
Svetoslav Ganov | 280405a | 2015-05-12 02:19:27 +0000 | [diff] [blame] | 2202 | mClientPackageName); |
Eino-Ville Talvala | ceb388d | 2013-02-19 10:40:14 -0800 | [diff] [blame] | 2203 | mOpsActive = false; |
Eino-Ville Talvala | f67e23e | 2014-07-23 17:17:59 -0700 | [diff] [blame] | 2204 | |
Eino-Ville Talvala | d56db1d | 2015-12-17 16:50:35 -0800 | [diff] [blame] | 2205 | std::initializer_list<int32_t> rejected = {ICameraServiceListener::STATUS_NOT_PRESENT, |
Ruben Brunk | cc77671 | 2015-02-17 20:18:47 -0800 | [diff] [blame] | 2206 | ICameraServiceListener::STATUS_ENUMERATING}; |
Eino-Ville Talvala | f67e23e | 2014-07-23 17:17:59 -0700 | [diff] [blame] | 2207 | |
Ruben Brunk | cc77671 | 2015-02-17 20:18:47 -0800 | [diff] [blame] | 2208 | // Transition to PRESENT if the camera is not in either of the rejected states |
Eino-Ville Talvala | f67e23e | 2014-07-23 17:17:59 -0700 | [diff] [blame] | 2209 | mCameraService->updateStatus(ICameraServiceListener::STATUS_PRESENT, |
Ruben Brunk | cc77671 | 2015-02-17 20:18:47 -0800 | [diff] [blame] | 2210 | String8::format("%d", mCameraId), rejected); |
Eino-Ville Talvala | f67e23e | 2014-07-23 17:17:59 -0700 | [diff] [blame] | 2211 | |
Eino-Ville Talvala | 412fe56 | 2015-08-20 17:08:32 -0700 | [diff] [blame] | 2212 | // Transition device state to CLOSED |
| 2213 | mCameraService->updateProxyDeviceState(ICameraServiceProxy::CAMERA_STATE_CLOSED, |
| 2214 | String8::format("%d", mCameraId)); |
| 2215 | |
Chien-Yu Chen | 88da526 | 2015-02-17 13:56:46 -0800 | [diff] [blame] | 2216 | // Notify flashlight that a camera device is closed. |
| 2217 | mCameraService->mFlashlight->deviceClosed( |
| 2218 | String8::format("%d", mCameraId)); |
Eino-Ville Talvala | ceb388d | 2013-02-19 10:40:14 -0800 | [diff] [blame] | 2219 | } |
Eino-Ville Talvala | f67e23e | 2014-07-23 17:17:59 -0700 | [diff] [blame] | 2220 | // Always stop watching, even if no camera op is active |
Eino-Ville Talvala | e992e75 | 2014-11-07 16:17:48 -0800 | [diff] [blame] | 2221 | if (mOpsCallback != NULL) { |
| 2222 | mAppOpsManager.stopWatchingMode(mOpsCallback); |
| 2223 | } |
Eino-Ville Talvala | ceb388d | 2013-02-19 10:40:14 -0800 | [diff] [blame] | 2224 | mOpsCallback.clear(); |
| 2225 | |
| 2226 | return OK; |
| 2227 | } |
| 2228 | |
| 2229 | void CameraService::BasicClient::opChanged(int32_t op, const String16& packageName) { |
Eino-Ville Talvala | a84bbe6 | 2015-09-08 17:59:17 -0700 | [diff] [blame] | 2230 | ATRACE_CALL(); |
| 2231 | |
Eino-Ville Talvala | ceb388d | 2013-02-19 10:40:14 -0800 | [diff] [blame] | 2232 | String8 name(packageName); |
Svetoslav Ganov | 280405a | 2015-05-12 02:19:27 +0000 | [diff] [blame] | 2233 | String8 myName(mClientPackageName); |
Eino-Ville Talvala | ceb388d | 2013-02-19 10:40:14 -0800 | [diff] [blame] | 2234 | |
| 2235 | if (op != AppOpsManager::OP_CAMERA) { |
| 2236 | ALOGW("Unexpected app ops notification received: %d", op); |
| 2237 | return; |
| 2238 | } |
| 2239 | |
| 2240 | int32_t res; |
| 2241 | res = mAppOpsManager.checkOp(AppOpsManager::OP_CAMERA, |
Svetoslav Ganov | 280405a | 2015-05-12 02:19:27 +0000 | [diff] [blame] | 2242 | mClientUid, mClientPackageName); |
Eino-Ville Talvala | ceb388d | 2013-02-19 10:40:14 -0800 | [diff] [blame] | 2243 | ALOGV("checkOp returns: %d, %s ", res, |
| 2244 | res == AppOpsManager::MODE_ALLOWED ? "ALLOWED" : |
| 2245 | res == AppOpsManager::MODE_IGNORED ? "IGNORED" : |
| 2246 | res == AppOpsManager::MODE_ERRORED ? "ERRORED" : |
| 2247 | "UNKNOWN"); |
| 2248 | |
| 2249 | if (res != AppOpsManager::MODE_ALLOWED) { |
| 2250 | ALOGI("Camera %d: Access for \"%s\" revoked", mCameraId, |
| 2251 | myName.string()); |
| 2252 | // Reset the client PID to allow server-initiated disconnect, |
| 2253 | // and to prevent further calls by client. |
| 2254 | mClientPid = getCallingPid(); |
Jianing Wei | cb0652e | 2014-03-12 18:29:36 -0700 | [diff] [blame] | 2255 | CaptureResultExtras resultExtras; // a dummy result (invalid) |
Eino-Ville Talvala | d56db1d | 2015-12-17 16:50:35 -0800 | [diff] [blame] | 2256 | notifyError(hardware::camera2::ICameraDeviceCallbacks::ERROR_CAMERA_SERVICE, resultExtras); |
Eino-Ville Talvala | ceb388d | 2013-02-19 10:40:14 -0800 | [diff] [blame] | 2257 | disconnect(); |
| 2258 | } |
| 2259 | } |
| 2260 | |
Mathias Agopian | 65ab471 | 2010-07-14 17:59:35 -0700 | [diff] [blame] | 2261 | // ---------------------------------------------------------------------------- |
| 2262 | |
Ruben Brunk | cc77671 | 2015-02-17 20:18:47 -0800 | [diff] [blame] | 2263 | // Provide client strong pointer for callbacks. |
| 2264 | sp<CameraService::Client> CameraService::Client::getClientFromCookie(void* user) { |
| 2265 | String8 cameraId = String8::format("%d", (int)(intptr_t) user); |
| 2266 | auto clientDescriptor = gCameraService->mActiveClientManager.get(cameraId); |
| 2267 | if (clientDescriptor != nullptr) { |
| 2268 | return sp<Client>{ |
| 2269 | static_cast<Client*>(clientDescriptor->getValue().get())}; |
| 2270 | } |
| 2271 | return sp<Client>{nullptr}; |
Mathias Agopian | 65ab471 | 2010-07-14 17:59:35 -0700 | [diff] [blame] | 2272 | } |
| 2273 | |
Eino-Ville Talvala | d56db1d | 2015-12-17 16:50:35 -0800 | [diff] [blame] | 2274 | void CameraService::Client::notifyError(int32_t errorCode, |
Jianing Wei | cb0652e | 2014-03-12 18:29:36 -0700 | [diff] [blame] | 2275 | const CaptureResultExtras& resultExtras) { |
Eino-Ville Talvala | d309fb9 | 2015-11-25 12:12:45 -0800 | [diff] [blame] | 2276 | (void) errorCode; |
| 2277 | (void) resultExtras; |
Ranjith Kagathi Ananda | 3e60089 | 2015-10-08 16:00:33 -0700 | [diff] [blame] | 2278 | if (mRemoteCallback != NULL) { |
| 2279 | mRemoteCallback->notifyCallback(CAMERA_MSG_ERROR, CAMERA_ERROR_RELEASED, 0); |
| 2280 | } else { |
| 2281 | ALOGE("mRemoteCallback is NULL!!"); |
| 2282 | } |
Eino-Ville Talvala | ceb388d | 2013-02-19 10:40:14 -0800 | [diff] [blame] | 2283 | } |
| 2284 | |
Igor Murashkin | 036bc3e | 2012-10-08 15:09:46 -0700 | [diff] [blame] | 2285 | // NOTE: function is idempotent |
Eino-Ville Talvala | d56db1d | 2015-12-17 16:50:35 -0800 | [diff] [blame] | 2286 | binder::Status CameraService::Client::disconnect() { |
Eino-Ville Talvala | d09801b | 2013-04-23 15:16:57 -0700 | [diff] [blame] | 2287 | ALOGV("Client::disconnect"); |
Eino-Ville Talvala | d56db1d | 2015-12-17 16:50:35 -0800 | [diff] [blame] | 2288 | return BasicClient::disconnect(); |
Wu-cheng Li | e09591e | 2010-10-14 20:17:44 +0800 | [diff] [blame] | 2289 | } |
| 2290 | |
Ruben Brunk | 0bbf8b2 | 2015-04-30 14:35:42 -0700 | [diff] [blame] | 2291 | bool CameraService::Client::canCastToApiClient(apiLevel level) const { |
| 2292 | return level == API_1; |
| 2293 | } |
| 2294 | |
Eino-Ville Talvala | ceb388d | 2013-02-19 10:40:14 -0800 | [diff] [blame] | 2295 | CameraService::Client::OpsCallback::OpsCallback(wp<BasicClient> client): |
| 2296 | mClient(client) { |
| 2297 | } |
| 2298 | |
| 2299 | void CameraService::Client::OpsCallback::opChanged(int32_t op, |
| 2300 | const String16& packageName) { |
| 2301 | sp<BasicClient> client = mClient.promote(); |
| 2302 | if (client != NULL) { |
| 2303 | client->opChanged(op, packageName); |
| 2304 | } |
| 2305 | } |
| 2306 | |
Mathias Agopian | 65ab471 | 2010-07-14 17:59:35 -0700 | [diff] [blame] | 2307 | // ---------------------------------------------------------------------------- |
Ruben Brunk | cc77671 | 2015-02-17 20:18:47 -0800 | [diff] [blame] | 2308 | // CameraState |
| 2309 | // ---------------------------------------------------------------------------- |
| 2310 | |
| 2311 | CameraService::CameraState::CameraState(const String8& id, int cost, |
| 2312 | const std::set<String8>& conflicting) : mId(id), |
| 2313 | mStatus(ICameraServiceListener::STATUS_PRESENT), mCost(cost), mConflicting(conflicting) {} |
| 2314 | |
| 2315 | CameraService::CameraState::~CameraState() {} |
| 2316 | |
Eino-Ville Talvala | d56db1d | 2015-12-17 16:50:35 -0800 | [diff] [blame] | 2317 | int32_t CameraService::CameraState::getStatus() const { |
Ruben Brunk | cc77671 | 2015-02-17 20:18:47 -0800 | [diff] [blame] | 2318 | Mutex::Autolock lock(mStatusLock); |
| 2319 | return mStatus; |
| 2320 | } |
| 2321 | |
| 2322 | CameraParameters CameraService::CameraState::getShimParams() const { |
| 2323 | return mShimParams; |
| 2324 | } |
| 2325 | |
| 2326 | void CameraService::CameraState::setShimParams(const CameraParameters& params) { |
| 2327 | mShimParams = params; |
| 2328 | } |
| 2329 | |
| 2330 | int CameraService::CameraState::getCost() const { |
| 2331 | return mCost; |
| 2332 | } |
| 2333 | |
| 2334 | std::set<String8> CameraService::CameraState::getConflicting() const { |
| 2335 | return mConflicting; |
| 2336 | } |
| 2337 | |
| 2338 | String8 CameraService::CameraState::getId() const { |
| 2339 | return mId; |
| 2340 | } |
| 2341 | |
| 2342 | // ---------------------------------------------------------------------------- |
Ruben Brunk | 99e6971 | 2015-05-26 17:25:07 -0700 | [diff] [blame] | 2343 | // ClientEventListener |
| 2344 | // ---------------------------------------------------------------------------- |
| 2345 | |
| 2346 | void CameraService::ClientEventListener::onClientAdded( |
| 2347 | const resource_policy::ClientDescriptor<String8, |
| 2348 | sp<CameraService::BasicClient>>& descriptor) { |
| 2349 | auto basicClient = descriptor.getValue(); |
| 2350 | if (basicClient.get() != nullptr) { |
| 2351 | BatteryNotifier& notifier(BatteryNotifier::getInstance()); |
| 2352 | notifier.noteStartCamera(descriptor.getKey(), |
| 2353 | static_cast<int>(basicClient->getClientUid())); |
| 2354 | } |
| 2355 | } |
| 2356 | |
| 2357 | void CameraService::ClientEventListener::onClientRemoved( |
| 2358 | const resource_policy::ClientDescriptor<String8, |
| 2359 | sp<CameraService::BasicClient>>& descriptor) { |
| 2360 | auto basicClient = descriptor.getValue(); |
| 2361 | if (basicClient.get() != nullptr) { |
| 2362 | BatteryNotifier& notifier(BatteryNotifier::getInstance()); |
| 2363 | notifier.noteStopCamera(descriptor.getKey(), |
| 2364 | static_cast<int>(basicClient->getClientUid())); |
| 2365 | } |
| 2366 | } |
| 2367 | |
| 2368 | |
| 2369 | // ---------------------------------------------------------------------------- |
Ruben Brunk | cc77671 | 2015-02-17 20:18:47 -0800 | [diff] [blame] | 2370 | // CameraClientManager |
| 2371 | // ---------------------------------------------------------------------------- |
| 2372 | |
Ruben Brunk | 99e6971 | 2015-05-26 17:25:07 -0700 | [diff] [blame] | 2373 | CameraService::CameraClientManager::CameraClientManager() { |
| 2374 | setListener(std::make_shared<ClientEventListener>()); |
| 2375 | } |
| 2376 | |
Ruben Brunk | cc77671 | 2015-02-17 20:18:47 -0800 | [diff] [blame] | 2377 | CameraService::CameraClientManager::~CameraClientManager() {} |
| 2378 | |
| 2379 | sp<CameraService::BasicClient> CameraService::CameraClientManager::getCameraClient( |
| 2380 | const String8& id) const { |
| 2381 | auto descriptor = get(id); |
| 2382 | if (descriptor == nullptr) { |
| 2383 | return sp<BasicClient>{nullptr}; |
| 2384 | } |
| 2385 | return descriptor->getValue(); |
| 2386 | } |
| 2387 | |
| 2388 | String8 CameraService::CameraClientManager::toString() const { |
| 2389 | auto all = getAll(); |
| 2390 | String8 ret("["); |
| 2391 | bool hasAny = false; |
| 2392 | for (auto& i : all) { |
| 2393 | hasAny = true; |
| 2394 | String8 key = i->getKey(); |
| 2395 | int32_t cost = i->getCost(); |
| 2396 | int32_t pid = i->getOwnerId(); |
| 2397 | int32_t priority = i->getPriority(); |
| 2398 | auto conflicting = i->getConflicting(); |
| 2399 | auto clientSp = i->getValue(); |
| 2400 | String8 packageName; |
Eino-Ville Talvala | 022f0cb | 2015-05-19 16:31:16 -0700 | [diff] [blame] | 2401 | userid_t clientUserId = 0; |
Ruben Brunk | cc77671 | 2015-02-17 20:18:47 -0800 | [diff] [blame] | 2402 | if (clientSp.get() != nullptr) { |
| 2403 | packageName = String8{clientSp->getPackageName()}; |
Ruben Brunk | 6267b53 | 2015-04-30 17:44:07 -0700 | [diff] [blame] | 2404 | uid_t clientUid = clientSp->getClientUid(); |
| 2405 | clientUserId = multiuser_get_user_id(clientUid); |
Ruben Brunk | cc77671 | 2015-02-17 20:18:47 -0800 | [diff] [blame] | 2406 | } |
| 2407 | ret.appendFormat("\n(Camera ID: %s, Cost: %" PRId32 ", PID: %" PRId32 ", Priority: %" |
| 2408 | PRId32 ", ", key.string(), cost, pid, priority); |
| 2409 | |
Ruben Brunk | 6267b53 | 2015-04-30 17:44:07 -0700 | [diff] [blame] | 2410 | if (clientSp.get() != nullptr) { |
| 2411 | ret.appendFormat("User Id: %d, ", clientUserId); |
| 2412 | } |
Ruben Brunk | cc77671 | 2015-02-17 20:18:47 -0800 | [diff] [blame] | 2413 | if (packageName.size() != 0) { |
| 2414 | ret.appendFormat("Client Package Name: %s", packageName.string()); |
| 2415 | } |
| 2416 | |
| 2417 | ret.append(", Conflicting Client Devices: {"); |
| 2418 | for (auto& j : conflicting) { |
| 2419 | ret.appendFormat("%s, ", j.string()); |
| 2420 | } |
| 2421 | ret.append("})"); |
| 2422 | } |
| 2423 | if (hasAny) ret.append("\n"); |
| 2424 | ret.append("]\n"); |
| 2425 | return ret; |
| 2426 | } |
| 2427 | |
| 2428 | CameraService::DescriptorPtr CameraService::CameraClientManager::makeClientDescriptor( |
| 2429 | const String8& key, const sp<BasicClient>& value, int32_t cost, |
| 2430 | const std::set<String8>& conflictingKeys, int32_t priority, int32_t ownerId) { |
| 2431 | |
| 2432 | return std::make_shared<resource_policy::ClientDescriptor<String8, sp<BasicClient>>>( |
| 2433 | key, value, cost, conflictingKeys, priority, ownerId); |
| 2434 | } |
| 2435 | |
| 2436 | CameraService::DescriptorPtr CameraService::CameraClientManager::makeClientDescriptor( |
| 2437 | const sp<BasicClient>& value, const CameraService::DescriptorPtr& partial) { |
| 2438 | return makeClientDescriptor(partial->getKey(), value, partial->getCost(), |
| 2439 | partial->getConflicting(), partial->getPriority(), partial->getOwnerId()); |
| 2440 | } |
| 2441 | |
| 2442 | // ---------------------------------------------------------------------------- |
Mathias Agopian | 65ab471 | 2010-07-14 17:59:35 -0700 | [diff] [blame] | 2443 | |
| 2444 | static const int kDumpLockRetries = 50; |
| 2445 | static const int kDumpLockSleep = 60000; |
| 2446 | |
| 2447 | static bool tryLock(Mutex& mutex) |
| 2448 | { |
| 2449 | bool locked = false; |
| 2450 | for (int i = 0; i < kDumpLockRetries; ++i) { |
| 2451 | if (mutex.tryLock() == NO_ERROR) { |
| 2452 | locked = true; |
| 2453 | break; |
| 2454 | } |
| 2455 | usleep(kDumpLockSleep); |
| 2456 | } |
| 2457 | return locked; |
| 2458 | } |
| 2459 | |
| 2460 | status_t CameraService::dump(int fd, const Vector<String16>& args) { |
Eino-Ville Talvala | a84bbe6 | 2015-09-08 17:59:17 -0700 | [diff] [blame] | 2461 | ATRACE_CALL(); |
| 2462 | |
Ruben Brunk | a8ca915 | 2015-04-07 14:23:40 -0700 | [diff] [blame] | 2463 | String8 result("Dump of the Camera Service:\n"); |
Mathias Agopian | 65ab471 | 2010-07-14 17:59:35 -0700 | [diff] [blame] | 2464 | if (checkCallingPermission(String16("android.permission.DUMP")) == false) { |
dcashman | fefa614 | 2015-09-09 13:43:01 -0700 | [diff] [blame] | 2465 | result = result.format("Permission Denial: " |
Mathias Agopian | 65ab471 | 2010-07-14 17:59:35 -0700 | [diff] [blame] | 2466 | "can't dump CameraService from pid=%d, uid=%d\n", |
| 2467 | getCallingPid(), |
| 2468 | getCallingUid()); |
Mathias Agopian | 65ab471 | 2010-07-14 17:59:35 -0700 | [diff] [blame] | 2469 | write(fd, result.string(), result.size()); |
| 2470 | } else { |
| 2471 | bool locked = tryLock(mServiceLock); |
| 2472 | // failed to lock - CameraService is probably deadlocked |
| 2473 | if (!locked) { |
Eino-Ville Talvala | 611f619 | 2012-05-31 12:28:23 -0700 | [diff] [blame] | 2474 | result.append("CameraService may be deadlocked\n"); |
Eino-Ville Talvala | f592613 | 2012-07-17 13:54:20 -0700 | [diff] [blame] | 2475 | write(fd, result.string(), result.size()); |
Mathias Agopian | 65ab471 | 2010-07-14 17:59:35 -0700 | [diff] [blame] | 2476 | } |
| 2477 | |
| 2478 | bool hasClient = false; |
Eino-Ville Talvala | f592613 | 2012-07-17 13:54:20 -0700 | [diff] [blame] | 2479 | if (!mModule) { |
| 2480 | result = String8::format("No camera module available!\n"); |
| 2481 | write(fd, result.string(), result.size()); |
Eino-Ville Talvala | 1527f07 | 2015-04-07 15:55:31 -0700 | [diff] [blame] | 2482 | |
| 2483 | // Dump event log for error information |
| 2484 | dumpEventLog(fd); |
| 2485 | |
Kalle Lampila | 6ec3a15 | 2013-04-30 15:27:19 +0300 | [diff] [blame] | 2486 | if (locked) mServiceLock.unlock(); |
Eino-Ville Talvala | f592613 | 2012-07-17 13:54:20 -0700 | [diff] [blame] | 2487 | return NO_ERROR; |
| 2488 | } |
| 2489 | |
Chien-Yu Chen | 676b21b | 2015-02-24 10:28:19 -0800 | [diff] [blame] | 2490 | result = String8::format("Camera module HAL API version: 0x%x\n", mModule->getHalApiVersion()); |
| 2491 | result.appendFormat("Camera module API version: 0x%x\n", mModule->getModuleApiVersion()); |
| 2492 | result.appendFormat("Camera module name: %s\n", mModule->getModuleName()); |
| 2493 | result.appendFormat("Camera module author: %s\n", mModule->getModuleAuthor()); |
Ruben Brunk | cc77671 | 2015-02-17 20:18:47 -0800 | [diff] [blame] | 2494 | result.appendFormat("Number of camera devices: %d\n", mNumberOfCameras); |
Eino-Ville Talvala | 49c9705 | 2016-01-12 14:29:40 -0800 | [diff] [blame] | 2495 | result.appendFormat("Number of normal camera devices: %d\n", mNumberOfNormalCameras); |
Ruben Brunk | cc77671 | 2015-02-17 20:18:47 -0800 | [diff] [blame] | 2496 | String8 activeClientString = mActiveClientManager.toString(); |
| 2497 | result.appendFormat("Active Camera Clients:\n%s", activeClientString.string()); |
Ruben Brunk | 6267b53 | 2015-04-30 17:44:07 -0700 | [diff] [blame] | 2498 | result.appendFormat("Allowed users:\n%s\n", toString(mAllowedUsers).string()); |
Ruben Brunk | cc77671 | 2015-02-17 20:18:47 -0800 | [diff] [blame] | 2499 | |
Ruben Brunk | f81648e | 2014-04-17 16:14:57 -0700 | [diff] [blame] | 2500 | sp<VendorTagDescriptor> desc = VendorTagDescriptor::getGlobalVendorTagDescriptor(); |
| 2501 | if (desc == NULL) { |
| 2502 | result.appendFormat("Vendor tags left unimplemented.\n"); |
| 2503 | } else { |
| 2504 | result.appendFormat("Vendor tag definitions:\n"); |
| 2505 | } |
| 2506 | |
Eino-Ville Talvala | f592613 | 2012-07-17 13:54:20 -0700 | [diff] [blame] | 2507 | write(fd, result.string(), result.size()); |
Ruben Brunk | f81648e | 2014-04-17 16:14:57 -0700 | [diff] [blame] | 2508 | |
| 2509 | if (desc != NULL) { |
| 2510 | desc->dump(fd, /*verbosity*/2, /*indentation*/4); |
| 2511 | } |
| 2512 | |
Eino-Ville Talvala | 1527f07 | 2015-04-07 15:55:31 -0700 | [diff] [blame] | 2513 | dumpEventLog(fd); |
Ruben Brunk | cc77671 | 2015-02-17 20:18:47 -0800 | [diff] [blame] | 2514 | |
| 2515 | bool stateLocked = tryLock(mCameraStatesLock); |
| 2516 | if (!stateLocked) { |
| 2517 | result = String8::format("CameraStates in use, may be deadlocked\n"); |
| 2518 | write(fd, result.string(), result.size()); |
| 2519 | } |
| 2520 | |
| 2521 | for (auto& state : mCameraStates) { |
| 2522 | String8 cameraId = state.first; |
| 2523 | result = String8::format("Camera %s information:\n", cameraId.string()); |
Eino-Ville Talvala | f592613 | 2012-07-17 13:54:20 -0700 | [diff] [blame] | 2524 | camera_info info; |
| 2525 | |
Ruben Brunk | cc77671 | 2015-02-17 20:18:47 -0800 | [diff] [blame] | 2526 | // TODO: Change getCameraInfo + HAL to use String cameraIds |
| 2527 | status_t rc = mModule->getCameraInfo(cameraIdToInt(cameraId), &info); |
Eino-Ville Talvala | f592613 | 2012-07-17 13:54:20 -0700 | [diff] [blame] | 2528 | if (rc != OK) { |
| 2529 | result.appendFormat(" Error reading static information!\n"); |
| 2530 | write(fd, result.string(), result.size()); |
| 2531 | } else { |
| 2532 | result.appendFormat(" Facing: %s\n", |
| 2533 | info.facing == CAMERA_FACING_BACK ? "BACK" : "FRONT"); |
| 2534 | result.appendFormat(" Orientation: %d\n", info.orientation); |
| 2535 | int deviceVersion; |
Chien-Yu Chen | 676b21b | 2015-02-24 10:28:19 -0800 | [diff] [blame] | 2536 | if (mModule->getModuleApiVersion() < CAMERA_MODULE_API_VERSION_2_0) { |
Eino-Ville Talvala | f592613 | 2012-07-17 13:54:20 -0700 | [diff] [blame] | 2537 | deviceVersion = CAMERA_DEVICE_API_VERSION_1_0; |
| 2538 | } else { |
| 2539 | deviceVersion = info.device_version; |
| 2540 | } |
Ruben Brunk | cc77671 | 2015-02-17 20:18:47 -0800 | [diff] [blame] | 2541 | |
| 2542 | auto conflicting = state.second->getConflicting(); |
| 2543 | result.appendFormat(" Resource Cost: %d\n", state.second->getCost()); |
| 2544 | result.appendFormat(" Conflicting Devices:"); |
| 2545 | for (auto& id : conflicting) { |
Eino-Ville Talvala | d309fb9 | 2015-11-25 12:12:45 -0800 | [diff] [blame] | 2546 | result.appendFormat(" %s", id.string()); |
Ruben Brunk | cc77671 | 2015-02-17 20:18:47 -0800 | [diff] [blame] | 2547 | } |
| 2548 | if (conflicting.size() == 0) { |
| 2549 | result.appendFormat(" NONE"); |
| 2550 | } |
| 2551 | result.appendFormat("\n"); |
| 2552 | |
| 2553 | result.appendFormat(" Device version: %#x\n", deviceVersion); |
Eino-Ville Talvala | d309fb9 | 2015-11-25 12:12:45 -0800 | [diff] [blame] | 2554 | if (deviceVersion >= CAMERA_DEVICE_API_VERSION_3_0) { |
Eino-Ville Talvala | f592613 | 2012-07-17 13:54:20 -0700 | [diff] [blame] | 2555 | result.appendFormat(" Device static metadata:\n"); |
| 2556 | write(fd, result.string(), result.size()); |
Eino-Ville Talvala | 428b77a | 2012-07-30 09:55:30 -0700 | [diff] [blame] | 2557 | dump_indented_camera_metadata(info.static_camera_characteristics, |
Ruben Brunk | f81648e | 2014-04-17 16:14:57 -0700 | [diff] [blame] | 2558 | fd, /*verbosity*/2, /*indentation*/4); |
Eino-Ville Talvala | f592613 | 2012-07-17 13:54:20 -0700 | [diff] [blame] | 2559 | } else { |
| 2560 | write(fd, result.string(), result.size()); |
| 2561 | } |
Ruben Brunk | cc77671 | 2015-02-17 20:18:47 -0800 | [diff] [blame] | 2562 | |
| 2563 | CameraParameters p = state.second->getShimParams(); |
| 2564 | if (!p.isEmpty()) { |
| 2565 | result = String8::format(" Camera1 API shim is using parameters:\n "); |
| 2566 | write(fd, result.string(), result.size()); |
| 2567 | p.dump(fd, args); |
| 2568 | } |
Eino-Ville Talvala | f592613 | 2012-07-17 13:54:20 -0700 | [diff] [blame] | 2569 | } |
| 2570 | |
Ruben Brunk | cc77671 | 2015-02-17 20:18:47 -0800 | [diff] [blame] | 2571 | auto clientDescriptor = mActiveClientManager.get(cameraId); |
| 2572 | if (clientDescriptor == nullptr) { |
| 2573 | result = String8::format(" Device %s is closed, no client instance\n", |
| 2574 | cameraId.string()); |
Eino-Ville Talvala | f592613 | 2012-07-17 13:54:20 -0700 | [diff] [blame] | 2575 | write(fd, result.string(), result.size()); |
| 2576 | continue; |
| 2577 | } |
Mathias Agopian | 65ab471 | 2010-07-14 17:59:35 -0700 | [diff] [blame] | 2578 | hasClient = true; |
Ruben Brunk | cc77671 | 2015-02-17 20:18:47 -0800 | [diff] [blame] | 2579 | result = String8::format(" Device %s is open. Client instance dump:\n\n", |
| 2580 | cameraId.string()); |
| 2581 | result.appendFormat("Client priority level: %d\n", clientDescriptor->getPriority()); |
| 2582 | result.appendFormat("Client PID: %d\n", clientDescriptor->getOwnerId()); |
| 2583 | |
| 2584 | auto client = clientDescriptor->getValue(); |
| 2585 | result.appendFormat("Client package: %s\n", |
| 2586 | String8(client->getPackageName()).string()); |
Eino-Ville Talvala | f592613 | 2012-07-17 13:54:20 -0700 | [diff] [blame] | 2587 | write(fd, result.string(), result.size()); |
Ruben Brunk | cc77671 | 2015-02-17 20:18:47 -0800 | [diff] [blame] | 2588 | |
Eino-Ville Talvala | c400396 | 2016-01-13 10:07:04 -0800 | [diff] [blame] | 2589 | client->dumpClient(fd, args); |
Mathias Agopian | 65ab471 | 2010-07-14 17:59:35 -0700 | [diff] [blame] | 2590 | } |
Ruben Brunk | cc77671 | 2015-02-17 20:18:47 -0800 | [diff] [blame] | 2591 | |
| 2592 | if (stateLocked) mCameraStatesLock.unlock(); |
| 2593 | |
Mathias Agopian | 65ab471 | 2010-07-14 17:59:35 -0700 | [diff] [blame] | 2594 | if (!hasClient) { |
Eino-Ville Talvala | f592613 | 2012-07-17 13:54:20 -0700 | [diff] [blame] | 2595 | result = String8::format("\nNo active camera clients yet.\n"); |
| 2596 | write(fd, result.string(), result.size()); |
Mathias Agopian | 65ab471 | 2010-07-14 17:59:35 -0700 | [diff] [blame] | 2597 | } |
| 2598 | |
| 2599 | if (locked) mServiceLock.unlock(); |
| 2600 | |
Igor Murashkin | ff3e31d | 2013-10-23 16:40:06 -0700 | [diff] [blame] | 2601 | // Dump camera traces if there were any |
| 2602 | write(fd, "\n", 1); |
| 2603 | camera3::CameraTraces::dump(fd, args); |
| 2604 | |
Eino-Ville Talvala | d89821e | 2016-04-20 11:23:50 -0700 | [diff] [blame] | 2605 | // Process dump arguments, if any |
Mathias Agopian | 65ab471 | 2010-07-14 17:59:35 -0700 | [diff] [blame] | 2606 | int n = args.size(); |
Eino-Ville Talvala | d89821e | 2016-04-20 11:23:50 -0700 | [diff] [blame] | 2607 | String16 verboseOption("-v"); |
| 2608 | String16 unreachableOption("--unreachable"); |
| 2609 | for (int i = 0; i < n; i++) { |
Eino-Ville Talvala | 611f619 | 2012-05-31 12:28:23 -0700 | [diff] [blame] | 2610 | if (args[i] == verboseOption) { |
Eino-Ville Talvala | d89821e | 2016-04-20 11:23:50 -0700 | [diff] [blame] | 2611 | // change logging level |
| 2612 | if (i + 1 >= n) continue; |
Mathias Agopian | 65ab471 | 2010-07-14 17:59:35 -0700 | [diff] [blame] | 2613 | String8 levelStr(args[i+1]); |
| 2614 | int level = atoi(levelStr.string()); |
Eino-Ville Talvala | f592613 | 2012-07-17 13:54:20 -0700 | [diff] [blame] | 2615 | result = String8::format("\nSetting log level to %d.\n", level); |
Mathias Agopian | 65ab471 | 2010-07-14 17:59:35 -0700 | [diff] [blame] | 2616 | setLogLevel(level); |
Eino-Ville Talvala | f592613 | 2012-07-17 13:54:20 -0700 | [diff] [blame] | 2617 | write(fd, result.string(), result.size()); |
Eino-Ville Talvala | d89821e | 2016-04-20 11:23:50 -0700 | [diff] [blame] | 2618 | } else if (args[i] == unreachableOption) { |
| 2619 | // Dump memory analysis |
| 2620 | // TODO - should limit be an argument parameter? |
| 2621 | UnreachableMemoryInfo info; |
| 2622 | bool success = GetUnreachableMemory(info, /*limit*/ 10000); |
| 2623 | if (!success) { |
| 2624 | dprintf(fd, "\nUnable to dump unreachable memory. " |
| 2625 | "Try disabling SELinux enforcement.\n"); |
| 2626 | } else { |
| 2627 | dprintf(fd, "\nDumping unreachable memory:\n"); |
| 2628 | std::string s = info.ToString(/*log_contents*/ true); |
| 2629 | write(fd, s.c_str(), s.size()); |
| 2630 | } |
Mathias Agopian | 65ab471 | 2010-07-14 17:59:35 -0700 | [diff] [blame] | 2631 | } |
| 2632 | } |
| 2633 | } |
| 2634 | return NO_ERROR; |
| 2635 | } |
| 2636 | |
Eino-Ville Talvala | 1527f07 | 2015-04-07 15:55:31 -0700 | [diff] [blame] | 2637 | void CameraService::dumpEventLog(int fd) { |
| 2638 | String8 result = String8("\nPrior client events (most recent at top):\n"); |
| 2639 | |
| 2640 | Mutex::Autolock l(mLogLock); |
| 2641 | for (const auto& msg : mEventLog) { |
| 2642 | result.appendFormat(" %s\n", msg.string()); |
| 2643 | } |
| 2644 | |
| 2645 | if (mEventLog.size() == DEFAULT_EVENT_LOG_LENGTH) { |
| 2646 | result.append(" ...\n"); |
| 2647 | } else if (mEventLog.size() == 0) { |
| 2648 | result.append(" [no events yet]\n"); |
| 2649 | } |
| 2650 | result.append("\n"); |
| 2651 | |
| 2652 | write(fd, result.string(), result.size()); |
| 2653 | } |
| 2654 | |
Chien-Yu Chen | 3068d73 | 2015-02-09 13:29:57 -0800 | [diff] [blame] | 2655 | void CameraService::handleTorchClientBinderDied(const wp<IBinder> &who) { |
Chien-Yu Chen | 88da526 | 2015-02-17 13:56:46 -0800 | [diff] [blame] | 2656 | Mutex::Autolock al(mTorchClientMapMutex); |
Chien-Yu Chen | 3068d73 | 2015-02-09 13:29:57 -0800 | [diff] [blame] | 2657 | for (size_t i = 0; i < mTorchClientMap.size(); i++) { |
| 2658 | if (mTorchClientMap[i] == who) { |
| 2659 | // turn off the torch mode that was turned on by dead client |
Chien-Yu Chen | 88da526 | 2015-02-17 13:56:46 -0800 | [diff] [blame] | 2660 | String8 cameraId = mTorchClientMap.keyAt(i); |
| 2661 | status_t res = mFlashlight->setTorchMode(cameraId, false); |
| 2662 | if (res) { |
| 2663 | ALOGE("%s: torch client died but couldn't turn off torch: " |
| 2664 | "%s (%d)", __FUNCTION__, strerror(-res), res); |
| 2665 | return; |
| 2666 | } |
Chien-Yu Chen | 3068d73 | 2015-02-09 13:29:57 -0800 | [diff] [blame] | 2667 | mTorchClientMap.removeItemsAt(i); |
Chien-Yu Chen | 3068d73 | 2015-02-09 13:29:57 -0800 | [diff] [blame] | 2668 | break; |
| 2669 | } |
| 2670 | } |
| 2671 | } |
| 2672 | |
Ruben Brunk | cc77671 | 2015-02-17 20:18:47 -0800 | [diff] [blame] | 2673 | /*virtual*/void CameraService::binderDied(const wp<IBinder> &who) { |
Igor Murashkin | ecf17e8 | 2012-10-02 16:05:11 -0700 | [diff] [blame] | 2674 | |
Igor Murashkin | 294d0ec | 2012-10-05 10:44:57 -0700 | [diff] [blame] | 2675 | /** |
Ruben Brunk | a8ca915 | 2015-04-07 14:23:40 -0700 | [diff] [blame] | 2676 | * While tempting to promote the wp<IBinder> into a sp, it's actually not supported by the |
| 2677 | * binder driver |
Igor Murashkin | 294d0ec | 2012-10-05 10:44:57 -0700 | [diff] [blame] | 2678 | */ |
| 2679 | |
Ruben Brunk | a8ca915 | 2015-04-07 14:23:40 -0700 | [diff] [blame] | 2680 | logClientDied(getCallingPid(), String8("Binder died unexpectedly")); |
| 2681 | |
Chien-Yu Chen | 3068d73 | 2015-02-09 13:29:57 -0800 | [diff] [blame] | 2682 | // check torch client |
| 2683 | handleTorchClientBinderDied(who); |
| 2684 | |
| 2685 | // check camera device client |
Ruben Brunk | cc77671 | 2015-02-17 20:18:47 -0800 | [diff] [blame] | 2686 | if(!evictClientIdByRemote(who)) { |
| 2687 | ALOGV("%s: Java client's binder death already cleaned up (normal case)", __FUNCTION__); |
Igor Murashkin | ecf17e8 | 2012-10-02 16:05:11 -0700 | [diff] [blame] | 2688 | return; |
| 2689 | } |
| 2690 | |
Ruben Brunk | cc77671 | 2015-02-17 20:18:47 -0800 | [diff] [blame] | 2691 | ALOGE("%s: Java client's binder died, removing it from the list of active clients", |
| 2692 | __FUNCTION__); |
Igor Murashkin | ecf17e8 | 2012-10-02 16:05:11 -0700 | [diff] [blame] | 2693 | } |
| 2694 | |
Eino-Ville Talvala | d56db1d | 2015-12-17 16:50:35 -0800 | [diff] [blame] | 2695 | void CameraService::updateStatus(int32_t status, const String8& cameraId) { |
Ruben Brunk | cc77671 | 2015-02-17 20:18:47 -0800 | [diff] [blame] | 2696 | updateStatus(status, cameraId, {}); |
Igor Murashkin | bfc9915 | 2013-02-27 12:55:20 -0800 | [diff] [blame] | 2697 | } |
| 2698 | |
Eino-Ville Talvala | d56db1d | 2015-12-17 16:50:35 -0800 | [diff] [blame] | 2699 | void CameraService::updateStatus(int32_t status, const String8& cameraId, |
| 2700 | std::initializer_list<int32_t> rejectSourceStates) { |
Ruben Brunk | cc77671 | 2015-02-17 20:18:47 -0800 | [diff] [blame] | 2701 | // Do not lock mServiceLock here or can get into a deadlock from |
| 2702 | // connect() -> disconnect -> updateStatus |
| 2703 | |
| 2704 | auto state = getCameraState(cameraId); |
| 2705 | |
| 2706 | if (state == nullptr) { |
| 2707 | ALOGW("%s: Could not update the status for %s, no such device exists", __FUNCTION__, |
| 2708 | cameraId.string()); |
| 2709 | return; |
Igor Murashkin | cba2c16 | 2013-03-20 15:56:31 -0700 | [diff] [blame] | 2710 | } |
| 2711 | |
Ruben Brunk | cc77671 | 2015-02-17 20:18:47 -0800 | [diff] [blame] | 2712 | // Update the status for this camera state, then send the onStatusChangedCallbacks to each |
| 2713 | // of the listeners with both the mStatusStatus and mStatusListenerLock held |
| 2714 | state->updateStatus(status, cameraId, rejectSourceStates, [this] |
Eino-Ville Talvala | d56db1d | 2015-12-17 16:50:35 -0800 | [diff] [blame] | 2715 | (const String8& cameraId, int32_t status) { |
Ruben Brunk | cc77671 | 2015-02-17 20:18:47 -0800 | [diff] [blame] | 2716 | |
Chien-Yu Chen | f6463fc | 2015-04-07 15:11:31 -0700 | [diff] [blame] | 2717 | if (status != ICameraServiceListener::STATUS_ENUMERATING) { |
| 2718 | // Update torch status if it has a flash unit. |
| 2719 | Mutex::Autolock al(mTorchStatusMutex); |
Eino-Ville Talvala | d56db1d | 2015-12-17 16:50:35 -0800 | [diff] [blame] | 2720 | int32_t torchStatus; |
Chien-Yu Chen | f6463fc | 2015-04-07 15:11:31 -0700 | [diff] [blame] | 2721 | if (getTorchStatusLocked(cameraId, &torchStatus) != |
| 2722 | NAME_NOT_FOUND) { |
Eino-Ville Talvala | d56db1d | 2015-12-17 16:50:35 -0800 | [diff] [blame] | 2723 | int32_t newTorchStatus = |
Chien-Yu Chen | f6463fc | 2015-04-07 15:11:31 -0700 | [diff] [blame] | 2724 | status == ICameraServiceListener::STATUS_PRESENT ? |
| 2725 | ICameraServiceListener::TORCH_STATUS_AVAILABLE_OFF : |
| 2726 | ICameraServiceListener::TORCH_STATUS_NOT_AVAILABLE; |
| 2727 | if (torchStatus != newTorchStatus) { |
| 2728 | onTorchStatusChangedLocked(cameraId, newTorchStatus); |
| 2729 | } |
| 2730 | } |
Ruben Brunk | cc77671 | 2015-02-17 20:18:47 -0800 | [diff] [blame] | 2731 | } |
| 2732 | |
| 2733 | Mutex::Autolock lock(mStatusListenerLock); |
| 2734 | |
| 2735 | for (auto& listener : mListenerList) { |
| 2736 | // TODO: Refactor status listeners to use strings for Camera IDs and remove this. |
| 2737 | int id = cameraIdToInt(cameraId); |
| 2738 | if (id != -1) listener->onStatusChanged(status, id); |
| 2739 | } |
| 2740 | }); |
Igor Murashkin | cba2c16 | 2013-03-20 15:56:31 -0700 | [diff] [blame] | 2741 | } |
| 2742 | |
Eino-Ville Talvala | 412fe56 | 2015-08-20 17:08:32 -0700 | [diff] [blame] | 2743 | void CameraService::updateProxyDeviceState(ICameraServiceProxy::CameraState newState, |
| 2744 | const String8& cameraId) { |
| 2745 | sp<ICameraServiceProxy> proxyBinder = getCameraServiceProxy(); |
| 2746 | if (proxyBinder == nullptr) return; |
| 2747 | String16 id(cameraId); |
| 2748 | proxyBinder->notifyCameraState(id, newState); |
| 2749 | } |
| 2750 | |
Chien-Yu Chen | 88da526 | 2015-02-17 13:56:46 -0800 | [diff] [blame] | 2751 | status_t CameraService::getTorchStatusLocked( |
| 2752 | const String8& cameraId, |
Eino-Ville Talvala | d56db1d | 2015-12-17 16:50:35 -0800 | [diff] [blame] | 2753 | int32_t *status) const { |
Chien-Yu Chen | 88da526 | 2015-02-17 13:56:46 -0800 | [diff] [blame] | 2754 | if (!status) { |
| 2755 | return BAD_VALUE; |
| 2756 | } |
Chien-Yu Chen | 3068d73 | 2015-02-09 13:29:57 -0800 | [diff] [blame] | 2757 | ssize_t index = mTorchStatusMap.indexOfKey(cameraId); |
| 2758 | if (index == NAME_NOT_FOUND) { |
Chien-Yu Chen | 88da526 | 2015-02-17 13:56:46 -0800 | [diff] [blame] | 2759 | // invalid camera ID or the camera doesn't have a flash unit |
| 2760 | return NAME_NOT_FOUND; |
Chien-Yu Chen | 3068d73 | 2015-02-09 13:29:57 -0800 | [diff] [blame] | 2761 | } |
| 2762 | |
Chien-Yu Chen | 88da526 | 2015-02-17 13:56:46 -0800 | [diff] [blame] | 2763 | *status = mTorchStatusMap.valueAt(index); |
| 2764 | return OK; |
Chien-Yu Chen | 3068d73 | 2015-02-09 13:29:57 -0800 | [diff] [blame] | 2765 | } |
| 2766 | |
Chien-Yu Chen | 88da526 | 2015-02-17 13:56:46 -0800 | [diff] [blame] | 2767 | status_t CameraService::setTorchStatusLocked(const String8& cameraId, |
Eino-Ville Talvala | d56db1d | 2015-12-17 16:50:35 -0800 | [diff] [blame] | 2768 | int32_t status) { |
Chien-Yu Chen | 3068d73 | 2015-02-09 13:29:57 -0800 | [diff] [blame] | 2769 | ssize_t index = mTorchStatusMap.indexOfKey(cameraId); |
| 2770 | if (index == NAME_NOT_FOUND) { |
| 2771 | return BAD_VALUE; |
| 2772 | } |
Eino-Ville Talvala | d56db1d | 2015-12-17 16:50:35 -0800 | [diff] [blame] | 2773 | int32_t& item = |
Chien-Yu Chen | 3068d73 | 2015-02-09 13:29:57 -0800 | [diff] [blame] | 2774 | mTorchStatusMap.editValueAt(index); |
| 2775 | item = status; |
| 2776 | |
| 2777 | return OK; |
| 2778 | } |
| 2779 | |
Mathias Agopian | 65ab471 | 2010-07-14 17:59:35 -0700 | [diff] [blame] | 2780 | }; // namespace android |