Fix dcheck in message port code on Mandoline shutdown.
[chromium-blink-merge.git] / ipc / ipc_channel_proxy.h
blob6ff5cc2a9e09bec2cd962ecff746dafaaf3c56a9
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 #ifndef IPC_IPC_CHANNEL_PROXY_H_
6 #define IPC_IPC_CHANNEL_PROXY_H_
8 #include <vector>
10 #include "base/memory/ref_counted.h"
11 #include "base/memory/scoped_ptr.h"
12 #include "base/synchronization/lock.h"
13 #include "base/threading/non_thread_safe.h"
14 #include "ipc/ipc_channel.h"
15 #include "ipc/ipc_channel_handle.h"
16 #include "ipc/ipc_listener.h"
17 #include "ipc/ipc_sender.h"
19 namespace base {
20 class SingleThreadTaskRunner;
23 namespace IPC {
25 class ChannelFactory;
26 class MessageFilter;
27 class MessageFilterRouter;
28 class SendCallbackHelper;
30 //-----------------------------------------------------------------------------
31 // IPC::ChannelProxy
33 // This class is a helper class that is useful when you wish to run an IPC
34 // channel on a background thread. It provides you with the option of either
35 // handling IPC messages on that background thread or having them dispatched to
36 // your main thread (the thread on which the IPC::ChannelProxy is created).
38 // The API for an IPC::ChannelProxy is very similar to that of an IPC::Channel.
39 // When you send a message to an IPC::ChannelProxy, the message is routed to
40 // the background thread, where it is then passed to the IPC::Channel's Send
41 // method. This means that you can send a message from your thread and your
42 // message will be sent over the IPC channel when possible instead of being
43 // delayed until your thread returns to its message loop. (Often IPC messages
44 // will queue up on the IPC::Channel when there is a lot of traffic, and the
45 // channel will not get cycles to flush its message queue until the thread, on
46 // which it is running, returns to its message loop.)
48 // An IPC::ChannelProxy can have a MessageFilter associated with it, which will
49 // be notified of incoming messages on the IPC::Channel's thread. This gives
50 // the consumer of IPC::ChannelProxy the ability to respond to incoming
51 // messages on this background thread instead of on their own thread, which may
52 // be bogged down with other processing. The result can be greatly improved
53 // latency for messages that can be handled on a background thread.
55 // The consumer of IPC::ChannelProxy is responsible for allocating the Thread
56 // instance where the IPC::Channel will be created and operated.
58 // Thread-safe send
60 // If a particular |Channel| implementation has a thread-safe |Send()| operation
61 // then ChannelProxy skips the inter-thread hop and calls |Send()| directly. In
62 // this case the |channel_| variable is touched by multiple threads so
63 // |channel_lifetime_lock_| is used to protect it. The locking overhead is only
64 // paid if the underlying channel supports thread-safe |Send|.
66 class IPC_EXPORT ChannelProxy : public Sender, public base::NonThreadSafe {
67 public:
68 #if defined(ENABLE_IPC_FUZZER)
69 // Interface for a filter to be imposed on outgoing messages which can
70 // re-write the message. Used for testing.
71 class OutgoingMessageFilter {
72 public:
73 virtual Message* Rewrite(Message* message) = 0;
75 #endif
77 // Initializes a channel proxy. The channel_handle and mode parameters are
78 // passed directly to the underlying IPC::Channel. The listener is called on
79 // the thread that creates the ChannelProxy. The filter's OnMessageReceived
80 // method is called on the thread where the IPC::Channel is running. The
81 // filter may be null if the consumer is not interested in handling messages
82 // on the background thread. Any message not handled by the filter will be
83 // dispatched to the listener. The given task runner correspond to a thread
84 // on which IPC::Channel is created and used (e.g. IO thread).
85 // TODO(erikchen): Remove default parameter for |broker|. It exists only to
86 // make the upcoming refactor decomposable into smaller CLs.
87 // http://crbug.com/493414.
88 static scoped_ptr<ChannelProxy> Create(
89 const IPC::ChannelHandle& channel_handle,
90 Channel::Mode mode,
91 Listener* listener,
92 const scoped_refptr<base::SingleThreadTaskRunner>& ipc_task_runner,
93 AttachmentBroker* broker = nullptr);
95 static scoped_ptr<ChannelProxy> Create(
96 scoped_ptr<ChannelFactory> factory,
97 Listener* listener,
98 const scoped_refptr<base::SingleThreadTaskRunner>& ipc_task_runner);
100 ~ChannelProxy() override;
102 // Initializes the channel proxy. Only call this once to initialize a channel
103 // proxy that was not initialized in its constructor. If create_pipe_now is
104 // true, the pipe is created synchronously. Otherwise it's created on the IO
105 // thread.
106 // TODO(erikchen): Remove default parameter for |broker|. It exists only to
107 // make the upcoming refactor decomposable into smaller CLs.
108 // http://crbug.com/493414.
109 void Init(const IPC::ChannelHandle& channel_handle,
110 Channel::Mode mode,
111 bool create_pipe_now,
112 AttachmentBroker* broker = nullptr);
113 void Init(scoped_ptr<ChannelFactory> factory, bool create_pipe_now);
115 // Close the IPC::Channel. This operation completes asynchronously, once the
116 // background thread processes the command to close the channel. It is ok to
117 // call this method multiple times. Redundant calls are ignored.
119 // WARNING: MessageFilter objects held by the ChannelProxy is also
120 // released asynchronously, and it may in fact have its final reference
121 // released on the background thread. The caller should be careful to deal
122 // with / allow for this possibility.
123 void Close();
125 // Send a message asynchronously. The message is routed to the background
126 // thread where it is passed to the IPC::Channel's Send method.
127 bool Send(Message* message) override;
129 // Used to intercept messages as they are received on the background thread.
131 // Ordinarily, messages sent to the ChannelProxy are routed to the matching
132 // listener on the worker thread. This API allows code to intercept messages
133 // before they are sent to the worker thread.
134 // If you call this before the target process is launched, then you're
135 // guaranteed to not miss any messages. But if you call this anytime after,
136 // then some messages might be missed since the filter is added internally on
137 // the IO thread.
138 void AddFilter(MessageFilter* filter);
139 void RemoveFilter(MessageFilter* filter);
141 #if defined(ENABLE_IPC_FUZZER)
142 void set_outgoing_message_filter(OutgoingMessageFilter* filter) {
143 outgoing_message_filter_ = filter;
145 #endif
147 // Called to clear the pointer to the IPC task runner when it's going away.
148 void ClearIPCTaskRunner();
150 // Get the process ID for the connected peer.
151 // Returns base::kNullProcessId if the peer is not connected yet.
152 base::ProcessId GetPeerPID() const { return context_->peer_pid_; }
154 #if defined(OS_POSIX) && !defined(OS_NACL_SFI)
155 // Calls through to the underlying channel's methods.
156 int GetClientFileDescriptor();
157 base::ScopedFD TakeClientFileDescriptor();
158 #endif
160 void SetAttachmentBrokerEndpoint(bool is_endpoint);
162 protected:
163 class Context;
164 // A subclass uses this constructor if it needs to add more information
165 // to the internal state.
166 ChannelProxy(Context* context);
168 ChannelProxy(
169 Listener* listener,
170 const scoped_refptr<base::SingleThreadTaskRunner>& ipc_task_runner);
172 // Used internally to hold state that is referenced on the IPC thread.
173 class Context : public base::RefCountedThreadSafe<Context>,
174 public Listener {
175 public:
176 Context(Listener* listener,
177 const scoped_refptr<base::SingleThreadTaskRunner>& ipc_thread);
178 void ClearIPCTaskRunner();
179 base::SingleThreadTaskRunner* ipc_task_runner() const {
180 return ipc_task_runner_.get();
182 const std::string& channel_id() const { return channel_id_; }
184 // Dispatches a message on the listener thread.
185 void OnDispatchMessage(const Message& message);
187 // Sends |message| from appropriate thread.
188 void Send(Message* message);
190 protected:
191 friend class base::RefCountedThreadSafe<Context>;
192 ~Context() override;
194 // IPC::Listener methods:
195 bool OnMessageReceived(const Message& message) override;
196 void OnChannelConnected(int32 peer_pid) override;
197 void OnChannelError() override;
199 // Like OnMessageReceived but doesn't try the filters.
200 bool OnMessageReceivedNoFilter(const Message& message);
202 // Gives the filters a chance at processing |message|.
203 // Returns true if the message was processed, false otherwise.
204 bool TryFilters(const Message& message);
206 // Like Open and Close, but called on the IPC thread.
207 virtual void OnChannelOpened();
208 virtual void OnChannelClosed();
210 // Called on the consumers thread when the ChannelProxy is closed. At that
211 // point the consumer is telling us that they don't want to receive any
212 // more messages, so we honor that wish by forgetting them!
213 virtual void Clear();
215 private:
216 friend class ChannelProxy;
217 friend class IpcSecurityTestUtil;
219 // Create the Channel
220 void CreateChannel(scoped_ptr<ChannelFactory> factory);
222 void set_attachment_broker_endpoint(bool is_endpoint) {
223 attachment_broker_endpoint_ = is_endpoint;
226 // Methods called on the IO thread.
227 void OnSendMessage(scoped_ptr<Message> message_ptr);
228 void OnAddFilter();
229 void OnRemoveFilter(MessageFilter* filter);
231 // Methods called on the listener thread.
232 void AddFilter(MessageFilter* filter);
233 void OnDispatchConnected();
234 void OnDispatchError();
235 void OnDispatchBadMessage(const Message& message);
237 void SendFromThisThread(Message* message);
238 void ClearChannel();
240 scoped_refptr<base::SingleThreadTaskRunner> listener_task_runner_;
241 Listener* listener_;
243 // List of filters. This is only accessed on the IPC thread.
244 std::vector<scoped_refptr<MessageFilter> > filters_;
245 scoped_refptr<base::SingleThreadTaskRunner> ipc_task_runner_;
247 // Note, channel_ may be set on the Listener thread or the IPC thread.
248 // But once it has been set, it must only be read or cleared on the IPC
249 // thread.
250 // One exception is the thread-safe send. See the class comment.
251 scoped_ptr<Channel> channel_;
252 std::string channel_id_;
253 bool channel_connected_called_;
255 // Lock for |channel_| value. This is only relevant in the context of
256 // thread-safe send.
257 base::Lock channel_lifetime_lock_;
258 // Indicates the thread-safe send availability. This is constant once
259 // |channel_| is set.
260 bool channel_send_thread_safe_;
262 // Routes a given message to a proper subset of |filters_|, depending
263 // on which message classes a filter might support.
264 scoped_ptr<MessageFilterRouter> message_filter_router_;
266 // Holds filters between the AddFilter call on the listerner thread and the
267 // IPC thread when they're added to filters_.
268 std::vector<scoped_refptr<MessageFilter> > pending_filters_;
269 // Lock for pending_filters_.
270 base::Lock pending_filters_lock_;
272 // Cached copy of the peer process ID. Set on IPC but read on both IPC and
273 // listener threads.
274 base::ProcessId peer_pid_;
276 // Whether this channel is used as an endpoint for sending and receiving
277 // brokerable attachment messages to/from the broker process.
278 bool attachment_broker_endpoint_;
281 Context* context() { return context_.get(); }
283 #if defined(ENABLE_IPC_FUZZER)
284 OutgoingMessageFilter* outgoing_message_filter() const {
285 return outgoing_message_filter_;
287 #endif
289 private:
290 friend class IpcSecurityTestUtil;
292 // By maintaining this indirection (ref-counted) to our internal state, we
293 // can safely be destroyed while the background thread continues to do stuff
294 // that involves this data.
295 scoped_refptr<Context> context_;
297 // Whether the channel has been initialized.
298 bool did_init_;
300 #if defined(ENABLE_IPC_FUZZER)
301 OutgoingMessageFilter* outgoing_message_filter_;
302 #endif
305 } // namespace IPC
307 #endif // IPC_IPC_CHANNEL_PROXY_H_