blob: fcb72e807031b9cfc9ed8304a92b50fb20684a7d [file] [log] [blame]
Mathias Agopian65ab4712010-07-14 17:59:35 -07001/*
Ruben Brunkd1176ef2014-02-21 10:51:38 -08002 * 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 Agopian65ab4712010-07-14 17:59:35 -070016
17#define LOG_TAG "CameraService"
Eino-Ville Talvalaa84bbe62015-09-08 17:59:17 -070018#define ATRACE_TAG ATRACE_TAG_CAMERA
Iliyan Malchev8951a972011-04-14 16:55:59 -070019//#define LOG_NDEBUG 0
Mathias Agopian65ab4712010-07-14 17:59:35 -070020
Ruben Brunkcc776712015-02-17 20:18:47 -080021#include <algorithm>
22#include <climits>
Mathias Agopian65ab4712010-07-14 17:59:35 -070023#include <stdio.h>
Ruben Brunkcc776712015-02-17 20:18:47 -080024#include <cstring>
25#include <ctime>
26#include <string>
Mathias Agopian65ab4712010-07-14 17:59:35 -070027#include <sys/types.h>
Ruben Brunkcc776712015-02-17 20:18:47 -080028#include <inttypes.h>
Mathias Agopian65ab4712010-07-14 17:59:35 -070029#include <pthread.h>
30
Eino-Ville Talvalad56db1d2015-12-17 16:50:35 -080031#include <android/hardware/ICamera.h>
32#include <android/hardware/ICameraClient.h>
33
Eino-Ville Talvalaceb388d2013-02-19 10:40:14 -080034#include <binder/AppOpsManager.h>
Mathias Agopian65ab4712010-07-14 17:59:35 -070035#include <binder/IPCThreadState.h>
36#include <binder/IServiceManager.h>
37#include <binder/MemoryBase.h>
38#include <binder/MemoryHeapBase.h>
Ruben Brunkcc776712015-02-17 20:18:47 -080039#include <binder/ProcessInfoService.h>
Mathias Agopian65ab4712010-07-14 17:59:35 -070040#include <cutils/atomic.h>
Nipun Kwatrab5ca4612010-09-11 19:31:10 -070041#include <cutils/properties.h>
Mathias Agopiandf712ea2012-02-25 18:48:35 -080042#include <gui/Surface.h>
Mathias Agopian65ab4712010-07-14 17:59:35 -070043#include <hardware/hardware.h>
Eino-Ville Talvalad89821e2016-04-20 11:23:50 -070044#include <memunreachable/memunreachable.h>
Mathias Agopian65ab4712010-07-14 17:59:35 -070045#include <media/AudioSystem.h>
Andreas Huber1b86fe02014-01-29 11:13:26 -080046#include <media/IMediaHTTPService.h>
Mathias Agopian65ab4712010-07-14 17:59:35 -070047#include <media/mediaplayer.h>
Ruben Brunk99e69712015-05-26 17:25:07 -070048#include <mediautils/BatteryNotifier.h>
Mathias Agopian65ab4712010-07-14 17:59:35 -070049#include <utils/Errors.h>
50#include <utils/Log.h>
51#include <utils/String16.h>
Ruben Brunkd1176ef2014-02-21 10:51:38 -080052#include <utils/Trace.h>
Chien-Yu Chen98a668f2015-12-18 14:10:33 -080053#include <private/android_filesystem_config.h>
Ruben Brunkd1176ef2014-02-21 10:51:38 -080054#include <system/camera_vendor_tags.h>
Ruben Brunkb2119af2014-05-09 19:57:56 -070055#include <system/camera_metadata.h>
56#include <system/camera.h>
Mathias Agopian65ab4712010-07-14 17:59:35 -070057
58#include "CameraService.h"
Eino-Ville Talvala7b82efe2013-07-25 17:12:35 -070059#include "api1/CameraClient.h"
60#include "api1/Camera2Client.h"
Eino-Ville Talvala7b82efe2013-07-25 17:12:35 -070061#include "api2/CameraDeviceClient.h"
Igor Murashkinff3e31d2013-10-23 16:40:06 -070062#include "utils/CameraTraces.h"
Mathias Agopian65ab4712010-07-14 17:59:35 -070063
Yin-Chia Yeh0dea57f2015-12-09 16:46:07 -080064namespace {
65 const char* kPermissionServiceName = "permission";
66}; // namespace anonymous
67
Mathias Agopian65ab4712010-07-14 17:59:35 -070068namespace android {
69
Eino-Ville Talvalad56db1d2015-12-17 16:50:35 -080070using binder::Status;
71using namespace hardware;
72
Mathias Agopian65ab4712010-07-14 17:59:35 -070073// ----------------------------------------------------------------------------
74// Logging support -- this is for debugging only
75// Use "adb shell dumpsys media.camera -v 1" to change it.
Eino-Ville Talvala5e08d602012-05-16 14:59:25 -070076volatile int32_t gLogLevel = 0;
Mathias Agopian65ab4712010-07-14 17:59:35 -070077
Steve Blockb8a80522011-12-20 16:23:08 +000078#define LOG1(...) ALOGD_IF(gLogLevel >= 1, __VA_ARGS__);
79#define LOG2(...) ALOGD_IF(gLogLevel >= 2, __VA_ARGS__);
Mathias Agopian65ab4712010-07-14 17:59:35 -070080
81static void setLogLevel(int level) {
82 android_atomic_write(level, &gLogLevel);
83}
84
Eino-Ville Talvalad56db1d2015-12-17 16:50:35 -080085// 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 Agopian65ab4712010-07-14 17:59:35 -070096// ----------------------------------------------------------------------------
97
Igor Murashkincba2c162013-03-20 15:56:31 -070098extern "C" {
99static 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 Brunkcc776712015-02-17 20:18:47 -0800104 static_cast<const CameraService*>(callbacks));
Igor Murashkincba2c162013-03-20 15:56:31 -0700105
Ruben Brunkcc776712015-02-17 20:18:47 -0800106 cs->onDeviceStatusChanged(static_cast<camera_device_status_t>(camera_id),
107 static_cast<camera_device_status_t>(new_status));
Igor Murashkincba2c162013-03-20 15:56:31 -0700108}
Chien-Yu Chen3068d732015-02-09 13:29:57 -0800109
110static 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 Talvalad56db1d2015-12-17 16:50:35 -0800121 int32_t status;
Chien-Yu Chen3068d732015-02-09 13:29:57 -0800122 switch (new_status) {
Chien-Yu Chen88da5262015-02-17 13:56:46 -0800123 case TORCH_MODE_STATUS_NOT_AVAILABLE:
Chien-Yu Chen3068d732015-02-09 13:29:57 -0800124 status = ICameraServiceListener::TORCH_STATUS_NOT_AVAILABLE;
125 break;
Chien-Yu Chen88da5262015-02-17 13:56:46 -0800126 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 Chen3068d732015-02-09 13:29:57 -0800131 break;
132 default:
133 ALOGE("Unknown torch status %d", new_status);
134 return;
135 }
136
137 cs->onTorchStatusChanged(
Chien-Yu Chen88da5262015-02-17 13:56:46 -0800138 String8(camera_id),
Chien-Yu Chen3068d732015-02-09 13:29:57 -0800139 status);
140}
Igor Murashkincba2c162013-03-20 15:56:31 -0700141} // extern "C"
142
Mathias Agopian65ab4712010-07-14 17:59:35 -0700143// ----------------------------------------------------------------------------
144
145// This is ugly and only safe if we never re-create the CameraService, but
146// should be ok for now.
147static CameraService *gCameraService;
148
Eino-Ville Talvala49c97052016-01-12 14:29:40 -0800149CameraService::CameraService() :
150 mEventLog(DEFAULT_EVENT_LOG_LENGTH),
Eino-Ville Talvalad56db1d2015-12-17 16:50:35 -0800151 mNumberOfCameras(0), mNumberOfNormalCameras(0),
152 mSoundRef(0), mModule(nullptr) {
Steve Blockdf64d152012-01-04 20:05:49 +0000153 ALOGI("CameraService started (pid=%d)", getpid());
Mathias Agopian65ab4712010-07-14 17:59:35 -0700154 gCameraService = this;
Igor Murashkinbfc99152013-02-27 12:55:20 -0800155
Igor Murashkincba2c162013-03-20 15:56:31 -0700156 this->camera_device_status_change = android::camera_device_status_change;
Chien-Yu Chen3068d732015-02-09 13:29:57 -0800157 this->torch_mode_status_change = android::torch_mode_status_change;
158
Ruben Brunkcc776712015-02-17 20:18:47 -0800159 mServiceLockWrapper = std::make_shared<WaitableMutexWrapper>(&mServiceLock);
Mathias Agopian65ab4712010-07-14 17:59:35 -0700160}
161
Iliyan Malchev8951a972011-04-14 16:55:59 -0700162void CameraService::onFirstRef()
163{
Ruben Brunkcc776712015-02-17 20:18:47 -0800164 ALOGI("CameraService process starting");
Igor Murashkin634a5152013-02-20 17:15:11 -0800165
Iliyan Malchev8951a972011-04-14 16:55:59 -0700166 BnCameraService::onFirstRef();
167
Ruben Brunk99e69712015-05-26 17:25:07 -0700168 // Update battery life tracking if service is restarting
169 BatteryNotifier& notifier(BatteryNotifier::getInstance());
170 notifier.noteResetCamera();
171 notifier.noteResetFlashlight();
172
Yin-Chia Yehe074a932015-01-30 10:29:02 -0800173 camera_module_t *rawModule;
Eino-Ville Talvala1527f072015-04-07 15:55:31 -0700174 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 Talvala1527f072015-04-07 15:55:31 -0700179 return;
Iliyan Malchev8951a972011-04-14 16:55:59 -0700180 }
Chien-Yu Chen88da5262015-02-17 13:56:46 -0800181
Eino-Ville Talvala1527f072015-04-07 15:55:31 -0700182 mModule = new CameraModule(rawModule);
Eino-Ville Talvala1527f072015-04-07 15:55:31 -0700183 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 Chen88da5262015-02-17 13:56:46 -0800188
Eino-Ville Talvala1527f072015-04-07 15:55:31 -0700189 delete mModule;
190 mModule = nullptr;
191 return;
Iliyan Malchev8951a972011-04-14 16:55:59 -0700192 }
Eino-Ville Talvalaa84bbe62015-09-08 17:59:17 -0700193 ALOGI("Loaded \"%s\" camera module", mModule->getModuleName());
Eino-Ville Talvala1527f072015-04-07 15:55:31 -0700194
195 mNumberOfCameras = mModule->getNumberOfCameras();
Eino-Ville Talvalabad43582015-08-14 13:12:32 -0700196 mNumberOfNormalCameras = mNumberOfCameras;
Eino-Ville Talvala1527f072015-04-07 15:55:31 -0700197
Yin-Chia Yehd4a653a2015-10-14 11:05:44 -0700198 // 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 Talvala1527f072015-04-07 15:55:31 -0700205 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 Talvalabad43582015-08-14 13:12:32 -0700212 int latestStrangeCameraId = INT_MAX;
Eino-Ville Talvala1527f072015-04-07 15:55:31 -0700213 for (int i = 0; i < mNumberOfCameras; i++) {
214 String8 cameraId = String8::format("%d", i);
215
Eino-Ville Talvalabad43582015-08-14 13:12:32 -0700216 // 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 Talvala1527f072015-04-07 15:55:31 -0700237 // 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 Talvalabad43582015-08-14 13:12:32 -0700243 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 Talvala1527f072015-04-07 15:55:31 -0700247 }
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 Brunk2823ce02015-05-19 17:25:13 -0700271 CameraService::pingCameraServiceProxy();
272}
273
Eino-Ville Talvala412fe562015-08-20 17:08:32 -0700274sp<ICameraServiceProxy> CameraService::getCameraServiceProxy() {
Ruben Brunk2823ce02015-05-19 17:25:13 -0700275 sp<IServiceManager> sm = defaultServiceManager();
276 sp<IBinder> binder = sm->getService(String16("media.camera.proxy"));
277 if (binder == nullptr) {
Eino-Ville Talvala412fe562015-08-20 17:08:32 -0700278 return nullptr;
Ruben Brunk2823ce02015-05-19 17:25:13 -0700279 }
280 sp<ICameraServiceProxy> proxyBinder = interface_cast<ICameraServiceProxy>(binder);
Eino-Ville Talvala412fe562015-08-20 17:08:32 -0700281 return proxyBinder;
282}
283
284void CameraService::pingCameraServiceProxy() {
285 sp<ICameraServiceProxy> proxyBinder = getCameraServiceProxy();
286 if (proxyBinder == nullptr) return;
Ruben Brunk2823ce02015-05-19 17:25:13 -0700287 proxyBinder->pingForUserUpdate();
Iliyan Malchev8951a972011-04-14 16:55:59 -0700288}
289
Mathias Agopian65ab4712010-07-14 17:59:35 -0700290CameraService::~CameraService() {
Yin-Chia Yehe074a932015-01-30 10:29:02 -0800291 if (mModule) {
292 delete mModule;
Ruben Brunkcc776712015-02-17 20:18:47 -0800293 mModule = nullptr;
Yin-Chia Yehe074a932015-01-30 10:29:02 -0800294 }
Ruben Brunkd1176ef2014-02-21 10:51:38 -0800295 VendorTagDescriptor::clearGlobalVendorTagDescriptor();
Ruben Brunkcc776712015-02-17 20:18:47 -0800296 gCameraService = nullptr;
Mathias Agopian65ab4712010-07-14 17:59:35 -0700297}
298
Ruben Brunkcc776712015-02-17 20:18:47 -0800299void 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 Murashkincba2c162013-03-20 15:56:31 -0700302 cameraId, newStatus);
303
Ruben Brunkcc776712015-02-17 20:18:47 -0800304 String8 id = String8::format("%d", cameraId);
305 std::shared_ptr<CameraState> state = getCameraState(id);
306
307 if (state == nullptr) {
Igor Murashkincba2c162013-03-20 15:56:31 -0700308 ALOGE("%s: Bad camera ID %d", __FUNCTION__, cameraId);
309 return;
310 }
311
Eino-Ville Talvalad56db1d2015-12-17 16:50:35 -0800312 int32_t oldStatus = state->getStatus();
Ruben Brunkcc776712015-02-17 20:18:47 -0800313
Eino-Ville Talvalad56db1d2015-12-17 16:50:35 -0800314 if (oldStatus == static_cast<int32_t>(newStatus)) {
Ruben Brunkcc776712015-02-17 20:18:47 -0800315 ALOGE("%s: State transition to the same status %#x not allowed", __FUNCTION__, newStatus);
Igor Murashkincba2c162013-03-20 15:56:31 -0700316 return;
317 }
318
Igor Murashkincba2c162013-03-20 15:56:31 -0700319 if (newStatus == CAMERA_DEVICE_STATUS_NOT_PRESENT) {
Ruben Brunka8ca9152015-04-07 14:23:40 -0700320 logDeviceRemoved(id, String8::format("Device status changed from %d to %d", oldStatus,
321 newStatus));
Ruben Brunkcc776712015-02-17 20:18:47 -0800322 sp<BasicClient> clientToDisconnect;
Igor Murashkincba2c162013-03-20 15:56:31 -0700323 {
Ruben Brunkcc776712015-02-17 20:18:47 -0800324 // Don't do this in updateStatus to avoid deadlock over mServiceLock
325 Mutex::Autolock lock(mServiceLock);
Igor Murashkincba2c162013-03-20 15:56:31 -0700326
Ruben Brunkcc776712015-02-17 20:18:47 -0800327 // 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 Brunkb2119af2014-05-09 19:57:56 -0700330
Ruben Brunkcc776712015-02-17 20:18:47 -0800331 // Remove cached shim parameters
332 state->setShimParams(CameraParameters());
Igor Murashkincba2c162013-03-20 15:56:31 -0700333
Ruben Brunkcc776712015-02-17 20:18:47 -0800334 // Remove the client from the list of active clients
335 clientToDisconnect = removeClientLocked(id);
336
337 // Notify the client of disconnection
Eino-Ville Talvalad56db1d2015-12-17 16:50:35 -0800338 clientToDisconnect->notifyError(
339 hardware::camera2::ICameraDeviceCallbacks::ERROR_CAMERA_DISCONNECTED,
Ruben Brunkcc776712015-02-17 20:18:47 -0800340 CaptureResultExtras{});
Igor Murashkincba2c162013-03-20 15:56:31 -0700341 }
342
Ruben Brunkcc776712015-02-17 20:18:47 -0800343 ALOGI("%s: Client for camera ID %s evicted due to device status change from HAL",
344 __FUNCTION__, id.string());
Igor Murashkincba2c162013-03-20 15:56:31 -0700345
Ruben Brunkcc776712015-02-17 20:18:47 -0800346 // 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 Murashkincba2c162013-03-20 15:56:31 -0700352 }
353
Ruben Brunkcc776712015-02-17 20:18:47 -0800354 } else {
Eino-Ville Talvalad56db1d2015-12-17 16:50:35 -0800355 if (oldStatus == ICameraServiceListener::STATUS_NOT_PRESENT) {
Ruben Brunka8ca9152015-04-07 14:23:40 -0700356 logDeviceAdded(id, String8::format("Device status changed from %d to %d", oldStatus,
357 newStatus));
358 }
Eino-Ville Talvalad56db1d2015-12-17 16:50:35 -0800359 updateStatus(static_cast<int32_t>(newStatus), id);
Igor Murashkincba2c162013-03-20 15:56:31 -0700360 }
361
Igor Murashkincba2c162013-03-20 15:56:31 -0700362}
363
Chien-Yu Chen88da5262015-02-17 13:56:46 -0800364void CameraService::onTorchStatusChanged(const String8& cameraId,
Eino-Ville Talvalad56db1d2015-12-17 16:50:35 -0800365 int32_t newStatus) {
Chien-Yu Chen3068d732015-02-09 13:29:57 -0800366 Mutex::Autolock al(mTorchStatusMutex);
367 onTorchStatusChangedLocked(cameraId, newStatus);
368}
369
Chien-Yu Chen88da5262015-02-17 13:56:46 -0800370void CameraService::onTorchStatusChangedLocked(const String8& cameraId,
Eino-Ville Talvalad56db1d2015-12-17 16:50:35 -0800371 int32_t newStatus) {
Chien-Yu Chen3068d732015-02-09 13:29:57 -0800372 ALOGI("%s: Torch status changed for cameraId=%s, newStatus=%d",
373 __FUNCTION__, cameraId.string(), newStatus);
374
Eino-Ville Talvalad56db1d2015-12-17 16:50:35 -0800375 int32_t status;
Chien-Yu Chen88da5262015-02-17 13:56:46 -0800376 status_t res = getTorchStatusLocked(cameraId, &status);
377 if (res) {
Chien-Yu Chenf6463fc2015-04-07 15:11:31 -0700378 ALOGE("%s: cannot get torch status of camera %s: %s (%d)",
379 __FUNCTION__, cameraId.string(), strerror(-res), res);
Chien-Yu Chen88da5262015-02-17 13:56:46 -0800380 return;
381 }
382 if (status == newStatus) {
Chien-Yu Chen3068d732015-02-09 13:29:57 -0800383 return;
384 }
385
Chien-Yu Chen88da5262015-02-17 13:56:46 -0800386 res = setTorchStatusLocked(cameraId, newStatus);
Chien-Yu Chen3068d732015-02-09 13:29:57 -0800387 if (res) {
Eino-Ville Talvalad309fb92015-11-25 12:12:45 -0800388 ALOGE("%s: Failed to set the torch status to %d: %s (%d)", __FUNCTION__,
389 (uint32_t)newStatus, strerror(-res), res);
Chien-Yu Chen3068d732015-02-09 13:29:57 -0800390 return;
391 }
392
Ruben Brunkcc776712015-02-17 20:18:47 -0800393 {
Ruben Brunk99e69712015-05-26 17:25:07 -0700394 // Update battery life logging for flashlight
Chien-Yu Chenfe751be2015-09-01 14:16:44 -0700395 Mutex::Autolock al(mTorchUidMapMutex);
Ruben Brunk99e69712015-05-26 17:25:07 -0700396 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 Brunkcc776712015-02-17 20:18:47 -0800422 Mutex::Autolock lock(mStatusListenerLock);
423 for (auto& i : mListenerList) {
424 i->onTorchStatusChanged(newStatus, String16{cameraId});
425 }
Chien-Yu Chen3068d732015-02-09 13:29:57 -0800426 }
427}
428
Eino-Ville Talvalad56db1d2015-12-17 16:50:35 -0800429Status CameraService::getNumberOfCameras(int32_t type, int32_t* numCameras) {
Eino-Ville Talvalaa84bbe62015-09-08 17:59:17 -0700430 ATRACE_CALL();
Eino-Ville Talvalabad43582015-08-14 13:12:32 -0700431 switch (type) {
432 case CAMERA_TYPE_BACKWARD_COMPATIBLE:
Eino-Ville Talvalad56db1d2015-12-17 16:50:35 -0800433 *numCameras = mNumberOfNormalCameras;
434 break;
Eino-Ville Talvalabad43582015-08-14 13:12:32 -0700435 case CAMERA_TYPE_ALL:
Eino-Ville Talvalad56db1d2015-12-17 16:50:35 -0800436 *numCameras = mNumberOfCameras;
437 break;
Eino-Ville Talvalabad43582015-08-14 13:12:32 -0700438 default:
Eino-Ville Talvalad56db1d2015-12-17 16:50:35 -0800439 ALOGW("%s: Unknown camera type %d",
Eino-Ville Talvalabad43582015-08-14 13:12:32 -0700440 __FUNCTION__, type);
Eino-Ville Talvalad56db1d2015-12-17 16:50:35 -0800441 return STATUS_ERROR_FMT(ERROR_ILLEGAL_ARGUMENT,
442 "Unknown camera type %d", type);
Eino-Ville Talvalabad43582015-08-14 13:12:32 -0700443 }
Eino-Ville Talvalad56db1d2015-12-17 16:50:35 -0800444 return Status::ok();
Mathias Agopian65ab4712010-07-14 17:59:35 -0700445}
446
Eino-Ville Talvalad56db1d2015-12-17 16:50:35 -0800447Status CameraService::getCameraInfo(int cameraId,
448 CameraInfo* cameraInfo) {
Eino-Ville Talvalaa84bbe62015-09-08 17:59:17 -0700449 ATRACE_CALL();
Iliyan Malchev8951a972011-04-14 16:55:59 -0700450 if (!mModule) {
Eino-Ville Talvalad56db1d2015-12-17 16:50:35 -0800451 return STATUS_ERROR(ERROR_DISCONNECTED,
452 "Camera subsystem is not available");
Iliyan Malchev8951a972011-04-14 16:55:59 -0700453 }
454
Mathias Agopian65ab4712010-07-14 17:59:35 -0700455 if (cameraId < 0 || cameraId >= mNumberOfCameras) {
Eino-Ville Talvalad56db1d2015-12-17 16:50:35 -0800456 return STATUS_ERROR(ERROR_ILLEGAL_ARGUMENT,
457 "CameraId is not valid");
Mathias Agopian65ab4712010-07-14 17:59:35 -0700458 }
459
Iliyan Malchev8951a972011-04-14 16:55:59 -0700460 struct camera_info info;
Eino-Ville Talvalad56db1d2015-12-17 16:50:35 -0800461 Status rc = filterGetInfoErrorCode(
Yin-Chia Yehe074a932015-01-30 10:29:02 -0800462 mModule->getCameraInfo(cameraId, &info));
Eino-Ville Talvalad56db1d2015-12-17 16:50:35 -0800463
464 if (rc.isOk()) {
465 cameraInfo->facing = info.facing;
466 cameraInfo->orientation = info.orientation;
467 }
Iliyan Malchev8951a972011-04-14 16:55:59 -0700468 return rc;
Mathias Agopian65ab4712010-07-14 17:59:35 -0700469}
470
Ruben Brunkcc776712015-02-17 20:18:47 -0800471int CameraService::cameraIdToInt(const String8& cameraId) {
472 errno = 0;
473 size_t pos = 0;
474 int ret = stoi(std::string{cameraId.string()}, &pos);
475 if (errno != 0 || pos != cameraId.size()) {
476 return -1;
477 }
478 return ret;
479}
Ruben Brunkb2119af2014-05-09 19:57:56 -0700480
Eino-Ville Talvalad56db1d2015-12-17 16:50:35 -0800481Status CameraService::generateShimMetadata(int cameraId, /*out*/CameraMetadata* cameraInfo) {
Eino-Ville Talvalaa84bbe62015-09-08 17:59:17 -0700482 ATRACE_CALL();
Eino-Ville Talvalad56db1d2015-12-17 16:50:35 -0800483
484 Status ret = Status::ok();
485
Ruben Brunkb2119af2014-05-09 19:57:56 -0700486 struct CameraInfo info;
Eino-Ville Talvalad56db1d2015-12-17 16:50:35 -0800487 if (!(ret = getCameraInfo(cameraId, &info)).isOk()) {
Ruben Brunkb2119af2014-05-09 19:57:56 -0700488 return ret;
489 }
490
491 CameraMetadata shimInfo;
492 int32_t orientation = static_cast<int32_t>(info.orientation);
Eino-Ville Talvalad56db1d2015-12-17 16:50:35 -0800493 status_t rc;
494 if ((rc = shimInfo.update(ANDROID_SENSOR_ORIENTATION, &orientation, 1)) != OK) {
495 return STATUS_ERROR_FMT(ERROR_INVALID_OPERATION,
496 "Error updating metadata: %d (%s)", rc, strerror(-rc));
Ruben Brunkb2119af2014-05-09 19:57:56 -0700497 }
498
499 uint8_t facing = (info.facing == CAMERA_FACING_FRONT) ?
500 ANDROID_LENS_FACING_FRONT : ANDROID_LENS_FACING_BACK;
Eino-Ville Talvalad56db1d2015-12-17 16:50:35 -0800501 if ((rc = shimInfo.update(ANDROID_LENS_FACING, &facing, 1)) != OK) {
502 return STATUS_ERROR_FMT(ERROR_INVALID_OPERATION,
503 "Error updating metadata: %d (%s)", rc, strerror(-rc));
Ruben Brunkb2119af2014-05-09 19:57:56 -0700504 }
505
Igor Murashkin65d14b92014-06-17 12:03:20 -0700506 CameraParameters shimParams;
Eino-Ville Talvalad56db1d2015-12-17 16:50:35 -0800507 if (!(ret = getLegacyParametersLazy(cameraId, /*out*/&shimParams)).isOk()) {
Igor Murashkin65d14b92014-06-17 12:03:20 -0700508 // Error logged by callee
509 return ret;
Ruben Brunkb2119af2014-05-09 19:57:56 -0700510 }
511
512 Vector<Size> sizes;
Ruben Brunk152dbcf2014-06-12 19:11:45 -0700513 Vector<Size> jpegSizes;
Ruben Brunkb2119af2014-05-09 19:57:56 -0700514 Vector<int32_t> formats;
Igor Murashkin65d14b92014-06-17 12:03:20 -0700515 {
516 shimParams.getSupportedPreviewSizes(/*out*/sizes);
517 shimParams.getSupportedPreviewFormats(/*out*/formats);
518 shimParams.getSupportedPictureSizes(/*out*/jpegSizes);
Ruben Brunkb2119af2014-05-09 19:57:56 -0700519 }
520
521 // Always include IMPLEMENTATION_DEFINED
522 formats.add(HAL_PIXEL_FORMAT_IMPLEMENTATION_DEFINED);
523
524 const size_t INTS_PER_CONFIG = 4;
525
526 // Build available stream configurations metadata
Ruben Brunk152dbcf2014-06-12 19:11:45 -0700527 size_t streamConfigSize = (sizes.size() * formats.size() + jpegSizes.size()) * INTS_PER_CONFIG;
528
529 Vector<int32_t> streamConfigs;
530 streamConfigs.setCapacity(streamConfigSize);
531
Ruben Brunkb2119af2014-05-09 19:57:56 -0700532 for (size_t i = 0; i < formats.size(); ++i) {
533 for (size_t j = 0; j < sizes.size(); ++j) {
Ruben Brunk152dbcf2014-06-12 19:11:45 -0700534 streamConfigs.add(formats[i]);
535 streamConfigs.add(sizes[j].width);
536 streamConfigs.add(sizes[j].height);
537 streamConfigs.add(ANDROID_SCALER_AVAILABLE_STREAM_CONFIGURATIONS_OUTPUT);
Ruben Brunkb2119af2014-05-09 19:57:56 -0700538 }
539 }
540
Ruben Brunk152dbcf2014-06-12 19:11:45 -0700541 for (size_t i = 0; i < jpegSizes.size(); ++i) {
542 streamConfigs.add(HAL_PIXEL_FORMAT_BLOB);
543 streamConfigs.add(jpegSizes[i].width);
544 streamConfigs.add(jpegSizes[i].height);
545 streamConfigs.add(ANDROID_SCALER_AVAILABLE_STREAM_CONFIGURATIONS_OUTPUT);
546 }
547
Eino-Ville Talvalad56db1d2015-12-17 16:50:35 -0800548 if ((rc = shimInfo.update(ANDROID_SCALER_AVAILABLE_STREAM_CONFIGURATIONS,
Ruben Brunk152dbcf2014-06-12 19:11:45 -0700549 streamConfigs.array(), streamConfigSize)) != OK) {
Eino-Ville Talvalad56db1d2015-12-17 16:50:35 -0800550 return STATUS_ERROR_FMT(ERROR_INVALID_OPERATION,
551 "Error updating metadata: %d (%s)", rc, strerror(-rc));
Ruben Brunkb2119af2014-05-09 19:57:56 -0700552 }
553
554 int64_t fakeMinFrames[0];
555 // TODO: Fixme, don't fake min frame durations.
Eino-Ville Talvalad56db1d2015-12-17 16:50:35 -0800556 if ((rc = shimInfo.update(ANDROID_SCALER_AVAILABLE_MIN_FRAME_DURATIONS,
Ruben Brunkb2119af2014-05-09 19:57:56 -0700557 fakeMinFrames, 0)) != OK) {
Eino-Ville Talvalad56db1d2015-12-17 16:50:35 -0800558 return STATUS_ERROR_FMT(ERROR_INVALID_OPERATION,
559 "Error updating metadata: %d (%s)", rc, strerror(-rc));
Ruben Brunkb2119af2014-05-09 19:57:56 -0700560 }
561
562 int64_t fakeStalls[0];
563 // TODO: Fixme, don't fake stall durations.
Eino-Ville Talvalad56db1d2015-12-17 16:50:35 -0800564 if ((rc = shimInfo.update(ANDROID_SCALER_AVAILABLE_STALL_DURATIONS,
Ruben Brunkb2119af2014-05-09 19:57:56 -0700565 fakeStalls, 0)) != OK) {
Eino-Ville Talvalad56db1d2015-12-17 16:50:35 -0800566 return STATUS_ERROR_FMT(ERROR_INVALID_OPERATION,
567 "Error updating metadata: %d (%s)", rc, strerror(-rc));
Ruben Brunkb2119af2014-05-09 19:57:56 -0700568 }
569
570 *cameraInfo = shimInfo;
Eino-Ville Talvalad56db1d2015-12-17 16:50:35 -0800571 return ret;
Ruben Brunkb2119af2014-05-09 19:57:56 -0700572}
573
Eino-Ville Talvalad56db1d2015-12-17 16:50:35 -0800574Status CameraService::getCameraCharacteristics(int cameraId,
Zhijun He2b59be82013-09-25 10:14:30 -0700575 CameraMetadata* cameraInfo) {
Eino-Ville Talvalaa84bbe62015-09-08 17:59:17 -0700576 ATRACE_CALL();
Zhijun He2b59be82013-09-25 10:14:30 -0700577 if (!cameraInfo) {
578 ALOGE("%s: cameraInfo is NULL", __FUNCTION__);
Eino-Ville Talvalad56db1d2015-12-17 16:50:35 -0800579 return STATUS_ERROR(ERROR_ILLEGAL_ARGUMENT, "cameraInfo is NULL");
Zhijun He2b59be82013-09-25 10:14:30 -0700580 }
581
582 if (!mModule) {
583 ALOGE("%s: camera hardware module doesn't exist", __FUNCTION__);
Eino-Ville Talvalad56db1d2015-12-17 16:50:35 -0800584 return STATUS_ERROR(ERROR_DISCONNECTED,
585 "Camera subsystem is not available");;
Zhijun He2b59be82013-09-25 10:14:30 -0700586 }
587
Zhijun He2b59be82013-09-25 10:14:30 -0700588 if (cameraId < 0 || cameraId >= mNumberOfCameras) {
589 ALOGE("%s: Invalid camera id: %d", __FUNCTION__, cameraId);
Eino-Ville Talvalad56db1d2015-12-17 16:50:35 -0800590 return STATUS_ERROR_FMT(ERROR_ILLEGAL_ARGUMENT,
591 "Invalid camera id: %d", cameraId);
Zhijun He2b59be82013-09-25 10:14:30 -0700592 }
593
594 int facing;
Eino-Ville Talvalad56db1d2015-12-17 16:50:35 -0800595 Status ret;
Chien-Yu Chen676b21b2015-02-24 10:28:19 -0800596 if (mModule->getModuleApiVersion() < CAMERA_MODULE_API_VERSION_2_0 ||
Eino-Ville Talvalad309fb92015-11-25 12:12:45 -0800597 getDeviceVersion(cameraId, &facing) < CAMERA_DEVICE_API_VERSION_3_0) {
Ruben Brunkb2119af2014-05-09 19:57:56 -0700598 /**
599 * Backwards compatibility mode for old HALs:
600 * - Convert CameraInfo into static CameraMetadata properties.
601 * - Retrieve cached CameraParameters for this camera. If none exist,
602 * attempt to open CameraClient and retrieve the CameraParameters.
603 * - Convert cached CameraParameters into static CameraMetadata
604 * properties.
605 */
606 ALOGI("%s: Switching to HAL1 shim implementation...", __FUNCTION__);
Zhijun He2b59be82013-09-25 10:14:30 -0700607
Eino-Ville Talvalad56db1d2015-12-17 16:50:35 -0800608 ret = generateShimMetadata(cameraId, cameraInfo);
Ruben Brunkb2119af2014-05-09 19:57:56 -0700609 } else {
610 /**
611 * Normal HAL 2.1+ codepath.
612 */
613 struct camera_info info;
Yin-Chia Yehe074a932015-01-30 10:29:02 -0800614 ret = filterGetInfoErrorCode(mModule->getCameraInfo(cameraId, &info));
Eino-Ville Talvalad56db1d2015-12-17 16:50:35 -0800615 if (ret.isOk()) {
616 *cameraInfo = info.static_camera_characteristics;
617 }
Ruben Brunkb2119af2014-05-09 19:57:56 -0700618 }
Zhijun He2b59be82013-09-25 10:14:30 -0700619
620 return ret;
621}
622
Ruben Brunkcc776712015-02-17 20:18:47 -0800623int CameraService::getCallingPid() {
624 return IPCThreadState::self()->getCallingPid();
625}
626
627int CameraService::getCallingUid() {
628 return IPCThreadState::self()->getCallingUid();
629}
630
631String8 CameraService::getFormattedCurrentTime() {
632 time_t now = time(nullptr);
633 char formattedTime[64];
634 strftime(formattedTime, sizeof(formattedTime), "%m-%d %H:%M:%S", localtime(&now));
635 return String8(formattedTime);
636}
637
638int CameraService::getCameraPriorityFromProcState(int procState) {
639 // Find the priority for the camera usage based on the process state. Higher priority clients
640 // win for evictions.
Ruben Brunkbe0b6b42015-05-12 16:10:52 -0700641 if (procState < 0) {
642 ALOGE("%s: Received invalid process state %d from ActivityManagerService!", __FUNCTION__,
643 procState);
644 return -1;
Ruben Brunkcc776712015-02-17 20:18:47 -0800645 }
Eino-Ville Talvala52aad852015-09-03 12:24:24 -0700646 // Treat sleeping TOP processes the same as regular TOP processes, for
647 // access priority. This is important for lock-screen camera launch scenarios
648 if (procState == PROCESS_STATE_TOP_SLEEPING) {
649 procState = PROCESS_STATE_TOP;
650 }
Ruben Brunkbe0b6b42015-05-12 16:10:52 -0700651 return INT_MAX - procState;
Ruben Brunkcc776712015-02-17 20:18:47 -0800652}
653
Eino-Ville Talvalad56db1d2015-12-17 16:50:35 -0800654Status CameraService::getCameraVendorTagDescriptor(
655 /*out*/
656 hardware::camera2::params::VendorTagDescriptor* desc) {
Eino-Ville Talvalaa84bbe62015-09-08 17:59:17 -0700657 ATRACE_CALL();
Ruben Brunkd1176ef2014-02-21 10:51:38 -0800658 if (!mModule) {
659 ALOGE("%s: camera hardware module doesn't exist", __FUNCTION__);
Eino-Ville Talvalad56db1d2015-12-17 16:50:35 -0800660 return STATUS_ERROR(ERROR_DISCONNECTED, "Camera subsystem not available");
Ruben Brunkd1176ef2014-02-21 10:51:38 -0800661 }
Eino-Ville Talvala1e74e242016-03-03 11:24:28 -0800662 sp<VendorTagDescriptor> globalDescriptor = VendorTagDescriptor::getGlobalVendorTagDescriptor();
663 if (globalDescriptor != nullptr) {
664 *desc = *(globalDescriptor.get());
665 }
Eino-Ville Talvalad56db1d2015-12-17 16:50:35 -0800666 return Status::ok();
Ruben Brunkd1176ef2014-02-21 10:51:38 -0800667}
668
Igor Murashkin634a5152013-02-20 17:15:11 -0800669int CameraService::getDeviceVersion(int cameraId, int* facing) {
Eino-Ville Talvalaa84bbe62015-09-08 17:59:17 -0700670 ATRACE_CALL();
Igor Murashkin634a5152013-02-20 17:15:11 -0800671 struct camera_info info;
Yin-Chia Yehe074a932015-01-30 10:29:02 -0800672 if (mModule->getCameraInfo(cameraId, &info) != OK) {
Igor Murashkin634a5152013-02-20 17:15:11 -0800673 return -1;
674 }
675
676 int deviceVersion;
Chien-Yu Chen676b21b2015-02-24 10:28:19 -0800677 if (mModule->getModuleApiVersion() >= CAMERA_MODULE_API_VERSION_2_0) {
Igor Murashkin634a5152013-02-20 17:15:11 -0800678 deviceVersion = info.device_version;
679 } else {
680 deviceVersion = CAMERA_DEVICE_API_VERSION_1_0;
681 }
682
683 if (facing) {
684 *facing = info.facing;
685 }
686
687 return deviceVersion;
688}
689
Eino-Ville Talvalad56db1d2015-12-17 16:50:35 -0800690Status CameraService::filterGetInfoErrorCode(status_t err) {
Eino-Ville Talvalaf67e23e2014-07-23 17:17:59 -0700691 switch(err) {
692 case NO_ERROR:
Eino-Ville Talvalad56db1d2015-12-17 16:50:35 -0800693 return Status::ok();
Eino-Ville Talvalaf67e23e2014-07-23 17:17:59 -0700694 case -EINVAL:
Eino-Ville Talvalad56db1d2015-12-17 16:50:35 -0800695 return STATUS_ERROR(ERROR_ILLEGAL_ARGUMENT,
696 "CameraId is not valid for HAL module");
697 case -ENODEV:
698 return STATUS_ERROR(ERROR_DISCONNECTED,
699 "Camera device not available");
Eino-Ville Talvalaf67e23e2014-07-23 17:17:59 -0700700 default:
Eino-Ville Talvalad56db1d2015-12-17 16:50:35 -0800701 return STATUS_ERROR_FMT(ERROR_INVALID_OPERATION,
702 "Camera HAL encountered error %d: %s",
703 err, strerror(-err));
Eino-Ville Talvalaf67e23e2014-07-23 17:17:59 -0700704 }
Igor Murashkinbfc99152013-02-27 12:55:20 -0800705}
706
Ruben Brunkd1176ef2014-02-21 10:51:38 -0800707bool CameraService::setUpVendorTags() {
Eino-Ville Talvalaa84bbe62015-09-08 17:59:17 -0700708 ATRACE_CALL();
Ruben Brunkd1176ef2014-02-21 10:51:38 -0800709 vendor_tag_ops_t vOps = vendor_tag_ops_t();
710
711 // Check if vendor operations have been implemented
Yin-Chia Yehe074a932015-01-30 10:29:02 -0800712 if (!mModule->isVendorTagDefined()) {
Ruben Brunkd1176ef2014-02-21 10:51:38 -0800713 ALOGI("%s: No vendor tags defined for this device.", __FUNCTION__);
714 return false;
715 }
716
Yin-Chia Yehe074a932015-01-30 10:29:02 -0800717 mModule->getVendorTagOps(&vOps);
Ruben Brunkd1176ef2014-02-21 10:51:38 -0800718
719 // Ensure all vendor operations are present
720 if (vOps.get_tag_count == NULL || vOps.get_all_tags == NULL ||
721 vOps.get_section_name == NULL || vOps.get_tag_name == NULL ||
722 vOps.get_tag_type == NULL) {
723 ALOGE("%s: Vendor tag operations not fully defined. Ignoring definitions."
724 , __FUNCTION__);
725 return false;
726 }
727
728 // Read all vendor tag definitions into a descriptor
729 sp<VendorTagDescriptor> desc;
730 status_t res;
731 if ((res = VendorTagDescriptor::createDescriptorFromOps(&vOps, /*out*/desc))
732 != OK) {
733 ALOGE("%s: Could not generate descriptor from vendor tag operations,"
734 "received error %s (%d). Camera clients will not be able to use"
735 "vendor tags", __FUNCTION__, strerror(res), res);
736 return false;
737 }
738
739 // Set the global descriptor to use with camera metadata
740 VendorTagDescriptor::setAsGlobalVendorTagDescriptor(desc);
741 return true;
742}
743
Eino-Ville Talvalad56db1d2015-12-17 16:50:35 -0800744Status CameraService::makeClient(const sp<CameraService>& cameraService,
745 const sp<IInterface>& cameraCb, const String16& packageName, int cameraId,
Ruben Brunkcc776712015-02-17 20:18:47 -0800746 int facing, int clientPid, uid_t clientUid, int servicePid, bool legacyMode,
747 int halVersion, int deviceVersion, apiLevel effectiveApiLevel,
748 /*out*/sp<BasicClient>* client) {
749
Ruben Brunkcc776712015-02-17 20:18:47 -0800750 if (halVersion < 0 || halVersion == deviceVersion) {
751 // Default path: HAL version is unspecified by caller, create CameraClient
752 // based on device version reported by the HAL.
753 switch(deviceVersion) {
754 case CAMERA_DEVICE_API_VERSION_1_0:
755 if (effectiveApiLevel == API_1) { // Camera1 API route
756 sp<ICameraClient> tmp = static_cast<ICameraClient*>(cameraCb.get());
Eino-Ville Talvalad56db1d2015-12-17 16:50:35 -0800757 *client = new CameraClient(cameraService, tmp, packageName, cameraId, facing,
Ruben Brunkcc776712015-02-17 20:18:47 -0800758 clientPid, clientUid, getpid(), legacyMode);
759 } else { // Camera2 API route
760 ALOGW("Camera using old HAL version: %d", deviceVersion);
Eino-Ville Talvalad56db1d2015-12-17 16:50:35 -0800761 return STATUS_ERROR_FMT(ERROR_DEPRECATED_HAL,
762 "Camera device \"%d\" HAL version %d does not support camera2 API",
763 cameraId, deviceVersion);
Ruben Brunkcc776712015-02-17 20:18:47 -0800764 }
765 break;
Ruben Brunkcc776712015-02-17 20:18:47 -0800766 case CAMERA_DEVICE_API_VERSION_3_0:
767 case CAMERA_DEVICE_API_VERSION_3_1:
768 case CAMERA_DEVICE_API_VERSION_3_2:
769 case CAMERA_DEVICE_API_VERSION_3_3:
770 if (effectiveApiLevel == API_1) { // Camera1 API route
771 sp<ICameraClient> tmp = static_cast<ICameraClient*>(cameraCb.get());
Eino-Ville Talvalad56db1d2015-12-17 16:50:35 -0800772 *client = new Camera2Client(cameraService, tmp, packageName, cameraId, facing,
Ruben Brunkcc776712015-02-17 20:18:47 -0800773 clientPid, clientUid, servicePid, legacyMode);
774 } else { // Camera2 API route
Eino-Ville Talvalad56db1d2015-12-17 16:50:35 -0800775 sp<hardware::camera2::ICameraDeviceCallbacks> tmp =
776 static_cast<hardware::camera2::ICameraDeviceCallbacks*>(cameraCb.get());
777 *client = new CameraDeviceClient(cameraService, tmp, packageName, cameraId,
Ruben Brunkcc776712015-02-17 20:18:47 -0800778 facing, clientPid, clientUid, servicePid);
779 }
780 break;
781 default:
782 // Should not be reachable
783 ALOGE("Unknown camera device HAL version: %d", deviceVersion);
Eino-Ville Talvalad56db1d2015-12-17 16:50:35 -0800784 return STATUS_ERROR_FMT(ERROR_INVALID_OPERATION,
785 "Camera device \"%d\" has unknown HAL version %d",
786 cameraId, deviceVersion);
Ruben Brunkcc776712015-02-17 20:18:47 -0800787 }
788 } else {
789 // A particular HAL version is requested by caller. Create CameraClient
790 // based on the requested HAL version.
791 if (deviceVersion > CAMERA_DEVICE_API_VERSION_1_0 &&
792 halVersion == CAMERA_DEVICE_API_VERSION_1_0) {
793 // Only support higher HAL version device opened as HAL1.0 device.
794 sp<ICameraClient> tmp = static_cast<ICameraClient*>(cameraCb.get());
Eino-Ville Talvalad56db1d2015-12-17 16:50:35 -0800795 *client = new CameraClient(cameraService, tmp, packageName, cameraId, facing,
Ruben Brunkcc776712015-02-17 20:18:47 -0800796 clientPid, clientUid, servicePid, legacyMode);
797 } else {
798 // Other combinations (e.g. HAL3.x open as HAL2.x) are not supported yet.
799 ALOGE("Invalid camera HAL version %x: HAL %x device can only be"
800 " opened as HAL %x device", halVersion, deviceVersion,
801 CAMERA_DEVICE_API_VERSION_1_0);
Eino-Ville Talvalad56db1d2015-12-17 16:50:35 -0800802 return STATUS_ERROR_FMT(ERROR_ILLEGAL_ARGUMENT,
803 "Camera device \"%d\" (HAL version %d) cannot be opened as HAL version %d",
804 cameraId, deviceVersion, halVersion);
Ruben Brunkcc776712015-02-17 20:18:47 -0800805 }
806 }
Eino-Ville Talvalad56db1d2015-12-17 16:50:35 -0800807 return Status::ok();
Ruben Brunkcc776712015-02-17 20:18:47 -0800808}
809
Ruben Brunk6267b532015-04-30 17:44:07 -0700810String8 CameraService::toString(std::set<userid_t> intSet) {
811 String8 s("");
812 bool first = true;
813 for (userid_t i : intSet) {
814 if (first) {
815 s.appendFormat("%d", i);
816 first = false;
817 } else {
818 s.appendFormat(", %d", i);
819 }
820 }
821 return s;
822}
823
Eino-Ville Talvalad56db1d2015-12-17 16:50:35 -0800824Status CameraService::initializeShimMetadata(int cameraId) {
Ruben Brunkcc776712015-02-17 20:18:47 -0800825 int uid = getCallingUid();
Ruben Brunkb2119af2014-05-09 19:57:56 -0700826
Chien-Yu Chen98a668f2015-12-18 14:10:33 -0800827 String16 internalPackageName("cameraserver");
Ruben Brunkcc776712015-02-17 20:18:47 -0800828 String8 id = String8::format("%d", cameraId);
Eino-Ville Talvalad56db1d2015-12-17 16:50:35 -0800829 Status ret = Status::ok();
Ruben Brunkcc776712015-02-17 20:18:47 -0800830 sp<Client> tmp = nullptr;
Eino-Ville Talvalad56db1d2015-12-17 16:50:35 -0800831 if (!(ret = connectHelper<ICameraClient,Client>(
832 sp<ICameraClient>{nullptr}, id, static_cast<int>(CAMERA_HAL_API_VERSION_UNSPECIFIED),
833 internalPackageName, uid, USE_CALLING_PID,
834 API_1, /*legacyMode*/ false, /*shimUpdateOnly*/ true,
835 /*out*/ tmp)
836 ).isOk()) {
837 ALOGE("%s: Error initializing shim metadata: %s", __FUNCTION__, ret.toString8().string());
Ruben Brunkb2119af2014-05-09 19:57:56 -0700838 }
Eino-Ville Talvalad56db1d2015-12-17 16:50:35 -0800839 return ret;
Ruben Brunkb2119af2014-05-09 19:57:56 -0700840}
841
Eino-Ville Talvalad56db1d2015-12-17 16:50:35 -0800842Status CameraService::getLegacyParametersLazy(int cameraId,
Igor Murashkin65d14b92014-06-17 12:03:20 -0700843 /*out*/
844 CameraParameters* parameters) {
845
846 ALOGV("%s: for cameraId: %d", __FUNCTION__, cameraId);
847
Eino-Ville Talvalad56db1d2015-12-17 16:50:35 -0800848 Status ret = Status::ok();
Igor Murashkin65d14b92014-06-17 12:03:20 -0700849
850 if (parameters == NULL) {
851 ALOGE("%s: parameters must not be null", __FUNCTION__);
Eino-Ville Talvalad56db1d2015-12-17 16:50:35 -0800852 return STATUS_ERROR(ERROR_ILLEGAL_ARGUMENT, "Parameters must not be null");
Igor Murashkin65d14b92014-06-17 12:03:20 -0700853 }
854
Ruben Brunkcc776712015-02-17 20:18:47 -0800855 String8 id = String8::format("%d", cameraId);
856
857 // Check if we already have parameters
858 {
859 // Scope for service lock
Igor Murashkin65d14b92014-06-17 12:03:20 -0700860 Mutex::Autolock lock(mServiceLock);
Ruben Brunkcc776712015-02-17 20:18:47 -0800861 auto cameraState = getCameraState(id);
862 if (cameraState == nullptr) {
863 ALOGE("%s: Invalid camera ID: %s", __FUNCTION__, id.string());
Eino-Ville Talvalad56db1d2015-12-17 16:50:35 -0800864 return STATUS_ERROR_FMT(ERROR_ILLEGAL_ARGUMENT,
865 "Invalid camera ID: %s", id.string());
Ruben Brunkcc776712015-02-17 20:18:47 -0800866 }
867 CameraParameters p = cameraState->getShimParams();
868 if (!p.isEmpty()) {
869 *parameters = p;
Eino-Ville Talvalad56db1d2015-12-17 16:50:35 -0800870 return ret;
Igor Murashkin65d14b92014-06-17 12:03:20 -0700871 }
872 }
873
Ruben Brunkcc776712015-02-17 20:18:47 -0800874 int64_t token = IPCThreadState::self()->clearCallingIdentity();
875 ret = initializeShimMetadata(cameraId);
876 IPCThreadState::self()->restoreCallingIdentity(token);
Eino-Ville Talvalad56db1d2015-12-17 16:50:35 -0800877 if (!ret.isOk()) {
Ruben Brunkcc776712015-02-17 20:18:47 -0800878 // Error already logged by callee
879 return ret;
880 }
881
882 // Check for parameters again
883 {
884 // Scope for service lock
885 Mutex::Autolock lock(mServiceLock);
886 auto cameraState = getCameraState(id);
887 if (cameraState == nullptr) {
888 ALOGE("%s: Invalid camera ID: %s", __FUNCTION__, id.string());
Eino-Ville Talvalad56db1d2015-12-17 16:50:35 -0800889 return STATUS_ERROR_FMT(ERROR_ILLEGAL_ARGUMENT,
890 "Invalid camera ID: %s", id.string());
Igor Murashkin65d14b92014-06-17 12:03:20 -0700891 }
Ruben Brunkcc776712015-02-17 20:18:47 -0800892 CameraParameters p = cameraState->getShimParams();
893 if (!p.isEmpty()) {
894 *parameters = p;
Eino-Ville Talvalad56db1d2015-12-17 16:50:35 -0800895 return ret;
Igor Murashkin65d14b92014-06-17 12:03:20 -0700896 }
897 }
898
Ruben Brunkcc776712015-02-17 20:18:47 -0800899 ALOGE("%s: Parameters were not initialized, or were empty. Device may not be present.",
900 __FUNCTION__);
Eino-Ville Talvalad56db1d2015-12-17 16:50:35 -0800901 return STATUS_ERROR(ERROR_INVALID_OPERATION, "Unable to initialize legacy parameters");
Igor Murashkin65d14b92014-06-17 12:03:20 -0700902}
903
Chien-Yu Chen98a668f2015-12-18 14:10:33 -0800904// Can camera service trust the caller based on the calling UID?
905static bool isTrustedCallingUid(uid_t uid) {
906 switch (uid) {
907 case AID_MEDIA: // mediaserver
908 case AID_CAMERASERVER: // cameraserver
909 return true;
910 default:
911 return false;
912 }
913}
914
Eino-Ville Talvalad56db1d2015-12-17 16:50:35 -0800915Status CameraService::validateConnectLocked(const String8& cameraId,
Chien-Yu Chen18df60e2016-03-18 18:18:09 -0700916 const String8& clientName8, /*inout*/int& clientUid, /*inout*/int& clientPid,
917 /*out*/int& originalClientPid) const {
Eino-Ville Talvalaceb388d2013-02-19 10:40:14 -0800918
Mathias Agopian65ab4712010-07-14 17:59:35 -0700919 int callingPid = getCallingPid();
Chien-Yu Chen98a668f2015-12-18 14:10:33 -0800920 int callingUid = getCallingUid();
Tyler Luu5861a9a2011-10-06 00:00:03 -0500921
Chien-Yu Chen98a668f2015-12-18 14:10:33 -0800922 // Check if we can trust clientUid
Eino-Ville Talvalaceb388d2013-02-19 10:40:14 -0800923 if (clientUid == USE_CALLING_UID) {
Chien-Yu Chen98a668f2015-12-18 14:10:33 -0800924 clientUid = callingUid;
925 } else if (!isTrustedCallingUid(callingUid)) {
926 ALOGE("CameraService::connect X (calling PID %d, calling UID %d) rejected "
927 "(don't trust clientUid %d)", callingPid, callingUid, clientUid);
Eino-Ville Talvalad56db1d2015-12-17 16:50:35 -0800928 return STATUS_ERROR_FMT(ERROR_PERMISSION_DENIED,
929 "Untrusted caller (calling PID %d, UID %d) trying to "
930 "forward camera access to camera %s for client %s (PID %d, UID %d)",
931 callingPid, callingUid, cameraId.string(),
932 clientName8.string(), clientUid, clientPid);
Eino-Ville Talvalaceb388d2013-02-19 10:40:14 -0800933 }
Mathias Agopian65ab4712010-07-14 17:59:35 -0700934
Chien-Yu Chen98a668f2015-12-18 14:10:33 -0800935 // Check if we can trust clientPid
936 if (clientPid == USE_CALLING_PID) {
937 clientPid = callingPid;
938 } else if (!isTrustedCallingUid(callingUid)) {
939 ALOGE("CameraService::connect X (calling PID %d, calling UID %d) rejected "
940 "(don't trust clientPid %d)", callingPid, callingUid, clientPid);
Eino-Ville Talvalad56db1d2015-12-17 16:50:35 -0800941 return STATUS_ERROR_FMT(ERROR_PERMISSION_DENIED,
942 "Untrusted caller (calling PID %d, UID %d) trying to "
943 "forward camera access to camera %s for client %s (PID %d, UID %d)",
944 callingPid, callingUid, cameraId.string(),
945 clientName8.string(), clientUid, clientPid);
Chien-Yu Chen98a668f2015-12-18 14:10:33 -0800946 }
947
948 // If it's not calling from cameraserver, check the permission.
949 if (callingPid != getpid() &&
950 !checkPermission(String16("android.permission.CAMERA"), clientPid, clientUid)) {
951 ALOGE("Permission Denial: can't use the camera pid=%d, uid=%d", clientPid, clientUid);
Eino-Ville Talvalad56db1d2015-12-17 16:50:35 -0800952 return STATUS_ERROR_FMT(ERROR_PERMISSION_DENIED,
953 "Caller \"%s\" (PID %d, UID %d) cannot open camera \"%s\" without camera permission",
954 clientName8.string(), clientUid, clientPid, cameraId.string());
Chien-Yu Chen98a668f2015-12-18 14:10:33 -0800955 }
956
957 // Only use passed in clientPid to check permission. Use calling PID as the client PID that's
958 // connected to camera service directly.
Chien-Yu Chen18df60e2016-03-18 18:18:09 -0700959 originalClientPid = clientPid;
Chien-Yu Chen98a668f2015-12-18 14:10:33 -0800960 clientPid = callingPid;
961
Iliyan Malchev8951a972011-04-14 16:55:59 -0700962 if (!mModule) {
Ruben Brunkcc776712015-02-17 20:18:47 -0800963 ALOGE("CameraService::connect X (PID %d) rejected (camera HAL module not loaded)",
964 callingPid);
Eino-Ville Talvalad56db1d2015-12-17 16:50:35 -0800965 return STATUS_ERROR_FMT(ERROR_DISCONNECTED,
966 "No camera HAL module available to open camera device \"%s\"", cameraId.string());
Iliyan Malchev8951a972011-04-14 16:55:59 -0700967 }
968
Ruben Brunkcc776712015-02-17 20:18:47 -0800969 if (getCameraState(cameraId) == nullptr) {
970 ALOGE("CameraService::connect X (PID %d) rejected (invalid camera ID %s)", callingPid,
971 cameraId.string());
Eino-Ville Talvalad56db1d2015-12-17 16:50:35 -0800972 return STATUS_ERROR_FMT(ERROR_DISCONNECTED,
973 "No camera device with ID \"%s\" available", cameraId.string());
Mathias Agopian65ab4712010-07-14 17:59:35 -0700974 }
975
Ruben Brunk6267b532015-04-30 17:44:07 -0700976 userid_t clientUserId = multiuser_get_user_id(clientUid);
Wu-cheng Lia3355432011-05-20 14:54:25 +0800977
Ruben Brunka8ca9152015-04-07 14:23:40 -0700978 // Only allow clients who are being used by the current foreground device user, unless calling
979 // from our own process.
Ruben Brunk6267b532015-04-30 17:44:07 -0700980 if (callingPid != getpid() && (mAllowedUsers.find(clientUserId) == mAllowedUsers.end())) {
981 ALOGE("CameraService::connect X (PID %d) rejected (cannot connect from "
982 "device user %d, currently allowed device users: %s)", callingPid, clientUserId,
983 toString(mAllowedUsers).string());
Eino-Ville Talvalad56db1d2015-12-17 16:50:35 -0800984 return STATUS_ERROR_FMT(ERROR_PERMISSION_DENIED,
985 "Callers from device user %d are not currently allowed to connect to camera \"%s\"",
986 clientUserId, cameraId.string());
Ruben Brunk36597b22015-03-20 22:15:57 -0700987 }
988
Eino-Ville Talvalad56db1d2015-12-17 16:50:35 -0800989 status_t err = checkIfDeviceIsUsable(cameraId);
990 if (err != NO_ERROR) {
991 switch(err) {
992 case -ENODEV:
993 case -EBUSY:
994 return STATUS_ERROR_FMT(ERROR_DISCONNECTED,
995 "No camera device with ID \"%s\" currently available", cameraId.string());
996 default:
997 return STATUS_ERROR_FMT(ERROR_INVALID_OPERATION,
998 "Unknown error connecting to ID \"%s\"", cameraId.string());
999 }
1000 }
1001 return Status::ok();
Ruben Brunkcc776712015-02-17 20:18:47 -08001002}
1003
1004status_t CameraService::checkIfDeviceIsUsable(const String8& cameraId) const {
1005 auto cameraState = getCameraState(cameraId);
1006 int callingPid = getCallingPid();
1007 if (cameraState == nullptr) {
1008 ALOGE("CameraService::connect X (PID %d) rejected (invalid camera ID %s)", callingPid,
1009 cameraId.string());
1010 return -ENODEV;
1011 }
1012
Eino-Ville Talvalad56db1d2015-12-17 16:50:35 -08001013 int32_t currentStatus = cameraState->getStatus();
Igor Murashkincba2c162013-03-20 15:56:31 -07001014 if (currentStatus == ICameraServiceListener::STATUS_NOT_PRESENT) {
Ruben Brunkcc776712015-02-17 20:18:47 -08001015 ALOGE("CameraService::connect X (PID %d) rejected (camera %s is not connected)",
1016 callingPid, cameraId.string());
Ruben Brunk0f61d8f2013-08-08 13:07:18 -07001017 return -ENODEV;
Igor Murashkincba2c162013-03-20 15:56:31 -07001018 } else if (currentStatus == ICameraServiceListener::STATUS_ENUMERATING) {
Ruben Brunkcc776712015-02-17 20:18:47 -08001019 ALOGE("CameraService::connect X (PID %d) rejected, (camera %s is initializing)",
1020 callingPid, cameraId.string());
Ruben Brunk0f61d8f2013-08-08 13:07:18 -07001021 return -EBUSY;
Igor Murashkincba2c162013-03-20 15:56:31 -07001022 }
Igor Murashkincba2c162013-03-20 15:56:31 -07001023
Ruben Brunkcc776712015-02-17 20:18:47 -08001024 return NO_ERROR;
Igor Murashkine6800ce2013-03-04 17:25:57 -08001025}
1026
Ruben Brunkcc776712015-02-17 20:18:47 -08001027void CameraService::finishConnectLocked(const sp<BasicClient>& client,
1028 const CameraService::DescriptorPtr& desc) {
Igor Murashkine6800ce2013-03-04 17:25:57 -08001029
Ruben Brunkcc776712015-02-17 20:18:47 -08001030 // Make a descriptor for the incoming client
1031 auto clientDescriptor = CameraService::CameraClientManager::makeClientDescriptor(client, desc);
1032 auto evicted = mActiveClientManager.addAndEvict(clientDescriptor);
1033
1034 logConnected(desc->getKey(), static_cast<int>(desc->getOwnerId()),
1035 String8(client->getPackageName()));
1036
1037 if (evicted.size() > 0) {
1038 // This should never happen - clients should already have been removed in disconnect
1039 for (auto& i : evicted) {
1040 ALOGE("%s: Invalid state: Client for camera %s was not removed in disconnect",
1041 __FUNCTION__, i->getKey().string());
1042 }
1043
1044 LOG_ALWAYS_FATAL("%s: Invalid state for CameraService, clients not evicted properly",
1045 __FUNCTION__);
1046 }
Eino-Ville Talvala24901c82015-09-04 14:15:58 -07001047
1048 // And register a death notification for the client callback. Do
1049 // this last to avoid Binder policy where a nested Binder
1050 // transaction might be pre-empted to service the client death
1051 // notification if the client process dies before linkToDeath is
1052 // invoked.
1053 sp<IBinder> remoteCallback = client->getRemote();
1054 if (remoteCallback != nullptr) {
1055 remoteCallback->linkToDeath(this);
1056 }
Ruben Brunkcc776712015-02-17 20:18:47 -08001057}
1058
1059status_t CameraService::handleEvictionsLocked(const String8& cameraId, int clientPid,
1060 apiLevel effectiveApiLevel, const sp<IBinder>& remoteCallback, const String8& packageName,
1061 /*out*/
1062 sp<BasicClient>* client,
1063 std::shared_ptr<resource_policy::ClientDescriptor<String8, sp<BasicClient>>>* partial) {
Eino-Ville Talvalaa84bbe62015-09-08 17:59:17 -07001064 ATRACE_CALL();
Ruben Brunkcc776712015-02-17 20:18:47 -08001065 status_t ret = NO_ERROR;
Ruben Brunk4f9576b2015-04-10 17:26:56 -07001066 std::vector<DescriptorPtr> evictedClients;
Ruben Brunkcc776712015-02-17 20:18:47 -08001067 DescriptorPtr clientDescriptor;
1068 {
1069 if (effectiveApiLevel == API_1) {
1070 // If we are using API1, any existing client for this camera ID with the same remote
1071 // should be returned rather than evicted to allow MediaRecorder to work properly.
1072
1073 auto current = mActiveClientManager.get(cameraId);
1074 if (current != nullptr) {
1075 auto clientSp = current->getValue();
1076 if (clientSp.get() != nullptr) { // should never be needed
Ruben Brunk0bbf8b22015-04-30 14:35:42 -07001077 if (!clientSp->canCastToApiClient(effectiveApiLevel)) {
1078 ALOGW("CameraService connect called from same client, but with a different"
1079 " API level, evicting prior client...");
1080 } else if (clientSp->getRemote() == remoteCallback) {
Ruben Brunkcc776712015-02-17 20:18:47 -08001081 ALOGI("CameraService::connect X (PID %d) (second call from same"
Ruben Brunk0bbf8b22015-04-30 14:35:42 -07001082 " app binder, returning the same client)", clientPid);
Ruben Brunkcc776712015-02-17 20:18:47 -08001083 *client = clientSp;
1084 return NO_ERROR;
1085 }
1086 }
Wu-cheng Li2fd24402012-02-23 19:01:00 -08001087 }
Wu-cheng Li2fd24402012-02-23 19:01:00 -08001088 }
Wu-cheng Li08ad5ef2012-04-19 12:35:00 +08001089
Ruben Brunkcc776712015-02-17 20:18:47 -08001090 // Get current active client PIDs
1091 std::vector<int> ownerPids(mActiveClientManager.getAllOwners());
1092 ownerPids.push_back(clientPid);
Igor Murashkine6800ce2013-03-04 17:25:57 -08001093
Chih-Hung Hsieh54b42462015-03-19 12:04:54 -07001094 // Use the value +PROCESS_STATE_NONEXISTENT, to avoid taking
1095 // address of PROCESS_STATE_NONEXISTENT as a reference argument
1096 // for the vector constructor. PROCESS_STATE_NONEXISTENT does
1097 // not have an out-of-class definition.
1098 std::vector<int> priorities(ownerPids.size(), +PROCESS_STATE_NONEXISTENT);
Igor Murashkine6800ce2013-03-04 17:25:57 -08001099
Ruben Brunkcc776712015-02-17 20:18:47 -08001100 // Get priorites of all active PIDs
1101 ProcessInfoService::getProcessStatesFromPids(ownerPids.size(), &ownerPids[0],
1102 /*out*/&priorities[0]);
Ruben Brunkb2119af2014-05-09 19:57:56 -07001103
Ruben Brunkcc776712015-02-17 20:18:47 -08001104 // Update all active clients' priorities
1105 std::map<int,int> pidToPriorityMap;
1106 for (size_t i = 0; i < ownerPids.size() - 1; i++) {
1107 pidToPriorityMap.emplace(ownerPids[i], getCameraPriorityFromProcState(priorities[i]));
1108 }
1109 mActiveClientManager.updatePriorities(pidToPriorityMap);
Chien-Yu Chen3068d732015-02-09 13:29:57 -08001110
Ruben Brunkcc776712015-02-17 20:18:47 -08001111 // Get state for the given cameraId
1112 auto state = getCameraState(cameraId);
1113 if (state == nullptr) {
1114 ALOGE("CameraService::connect X (PID %d) rejected (no camera device with ID %s)",
1115 clientPid, cameraId.string());
Eino-Ville Talvalad56db1d2015-12-17 16:50:35 -08001116 // Should never get here because validateConnectLocked should have errored out
Zhijun Heb10cdad2014-06-16 16:38:35 -07001117 return BAD_VALUE;
Zhijun Heb10cdad2014-06-16 16:38:35 -07001118 }
Ruben Brunkcc776712015-02-17 20:18:47 -08001119
1120 // Make descriptor for incoming client
1121 clientDescriptor = CameraClientManager::makeClientDescriptor(cameraId,
1122 sp<BasicClient>{nullptr}, static_cast<int32_t>(state->getCost()),
1123 state->getConflicting(),
1124 getCameraPriorityFromProcState(priorities[priorities.size() - 1]), clientPid);
1125
1126 // Find clients that would be evicted
1127 auto evicted = mActiveClientManager.wouldEvict(clientDescriptor);
1128
1129 // If the incoming client was 'evicted,' higher priority clients have the camera in the
1130 // background, so we cannot do evictions
1131 if (std::find(evicted.begin(), evicted.end(), clientDescriptor) != evicted.end()) {
1132 ALOGE("CameraService::connect X (PID %d) rejected (existing client(s) with higher"
1133 " priority).", clientPid);
1134
1135 sp<BasicClient> clientSp = clientDescriptor->getValue();
1136 String8 curTime = getFormattedCurrentTime();
1137 auto incompatibleClients =
1138 mActiveClientManager.getIncompatibleClients(clientDescriptor);
1139
1140 String8 msg = String8::format("%s : DENIED connect device %s client for package %s "
Ruben Brunka8ca9152015-04-07 14:23:40 -07001141 "(PID %d, priority %d) due to eviction policy", curTime.string(),
Ruben Brunkcc776712015-02-17 20:18:47 -08001142 cameraId.string(), packageName.string(), clientPid,
1143 getCameraPriorityFromProcState(priorities[priorities.size() - 1]));
1144
1145 for (auto& i : incompatibleClients) {
1146 msg.appendFormat("\n - Blocked by existing device %s client for package %s"
1147 "(PID %" PRId32 ", priority %" PRId32 ")", i->getKey().string(),
1148 String8{i->getValue()->getPackageName()}.string(), i->getOwnerId(),
1149 i->getPriority());
Eino-Ville Talvala022f0cb2015-05-19 16:31:16 -07001150 ALOGE(" Conflicts with: Device %s, client package %s (PID %"
1151 PRId32 ", priority %" PRId32 ")", i->getKey().string(),
1152 String8{i->getValue()->getPackageName()}.string(), i->getOwnerId(),
1153 i->getPriority());
Ruben Brunkcc776712015-02-17 20:18:47 -08001154 }
1155
1156 // Log the client's attempt
Ruben Brunka8ca9152015-04-07 14:23:40 -07001157 Mutex::Autolock l(mLogLock);
Ruben Brunkcc776712015-02-17 20:18:47 -08001158 mEventLog.add(msg);
1159
1160 return -EBUSY;
1161 }
1162
1163 for (auto& i : evicted) {
1164 sp<BasicClient> clientSp = i->getValue();
1165 if (clientSp.get() == nullptr) {
1166 ALOGE("%s: Invalid state: Null client in active client list.", __FUNCTION__);
1167
1168 // TODO: Remove this
1169 LOG_ALWAYS_FATAL("%s: Invalid state for CameraService, null client in active list",
1170 __FUNCTION__);
1171 mActiveClientManager.remove(i);
1172 continue;
1173 }
1174
1175 ALOGE("CameraService::connect evicting conflicting client for camera ID %s",
1176 i->getKey().string());
Ruben Brunk4f9576b2015-04-10 17:26:56 -07001177 evictedClients.push_back(i);
Ruben Brunkcc776712015-02-17 20:18:47 -08001178
Ruben Brunkcc776712015-02-17 20:18:47 -08001179 // Log the clients evicted
Ruben Brunka8ca9152015-04-07 14:23:40 -07001180 logEvent(String8::format("EVICT device %s client held by package %s (PID"
1181 " %" PRId32 ", priority %" PRId32 ")\n - Evicted by device %s client for"
1182 " package %s (PID %d, priority %" PRId32 ")",
Ruben Brunkcc776712015-02-17 20:18:47 -08001183 i->getKey().string(), String8{clientSp->getPackageName()}.string(),
1184 i->getOwnerId(), i->getPriority(), cameraId.string(),
1185 packageName.string(), clientPid,
1186 getCameraPriorityFromProcState(priorities[priorities.size() - 1])));
1187
1188 // Notify the client of disconnection
Eino-Ville Talvalad56db1d2015-12-17 16:50:35 -08001189 clientSp->notifyError(hardware::camera2::ICameraDeviceCallbacks::ERROR_CAMERA_DISCONNECTED,
Ruben Brunkcc776712015-02-17 20:18:47 -08001190 CaptureResultExtras());
Zhijun Heb10cdad2014-06-16 16:38:35 -07001191 }
Ruben Brunkb2119af2014-05-09 19:57:56 -07001192 }
1193
Ruben Brunkcc776712015-02-17 20:18:47 -08001194 // Do not hold mServiceLock while disconnecting clients, but retain the condition blocking
1195 // other clients from connecting in mServiceLockWrapper if held
1196 mServiceLock.unlock();
1197
1198 // Clear caller identity temporarily so client disconnect PID checks work correctly
1199 int64_t token = IPCThreadState::self()->clearCallingIdentity();
1200
1201 // Destroy evicted clients
1202 for (auto& i : evictedClients) {
1203 // Disconnect is blocking, and should only have returned when HAL has cleaned up
Ruben Brunk4f9576b2015-04-10 17:26:56 -07001204 i->getValue()->disconnect(); // Clients will remove themselves from the active client list
Ruben Brunkcc776712015-02-17 20:18:47 -08001205 }
Ruben Brunkcc776712015-02-17 20:18:47 -08001206
1207 IPCThreadState::self()->restoreCallingIdentity(token);
1208
Ruben Brunk4f9576b2015-04-10 17:26:56 -07001209 for (const auto& i : evictedClients) {
1210 ALOGV("%s: Waiting for disconnect to complete for client for device %s (PID %" PRId32 ")",
1211 __FUNCTION__, i->getKey().string(), i->getOwnerId());
1212 ret = mActiveClientManager.waitUntilRemoved(i, DEFAULT_DISCONNECT_TIMEOUT_NS);
1213 if (ret == TIMED_OUT) {
1214 ALOGE("%s: Timed out waiting for client for device %s to disconnect, "
1215 "current clients:\n%s", __FUNCTION__, i->getKey().string(),
1216 mActiveClientManager.toString().string());
1217 return -EBUSY;
1218 }
1219 if (ret != NO_ERROR) {
1220 ALOGE("%s: Received error waiting for client for device %s to disconnect: %s (%d), "
1221 "current clients:\n%s", __FUNCTION__, i->getKey().string(), strerror(-ret),
1222 ret, mActiveClientManager.toString().string());
1223 return ret;
1224 }
1225 }
1226
1227 evictedClients.clear();
1228
Ruben Brunkcc776712015-02-17 20:18:47 -08001229 // Once clients have been disconnected, relock
1230 mServiceLock.lock();
1231
1232 // Check again if the device was unplugged or something while we weren't holding mServiceLock
1233 if ((ret = checkIfDeviceIsUsable(cameraId)) != NO_ERROR) {
1234 return ret;
Ruben Brunkb2119af2014-05-09 19:57:56 -07001235 }
1236
Ruben Brunkcc776712015-02-17 20:18:47 -08001237 *partial = clientDescriptor;
1238 return NO_ERROR;
Ruben Brunkb2119af2014-05-09 19:57:56 -07001239}
1240
Eino-Ville Talvalad56db1d2015-12-17 16:50:35 -08001241Status CameraService::connect(
Igor Murashkine6800ce2013-03-04 17:25:57 -08001242 const sp<ICameraClient>& cameraClient,
1243 int cameraId,
Svetoslav Ganov280405a2015-05-12 02:19:27 +00001244 const String16& clientPackageName,
Ruben Brunk0f61d8f2013-08-08 13:07:18 -07001245 int clientUid,
Chien-Yu Chen98a668f2015-12-18 14:10:33 -08001246 int clientPid,
Ruben Brunk0f61d8f2013-08-08 13:07:18 -07001247 /*out*/
Eino-Ville Talvalad56db1d2015-12-17 16:50:35 -08001248 sp<ICamera>* device) {
Igor Murashkine6800ce2013-03-04 17:25:57 -08001249
Eino-Ville Talvalaa84bbe62015-09-08 17:59:17 -07001250 ATRACE_CALL();
Eino-Ville Talvalad56db1d2015-12-17 16:50:35 -08001251 Status ret = Status::ok();
Ruben Brunkcc776712015-02-17 20:18:47 -08001252 String8 id = String8::format("%d", cameraId);
1253 sp<Client> client = nullptr;
Eino-Ville Talvalad56db1d2015-12-17 16:50:35 -08001254 ret = connectHelper<ICameraClient,Client>(cameraClient, id,
1255 CAMERA_HAL_API_VERSION_UNSPECIFIED, clientPackageName, clientUid, clientPid, API_1,
1256 /*legacyMode*/ false, /*shimUpdateOnly*/ false,
1257 /*out*/client);
Igor Murashkine6800ce2013-03-04 17:25:57 -08001258
Eino-Ville Talvalad56db1d2015-12-17 16:50:35 -08001259 if(!ret.isOk()) {
Svetoslav Ganov280405a2015-05-12 02:19:27 +00001260 logRejected(id, getCallingPid(), String8(clientPackageName),
Eino-Ville Talvalad56db1d2015-12-17 16:50:35 -08001261 ret.toString8());
Ruben Brunkcc776712015-02-17 20:18:47 -08001262 return ret;
Mathias Agopian65ab4712010-07-14 17:59:35 -07001263 }
1264
Eino-Ville Talvalad56db1d2015-12-17 16:50:35 -08001265 *device = client;
1266 return ret;
Mathias Agopian65ab4712010-07-14 17:59:35 -07001267}
1268
Eino-Ville Talvalad56db1d2015-12-17 16:50:35 -08001269Status CameraService::connectLegacy(
Zhijun Heb10cdad2014-06-16 16:38:35 -07001270 const sp<ICameraClient>& cameraClient,
1271 int cameraId, int halVersion,
Svetoslav Ganov280405a2015-05-12 02:19:27 +00001272 const String16& clientPackageName,
Zhijun Heb10cdad2014-06-16 16:38:35 -07001273 int clientUid,
1274 /*out*/
Eino-Ville Talvalad56db1d2015-12-17 16:50:35 -08001275 sp<ICamera>* device) {
Zhijun Heb10cdad2014-06-16 16:38:35 -07001276
Eino-Ville Talvalaa84bbe62015-09-08 17:59:17 -07001277 ATRACE_CALL();
Ruben Brunka8ca9152015-04-07 14:23:40 -07001278 String8 id = String8::format("%d", cameraId);
Chien-Yu Chen676b21b2015-02-24 10:28:19 -08001279 int apiVersion = mModule->getModuleApiVersion();
Igor Murashkin3d07d1a2014-06-20 11:27:03 -07001280 if (halVersion != CAMERA_HAL_API_VERSION_UNSPECIFIED &&
Yin-Chia Yehe074a932015-01-30 10:29:02 -08001281 apiVersion < CAMERA_MODULE_API_VERSION_2_3) {
Igor Murashkin3d07d1a2014-06-20 11:27:03 -07001282 /*
1283 * Either the HAL version is unspecified in which case this just creates
1284 * a camera client selected by the latest device version, or
1285 * it's a particular version in which case the HAL must supported
1286 * the open_legacy call
1287 */
Eino-Ville Talvalad56db1d2015-12-17 16:50:35 -08001288 String8 msg = String8::format("Camera HAL module version %x too old for connectLegacy!",
1289 apiVersion);
1290 ALOGE("%s: %s",
1291 __FUNCTION__, msg.string());
Svetoslav Ganov280405a2015-05-12 02:19:27 +00001292 logRejected(id, getCallingPid(), String8(clientPackageName),
Eino-Ville Talvalad56db1d2015-12-17 16:50:35 -08001293 msg);
1294 return STATUS_ERROR(ERROR_ILLEGAL_ARGUMENT, msg.string());
Zhijun Heb10cdad2014-06-16 16:38:35 -07001295 }
1296
Eino-Ville Talvalad56db1d2015-12-17 16:50:35 -08001297 Status ret = Status::ok();
Ruben Brunkcc776712015-02-17 20:18:47 -08001298 sp<Client> client = nullptr;
Eino-Ville Talvalad56db1d2015-12-17 16:50:35 -08001299 ret = connectHelper<ICameraClient,Client>(cameraClient, id, halVersion,
1300 clientPackageName, clientUid, USE_CALLING_PID, API_1,
1301 /*legacyMode*/ true, /*shimUpdateOnly*/ false,
1302 /*out*/client);
Zhijun Heb10cdad2014-06-16 16:38:35 -07001303
Eino-Ville Talvalad56db1d2015-12-17 16:50:35 -08001304 if(!ret.isOk()) {
Svetoslav Ganov280405a2015-05-12 02:19:27 +00001305 logRejected(id, getCallingPid(), String8(clientPackageName),
Eino-Ville Talvalad56db1d2015-12-17 16:50:35 -08001306 ret.toString8());
Ruben Brunkcc776712015-02-17 20:18:47 -08001307 return ret;
Zhijun Heb10cdad2014-06-16 16:38:35 -07001308 }
1309
Eino-Ville Talvalad56db1d2015-12-17 16:50:35 -08001310 *device = client;
1311 return ret;
Zhijun Heb10cdad2014-06-16 16:38:35 -07001312}
1313
Eino-Ville Talvalad56db1d2015-12-17 16:50:35 -08001314Status CameraService::connectDevice(
1315 const sp<hardware::camera2::ICameraDeviceCallbacks>& cameraCb,
Ruben Brunkcc776712015-02-17 20:18:47 -08001316 int cameraId,
Svetoslav Ganov280405a2015-05-12 02:19:27 +00001317 const String16& clientPackageName,
Ruben Brunkcc776712015-02-17 20:18:47 -08001318 int clientUid,
1319 /*out*/
Eino-Ville Talvalad56db1d2015-12-17 16:50:35 -08001320 sp<hardware::camera2::ICameraDeviceUser>* device) {
Ruben Brunkcc776712015-02-17 20:18:47 -08001321
Eino-Ville Talvalaa84bbe62015-09-08 17:59:17 -07001322 ATRACE_CALL();
Eino-Ville Talvalad56db1d2015-12-17 16:50:35 -08001323 Status ret = Status::ok();
Ruben Brunkcc776712015-02-17 20:18:47 -08001324 String8 id = String8::format("%d", cameraId);
1325 sp<CameraDeviceClient> client = nullptr;
Eino-Ville Talvalad56db1d2015-12-17 16:50:35 -08001326 ret = connectHelper<hardware::camera2::ICameraDeviceCallbacks,CameraDeviceClient>(cameraCb, id,
1327 CAMERA_HAL_API_VERSION_UNSPECIFIED, clientPackageName,
1328 clientUid, USE_CALLING_PID, API_2,
1329 /*legacyMode*/ false, /*shimUpdateOnly*/ false,
1330 /*out*/client);
Ruben Brunkcc776712015-02-17 20:18:47 -08001331
Eino-Ville Talvalad56db1d2015-12-17 16:50:35 -08001332 if(!ret.isOk()) {
Svetoslav Ganov280405a2015-05-12 02:19:27 +00001333 logRejected(id, getCallingPid(), String8(clientPackageName),
Eino-Ville Talvalad56db1d2015-12-17 16:50:35 -08001334 ret.toString8());
Ruben Brunkcc776712015-02-17 20:18:47 -08001335 return ret;
Chien-Yu Chen88da5262015-02-17 13:56:46 -08001336 }
1337
Eino-Ville Talvalad56db1d2015-12-17 16:50:35 -08001338 *device = client;
1339 return ret;
Chien-Yu Chen88da5262015-02-17 13:56:46 -08001340}
1341
Eino-Ville Talvalad56db1d2015-12-17 16:50:35 -08001342Status CameraService::setTorchMode(const String16& cameraId, bool enabled,
Chien-Yu Chen3068d732015-02-09 13:29:57 -08001343 const sp<IBinder>& clientBinder) {
Eino-Ville Talvalaa84bbe62015-09-08 17:59:17 -07001344
1345 ATRACE_CALL();
Ruben Brunk99e69712015-05-26 17:25:07 -07001346 if (enabled && clientBinder == nullptr) {
Chien-Yu Chen3068d732015-02-09 13:29:57 -08001347 ALOGE("%s: torch client binder is NULL", __FUNCTION__);
Eino-Ville Talvalad56db1d2015-12-17 16:50:35 -08001348 return STATUS_ERROR(ERROR_ILLEGAL_ARGUMENT,
1349 "Torch client Binder is null");
Chien-Yu Chen3068d732015-02-09 13:29:57 -08001350 }
1351
Chien-Yu Chen88da5262015-02-17 13:56:46 -08001352 String8 id = String8(cameraId.string());
Ruben Brunk99e69712015-05-26 17:25:07 -07001353 int uid = getCallingUid();
Chien-Yu Chen88da5262015-02-17 13:56:46 -08001354
1355 // verify id is valid.
Ruben Brunkcc776712015-02-17 20:18:47 -08001356 auto state = getCameraState(id);
1357 if (state == nullptr) {
Chien-Yu Chenf6463fc2015-04-07 15:11:31 -07001358 ALOGE("%s: camera id is invalid %s", __FUNCTION__, id.string());
Eino-Ville Talvalad56db1d2015-12-17 16:50:35 -08001359 return STATUS_ERROR_FMT(ERROR_ILLEGAL_ARGUMENT,
1360 "Camera ID \"%s\" is a not valid camera ID", id.string());
Ruben Brunkcc776712015-02-17 20:18:47 -08001361 }
1362
Eino-Ville Talvalad56db1d2015-12-17 16:50:35 -08001363 int32_t cameraStatus = state->getStatus();
Ruben Brunkcc776712015-02-17 20:18:47 -08001364 if (cameraStatus != ICameraServiceListener::STATUS_PRESENT &&
1365 cameraStatus != ICameraServiceListener::STATUS_NOT_AVAILABLE) {
Chien-Yu Chenf6463fc2015-04-07 15:11:31 -07001366 ALOGE("%s: camera id is invalid %s", __FUNCTION__, id.string());
Eino-Ville Talvalad56db1d2015-12-17 16:50:35 -08001367 return STATUS_ERROR_FMT(ERROR_ILLEGAL_ARGUMENT,
1368 "Camera ID \"%s\" is a not valid camera ID", id.string());
Chien-Yu Chen88da5262015-02-17 13:56:46 -08001369 }
1370
1371 {
1372 Mutex::Autolock al(mTorchStatusMutex);
Eino-Ville Talvalad56db1d2015-12-17 16:50:35 -08001373 int32_t status;
1374 status_t err = getTorchStatusLocked(id, &status);
1375 if (err != OK) {
1376 if (err == NAME_NOT_FOUND) {
1377 return STATUS_ERROR_FMT(ERROR_ILLEGAL_ARGUMENT,
1378 "Camera \"%s\" does not have a flash unit", id.string());
1379 }
Chien-Yu Chen88da5262015-02-17 13:56:46 -08001380 ALOGE("%s: getting current torch status failed for camera %s",
1381 __FUNCTION__, id.string());
Eino-Ville Talvalad56db1d2015-12-17 16:50:35 -08001382 return STATUS_ERROR_FMT(ERROR_INVALID_OPERATION,
1383 "Error updating torch status for camera \"%s\": %s (%d)", id.string(),
1384 strerror(-err), err);
Chien-Yu Chen88da5262015-02-17 13:56:46 -08001385 }
1386
1387 if (status == ICameraServiceListener::TORCH_STATUS_NOT_AVAILABLE) {
Ruben Brunkcc776712015-02-17 20:18:47 -08001388 if (cameraStatus == ICameraServiceListener::STATUS_NOT_AVAILABLE) {
Chien-Yu Chen88da5262015-02-17 13:56:46 -08001389 ALOGE("%s: torch mode of camera %s is not available because "
1390 "camera is in use", __FUNCTION__, id.string());
Eino-Ville Talvalad56db1d2015-12-17 16:50:35 -08001391 return STATUS_ERROR_FMT(ERROR_CAMERA_IN_USE,
1392 "Torch for camera \"%s\" is not available due to an existing camera user",
1393 id.string());
Chien-Yu Chen88da5262015-02-17 13:56:46 -08001394 } else {
1395 ALOGE("%s: torch mode of camera %s is not available due to "
1396 "insufficient resources", __FUNCTION__, id.string());
Eino-Ville Talvalad56db1d2015-12-17 16:50:35 -08001397 return STATUS_ERROR_FMT(ERROR_MAX_CAMERAS_IN_USE,
1398 "Torch for camera \"%s\" is not available due to insufficient resources",
1399 id.string());
Chien-Yu Chen88da5262015-02-17 13:56:46 -08001400 }
1401 }
1402 }
1403
Ruben Brunk99e69712015-05-26 17:25:07 -07001404 {
1405 // Update UID map - this is used in the torch status changed callbacks, so must be done
1406 // before setTorchMode
Chien-Yu Chenfe751be2015-09-01 14:16:44 -07001407 Mutex::Autolock al(mTorchUidMapMutex);
Ruben Brunk99e69712015-05-26 17:25:07 -07001408 if (mTorchUidMap.find(id) == mTorchUidMap.end()) {
1409 mTorchUidMap[id].first = uid;
1410 mTorchUidMap[id].second = uid;
1411 } else {
1412 // Set the pending UID
1413 mTorchUidMap[id].first = uid;
1414 }
1415 }
1416
Eino-Ville Talvalad56db1d2015-12-17 16:50:35 -08001417 status_t err = mFlashlight->setTorchMode(id, enabled);
Ruben Brunk99e69712015-05-26 17:25:07 -07001418
Eino-Ville Talvalad56db1d2015-12-17 16:50:35 -08001419 if (err != OK) {
1420 int32_t errorCode;
1421 String8 msg;
1422 switch (err) {
1423 case -ENOSYS:
1424 msg = String8::format("Camera \"%s\" has no flashlight",
1425 id.string());
1426 errorCode = ERROR_ILLEGAL_ARGUMENT;
1427 break;
1428 default:
1429 msg = String8::format(
1430 "Setting torch mode of camera \"%s\" to %d failed: %s (%d)",
1431 id.string(), enabled, strerror(-err), err);
1432 errorCode = ERROR_INVALID_OPERATION;
1433 }
1434 ALOGE("%s: %s", __FUNCTION__, msg.string());
1435 return STATUS_ERROR(errorCode, msg.string());
Chien-Yu Chen3068d732015-02-09 13:29:57 -08001436 }
1437
Chien-Yu Chen88da5262015-02-17 13:56:46 -08001438 {
1439 // update the link to client's death
1440 Mutex::Autolock al(mTorchClientMapMutex);
1441 ssize_t index = mTorchClientMap.indexOfKey(id);
1442 if (enabled) {
1443 if (index == NAME_NOT_FOUND) {
1444 mTorchClientMap.add(id, clientBinder);
1445 } else {
Ruben Brunk99e69712015-05-26 17:25:07 -07001446 mTorchClientMap.valueAt(index)->unlinkToDeath(this);
Chien-Yu Chen88da5262015-02-17 13:56:46 -08001447 mTorchClientMap.replaceValueAt(index, clientBinder);
1448 }
1449 clientBinder->linkToDeath(this);
1450 } else if (index != NAME_NOT_FOUND) {
Ruben Brunk99e69712015-05-26 17:25:07 -07001451 mTorchClientMap.valueAt(index)->unlinkToDeath(this);
Chien-Yu Chen3068d732015-02-09 13:29:57 -08001452 }
Chien-Yu Chen3068d732015-02-09 13:29:57 -08001453 }
1454
Eino-Ville Talvalad56db1d2015-12-17 16:50:35 -08001455 return Status::ok();
Chien-Yu Chen3068d732015-02-09 13:29:57 -08001456}
1457
Eino-Ville Talvalad56db1d2015-12-17 16:50:35 -08001458Status CameraService::notifySystemEvent(int32_t eventId,
1459 const std::vector<int32_t>& args) {
Eino-Ville Talvalaa84bbe62015-09-08 17:59:17 -07001460 ATRACE_CALL();
1461
Ruben Brunk36597b22015-03-20 22:15:57 -07001462 switch(eventId) {
Eino-Ville Talvalad56db1d2015-12-17 16:50:35 -08001463 case ICameraService::EVENT_USER_SWITCHED: {
1464 doUserSwitch(/*newUserIds*/ args);
Ruben Brunk36597b22015-03-20 22:15:57 -07001465 break;
1466 }
Eino-Ville Talvalad56db1d2015-12-17 16:50:35 -08001467 case ICameraService::EVENT_NONE:
Ruben Brunk36597b22015-03-20 22:15:57 -07001468 default: {
1469 ALOGW("%s: Received invalid system event from system_server: %d", __FUNCTION__,
1470 eventId);
1471 break;
1472 }
1473 }
Eino-Ville Talvalad56db1d2015-12-17 16:50:35 -08001474 return Status::ok();
Ruben Brunk36597b22015-03-20 22:15:57 -07001475}
1476
Eino-Ville Talvalad56db1d2015-12-17 16:50:35 -08001477Status CameraService::addListener(const sp<ICameraServiceListener>& listener) {
Eino-Ville Talvalaa84bbe62015-09-08 17:59:17 -07001478 ATRACE_CALL();
1479
Igor Murashkinbfc99152013-02-27 12:55:20 -08001480 ALOGV("%s: Add listener %p", __FUNCTION__, listener.get());
Igor Murashkin634a5152013-02-20 17:15:11 -08001481
Ruben Brunk3450ba72015-06-16 11:00:37 -07001482 if (listener == nullptr) {
Igor Murashkinbd3e2e02014-03-17 13:01:41 -07001483 ALOGE("%s: Listener must not be null", __FUNCTION__);
Eino-Ville Talvalad56db1d2015-12-17 16:50:35 -08001484 return STATUS_ERROR(ERROR_ILLEGAL_ARGUMENT, "Null listener given to addListener");
Igor Murashkinbd3e2e02014-03-17 13:01:41 -07001485 }
1486
Igor Murashkinbfc99152013-02-27 12:55:20 -08001487 Mutex::Autolock lock(mServiceLock);
1488
Ruben Brunkcc776712015-02-17 20:18:47 -08001489 {
1490 Mutex::Autolock lock(mStatusListenerLock);
1491 for (auto& it : mListenerList) {
1492 if (IInterface::asBinder(it) == IInterface::asBinder(listener)) {
1493 ALOGW("%s: Tried to add listener %p which was already subscribed",
1494 __FUNCTION__, listener.get());
Eino-Ville Talvalad56db1d2015-12-17 16:50:35 -08001495 return STATUS_ERROR(ERROR_ALREADY_EXISTS, "Listener already registered");
Ruben Brunkcc776712015-02-17 20:18:47 -08001496 }
Igor Murashkinbfc99152013-02-27 12:55:20 -08001497 }
Ruben Brunkcc776712015-02-17 20:18:47 -08001498
1499 mListenerList.push_back(listener);
Igor Murashkinbfc99152013-02-27 12:55:20 -08001500 }
1501
Igor Murashkinbfc99152013-02-27 12:55:20 -08001502
Igor Murashkincba2c162013-03-20 15:56:31 -07001503 /* Immediately signal current status to this listener only */
1504 {
Ruben Brunkcc776712015-02-17 20:18:47 -08001505 Mutex::Autolock lock(mCameraStatesLock);
1506 for (auto& i : mCameraStates) {
1507 // TODO: Update binder to use String16 for camera IDs and remove;
1508 int id = cameraIdToInt(i.first);
1509 if (id == -1) continue;
1510
1511 listener->onStatusChanged(i.second->getStatus(), id);
Igor Murashkincba2c162013-03-20 15:56:31 -07001512 }
1513 }
1514
Chien-Yu Chen3068d732015-02-09 13:29:57 -08001515 /* Immediately signal current torch status to this listener only */
1516 {
1517 Mutex::Autolock al(mTorchStatusMutex);
1518 for (size_t i = 0; i < mTorchStatusMap.size(); i++ ) {
Chien-Yu Chen88da5262015-02-17 13:56:46 -08001519 String16 id = String16(mTorchStatusMap.keyAt(i).string());
1520 listener->onTorchStatusChanged(mTorchStatusMap.valueAt(i), id);
Chien-Yu Chen3068d732015-02-09 13:29:57 -08001521 }
Chien-Yu Chen3068d732015-02-09 13:29:57 -08001522 }
1523
Eino-Ville Talvalad56db1d2015-12-17 16:50:35 -08001524 return Status::ok();
Igor Murashkinbfc99152013-02-27 12:55:20 -08001525}
Ruben Brunkcc776712015-02-17 20:18:47 -08001526
Eino-Ville Talvalad56db1d2015-12-17 16:50:35 -08001527Status CameraService::removeListener(const sp<ICameraServiceListener>& listener) {
Eino-Ville Talvalaa84bbe62015-09-08 17:59:17 -07001528 ATRACE_CALL();
1529
Igor Murashkinbfc99152013-02-27 12:55:20 -08001530 ALOGV("%s: Remove listener %p", __FUNCTION__, listener.get());
1531
Igor Murashkinbd3e2e02014-03-17 13:01:41 -07001532 if (listener == 0) {
1533 ALOGE("%s: Listener must not be null", __FUNCTION__);
Eino-Ville Talvalad56db1d2015-12-17 16:50:35 -08001534 return STATUS_ERROR(ERROR_ILLEGAL_ARGUMENT, "Null listener given to removeListener");
Igor Murashkinbd3e2e02014-03-17 13:01:41 -07001535 }
1536
Igor Murashkinbfc99152013-02-27 12:55:20 -08001537 Mutex::Autolock lock(mServiceLock);
1538
Ruben Brunkcc776712015-02-17 20:18:47 -08001539 {
1540 Mutex::Autolock lock(mStatusListenerLock);
1541 for (auto it = mListenerList.begin(); it != mListenerList.end(); it++) {
1542 if (IInterface::asBinder(*it) == IInterface::asBinder(listener)) {
1543 mListenerList.erase(it);
Eino-Ville Talvalad56db1d2015-12-17 16:50:35 -08001544 return Status::ok();
Ruben Brunkcc776712015-02-17 20:18:47 -08001545 }
Igor Murashkinbfc99152013-02-27 12:55:20 -08001546 }
1547 }
1548
1549 ALOGW("%s: Tried to remove a listener %p which was not subscribed",
1550 __FUNCTION__, listener.get());
1551
Eino-Ville Talvalad56db1d2015-12-17 16:50:35 -08001552 return STATUS_ERROR(ERROR_ILLEGAL_ARGUMENT, "Unregistered listener given to removeListener");
Igor Murashkin634a5152013-02-20 17:15:11 -08001553}
1554
Eino-Ville Talvalad56db1d2015-12-17 16:50:35 -08001555Status CameraService::getLegacyParameters(int cameraId, /*out*/String16* parameters) {
Eino-Ville Talvalaa84bbe62015-09-08 17:59:17 -07001556
1557 ATRACE_CALL();
Igor Murashkin65d14b92014-06-17 12:03:20 -07001558 ALOGV("%s: for camera ID = %d", __FUNCTION__, cameraId);
1559
1560 if (parameters == NULL) {
1561 ALOGE("%s: parameters must not be null", __FUNCTION__);
Eino-Ville Talvalad56db1d2015-12-17 16:50:35 -08001562 return STATUS_ERROR(ERROR_ILLEGAL_ARGUMENT, "Parameters must not be null");
Igor Murashkin65d14b92014-06-17 12:03:20 -07001563 }
1564
Eino-Ville Talvalad56db1d2015-12-17 16:50:35 -08001565 Status ret = Status::ok();
Igor Murashkin65d14b92014-06-17 12:03:20 -07001566
1567 CameraParameters shimParams;
Eino-Ville Talvalad56db1d2015-12-17 16:50:35 -08001568 if (!(ret = getLegacyParametersLazy(cameraId, /*out*/&shimParams)).isOk()) {
Igor Murashkin65d14b92014-06-17 12:03:20 -07001569 // Error logged by caller
1570 return ret;
1571 }
1572
1573 String8 shimParamsString8 = shimParams.flatten();
1574 String16 shimParamsString16 = String16(shimParamsString8);
1575
1576 *parameters = shimParamsString16;
1577
Eino-Ville Talvalad56db1d2015-12-17 16:50:35 -08001578 return ret;
Igor Murashkin65d14b92014-06-17 12:03:20 -07001579}
1580
Eino-Ville Talvalad56db1d2015-12-17 16:50:35 -08001581Status CameraService::supportsCameraApi(int cameraId, int apiVersion, bool *isSupported) {
Eino-Ville Talvalaa84bbe62015-09-08 17:59:17 -07001582 ATRACE_CALL();
1583
Igor Murashkin65d14b92014-06-17 12:03:20 -07001584 ALOGV("%s: for camera ID = %d", __FUNCTION__, cameraId);
1585
1586 switch (apiVersion) {
1587 case API_VERSION_1:
1588 case API_VERSION_2:
1589 break;
1590 default:
Eino-Ville Talvalad56db1d2015-12-17 16:50:35 -08001591 String8 msg = String8::format("Unknown API version %d", apiVersion);
1592 ALOGE("%s: %s", __FUNCTION__, msg.string());
1593 return STATUS_ERROR(ERROR_ILLEGAL_ARGUMENT, msg.string());
Igor Murashkin65d14b92014-06-17 12:03:20 -07001594 }
1595
1596 int facing = -1;
1597 int deviceVersion = getDeviceVersion(cameraId, &facing);
1598
1599 switch(deviceVersion) {
Eino-Ville Talvalad56db1d2015-12-17 16:50:35 -08001600 case CAMERA_DEVICE_API_VERSION_1_0:
1601 case CAMERA_DEVICE_API_VERSION_3_0:
1602 case CAMERA_DEVICE_API_VERSION_3_1:
1603 if (apiVersion == API_VERSION_2) {
1604 ALOGV("%s: Camera id %d uses HAL version %d <3.2, doesn't support api2 without shim",
1605 __FUNCTION__, cameraId, deviceVersion);
1606 *isSupported = false;
1607 } else { // if (apiVersion == API_VERSION_1) {
1608 ALOGV("%s: Camera id %d uses older HAL before 3.2, but api1 is always supported",
1609 __FUNCTION__, cameraId);
1610 *isSupported = true;
1611 }
1612 break;
1613 case CAMERA_DEVICE_API_VERSION_3_2:
1614 case CAMERA_DEVICE_API_VERSION_3_3:
1615 ALOGV("%s: Camera id %d uses HAL3.2 or newer, supports api1/api2 directly",
Igor Murashkin65d14b92014-06-17 12:03:20 -07001616 __FUNCTION__, cameraId);
Eino-Ville Talvalad56db1d2015-12-17 16:50:35 -08001617 *isSupported = true;
1618 break;
1619 case -1: {
1620 String8 msg = String8::format("Unknown camera ID %d", cameraId);
1621 ALOGE("%s: %s", __FUNCTION__, msg.string());
1622 return STATUS_ERROR(ERROR_ILLEGAL_ARGUMENT, msg.string());
Igor Murashkin65d14b92014-06-17 12:03:20 -07001623 }
Eino-Ville Talvalad56db1d2015-12-17 16:50:35 -08001624 default: {
1625 String8 msg = String8::format("Unknown device version %d for device %d",
1626 deviceVersion, cameraId);
1627 ALOGE("%s: %s", __FUNCTION__, msg.string());
1628 return STATUS_ERROR(ERROR_INVALID_OPERATION, msg.string());
1629 }
Igor Murashkin65d14b92014-06-17 12:03:20 -07001630 }
1631
Eino-Ville Talvalad56db1d2015-12-17 16:50:35 -08001632 return Status::ok();
Igor Murashkin65d14b92014-06-17 12:03:20 -07001633}
1634
Ruben Brunkcc776712015-02-17 20:18:47 -08001635void CameraService::removeByClient(const BasicClient* client) {
Igor Murashkinecf17e82012-10-02 16:05:11 -07001636 Mutex::Autolock lock(mServiceLock);
Ruben Brunkcc776712015-02-17 20:18:47 -08001637 for (auto& i : mActiveClientManager.getAll()) {
1638 auto clientSp = i->getValue();
1639 if (clientSp.get() == client) {
1640 mActiveClientManager.remove(i);
Igor Murashkin634a5152013-02-20 17:15:11 -08001641 }
Igor Murashkinecf17e82012-10-02 16:05:11 -07001642 }
Igor Murashkin634a5152013-02-20 17:15:11 -08001643}
1644
Ruben Brunkcc776712015-02-17 20:18:47 -08001645bool CameraService::evictClientIdByRemote(const wp<IBinder>& remote) {
1646 const int callingPid = getCallingPid();
1647 const int servicePid = getpid();
1648 bool ret = false;
1649 {
1650 // Acquire mServiceLock and prevent other clients from connecting
1651 std::unique_ptr<AutoConditionLock> lock =
1652 AutoConditionLock::waitAndAcquire(mServiceLockWrapper);
Igor Murashkin634a5152013-02-20 17:15:11 -08001653
Igor Murashkin634a5152013-02-20 17:15:11 -08001654
Ruben Brunkcc776712015-02-17 20:18:47 -08001655 std::vector<sp<BasicClient>> evicted;
1656 for (auto& i : mActiveClientManager.getAll()) {
1657 auto clientSp = i->getValue();
1658 if (clientSp.get() == nullptr) {
1659 ALOGE("%s: Dead client still in mActiveClientManager.", __FUNCTION__);
1660 mActiveClientManager.remove(i);
1661 continue;
1662 }
1663 if (remote == clientSp->getRemote() && (callingPid == servicePid ||
1664 callingPid == clientSp->getClientPid())) {
1665 mActiveClientManager.remove(i);
1666 evicted.push_back(clientSp);
Igor Murashkin634a5152013-02-20 17:15:11 -08001667
Ruben Brunkcc776712015-02-17 20:18:47 -08001668 // Notify the client of disconnection
Eino-Ville Talvalad56db1d2015-12-17 16:50:35 -08001669 clientSp->notifyError(
1670 hardware::camera2::ICameraDeviceCallbacks::ERROR_CAMERA_DISCONNECTED,
Ruben Brunkcc776712015-02-17 20:18:47 -08001671 CaptureResultExtras());
Igor Murashkin634a5152013-02-20 17:15:11 -08001672 }
1673 }
1674
Ruben Brunkcc776712015-02-17 20:18:47 -08001675 // Do not hold mServiceLock while disconnecting clients, but retain the condition blocking
1676 // other clients from connecting in mServiceLockWrapper if held
1677 mServiceLock.unlock();
1678
Ruben Brunk36597b22015-03-20 22:15:57 -07001679 // Do not clear caller identity, remote caller should be client proccess
1680
Ruben Brunkcc776712015-02-17 20:18:47 -08001681 for (auto& i : evicted) {
1682 if (i.get() != nullptr) {
1683 i->disconnect();
1684 ret = true;
1685 }
Igor Murashkin634a5152013-02-20 17:15:11 -08001686 }
1687
Ruben Brunkcc776712015-02-17 20:18:47 -08001688 // Reacquire mServiceLock
1689 mServiceLock.lock();
Igor Murashkin634a5152013-02-20 17:15:11 -08001690
Ruben Brunkcc776712015-02-17 20:18:47 -08001691 } // lock is destroyed, allow further connect calls
1692
1693 return ret;
Igor Murashkinecf17e82012-10-02 16:05:11 -07001694}
1695
Igor Murashkinecf17e82012-10-02 16:05:11 -07001696
Eino-Ville Talvalabad43582015-08-14 13:12:32 -07001697/**
1698 * Check camera capabilities, such as support for basic color operation
Eino-Ville Talvalad309fb92015-11-25 12:12:45 -08001699 * Also check that the device HAL version is still in support
Eino-Ville Talvalabad43582015-08-14 13:12:32 -07001700 */
1701int CameraService::checkCameraCapabilities(int id, camera_info info, int *latestStrangeCameraId) {
Yin-Chia Yeh654b4bf2015-12-08 12:19:31 -08001702 // device_version undefined in CAMERA_MODULE_API_VERSION_1_0,
1703 // All CAMERA_MODULE_API_VERSION_1_0 devices are backward-compatible
1704 if (mModule->getModuleApiVersion() >= CAMERA_MODULE_API_VERSION_2_0) {
1705 // Verify the device version is in the supported range
1706 switch (info.device_version) {
1707 case CAMERA_DEVICE_API_VERSION_1_0:
1708 case CAMERA_DEVICE_API_VERSION_3_0:
1709 case CAMERA_DEVICE_API_VERSION_3_1:
1710 case CAMERA_DEVICE_API_VERSION_3_2:
1711 case CAMERA_DEVICE_API_VERSION_3_3:
1712 // in support
1713 break;
1714 case CAMERA_DEVICE_API_VERSION_2_0:
1715 case CAMERA_DEVICE_API_VERSION_2_1:
1716 // no longer supported
1717 default:
1718 ALOGE("%s: Device %d has HAL version %x, which is not supported",
1719 __FUNCTION__, id, info.device_version);
1720 String8 msg = String8::format(
1721 "Unsupported device HAL version %x for device %d",
1722 info.device_version, id);
1723 logServiceError(msg.string(), NO_INIT);
1724 return NO_INIT;
1725 }
Eino-Ville Talvalad309fb92015-11-25 12:12:45 -08001726 }
1727
Eino-Ville Talvalabad43582015-08-14 13:12:32 -07001728 // Assume all devices pre-v3.3 are backward-compatible
1729 bool isBackwardCompatible = true;
1730 if (mModule->getModuleApiVersion() >= CAMERA_MODULE_API_VERSION_2_0
1731 && info.device_version >= CAMERA_DEVICE_API_VERSION_3_3) {
1732 isBackwardCompatible = false;
1733 status_t res;
1734 camera_metadata_ro_entry_t caps;
1735 res = find_camera_metadata_ro_entry(
1736 info.static_camera_characteristics,
1737 ANDROID_REQUEST_AVAILABLE_CAPABILITIES,
1738 &caps);
1739 if (res != 0) {
1740 ALOGW("%s: Unable to find camera capabilities for camera device %d",
1741 __FUNCTION__, id);
1742 caps.count = 0;
1743 }
1744 for (size_t i = 0; i < caps.count; i++) {
1745 if (caps.data.u8[i] ==
1746 ANDROID_REQUEST_AVAILABLE_CAPABILITIES_BACKWARD_COMPATIBLE) {
1747 isBackwardCompatible = true;
1748 break;
1749 }
1750 }
1751 }
1752
1753 if (!isBackwardCompatible) {
1754 mNumberOfNormalCameras--;
1755 *latestStrangeCameraId = id;
1756 } else {
1757 if (id > *latestStrangeCameraId) {
1758 ALOGE("%s: Normal camera ID %d higher than strange camera ID %d. "
1759 "This is not allowed due backward-compatibility requirements",
1760 __FUNCTION__, id, *latestStrangeCameraId);
Eino-Ville Talvalad309fb92015-11-25 12:12:45 -08001761 logServiceError("Invalid order of camera devices", NO_INIT);
Eino-Ville Talvalabad43582015-08-14 13:12:32 -07001762 mNumberOfCameras = 0;
1763 mNumberOfNormalCameras = 0;
Eino-Ville Talvalad309fb92015-11-25 12:12:45 -08001764 return NO_INIT;
Eino-Ville Talvalabad43582015-08-14 13:12:32 -07001765 }
1766 }
1767 return OK;
1768}
1769
Ruben Brunkcc776712015-02-17 20:18:47 -08001770std::shared_ptr<CameraService::CameraState> CameraService::getCameraState(
1771 const String8& cameraId) const {
1772 std::shared_ptr<CameraState> state;
1773 {
1774 Mutex::Autolock lock(mCameraStatesLock);
1775 auto iter = mCameraStates.find(cameraId);
1776 if (iter != mCameraStates.end()) {
1777 state = iter->second;
Mathias Agopian65ab4712010-07-14 17:59:35 -07001778 }
1779 }
Ruben Brunkcc776712015-02-17 20:18:47 -08001780 return state;
Mathias Agopian65ab4712010-07-14 17:59:35 -07001781}
1782
Ruben Brunkcc776712015-02-17 20:18:47 -08001783sp<CameraService::BasicClient> CameraService::removeClientLocked(const String8& cameraId) {
1784 // Remove from active clients list
1785 auto clientDescriptorPtr = mActiveClientManager.remove(cameraId);
1786 if (clientDescriptorPtr == nullptr) {
1787 ALOGW("%s: Could not evict client, no client for camera ID %s", __FUNCTION__,
1788 cameraId.string());
1789 return sp<BasicClient>{nullptr};
1790 }
1791
1792 return clientDescriptorPtr->getValue();
Keun young Parkd8973a72012-03-28 14:13:09 -07001793}
1794
Eino-Ville Talvalad56db1d2015-12-17 16:50:35 -08001795void CameraService::doUserSwitch(const std::vector<int32_t>& newUserIds) {
Ruben Brunk36597b22015-03-20 22:15:57 -07001796 // Acquire mServiceLock and prevent other clients from connecting
1797 std::unique_ptr<AutoConditionLock> lock =
1798 AutoConditionLock::waitAndAcquire(mServiceLockWrapper);
1799
Ruben Brunk6267b532015-04-30 17:44:07 -07001800 std::set<userid_t> newAllowedUsers;
Eino-Ville Talvalad56db1d2015-12-17 16:50:35 -08001801 for (size_t i = 0; i < newUserIds.size(); i++) {
1802 if (newUserIds[i] < 0) {
Ruben Brunk6267b532015-04-30 17:44:07 -07001803 ALOGE("%s: Bad user ID %d given during user switch, ignoring.",
Eino-Ville Talvalad56db1d2015-12-17 16:50:35 -08001804 __FUNCTION__, newUserIds[i]);
Ruben Brunk6267b532015-04-30 17:44:07 -07001805 return;
1806 }
Eino-Ville Talvalad56db1d2015-12-17 16:50:35 -08001807 newAllowedUsers.insert(static_cast<userid_t>(newUserIds[i]));
Ruben Brunk36597b22015-03-20 22:15:57 -07001808 }
1809
Ruben Brunka8ca9152015-04-07 14:23:40 -07001810
Ruben Brunk6267b532015-04-30 17:44:07 -07001811 if (newAllowedUsers == mAllowedUsers) {
1812 ALOGW("%s: Received notification of user switch with no updated user IDs.", __FUNCTION__);
1813 return;
1814 }
1815
1816 logUserSwitch(mAllowedUsers, newAllowedUsers);
1817
1818 mAllowedUsers = std::move(newAllowedUsers);
Ruben Brunk36597b22015-03-20 22:15:57 -07001819
1820 // Current user has switched, evict all current clients.
1821 std::vector<sp<BasicClient>> evicted;
1822 for (auto& i : mActiveClientManager.getAll()) {
1823 auto clientSp = i->getValue();
1824
1825 if (clientSp.get() == nullptr) {
1826 ALOGE("%s: Dead client still in mActiveClientManager.", __FUNCTION__);
1827 continue;
1828 }
1829
Ruben Brunk6267b532015-04-30 17:44:07 -07001830 // Don't evict clients that are still allowed.
1831 uid_t clientUid = clientSp->getClientUid();
1832 userid_t clientUserId = multiuser_get_user_id(clientUid);
1833 if (mAllowedUsers.find(clientUserId) != mAllowedUsers.end()) {
1834 continue;
1835 }
1836
Ruben Brunk36597b22015-03-20 22:15:57 -07001837 evicted.push_back(clientSp);
1838
1839 String8 curTime = getFormattedCurrentTime();
1840
1841 ALOGE("Evicting conflicting client for camera ID %s due to user change",
1842 i->getKey().string());
Ruben Brunka8ca9152015-04-07 14:23:40 -07001843
Ruben Brunk36597b22015-03-20 22:15:57 -07001844 // Log the clients evicted
Ruben Brunka8ca9152015-04-07 14:23:40 -07001845 logEvent(String8::format("EVICT device %s client held by package %s (PID %"
Ruben Brunk36597b22015-03-20 22:15:57 -07001846 PRId32 ", priority %" PRId32 ")\n - Evicted due to user switch.",
Ruben Brunka8ca9152015-04-07 14:23:40 -07001847 i->getKey().string(), String8{clientSp->getPackageName()}.string(),
1848 i->getOwnerId(), i->getPriority()));
Ruben Brunk36597b22015-03-20 22:15:57 -07001849
1850 }
1851
1852 // Do not hold mServiceLock while disconnecting clients, but retain the condition
1853 // blocking other clients from connecting in mServiceLockWrapper if held.
1854 mServiceLock.unlock();
1855
1856 // Clear caller identity temporarily so client disconnect PID checks work correctly
1857 int64_t token = IPCThreadState::self()->clearCallingIdentity();
1858
1859 for (auto& i : evicted) {
1860 i->disconnect();
1861 }
1862
1863 IPCThreadState::self()->restoreCallingIdentity(token);
1864
1865 // Reacquire mServiceLock
1866 mServiceLock.lock();
1867}
Ruben Brunkcc776712015-02-17 20:18:47 -08001868
Ruben Brunka8ca9152015-04-07 14:23:40 -07001869void CameraService::logEvent(const char* event) {
Ruben Brunkcc776712015-02-17 20:18:47 -08001870 String8 curTime = getFormattedCurrentTime();
Ruben Brunka8ca9152015-04-07 14:23:40 -07001871 Mutex::Autolock l(mLogLock);
1872 mEventLog.add(String8::format("%s : %s", curTime.string(), event));
Mathias Agopian65ab4712010-07-14 17:59:35 -07001873}
1874
Ruben Brunka8ca9152015-04-07 14:23:40 -07001875void CameraService::logDisconnected(const char* cameraId, int clientPid,
Svetoslav Ganov280405a2015-05-12 02:19:27 +00001876 const char* clientPackage) {
Ruben Brunkcc776712015-02-17 20:18:47 -08001877 // Log the clients evicted
Ruben Brunka8ca9152015-04-07 14:23:40 -07001878 logEvent(String8::format("DISCONNECT device %s client for package %s (PID %d)", cameraId,
Svetoslav Ganov280405a2015-05-12 02:19:27 +00001879 clientPackage, clientPid));
Ruben Brunka8ca9152015-04-07 14:23:40 -07001880}
1881
1882void CameraService::logConnected(const char* cameraId, int clientPid,
Svetoslav Ganov280405a2015-05-12 02:19:27 +00001883 const char* clientPackage) {
Ruben Brunka8ca9152015-04-07 14:23:40 -07001884 // Log the clients evicted
1885 logEvent(String8::format("CONNECT device %s client for package %s (PID %d)", cameraId,
Svetoslav Ganov280405a2015-05-12 02:19:27 +00001886 clientPackage, clientPid));
Ruben Brunka8ca9152015-04-07 14:23:40 -07001887}
1888
1889void CameraService::logRejected(const char* cameraId, int clientPid,
Svetoslav Ganov280405a2015-05-12 02:19:27 +00001890 const char* clientPackage, const char* reason) {
Ruben Brunka8ca9152015-04-07 14:23:40 -07001891 // Log the client rejected
1892 logEvent(String8::format("REJECT device %s client for package %s (PID %d), reason: (%s)",
Svetoslav Ganov280405a2015-05-12 02:19:27 +00001893 cameraId, clientPackage, clientPid, reason));
Ruben Brunka8ca9152015-04-07 14:23:40 -07001894}
1895
Ruben Brunk6267b532015-04-30 17:44:07 -07001896void CameraService::logUserSwitch(const std::set<userid_t>& oldUserIds,
1897 const std::set<userid_t>& newUserIds) {
1898 String8 newUsers = toString(newUserIds);
1899 String8 oldUsers = toString(oldUserIds);
Ruben Brunka8ca9152015-04-07 14:23:40 -07001900 // Log the new and old users
Ruben Brunk6267b532015-04-30 17:44:07 -07001901 logEvent(String8::format("USER_SWITCH previous allowed users: %s , current allowed users: %s",
1902 oldUsers.string(), newUsers.string()));
Ruben Brunka8ca9152015-04-07 14:23:40 -07001903}
1904
1905void CameraService::logDeviceRemoved(const char* cameraId, const char* reason) {
1906 // Log the device removal
1907 logEvent(String8::format("REMOVE device %s, reason: (%s)", cameraId, reason));
1908}
1909
1910void CameraService::logDeviceAdded(const char* cameraId, const char* reason) {
1911 // Log the device removal
1912 logEvent(String8::format("ADD device %s, reason: (%s)", cameraId, reason));
1913}
1914
1915void CameraService::logClientDied(int clientPid, const char* reason) {
1916 // Log the device removal
1917 logEvent(String8::format("DIED client(s) with PID %d, reason: (%s)", clientPid, reason));
Igor Murashkinecf17e82012-10-02 16:05:11 -07001918}
1919
Eino-Ville Talvala1527f072015-04-07 15:55:31 -07001920void CameraService::logServiceError(const char* msg, int errorCode) {
1921 String8 curTime = getFormattedCurrentTime();
Eino-Ville Talvalad309fb92015-11-25 12:12:45 -08001922 logEvent(String8::format("SERVICE ERROR: %s : %d (%s)", msg, errorCode, strerror(-errorCode)));
Eino-Ville Talvala1527f072015-04-07 15:55:31 -07001923}
1924
Ruben Brunk36597b22015-03-20 22:15:57 -07001925status_t CameraService::onTransact(uint32_t code, const Parcel& data, Parcel* reply,
1926 uint32_t flags) {
1927
1928 const int pid = getCallingPid();
1929 const int selfPid = getpid();
1930
Mathias Agopian65ab4712010-07-14 17:59:35 -07001931 // Permission checks
1932 switch (code) {
Eino-Ville Talvalad56db1d2015-12-17 16:50:35 -08001933 case BnCameraService::NOTIFYSYSTEMEVENT: {
Ruben Brunk36597b22015-03-20 22:15:57 -07001934 if (pid != selfPid) {
1935 // Ensure we're being called by system_server, or similar process with
1936 // permissions to notify the camera service about system events
1937 if (!checkCallingPermission(
1938 String16("android.permission.CAMERA_SEND_SYSTEM_EVENTS"))) {
1939 const int uid = getCallingUid();
1940 ALOGE("Permission Denial: cannot send updates to camera service about system"
1941 " events from pid=%d, uid=%d", pid, uid);
1942 return PERMISSION_DENIED;
1943 }
1944 }
1945 break;
1946 }
Mathias Agopian65ab4712010-07-14 17:59:35 -07001947 }
1948
1949 return BnCameraService::onTransact(code, data, reply, flags);
1950}
1951
Mathias Agopian65ab4712010-07-14 17:59:35 -07001952// We share the media players for shutter and recording sound for all clients.
1953// A reference count is kept to determine when we will actually release the
1954// media players.
1955
Chih-Chung Changff4f55c2011-10-17 19:03:12 +08001956MediaPlayer* CameraService::newMediaPlayer(const char *file) {
Mathias Agopian65ab4712010-07-14 17:59:35 -07001957 MediaPlayer* mp = new MediaPlayer();
Andreas Huber1b86fe02014-01-29 11:13:26 -08001958 if (mp->setDataSource(NULL /* httpService */, file, NULL) == NO_ERROR) {
Eino-Ville Talvala60a78ac2012-01-05 15:34:53 -08001959 mp->setAudioStreamType(AUDIO_STREAM_ENFORCED_AUDIBLE);
Mathias Agopian65ab4712010-07-14 17:59:35 -07001960 mp->prepare();
1961 } else {
Steve Block29357bc2012-01-06 19:20:56 +00001962 ALOGE("Failed to load CameraService sounds: %s", file);
Mathias Agopian65ab4712010-07-14 17:59:35 -07001963 return NULL;
1964 }
1965 return mp;
1966}
1967
1968void CameraService::loadSound() {
Eino-Ville Talvalaa84bbe62015-09-08 17:59:17 -07001969 ATRACE_CALL();
1970
Mathias Agopian65ab4712010-07-14 17:59:35 -07001971 Mutex::Autolock lock(mSoundLock);
1972 LOG1("CameraService::loadSound ref=%d", mSoundRef);
1973 if (mSoundRef++) return;
1974
1975 mSoundPlayer[SOUND_SHUTTER] = newMediaPlayer("/system/media/audio/ui/camera_click.ogg");
Chien-Yu Chen82104eb2015-10-14 11:29:31 -07001976 mSoundPlayer[SOUND_RECORDING_START] = newMediaPlayer("/system/media/audio/ui/VideoRecord.ogg");
1977 mSoundPlayer[SOUND_RECORDING_STOP] = newMediaPlayer("/system/media/audio/ui/VideoStop.ogg");
Mathias Agopian65ab4712010-07-14 17:59:35 -07001978}
1979
1980void CameraService::releaseSound() {
1981 Mutex::Autolock lock(mSoundLock);
1982 LOG1("CameraService::releaseSound ref=%d", mSoundRef);
1983 if (--mSoundRef) return;
1984
1985 for (int i = 0; i < NUM_SOUNDS; i++) {
1986 if (mSoundPlayer[i] != 0) {
1987 mSoundPlayer[i]->disconnect();
1988 mSoundPlayer[i].clear();
1989 }
1990 }
1991}
1992
1993void CameraService::playSound(sound_kind kind) {
Eino-Ville Talvalaa84bbe62015-09-08 17:59:17 -07001994 ATRACE_CALL();
1995
Mathias Agopian65ab4712010-07-14 17:59:35 -07001996 LOG1("playSound(%d)", kind);
1997 Mutex::Autolock lock(mSoundLock);
1998 sp<MediaPlayer> player = mSoundPlayer[kind];
1999 if (player != 0) {
Chih-Chung Chang8888a752011-10-20 10:47:26 +08002000 player->seekTo(0);
2001 player->start();
Mathias Agopian65ab4712010-07-14 17:59:35 -07002002 }
2003}
2004
2005// ----------------------------------------------------------------------------
2006
2007CameraService::Client::Client(const sp<CameraService>& cameraService,
Wu-cheng Lib7a67942010-08-17 15:45:37 -07002008 const sp<ICameraClient>& cameraClient,
Svetoslav Ganov280405a2015-05-12 02:19:27 +00002009 const String16& clientPackageName,
Eino-Ville Talvalaceb388d2013-02-19 10:40:14 -08002010 int cameraId, int cameraFacing,
2011 int clientPid, uid_t clientUid,
2012 int servicePid) :
Eino-Ville Talvalae992e752014-11-07 16:17:48 -08002013 CameraService::BasicClient(cameraService,
Marco Nelissenf8880202014-11-14 07:58:25 -08002014 IInterface::asBinder(cameraClient),
Svetoslav Ganov280405a2015-05-12 02:19:27 +00002015 clientPackageName,
Eino-Ville Talvalaceb388d2013-02-19 10:40:14 -08002016 cameraId, cameraFacing,
2017 clientPid, clientUid,
2018 servicePid)
Igor Murashkin634a5152013-02-20 17:15:11 -08002019{
Mathias Agopian65ab4712010-07-14 17:59:35 -07002020 int callingPid = getCallingPid();
Wu-cheng Li2fd24402012-02-23 19:01:00 -08002021 LOG1("Client::Client E (pid %d, id %d)", callingPid, cameraId);
Mathias Agopian65ab4712010-07-14 17:59:35 -07002022
Igor Murashkin44cfcf02013-03-01 16:22:28 -08002023 mRemoteCallback = cameraClient;
Mathias Agopian65ab4712010-07-14 17:59:35 -07002024
Mathias Agopian65ab4712010-07-14 17:59:35 -07002025 cameraService->loadSound();
Eino-Ville Talvalaceb388d2013-02-19 10:40:14 -08002026
Wu-cheng Li2fd24402012-02-23 19:01:00 -08002027 LOG1("Client::Client X (pid %d, id %d)", callingPid, cameraId);
Mathias Agopian65ab4712010-07-14 17:59:35 -07002028}
2029
Mathias Agopian65ab4712010-07-14 17:59:35 -07002030// tear down the client
2031CameraService::Client::~Client() {
Eino-Ville Talvalad09801b2013-04-23 15:16:57 -07002032 ALOGV("~Client");
Igor Murashkin634a5152013-02-20 17:15:11 -08002033 mDestructionStarted = true;
2034
Eino-Ville Talvalaf69c70d2012-05-20 15:59:14 -07002035 mCameraService->releaseSound();
Igor Murashkin036bc3e2012-10-08 15:09:46 -07002036 // unconditionally disconnect. function is idempotent
2037 Client::disconnect();
Mathias Agopian65ab4712010-07-14 17:59:35 -07002038}
2039
Igor Murashkin634a5152013-02-20 17:15:11 -08002040CameraService::BasicClient::BasicClient(const sp<CameraService>& cameraService,
Eino-Ville Talvalaceb388d2013-02-19 10:40:14 -08002041 const sp<IBinder>& remoteCallback,
Svetoslav Ganov280405a2015-05-12 02:19:27 +00002042 const String16& clientPackageName,
Eino-Ville Talvalaceb388d2013-02-19 10:40:14 -08002043 int cameraId, int cameraFacing,
2044 int clientPid, uid_t clientUid,
2045 int servicePid):
Svetoslav Ganov280405a2015-05-12 02:19:27 +00002046 mClientPackageName(clientPackageName), mDisconnected(false)
Igor Murashkin634a5152013-02-20 17:15:11 -08002047{
2048 mCameraService = cameraService;
Igor Murashkin44cfcf02013-03-01 16:22:28 -08002049 mRemoteBinder = remoteCallback;
Igor Murashkin634a5152013-02-20 17:15:11 -08002050 mCameraId = cameraId;
2051 mCameraFacing = cameraFacing;
2052 mClientPid = clientPid;
Eino-Ville Talvalaceb388d2013-02-19 10:40:14 -08002053 mClientUid = clientUid;
Igor Murashkin634a5152013-02-20 17:15:11 -08002054 mServicePid = servicePid;
Eino-Ville Talvalaceb388d2013-02-19 10:40:14 -08002055 mOpsActive = false;
Igor Murashkin634a5152013-02-20 17:15:11 -08002056 mDestructionStarted = false;
Yin-Chia Yeh0dea57f2015-12-09 16:46:07 -08002057
2058 // In some cases the calling code has no access to the package it runs under.
2059 // For example, NDK camera API.
2060 // In this case we will get the packages for the calling UID and pick the first one
2061 // for attributing the app op. This will work correctly for runtime permissions
2062 // as for legacy apps we will toggle the app op for all packages in the UID.
2063 // The caveat is that the operation may be attributed to the wrong package and
2064 // stats based on app ops may be slightly off.
2065 if (mClientPackageName.size() <= 0) {
2066 sp<IServiceManager> sm = defaultServiceManager();
2067 sp<IBinder> binder = sm->getService(String16(kPermissionServiceName));
2068 if (binder == 0) {
2069 ALOGE("Cannot get permission service");
2070 // Leave mClientPackageName unchanged (empty) and the further interaction
2071 // with camera will fail in BasicClient::startCameraOps
2072 return;
2073 }
2074
2075 sp<IPermissionController> permCtrl = interface_cast<IPermissionController>(binder);
2076 Vector<String16> packages;
2077
2078 permCtrl->getPackagesForUid(mClientUid, packages);
2079
2080 if (packages.isEmpty()) {
2081 ALOGE("No packages for calling UID");
2082 // Leave mClientPackageName unchanged (empty) and the further interaction
2083 // with camera will fail in BasicClient::startCameraOps
2084 return;
2085 }
2086 mClientPackageName = packages[0];
2087 }
Igor Murashkin634a5152013-02-20 17:15:11 -08002088}
2089
2090CameraService::BasicClient::~BasicClient() {
Eino-Ville Talvalad09801b2013-04-23 15:16:57 -07002091 ALOGV("~BasicClient");
Igor Murashkin634a5152013-02-20 17:15:11 -08002092 mDestructionStarted = true;
2093}
2094
Eino-Ville Talvalad56db1d2015-12-17 16:50:35 -08002095binder::Status CameraService::BasicClient::disconnect() {
2096 binder::Status res = Status::ok();
Ruben Brunk36597b22015-03-20 22:15:57 -07002097 if (mDisconnected) {
Eino-Ville Talvalad56db1d2015-12-17 16:50:35 -08002098 return res;
Ruben Brunk36597b22015-03-20 22:15:57 -07002099 }
Eino-Ville Talvala24901c82015-09-04 14:15:58 -07002100 mDisconnected = true;
Ruben Brunkcc776712015-02-17 20:18:47 -08002101
2102 mCameraService->removeByClient(this);
2103 mCameraService->logDisconnected(String8::format("%d", mCameraId), mClientPid,
Svetoslav Ganov280405a2015-05-12 02:19:27 +00002104 String8(mClientPackageName));
Ruben Brunkcc776712015-02-17 20:18:47 -08002105
2106 sp<IBinder> remote = getRemote();
2107 if (remote != nullptr) {
2108 remote->unlinkToDeath(mCameraService);
2109 }
Eino-Ville Talvalaf67e23e2014-07-23 17:17:59 -07002110
2111 finishCameraOps();
Ruben Brunkcc776712015-02-17 20:18:47 -08002112 ALOGI("%s: Disconnected client for camera %d for PID %d", __FUNCTION__, mCameraId, mClientPid);
2113
Igor Murashkincba2c162013-03-20 15:56:31 -07002114 // client shouldn't be able to call into us anymore
2115 mClientPid = 0;
Eino-Ville Talvalad56db1d2015-12-17 16:50:35 -08002116
2117 return res;
Igor Murashkin634a5152013-02-20 17:15:11 -08002118}
2119
Eino-Ville Talvalac4003962016-01-13 10:07:04 -08002120status_t CameraService::BasicClient::dump(int, const Vector<String16>&) {
2121 // No dumping of clients directly over Binder,
2122 // must go through CameraService::dump
2123 android_errorWriteWithInfoLog(SN_EVENT_LOG_ID, "26265403",
2124 IPCThreadState::self()->getCallingUid(), NULL, 0);
2125 return OK;
2126}
2127
Ruben Brunkcc776712015-02-17 20:18:47 -08002128String16 CameraService::BasicClient::getPackageName() const {
Svetoslav Ganov280405a2015-05-12 02:19:27 +00002129 return mClientPackageName;
Ruben Brunkcc776712015-02-17 20:18:47 -08002130}
2131
2132
2133int CameraService::BasicClient::getClientPid() const {
2134 return mClientPid;
2135}
2136
Ruben Brunk6267b532015-04-30 17:44:07 -07002137uid_t CameraService::BasicClient::getClientUid() const {
2138 return mClientUid;
2139}
2140
Ruben Brunk0bbf8b22015-04-30 14:35:42 -07002141bool CameraService::BasicClient::canCastToApiClient(apiLevel level) const {
2142 // Defaults to API2.
2143 return level == API_2;
2144}
2145
Eino-Ville Talvalaceb388d2013-02-19 10:40:14 -08002146status_t CameraService::BasicClient::startCameraOps() {
Eino-Ville Talvalaa84bbe62015-09-08 17:59:17 -07002147 ATRACE_CALL();
2148
Eino-Ville Talvalaceb388d2013-02-19 10:40:14 -08002149 int32_t res;
Eino-Ville Talvalaf67e23e2014-07-23 17:17:59 -07002150 // Notify app ops that the camera is not available
Eino-Ville Talvalaceb388d2013-02-19 10:40:14 -08002151 mOpsCallback = new OpsCallback(this);
2152
Igor Murashkine6800ce2013-03-04 17:25:57 -08002153 {
2154 ALOGV("%s: Start camera ops, package name = %s, client UID = %d",
Svetoslav Ganov280405a2015-05-12 02:19:27 +00002155 __FUNCTION__, String8(mClientPackageName).string(), mClientUid);
Igor Murashkine6800ce2013-03-04 17:25:57 -08002156 }
2157
Eino-Ville Talvalaceb388d2013-02-19 10:40:14 -08002158 mAppOpsManager.startWatchingMode(AppOpsManager::OP_CAMERA,
Svetoslav Ganov280405a2015-05-12 02:19:27 +00002159 mClientPackageName, mOpsCallback);
Eino-Ville Talvalaceb388d2013-02-19 10:40:14 -08002160 res = mAppOpsManager.startOp(AppOpsManager::OP_CAMERA,
Svetoslav Ganov280405a2015-05-12 02:19:27 +00002161 mClientUid, mClientPackageName);
Eino-Ville Talvalaceb388d2013-02-19 10:40:14 -08002162
Svetoslav28e8ef72015-05-11 19:21:31 -07002163 if (res == AppOpsManager::MODE_ERRORED) {
Eino-Ville Talvalaceb388d2013-02-19 10:40:14 -08002164 ALOGI("Camera %d: Access for \"%s\" has been revoked",
Svetoslav Ganov280405a2015-05-12 02:19:27 +00002165 mCameraId, String8(mClientPackageName).string());
Eino-Ville Talvalaceb388d2013-02-19 10:40:14 -08002166 return PERMISSION_DENIED;
2167 }
Eino-Ville Talvalaf67e23e2014-07-23 17:17:59 -07002168
Svetoslav28e8ef72015-05-11 19:21:31 -07002169 if (res == AppOpsManager::MODE_IGNORED) {
2170 ALOGI("Camera %d: Access for \"%s\" has been restricted",
2171 mCameraId, String8(mClientPackageName).string());
Eino-Ville Talvalae3afb2c2015-06-03 16:03:30 -07002172 // Return the same error as for device policy manager rejection
2173 return -EACCES;
Svetoslav28e8ef72015-05-11 19:21:31 -07002174 }
2175
Eino-Ville Talvalaceb388d2013-02-19 10:40:14 -08002176 mOpsActive = true;
Eino-Ville Talvalaf67e23e2014-07-23 17:17:59 -07002177
2178 // Transition device availability listeners from PRESENT -> NOT_AVAILABLE
2179 mCameraService->updateStatus(ICameraServiceListener::STATUS_NOT_AVAILABLE,
Ruben Brunkcc776712015-02-17 20:18:47 -08002180 String8::format("%d", mCameraId));
Eino-Ville Talvalaf67e23e2014-07-23 17:17:59 -07002181
Eino-Ville Talvala412fe562015-08-20 17:08:32 -07002182 // Transition device state to OPEN
2183 mCameraService->updateProxyDeviceState(ICameraServiceProxy::CAMERA_STATE_OPEN,
2184 String8::format("%d", mCameraId));
2185
Eino-Ville Talvalaceb388d2013-02-19 10:40:14 -08002186 return OK;
2187}
2188
2189status_t CameraService::BasicClient::finishCameraOps() {
Eino-Ville Talvalaa84bbe62015-09-08 17:59:17 -07002190 ATRACE_CALL();
2191
Eino-Ville Talvalaf67e23e2014-07-23 17:17:59 -07002192 // Check if startCameraOps succeeded, and if so, finish the camera op
Eino-Ville Talvalaceb388d2013-02-19 10:40:14 -08002193 if (mOpsActive) {
Eino-Ville Talvalaf67e23e2014-07-23 17:17:59 -07002194 // Notify app ops that the camera is available again
Eino-Ville Talvalaceb388d2013-02-19 10:40:14 -08002195 mAppOpsManager.finishOp(AppOpsManager::OP_CAMERA, mClientUid,
Svetoslav Ganov280405a2015-05-12 02:19:27 +00002196 mClientPackageName);
Eino-Ville Talvalaceb388d2013-02-19 10:40:14 -08002197 mOpsActive = false;
Eino-Ville Talvalaf67e23e2014-07-23 17:17:59 -07002198
Eino-Ville Talvalad56db1d2015-12-17 16:50:35 -08002199 std::initializer_list<int32_t> rejected = {ICameraServiceListener::STATUS_NOT_PRESENT,
Ruben Brunkcc776712015-02-17 20:18:47 -08002200 ICameraServiceListener::STATUS_ENUMERATING};
Eino-Ville Talvalaf67e23e2014-07-23 17:17:59 -07002201
Ruben Brunkcc776712015-02-17 20:18:47 -08002202 // Transition to PRESENT if the camera is not in either of the rejected states
Eino-Ville Talvalaf67e23e2014-07-23 17:17:59 -07002203 mCameraService->updateStatus(ICameraServiceListener::STATUS_PRESENT,
Ruben Brunkcc776712015-02-17 20:18:47 -08002204 String8::format("%d", mCameraId), rejected);
Eino-Ville Talvalaf67e23e2014-07-23 17:17:59 -07002205
Eino-Ville Talvala412fe562015-08-20 17:08:32 -07002206 // Transition device state to CLOSED
2207 mCameraService->updateProxyDeviceState(ICameraServiceProxy::CAMERA_STATE_CLOSED,
2208 String8::format("%d", mCameraId));
2209
Chien-Yu Chen88da5262015-02-17 13:56:46 -08002210 // Notify flashlight that a camera device is closed.
2211 mCameraService->mFlashlight->deviceClosed(
2212 String8::format("%d", mCameraId));
Eino-Ville Talvalaceb388d2013-02-19 10:40:14 -08002213 }
Eino-Ville Talvalaf67e23e2014-07-23 17:17:59 -07002214 // Always stop watching, even if no camera op is active
Eino-Ville Talvalae992e752014-11-07 16:17:48 -08002215 if (mOpsCallback != NULL) {
2216 mAppOpsManager.stopWatchingMode(mOpsCallback);
2217 }
Eino-Ville Talvalaceb388d2013-02-19 10:40:14 -08002218 mOpsCallback.clear();
2219
2220 return OK;
2221}
2222
2223void CameraService::BasicClient::opChanged(int32_t op, const String16& packageName) {
Eino-Ville Talvalaa84bbe62015-09-08 17:59:17 -07002224 ATRACE_CALL();
2225
Eino-Ville Talvalaceb388d2013-02-19 10:40:14 -08002226 String8 name(packageName);
Svetoslav Ganov280405a2015-05-12 02:19:27 +00002227 String8 myName(mClientPackageName);
Eino-Ville Talvalaceb388d2013-02-19 10:40:14 -08002228
2229 if (op != AppOpsManager::OP_CAMERA) {
2230 ALOGW("Unexpected app ops notification received: %d", op);
2231 return;
2232 }
2233
2234 int32_t res;
2235 res = mAppOpsManager.checkOp(AppOpsManager::OP_CAMERA,
Svetoslav Ganov280405a2015-05-12 02:19:27 +00002236 mClientUid, mClientPackageName);
Eino-Ville Talvalaceb388d2013-02-19 10:40:14 -08002237 ALOGV("checkOp returns: %d, %s ", res,
2238 res == AppOpsManager::MODE_ALLOWED ? "ALLOWED" :
2239 res == AppOpsManager::MODE_IGNORED ? "IGNORED" :
2240 res == AppOpsManager::MODE_ERRORED ? "ERRORED" :
2241 "UNKNOWN");
2242
2243 if (res != AppOpsManager::MODE_ALLOWED) {
2244 ALOGI("Camera %d: Access for \"%s\" revoked", mCameraId,
2245 myName.string());
2246 // Reset the client PID to allow server-initiated disconnect,
2247 // and to prevent further calls by client.
2248 mClientPid = getCallingPid();
Jianing Weicb0652e2014-03-12 18:29:36 -07002249 CaptureResultExtras resultExtras; // a dummy result (invalid)
Eino-Ville Talvalad56db1d2015-12-17 16:50:35 -08002250 notifyError(hardware::camera2::ICameraDeviceCallbacks::ERROR_CAMERA_SERVICE, resultExtras);
Eino-Ville Talvalaceb388d2013-02-19 10:40:14 -08002251 disconnect();
2252 }
2253}
2254
Mathias Agopian65ab4712010-07-14 17:59:35 -07002255// ----------------------------------------------------------------------------
2256
Ruben Brunkcc776712015-02-17 20:18:47 -08002257// Provide client strong pointer for callbacks.
2258sp<CameraService::Client> CameraService::Client::getClientFromCookie(void* user) {
2259 String8 cameraId = String8::format("%d", (int)(intptr_t) user);
2260 auto clientDescriptor = gCameraService->mActiveClientManager.get(cameraId);
2261 if (clientDescriptor != nullptr) {
2262 return sp<Client>{
2263 static_cast<Client*>(clientDescriptor->getValue().get())};
2264 }
2265 return sp<Client>{nullptr};
Mathias Agopian65ab4712010-07-14 17:59:35 -07002266}
2267
Eino-Ville Talvalad56db1d2015-12-17 16:50:35 -08002268void CameraService::Client::notifyError(int32_t errorCode,
Jianing Weicb0652e2014-03-12 18:29:36 -07002269 const CaptureResultExtras& resultExtras) {
Eino-Ville Talvalad309fb92015-11-25 12:12:45 -08002270 (void) errorCode;
2271 (void) resultExtras;
Ranjith Kagathi Ananda3e600892015-10-08 16:00:33 -07002272 if (mRemoteCallback != NULL) {
2273 mRemoteCallback->notifyCallback(CAMERA_MSG_ERROR, CAMERA_ERROR_RELEASED, 0);
2274 } else {
2275 ALOGE("mRemoteCallback is NULL!!");
2276 }
Eino-Ville Talvalaceb388d2013-02-19 10:40:14 -08002277}
2278
Igor Murashkin036bc3e2012-10-08 15:09:46 -07002279// NOTE: function is idempotent
Eino-Ville Talvalad56db1d2015-12-17 16:50:35 -08002280binder::Status CameraService::Client::disconnect() {
Eino-Ville Talvalad09801b2013-04-23 15:16:57 -07002281 ALOGV("Client::disconnect");
Eino-Ville Talvalad56db1d2015-12-17 16:50:35 -08002282 return BasicClient::disconnect();
Wu-cheng Lie09591e2010-10-14 20:17:44 +08002283}
2284
Ruben Brunk0bbf8b22015-04-30 14:35:42 -07002285bool CameraService::Client::canCastToApiClient(apiLevel level) const {
2286 return level == API_1;
2287}
2288
Eino-Ville Talvalaceb388d2013-02-19 10:40:14 -08002289CameraService::Client::OpsCallback::OpsCallback(wp<BasicClient> client):
2290 mClient(client) {
2291}
2292
2293void CameraService::Client::OpsCallback::opChanged(int32_t op,
2294 const String16& packageName) {
2295 sp<BasicClient> client = mClient.promote();
2296 if (client != NULL) {
2297 client->opChanged(op, packageName);
2298 }
2299}
2300
Mathias Agopian65ab4712010-07-14 17:59:35 -07002301// ----------------------------------------------------------------------------
Ruben Brunkcc776712015-02-17 20:18:47 -08002302// CameraState
2303// ----------------------------------------------------------------------------
2304
2305CameraService::CameraState::CameraState(const String8& id, int cost,
2306 const std::set<String8>& conflicting) : mId(id),
2307 mStatus(ICameraServiceListener::STATUS_PRESENT), mCost(cost), mConflicting(conflicting) {}
2308
2309CameraService::CameraState::~CameraState() {}
2310
Eino-Ville Talvalad56db1d2015-12-17 16:50:35 -08002311int32_t CameraService::CameraState::getStatus() const {
Ruben Brunkcc776712015-02-17 20:18:47 -08002312 Mutex::Autolock lock(mStatusLock);
2313 return mStatus;
2314}
2315
2316CameraParameters CameraService::CameraState::getShimParams() const {
2317 return mShimParams;
2318}
2319
2320void CameraService::CameraState::setShimParams(const CameraParameters& params) {
2321 mShimParams = params;
2322}
2323
2324int CameraService::CameraState::getCost() const {
2325 return mCost;
2326}
2327
2328std::set<String8> CameraService::CameraState::getConflicting() const {
2329 return mConflicting;
2330}
2331
2332String8 CameraService::CameraState::getId() const {
2333 return mId;
2334}
2335
2336// ----------------------------------------------------------------------------
Ruben Brunk99e69712015-05-26 17:25:07 -07002337// ClientEventListener
2338// ----------------------------------------------------------------------------
2339
2340void CameraService::ClientEventListener::onClientAdded(
2341 const resource_policy::ClientDescriptor<String8,
2342 sp<CameraService::BasicClient>>& descriptor) {
2343 auto basicClient = descriptor.getValue();
2344 if (basicClient.get() != nullptr) {
2345 BatteryNotifier& notifier(BatteryNotifier::getInstance());
2346 notifier.noteStartCamera(descriptor.getKey(),
2347 static_cast<int>(basicClient->getClientUid()));
2348 }
2349}
2350
2351void CameraService::ClientEventListener::onClientRemoved(
2352 const resource_policy::ClientDescriptor<String8,
2353 sp<CameraService::BasicClient>>& descriptor) {
2354 auto basicClient = descriptor.getValue();
2355 if (basicClient.get() != nullptr) {
2356 BatteryNotifier& notifier(BatteryNotifier::getInstance());
2357 notifier.noteStopCamera(descriptor.getKey(),
2358 static_cast<int>(basicClient->getClientUid()));
2359 }
2360}
2361
2362
2363// ----------------------------------------------------------------------------
Ruben Brunkcc776712015-02-17 20:18:47 -08002364// CameraClientManager
2365// ----------------------------------------------------------------------------
2366
Ruben Brunk99e69712015-05-26 17:25:07 -07002367CameraService::CameraClientManager::CameraClientManager() {
2368 setListener(std::make_shared<ClientEventListener>());
2369}
2370
Ruben Brunkcc776712015-02-17 20:18:47 -08002371CameraService::CameraClientManager::~CameraClientManager() {}
2372
2373sp<CameraService::BasicClient> CameraService::CameraClientManager::getCameraClient(
2374 const String8& id) const {
2375 auto descriptor = get(id);
2376 if (descriptor == nullptr) {
2377 return sp<BasicClient>{nullptr};
2378 }
2379 return descriptor->getValue();
2380}
2381
2382String8 CameraService::CameraClientManager::toString() const {
2383 auto all = getAll();
2384 String8 ret("[");
2385 bool hasAny = false;
2386 for (auto& i : all) {
2387 hasAny = true;
2388 String8 key = i->getKey();
2389 int32_t cost = i->getCost();
2390 int32_t pid = i->getOwnerId();
2391 int32_t priority = i->getPriority();
2392 auto conflicting = i->getConflicting();
2393 auto clientSp = i->getValue();
2394 String8 packageName;
Eino-Ville Talvala022f0cb2015-05-19 16:31:16 -07002395 userid_t clientUserId = 0;
Ruben Brunkcc776712015-02-17 20:18:47 -08002396 if (clientSp.get() != nullptr) {
2397 packageName = String8{clientSp->getPackageName()};
Ruben Brunk6267b532015-04-30 17:44:07 -07002398 uid_t clientUid = clientSp->getClientUid();
2399 clientUserId = multiuser_get_user_id(clientUid);
Ruben Brunkcc776712015-02-17 20:18:47 -08002400 }
2401 ret.appendFormat("\n(Camera ID: %s, Cost: %" PRId32 ", PID: %" PRId32 ", Priority: %"
2402 PRId32 ", ", key.string(), cost, pid, priority);
2403
Ruben Brunk6267b532015-04-30 17:44:07 -07002404 if (clientSp.get() != nullptr) {
2405 ret.appendFormat("User Id: %d, ", clientUserId);
2406 }
Ruben Brunkcc776712015-02-17 20:18:47 -08002407 if (packageName.size() != 0) {
2408 ret.appendFormat("Client Package Name: %s", packageName.string());
2409 }
2410
2411 ret.append(", Conflicting Client Devices: {");
2412 for (auto& j : conflicting) {
2413 ret.appendFormat("%s, ", j.string());
2414 }
2415 ret.append("})");
2416 }
2417 if (hasAny) ret.append("\n");
2418 ret.append("]\n");
2419 return ret;
2420}
2421
2422CameraService::DescriptorPtr CameraService::CameraClientManager::makeClientDescriptor(
2423 const String8& key, const sp<BasicClient>& value, int32_t cost,
2424 const std::set<String8>& conflictingKeys, int32_t priority, int32_t ownerId) {
2425
2426 return std::make_shared<resource_policy::ClientDescriptor<String8, sp<BasicClient>>>(
2427 key, value, cost, conflictingKeys, priority, ownerId);
2428}
2429
2430CameraService::DescriptorPtr CameraService::CameraClientManager::makeClientDescriptor(
2431 const sp<BasicClient>& value, const CameraService::DescriptorPtr& partial) {
2432 return makeClientDescriptor(partial->getKey(), value, partial->getCost(),
2433 partial->getConflicting(), partial->getPriority(), partial->getOwnerId());
2434}
2435
2436// ----------------------------------------------------------------------------
Mathias Agopian65ab4712010-07-14 17:59:35 -07002437
2438static const int kDumpLockRetries = 50;
2439static const int kDumpLockSleep = 60000;
2440
2441static bool tryLock(Mutex& mutex)
2442{
2443 bool locked = false;
2444 for (int i = 0; i < kDumpLockRetries; ++i) {
2445 if (mutex.tryLock() == NO_ERROR) {
2446 locked = true;
2447 break;
2448 }
2449 usleep(kDumpLockSleep);
2450 }
2451 return locked;
2452}
2453
2454status_t CameraService::dump(int fd, const Vector<String16>& args) {
Eino-Ville Talvalaa84bbe62015-09-08 17:59:17 -07002455 ATRACE_CALL();
2456
Ruben Brunka8ca9152015-04-07 14:23:40 -07002457 String8 result("Dump of the Camera Service:\n");
Mathias Agopian65ab4712010-07-14 17:59:35 -07002458 if (checkCallingPermission(String16("android.permission.DUMP")) == false) {
dcashmanfefa6142015-09-09 13:43:01 -07002459 result = result.format("Permission Denial: "
Mathias Agopian65ab4712010-07-14 17:59:35 -07002460 "can't dump CameraService from pid=%d, uid=%d\n",
2461 getCallingPid(),
2462 getCallingUid());
Mathias Agopian65ab4712010-07-14 17:59:35 -07002463 write(fd, result.string(), result.size());
2464 } else {
2465 bool locked = tryLock(mServiceLock);
2466 // failed to lock - CameraService is probably deadlocked
2467 if (!locked) {
Eino-Ville Talvala611f6192012-05-31 12:28:23 -07002468 result.append("CameraService may be deadlocked\n");
Eino-Ville Talvalaf5926132012-07-17 13:54:20 -07002469 write(fd, result.string(), result.size());
Mathias Agopian65ab4712010-07-14 17:59:35 -07002470 }
2471
2472 bool hasClient = false;
Eino-Ville Talvalaf5926132012-07-17 13:54:20 -07002473 if (!mModule) {
2474 result = String8::format("No camera module available!\n");
2475 write(fd, result.string(), result.size());
Eino-Ville Talvala1527f072015-04-07 15:55:31 -07002476
2477 // Dump event log for error information
2478 dumpEventLog(fd);
2479
Kalle Lampila6ec3a152013-04-30 15:27:19 +03002480 if (locked) mServiceLock.unlock();
Eino-Ville Talvalaf5926132012-07-17 13:54:20 -07002481 return NO_ERROR;
2482 }
2483
Chien-Yu Chen676b21b2015-02-24 10:28:19 -08002484 result = String8::format("Camera module HAL API version: 0x%x\n", mModule->getHalApiVersion());
2485 result.appendFormat("Camera module API version: 0x%x\n", mModule->getModuleApiVersion());
2486 result.appendFormat("Camera module name: %s\n", mModule->getModuleName());
2487 result.appendFormat("Camera module author: %s\n", mModule->getModuleAuthor());
Ruben Brunkcc776712015-02-17 20:18:47 -08002488 result.appendFormat("Number of camera devices: %d\n", mNumberOfCameras);
Eino-Ville Talvala49c97052016-01-12 14:29:40 -08002489 result.appendFormat("Number of normal camera devices: %d\n", mNumberOfNormalCameras);
Ruben Brunkcc776712015-02-17 20:18:47 -08002490 String8 activeClientString = mActiveClientManager.toString();
2491 result.appendFormat("Active Camera Clients:\n%s", activeClientString.string());
Ruben Brunk6267b532015-04-30 17:44:07 -07002492 result.appendFormat("Allowed users:\n%s\n", toString(mAllowedUsers).string());
Ruben Brunkcc776712015-02-17 20:18:47 -08002493
Ruben Brunkf81648e2014-04-17 16:14:57 -07002494 sp<VendorTagDescriptor> desc = VendorTagDescriptor::getGlobalVendorTagDescriptor();
2495 if (desc == NULL) {
2496 result.appendFormat("Vendor tags left unimplemented.\n");
2497 } else {
2498 result.appendFormat("Vendor tag definitions:\n");
2499 }
2500
Eino-Ville Talvalaf5926132012-07-17 13:54:20 -07002501 write(fd, result.string(), result.size());
Ruben Brunkf81648e2014-04-17 16:14:57 -07002502
2503 if (desc != NULL) {
2504 desc->dump(fd, /*verbosity*/2, /*indentation*/4);
2505 }
2506
Eino-Ville Talvala1527f072015-04-07 15:55:31 -07002507 dumpEventLog(fd);
Ruben Brunkcc776712015-02-17 20:18:47 -08002508
2509 bool stateLocked = tryLock(mCameraStatesLock);
2510 if (!stateLocked) {
2511 result = String8::format("CameraStates in use, may be deadlocked\n");
2512 write(fd, result.string(), result.size());
2513 }
2514
2515 for (auto& state : mCameraStates) {
2516 String8 cameraId = state.first;
2517 result = String8::format("Camera %s information:\n", cameraId.string());
Eino-Ville Talvalaf5926132012-07-17 13:54:20 -07002518 camera_info info;
2519
Ruben Brunkcc776712015-02-17 20:18:47 -08002520 // TODO: Change getCameraInfo + HAL to use String cameraIds
2521 status_t rc = mModule->getCameraInfo(cameraIdToInt(cameraId), &info);
Eino-Ville Talvalaf5926132012-07-17 13:54:20 -07002522 if (rc != OK) {
2523 result.appendFormat(" Error reading static information!\n");
2524 write(fd, result.string(), result.size());
2525 } else {
2526 result.appendFormat(" Facing: %s\n",
2527 info.facing == CAMERA_FACING_BACK ? "BACK" : "FRONT");
2528 result.appendFormat(" Orientation: %d\n", info.orientation);
2529 int deviceVersion;
Chien-Yu Chen676b21b2015-02-24 10:28:19 -08002530 if (mModule->getModuleApiVersion() < CAMERA_MODULE_API_VERSION_2_0) {
Eino-Ville Talvalaf5926132012-07-17 13:54:20 -07002531 deviceVersion = CAMERA_DEVICE_API_VERSION_1_0;
2532 } else {
2533 deviceVersion = info.device_version;
2534 }
Ruben Brunkcc776712015-02-17 20:18:47 -08002535
2536 auto conflicting = state.second->getConflicting();
2537 result.appendFormat(" Resource Cost: %d\n", state.second->getCost());
2538 result.appendFormat(" Conflicting Devices:");
2539 for (auto& id : conflicting) {
Eino-Ville Talvalad309fb92015-11-25 12:12:45 -08002540 result.appendFormat(" %s", id.string());
Ruben Brunkcc776712015-02-17 20:18:47 -08002541 }
2542 if (conflicting.size() == 0) {
2543 result.appendFormat(" NONE");
2544 }
2545 result.appendFormat("\n");
2546
2547 result.appendFormat(" Device version: %#x\n", deviceVersion);
Eino-Ville Talvalad309fb92015-11-25 12:12:45 -08002548 if (deviceVersion >= CAMERA_DEVICE_API_VERSION_3_0) {
Eino-Ville Talvalaf5926132012-07-17 13:54:20 -07002549 result.appendFormat(" Device static metadata:\n");
2550 write(fd, result.string(), result.size());
Eino-Ville Talvala428b77a2012-07-30 09:55:30 -07002551 dump_indented_camera_metadata(info.static_camera_characteristics,
Ruben Brunkf81648e2014-04-17 16:14:57 -07002552 fd, /*verbosity*/2, /*indentation*/4);
Eino-Ville Talvalaf5926132012-07-17 13:54:20 -07002553 } else {
2554 write(fd, result.string(), result.size());
2555 }
Ruben Brunkcc776712015-02-17 20:18:47 -08002556
2557 CameraParameters p = state.second->getShimParams();
2558 if (!p.isEmpty()) {
2559 result = String8::format(" Camera1 API shim is using parameters:\n ");
2560 write(fd, result.string(), result.size());
2561 p.dump(fd, args);
2562 }
Eino-Ville Talvalaf5926132012-07-17 13:54:20 -07002563 }
2564
Ruben Brunkcc776712015-02-17 20:18:47 -08002565 auto clientDescriptor = mActiveClientManager.get(cameraId);
2566 if (clientDescriptor == nullptr) {
2567 result = String8::format(" Device %s is closed, no client instance\n",
2568 cameraId.string());
Eino-Ville Talvalaf5926132012-07-17 13:54:20 -07002569 write(fd, result.string(), result.size());
2570 continue;
2571 }
Mathias Agopian65ab4712010-07-14 17:59:35 -07002572 hasClient = true;
Ruben Brunkcc776712015-02-17 20:18:47 -08002573 result = String8::format(" Device %s is open. Client instance dump:\n\n",
2574 cameraId.string());
2575 result.appendFormat("Client priority level: %d\n", clientDescriptor->getPriority());
2576 result.appendFormat("Client PID: %d\n", clientDescriptor->getOwnerId());
2577
2578 auto client = clientDescriptor->getValue();
2579 result.appendFormat("Client package: %s\n",
2580 String8(client->getPackageName()).string());
Eino-Ville Talvalaf5926132012-07-17 13:54:20 -07002581 write(fd, result.string(), result.size());
Ruben Brunkcc776712015-02-17 20:18:47 -08002582
Eino-Ville Talvalac4003962016-01-13 10:07:04 -08002583 client->dumpClient(fd, args);
Mathias Agopian65ab4712010-07-14 17:59:35 -07002584 }
Ruben Brunkcc776712015-02-17 20:18:47 -08002585
2586 if (stateLocked) mCameraStatesLock.unlock();
2587
Mathias Agopian65ab4712010-07-14 17:59:35 -07002588 if (!hasClient) {
Eino-Ville Talvalaf5926132012-07-17 13:54:20 -07002589 result = String8::format("\nNo active camera clients yet.\n");
2590 write(fd, result.string(), result.size());
Mathias Agopian65ab4712010-07-14 17:59:35 -07002591 }
2592
2593 if (locked) mServiceLock.unlock();
2594
Igor Murashkinff3e31d2013-10-23 16:40:06 -07002595 // Dump camera traces if there were any
2596 write(fd, "\n", 1);
2597 camera3::CameraTraces::dump(fd, args);
2598
Eino-Ville Talvalad89821e2016-04-20 11:23:50 -07002599 // Process dump arguments, if any
Mathias Agopian65ab4712010-07-14 17:59:35 -07002600 int n = args.size();
Eino-Ville Talvalad89821e2016-04-20 11:23:50 -07002601 String16 verboseOption("-v");
2602 String16 unreachableOption("--unreachable");
2603 for (int i = 0; i < n; i++) {
Eino-Ville Talvala611f6192012-05-31 12:28:23 -07002604 if (args[i] == verboseOption) {
Eino-Ville Talvalad89821e2016-04-20 11:23:50 -07002605 // change logging level
2606 if (i + 1 >= n) continue;
Mathias Agopian65ab4712010-07-14 17:59:35 -07002607 String8 levelStr(args[i+1]);
2608 int level = atoi(levelStr.string());
Eino-Ville Talvalaf5926132012-07-17 13:54:20 -07002609 result = String8::format("\nSetting log level to %d.\n", level);
Mathias Agopian65ab4712010-07-14 17:59:35 -07002610 setLogLevel(level);
Eino-Ville Talvalaf5926132012-07-17 13:54:20 -07002611 write(fd, result.string(), result.size());
Eino-Ville Talvalad89821e2016-04-20 11:23:50 -07002612 } else if (args[i] == unreachableOption) {
2613 // Dump memory analysis
2614 // TODO - should limit be an argument parameter?
2615 UnreachableMemoryInfo info;
2616 bool success = GetUnreachableMemory(info, /*limit*/ 10000);
2617 if (!success) {
2618 dprintf(fd, "\nUnable to dump unreachable memory. "
2619 "Try disabling SELinux enforcement.\n");
2620 } else {
2621 dprintf(fd, "\nDumping unreachable memory:\n");
2622 std::string s = info.ToString(/*log_contents*/ true);
2623 write(fd, s.c_str(), s.size());
2624 }
Mathias Agopian65ab4712010-07-14 17:59:35 -07002625 }
2626 }
2627 }
2628 return NO_ERROR;
2629}
2630
Eino-Ville Talvala1527f072015-04-07 15:55:31 -07002631void CameraService::dumpEventLog(int fd) {
2632 String8 result = String8("\nPrior client events (most recent at top):\n");
2633
2634 Mutex::Autolock l(mLogLock);
2635 for (const auto& msg : mEventLog) {
2636 result.appendFormat(" %s\n", msg.string());
2637 }
2638
2639 if (mEventLog.size() == DEFAULT_EVENT_LOG_LENGTH) {
2640 result.append(" ...\n");
2641 } else if (mEventLog.size() == 0) {
2642 result.append(" [no events yet]\n");
2643 }
2644 result.append("\n");
2645
2646 write(fd, result.string(), result.size());
2647}
2648
Chien-Yu Chen3068d732015-02-09 13:29:57 -08002649void CameraService::handleTorchClientBinderDied(const wp<IBinder> &who) {
Chien-Yu Chen88da5262015-02-17 13:56:46 -08002650 Mutex::Autolock al(mTorchClientMapMutex);
Chien-Yu Chen3068d732015-02-09 13:29:57 -08002651 for (size_t i = 0; i < mTorchClientMap.size(); i++) {
2652 if (mTorchClientMap[i] == who) {
2653 // turn off the torch mode that was turned on by dead client
Chien-Yu Chen88da5262015-02-17 13:56:46 -08002654 String8 cameraId = mTorchClientMap.keyAt(i);
2655 status_t res = mFlashlight->setTorchMode(cameraId, false);
2656 if (res) {
2657 ALOGE("%s: torch client died but couldn't turn off torch: "
2658 "%s (%d)", __FUNCTION__, strerror(-res), res);
2659 return;
2660 }
Chien-Yu Chen3068d732015-02-09 13:29:57 -08002661 mTorchClientMap.removeItemsAt(i);
Chien-Yu Chen3068d732015-02-09 13:29:57 -08002662 break;
2663 }
2664 }
2665}
2666
Ruben Brunkcc776712015-02-17 20:18:47 -08002667/*virtual*/void CameraService::binderDied(const wp<IBinder> &who) {
Igor Murashkinecf17e82012-10-02 16:05:11 -07002668
Igor Murashkin294d0ec2012-10-05 10:44:57 -07002669 /**
Ruben Brunka8ca9152015-04-07 14:23:40 -07002670 * While tempting to promote the wp<IBinder> into a sp, it's actually not supported by the
2671 * binder driver
Igor Murashkin294d0ec2012-10-05 10:44:57 -07002672 */
2673
Ruben Brunka8ca9152015-04-07 14:23:40 -07002674 logClientDied(getCallingPid(), String8("Binder died unexpectedly"));
2675
Chien-Yu Chen3068d732015-02-09 13:29:57 -08002676 // check torch client
2677 handleTorchClientBinderDied(who);
2678
2679 // check camera device client
Ruben Brunkcc776712015-02-17 20:18:47 -08002680 if(!evictClientIdByRemote(who)) {
2681 ALOGV("%s: Java client's binder death already cleaned up (normal case)", __FUNCTION__);
Igor Murashkinecf17e82012-10-02 16:05:11 -07002682 return;
2683 }
2684
Ruben Brunkcc776712015-02-17 20:18:47 -08002685 ALOGE("%s: Java client's binder died, removing it from the list of active clients",
2686 __FUNCTION__);
Igor Murashkinecf17e82012-10-02 16:05:11 -07002687}
2688
Eino-Ville Talvalad56db1d2015-12-17 16:50:35 -08002689void CameraService::updateStatus(int32_t status, const String8& cameraId) {
Ruben Brunkcc776712015-02-17 20:18:47 -08002690 updateStatus(status, cameraId, {});
Igor Murashkinbfc99152013-02-27 12:55:20 -08002691}
2692
Eino-Ville Talvalad56db1d2015-12-17 16:50:35 -08002693void CameraService::updateStatus(int32_t status, const String8& cameraId,
2694 std::initializer_list<int32_t> rejectSourceStates) {
Ruben Brunkcc776712015-02-17 20:18:47 -08002695 // Do not lock mServiceLock here or can get into a deadlock from
2696 // connect() -> disconnect -> updateStatus
2697
2698 auto state = getCameraState(cameraId);
2699
2700 if (state == nullptr) {
2701 ALOGW("%s: Could not update the status for %s, no such device exists", __FUNCTION__,
2702 cameraId.string());
2703 return;
Igor Murashkincba2c162013-03-20 15:56:31 -07002704 }
2705
Ruben Brunkcc776712015-02-17 20:18:47 -08002706 // Update the status for this camera state, then send the onStatusChangedCallbacks to each
2707 // of the listeners with both the mStatusStatus and mStatusListenerLock held
2708 state->updateStatus(status, cameraId, rejectSourceStates, [this]
Eino-Ville Talvalad56db1d2015-12-17 16:50:35 -08002709 (const String8& cameraId, int32_t status) {
Ruben Brunkcc776712015-02-17 20:18:47 -08002710
Chien-Yu Chenf6463fc2015-04-07 15:11:31 -07002711 if (status != ICameraServiceListener::STATUS_ENUMERATING) {
2712 // Update torch status if it has a flash unit.
2713 Mutex::Autolock al(mTorchStatusMutex);
Eino-Ville Talvalad56db1d2015-12-17 16:50:35 -08002714 int32_t torchStatus;
Chien-Yu Chenf6463fc2015-04-07 15:11:31 -07002715 if (getTorchStatusLocked(cameraId, &torchStatus) !=
2716 NAME_NOT_FOUND) {
Eino-Ville Talvalad56db1d2015-12-17 16:50:35 -08002717 int32_t newTorchStatus =
Chien-Yu Chenf6463fc2015-04-07 15:11:31 -07002718 status == ICameraServiceListener::STATUS_PRESENT ?
2719 ICameraServiceListener::TORCH_STATUS_AVAILABLE_OFF :
2720 ICameraServiceListener::TORCH_STATUS_NOT_AVAILABLE;
2721 if (torchStatus != newTorchStatus) {
2722 onTorchStatusChangedLocked(cameraId, newTorchStatus);
2723 }
2724 }
Ruben Brunkcc776712015-02-17 20:18:47 -08002725 }
2726
2727 Mutex::Autolock lock(mStatusListenerLock);
2728
2729 for (auto& listener : mListenerList) {
2730 // TODO: Refactor status listeners to use strings for Camera IDs and remove this.
2731 int id = cameraIdToInt(cameraId);
2732 if (id != -1) listener->onStatusChanged(status, id);
2733 }
2734 });
Igor Murashkincba2c162013-03-20 15:56:31 -07002735}
2736
Eino-Ville Talvala412fe562015-08-20 17:08:32 -07002737void CameraService::updateProxyDeviceState(ICameraServiceProxy::CameraState newState,
2738 const String8& cameraId) {
2739 sp<ICameraServiceProxy> proxyBinder = getCameraServiceProxy();
2740 if (proxyBinder == nullptr) return;
2741 String16 id(cameraId);
2742 proxyBinder->notifyCameraState(id, newState);
2743}
2744
Chien-Yu Chen88da5262015-02-17 13:56:46 -08002745status_t CameraService::getTorchStatusLocked(
2746 const String8& cameraId,
Eino-Ville Talvalad56db1d2015-12-17 16:50:35 -08002747 int32_t *status) const {
Chien-Yu Chen88da5262015-02-17 13:56:46 -08002748 if (!status) {
2749 return BAD_VALUE;
2750 }
Chien-Yu Chen3068d732015-02-09 13:29:57 -08002751 ssize_t index = mTorchStatusMap.indexOfKey(cameraId);
2752 if (index == NAME_NOT_FOUND) {
Chien-Yu Chen88da5262015-02-17 13:56:46 -08002753 // invalid camera ID or the camera doesn't have a flash unit
2754 return NAME_NOT_FOUND;
Chien-Yu Chen3068d732015-02-09 13:29:57 -08002755 }
2756
Chien-Yu Chen88da5262015-02-17 13:56:46 -08002757 *status = mTorchStatusMap.valueAt(index);
2758 return OK;
Chien-Yu Chen3068d732015-02-09 13:29:57 -08002759}
2760
Chien-Yu Chen88da5262015-02-17 13:56:46 -08002761status_t CameraService::setTorchStatusLocked(const String8& cameraId,
Eino-Ville Talvalad56db1d2015-12-17 16:50:35 -08002762 int32_t status) {
Chien-Yu Chen3068d732015-02-09 13:29:57 -08002763 ssize_t index = mTorchStatusMap.indexOfKey(cameraId);
2764 if (index == NAME_NOT_FOUND) {
2765 return BAD_VALUE;
2766 }
Eino-Ville Talvalad56db1d2015-12-17 16:50:35 -08002767 int32_t& item =
Chien-Yu Chen3068d732015-02-09 13:29:57 -08002768 mTorchStatusMap.editValueAt(index);
2769 item = status;
2770
2771 return OK;
2772}
2773
Mathias Agopian65ab4712010-07-14 17:59:35 -07002774}; // namespace android