1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291
|
// Copyright 2017 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "mojo/public/cpp/system/simple_watcher.h"
#include "base/functional/bind.h"
#include "base/memory/ptr_util.h"
#include "base/synchronization/lock.h"
#include "base/task/common/task_annotator.h"
#include "base/task/sequenced_task_runner.h"
#include "base/task/single_thread_task_runner.h"
#include "base/trace_event/heap_profiler.h"
#include "base/trace_event/trace_event.h"
#include "base/trace_event/typed_macros.h"
#include "mojo/public/c/system/trap.h"
#include "third_party/perfetto/protos/perfetto/trace/track_event/chrome_mojo_event_info.pbzero.h"
namespace mojo {
// Thread-safe Context object used to schedule trap events from arbitrary
// threads.
class SimpleWatcher::Context : public base::RefCountedThreadSafe<Context> {
public:
// Creates a |Context| instance for a new watch on |watcher|, to observe
// |signals| on |handle|.
static scoped_refptr<Context> Create(
base::WeakPtr<SimpleWatcher> watcher,
scoped_refptr<base::SequencedTaskRunner> task_runner,
TrapHandle trap_handle,
Handle handle,
MojoHandleSignals signals,
MojoTriggerCondition condition,
int watch_id,
MojoResult* result,
const char* handler_tag) {
scoped_refptr<Context> context =
new Context(watcher, task_runner, watch_id, handler_tag);
// If MojoAddTrigger succeeds, it effectively assumes ownership of a
// reference to |context|. In that case, this reference is balanced in
// CallNotify() when |result| is |MOJO_RESULT_CANCELLED|.
context->AddRef();
*result = MojoAddTrigger(trap_handle.value(), handle.value(), signals,
condition, context->value(), nullptr);
if (*result != MOJO_RESULT_OK) {
// Balanced by the AddRef() above since MojoAddTrigger failed.
context->Release();
return nullptr;
}
return context;
}
Context(const Context&) = delete;
Context& operator=(const Context&) = delete;
static void CallNotify(const MojoTrapEvent* event) {
auto* context = reinterpret_cast<Context*>(event->trigger_context);
context->Notify(event->result, event->signals_state, event->flags);
// The trigger was removed. We can release the ref it owned, which in turn
// may delete the Context.
if (event->result == MOJO_RESULT_CANCELLED)
context->Release();
}
uintptr_t value() const { return reinterpret_cast<uintptr_t>(this); }
private:
friend class base::RefCountedThreadSafe<Context>;
Context(base::WeakPtr<SimpleWatcher> weak_watcher,
scoped_refptr<base::SequencedTaskRunner> task_runner,
int watch_id,
const char* handler_tag)
: weak_watcher_(weak_watcher),
task_runner_(task_runner),
watch_id_(watch_id),
handler_tag_(handler_tag) {}
~Context() = default;
void Notify(MojoResult result,
MojoHandleSignalsState signals_state,
MojoTrapEventFlags flags) {
HandleSignalsState state(signals_state.satisfied_signals,
signals_state.satisfiable_signals);
if (!(flags & MOJO_TRAP_EVENT_FLAG_WITHIN_API_CALL) &&
task_runner_->RunsTasksInCurrentSequence() && weak_watcher_ &&
weak_watcher_->is_default_task_runner_) {
// System notifications will trigger from the task runner passed to
// mojo::core::ScopedIPCSupport. In Chrome this happens to always be
// the default task runner for the IO thread.
weak_watcher_->OnHandleReady(watch_id_, result, state);
} else {
{
// Annotate the posted task with |handler_tag_| as the IPC interface.
base::TaskAnnotator::ScopedSetIpcHash scoped_set_ipc_hash(handler_tag_);
task_runner_->PostTask(
FROM_HERE, base::BindOnce(&SimpleWatcher::OnHandleReady,
weak_watcher_, watch_id_, result, state));
}
}
}
const base::WeakPtr<SimpleWatcher> weak_watcher_;
const scoped_refptr<base::SequencedTaskRunner> task_runner_;
const int watch_id_;
const char* handler_tag_ = nullptr;
};
SimpleWatcher::SimpleWatcher(const base::Location& from_here,
ArmingPolicy arming_policy,
scoped_refptr<base::SequencedTaskRunner> runner,
const char* handler_tag)
: arming_policy_(arming_policy),
task_runner_(std::move(runner)),
is_default_task_runner_(
base::SingleThreadTaskRunner::HasCurrentDefault() &&
task_runner_ == base::SingleThreadTaskRunner::GetCurrentDefault()),
handler_tag_(handler_tag ? handler_tag : from_here.file_name()) {
MojoResult rv = CreateTrap(&Context::CallNotify, &trap_handle_);
DCHECK_EQ(MOJO_RESULT_OK, rv);
DCHECK(task_runner_->RunsTasksInCurrentSequence());
}
SimpleWatcher::~SimpleWatcher() {
if (IsWatching())
Cancel();
}
bool SimpleWatcher::IsWatching() const {
DCHECK_CALLED_ON_VALID_SEQUENCE(sequence_checker_);
return context_ != nullptr;
}
MojoResult SimpleWatcher::Watch(Handle handle,
MojoHandleSignals signals,
MojoTriggerCondition condition,
ReadyCallbackWithState callback) {
DCHECK_CALLED_ON_VALID_SEQUENCE(sequence_checker_);
DCHECK(!IsWatching());
DCHECK(!callback.is_null());
callback_ = std::move(callback);
handle_ = handle;
watch_id_ += 1;
MojoResult result = MOJO_RESULT_UNKNOWN;
context_ = Context::Create(weak_factory_.GetWeakPtr(), task_runner_,
trap_handle_.get(), handle_, signals, condition,
watch_id_, &result, handler_tag_);
if (!context_) {
handle_.set_value(kInvalidHandleValue);
callback_.Reset();
DCHECK_EQ(MOJO_RESULT_INVALID_ARGUMENT, result);
return result;
}
if (arming_policy_ == ArmingPolicy::AUTOMATIC)
ArmOrNotify();
return MOJO_RESULT_OK;
}
void SimpleWatcher::Cancel() {
DCHECK_CALLED_ON_VALID_SEQUENCE(sequence_checker_);
// The watcher may have already been cancelled if the handle was closed.
if (!context_)
return;
handle_.set_value(kInvalidHandleValue);
callback_.Reset();
// Ensure |context_| is unset by the time we call MojoRemoveTrigger, as it may
// re-enter the notification callback and we want to ensure |context_| is
// unset by then.
scoped_refptr<Context> context;
std::swap(context, context_);
MojoResult rv =
MojoRemoveTrigger(trap_handle_.get().value(), context->value(), nullptr);
// It's possible this cancellation could race with a handle closure
// notification, in which case the watch may have already been implicitly
// cancelled.
DCHECK(rv == MOJO_RESULT_OK || rv == MOJO_RESULT_NOT_FOUND);
weak_factory_.InvalidateWeakPtrs();
}
MojoResult SimpleWatcher::Arm(MojoResult* ready_result,
HandleSignalsState* ready_state) {
DCHECK_CALLED_ON_VALID_SEQUENCE(sequence_checker_);
uint32_t num_blocking_events = 1;
MojoTrapEvent blocking_event = {sizeof(blocking_event)};
MojoResult rv = MojoArmTrap(trap_handle_.get().value(), nullptr,
&num_blocking_events, &blocking_event);
if (rv == MOJO_RESULT_FAILED_PRECONDITION) {
DCHECK(context_);
DCHECK_EQ(1u, num_blocking_events);
DCHECK_EQ(context_->value(), blocking_event.trigger_context);
if (ready_result)
*ready_result = blocking_event.result;
if (ready_state) {
*ready_state =
HandleSignalsState(blocking_event.signals_state.satisfied_signals,
blocking_event.signals_state.satisfiable_signals);
}
}
return rv;
}
void SimpleWatcher::ArmOrNotify() {
DCHECK_CALLED_ON_VALID_SEQUENCE(sequence_checker_);
// Already cancelled, nothing to do.
if (!IsWatching())
return;
MojoResult ready_result;
HandleSignalsState ready_state;
MojoResult rv = Arm(&ready_result, &ready_state);
// NOTE: If the watched handle has been closed, the above call will result in
// MOJO_RESULT_NOT_FOUND. A MOJO_RESULT_CANCELLED notification will already
// have been posted to this object as a result, so there's nothing else to do.
if (rv == MOJO_RESULT_OK || rv == MOJO_RESULT_NOT_FOUND)
return;
DCHECK_EQ(MOJO_RESULT_FAILED_PRECONDITION, rv);
{
// Annotate the posted task with |handler_tag_| as the IPC interface.
base::TaskAnnotator::ScopedSetIpcHash scoped_set_ipc_hash(handler_tag_);
task_runner_->PostTask(FROM_HERE,
base::BindOnce(&SimpleWatcher::OnHandleReady,
weak_factory_.GetWeakPtr(), watch_id_,
ready_result, ready_state));
}
}
void SimpleWatcher::OnHandleReady(int watch_id,
MojoResult result,
const HandleSignalsState& state) {
DCHECK_CALLED_ON_VALID_SEQUENCE(sequence_checker_);
// This notification may be for a previously watched context, in which case
// we just ignore it.
if (watch_id != watch_id_)
return;
ReadyCallbackWithState callback = callback_;
if (result == MOJO_RESULT_CANCELLED) {
// Implicit cancellation due to someone closing the watched handle. We clear
// the SimpleWatcher's state before dispatching this.
context_ = nullptr;
handle_.set_value(kInvalidHandleValue);
callback_.Reset();
}
// NOTE: It's legal for |callback| to delete |this|.
if (!callback.is_null()) {
TRACE_HEAP_PROFILER_API_SCOPED_TASK_EXECUTION event(handler_tag_);
// Lot of janks caused are grouped to OnHandleReady tasks. This trace event
// helps identify the cause of janks. It is ok to pass |handler_tag_|
// here since it is a string literal.
TRACE_EVENT("toplevel", "SimpleWatcher::OnHandleReady",
[this](perfetto::EventContext ctx) {
ctx.event()
->set_chrome_mojo_event_info()
->set_watcher_notify_interface_tag(handler_tag_);
});
base::WeakPtr<SimpleWatcher> weak_self = weak_factory_.GetWeakPtr();
callback.Run(result, state);
if (!weak_self)
return;
// Prevent |MOJO_RESULT_FAILED_PRECONDITION| task spam by only notifying
// at most once in AUTOMATIC arming mode.
if (result == MOJO_RESULT_FAILED_PRECONDITION)
return;
if (arming_policy_ == ArmingPolicy::AUTOMATIC && IsWatching())
ArmOrNotify();
}
}
} // namespace mojo
|