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
|
// Copyright 2016 The Chromium 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 "mojo/edk/system/remote_message_pipe_bootstrap.h"
#include "base/bind.h"
#include "base/bind_helpers.h"
#include "base/macros.h"
#include "base/threading/thread_task_runner_handle.h"
#include "mojo/edk/embedder/embedder.h"
#include "mojo/edk/system/node_controller.h"
#include "mojo/edk/system/ports/name.h"
namespace mojo {
namespace edk {
namespace {
struct BootstrapData {
// The node name of the sender.
ports::NodeName node_name;
// The port name of the sender's local bootstrap port.
ports::PortName port_name;
};
} // namespace
// static
void RemoteMessagePipeBootstrap::Create(
NodeController* node_controller,
ScopedPlatformHandle platform_handle,
const ports::PortRef& port) {
CHECK(node_controller);
CHECK(node_controller->io_task_runner());
if (node_controller->io_task_runner()->RunsTasksOnCurrentThread()) {
// Owns itself.
new RemoteMessagePipeBootstrap(
node_controller, std::move(platform_handle), port);
} else {
node_controller->io_task_runner()->PostTask(
FROM_HERE,
base::Bind(&RemoteMessagePipeBootstrap::Create,
base::Unretained(node_controller),
base::Passed(&platform_handle), port));
}
}
RemoteMessagePipeBootstrap::~RemoteMessagePipeBootstrap() {
DCHECK(io_task_runner_->RunsTasksOnCurrentThread());
base::MessageLoop::current()->RemoveDestructionObserver(this);
if (channel_)
channel_->ShutDown();
}
RemoteMessagePipeBootstrap::RemoteMessagePipeBootstrap(
NodeController* node_controller,
ScopedPlatformHandle platform_handle,
const ports::PortRef& port)
: node_controller_(node_controller),
local_port_(port),
io_task_runner_(base::ThreadTaskRunnerHandle::Get()),
channel_(Channel::Create(this, std::move(platform_handle),
io_task_runner_)) {
base::MessageLoop::current()->AddDestructionObserver(this);
channel_->Start();
Channel::MessagePtr message(new Channel::Message(sizeof(BootstrapData), 0));
BootstrapData* data = static_cast<BootstrapData*>(message->mutable_payload());
data->node_name = node_controller_->name();
data->port_name = local_port_.name();
channel_->Write(std::move(message));
}
void RemoteMessagePipeBootstrap::ShutDown() {
DCHECK(io_task_runner_->RunsTasksOnCurrentThread());
if (shutting_down_)
return;
shutting_down_ = true;
// Shut down asynchronously so ShutDown() can be called from within
// OnChannelMessage and OnChannelError.
io_task_runner_->PostTask(
FROM_HERE,
base::Bind(&RemoteMessagePipeBootstrap::ShutDownNow,
base::Unretained(this)));
}
void RemoteMessagePipeBootstrap::WillDestroyCurrentMessageLoop() {
DCHECK(io_task_runner_->RunsTasksOnCurrentThread());
ShutDownNow();
}
void RemoteMessagePipeBootstrap::OnChannelMessage(
const void* payload,
size_t payload_size,
ScopedPlatformHandleVectorPtr handles) {
DCHECK(io_task_runner_->RunsTasksOnCurrentThread());
DCHECK(!handles || !handles->size());
const BootstrapData* data = static_cast<const BootstrapData*>(payload);
if (peer_info_received_) {
// This should only be a confirmation from the other end, which tells us
// it's now safe to shut down.
if (payload_size != 0)
DLOG(ERROR) << "Unexpected message received in message pipe bootstrap.";
ShutDown();
return;
}
if (payload_size != sizeof(BootstrapData)) {
DLOG(ERROR) << "Invalid bootstrap payload.";
ShutDown();
return;
}
peer_info_received_ = true;
// We need to choose one side to initiate the port merge. It doesn't matter
// who does it as long as they don't both try. Simple solution: pick the one
// with the "smaller" port name.
if (local_port_.name() < data->port_name) {
node_controller_->node()->MergePorts(local_port_, data->node_name,
data->port_name);
}
// Send another ping to the other end to trigger shutdown. This may race with
// the other end sending its own ping, but it doesn't matter. Whoever wins
// will cause the other end to tear down, and the ensuing channel error will
// in turn clean up the remaining end.
Channel::MessagePtr message(new Channel::Message(0, 0));
channel_->Write(std::move(message));
}
void RemoteMessagePipeBootstrap::OnChannelError() {
DCHECK(io_task_runner_->RunsTasksOnCurrentThread());
ShutDown();
}
void RemoteMessagePipeBootstrap::ShutDownNow() {
delete this;
}
} // namespace edk
} // namespace mojo
|