blob: f8207ce1e3e4739296bbb4e144a38b018db62f25 [file] [log] [blame]
piman@chromium.org5a00b882012-03-31 06:29:30 +09001// Copyright (c) 2012 The Chromium Authors. All rights reserved.
agl@chromium.org1c6dcf22009-07-23 08:57:21 +09002// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
4
thestig@chromium.org519c9ac2011-11-15 09:29:48 +09005#ifndef IPC_IPC_SYNC_CHANNEL_H_
6#define IPC_IPC_SYNC_CHANNEL_H_
agl@chromium.org1c6dcf22009-07-23 08:57:21 +09007
8#include <string>
9#include <deque>
10
11#include "base/basictypes.h"
levin@chromium.org5c528682011-03-28 10:54:15 +090012#include "base/memory/ref_counted.h"
brettw@chromium.orgabe477a2011-01-21 13:55:52 +090013#include "base/synchronization/lock.h"
brettw@chromium.org5238c7d2011-01-02 15:05:39 +090014#include "base/synchronization/waitable_event_watcher.h"
dmaclach@chromium.org058c4a72010-12-09 04:28:09 +090015#include "ipc/ipc_channel_handle.h"
agl@chromium.org1c6dcf22009-07-23 08:57:21 +090016#include "ipc/ipc_channel_proxy.h"
jabdelmalek@google.comeb921652010-04-07 05:33:36 +090017#include "ipc/ipc_sync_message.h"
agl@chromium.org1c6dcf22009-07-23 08:57:21 +090018
19namespace base {
20class WaitableEvent;
21};
22
23namespace IPC {
24
25class SyncMessage;
morrita@chromium.org15996aa2014-08-05 08:44:17 +090026class ChannelFactory;
agl@chromium.org1c6dcf22009-07-23 08:57:21 +090027
jabdelmalek@google.comeb921652010-04-07 05:33:36 +090028// This is similar to ChannelProxy, with the added feature of supporting sending
29// synchronous messages.
brettw@chromium.orgb57fa132011-04-16 04:07:43 +090030//
31// Overview of how the sync channel works
32// --------------------------------------
33// When the sending thread sends a synchronous message, we create a bunch
piman@chromium.org609a6892014-04-17 01:50:43 +090034// of tracking info (created in Send, stored in the PendingSyncMsg
brettw@chromium.orgb57fa132011-04-16 04:07:43 +090035// structure) associated with the message that we identify by the unique
36// "MessageId" on the SyncMessage. Among the things we save is the
37// "Deserializer" which is provided by the sync message. This object is in
38// charge of reading the parameters from the reply message and putting them in
39// the output variables provided by its caller.
40//
41// The info gets stashed in a queue since we could have a nested stack of sync
42// messages (each side could send sync messages in response to sync messages,
43// so it works like calling a function). The message is sent to the I/O thread
44// for dispatch and the original thread blocks waiting for the reply.
45//
46// SyncContext maintains the queue in a threadsafe way and listens for replies
47// on the I/O thread. When a reply comes in that matches one of the messages
48// it's looking for (using the unique message ID), it will execute the
49// deserializer stashed from before, and unblock the original thread.
50//
51//
52// Significant complexity results from the fact that messages are still coming
53// in while the original thread is blocked. Normal async messages are queued
54// and dispatched after the blocking call is complete. Sync messages must
55// be dispatched in a reentrant manner to avoid deadlock.
56//
57//
agl@chromium.org1c6dcf22009-07-23 08:57:21 +090058// Note that care must be taken that the lifetime of the ipc_thread argument
59// is more than this object. If the message loop goes away while this object
60// is running and it's used to send a message, then it will use the invalid
61// message loop pointer to proxy it to the ipc thread.
teravest@chromium.orgcd16b3a2013-02-05 03:14:28 +090062class IPC_EXPORT SyncChannel : public ChannelProxy {
agl@chromium.org1c6dcf22009-07-23 08:57:21 +090063 public:
piman@chromium.org5a00b882012-03-31 06:29:30 +090064 enum RestrictDispatchGroup {
65 kRestrictDispatchGroup_None = 0,
66 };
67
kkania@chromium.org9ccb4692011-11-16 10:06:46 +090068 // Creates and initializes a sync channel. If create_pipe_now is specified,
69 // the channel will be initialized synchronously.
morrita@chromium.org15b48602014-06-06 01:15:38 +090070 // The naming pattern follows IPC::Channel.
71 static scoped_ptr<SyncChannel> Create(
72 const IPC::ChannelHandle& channel_handle,
73 IPC::Channel::Mode mode,
74 Listener* listener,
75 base::SingleThreadTaskRunner* ipc_task_runner,
76 bool create_pipe_now,
77 base::WaitableEvent* shutdown_event);
kkania@chromium.org9ccb4692011-11-16 10:06:46 +090078
morrita@chromium.org15996aa2014-08-05 08:44:17 +090079 static scoped_ptr<SyncChannel> Create(
80 scoped_ptr<ChannelFactory> factory,
81 Listener* listener,
82 base::SingleThreadTaskRunner* ipc_task_runner,
83 bool create_pipe_now,
84 base::WaitableEvent* shutdown_event);
85
kkania@chromium.org9ccb4692011-11-16 10:06:46 +090086 // Creates an uninitialized sync channel. Call ChannelProxy::Init to
87 // initialize the channel. This two-step setup allows message filters to be
88 // added before any messages are sent or received.
morrita@chromium.org15b48602014-06-06 01:15:38 +090089 static scoped_ptr<SyncChannel> Create(
90 Listener* listener,
91 base::SingleThreadTaskRunner* ipc_task_runner,
92 base::WaitableEvent* shutdown_event);
kkania@chromium.org9ccb4692011-11-16 10:06:46 +090093
jeremy@chromium.org6718e582009-08-29 02:29:03 +090094 virtual ~SyncChannel();
agl@chromium.org1c6dcf22009-07-23 08:57:21 +090095
avi@chromium.org362c8a82011-11-18 01:09:44 +090096 virtual bool Send(Message* message) OVERRIDE;
agl@chromium.org1c6dcf22009-07-23 08:57:21 +090097
piman@chromium.org5a00b882012-03-31 06:29:30 +090098 // Sets the dispatch group for this channel, to only allow re-entrant dispatch
99 // of messages to other channels in the same group.
piman@google.com0cbefaa2011-04-08 12:38:21 +0900100 //
101 // Normally, any unblocking message coming from any channel can be dispatched
102 // when any (possibly other) channel is blocked on sending a message. This is
103 // needed in some cases to unblock certain loops (e.g. necessary when some
104 // processes share a window hierarchy), but may cause re-entrancy issues in
105 // some cases where such loops are not possible. This flags allows the tagging
piman@chromium.org5a00b882012-03-31 06:29:30 +0900106 // of some particular channels to only re-enter in known correct cases.
107 //
108 // Incoming messages on channels belonging to a group that is not
109 // kRestrictDispatchGroup_None will only be dispatched while a sync message is
110 // being sent on a channel of the *same* group.
111 // Incoming messages belonging to the kRestrictDispatchGroup_None group (the
112 // default) will be dispatched in any case.
113 void SetRestrictDispatchChannelGroup(int group);
piman@google.com0cbefaa2011-04-08 12:38:21 +0900114
agl@chromium.org1c6dcf22009-07-23 08:57:21 +0900115 protected:
116 class ReceivedSyncMsgQueue;
117 friend class ReceivedSyncMsgQueue;
118
119 // SyncContext holds the per object data for SyncChannel, so that SyncChannel
120 // can be deleted while it's being used in a different thread. See
121 // ChannelProxy::Context for more information.
teravest@chromium.orgcd16b3a2013-02-05 03:14:28 +0900122 class SyncContext : public Context {
agl@chromium.org1c6dcf22009-07-23 08:57:21 +0900123 public:
brettw@chromium.orgdb1259e2012-06-30 07:05:26 +0900124 SyncContext(Listener* listener,
sergeyu@chromium.org5b6d49c2012-07-03 06:15:52 +0900125 base::SingleThreadTaskRunner* ipc_task_runner,
agl@chromium.org1c6dcf22009-07-23 08:57:21 +0900126 base::WaitableEvent* shutdown_event);
127
agl@chromium.org1c6dcf22009-07-23 08:57:21 +0900128 // Adds information about an outgoing sync message to the context so that
129 // we know how to deserialize the reply.
jabdelmalek@google.comeb921652010-04-07 05:33:36 +0900130 void Push(SyncMessage* sync_msg);
agl@chromium.org1c6dcf22009-07-23 08:57:21 +0900131
132 // Cleanly remove the top deserializer (and throw it away). Returns the
133 // result of the Send call for that message.
134 bool Pop();
135
136 // Returns an event that's set when the send is complete, timed out or the
137 // process shut down.
138 base::WaitableEvent* GetSendDoneEvent();
139
140 // Returns an event that's set when an incoming message that's not the reply
141 // needs to get dispatched (by calling SyncContext::DispatchMessages).
142 base::WaitableEvent* GetDispatchEvent();
143
144 void DispatchMessages();
145
146 // Checks if the given message is blocking the listener thread because of a
147 // synchronous send. If it is, the thread is unblocked and true is
148 // returned. Otherwise the function returns false.
149 bool TryToUnblockListener(const Message* msg);
150
151 // Called on the IPC thread when a sync send that runs a nested message loop
152 // times out.
153 void OnSendTimeout(int message_id);
154
155 base::WaitableEvent* shutdown_event() { return shutdown_event_; }
156
ananta@chromium.org31b338f2009-10-15 01:22:02 +0900157 ReceivedSyncMsgQueue* received_sync_msgs() {
rsleevi@chromium.org23b66232013-06-01 13:11:27 +0900158 return received_sync_msgs_.get();
ananta@chromium.org31b338f2009-10-15 01:22:02 +0900159 }
160
piman@chromium.org5a00b882012-03-31 06:29:30 +0900161 void set_restrict_dispatch_group(int group) {
162 restrict_dispatch_group_ = group;
163 }
164
165 int restrict_dispatch_group() const {
166 return restrict_dispatch_group_;
167 }
piman@google.com0cbefaa2011-04-08 12:38:21 +0900168
teravest@chromium.orgcd16b3a2013-02-05 03:14:28 +0900169 base::WaitableEventWatcher::EventCallback MakeWaitableEventCallback();
170
agl@chromium.org1c6dcf22009-07-23 08:57:21 +0900171 private:
hans@chromium.org78b75932011-05-25 18:08:19 +0900172 virtual ~SyncContext();
jabdelmalek@google.comeb921652010-04-07 05:33:36 +0900173 // ChannelProxy methods that we override.
agl@chromium.org1c6dcf22009-07-23 08:57:21 +0900174
175 // Called on the listener thread.
avi@chromium.org362c8a82011-11-18 01:09:44 +0900176 virtual void Clear() OVERRIDE;
agl@chromium.org1c6dcf22009-07-23 08:57:21 +0900177
178 // Called on the IPC thread.
avi@chromium.org362c8a82011-11-18 01:09:44 +0900179 virtual bool OnMessageReceived(const Message& msg) OVERRIDE;
180 virtual void OnChannelError() OVERRIDE;
181 virtual void OnChannelOpened() OVERRIDE;
182 virtual void OnChannelClosed() OVERRIDE;
agl@chromium.org1c6dcf22009-07-23 08:57:21 +0900183
184 // Cancels all pending Send calls.
185 void CancelPendingSends();
186
teravest@chromium.orgcd16b3a2013-02-05 03:14:28 +0900187 void OnWaitableEventSignaled(base::WaitableEvent* event);
agl@chromium.org1c6dcf22009-07-23 08:57:21 +0900188
agl@chromium.org1c6dcf22009-07-23 08:57:21 +0900189 typedef std::deque<PendingSyncMsg> PendingSyncMessageQueue;
190 PendingSyncMessageQueue deserializers_;
brettw@chromium.orgabe477a2011-01-21 13:55:52 +0900191 base::Lock deserializers_lock_;
agl@chromium.org1c6dcf22009-07-23 08:57:21 +0900192
193 scoped_refptr<ReceivedSyncMsgQueue> received_sync_msgs_;
194
195 base::WaitableEvent* shutdown_event_;
196 base::WaitableEventWatcher shutdown_watcher_;
teravest@chromium.orgcd16b3a2013-02-05 03:14:28 +0900197 base::WaitableEventWatcher::EventCallback shutdown_watcher_callback_;
piman@chromium.org5a00b882012-03-31 06:29:30 +0900198 int restrict_dispatch_group_;
agl@chromium.org1c6dcf22009-07-23 08:57:21 +0900199 };
200
201 private:
morrita@chromium.org15b48602014-06-06 01:15:38 +0900202 SyncChannel(Listener* listener,
203 base::SingleThreadTaskRunner* ipc_task_runner,
204 base::WaitableEvent* shutdown_event);
205
teravest@chromium.orgcd16b3a2013-02-05 03:14:28 +0900206 void OnWaitableEventSignaled(base::WaitableEvent* arg);
agl@chromium.org1c6dcf22009-07-23 08:57:21 +0900207
208 SyncContext* sync_context() {
209 return reinterpret_cast<SyncContext*>(context());
210 }
211
212 // Both these functions wait for a reply, timeout or process shutdown. The
213 // latter one also runs a nested message loop in the meantime.
jam@chromium.orgebd07182009-12-01 11:34:18 +0900214 static void WaitForReply(
215 SyncContext* context, base::WaitableEvent* pump_messages_event);
agl@chromium.org1c6dcf22009-07-23 08:57:21 +0900216
217 // Runs a nested message loop until a reply arrives, times out, or the process
218 // shuts down.
jam@chromium.orgebd07182009-12-01 11:34:18 +0900219 static void WaitForReplyWithNestedMessageLoop(SyncContext* context);
agl@chromium.org1c6dcf22009-07-23 08:57:21 +0900220
kkania@chromium.org9ccb4692011-11-16 10:06:46 +0900221 // Starts the dispatch watcher.
222 void StartWatching();
223
agl@chromium.org1c6dcf22009-07-23 08:57:21 +0900224 // Used to signal events between the IPC and listener threads.
agl@chromium.org1c6dcf22009-07-23 08:57:21 +0900225 base::WaitableEventWatcher dispatch_watcher_;
teravest@chromium.orgcd16b3a2013-02-05 03:14:28 +0900226 base::WaitableEventWatcher::EventCallback dispatch_watcher_callback_;
agl@chromium.org1c6dcf22009-07-23 08:57:21 +0900227
tfarina@chromium.orgb73eaee2010-06-07 11:10:18 +0900228 DISALLOW_COPY_AND_ASSIGN(SyncChannel);
agl@chromium.org1c6dcf22009-07-23 08:57:21 +0900229};
230
231} // namespace IPC
232
thestig@chromium.org519c9ac2011-11-15 09:29:48 +0900233#endif // IPC_IPC_SYNC_CHANNEL_H_