blob: 50ea3dfdf947ae3874d3c93aa12c240312af0848 [file] [log] [blame]
[email protected]522cc10d2012-01-11 22:39:541// Copyright (c) 2012 The Chromium Authors. All rights reserved.
license.botbf09a502008-08-24 00:55:552// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
initial.commit09911bf2008-07-26 23:55:294
[email protected]946d1b22009-07-22 23:57:215#include "ipc/ipc_sync_channel.h"
initial.commit09911bf2008-07-26 23:55:296
[email protected]72b6f8e22011-11-12 21:16:417#include "base/bind.h"
[email protected]60b2c61f2012-08-22 22:39:578#include "base/debug/trace_event.h"
[email protected]f886b7bf2008-09-10 10:54:069#include "base/lazy_instance.h"
[email protected]c62dd9d2011-09-21 18:05:4110#include "base/location.h"
initial.commit09911bf2008-07-26 23:55:2911#include "base/logging.h"
[email protected]44f9c952011-01-02 06:05:3912#include "base/synchronization/waitable_event.h"
13#include "base/synchronization/waitable_event_watcher.h"
[email protected]b2432302012-07-02 21:15:5214#include "base/thread_task_runner_handle.h"
15#include "base/threading/thread_local.h"
[email protected]64860882014-08-04 23:44:1716#include "ipc/ipc_channel_factory.h"
[email protected]60b2c61f2012-08-22 22:39:5717#include "ipc/ipc_logging.h"
18#include "ipc/ipc_message_macros.h"
[email protected]946d1b22009-07-22 23:57:2119#include "ipc/ipc_sync_message.h"
initial.commit09911bf2008-07-26 23:55:2920
[email protected]e1acf6f2008-10-27 20:43:3321using base::TimeDelta;
22using base::TimeTicks;
[email protected]1c4947f2009-01-15 22:25:1123using base::WaitableEvent;
initial.commit09911bf2008-07-26 23:55:2924
25namespace IPC {
26// When we're blocked in a Send(), we need to process incoming synchronous
27// messages right away because it could be blocking our reply (either
28// directly from the same object we're calling, or indirectly through one or
29// more other channels). That means that in SyncContext's OnMessageReceived,
30// we need to process sync message right away if we're blocked. However a
31// simple check isn't sufficient, because the listener thread can be in the
32// process of calling Send.
33// To work around this, when SyncChannel filters a sync message, it sets
34// an event that the listener thread waits on during its Send() call. This
35// allows us to dispatch incoming sync messages when blocked. The race
36// condition is handled because if Send is in the process of being called, it
37// will check the event. In case the listener thread isn't sending a message,
38// we queue a task on the listener thread to dispatch the received messages.
39// The messages are stored in this queue object that's shared among all
40// SyncChannel objects on the same thread (since one object can receive a
41// sync message while another one is blocked).
42
initial.commit09911bf2008-07-26 23:55:2943class SyncChannel::ReceivedSyncMsgQueue :
44 public base::RefCountedThreadSafe<ReceivedSyncMsgQueue> {
45 public:
[email protected]3cdb7af812008-10-24 19:21:1346 // Returns the ReceivedSyncMsgQueue instance for this thread, creating one
[email protected]d3ae7a072008-12-05 20:27:2047 // if necessary. Call RemoveContext on the same thread when done.
48 static ReceivedSyncMsgQueue* AddContext() {
[email protected]3cdb7af812008-10-24 19:21:1349 // We want one ReceivedSyncMsgQueue per listener thread (i.e. since multiple
50 // SyncChannel objects can block the same thread).
51 ReceivedSyncMsgQueue* rv = lazy_tls_ptr_.Pointer()->Get();
52 if (!rv) {
53 rv = new ReceivedSyncMsgQueue();
54 ReceivedSyncMsgQueue::lazy_tls_ptr_.Pointer()->Set(rv);
55 }
56 rv->listener_count_++;
57 return rv;
initial.commit09911bf2008-07-26 23:55:2958 }
59
initial.commit09911bf2008-07-26 23:55:2960 // Called on IPC thread when a synchronous message or reply arrives.
[email protected]d3ae7a072008-12-05 20:27:2061 void QueueMessage(const Message& msg, SyncChannel::SyncContext* context) {
initial.commit09911bf2008-07-26 23:55:2962 bool was_task_pending;
63 {
[email protected]20305ec2011-01-21 04:55:5264 base::AutoLock auto_lock(message_lock_);
initial.commit09911bf2008-07-26 23:55:2965
66 was_task_pending = task_pending_;
67 task_pending_ = true;
68
69 // We set the event in case the listener thread is blocked (or is about
70 // to). In case it's not, the PostTask dispatches the messages.
[email protected]d3ae7a072008-12-05 20:27:2071 message_queue_.push_back(QueuedMessage(new Message(msg), context));
[email protected]522cc10d2012-01-11 22:39:5472 message_queue_version_++;
initial.commit09911bf2008-07-26 23:55:2973 }
74
[email protected]1c4947f2009-01-15 22:25:1175 dispatch_event_.Signal();
initial.commit09911bf2008-07-26 23:55:2976 if (!was_task_pending) {
[email protected]b2432302012-07-02 21:15:5277 listener_task_runner_->PostTask(
[email protected]72b6f8e22011-11-12 21:16:4178 FROM_HERE, base::Bind(&ReceivedSyncMsgQueue::DispatchMessagesTask,
79 this, scoped_refptr<SyncContext>(context)));
initial.commit09911bf2008-07-26 23:55:2980 }
81 }
82
83 void QueueReply(const Message &msg, SyncChannel::SyncContext* context) {
[email protected]d3ae7a072008-12-05 20:27:2084 received_replies_.push_back(QueuedMessage(new Message(msg), context));
initial.commit09911bf2008-07-26 23:55:2985 }
86
[email protected]d3ae7a072008-12-05 20:27:2087 // Called on the listener's thread to process any queues synchronous
initial.commit09911bf2008-07-26 23:55:2988 // messages.
[email protected]54af05f2011-04-08 03:38:2189 void DispatchMessagesTask(SyncContext* context) {
initial.commit09911bf2008-07-26 23:55:2990 {
[email protected]20305ec2011-01-21 04:55:5291 base::AutoLock auto_lock(message_lock_);
initial.commit09911bf2008-07-26 23:55:2992 task_pending_ = false;
93 }
[email protected]54af05f2011-04-08 03:38:2194 context->DispatchMessages();
initial.commit09911bf2008-07-26 23:55:2995 }
96
[email protected]54af05f2011-04-08 03:38:2197 void DispatchMessages(SyncContext* dispatching_context) {
[email protected]522cc10d2012-01-11 22:39:5498 bool first_time = true;
99 uint32 expected_version = 0;
100 SyncMessageQueue::iterator it;
initial.commit09911bf2008-07-26 23:55:29101 while (true) {
[email protected]522cc10d2012-01-11 22:39:54102 Message* message = NULL;
[email protected]d3ae7a072008-12-05 20:27:20103 scoped_refptr<SyncChannel::SyncContext> context;
initial.commit09911bf2008-07-26 23:55:29104 {
[email protected]20305ec2011-01-21 04:55:52105 base::AutoLock auto_lock(message_lock_);
[email protected]522cc10d2012-01-11 22:39:54106 if (first_time || message_queue_version_ != expected_version) {
107 it = message_queue_.begin();
108 first_time = false;
[email protected]54af05f2011-04-08 03:38:21109 }
[email protected]522cc10d2012-01-11 22:39:54110 for (; it != message_queue_.end(); it++) {
[email protected]298ee7d2012-03-30 21:29:30111 int message_group = it->context->restrict_dispatch_group();
112 if (message_group == kRestrictDispatchGroup_None ||
113 message_group == dispatching_context->restrict_dispatch_group()) {
[email protected]522cc10d2012-01-11 22:39:54114 message = it->message;
115 context = it->context;
116 it = message_queue_.erase(it);
117 message_queue_version_++;
118 expected_version = message_queue_version_;
119 break;
120 }
121 }
122 }
initial.commit09911bf2008-07-26 23:55:29123
[email protected]522cc10d2012-01-11 22:39:54124 if (message == NULL)
125 break;
126 context->OnDispatchMessage(*message);
127 delete message;
initial.commit09911bf2008-07-26 23:55:29128 }
129 }
130
initial.commit09911bf2008-07-26 23:55:29131 // SyncChannel calls this in its destructor.
[email protected]d3ae7a072008-12-05 20:27:20132 void RemoveContext(SyncContext* context) {
[email protected]20305ec2011-01-21 04:55:52133 base::AutoLock auto_lock(message_lock_);
initial.commit09911bf2008-07-26 23:55:29134
[email protected]d3ae7a072008-12-05 20:27:20135 SyncMessageQueue::iterator iter = message_queue_.begin();
136 while (iter != message_queue_.end()) {
[email protected]17571642013-06-01 04:11:27137 if (iter->context.get() == context) {
[email protected]d3ae7a072008-12-05 20:27:20138 delete iter->message;
139 iter = message_queue_.erase(iter);
[email protected]522cc10d2012-01-11 22:39:54140 message_queue_version_++;
initial.commit09911bf2008-07-26 23:55:29141 } else {
[email protected]d3ae7a072008-12-05 20:27:20142 iter++;
initial.commit09911bf2008-07-26 23:55:29143 }
initial.commit09911bf2008-07-26 23:55:29144 }
[email protected]3cdb7af812008-10-24 19:21:13145
146 if (--listener_count_ == 0) {
147 DCHECK(lazy_tls_ptr_.Pointer()->Get());
148 lazy_tls_ptr_.Pointer()->Set(NULL);
149 }
initial.commit09911bf2008-07-26 23:55:29150 }
151
[email protected]1c4947f2009-01-15 22:25:11152 WaitableEvent* dispatch_event() { return &dispatch_event_; }
[email protected]b2432302012-07-02 21:15:52153 base::SingleThreadTaskRunner* listener_task_runner() {
[email protected]17571642013-06-01 04:11:27154 return listener_task_runner_.get();
[email protected]92bf9062011-05-02 18:00:49155 }
initial.commit09911bf2008-07-26 23:55:29156
[email protected]f886b7bf2008-09-10 10:54:06157 // Holds a pointer to the per-thread ReceivedSyncMsgQueue object.
158 static base::LazyInstance<base::ThreadLocalPointer<ReceivedSyncMsgQueue> >
159 lazy_tls_ptr_;
160
initial.commit09911bf2008-07-26 23:55:29161 // Called on the ipc thread to check if we can unblock any current Send()
162 // calls based on a queued reply.
163 void DispatchReplies() {
initial.commit09911bf2008-07-26 23:55:29164 for (size_t i = 0; i < received_replies_.size(); ++i) {
165 Message* message = received_replies_[i].message;
[email protected]3cdb7af812008-10-24 19:21:13166 if (received_replies_[i].context->TryToUnblockListener(message)) {
initial.commit09911bf2008-07-26 23:55:29167 delete message;
168 received_replies_.erase(received_replies_.begin() + i);
169 return;
170 }
171 }
172 }
173
[email protected]ac0efda2009-10-14 16:22:02174 base::WaitableEventWatcher* top_send_done_watcher() {
175 return top_send_done_watcher_;
176 }
177
178 void set_top_send_done_watcher(base::WaitableEventWatcher* watcher) {
179 top_send_done_watcher_ = watcher;
180 }
181
[email protected]63a7bb82008-10-25 00:46:00182 private:
[email protected]877d55d2009-11-05 21:53:08183 friend class base::RefCountedThreadSafe<ReceivedSyncMsgQueue>;
184
[email protected]4df10d612008-11-12 00:38:26185 // See the comment in SyncChannel::SyncChannel for why this event is created
186 // as manual reset.
[email protected]63a7bb82008-10-25 00:46:00187 ReceivedSyncMsgQueue() :
[email protected]522cc10d2012-01-11 22:39:54188 message_queue_version_(0),
[email protected]1c4947f2009-01-15 22:25:11189 dispatch_event_(true, false),
[email protected]b2432302012-07-02 21:15:52190 listener_task_runner_(base::ThreadTaskRunnerHandle::Get()),
[email protected]1c4947f2009-01-15 22:25:11191 task_pending_(false),
[email protected]ac0efda2009-10-14 16:22:02192 listener_count_(0),
193 top_send_done_watcher_(NULL) {
[email protected]63a7bb82008-10-25 00:46:00194 }
195
[email protected]877d55d2009-11-05 21:53:08196 ~ReceivedSyncMsgQueue() {}
197
[email protected]d3ae7a072008-12-05 20:27:20198 // Holds information about a queued synchronous message or reply.
199 struct QueuedMessage {
200 QueuedMessage(Message* m, SyncContext* c) : message(m), context(c) { }
initial.commit09911bf2008-07-26 23:55:29201 Message* message;
202 scoped_refptr<SyncChannel::SyncContext> context;
203 };
204
[email protected]522cc10d2012-01-11 22:39:54205 typedef std::list<QueuedMessage> SyncMessageQueue;
[email protected]1c4947f2009-01-15 22:25:11206 SyncMessageQueue message_queue_;
[email protected]522cc10d2012-01-11 22:39:54207 uint32 message_queue_version_; // Used to signal DispatchMessages to rescan
[email protected]d3ae7a072008-12-05 20:27:20208
209 std::vector<QueuedMessage> received_replies_;
[email protected]3cdb7af812008-10-24 19:21:13210
211 // Set when we got a synchronous message that we must respond to as the
212 // sender needs its reply before it can reply to our original synchronous
213 // message.
[email protected]1c4947f2009-01-15 22:25:11214 WaitableEvent dispatch_event_;
[email protected]b2432302012-07-02 21:15:52215 scoped_refptr<base::SingleThreadTaskRunner> listener_task_runner_;
[email protected]20305ec2011-01-21 04:55:52216 base::Lock message_lock_;
[email protected]3cdb7af812008-10-24 19:21:13217 bool task_pending_;
218 int listener_count_;
[email protected]ac0efda2009-10-14 16:22:02219
220 // The current send done event watcher for this thread. Used to maintain
221 // a local global stack of send done watchers to ensure that nested sync
222 // message loops complete correctly.
223 base::WaitableEventWatcher* top_send_done_watcher_;
initial.commit09911bf2008-07-26 23:55:29224};
225
[email protected]f886b7bf2008-09-10 10:54:06226base::LazyInstance<base::ThreadLocalPointer<SyncChannel::ReceivedSyncMsgQueue> >
[email protected]6de0fd1d2011-11-15 13:31:49227 SyncChannel::ReceivedSyncMsgQueue::lazy_tls_ptr_ =
228 LAZY_INSTANCE_INITIALIZER;
initial.commit09911bf2008-07-26 23:55:29229
230SyncChannel::SyncContext::SyncContext(
[email protected]b7f59e822012-06-29 22:05:26231 Listener* listener,
dchengfd033702014-08-28 16:59:29232 const scoped_refptr<base::SingleThreadTaskRunner>& ipc_task_runner,
[email protected]1c4947f2009-01-15 22:25:11233 WaitableEvent* shutdown_event)
[email protected]b2432302012-07-02 21:15:52234 : ChannelProxy::Context(listener, ipc_task_runner),
[email protected]1c4947f2009-01-15 22:25:11235 received_sync_msgs_(ReceivedSyncMsgQueue::AddContext()),
[email protected]54af05f2011-04-08 03:38:21236 shutdown_event_(shutdown_event),
[email protected]298ee7d2012-03-30 21:29:30237 restrict_dispatch_group_(kRestrictDispatchGroup_None) {
initial.commit09911bf2008-07-26 23:55:29238}
239
240SyncChannel::SyncContext::~SyncContext() {
241 while (!deserializers_.empty())
[email protected]3cdb7af812008-10-24 19:21:13242 Pop();
initial.commit09911bf2008-07-26 23:55:29243}
244
245// Adds information about an outgoing sync message to the context so that
246// we know how to deserialize the reply. Returns a handle that's set when
247// the reply has arrived.
[email protected]3cdb7af812008-10-24 19:21:13248void SyncChannel::SyncContext::Push(SyncMessage* sync_msg) {
[email protected]4a180a52011-04-15 19:07:43249 // Create the tracking information for this message. This object is stored
250 // by value since all members are pointers that are cheap to copy. These
251 // pointers are cleaned up in the Pop() function.
252 //
[email protected]1c4947f2009-01-15 22:25:11253 // The event is created as manual reset because in between Signal and
[email protected]4df10d612008-11-12 00:38:26254 // OnObjectSignalled, another Send can happen which would stop the watcher
255 // from being called. The event would get watched later, when the nested
256 // Send completes, so the event will need to remain set.
[email protected]3cdb7af812008-10-24 19:21:13257 PendingSyncMsg pending(SyncMessage::GetMessageId(*sync_msg),
initial.commit09911bf2008-07-26 23:55:29258 sync_msg->GetReplyDeserializer(),
[email protected]1c4947f2009-01-15 22:25:11259 new WaitableEvent(true, false));
[email protected]20305ec2011-01-21 04:55:52260 base::AutoLock auto_lock(deserializers_lock_);
[email protected]3cdb7af812008-10-24 19:21:13261 deserializers_.push_back(pending);
initial.commit09911bf2008-07-26 23:55:29262}
263
[email protected]3cdb7af812008-10-24 19:21:13264bool SyncChannel::SyncContext::Pop() {
[email protected]63a7bb82008-10-25 00:46:00265 bool result;
266 {
[email protected]20305ec2011-01-21 04:55:52267 base::AutoLock auto_lock(deserializers_lock_);
[email protected]63a7bb82008-10-25 00:46:00268 PendingSyncMsg msg = deserializers_.back();
269 delete msg.deserializer;
[email protected]1c4947f2009-01-15 22:25:11270 delete msg.done_event;
271 msg.done_event = NULL;
[email protected]63a7bb82008-10-25 00:46:00272 deserializers_.pop_back();
273 result = msg.send_result;
274 }
275
276 // We got a reply to a synchronous Send() call that's blocking the listener
277 // thread. However, further down the call stack there could be another
278 // blocking Send() call, whose reply we received after we made this last
279 // Send() call. So check if we have any queued replies available that
280 // can now unblock the listener thread.
[email protected]b2432302012-07-02 21:15:52281 ipc_task_runner()->PostTask(
[email protected]72b6f8e22011-11-12 21:16:41282 FROM_HERE, base::Bind(&ReceivedSyncMsgQueue::DispatchReplies,
283 received_sync_msgs_.get()));
[email protected]63a7bb82008-10-25 00:46:00284
285 return result;
[email protected]3cdb7af812008-10-24 19:21:13286}
287
[email protected]1c4947f2009-01-15 22:25:11288WaitableEvent* SyncChannel::SyncContext::GetSendDoneEvent() {
[email protected]20305ec2011-01-21 04:55:52289 base::AutoLock auto_lock(deserializers_lock_);
[email protected]3cdb7af812008-10-24 19:21:13290 return deserializers_.back().done_event;
291}
292
[email protected]1c4947f2009-01-15 22:25:11293WaitableEvent* SyncChannel::SyncContext::GetDispatchEvent() {
[email protected]3cdb7af812008-10-24 19:21:13294 return received_sync_msgs_->dispatch_event();
initial.commit09911bf2008-07-26 23:55:29295}
296
297void SyncChannel::SyncContext::DispatchMessages() {
[email protected]54af05f2011-04-08 03:38:21298 received_sync_msgs_->DispatchMessages(this);
initial.commit09911bf2008-07-26 23:55:29299}
300
[email protected]3cdb7af812008-10-24 19:21:13301bool SyncChannel::SyncContext::TryToUnblockListener(const Message* msg) {
[email protected]20305ec2011-01-21 04:55:52302 base::AutoLock auto_lock(deserializers_lock_);
[email protected]63a7bb82008-10-25 00:46:00303 if (deserializers_.empty() ||
304 !SyncMessage::IsMessageReplyTo(*msg, deserializers_.back().id)) {
305 return false;
[email protected]3cdb7af812008-10-24 19:21:13306 }
initial.commit09911bf2008-07-26 23:55:29307
[email protected]211142cd2012-08-13 09:41:19308 // TODO(bauerb): Remove logging once investigation of http://crbug.com/141055
309 // has finished.
[email protected]63a7bb82008-10-25 00:46:00310 if (!msg->is_reply_error()) {
[email protected]211142cd2012-08-13 09:41:19311 bool send_result = deserializers_.back().deserializer->
[email protected]63a7bb82008-10-25 00:46:00312 SerializeOutputParameters(*msg);
[email protected]211142cd2012-08-13 09:41:19313 deserializers_.back().send_result = send_result;
[email protected]33c66e32012-08-20 22:10:08314 VLOG_IF(1, !send_result) << "Couldn't deserialize reply message";
[email protected]211142cd2012-08-13 09:41:19315 } else {
[email protected]33c66e32012-08-20 22:10:08316 VLOG(1) << "Received error reply";
[email protected]63a7bb82008-10-25 00:46:00317 }
[email protected]1c4947f2009-01-15 22:25:11318 deserializers_.back().done_event->Signal();
initial.commit09911bf2008-07-26 23:55:29319
[email protected]3cdb7af812008-10-24 19:21:13320 return true;
initial.commit09911bf2008-07-26 23:55:29321}
322
[email protected]3cdb7af812008-10-24 19:21:13323void SyncChannel::SyncContext::Clear() {
324 CancelPendingSends();
[email protected]d3ae7a072008-12-05 20:27:20325 received_sync_msgs_->RemoveContext(this);
[email protected]3cdb7af812008-10-24 19:21:13326 Context::Clear();
327}
328
[email protected]a95986a82010-12-24 06:19:28329bool SyncChannel::SyncContext::OnMessageReceived(const Message& msg) {
[email protected]d65cab7a2008-08-12 01:25:41330 // Give the filters a chance at processing this message.
331 if (TryFilters(msg))
[email protected]a95986a82010-12-24 06:19:28332 return true;
[email protected]d65cab7a2008-08-12 01:25:41333
[email protected]3cdb7af812008-10-24 19:21:13334 if (TryToUnblockListener(&msg))
[email protected]a95986a82010-12-24 06:19:28335 return true;
initial.commit09911bf2008-07-26 23:55:29336
[email protected]9134cce6d2012-04-10 20:07:53337 if (msg.is_reply()) {
338 received_sync_msgs_->QueueReply(msg, this);
[email protected]a95986a82010-12-24 06:19:28339 return true;
initial.commit09911bf2008-07-26 23:55:29340 }
341
[email protected]9134cce6d2012-04-10 20:07:53342 if (msg.should_unblock()) {
343 received_sync_msgs_->QueueMessage(msg, this);
[email protected]a95986a82010-12-24 06:19:28344 return true;
initial.commit09911bf2008-07-26 23:55:29345 }
346
[email protected]3cdb7af812008-10-24 19:21:13347 return Context::OnMessageReceivedNoFilter(msg);
initial.commit09911bf2008-07-26 23:55:29348}
349
initial.commit09911bf2008-07-26 23:55:29350void SyncChannel::SyncContext::OnChannelError() {
[email protected]3cdb7af812008-10-24 19:21:13351 CancelPendingSends();
[email protected]a4f822702009-02-06 00:44:53352 shutdown_watcher_.StopWatching();
initial.commit09911bf2008-07-26 23:55:29353 Context::OnChannelError();
354}
355
[email protected]3cdb7af812008-10-24 19:21:13356void SyncChannel::SyncContext::OnChannelOpened() {
[email protected]329be052013-02-04 18:14:28357 shutdown_watcher_.StartWatching(
358 shutdown_event_,
359 base::Bind(&SyncChannel::SyncContext::OnWaitableEventSignaled,
360 base::Unretained(this)));
[email protected]3cdb7af812008-10-24 19:21:13361 Context::OnChannelOpened();
initial.commit09911bf2008-07-26 23:55:29362}
363
[email protected]3cdb7af812008-10-24 19:21:13364void SyncChannel::SyncContext::OnChannelClosed() {
[email protected]87339f02010-09-02 21:45:50365 CancelPendingSends();
[email protected]3cdb7af812008-10-24 19:21:13366 shutdown_watcher_.StopWatching();
367 Context::OnChannelClosed();
368}
369
370void SyncChannel::SyncContext::OnSendTimeout(int message_id) {
[email protected]20305ec2011-01-21 04:55:52371 base::AutoLock auto_lock(deserializers_lock_);
[email protected]3cdb7af812008-10-24 19:21:13372 PendingSyncMessageQueue::iterator iter;
[email protected]33c66e32012-08-20 22:10:08373 VLOG(1) << "Send timeout";
[email protected]3cdb7af812008-10-24 19:21:13374 for (iter = deserializers_.begin(); iter != deserializers_.end(); iter++) {
[email protected]d3ae7a072008-12-05 20:27:20375 if (iter->id == message_id) {
[email protected]1c4947f2009-01-15 22:25:11376 iter->done_event->Signal();
[email protected]3cdb7af812008-10-24 19:21:13377 break;
378 }
379 }
380}
381
382void SyncChannel::SyncContext::CancelPendingSends() {
[email protected]20305ec2011-01-21 04:55:52383 base::AutoLock auto_lock(deserializers_lock_);
[email protected]3cdb7af812008-10-24 19:21:13384 PendingSyncMessageQueue::iterator iter;
[email protected]33c66e32012-08-20 22:10:08385 // TODO(bauerb): Remove once http://crbug/141055 is fixed.
386 VLOG(1) << "Canceling pending sends";
[email protected]3cdb7af812008-10-24 19:21:13387 for (iter = deserializers_.begin(); iter != deserializers_.end(); iter++)
[email protected]1c4947f2009-01-15 22:25:11388 iter->done_event->Signal();
[email protected]3cdb7af812008-10-24 19:21:13389}
390
[email protected]1c4947f2009-01-15 22:25:11391void SyncChannel::SyncContext::OnWaitableEventSignaled(WaitableEvent* event) {
[email protected]9eec2252009-12-01 02:34:18392 if (event == shutdown_event_) {
393 // Process shut down before we can get a reply to a synchronous message.
394 // Cancel pending Send calls, which will end up setting the send done event.
395 CancelPendingSends();
396 } else {
397 // We got the reply, timed out or the process shutdown.
[email protected]5e0be642011-04-28 18:20:09398 DCHECK_EQ(GetSendDoneEvent(), event);
[email protected]fd0a773a2013-04-30 20:55:03399 base::MessageLoop::current()->QuitNow();
[email protected]9eec2252009-12-01 02:34:18400 }
[email protected]3cdb7af812008-10-24 19:21:13401}
402
[email protected]329be052013-02-04 18:14:28403base::WaitableEventWatcher::EventCallback
404 SyncChannel::SyncContext::MakeWaitableEventCallback() {
405 return base::Bind(&SyncChannel::SyncContext::OnWaitableEventSignaled, this);
406}
[email protected]3cdb7af812008-10-24 19:21:13407
[email protected]fca876a12014-06-05 16:15:38408// static
409scoped_ptr<SyncChannel> SyncChannel::Create(
[email protected]42ce94e2010-12-08 19:28:09410 const IPC::ChannelHandle& channel_handle,
[email protected]3b0e4662014-06-02 20:29:30411 Channel::Mode mode,
[email protected]b7f59e822012-06-29 22:05:26412 Listener* listener,
dchengfd033702014-08-28 16:59:29413 const scoped_refptr<base::SingleThreadTaskRunner>& ipc_task_runner,
[email protected]4b580bf2010-12-02 19:16:07414 bool create_pipe_now,
[email protected]fca876a12014-06-05 16:15:38415 base::WaitableEvent* shutdown_event) {
416 scoped_ptr<SyncChannel> channel =
417 Create(listener, ipc_task_runner, shutdown_event);
418 channel->Init(channel_handle, mode, create_pipe_now);
419 return channel.Pass();
420}
421
422// static
423scoped_ptr<SyncChannel> SyncChannel::Create(
[email protected]64860882014-08-04 23:44:17424 scoped_ptr<ChannelFactory> factory,
425 Listener* listener,
dchengfd033702014-08-28 16:59:29426 const scoped_refptr<base::SingleThreadTaskRunner>& ipc_task_runner,
[email protected]64860882014-08-04 23:44:17427 bool create_pipe_now,
428 base::WaitableEvent* shutdown_event) {
429 scoped_ptr<SyncChannel> channel =
430 Create(listener, ipc_task_runner, shutdown_event);
431 channel->Init(factory.Pass(), create_pipe_now);
432 return channel.Pass();
433}
434
435// static
436scoped_ptr<SyncChannel> SyncChannel::Create(
[email protected]fca876a12014-06-05 16:15:38437 Listener* listener,
dchengfd033702014-08-28 16:59:29438 const scoped_refptr<base::SingleThreadTaskRunner>& ipc_task_runner,
[email protected]fca876a12014-06-05 16:15:38439 WaitableEvent* shutdown_event) {
440 return make_scoped_ptr(
441 new SyncChannel(listener, ipc_task_runner, shutdown_event));
[email protected]952394af2011-11-16 01:06:46442}
443
444SyncChannel::SyncChannel(
[email protected]b7f59e822012-06-29 22:05:26445 Listener* listener,
dchengfd033702014-08-28 16:59:29446 const scoped_refptr<base::SingleThreadTaskRunner>& ipc_task_runner,
[email protected]952394af2011-11-16 01:06:46447 WaitableEvent* shutdown_event)
[email protected]5855f1d2014-04-16 16:50:43448 : ChannelProxy(new SyncContext(listener, ipc_task_runner, shutdown_event)) {
[email protected]1f9cf472014-04-17 05:07:18449 // The current (listener) thread must be distinct from the IPC thread, or else
450 // sending synchronous messages will deadlock.
dchengff04843f2014-09-03 18:01:16451 DCHECK_NE(ipc_task_runner.get(), base::ThreadTaskRunnerHandle::Get().get());
[email protected]952394af2011-11-16 01:06:46452 StartWatching();
initial.commit09911bf2008-07-26 23:55:29453}
454
455SyncChannel::~SyncChannel() {
initial.commit09911bf2008-07-26 23:55:29456}
457
[email protected]298ee7d2012-03-30 21:29:30458void SyncChannel::SetRestrictDispatchChannelGroup(int group) {
459 sync_context()->set_restrict_dispatch_group(group);
[email protected]54af05f2011-04-08 03:38:21460}
461
[email protected]3cdb7af812008-10-24 19:21:13462bool SyncChannel::Send(Message* message) {
[email protected]60b2c61f2012-08-22 22:39:57463#ifdef IPC_MESSAGE_LOG_ENABLED
464 Logging* logger = Logging::GetInstance();
465 std::string name;
466 logger->GetMessageText(message->type(), &name, message, NULL);
[email protected]d6cbf052014-05-02 21:29:24467 TRACE_EVENT1("ipc", "SyncChannel::Send", "name", name);
[email protected]60b2c61f2012-08-22 22:39:57468#else
[email protected]d6cbf052014-05-02 21:29:24469 TRACE_EVENT2("ipc", "SyncChannel::Send",
[email protected]60b2c61f2012-08-22 22:39:57470 "class", IPC_MESSAGE_ID_CLASS(message->type()),
471 "line", IPC_MESSAGE_ID_LINE(message->type()));
472#endif
[email protected]3cdb7af812008-10-24 19:21:13473 if (!message->is_sync()) {
474 ChannelProxy::Send(message);
475 return true;
initial.commit09911bf2008-07-26 23:55:29476 }
477
[email protected]3cdb7af812008-10-24 19:21:13478 // *this* might get deleted in WaitForReply.
479 scoped_refptr<SyncContext> context(sync_context());
[email protected]1c4947f2009-01-15 22:25:11480 if (context->shutdown_event()->IsSignaled()) {
[email protected]33c66e32012-08-20 22:10:08481 VLOG(1) << "shutdown event is signaled";
[email protected]3cdb7af812008-10-24 19:21:13482 delete message;
483 return false;
484 }
485
[email protected]3cdb7af812008-10-24 19:21:13486 SyncMessage* sync_msg = static_cast<SyncMessage*>(message);
487 context->Push(sync_msg);
[email protected]1c4947f2009-01-15 22:25:11488 WaitableEvent* pump_messages_event = sync_msg->pump_messages_event();
[email protected]3cdb7af812008-10-24 19:21:13489
initial.commit09911bf2008-07-26 23:55:29490 ChannelProxy::Send(message);
initial.commit09911bf2008-07-26 23:55:29491
[email protected]3cdb7af812008-10-24 19:21:13492 // Wait for reply, or for any other incoming synchronous messages.
[email protected]9eec2252009-12-01 02:34:18493 // *this* might get deleted, so only call static functions at this point.
[email protected]17571642013-06-01 04:11:27494 WaitForReply(context.get(), pump_messages_event);
initial.commit09911bf2008-07-26 23:55:29495
[email protected]3cdb7af812008-10-24 19:21:13496 return context->Pop();
initial.commit09911bf2008-07-26 23:55:29497}
498
[email protected]9eec2252009-12-01 02:34:18499void SyncChannel::WaitForReply(
500 SyncContext* context, WaitableEvent* pump_messages_event) {
[email protected]54af05f2011-04-08 03:38:21501 context->DispatchMessages();
[email protected]3cdb7af812008-10-24 19:21:13502 while (true) {
[email protected]1c4947f2009-01-15 22:25:11503 WaitableEvent* objects[] = {
[email protected]9eec2252009-12-01 02:34:18504 context->GetDispatchEvent(),
505 context->GetSendDoneEvent(),
[email protected]1c4947f2009-01-15 22:25:11506 pump_messages_event
507 };
508
509 unsigned count = pump_messages_event ? 3: 2;
[email protected]7dc8d792009-11-20 17:30:44510 size_t result = WaitableEvent::WaitMany(objects, count);
[email protected]1c4947f2009-01-15 22:25:11511 if (result == 0 /* dispatch event */) {
[email protected]3cdb7af812008-10-24 19:21:13512 // We're waiting for a reply, but we received a blocking synchronous
513 // call. We must process it or otherwise a deadlock might occur.
[email protected]9eec2252009-12-01 02:34:18514 context->GetDispatchEvent()->Reset();
515 context->DispatchMessages();
[email protected]3cdb7af812008-10-24 19:21:13516 continue;
517 }
518
[email protected]1c4947f2009-01-15 22:25:11519 if (result == 2 /* pump_messages_event */)
[email protected]9eec2252009-12-01 02:34:18520 WaitForReplyWithNestedMessageLoop(context); // Run a nested message loop.
[email protected]3cdb7af812008-10-24 19:21:13521
522 break;
523 }
524}
525
[email protected]9eec2252009-12-01 02:34:18526void SyncChannel::WaitForReplyWithNestedMessageLoop(SyncContext* context) {
[email protected]ac0efda2009-10-14 16:22:02527 base::WaitableEventWatcher send_done_watcher;
528
[email protected]9eec2252009-12-01 02:34:18529 ReceivedSyncMsgQueue* sync_msg_queue = context->received_sync_msgs();
[email protected]ac0efda2009-10-14 16:22:02530 DCHECK(sync_msg_queue != NULL);
531
532 base::WaitableEventWatcher* old_send_done_event_watcher =
533 sync_msg_queue->top_send_done_watcher();
534
[email protected]329be052013-02-04 18:14:28535 base::WaitableEventWatcher::EventCallback old_callback;
[email protected]ac0efda2009-10-14 16:22:02536 base::WaitableEvent* old_event = NULL;
537
538 // Maintain a local global stack of send done delegates to ensure that
539 // nested sync calls complete in the correct sequence, i.e. the
540 // outermost call completes first, etc.
541 if (old_send_done_event_watcher) {
[email protected]329be052013-02-04 18:14:28542 old_callback = old_send_done_event_watcher->callback();
[email protected]ac0efda2009-10-14 16:22:02543 old_event = old_send_done_event_watcher->GetWatchedEvent();
544 old_send_done_event_watcher->StopWatching();
545 }
546
547 sync_msg_queue->set_top_send_done_watcher(&send_done_watcher);
548
[email protected]329be052013-02-04 18:14:28549 send_done_watcher.StartWatching(context->GetSendDoneEvent(),
550 context->MakeWaitableEventCallback());
[email protected]ac0efda2009-10-14 16:22:02551
[email protected]b5717a42012-02-14 19:33:52552 {
[email protected]fd0a773a2013-04-30 20:55:03553 base::MessageLoop::ScopedNestableTaskAllower allow(
554 base::MessageLoop::current());
555 base::MessageLoop::current()->Run();
[email protected]b5717a42012-02-14 19:33:52556 }
[email protected]ac0efda2009-10-14 16:22:02557
558 sync_msg_queue->set_top_send_done_watcher(old_send_done_event_watcher);
[email protected]424379802009-10-14 19:58:13559 if (old_send_done_event_watcher && old_event) {
[email protected]329be052013-02-04 18:14:28560 old_send_done_event_watcher->StartWatching(old_event, old_callback);
[email protected]ac0efda2009-10-14 16:22:02561 }
[email protected]3cdb7af812008-10-24 19:21:13562}
563
[email protected]1c4947f2009-01-15 22:25:11564void SyncChannel::OnWaitableEventSignaled(WaitableEvent* event) {
[email protected]9eec2252009-12-01 02:34:18565 DCHECK(event == sync_context()->GetDispatchEvent());
566 // The call to DispatchMessages might delete this object, so reregister
567 // the object watcher first.
568 event->Reset();
[email protected]329be052013-02-04 18:14:28569 dispatch_watcher_.StartWatching(event, dispatch_watcher_callback_);
[email protected]9eec2252009-12-01 02:34:18570 sync_context()->DispatchMessages();
initial.commit09911bf2008-07-26 23:55:29571}
572
[email protected]952394af2011-11-16 01:06:46573void SyncChannel::StartWatching() {
574 // Ideally we only want to watch this object when running a nested message
575 // loop. However, we don't know when it exits if there's another nested
576 // message loop running under it or not, so we wouldn't know whether to
577 // stop or keep watching. So we always watch it, and create the event as
578 // manual reset since the object watcher might otherwise reset the event
579 // when we're doing a WaitMany.
[email protected]329be052013-02-04 18:14:28580 dispatch_watcher_callback_ =
581 base::Bind(&SyncChannel::OnWaitableEventSignaled,
582 base::Unretained(this));
583 dispatch_watcher_.StartWatching(sync_context()->GetDispatchEvent(),
584 dispatch_watcher_callback_);
[email protected]952394af2011-11-16 01:06:46585}
586
initial.commit09911bf2008-07-26 23:55:29587} // namespace IPC