// 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. #ifndef MOJO_EDK_SYSTEM_NODE_CHANNEL_H_ #define MOJO_EDK_SYSTEM_NODE_CHANNEL_H_ #include #include #include "base/callback.h" #include "base/containers/queue.h" #include "base/macros.h" #include "base/memory/ref_counted.h" #include "base/process/process_handle.h" #include "base/synchronization/lock.h" #include "base/task_runner.h" #include "build/build_config.h" #include "mojo/edk/embedder/connection_params.h" #include "mojo/edk/embedder/process_error_callback.h" #include "mojo/edk/embedder/scoped_platform_handle.h" #include "mojo/edk/system/channel.h" #include "mojo/edk/system/ports/name.h" #if defined(OS_MACOSX) && !defined(OS_IOS) #include "mojo/edk/system/mach_port_relay.h" #endif namespace mojo { namespace edk { // Wraps a Channel to send and receive Node control messages. class NodeChannel : public base::RefCountedThreadSafe, public Channel::Delegate #if defined(OS_MACOSX) && !defined(OS_IOS) , public MachPortRelay::Observer #endif { public: class Delegate { public: virtual ~Delegate() {} virtual void OnAcceptInvitee(const ports::NodeName& from_node, const ports::NodeName& inviter_name, const ports::NodeName& token) = 0; virtual void OnAcceptInvitation(const ports::NodeName& from_node, const ports::NodeName& token, const ports::NodeName& invitee_name) = 0; virtual void OnAddBrokerClient(const ports::NodeName& from_node, const ports::NodeName& client_name, base::ProcessHandle process_handle) = 0; virtual void OnBrokerClientAdded(const ports::NodeName& from_node, const ports::NodeName& client_name, ScopedPlatformHandle broker_channel) = 0; virtual void OnAcceptBrokerClient(const ports::NodeName& from_node, const ports::NodeName& broker_name, ScopedPlatformHandle broker_channel) = 0; virtual void OnEventMessage(const ports::NodeName& from_node, Channel::MessagePtr message) = 0; virtual void OnRequestPortMerge(const ports::NodeName& from_node, const ports::PortName& connector_port_name, const std::string& token) = 0; virtual void OnRequestIntroduction(const ports::NodeName& from_node, const ports::NodeName& name) = 0; virtual void OnIntroduce(const ports::NodeName& from_node, const ports::NodeName& name, ScopedPlatformHandle channel_handle) = 0; virtual void OnBroadcast(const ports::NodeName& from_node, Channel::MessagePtr message) = 0; #if defined(OS_WIN) || (defined(OS_MACOSX) && !defined(OS_IOS)) virtual void OnRelayEventMessage(const ports::NodeName& from_node, base::ProcessHandle from_process, const ports::NodeName& destination, Channel::MessagePtr message) = 0; virtual void OnEventMessageFromRelay(const ports::NodeName& from_node, const ports::NodeName& source_node, Channel::MessagePtr message) = 0; #endif virtual void OnAcceptPeer(const ports::NodeName& from_node, const ports::NodeName& token, const ports::NodeName& peer_name, const ports::PortName& port_name) = 0; virtual void OnChannelError(const ports::NodeName& node, NodeChannel* channel) = 0; #if defined(OS_MACOSX) && !defined(OS_IOS) virtual MachPortRelay* GetMachPortRelay() = 0; #endif }; static scoped_refptr Create( Delegate* delegate, ConnectionParams connection_params, scoped_refptr io_task_runner, const ProcessErrorCallback& process_error_callback); static Channel::MessagePtr CreateEventMessage(size_t capacity, size_t payload_size, void** payload, size_t num_handles); static void GetEventMessageData(Channel::Message* message, void** data, size_t* num_data_bytes); // Start receiving messages. void Start(); // Permanently stop the channel from sending or receiving messages. void ShutDown(); // Leaks the pipe handle instead of closing it on shutdown. void LeakHandleOnShutdown(); // Invokes the bad message callback for this channel, if any. void NotifyBadMessage(const std::string& error); // Note: On Windows, we take ownership of the remote process handle. void SetRemoteProcessHandle(base::ProcessHandle process_handle); bool HasRemoteProcessHandle(); // Note: The returned |ProcessHandle| is owned by the caller and should be // freed if necessary. base::ProcessHandle CopyRemoteProcessHandle(); // Used for context in Delegate calls (via |from_node| arguments.) void SetRemoteNodeName(const ports::NodeName& name); void AcceptInvitee(const ports::NodeName& inviter_name, const ports::NodeName& token); void AcceptInvitation(const ports::NodeName& token, const ports::NodeName& invitee_name); void AcceptPeer(const ports::NodeName& sender_name, const ports::NodeName& token, const ports::PortName& port_name); void AddBrokerClient(const ports::NodeName& client_name, base::ProcessHandle process_handle); void BrokerClientAdded(const ports::NodeName& client_name, ScopedPlatformHandle broker_channel); void AcceptBrokerClient(const ports::NodeName& broker_name, ScopedPlatformHandle broker_channel); void RequestPortMerge(const ports::PortName& connector_port_name, const std::string& token); void RequestIntroduction(const ports::NodeName& name); void Introduce(const ports::NodeName& name, ScopedPlatformHandle channel_handle); void SendChannelMessage(Channel::MessagePtr message); void Broadcast(Channel::MessagePtr message); #if defined(OS_WIN) || (defined(OS_MACOSX) && !defined(OS_IOS)) // Relay the message to the specified node via this channel. This is used to // pass windows handles between two processes that do not have permission to // duplicate handles into the other's address space. The relay process is // assumed to have that permission. void RelayEventMessage(const ports::NodeName& destination, Channel::MessagePtr message); // Sends a message to its destination from a relay. This is interpreted by the // receiver similarly to EventMessage, but the original source node is // provided as additional message metadata from the (trusted) relay node. void EventMessageFromRelay(const ports::NodeName& source, Channel::MessagePtr message); #endif private: friend class base::RefCountedThreadSafe; using PendingMessageQueue = base::queue; using PendingRelayMessageQueue = base::queue>; NodeChannel(Delegate* delegate, ConnectionParams connection_params, scoped_refptr io_task_runner, const ProcessErrorCallback& process_error_callback); ~NodeChannel() override; // Channel::Delegate: void OnChannelMessage(const void* payload, size_t payload_size, std::vector handles) override; void OnChannelError(Channel::Error error) override; #if defined(OS_MACOSX) && !defined(OS_IOS) // MachPortRelay::Observer: void OnProcessReady(base::ProcessHandle process) override; void ProcessPendingMessagesWithMachPorts(); #endif void WriteChannelMessage(Channel::MessagePtr message); Delegate* const delegate_; const scoped_refptr io_task_runner_; const ProcessErrorCallback process_error_callback_; base::Lock channel_lock_; scoped_refptr channel_; // Must only be accessed from |io_task_runner_|'s thread. ports::NodeName remote_node_name_; base::Lock remote_process_handle_lock_; base::ProcessHandle remote_process_handle_ = base::kNullProcessHandle; #if defined(OS_WIN) ScopedPlatformHandle scoped_remote_process_handle_; #endif #if defined(OS_MACOSX) && !defined(OS_IOS) base::Lock pending_mach_messages_lock_; PendingMessageQueue pending_write_messages_; PendingRelayMessageQueue pending_relay_messages_; #endif DISALLOW_COPY_AND_ASSIGN(NodeChannel); }; } // namespace edk } // namespace mojo #endif // MOJO_EDK_SYSTEM_NODE_CHANNEL_H_