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 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624
|
// Copyright 2022 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifdef UNSAFE_BUFFERS_BUILD
// TODO(crbug.com/351564777): Remove this and convert code to safer constructs.
#pragma allow_unsafe_buffers
#endif
#include "mojo/core/ipcz_driver/mojo_trap.h"
#include <cstdint>
#include <optional>
#include <tuple>
#include <utility>
#include "base/check_op.h"
#include "base/feature_list.h"
#include "base/memory/ref_counted.h"
#include "base/notreached.h"
#include "base/threading/platform_thread.h"
#include "base/threading/thread_restrictions.h"
#include "mojo/core/ipcz_api.h"
#include "mojo/core/ipcz_driver/data_pipe.h"
#include "third_party/ipcz/include/ipcz/ipcz.h"
namespace mojo::core::ipcz_driver {
namespace {
// A feature which enables a tentative fix for https://crbug.com/1468933, which
// is caused by overly aggressive trap event suppression. Gated by a feature so
// we can evaluate performance impact.
BASE_FEATURE(kFixDataPipeTrapBug,
"FixDataPipeTrapBug",
base::FEATURE_ENABLED_BY_DEFAULT);
// Translates Mojo signal conditions to equivalent IpczTrapConditions for any
// portal used as a message pipe endpoint.
void GetConditionsForMessagePipeSignals(MojoHandleSignals signals,
IpczTrapConditions* conditions) {
conditions->flags |= IPCZ_TRAP_DEAD;
if (signals & MOJO_HANDLE_SIGNAL_READABLE) {
// Mojo's readable signal is equivalent to the condition of having more than
// zero parcels available to retrieve from a portal.
conditions->flags |= IPCZ_TRAP_ABOVE_MIN_LOCAL_PARCELS;
conditions->min_local_parcels = 0;
}
if (signals & MOJO_HANDLE_SIGNAL_PEER_CLOSED) {
conditions->flags |= IPCZ_TRAP_PEER_CLOSED;
}
}
// Translates Mojo signal conditions to equivalent IpczTrapConditions for any
// portal used as a data pipe endpoint. Watching data pipes for readability or
// writability is equivalent to watching their control portal for inbound
// parcels, since each transaction from the peer elicits such a parcel.
void GetConditionsForDataPipeSignals(MojoHandleSignals signals,
IpczTrapConditions* conditions) {
conditions->flags |= IPCZ_TRAP_DEAD;
if (signals & (MOJO_HANDLE_SIGNAL_WRITABLE | MOJO_HANDLE_SIGNAL_READABLE |
MOJO_HANDLE_SIGNAL_NEW_DATA_READABLE)) {
conditions->flags |= IPCZ_TRAP_ABOVE_MIN_LOCAL_PARCELS;
conditions->min_local_parcels = 0;
}
if (signals & MOJO_HANDLE_SIGNAL_PEER_CLOSED) {
conditions->flags |= IPCZ_TRAP_PEER_CLOSED;
}
}
// Computes the appropriate MojoResult value to convey in a MojoTrapEvent that
// is being generated for a trap covering `trapped_signals` regarding a handle
// with the given signals `state`. If the given state and signals don't require
// an event to be fired at all, this returns false and `result` is set to
// MOJO_RESULT_OK (a spurious event may still be fired in this case.) Otherwise
// this returns true and `result` is updated with the computed result value.
bool GetEventResultForSignalsState(const MojoHandleSignalsState& state,
MojoHandleSignals trapped_signals,
MojoResult& result) {
result = MOJO_RESULT_OK;
if (state.satisfied_signals & trapped_signals) {
return true;
}
if (!(state.satisfiable_signals & trapped_signals)) {
result = MOJO_RESULT_FAILED_PRECONDITION;
return true;
}
return false;
}
// Flushes DataPipe updates and populates a Mojo trap event appropriate for a
// trap watching the data pipe for `trigger_signals`. Returns true if and only
// if the pipe is actually in a state that would warrant a trap event, given the
// input signals
bool PopulateEventForDataPipe(DataPipe& pipe,
MojoHandleSignals trigger_signals,
MojoTrapEvent& event) {
if (!pipe.GetSignals(event.signals_state)) {
return false;
}
return GetEventResultForSignalsState(event.signals_state, trigger_signals,
event.result);
}
// Given an ipcz trap event resulting from an installed trigger for a message
// pipe portal, this translates the event into an equivalent Mojo trap event
// for a Mojo trap watching the message pipe for `trigger_signals`.
void PopulateEventForMessagePipe(MojoHandleSignals trigger_signals,
const IpczPortalStatus& current_status,
MojoTrapEvent& event) {
const MojoHandleSignals kRead = MOJO_HANDLE_SIGNAL_READABLE;
const MojoHandleSignals kWrite = MOJO_HANDLE_SIGNAL_WRITABLE;
const MojoHandleSignals kPeerClosed = MOJO_HANDLE_SIGNAL_PEER_CLOSED;
MojoHandleSignals& satisfied = event.signals_state.satisfied_signals;
MojoHandleSignals& satisfiable = event.signals_state.satisfiable_signals;
satisfied = 0;
satisfiable = kPeerClosed | MOJO_HANDLE_SIGNAL_QUOTA_EXCEEDED;
if (!(current_status.flags & IPCZ_PORTAL_STATUS_DEAD)) {
satisfiable |= kRead;
}
if (current_status.flags & IPCZ_PORTAL_STATUS_PEER_CLOSED) {
satisfied |= kPeerClosed;
} else {
satisfiable |= MOJO_HANDLE_SIGNAL_PEER_REMOTE | kWrite;
satisfied |= kWrite;
}
if (current_status.num_local_parcels > 0) {
satisfied |= kRead;
}
DCHECK((satisfied & satisfiable) == satisfied);
GetEventResultForSignalsState(event.signals_state, trigger_signals,
event.result);
}
// Indicates whether a Mojo trap can be armed to watch for `signals` on `pipe`.
// This returns true (and `event` is left in an unspecified state) if and only
// if one or more of the given signals are still satisfiable by the pipe but
// none are currently satisfied. Otherwise this returns false and `event` is
// populated with a signal state and result value that would be appropriate for
// a MojoTrapEvent to return as a blocking event from MojoArmTrap().
bool CanArmDataPipeTrigger(DataPipe& pipe,
MojoHandleSignals signals,
MojoTrapEvent& event) {
return !PopulateEventForDataPipe(pipe, signals, event);
}
} // namespace
// A Trigger is used as context for every trigger added to a Mojo trap. While a
// trap is armed, each of its Triggers has installed a unique ipcz trap to watch
// for its conditions.
struct MojoTrap::Trigger : public base::RefCountedThreadSafe<Trigger> {
// Constructs a new trigger for the given MojoTrap to observe `handle` for
// any of `signals` to be satisfied. `context` is the opaque context value
// given to the corresponding MojoAddTrigger() call. If `data_pipe` is
// non-null then it points to the DataPipe instance which owns the portal
// identified by `handle`; otherwise `handle` refers to a portal which is
// being used as a message pipe endpoint.
Trigger(scoped_refptr<MojoTrap> mojo_trap,
MojoHandle handle,
DataPipe* data_pipe,
MojoHandleSignals signals,
uintptr_t trigger_context)
: mojo_trap(std::move(mojo_trap)),
handle(handle),
data_pipe(base::WrapRefCounted(data_pipe)),
signals(signals),
trigger_context(trigger_context) {}
uintptr_t ipcz_context() const { return reinterpret_cast<uintptr_t>(this); }
static Trigger& FromEvent(const IpczTrapEvent& event) {
return *reinterpret_cast<Trigger*>(event.context);
}
const scoped_refptr<MojoTrap> mojo_trap;
const MojoHandle handle;
const scoped_refptr<DataPipe> data_pipe;
const MojoHandleSignals signals;
const uintptr_t trigger_context;
IpczTrapConditions conditions = {.size = sizeof(conditions), .flags = 0};
// Access to all fields below is effectively guarded by the owning MojoTrap's
// `lock_`.
bool armed = false;
bool removed = false;
private:
friend class base::RefCountedThreadSafe<Trigger>;
~Trigger() = default;
};
MojoTrap::MojoTrap(MojoTrapEventHandler handler) : handler_(handler) {}
MojoTrap::~MojoTrap() = default;
MojoResult MojoTrap::AddTrigger(MojoHandle handle,
MojoHandleSignals signals,
MojoTriggerCondition condition,
uintptr_t trigger_context) {
if (handle == MOJO_HANDLE_INVALID) {
return MOJO_RESULT_INVALID_ARGUMENT;
}
// If `handle` is a boxed DataPipe rather than a portal, we need to install a
// trap on the underlying portal.
auto* data_pipe = DataPipe::FromBox(handle);
scoped_refptr<DataPipe::PortalWrapper> control_portal;
if (data_pipe) {
control_portal = data_pipe->GetPortal();
if (!control_portal) {
return MOJO_RESULT_INVALID_ARGUMENT;
}
handle = control_portal->handle();
} else if (ObjectBase::FromBox(handle)) {
// Any other type of driver object cannot have traps installed.
return MOJO_RESULT_INVALID_ARGUMENT;
}
auto trigger = base::MakeRefCounted<Trigger>(this, handle, data_pipe, signals,
trigger_context);
if (condition == MOJO_TRIGGER_CONDITION_SIGNALS_UNSATISFIED) {
// There's only one user of MOJO_TRIGGER_CONDITION_SIGNALS_UNSATISFIED. It's
// used for peer remoteness tracking in Mojo bindings lazy serialization.
// That is effectively a dead feature, so we don't need to support watching
// for unsatisfied signals.
trigger->conditions.flags = IPCZ_NO_FLAGS;
} else if (data_pipe) {
GetConditionsForDataPipeSignals(signals, &trigger->conditions);
} else {
GetConditionsForMessagePipeSignals(signals, &trigger->conditions);
}
base::AutoLock lock(lock_);
auto [it, ok] = triggers_.try_emplace(trigger_context, trigger);
if (!ok) {
return MOJO_RESULT_ALREADY_EXISTS;
}
next_trigger_ = triggers_.begin();
// Install an ipcz trap to effectively monitor the lifetime of the watched
// object referenced by `handle`. Installation of the trap should always
// succeed, and its resulting trap event will always mark the end of this
// trigger's lifetime. This trap effectively owns a ref to the Trigger, as
// added here.
trigger->AddRef();
IpczTrapConditions removal_conditions = {
.size = sizeof(removal_conditions),
.flags = IPCZ_TRAP_REMOVED,
};
IpczResult result = GetIpczAPI().Trap(
handle, &removal_conditions, &TrapRemovalEventHandler,
trigger->ipcz_context(), IPCZ_NO_FLAGS, nullptr, nullptr, nullptr);
CHECK_EQ(result, IPCZ_RESULT_OK);
if (!armed_) {
return MOJO_RESULT_OK;
}
// The Mojo trap is already armed, so attempt to install an ipcz trap for
// the new trigger immediately.
MojoTrapEvent event;
result = ArmTrigger(*trigger, event);
if (result == IPCZ_RESULT_OK) {
return MOJO_RESULT_OK;
}
// The new trigger already needs to fire an event. OK.
armed_ = false;
DispatchOrQueueEvent(*trigger, event);
return MOJO_RESULT_OK;
}
MojoResult MojoTrap::RemoveTrigger(uintptr_t trigger_context) {
base::AutoLock lock(lock_);
auto it = triggers_.find(trigger_context);
if (it == triggers_.end()) {
return MOJO_RESULT_NOT_FOUND;
}
scoped_refptr<Trigger> trigger = std::move(it->second);
trigger->armed = false;
triggers_.erase(it);
next_trigger_ = triggers_.begin();
DispatchOrQueueTriggerRemoval(*trigger);
return MOJO_RESULT_OK;
}
MojoResult MojoTrap::Arm(MojoTrapEvent* blocking_events,
uint32_t* num_blocking_events) {
const uint32_t event_capacity =
num_blocking_events ? *num_blocking_events : 0;
if (event_capacity > 0 && !blocking_events) {
return MOJO_RESULT_INVALID_ARGUMENT;
}
if (event_capacity > 0 &&
blocking_events[0].struct_size < sizeof(blocking_events[0])) {
return MOJO_RESULT_INVALID_ARGUMENT;
}
base::AutoLock lock(lock_);
if (armed_) {
return MOJO_RESULT_OK;
}
if (triggers_.empty()) {
return MOJO_RESULT_NOT_FOUND;
}
uint32_t num_events_returned = 0;
auto increment_wrapped = [this](TriggerMap::iterator it) {
lock_.AssertAcquired();
if (++it != triggers_.end()) {
return it;
}
return triggers_.begin();
};
TriggerMap::iterator next_trigger = next_trigger_;
CHECK(next_trigger != triggers_.end());
// We iterate over all triggers, starting just beyond wherever we started last
// time we were armed. This guards against any single trigger being starved.
const TriggerMap::iterator end_trigger = next_trigger;
do {
auto& [trigger_context, trigger] = *next_trigger;
next_trigger = increment_wrapped(next_trigger);
MojoTrapEvent event;
const IpczResult result = ArmTrigger(*trigger, event);
if (result == IPCZ_RESULT_OK) {
// Trap successfully installed, nothing else to do for this trigger.
continue;
}
if (result != IPCZ_RESULT_FAILED_PRECONDITION) {
NOTREACHED();
}
// The ipcz trap failed to install, so this trigger's conditions are already
// met. Accumulate would-be event details if there's output space.
if (event_capacity == 0) {
return MOJO_RESULT_FAILED_PRECONDITION;
}
blocking_events[num_events_returned++] = event;
} while (next_trigger != end_trigger &&
(num_events_returned == 0 || num_events_returned < event_capacity));
if (next_trigger != end_trigger) {
next_trigger_ = next_trigger;
} else {
next_trigger_ = increment_wrapped(next_trigger);
}
if (num_events_returned > 0) {
*num_blocking_events = num_events_returned;
return MOJO_RESULT_FAILED_PRECONDITION;
}
// The whole Mojo trap is collectively armed if and only if all of the
// triggers managed to install an ipcz trap.
armed_ = true;
return MOJO_RESULT_OK;
}
void MojoTrap::Close() {
// Effectively disable all triggers. A disabled trigger may have already
// installed an ipcz trap which hasn't yet fired an event. This ensures that
// if any such event does eventually fire, it will be ignored.
base::AutoLock lock(lock_);
TriggerMap triggers;
std::swap(triggers, triggers_);
next_trigger_ = triggers_.begin();
for (auto& [trigger_context, trigger] : triggers) {
trigger->armed = false;
DCHECK(!trigger->removed);
DispatchOrQueueTriggerRemoval(*trigger);
}
}
// static
void MojoTrap::TrapEventHandler(const IpczTrapEvent* event) {
Trigger::FromEvent(*event).mojo_trap->HandleEvent(*event);
}
// static
void MojoTrap::TrapRemovalEventHandler(const IpczTrapEvent* event) {
Trigger& trigger = Trigger::FromEvent(*event);
trigger.mojo_trap->HandleTrapRemoved(*event);
// Balanced by AddRef when installing the trigger's removal ipcz trap.
trigger.Release();
}
void MojoTrap::HandleEvent(const IpczTrapEvent& event) {
// Transfer the trap's implied Trigger reference to the local stack.
scoped_refptr<Trigger> trigger = WrapRefCounted(&Trigger::FromEvent(event));
trigger->Release();
base::AutoLock lock(lock_);
const bool trigger_active = armed_ && trigger->armed && !trigger->removed;
const bool is_removal = (event.condition_flags & IPCZ_TRAP_REMOVED) != 0;
trigger->armed = false;
if (!trigger_active || is_removal) {
// Removal events are handled separately by ipcz traps established at
// trigger creation, allowing handle closure to trigger an event even when
// the Mojo trap isn't armed.
return;
}
armed_ = false;
MojoTrapEvent mojo_event = {
.struct_size = sizeof(mojo_event),
.flags = (event.condition_flags & IPCZ_TRAP_WITHIN_API_CALL)
? MOJO_TRAP_EVENT_FLAG_WITHIN_API_CALL
: 0,
.trigger_context = trigger->trigger_context,
};
if (trigger->data_pipe) {
if (!PopulateEventForDataPipe(*trigger->data_pipe, trigger->signals,
mojo_event) &&
!base::FeatureList::IsEnabled(kFixDataPipeTrapBug)) {
// Default behavior was at some point to return early here any time
// PopulateEventForDataPipe returned false, effectively suppressing what
// was deemed to be a spurious event. This rested on the incorrect
// assumption that we only reach this point for a DataPipe that's been
// recently closed; but in fact another thread may also race to flush data
// out of the pipe and make the event appear to be spurious by the time we
// get here.
//
// Suppressing such events can have bad (and subtle) consequences: for a
// brief window of time the trap is still armed, so another thread trying
// trying to arm it will fail to do so while appearing to succeed. And
// since this event doesn't fire either, the application may therefore
// never see another reason to attempt reading the pipe; effectively
// stalling all progress.
//
// kFixDataPipeTrapBug was added to eliminate this incorrect suppression
// behavior (when it's enabled we NEVER return early here). It's behind a
// feature flag so we can evaluate the performance impact of allowing any
// actually-redundant events to fire.
return;
}
} else {
PopulateEventForMessagePipe(trigger->signals, *event.status, mojo_event);
}
DispatchOrQueueEvent(*trigger, mojo_event);
}
void MojoTrap::HandleTrapRemoved(const IpczTrapEvent& event) {
base::AutoLock lock(lock_);
Trigger& trigger = Trigger::FromEvent(event);
if (trigger.removed) {
// The Mojo trap may have already been closed, in which case this trigger
// was already removed and its handler was already notified.
return;
}
triggers_.erase(trigger.trigger_context);
DispatchOrQueueTriggerRemoval(trigger);
next_trigger_ = triggers_.begin();
}
IpczResult MojoTrap::ArmTrigger(Trigger& trigger, MojoTrapEvent& event) {
lock_.AssertAcquired();
if (trigger.armed || trigger.removed) {
return IPCZ_RESULT_OK;
}
event.struct_size = sizeof(event);
event.flags = MOJO_TRAP_EVENT_FLAG_WITHIN_API_CALL;
event.trigger_context = trigger.trigger_context;
if (trigger.signals == 0) {
// Triggers which watch for no signals can never be armed by Mojo.
event.signals_state = {0, 0};
event.result = IPCZ_RESULT_FAILED_PRECONDITION;
return IPCZ_RESULT_FAILED_PRECONDITION;
}
DataPipe* const data_pipe = trigger.data_pipe.get();
if (data_pipe && !CanArmDataPipeTrigger(*data_pipe, trigger.signals, event)) {
return MOJO_RESULT_FAILED_PRECONDITION;
}
if (!data_pipe && (trigger.signals & MOJO_HANDLE_SIGNAL_WRITABLE)) {
// Message pipes are always writable, so a trap watching for writability can
// never be armed.
IpczPortalStatus status = {.size = sizeof(status)};
const IpczResult result = GetIpczAPI().QueryPortalStatus(
trigger.handle, IPCZ_NO_FLAGS, nullptr, &status);
if (result == IPCZ_RESULT_OK) {
PopulateEventForMessagePipe(trigger.signals, status, event);
}
return IPCZ_RESULT_FAILED_PRECONDITION;
}
// Bump the ref count on the Trigger. This ref is effectively owned by the
// trap if it's installed successfully.
trigger.AddRef();
IpczTrapConditionFlags satisfied_flags;
IpczPortalStatus status = {.size = sizeof(status)};
IpczResult result =
GetIpczAPI().Trap(trigger.handle, &trigger.conditions, &TrapEventHandler,
trigger.ipcz_context(), IPCZ_NO_FLAGS, nullptr,
&satisfied_flags, &status);
if (result == IPCZ_RESULT_OK) {
trigger.armed = true;
return MOJO_RESULT_OK;
}
// Balances the AddRef above since no trap was installed.
trigger.Release();
if (data_pipe) {
PopulateEventForDataPipe(*data_pipe, trigger.signals, event);
} else {
PopulateEventForMessagePipe(trigger.signals, status, event);
}
return result;
}
void MojoTrap::DispatchOrQueueTriggerRemoval(Trigger& trigger) {
lock_.AssertAcquired();
if (trigger.removed) {
return;
}
trigger.removed = true;
DispatchOrQueueEvent(
trigger,
MojoTrapEvent{
.struct_size = sizeof(MojoTrapEvent),
.flags = MOJO_TRAP_EVENT_FLAG_WITHIN_API_CALL,
.trigger_context = trigger.trigger_context,
.result = MOJO_RESULT_CANCELLED,
.signals_state = {.satisfied_signals = 0, .satisfiable_signals = 0},
});
}
void MojoTrap::DispatchOrQueueEvent(Trigger& trigger,
const MojoTrapEvent& event) {
lock_.AssertAcquired();
if (dispatching_thread_ == base::PlatformThread::CurrentRef()) {
// This thread is already dispatching an event, so queue this one. It will
// be dispatched before the thread fully unwinds from its current dispatch.
pending_mojo_events_.emplace_back(base::WrapRefCounted(&trigger), event);
return;
}
// Block as long as any other thread is dispatching.
while (dispatching_thread_.has_value()) {
base::ScopedAllowBaseSyncPrimitivesOutsideBlockingScope allow_wait;
waiters_++;
dispatching_condition_.Wait();
waiters_--;
}
dispatching_thread_ = base::PlatformThread::CurrentRef();
// If `trigger.removed` is true, then either this is the cancellation event
// for the trigger (in which case it's OK to dispatch), or it was cancelled on
// some other thread while we were blocked above. In the latter case, this
// event is no longer valid and cannot be dispatched.
// See https://crbug.com/1508753.
if (!trigger.removed || event.result == MOJO_RESULT_CANCELLED) {
DispatchEvent(event);
}
// NOTE: This vector is only shrunk by the clear() below, but it may
// accumulate more events during each iteration. Hence we iterate by index.
for (size_t i = 0; i < pending_mojo_events_.size(); ++i) {
if (!pending_mojo_events_[i].trigger->removed ||
pending_mojo_events_[i].event.result == MOJO_RESULT_CANCELLED) {
DispatchEvent(pending_mojo_events_[i].event);
}
}
pending_mojo_events_.clear();
// We're done. Give other threads a chance.
dispatching_thread_.reset();
if (waiters_ > 0) {
dispatching_condition_.Signal();
}
}
void MojoTrap::DispatchEvent(const MojoTrapEvent& event) {
lock_.AssertAcquired();
DCHECK(dispatching_thread_ == base::PlatformThread::CurrentRef());
// Note that other threads may enter DispatchOrQueueEvent while this is
// unlocked; but they will be blocked from dispatching since we've set
// `dispatching_thread_` to our thread.
base::AutoUnlock unlock(lock_);
handler_(&event);
}
MojoTrap::PendingEvent::PendingEvent() = default;
MojoTrap::PendingEvent::PendingEvent(scoped_refptr<Trigger> trigger,
const MojoTrapEvent& event)
: trigger(std::move(trigger)), event(event) {}
MojoTrap::PendingEvent::PendingEvent(PendingEvent&&) = default;
MojoTrap::PendingEvent::~PendingEvent() = default;
} // namespace mojo::core::ipcz_driver
|