blob: 1815cb8be1b6a38f66065a38933b26475f44a736 [file] [log] [blame]
/*
* Copyright 2017 The Chromium OS Authors. All rights reserved.
* Use of this source code is governed by a BSD-style license that can be
* found in the LICENSE file.
*/
#include "hal_adapter/camera_hal_server_impl.h"
#include <dlfcn.h>
#include <fcntl.h>
#include <sys/socket.h>
#include <sys/types.h>
#include <sys/un.h>
#include <sys/wait.h>
#include <unistd.h>
#include <deque>
#include <string>
#include <utility>
#include <vector>
#include <base/bind.h>
#include <base/bind_helpers.h>
#include <base/files/file_path.h>
#include <base/files/file_util.h>
#include <base/files/scoped_file.h>
#include <base/logging.h>
#include <base/message_loop/message_loop.h>
#include <base/threading/thread_task_runner_handle.h>
#include <mojo/edk/embedder/embedder.h>
#include <mojo/edk/embedder/platform_channel_pair.h>
#include <mojo/edk/embedder/platform_channel_utils_posix.h>
#include <mojo/edk/embedder/platform_handle_vector.h>
#include "common/utils/camera_hal_enumerator.h"
#include "cros-camera/common.h"
#include "cros-camera/constants.h"
#include "cros-camera/ipc_util.h"
#include "hal_adapter/camera_trace_event.h"
namespace cros {
CameraHalServerImpl::CameraHalServerImpl()
: ipc_thread_("IPCThread"),
main_task_runner_(base::ThreadTaskRunnerHandle::Get()),
binding_(this) {
VLOGF_ENTER();
}
CameraHalServerImpl::~CameraHalServerImpl() {
VLOGF_ENTER();
mojo::edk::ShutdownIPCSupport(base::Bind(&base::DoNothing));
}
bool CameraHalServerImpl::Start() {
VLOGF_ENTER();
mojo::edk::Init();
if (!ipc_thread_.StartWithOptions(
base::Thread::Options(base::MessageLoop::TYPE_IO, 0))) {
LOGF(ERROR) << "Failed to start IPCThread";
return false;
}
mojo::edk::InitIPCSupport(ipc_thread_.task_runner());
base::FilePath socket_path(constants::kCrosCameraSocketPathString);
if (!watcher_.Watch(socket_path, false,
base::Bind(&CameraHalServerImpl::OnSocketFileStatusChange,
base::Unretained(this)))) {
LOGF(ERROR) << "Failed to watch socket path";
return false;
}
if (base::PathExists(socket_path)) {
CameraHalServerImpl::OnSocketFileStatusChange(socket_path, false);
}
return true;
}
void CameraHalServerImpl::CreateChannel(
mojom::CameraModuleRequest camera_module_request) {
VLOGF_ENTER();
DCHECK(ipc_thread_.task_runner()->BelongsToCurrentThread());
camera_hal_adapter_->OpenCameraHal(std::move(camera_module_request));
}
void CameraHalServerImpl::SetTracingEnabled(bool enabled) {
VLOGF_ENTER();
TRACE_CAMERA_ENABLE(enabled);
}
void CameraHalServerImpl::OnSocketFileStatusChange(
const base::FilePath& socket_path,
bool error) {
VLOGF_ENTER();
DCHECK(main_task_runner_->BelongsToCurrentThread());
if (!PathExists(socket_path)) {
if (dispatcher_.is_bound()) {
main_task_runner_->PostTask(
FROM_HERE, base::Bind(&CameraHalServerImpl::ExitOnMainThread,
base::Unretained(this), ECONNRESET));
}
return;
}
if (dispatcher_.is_bound()) {
return;
}
VLOG(1) << "Got socket: " << socket_path.value() << " error: " << error;
mojo::ScopedMessagePipeHandle child_pipe;
MojoResult result =
CreateMojoChannelToParentByUnixDomainSocket(socket_path, &child_pipe);
if (result != MOJO_RESULT_OK) {
LOGF(WARNING) << "Failed to create Mojo Channel to " << socket_path.value();
return;
}
dispatcher_ = mojo::MakeProxy(
mojom::CameraHalDispatcherPtrInfo(std::move(child_pipe), 0u),
ipc_thread_.task_runner());
LOGF(INFO) << "Connected to CameraHalDispatcher";
ipc_thread_.task_runner()->PostTask(
FROM_HERE, base::Bind(&CameraHalServerImpl::RegisterCameraHal,
base::Unretained(this)));
}
void CameraHalServerImpl::RegisterCameraHal() {
VLOGF_ENTER();
DCHECK(ipc_thread_.task_runner()->BelongsToCurrentThread());
std::vector<camera_module_t*> camera_modules;
for (const auto& dll : GetCameraHalPaths()) {
LOGF(INFO) << "Try to load camera hal " << dll.value();
void* handle = dlopen(dll.value().c_str(), RTLD_NOW | RTLD_LOCAL);
if (!handle) {
LOGF(INFO) << "Failed to dlopen: " << dlerror();
main_task_runner_->PostTask(
FROM_HERE, base::Bind(&CameraHalServerImpl::ExitOnMainThread,
base::Unretained(this), ENOENT));
return;
}
auto* module = static_cast<camera_module_t*>(
dlsym(handle, HAL_MODULE_INFO_SYM_AS_STR));
if (!module) {
LOGF(ERROR) << "Failed to get camera_module_t pointer with symbol name "
<< HAL_MODULE_INFO_SYM_AS_STR << " from " << dll.value();
main_task_runner_->PostTask(
FROM_HERE, base::Bind(&CameraHalServerImpl::ExitOnMainThread,
base::Unretained(this), ELIBBAD));
return;
}
camera_modules.push_back(module);
}
camera_hal_adapter_.reset(new CameraHalAdapter(camera_modules));
LOGF(INFO) << "Running camera HAL adapter on " << getpid();
if (!camera_hal_adapter_->Start()) {
LOGF(ERROR) << "Failed to start camera HAL adapter";
main_task_runner_->PostTask(
FROM_HERE, base::Bind(&CameraHalServerImpl::ExitOnMainThread,
base::Unretained(this), ENODEV));
return;
}
dispatcher_.set_connection_error_handler(base::Bind(
&CameraHalServerImpl::OnServiceMojoChannelError, base::Unretained(this)));
dispatcher_->RegisterServer(binding_.CreateInterfacePtrAndBind());
LOGF(INFO) << "Registered camera HAL";
}
void CameraHalServerImpl::OnServiceMojoChannelError() {
VLOGF_ENTER();
DCHECK(ipc_thread_.task_runner()->BelongsToCurrentThread());
// The CameraHalDispatcher Mojo parent is probably dead. We need to restart
// another process in order to connect to the new Mojo parent.
LOGF(INFO) << "Mojo connection to CameraHalDispatcher is broken";
main_task_runner_->PostTask(FROM_HERE,
base::Bind(&CameraHalServerImpl::ExitOnMainThread,
base::Unretained(this), ECONNRESET));
}
void CameraHalServerImpl::ExitOnMainThread(int exit_status) {
VLOGF_ENTER();
DCHECK(main_task_runner_->BelongsToCurrentThread());
camera_hal_adapter_.reset();
exit(exit_status);
}
} // namespace cros