/* * Copyright (C) 2008 The Android Open Source Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #define LOG_TAG "CameraService" //#define LOG_NDEBUG 0 #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include "CameraService.h" #include "api1/CameraClient.h" #include "api1/Camera2Client.h" #include "api_pro/ProCamera2Client.h" #include "api2/CameraDeviceClient.h" #include "utils/CameraTraces.h" #include "CameraDeviceFactory.h" namespace android { // ---------------------------------------------------------------------------- // Logging support -- this is for debugging only // Use "adb shell dumpsys media.camera -v 1" to change it. volatile int32_t gLogLevel = 0; #define LOG1(...) ALOGD_IF(gLogLevel >= 1, __VA_ARGS__); #define LOG2(...) ALOGD_IF(gLogLevel >= 2, __VA_ARGS__); static void setLogLevel(int level) { android_atomic_write(level, &gLogLevel); } // ---------------------------------------------------------------------------- static int getCallingPid() { return IPCThreadState::self()->getCallingPid(); } static int getCallingUid() { return IPCThreadState::self()->getCallingUid(); } extern "C" { static void camera_device_status_change( const struct camera_module_callbacks* callbacks, int camera_id, int new_status) { sp cs = const_cast( static_cast(callbacks)); cs->onDeviceStatusChanged( camera_id, new_status); } static void torch_mode_status_change( const struct camera_module_callbacks* callbacks, const char* camera_id, int new_status) { if (!callbacks || !camera_id) { ALOGE("%s invalid parameters. callbacks %p, camera_id %p", __FUNCTION__, callbacks, camera_id); } sp cs = const_cast( static_cast(callbacks)); ICameraServiceListener::TorchStatus status; switch (new_status) { case TORCH_MODE_STATUS_NOT_AVAILABLE: status = ICameraServiceListener::TORCH_STATUS_NOT_AVAILABLE; break; case TORCH_MODE_STATUS_AVAILABLE_OFF: status = ICameraServiceListener::TORCH_STATUS_AVAILABLE_OFF; break; case TORCH_MODE_STATUS_AVAILABLE_ON: status = ICameraServiceListener::TORCH_STATUS_AVAILABLE_ON; break; default: ALOGE("Unknown torch status %d", new_status); return; } cs->onTorchStatusChanged( String8(camera_id), status); } } // extern "C" // ---------------------------------------------------------------------------- // This is ugly and only safe if we never re-create the CameraService, but // should be ok for now. static CameraService *gCameraService; CameraService::CameraService() :mSoundRef(0), mModule(0), mFlashlight(0) { ALOGI("CameraService started (pid=%d)", getpid()); gCameraService = this; for (size_t i = 0; i < MAX_CAMERAS; ++i) { mStatusList[i] = ICameraServiceListener::STATUS_PRESENT; } this->camera_device_status_change = android::camera_device_status_change; this->torch_mode_status_change = android::torch_mode_status_change; } void CameraService::onFirstRef() { LOG1("CameraService::onFirstRef"); BnCameraService::onFirstRef(); camera_module_t *rawModule; if (hw_get_module(CAMERA_HARDWARE_MODULE_ID, (const hw_module_t **)&rawModule) < 0) { ALOGE("Could not load camera HAL module"); mNumberOfCameras = 0; } else { mModule = new CameraModule(rawModule); const hw_module_t *common = mModule->getRawModule(); ALOGI("Loaded \"%s\" cameraCa module", common->name); mNumberOfCameras = mModule->getNumberOfCameras(); if (mNumberOfCameras > MAX_CAMERAS) { ALOGE("Number of cameras(%d) > MAX_CAMERAS(%d).", mNumberOfCameras, MAX_CAMERAS); mNumberOfCameras = MAX_CAMERAS; } mFlashlight = new CameraFlashlight(*mModule, *this); status_t res = mFlashlight->findFlashUnits(); if (res) { // impossible because we haven't open any camera devices. ALOGE("failed to find flash units."); } for (int i = 0; i < mNumberOfCameras; i++) { setCameraFree(i); String8 cameraName = String8::format("%d", i); if (mFlashlight->hasFlashUnit(cameraName)) { mTorchStatusMap.add(cameraName, ICameraServiceListener::TORCH_STATUS_AVAILABLE_OFF); } } if (common->module_api_version >= CAMERA_MODULE_API_VERSION_2_1) { mModule->setCallbacks(this); } VendorTagDescriptor::clearGlobalVendorTagDescriptor(); if (common->module_api_version >= CAMERA_MODULE_API_VERSION_2_2) { setUpVendorTags(); } CameraDeviceFactory::registerService(this); } } CameraService::~CameraService() { for (int i = 0; i < mNumberOfCameras; i++) { if (mBusy[i]) { ALOGE("camera %d is still in use in destructor!", i); } } if (mModule) { delete mModule; } VendorTagDescriptor::clearGlobalVendorTagDescriptor(); gCameraService = NULL; } void CameraService::onDeviceStatusChanged(int cameraId, int newStatus) { ALOGV("%s: Status changed for cameraId=%d, newStatus=%d", __FUNCTION__, cameraId, newStatus); if (cameraId < 0 || cameraId >= MAX_CAMERAS) { ALOGE("%s: Bad camera ID %d", __FUNCTION__, cameraId); return; } if ((int)getStatus(cameraId) == newStatus) { ALOGE("%s: State transition to the same status 0x%x not allowed", __FUNCTION__, (uint32_t)newStatus); return; } /* don't do this in updateStatus since it is also called from connect and we could get into a deadlock */ if (newStatus == CAMERA_DEVICE_STATUS_NOT_PRESENT) { Vector > clientsToDisconnect; { Mutex::Autolock al(mServiceLock); /* Remove cached parameters from shim cache */ mShimParams.removeItem(cameraId); /* Find all clients that we need to disconnect */ sp client = mClient[cameraId].promote(); if (client.get() != NULL) { clientsToDisconnect.push_back(client); } int i = cameraId; for (size_t j = 0; j < mProClientList[i].size(); ++j) { sp cl = mProClientList[i][j].promote(); if (cl != NULL) { clientsToDisconnect.push_back(cl); } } } /* now disconnect them. don't hold the lock or we can get into a deadlock */ for (size_t i = 0; i < clientsToDisconnect.size(); ++i) { sp client = clientsToDisconnect[i]; client->disconnect(); /** * The remote app will no longer be able to call methods on the * client since the client PID will be reset to 0 */ } ALOGV("%s: After unplug, disconnected %zu clients", __FUNCTION__, clientsToDisconnect.size()); } updateStatus( static_cast(newStatus), cameraId); } void CameraService::onTorchStatusChanged(const String8& cameraId, ICameraServiceListener::TorchStatus newStatus) { Mutex::Autolock al(mTorchStatusMutex); onTorchStatusChangedLocked(cameraId, newStatus); } void CameraService::onTorchStatusChangedLocked(const String8& cameraId, ICameraServiceListener::TorchStatus newStatus) { ALOGI("%s: Torch status changed for cameraId=%s, newStatus=%d", __FUNCTION__, cameraId.string(), newStatus); ICameraServiceListener::TorchStatus status; status_t res = getTorchStatusLocked(cameraId, &status); if (res) { ALOGE("%s: cannot get torch status of camera %s", cameraId.string()); return; } if (status == newStatus) { ALOGE("%s: Torch state transition to the same status 0x%x not allowed", __FUNCTION__, (uint32_t)newStatus); return; } res = setTorchStatusLocked(cameraId, newStatus); if (res) { ALOGE("%s: Failed to set the torch status", __FUNCTION__, (uint32_t)newStatus); return; } Vector >::const_iterator it; for (it = mListenerList.begin(); it != mListenerList.end(); ++it) { (*it)->onTorchStatusChanged(newStatus, String16(cameraId.string())); } } int32_t CameraService::getNumberOfCameras() { return mNumberOfCameras; } status_t CameraService::getCameraInfo(int cameraId, struct CameraInfo* cameraInfo) { if (!mModule) { return -ENODEV; } if (cameraId < 0 || cameraId >= mNumberOfCameras) { return BAD_VALUE; } struct camera_info info; status_t rc = filterGetInfoErrorCode( mModule->getCameraInfo(cameraId, &info)); cameraInfo->facing = info.facing; cameraInfo->orientation = info.orientation; return rc; } status_t CameraService::generateShimMetadata(int cameraId, /*out*/CameraMetadata* cameraInfo) { status_t ret = OK; struct CameraInfo info; if ((ret = getCameraInfo(cameraId, &info)) != OK) { return ret; } CameraMetadata shimInfo; int32_t orientation = static_cast(info.orientation); if ((ret = shimInfo.update(ANDROID_SENSOR_ORIENTATION, &orientation, 1)) != OK) { return ret; } uint8_t facing = (info.facing == CAMERA_FACING_FRONT) ? ANDROID_LENS_FACING_FRONT : ANDROID_LENS_FACING_BACK; if ((ret = shimInfo.update(ANDROID_LENS_FACING, &facing, 1)) != OK) { return ret; } CameraParameters shimParams; if ((ret = getLegacyParametersLazy(cameraId, /*out*/&shimParams)) != OK) { // Error logged by callee return ret; } Vector sizes; Vector jpegSizes; Vector formats; const char* supportedPreviewFormats; { shimParams.getSupportedPreviewSizes(/*out*/sizes); shimParams.getSupportedPreviewFormats(/*out*/formats); shimParams.getSupportedPictureSizes(/*out*/jpegSizes); } // Always include IMPLEMENTATION_DEFINED formats.add(HAL_PIXEL_FORMAT_IMPLEMENTATION_DEFINED); const size_t INTS_PER_CONFIG = 4; // Build available stream configurations metadata size_t streamConfigSize = (sizes.size() * formats.size() + jpegSizes.size()) * INTS_PER_CONFIG; Vector streamConfigs; streamConfigs.setCapacity(streamConfigSize); for (size_t i = 0; i < formats.size(); ++i) { for (size_t j = 0; j < sizes.size(); ++j) { streamConfigs.add(formats[i]); streamConfigs.add(sizes[j].width); streamConfigs.add(sizes[j].height); streamConfigs.add(ANDROID_SCALER_AVAILABLE_STREAM_CONFIGURATIONS_OUTPUT); } } for (size_t i = 0; i < jpegSizes.size(); ++i) { streamConfigs.add(HAL_PIXEL_FORMAT_BLOB); streamConfigs.add(jpegSizes[i].width); streamConfigs.add(jpegSizes[i].height); streamConfigs.add(ANDROID_SCALER_AVAILABLE_STREAM_CONFIGURATIONS_OUTPUT); } if ((ret = shimInfo.update(ANDROID_SCALER_AVAILABLE_STREAM_CONFIGURATIONS, streamConfigs.array(), streamConfigSize)) != OK) { return ret; } int64_t fakeMinFrames[0]; // TODO: Fixme, don't fake min frame durations. if ((ret = shimInfo.update(ANDROID_SCALER_AVAILABLE_MIN_FRAME_DURATIONS, fakeMinFrames, 0)) != OK) { return ret; } int64_t fakeStalls[0]; // TODO: Fixme, don't fake stall durations. if ((ret = shimInfo.update(ANDROID_SCALER_AVAILABLE_STALL_DURATIONS, fakeStalls, 0)) != OK) { return ret; } *cameraInfo = shimInfo; return OK; } status_t CameraService::getCameraCharacteristics(int cameraId, CameraMetadata* cameraInfo) { if (!cameraInfo) { ALOGE("%s: cameraInfo is NULL", __FUNCTION__); return BAD_VALUE; } if (!mModule) { ALOGE("%s: camera hardware module doesn't exist", __FUNCTION__); return -ENODEV; } if (cameraId < 0 || cameraId >= mNumberOfCameras) { ALOGE("%s: Invalid camera id: %d", __FUNCTION__, cameraId); return BAD_VALUE; } int facing; status_t ret = OK; if (mModule->getRawModule()->module_api_version < CAMERA_MODULE_API_VERSION_2_0 || getDeviceVersion(cameraId, &facing) <= CAMERA_DEVICE_API_VERSION_2_1 ) { /** * Backwards compatibility mode for old HALs: * - Convert CameraInfo into static CameraMetadata properties. * - Retrieve cached CameraParameters for this camera. If none exist, * attempt to open CameraClient and retrieve the CameraParameters. * - Convert cached CameraParameters into static CameraMetadata * properties. */ ALOGI("%s: Switching to HAL1 shim implementation...", __FUNCTION__); if ((ret = generateShimMetadata(cameraId, cameraInfo)) != OK) { return ret; } } else { /** * Normal HAL 2.1+ codepath. */ struct camera_info info; ret = filterGetInfoErrorCode(mModule->getCameraInfo(cameraId, &info)); *cameraInfo = info.static_camera_characteristics; } return ret; } status_t CameraService::getCameraVendorTagDescriptor(/*out*/sp& desc) { if (!mModule) { ALOGE("%s: camera hardware module doesn't exist", __FUNCTION__); return -ENODEV; } desc = VendorTagDescriptor::getGlobalVendorTagDescriptor(); return OK; } int CameraService::getDeviceVersion(int cameraId, int* facing) { struct camera_info info; if (mModule->getCameraInfo(cameraId, &info) != OK) { return -1; } int deviceVersion; if (mModule->getRawModule()->module_api_version >= CAMERA_MODULE_API_VERSION_2_0) { deviceVersion = info.device_version; } else { deviceVersion = CAMERA_DEVICE_API_VERSION_1_0; } if (facing) { *facing = info.facing; } return deviceVersion; } status_t CameraService::filterGetInfoErrorCode(status_t err) { switch(err) { case NO_ERROR: case -EINVAL: return err; default: break; } return -ENODEV; } bool CameraService::setUpVendorTags() { vendor_tag_ops_t vOps = vendor_tag_ops_t(); // Check if vendor operations have been implemented if (!mModule->isVendorTagDefined()) { ALOGI("%s: No vendor tags defined for this device.", __FUNCTION__); return false; } ATRACE_BEGIN("camera3->get_metadata_vendor_tag_ops"); mModule->getVendorTagOps(&vOps); ATRACE_END(); // Ensure all vendor operations are present if (vOps.get_tag_count == NULL || vOps.get_all_tags == NULL || vOps.get_section_name == NULL || vOps.get_tag_name == NULL || vOps.get_tag_type == NULL) { ALOGE("%s: Vendor tag operations not fully defined. Ignoring definitions." , __FUNCTION__); return false; } // Read all vendor tag definitions into a descriptor sp desc; status_t res; if ((res = VendorTagDescriptor::createDescriptorFromOps(&vOps, /*out*/desc)) != OK) { ALOGE("%s: Could not generate descriptor from vendor tag operations," "received error %s (%d). Camera clients will not be able to use" "vendor tags", __FUNCTION__, strerror(res), res); return false; } // Set the global descriptor to use with camera metadata VendorTagDescriptor::setAsGlobalVendorTagDescriptor(desc); return true; } status_t CameraService::initializeShimMetadata(int cameraId) { int pid = getCallingPid(); int uid = getCallingUid(); status_t ret = validateConnect(cameraId, uid); if (ret != OK) { // Error already logged by callee return ret; } bool needsNewClient = false; sp client; String16 internalPackageName("media"); { // Scope for service lock Mutex::Autolock lock(mServiceLock); if (mClient[cameraId] != NULL) { client = static_cast(mClient[cameraId].promote().get()); } if (client == NULL) { needsNewClient = true; ret = connectHelperLocked(/*out*/client, /*cameraClient*/NULL, // Empty binder callbacks cameraId, internalPackageName, uid, pid); if (ret != OK) { // Error already logged by callee return ret; } } if (client == NULL) { ALOGE("%s: Could not connect to client camera device.", __FUNCTION__); return BAD_VALUE; } String8 rawParams = client->getParameters(); CameraParameters params(rawParams); mShimParams.add(cameraId, params); } // Close client if one was opened solely for this call if (needsNewClient) { client->disconnect(); } return OK; } status_t CameraService::getLegacyParametersLazy(int cameraId, /*out*/ CameraParameters* parameters) { ALOGV("%s: for cameraId: %d", __FUNCTION__, cameraId); status_t ret = 0; if (parameters == NULL) { ALOGE("%s: parameters must not be null", __FUNCTION__); return BAD_VALUE; } ssize_t index = -1; { // Scope for service lock Mutex::Autolock lock(mServiceLock); index = mShimParams.indexOfKey(cameraId); // Release service lock so initializeShimMetadata can be called correctly. if (index >= 0) { *parameters = mShimParams[index]; } } if (index < 0) { int64_t token = IPCThreadState::self()->clearCallingIdentity(); ret = initializeShimMetadata(cameraId); IPCThreadState::self()->restoreCallingIdentity(token); if (ret != OK) { // Error already logged by callee return ret; } { // Scope for service lock Mutex::Autolock lock(mServiceLock); index = mShimParams.indexOfKey(cameraId); LOG_ALWAYS_FATAL_IF(index < 0, "index should have been initialized"); *parameters = mShimParams[index]; } } return OK; } status_t CameraService::validateConnect(int cameraId, /*inout*/ int& clientUid) const { int callingPid = getCallingPid(); if (clientUid == USE_CALLING_UID) { clientUid = getCallingUid(); } else { // We only trust our own process to forward client UIDs if (callingPid != getpid()) { ALOGE("CameraService::connect X (pid %d) rejected (don't trust clientUid)", callingPid); return PERMISSION_DENIED; } } if (!mModule) { ALOGE("Camera HAL module not loaded"); return -ENODEV; } if (cameraId < 0 || cameraId >= mNumberOfCameras) { ALOGE("CameraService::connect X (pid %d) rejected (invalid cameraId %d).", callingPid, cameraId); return -ENODEV; } char value[PROPERTY_VALUE_MAX]; char key[PROPERTY_KEY_MAX]; int clientUserId = multiuser_get_user_id(clientUid); snprintf(key, PROPERTY_KEY_MAX, "sys.secpolicy.camera.off_%d", clientUserId); property_get(key, value, "0"); if (strcmp(value, "1") == 0) { // Camera is disabled by DevicePolicyManager. ALOGI("Camera is disabled. connect X (pid %d) rejected", callingPid); return -EACCES; } ICameraServiceListener::Status currentStatus = getStatus(cameraId); if (currentStatus == ICameraServiceListener::STATUS_NOT_PRESENT) { ALOGI("Camera is not plugged in," " connect X (pid %d) rejected", callingPid); return -ENODEV; } else if (currentStatus == ICameraServiceListener::STATUS_ENUMERATING) { ALOGI("Camera is enumerating," " connect X (pid %d) rejected", callingPid); return -EBUSY; } // Else don't check for STATUS_NOT_AVAILABLE. // -- It's done implicitly in canConnectUnsafe /w the mBusy array return OK; } bool CameraService::canConnectUnsafe(int cameraId, const String16& clientPackageName, const sp& remoteCallback, sp &client) { String8 clientName8(clientPackageName); int callingPid = getCallingPid(); if (mClient[cameraId] != 0) { client = mClient[cameraId].promote(); if (client != 0) { if (remoteCallback == client->getRemote()) { LOG1("CameraService::connect X (pid %d) (the same client)", callingPid); return true; } else { // TODOSC: need to support 1 regular client, // multiple shared clients here ALOGW("CameraService::connect X (pid %d) rejected" " (existing client).", callingPid); return false; } } mClient[cameraId].clear(); } /* mBusy is set to false as the last step of the Client destructor, after which it is guaranteed that the Client destructor has finished ( including any inherited destructors) We only need this for a Client subclasses since we don't allow multiple Clents to be opened concurrently, but multiple BasicClient would be fine */ if (mBusy[cameraId]) { ALOGW("CameraService::connect X (pid %d, \"%s\") rejected" " (camera %d is still busy).", callingPid, clientName8.string(), cameraId); return false; } return true; } status_t CameraService::connectHelperLocked( /*out*/ sp& client, /*in*/ const sp& cameraClient, int cameraId, const String16& clientPackageName, int clientUid, int callingPid, int halVersion, bool legacyMode) { // give flashlight a chance to close devices if necessary. mFlashlight->prepareDeviceOpen(String8::format("%d", cameraId)); int facing = -1; int deviceVersion = getDeviceVersion(cameraId, &facing); if (halVersion < 0 || halVersion == deviceVersion) { // Default path: HAL version is unspecified by caller, create CameraClient // based on device version reported by the HAL. switch(deviceVersion) { case CAMERA_DEVICE_API_VERSION_1_0: client = new CameraClient(this, cameraClient, clientPackageName, cameraId, facing, callingPid, clientUid, getpid(), legacyMode); break; case CAMERA_DEVICE_API_VERSION_2_0: case CAMERA_DEVICE_API_VERSION_2_1: case CAMERA_DEVICE_API_VERSION_3_0: case CAMERA_DEVICE_API_VERSION_3_1: case CAMERA_DEVICE_API_VERSION_3_2: client = new Camera2Client(this, cameraClient, clientPackageName, cameraId, facing, callingPid, clientUid, getpid(), legacyMode); break; case -1: ALOGE("Invalid camera id %d", cameraId); return BAD_VALUE; default: ALOGE("Unknown camera device HAL version: %d", deviceVersion); return INVALID_OPERATION; } } else { // A particular HAL version is requested by caller. Create CameraClient // based on the requested HAL version. if (deviceVersion > CAMERA_DEVICE_API_VERSION_1_0 && halVersion == CAMERA_DEVICE_API_VERSION_1_0) { // Only support higher HAL version device opened as HAL1.0 device. client = new CameraClient(this, cameraClient, clientPackageName, cameraId, facing, callingPid, clientUid, getpid(), legacyMode); } else { // Other combinations (e.g. HAL3.x open as HAL2.x) are not supported yet. ALOGE("Invalid camera HAL version %x: HAL %x device can only be" " opened as HAL %x device", halVersion, deviceVersion, CAMERA_DEVICE_API_VERSION_1_0); return INVALID_OPERATION; } } status_t status = connectFinishUnsafe(client, client->getRemote()); if (status != OK) { // this is probably not recoverable.. maybe the client can try again return status; } mClient[cameraId] = client; LOG1("CameraService::connect X (id %d, this pid is %d)", cameraId, getpid()); return OK; } status_t CameraService::connect( const sp& cameraClient, int cameraId, const String16& clientPackageName, int clientUid, /*out*/ sp& device) { String8 clientName8(clientPackageName); int callingPid = getCallingPid(); LOG1("CameraService::connect E (pid %d \"%s\", id %d)", callingPid, clientName8.string(), cameraId); status_t status = validateConnect(cameraId, /*inout*/clientUid); if (status != OK) { return status; } sp client; { Mutex::Autolock lock(mServiceLock); sp clientTmp; if (!canConnectUnsafe(cameraId, clientPackageName, IInterface::asBinder(cameraClient), /*out*/clientTmp)) { return -EBUSY; } else if (client.get() != NULL) { device = static_cast(clientTmp.get()); return OK; } status = connectHelperLocked(/*out*/client, cameraClient, cameraId, clientPackageName, clientUid, callingPid); if (status != OK) { return status; } } // important: release the mutex here so the client can call back // into the service from its destructor (can be at the end of the call) device = client; return OK; } status_t CameraService::connectLegacy( const sp& cameraClient, int cameraId, int halVersion, const String16& clientPackageName, int clientUid, /*out*/ sp& device) { int apiVersion = mModule->getRawModule()->module_api_version; if (halVersion != CAMERA_HAL_API_VERSION_UNSPECIFIED && apiVersion < CAMERA_MODULE_API_VERSION_2_3) { /* * Either the HAL version is unspecified in which case this just creates * a camera client selected by the latest device version, or * it's a particular version in which case the HAL must supported * the open_legacy call */ ALOGE("%s: camera HAL module version %x doesn't support connecting to legacy HAL devices!", __FUNCTION__, apiVersion); return INVALID_OPERATION; } String8 clientName8(clientPackageName); int callingPid = getCallingPid(); LOG1("CameraService::connect legacy E (pid %d \"%s\", id %d)", callingPid, clientName8.string(), cameraId); status_t status = validateConnect(cameraId, /*inout*/clientUid); if (status != OK) { return status; } sp client; { Mutex::Autolock lock(mServiceLock); sp clientTmp; if (!canConnectUnsafe(cameraId, clientPackageName, IInterface::asBinder(cameraClient), /*out*/clientTmp)) { return -EBUSY; } else if (client.get() != NULL) { device = static_cast(clientTmp.get()); return OK; } status = connectHelperLocked(/*out*/client, cameraClient, cameraId, clientPackageName, clientUid, callingPid, halVersion, /*legacyMode*/true); if (status != OK) { return status; } } // important: release the mutex here so the client can call back // into the service from its destructor (can be at the end of the call) device = client; return OK; } bool CameraService::validCameraIdForSetTorchMode(const String8& cameraId) { // invalid string for int if (cameraId.string() == NULL) { return false; } errno = 0; char *endptr; long id = strtol(cameraId.string(), &endptr, 10); // base 10 if (errno || id > INT_MAX || id < INT_MIN || *endptr != 0) { return false; } // id matches one of the plugged-in devices? ICameraServiceListener::Status deviceStatus = getStatus(id); if (deviceStatus != ICameraServiceListener::STATUS_PRESENT && deviceStatus != ICameraServiceListener::STATUS_NOT_AVAILABLE) { return false; } return true; } status_t CameraService::setTorchMode(const String16& cameraId, bool enabled, const sp& clientBinder) { if (enabled && clientBinder == NULL) { ALOGE("%s: torch client binder is NULL", __FUNCTION__); return -EINVAL; } String8 id = String8(cameraId.string()); // verify id is valid. if (validCameraIdForSetTorchMode(id) == false) { ALOGE("%s: camera id is invalid %s", id.string()); return -EINVAL; } { Mutex::Autolock al(mTorchStatusMutex); ICameraServiceListener::TorchStatus status; status_t res = getTorchStatusLocked(id, &status); if (res) { ALOGE("%s: getting current torch status failed for camera %s", __FUNCTION__, id.string()); return -EINVAL; } if (status == ICameraServiceListener::TORCH_STATUS_NOT_AVAILABLE) { if (getStatus(atoi(id.string())) == ICameraServiceListener::STATUS_NOT_AVAILABLE) { ALOGE("%s: torch mode of camera %s is not available because " "camera is in use", __FUNCTION__, id.string()); return -EBUSY; } else { ALOGE("%s: torch mode of camera %s is not available due to " "insufficient resources", __FUNCTION__, id.string()); return -EUSERS; } } } status_t res = mFlashlight->setTorchMode(id, enabled); if (res) { ALOGE("%s: setting torch mode of camera %s to %d failed. %s (%d)", __FUNCTION__, id.string(), enabled, strerror(-res), res); return res; } { // update the link to client's death Mutex::Autolock al(mTorchClientMapMutex); ssize_t index = mTorchClientMap.indexOfKey(id); if (enabled) { if (index == NAME_NOT_FOUND) { mTorchClientMap.add(id, clientBinder); } else { const sp oldBinder = mTorchClientMap.valueAt(index); oldBinder->unlinkToDeath(this); mTorchClientMap.replaceValueAt(index, clientBinder); } clientBinder->linkToDeath(this); } else if (index != NAME_NOT_FOUND) { sp oldBinder = mTorchClientMap.valueAt(index); oldBinder->unlinkToDeath(this); } } return OK; } status_t CameraService::connectFinishUnsafe(const sp& client, const sp& remoteCallback) { status_t status = client->initialize(mModule); if (status != OK) { ALOGE("%s: Could not initialize client from HAL module.", __FUNCTION__); return status; } if (remoteCallback != NULL) { remoteCallback->linkToDeath(this); } return OK; } status_t CameraService::connectPro( const sp& cameraCb, int cameraId, const String16& clientPackageName, int clientUid, /*out*/ sp& device) { if (cameraCb == 0) { ALOGE("%s: Callback must not be null", __FUNCTION__); return BAD_VALUE; } String8 clientName8(clientPackageName); int callingPid = getCallingPid(); LOG1("CameraService::connectPro E (pid %d \"%s\", id %d)", callingPid, clientName8.string(), cameraId); status_t status = validateConnect(cameraId, /*inout*/clientUid); if (status != OK) { return status; } sp client; { Mutex::Autolock lock(mServiceLock); { sp client; if (!canConnectUnsafe(cameraId, clientPackageName, IInterface::asBinder(cameraCb), /*out*/client)) { return -EBUSY; } } int facing = -1; int deviceVersion = getDeviceVersion(cameraId, &facing); switch(deviceVersion) { case CAMERA_DEVICE_API_VERSION_1_0: ALOGE("Camera id %d uses HALv1, doesn't support ProCamera", cameraId); return -EOPNOTSUPP; break; case CAMERA_DEVICE_API_VERSION_2_0: case CAMERA_DEVICE_API_VERSION_2_1: case CAMERA_DEVICE_API_VERSION_3_0: case CAMERA_DEVICE_API_VERSION_3_1: case CAMERA_DEVICE_API_VERSION_3_2: client = new ProCamera2Client(this, cameraCb, clientPackageName, cameraId, facing, callingPid, clientUid, getpid()); break; case -1: ALOGE("Invalid camera id %d", cameraId); return BAD_VALUE; default: ALOGE("Unknown camera device HAL version: %d", deviceVersion); return INVALID_OPERATION; } status_t status = connectFinishUnsafe(client, client->getRemote()); if (status != OK) { return status; } mProClientList[cameraId].push(client); LOG1("CameraService::connectPro X (id %d, this pid is %d)", cameraId, getpid()); } // important: release the mutex here so the client can call back // into the service from its destructor (can be at the end of the call) device = client; return OK; } status_t CameraService::connectDevice( const sp& cameraCb, int cameraId, const String16& clientPackageName, int clientUid, /*out*/ sp& device) { String8 clientName8(clientPackageName); int callingPid = getCallingPid(); LOG1("CameraService::connectDevice E (pid %d \"%s\", id %d)", callingPid, clientName8.string(), cameraId); status_t status = validateConnect(cameraId, /*inout*/clientUid); if (status != OK) { return status; } sp client; { Mutex::Autolock lock(mServiceLock); { sp client; if (!canConnectUnsafe(cameraId, clientPackageName, IInterface::asBinder(cameraCb), /*out*/client)) { return -EBUSY; } } int facing = -1; int deviceVersion = getDeviceVersion(cameraId, &facing); // give flashlight a chance to close devices if necessary. mFlashlight->prepareDeviceOpen(String8::format("%d", cameraId)); switch(deviceVersion) { case CAMERA_DEVICE_API_VERSION_1_0: ALOGW("Camera using old HAL version: %d", deviceVersion); return -EOPNOTSUPP; // TODO: don't allow 2.0 Only allow 2.1 and higher case CAMERA_DEVICE_API_VERSION_2_0: case CAMERA_DEVICE_API_VERSION_2_1: case CAMERA_DEVICE_API_VERSION_3_0: case CAMERA_DEVICE_API_VERSION_3_1: case CAMERA_DEVICE_API_VERSION_3_2: client = new CameraDeviceClient(this, cameraCb, clientPackageName, cameraId, facing, callingPid, clientUid, getpid()); break; case -1: ALOGE("Invalid camera id %d", cameraId); return BAD_VALUE; default: ALOGE("Unknown camera device HAL version: %d", deviceVersion); return INVALID_OPERATION; } status_t status = connectFinishUnsafe(client, client->getRemote()); if (status != OK) { // this is probably not recoverable.. maybe the client can try again return status; } LOG1("CameraService::connectDevice X (id %d, this pid is %d)", cameraId, getpid()); mClient[cameraId] = client; } // important: release the mutex here so the client can call back // into the service from its destructor (can be at the end of the call) device = client; return OK; } status_t CameraService::addListener( const sp& listener) { ALOGV("%s: Add listener %p", __FUNCTION__, listener.get()); if (listener == 0) { ALOGE("%s: Listener must not be null", __FUNCTION__); return BAD_VALUE; } Mutex::Autolock lock(mServiceLock); Vector >::iterator it, end; for (it = mListenerList.begin(); it != mListenerList.end(); ++it) { if (IInterface::asBinder(*it) == IInterface::asBinder(listener)) { ALOGW("%s: Tried to add listener %p which was already subscribed", __FUNCTION__, listener.get()); return ALREADY_EXISTS; } } mListenerList.push_back(listener); /* Immediately signal current status to this listener only */ { Mutex::Autolock m(mStatusMutex) ; int numCams = getNumberOfCameras(); for (int i = 0; i < numCams; ++i) { listener->onStatusChanged(mStatusList[i], i); } } /* Immediately signal current torch status to this listener only */ { Mutex::Autolock al(mTorchStatusMutex); for (size_t i = 0; i < mTorchStatusMap.size(); i++ ) { String16 id = String16(mTorchStatusMap.keyAt(i).string()); listener->onTorchStatusChanged(mTorchStatusMap.valueAt(i), id); } } return OK; } status_t CameraService::removeListener( const sp& listener) { ALOGV("%s: Remove listener %p", __FUNCTION__, listener.get()); if (listener == 0) { ALOGE("%s: Listener must not be null", __FUNCTION__); return BAD_VALUE; } Mutex::Autolock lock(mServiceLock); Vector >::iterator it; for (it = mListenerList.begin(); it != mListenerList.end(); ++it) { if (IInterface::asBinder(*it) == IInterface::asBinder(listener)) { mListenerList.erase(it); return OK; } } ALOGW("%s: Tried to remove a listener %p which was not subscribed", __FUNCTION__, listener.get()); return BAD_VALUE; } status_t CameraService::getLegacyParameters( int cameraId, /*out*/ String16* parameters) { ALOGV("%s: for camera ID = %d", __FUNCTION__, cameraId); if (parameters == NULL) { ALOGE("%s: parameters must not be null", __FUNCTION__); return BAD_VALUE; } status_t ret = 0; CameraParameters shimParams; if ((ret = getLegacyParametersLazy(cameraId, /*out*/&shimParams)) != OK) { // Error logged by caller return ret; } String8 shimParamsString8 = shimParams.flatten(); String16 shimParamsString16 = String16(shimParamsString8); *parameters = shimParamsString16; return OK; } status_t CameraService::supportsCameraApi(int cameraId, int apiVersion) { ALOGV("%s: for camera ID = %d", __FUNCTION__, cameraId); switch (apiVersion) { case API_VERSION_1: case API_VERSION_2: break; default: ALOGE("%s: Bad API version %d", __FUNCTION__, apiVersion); return BAD_VALUE; } int facing = -1; int deviceVersion = getDeviceVersion(cameraId, &facing); switch(deviceVersion) { case CAMERA_DEVICE_API_VERSION_1_0: case CAMERA_DEVICE_API_VERSION_2_0: case CAMERA_DEVICE_API_VERSION_2_1: case CAMERA_DEVICE_API_VERSION_3_0: case CAMERA_DEVICE_API_VERSION_3_1: if (apiVersion == API_VERSION_2) { ALOGV("%s: Camera id %d uses HAL prior to HAL3.2, doesn't support api2 without shim", __FUNCTION__, cameraId); return -EOPNOTSUPP; } else { // if (apiVersion == API_VERSION_1) { ALOGV("%s: Camera id %d uses older HAL before 3.2, but api1 is always supported", __FUNCTION__, cameraId); return OK; } case CAMERA_DEVICE_API_VERSION_3_2: ALOGV("%s: Camera id %d uses HAL3.2 or newer, supports api1/api2 directly", __FUNCTION__, cameraId); return OK; case -1: ALOGE("%s: Invalid camera id %d", __FUNCTION__, cameraId); return BAD_VALUE; default: ALOGE("%s: Unknown camera device HAL version: %d", __FUNCTION__, deviceVersion); return INVALID_OPERATION; } return OK; } void CameraService::removeClientByRemote(const wp& remoteBinder) { int callingPid = getCallingPid(); LOG1("CameraService::removeClientByRemote E (pid %d)", callingPid); // Declare this before the lock to make absolutely sure the // destructor won't be called with the lock held. Mutex::Autolock lock(mServiceLock); int outIndex; sp client = findClientUnsafe(remoteBinder, outIndex); if (client != 0) { // Found our camera, clear and leave. LOG1("removeClient: clear camera %d", outIndex); sp remote = client->getRemote(); if (remote != NULL) { remote->unlinkToDeath(this); } mClient[outIndex].clear(); } else { sp clientPro = findProClientUnsafe(remoteBinder); if (clientPro != NULL) { // Found our camera, clear and leave. LOG1("removeClient: clear pro %p", clientPro.get()); IInterface::asBinder(clientPro->getRemoteCallback())->unlinkToDeath(this); } } LOG1("CameraService::removeClientByRemote X (pid %d)", callingPid); } sp CameraService::findProClientUnsafe( const wp& cameraCallbacksRemote) { sp clientPro; for (int i = 0; i < mNumberOfCameras; ++i) { Vector removeIdx; for (size_t j = 0; j < mProClientList[i].size(); ++j) { wp cl = mProClientList[i][j]; sp clStrong = cl.promote(); if (clStrong != NULL && clStrong->getRemote() == cameraCallbacksRemote) { clientPro = clStrong; break; } else if (clStrong == NULL) { // mark to clean up dead ptr removeIdx.push(j); } } // remove stale ptrs (in reverse so the indices dont change) for (ssize_t j = (ssize_t)removeIdx.size() - 1; j >= 0; --j) { mProClientList[i].removeAt(removeIdx[j]); } } return clientPro; } sp CameraService::findClientUnsafe( const wp& cameraClient, int& outIndex) { sp client; for (int i = 0; i < mNumberOfCameras; i++) { // This happens when we have already disconnected (or this is // just another unused camera). if (mClient[i] == 0) continue; // Promote mClient. It can fail if we are called from this path: // Client::~Client() -> disconnect() -> removeClientByRemote(). client = mClient[i].promote(); // Clean up stale client entry if (client == NULL) { mClient[i].clear(); continue; } if (cameraClient == client->getRemote()) { // Found our camera outIndex = i; return client; } } outIndex = -1; return NULL; } CameraService::BasicClient* CameraService::getClientByIdUnsafe(int cameraId) { if (cameraId < 0 || cameraId >= mNumberOfCameras) return NULL; return mClient[cameraId].unsafe_get(); } Mutex* CameraService::getClientLockById(int cameraId) { if (cameraId < 0 || cameraId >= mNumberOfCameras) return NULL; return &mClientLock[cameraId]; } sp CameraService::getClientByRemote( const wp& cameraClient) { // Declare this before the lock to make absolutely sure the // destructor won't be called with the lock held. sp client; Mutex::Autolock lock(mServiceLock); int outIndex; client = findClientUnsafe(cameraClient, outIndex); return client; } status_t CameraService::onTransact( uint32_t code, const Parcel& data, Parcel* reply, uint32_t flags) { // Permission checks switch (code) { case BnCameraService::CONNECT: case BnCameraService::CONNECT_PRO: case BnCameraService::CONNECT_DEVICE: case BnCameraService::CONNECT_LEGACY: const int pid = getCallingPid(); const int self_pid = getpid(); if (pid != self_pid) { // we're called from a different process, do the real check if (!checkCallingPermission( String16("android.permission.CAMERA"))) { const int uid = getCallingUid(); ALOGE("Permission Denial: " "can't use the camera pid=%d, uid=%d", pid, uid); return PERMISSION_DENIED; } } break; } return BnCameraService::onTransact(code, data, reply, flags); } // The reason we need this busy bit is a new CameraService::connect() request // may come in while the previous Client's destructor has not been run or is // still running. If the last strong reference of the previous Client is gone // but the destructor has not been finished, we should not allow the new Client // to be created because we need to wait for the previous Client to tear down // the hardware first. void CameraService::setCameraBusy(int cameraId) { android_atomic_write(1, &mBusy[cameraId]); ALOGV("setCameraBusy cameraId=%d", cameraId); } void CameraService::setCameraFree(int cameraId) { android_atomic_write(0, &mBusy[cameraId]); ALOGV("setCameraFree cameraId=%d", cameraId); } // We share the media players for shutter and recording sound for all clients. // A reference count is kept to determine when we will actually release the // media players. MediaPlayer* CameraService::newMediaPlayer(const char *file) { MediaPlayer* mp = new MediaPlayer(); if (mp->setDataSource(NULL /* httpService */, file, NULL) == NO_ERROR) { mp->setAudioStreamType(AUDIO_STREAM_ENFORCED_AUDIBLE); mp->prepare(); } else { ALOGE("Failed to load CameraService sounds: %s", file); return NULL; } return mp; } void CameraService::loadSound() { Mutex::Autolock lock(mSoundLock); LOG1("CameraService::loadSound ref=%d", mSoundRef); if (mSoundRef++) return; mSoundPlayer[SOUND_SHUTTER] = newMediaPlayer("/system/media/audio/ui/camera_click.ogg"); mSoundPlayer[SOUND_RECORDING] = newMediaPlayer("/system/media/audio/ui/VideoRecord.ogg"); } void CameraService::releaseSound() { Mutex::Autolock lock(mSoundLock); LOG1("CameraService::releaseSound ref=%d", mSoundRef); if (--mSoundRef) return; for (int i = 0; i < NUM_SOUNDS; i++) { if (mSoundPlayer[i] != 0) { mSoundPlayer[i]->disconnect(); mSoundPlayer[i].clear(); } } } void CameraService::playSound(sound_kind kind) { LOG1("playSound(%d)", kind); Mutex::Autolock lock(mSoundLock); sp player = mSoundPlayer[kind]; if (player != 0) { player->seekTo(0); player->start(); } } // ---------------------------------------------------------------------------- CameraService::Client::Client(const sp& cameraService, const sp& cameraClient, const String16& clientPackageName, int cameraId, int cameraFacing, int clientPid, uid_t clientUid, int servicePid) : CameraService::BasicClient(cameraService, IInterface::asBinder(cameraClient), clientPackageName, cameraId, cameraFacing, clientPid, clientUid, servicePid) { int callingPid = getCallingPid(); LOG1("Client::Client E (pid %d, id %d)", callingPid, cameraId); mRemoteCallback = cameraClient; cameraService->setCameraBusy(cameraId); cameraService->loadSound(); LOG1("Client::Client X (pid %d, id %d)", callingPid, cameraId); } // tear down the client CameraService::Client::~Client() { ALOGV("~Client"); mDestructionStarted = true; mCameraService->releaseSound(); // unconditionally disconnect. function is idempotent Client::disconnect(); } CameraService::BasicClient::BasicClient(const sp& cameraService, const sp& remoteCallback, const String16& clientPackageName, int cameraId, int cameraFacing, int clientPid, uid_t clientUid, int servicePid): mClientPackageName(clientPackageName) { mCameraService = cameraService; mRemoteBinder = remoteCallback; mCameraId = cameraId; mCameraFacing = cameraFacing; mClientPid = clientPid; mClientUid = clientUid; mServicePid = servicePid; mOpsActive = false; mDestructionStarted = false; } CameraService::BasicClient::~BasicClient() { ALOGV("~BasicClient"); mDestructionStarted = true; } void CameraService::BasicClient::disconnect() { ALOGV("BasicClient::disconnect"); mCameraService->removeClientByRemote(mRemoteBinder); finishCameraOps(); // client shouldn't be able to call into us anymore mClientPid = 0; } status_t CameraService::BasicClient::startCameraOps() { int32_t res; // Notify app ops that the camera is not available mOpsCallback = new OpsCallback(this); { ALOGV("%s: Start camera ops, package name = %s, client UID = %d", __FUNCTION__, String8(mClientPackageName).string(), mClientUid); } mAppOpsManager.startWatchingMode(AppOpsManager::OP_CAMERA, mClientPackageName, mOpsCallback); res = mAppOpsManager.startOp(AppOpsManager::OP_CAMERA, mClientUid, mClientPackageName); if (res != AppOpsManager::MODE_ALLOWED) { ALOGI("Camera %d: Access for \"%s\" has been revoked", mCameraId, String8(mClientPackageName).string()); return PERMISSION_DENIED; } mOpsActive = true; // Transition device availability listeners from PRESENT -> NOT_AVAILABLE mCameraService->updateStatus(ICameraServiceListener::STATUS_NOT_AVAILABLE, mCameraId); return OK; } status_t CameraService::BasicClient::finishCameraOps() { // Check if startCameraOps succeeded, and if so, finish the camera op if (mOpsActive) { // Notify app ops that the camera is available again mAppOpsManager.finishOp(AppOpsManager::OP_CAMERA, mClientUid, mClientPackageName); mOpsActive = false; // Notify device availability listeners that this camera is available // again StatusVector rejectSourceStates; rejectSourceStates.push_back(ICameraServiceListener::STATUS_NOT_PRESENT); rejectSourceStates.push_back(ICameraServiceListener::STATUS_ENUMERATING); // Transition to PRESENT if the camera is not in either of above 2 // states mCameraService->updateStatus(ICameraServiceListener::STATUS_PRESENT, mCameraId, &rejectSourceStates); // Notify flashlight that a camera device is closed. mCameraService->mFlashlight->deviceClosed( String8::format("%d", mCameraId)); } // Always stop watching, even if no camera op is active if (mOpsCallback != NULL) { mAppOpsManager.stopWatchingMode(mOpsCallback); } mOpsCallback.clear(); return OK; } void CameraService::BasicClient::opChanged(int32_t op, const String16& packageName) { String8 name(packageName); String8 myName(mClientPackageName); if (op != AppOpsManager::OP_CAMERA) { ALOGW("Unexpected app ops notification received: %d", op); return; } int32_t res; res = mAppOpsManager.checkOp(AppOpsManager::OP_CAMERA, mClientUid, mClientPackageName); ALOGV("checkOp returns: %d, %s ", res, res == AppOpsManager::MODE_ALLOWED ? "ALLOWED" : res == AppOpsManager::MODE_IGNORED ? "IGNORED" : res == AppOpsManager::MODE_ERRORED ? "ERRORED" : "UNKNOWN"); if (res != AppOpsManager::MODE_ALLOWED) { ALOGI("Camera %d: Access for \"%s\" revoked", mCameraId, myName.string()); // Reset the client PID to allow server-initiated disconnect, // and to prevent further calls by client. mClientPid = getCallingPid(); CaptureResultExtras resultExtras; // a dummy result (invalid) notifyError(ICameraDeviceCallbacks::ERROR_CAMERA_SERVICE, resultExtras); disconnect(); } } // ---------------------------------------------------------------------------- Mutex* CameraService::Client::getClientLockFromCookie(void* user) { return gCameraService->getClientLockById((int)(intptr_t) user); } // Provide client pointer for callbacks. Client lock returned from getClientLockFromCookie should // be acquired for this to be safe CameraService::Client* CameraService::Client::getClientFromCookie(void* user) { BasicClient *basicClient = gCameraService->getClientByIdUnsafe((int)(intptr_t) user); // OK: only CameraClient calls this, and they already cast anyway. Client* client = static_cast(basicClient); // This could happen if the Client is in the process of shutting down (the // last strong reference is gone, but the destructor hasn't finished // stopping the hardware). if (client == NULL) return NULL; // destruction already started, so should not be accessed if (client->mDestructionStarted) return NULL; return client; } void CameraService::Client::notifyError(ICameraDeviceCallbacks::CameraErrorCode errorCode, const CaptureResultExtras& resultExtras) { mRemoteCallback->notifyCallback(CAMERA_MSG_ERROR, CAMERA_ERROR_RELEASED, 0); } // NOTE: function is idempotent void CameraService::Client::disconnect() { ALOGV("Client::disconnect"); BasicClient::disconnect(); mCameraService->setCameraFree(mCameraId); } CameraService::Client::OpsCallback::OpsCallback(wp client): mClient(client) { } void CameraService::Client::OpsCallback::opChanged(int32_t op, const String16& packageName) { sp client = mClient.promote(); if (client != NULL) { client->opChanged(op, packageName); } } // ---------------------------------------------------------------------------- // IProCamera // ---------------------------------------------------------------------------- CameraService::ProClient::ProClient(const sp& cameraService, const sp& remoteCallback, const String16& clientPackageName, int cameraId, int cameraFacing, int clientPid, uid_t clientUid, int servicePid) : CameraService::BasicClient(cameraService, IInterface::asBinder(remoteCallback), clientPackageName, cameraId, cameraFacing, clientPid, clientUid, servicePid) { mRemoteCallback = remoteCallback; } CameraService::ProClient::~ProClient() { } void CameraService::ProClient::notifyError(ICameraDeviceCallbacks::CameraErrorCode errorCode, const CaptureResultExtras& resultExtras) { mRemoteCallback->notifyCallback(CAMERA_MSG_ERROR, CAMERA_ERROR_RELEASED, 0); } // ---------------------------------------------------------------------------- static const int kDumpLockRetries = 50; static const int kDumpLockSleep = 60000; static bool tryLock(Mutex& mutex) { bool locked = false; for (int i = 0; i < kDumpLockRetries; ++i) { if (mutex.tryLock() == NO_ERROR) { locked = true; break; } usleep(kDumpLockSleep); } return locked; } status_t CameraService::dump(int fd, const Vector& args) { String8 result; if (checkCallingPermission(String16("android.permission.DUMP")) == false) { result.appendFormat("Permission Denial: " "can't dump CameraService from pid=%d, uid=%d\n", getCallingPid(), getCallingUid()); write(fd, result.string(), result.size()); } else { bool locked = tryLock(mServiceLock); // failed to lock - CameraService is probably deadlocked if (!locked) { result.append("CameraService may be deadlocked\n"); write(fd, result.string(), result.size()); } bool hasClient = false; if (!mModule) { result = String8::format("No camera module available!\n"); write(fd, result.string(), result.size()); if (locked) mServiceLock.unlock(); return NO_ERROR; } const hw_module_t* common = mModule->getRawModule(); result = String8::format("Camera module HAL API version: 0x%x\n", common->hal_api_version); result.appendFormat("Camera module API version: 0x%x\n", common->module_api_version); result.appendFormat("Camera module name: %s\n", common->name); result.appendFormat("Camera module author: %s\n", common->author); result.appendFormat("Number of camera devices: %d\n\n", mNumberOfCameras); sp desc = VendorTagDescriptor::getGlobalVendorTagDescriptor(); if (desc == NULL) { result.appendFormat("Vendor tags left unimplemented.\n"); } else { result.appendFormat("Vendor tag definitions:\n"); } write(fd, result.string(), result.size()); if (desc != NULL) { desc->dump(fd, /*verbosity*/2, /*indentation*/4); } for (int i = 0; i < mNumberOfCameras; i++) { result = String8::format("Camera %d static information:\n", i); camera_info info; status_t rc = mModule->getCameraInfo(i, &info); if (rc != OK) { result.appendFormat(" Error reading static information!\n"); write(fd, result.string(), result.size()); } else { result.appendFormat(" Facing: %s\n", info.facing == CAMERA_FACING_BACK ? "BACK" : "FRONT"); result.appendFormat(" Orientation: %d\n", info.orientation); int deviceVersion; if (common->module_api_version < CAMERA_MODULE_API_VERSION_2_0) { deviceVersion = CAMERA_DEVICE_API_VERSION_1_0; } else { deviceVersion = info.device_version; } result.appendFormat(" Device version: 0x%x\n", deviceVersion); if (deviceVersion >= CAMERA_DEVICE_API_VERSION_2_0) { result.appendFormat(" Device static metadata:\n"); write(fd, result.string(), result.size()); dump_indented_camera_metadata(info.static_camera_characteristics, fd, /*verbosity*/2, /*indentation*/4); } else { write(fd, result.string(), result.size()); } } sp client = mClient[i].promote(); if (client == 0) { result = String8::format(" Device is closed, no client instance\n"); write(fd, result.string(), result.size()); continue; } hasClient = true; result = String8::format(" Device is open. Client instance dump:\n"); write(fd, result.string(), result.size()); client->dump(fd, args); } if (!hasClient) { result = String8::format("\nNo active camera clients yet.\n"); write(fd, result.string(), result.size()); } if (locked) mServiceLock.unlock(); // Dump camera traces if there were any write(fd, "\n", 1); camera3::CameraTraces::dump(fd, args); // change logging level int n = args.size(); for (int i = 0; i + 1 < n; i++) { String16 verboseOption("-v"); if (args[i] == verboseOption) { String8 levelStr(args[i+1]); int level = atoi(levelStr.string()); result = String8::format("\nSetting log level to %d.\n", level); setLogLevel(level); write(fd, result.string(), result.size()); } } } return NO_ERROR; } void CameraService::handleTorchClientBinderDied(const wp &who) { Mutex::Autolock al(mTorchClientMapMutex); for (size_t i = 0; i < mTorchClientMap.size(); i++) { if (mTorchClientMap[i] == who) { // turn off the torch mode that was turned on by dead client String8 cameraId = mTorchClientMap.keyAt(i); status_t res = mFlashlight->setTorchMode(cameraId, false); if (res) { ALOGE("%s: torch client died but couldn't turn off torch: " "%s (%d)", __FUNCTION__, strerror(-res), res); return; } mTorchClientMap.removeItemsAt(i); break; } } } /*virtual*/void CameraService::binderDied( const wp &who) { /** * While tempting to promote the wp into a sp, * it's actually not supported by the binder driver */ ALOGV("java clients' binder died"); // check torch client handleTorchClientBinderDied(who); // check camera device client sp cameraClient = getClientByRemote(who); if (cameraClient == 0) { ALOGV("java clients' binder death already cleaned up (normal case)"); return; } ALOGW("Disconnecting camera client %p since the binder for it " "died (this pid %d)", cameraClient.get(), getCallingPid()); cameraClient->disconnect(); } void CameraService::updateStatus(ICameraServiceListener::Status status, int32_t cameraId, const StatusVector *rejectSourceStates) { // do not lock mServiceLock here or can get into a deadlock from // connect() -> ProClient::disconnect -> updateStatus Mutex::Autolock lock(mStatusMutex); ICameraServiceListener::Status oldStatus = mStatusList[cameraId]; mStatusList[cameraId] = status; if (oldStatus != status) { ALOGV("%s: Status has changed for camera ID %d from 0x%x to 0x%x", __FUNCTION__, cameraId, (uint32_t)oldStatus, (uint32_t)status); if (oldStatus == ICameraServiceListener::STATUS_NOT_PRESENT && (status != ICameraServiceListener::STATUS_PRESENT && status != ICameraServiceListener::STATUS_ENUMERATING)) { ALOGW("%s: From NOT_PRESENT can only transition into PRESENT" " or ENUMERATING", __FUNCTION__); mStatusList[cameraId] = oldStatus; return; } if (rejectSourceStates != NULL) { const StatusVector &rejectList = *rejectSourceStates; StatusVector::const_iterator it = rejectList.begin(); /** * Sometimes we want to conditionally do a transition. * For example if a client disconnects, we want to go to PRESENT * only if we weren't already in NOT_PRESENT or ENUMERATING. */ for (; it != rejectList.end(); ++it) { if (oldStatus == *it) { ALOGV("%s: Rejecting status transition for Camera ID %d, " " since the source state was was in one of the bad " " states.", __FUNCTION__, cameraId); mStatusList[cameraId] = oldStatus; return; } } } /** * ProClients lose their exclusive lock. * - Done before the CameraClient can initialize the HAL device, * since we want to be able to close it before they get to initialize */ if (status == ICameraServiceListener::STATUS_NOT_AVAILABLE) { Vector > proClients(mProClientList[cameraId]); Vector >::const_iterator it; for (it = proClients.begin(); it != proClients.end(); ++it) { sp proCl = it->promote(); if (proCl.get() != NULL) { proCl->onExclusiveLockStolen(); } } } if (status == ICameraServiceListener::STATUS_NOT_PRESENT || status == ICameraServiceListener::STATUS_NOT_AVAILABLE) { // update torch status to not available when the camera device // becomes not present or not available. onTorchStatusChanged(String8::format("%d", cameraId), ICameraServiceListener::TORCH_STATUS_NOT_AVAILABLE); } else if (status == ICameraServiceListener::STATUS_PRESENT) { // update torch status to available when the camera device becomes // present or available onTorchStatusChanged(String8::format("%d", cameraId), ICameraServiceListener::TORCH_STATUS_AVAILABLE_OFF); } Vector >::const_iterator it; for (it = mListenerList.begin(); it != mListenerList.end(); ++it) { (*it)->onStatusChanged(status, cameraId); } } } ICameraServiceListener::Status CameraService::getStatus(int cameraId) const { if (cameraId < 0 || cameraId >= MAX_CAMERAS) { ALOGE("%s: Invalid camera ID %d", __FUNCTION__, cameraId); return ICameraServiceListener::STATUS_UNKNOWN; } Mutex::Autolock al(mStatusMutex); return mStatusList[cameraId]; } status_t CameraService::getTorchStatusLocked( const String8& cameraId, ICameraServiceListener::TorchStatus *status) const { if (!status) { return BAD_VALUE; } ssize_t index = mTorchStatusMap.indexOfKey(cameraId); if (index == NAME_NOT_FOUND) { // invalid camera ID or the camera doesn't have a flash unit return NAME_NOT_FOUND; } *status = mTorchStatusMap.valueAt(index); return OK; } status_t CameraService::setTorchStatusLocked(const String8& cameraId, ICameraServiceListener::TorchStatus status) { ssize_t index = mTorchStatusMap.indexOfKey(cameraId); if (index == NAME_NOT_FOUND) { return BAD_VALUE; } ICameraServiceListener::TorchStatus& item = mTorchStatusMap.editValueAt(index); item = status; return OK; } }; // namespace android