blob: e828a12abc468921ec7fb7df360ac61ccbae8748 [file] [log] [blame]
/*
* Copyright (C) 2017 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.
*/
#include "src/tracing/ipc/producer/producer_ipc_client_impl.h"
#include <inttypes.h>
#include <string.h>
#include "perfetto/base/logging.h"
#include "perfetto/base/task_runner.h"
#include "perfetto/ext/ipc/client.h"
#include "perfetto/ext/tracing/core/commit_data_request.h"
#include "perfetto/ext/tracing/core/producer.h"
#include "perfetto/ext/tracing/core/shared_memory_arbiter.h"
#include "perfetto/ext/tracing/core/trace_writer.h"
#include "perfetto/tracing/core/data_source_config.h"
#include "perfetto/tracing/core/data_source_descriptor.h"
#include "perfetto/tracing/core/trace_config.h"
#include "src/tracing/ipc/posix_shared_memory.h"
// TODO(fmayer): think to what happens when ProducerIPCClientImpl gets destroyed
// w.r.t. the Producer pointer. Also think to lifetime of the Producer* during
// the callbacks.
namespace perfetto {
// static. (Declared in include/tracing/ipc/producer_ipc_client.h).
std::unique_ptr<TracingService::ProducerEndpoint> ProducerIPCClient::Connect(
const char* service_sock_name,
Producer* producer,
const std::string& producer_name,
base::TaskRunner* task_runner,
TracingService::ProducerSMBScrapingMode smb_scraping_mode,
size_t shared_memory_size_hint_bytes,
size_t shared_memory_page_size_hint_bytes) {
return std::unique_ptr<TracingService::ProducerEndpoint>(
new ProducerIPCClientImpl(service_sock_name, producer, producer_name,
task_runner, smb_scraping_mode,
shared_memory_size_hint_bytes,
shared_memory_page_size_hint_bytes));
}
ProducerIPCClientImpl::ProducerIPCClientImpl(
const char* service_sock_name,
Producer* producer,
const std::string& producer_name,
base::TaskRunner* task_runner,
TracingService::ProducerSMBScrapingMode smb_scraping_mode,
size_t shared_memory_size_hint_bytes,
size_t shared_memory_page_size_hint_bytes)
: producer_(producer),
task_runner_(task_runner),
ipc_channel_(ipc::Client::CreateInstance(service_sock_name, task_runner)),
producer_port_(this /* event_listener */),
name_(producer_name),
shared_memory_page_size_hint_bytes_(shared_memory_page_size_hint_bytes),
shared_memory_size_hint_bytes_(shared_memory_size_hint_bytes),
smb_scraping_mode_(smb_scraping_mode) {
ipc_channel_->BindService(producer_port_.GetWeakPtr());
PERFETTO_DCHECK_THREAD(thread_checker_);
}
ProducerIPCClientImpl::~ProducerIPCClientImpl() = default;
// Called by the IPC layer if the BindService() succeeds.
void ProducerIPCClientImpl::OnConnect() {
PERFETTO_DCHECK_THREAD(thread_checker_);
connected_ = true;
// The IPC layer guarantees that any outstanding callback will be dropped on
// the floor if producer_port_ is destroyed between the request and the reply.
// Binding |this| is hence safe.
ipc::Deferred<protos::gen::InitializeConnectionResponse> on_init;
on_init.Bind(
[this](ipc::AsyncResult<protos::gen::InitializeConnectionResponse> resp) {
OnConnectionInitialized(resp.success());
});
protos::gen::InitializeConnectionRequest req;
req.set_producer_name(name_);
req.set_shared_memory_size_hint_bytes(
static_cast<uint32_t>(shared_memory_size_hint_bytes_));
req.set_shared_memory_page_size_hint_bytes(
static_cast<uint32_t>(shared_memory_page_size_hint_bytes_));
switch (smb_scraping_mode_) {
case TracingService::ProducerSMBScrapingMode::kDefault:
// No need to set the mode, it defaults to use the service default if
// unspecified.
break;
case TracingService::ProducerSMBScrapingMode::kEnabled:
req.set_smb_scraping_mode(
protos::gen::InitializeConnectionRequest::SMB_SCRAPING_ENABLED);
break;
case TracingService::ProducerSMBScrapingMode::kDisabled:
req.set_smb_scraping_mode(
protos::gen::InitializeConnectionRequest::SMB_SCRAPING_DISABLED);
break;
}
#if PERFETTO_DCHECK_IS_ON()
req.set_build_flags(
protos::gen::InitializeConnectionRequest::BUILD_FLAGS_DCHECKS_ON);
#else
req.set_build_flags(
protos::gen::InitializeConnectionRequest::BUILD_FLAGS_DCHECKS_OFF);
#endif
producer_port_.InitializeConnection(req, std::move(on_init));
// Create the back channel to receive commands from the Service.
ipc::Deferred<protos::gen::GetAsyncCommandResponse> on_cmd;
on_cmd.Bind(
[this](ipc::AsyncResult<protos::gen::GetAsyncCommandResponse> resp) {
if (!resp)
return; // The IPC channel was closed and |resp| was auto-rejected.
OnServiceRequest(*resp);
});
producer_port_.GetAsyncCommand(protos::gen::GetAsyncCommandRequest(),
std::move(on_cmd));
}
void ProducerIPCClientImpl::OnDisconnect() {
PERFETTO_DCHECK_THREAD(thread_checker_);
PERFETTO_DLOG("Tracing service connection failure");
connected_ = false;
producer_->OnDisconnect();
data_sources_setup_.clear();
}
void ProducerIPCClientImpl::OnConnectionInitialized(bool connection_succeeded) {
PERFETTO_DCHECK_THREAD(thread_checker_);
// If connection_succeeded == false, the OnDisconnect() call will follow next
// and there we'll notify the |producer_|. TODO: add a test for this.
if (!connection_succeeded)
return;
producer_->OnConnect();
}
void ProducerIPCClientImpl::OnServiceRequest(
const protos::gen::GetAsyncCommandResponse& cmd) {
PERFETTO_DCHECK_THREAD(thread_checker_);
// This message is sent only when connecting to a service running Android Q+.
// See comment below in kStartDataSource.
if (cmd.has_setup_data_source()) {
const auto& req = cmd.setup_data_source();
const DataSourceInstanceID dsid = req.new_instance_id();
data_sources_setup_.insert(dsid);
producer_->SetupDataSource(dsid, req.config());
return;
}
if (cmd.has_start_data_source()) {
const auto& req = cmd.start_data_source();
const DataSourceInstanceID dsid = req.new_instance_id();
const DataSourceConfig& cfg = req.config();
if (!data_sources_setup_.count(dsid)) {
// When connecting with an older (Android P) service, the service will not
// send a SetupDataSource message. We synthesize it here in that case.
producer_->SetupDataSource(dsid, cfg);
}
producer_->StartDataSource(dsid, cfg);
return;
}
if (cmd.has_stop_data_source()) {
const DataSourceInstanceID dsid = cmd.stop_data_source().instance_id();
producer_->StopDataSource(dsid);
data_sources_setup_.erase(dsid);
return;
}
if (cmd.has_setup_tracing()) {
base::ScopedFile shmem_fd = ipc_channel_->TakeReceivedFD();
PERFETTO_CHECK(shmem_fd);
// TODO(primiano): handle mmap failure in case of OOM.
shared_memory_ =
PosixSharedMemory::AttachToFd(std::move(shmem_fd),
/*require_seals_if_supported=*/false);
shared_buffer_page_size_kb_ =
cmd.setup_tracing().shared_buffer_page_size_kb();
shared_memory_arbiter_ = SharedMemoryArbiter::CreateInstance(
shared_memory_.get(), shared_buffer_page_size_kb_ * 1024, this,
task_runner_);
producer_->OnTracingSetup();
return;
}
if (cmd.has_flush()) {
// This cast boilerplate is required only because protobuf uses its own
// uint64 and not stdint's uint64_t. On some 64 bit archs they differ on the
// type (long vs long long) even though they have the same size.
const auto* data_source_ids = cmd.flush().data_source_ids().data();
static_assert(sizeof(data_source_ids[0]) == sizeof(DataSourceInstanceID),
"data_source_ids should be 64-bit");
producer_->Flush(
cmd.flush().request_id(),
reinterpret_cast<const DataSourceInstanceID*>(data_source_ids),
static_cast<size_t>(cmd.flush().data_source_ids().size()));
return;
}
if (cmd.has_clear_incremental_state()) {
const auto* data_source_ids =
cmd.clear_incremental_state().data_source_ids().data();
static_assert(sizeof(data_source_ids[0]) == sizeof(DataSourceInstanceID),
"data_source_ids should be 64-bit");
producer_->ClearIncrementalState(
reinterpret_cast<const DataSourceInstanceID*>(data_source_ids),
static_cast<size_t>(
cmd.clear_incremental_state().data_source_ids().size()));
return;
}
PERFETTO_DFATAL("Unknown async request received from tracing service");
}
void ProducerIPCClientImpl::RegisterDataSource(
const DataSourceDescriptor& descriptor) {
PERFETTO_DCHECK_THREAD(thread_checker_);
if (!connected_) {
PERFETTO_DLOG(
"Cannot RegisterDataSource(), not connected to tracing service");
}
protos::gen::RegisterDataSourceRequest req;
*req.mutable_data_source_descriptor() = descriptor;
ipc::Deferred<protos::gen::RegisterDataSourceResponse> async_response;
async_response.Bind(
[](ipc::AsyncResult<protos::gen::RegisterDataSourceResponse> response) {
if (!response)
PERFETTO_DLOG("RegisterDataSource() failed: connection reset");
});
producer_port_.RegisterDataSource(req, std::move(async_response));
}
void ProducerIPCClientImpl::UnregisterDataSource(const std::string& name) {
PERFETTO_DCHECK_THREAD(thread_checker_);
if (!connected_) {
PERFETTO_DLOG(
"Cannot UnregisterDataSource(), not connected to tracing service");
return;
}
protos::gen::UnregisterDataSourceRequest req;
req.set_data_source_name(name);
producer_port_.UnregisterDataSource(
req, ipc::Deferred<protos::gen::UnregisterDataSourceResponse>());
}
void ProducerIPCClientImpl::RegisterTraceWriter(uint32_t writer_id,
uint32_t target_buffer) {
PERFETTO_DCHECK_THREAD(thread_checker_);
if (!connected_) {
PERFETTO_DLOG(
"Cannot RegisterTraceWriter(), not connected to tracing service");
return;
}
protos::gen::RegisterTraceWriterRequest req;
req.set_trace_writer_id(writer_id);
req.set_target_buffer(target_buffer);
producer_port_.RegisterTraceWriter(
req, ipc::Deferred<protos::gen::RegisterTraceWriterResponse>());
}
void ProducerIPCClientImpl::UnregisterTraceWriter(uint32_t writer_id) {
PERFETTO_DCHECK_THREAD(thread_checker_);
if (!connected_) {
PERFETTO_DLOG(
"Cannot UnregisterTraceWriter(), not connected to tracing service");
return;
}
protos::gen::UnregisterTraceWriterRequest req;
req.set_trace_writer_id(writer_id);
producer_port_.UnregisterTraceWriter(
req, ipc::Deferred<protos::gen::UnregisterTraceWriterResponse>());
}
void ProducerIPCClientImpl::CommitData(const CommitDataRequest& req,
CommitDataCallback callback) {
PERFETTO_DCHECK_THREAD(thread_checker_);
if (!connected_) {
PERFETTO_DLOG("Cannot CommitData(), not connected to tracing service");
return;
}
ipc::Deferred<protos::gen::CommitDataResponse> async_response;
// TODO(primiano): add a test that destroys ProducerIPCClientImpl soon after
// this call and checks that the callback is dropped.
if (callback) {
async_response.Bind(
[callback](ipc::AsyncResult<protos::gen::CommitDataResponse> response) {
if (!response) {
PERFETTO_DLOG("CommitData() failed: connection reset");
return;
}
callback();
});
}
producer_port_.CommitData(req, std::move(async_response));
}
void ProducerIPCClientImpl::NotifyDataSourceStarted(DataSourceInstanceID id) {
PERFETTO_DCHECK_THREAD(thread_checker_);
if (!connected_) {
PERFETTO_DLOG(
"Cannot NotifyDataSourceStarted(), not connected to tracing service");
return;
}
protos::gen::NotifyDataSourceStartedRequest req;
req.set_data_source_id(id);
producer_port_.NotifyDataSourceStarted(
req, ipc::Deferred<protos::gen::NotifyDataSourceStartedResponse>());
}
void ProducerIPCClientImpl::NotifyDataSourceStopped(DataSourceInstanceID id) {
PERFETTO_DCHECK_THREAD(thread_checker_);
if (!connected_) {
PERFETTO_DLOG(
"Cannot NotifyDataSourceStopped(), not connected to tracing service");
return;
}
protos::gen::NotifyDataSourceStoppedRequest req;
req.set_data_source_id(id);
producer_port_.NotifyDataSourceStopped(
req, ipc::Deferred<protos::gen::NotifyDataSourceStoppedResponse>());
}
void ProducerIPCClientImpl::ActivateTriggers(
const std::vector<std::string>& triggers) {
PERFETTO_DCHECK_THREAD(thread_checker_);
if (!connected_) {
PERFETTO_DLOG(
"Cannot ActivateTriggers(), not connected to tracing service");
return;
}
protos::gen::ActivateTriggersRequest proto_req;
for (const auto& name : triggers) {
*proto_req.add_trigger_names() = name;
}
producer_port_.ActivateTriggers(
proto_req, ipc::Deferred<protos::gen::ActivateTriggersResponse>());
}
std::unique_ptr<TraceWriter> ProducerIPCClientImpl::CreateTraceWriter(
BufferID target_buffer,
BufferExhaustedPolicy buffer_exhausted_policy) {
// This method can be called by different threads. |shared_memory_arbiter_| is
// thread-safe but be aware of accessing any other state in this function.
return shared_memory_arbiter_->CreateTraceWriter(target_buffer,
buffer_exhausted_policy);
}
SharedMemoryArbiter* ProducerIPCClientImpl::MaybeSharedMemoryArbiter() {
return shared_memory_arbiter_.get();
}
void ProducerIPCClientImpl::NotifyFlushComplete(FlushRequestID req_id) {
return shared_memory_arbiter_->NotifyFlushComplete(req_id);
}
SharedMemory* ProducerIPCClientImpl::shared_memory() const {
return shared_memory_.get();
}
size_t ProducerIPCClientImpl::shared_buffer_page_size_kb() const {
return shared_buffer_page_size_kb_;
}
} // namespace perfetto