2009-06-29 18:38:29 +00:00
|
|
|
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*-
|
|
|
|
* vim: sw=4 ts=4 et :
|
2009-07-13 21:55:04 +00:00
|
|
|
*/
|
|
|
|
/* ***** BEGIN LICENSE BLOCK *****
|
2009-06-29 18:38:29 +00:00
|
|
|
* Version: MPL 1.1/GPL 2.0/LGPL 2.1
|
|
|
|
*
|
|
|
|
* The contents of this file are subject to the Mozilla Public License Version
|
|
|
|
* 1.1 (the "License"); you may not use this file except in compliance with
|
|
|
|
* the License. You may obtain a copy of the License at
|
|
|
|
* http://www.mozilla.org/MPL/
|
|
|
|
*
|
|
|
|
* Software distributed under the License is distributed on an "AS IS" basis,
|
|
|
|
* WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
|
|
|
|
* for the specific language governing rights and limitations under the
|
|
|
|
* License.
|
|
|
|
*
|
|
|
|
* The Original Code is Mozilla Plugin App.
|
|
|
|
*
|
|
|
|
* The Initial Developer of the Original Code is
|
|
|
|
* Chris Jones <jones.chris.g@gmail.com>
|
|
|
|
* Portions created by the Initial Developer are Copyright (C) 2009
|
|
|
|
* the Initial Developer. All Rights Reserved.
|
|
|
|
*
|
|
|
|
* Contributor(s):
|
|
|
|
*
|
|
|
|
* Alternatively, the contents of this file may be used under the terms of
|
|
|
|
* either the GNU General Public License Version 2 or later (the "GPL"), or
|
|
|
|
* the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
|
|
|
|
* in which case the provisions of the GPL or the LGPL are applicable instead
|
|
|
|
* of those above. If you wish to allow use of your version of this file only
|
|
|
|
* under the terms of either the GPL or the LGPL, and not to allow others to
|
|
|
|
* use your version of this file under the terms of the MPL, indicate your
|
|
|
|
* decision by deleting the provisions above and replace them with the notice
|
|
|
|
* and other provisions required by the GPL or the LGPL. If you do not delete
|
|
|
|
* the provisions above, a recipient may use your version of this file under
|
|
|
|
* the terms of any one of the MPL, the GPL or the LGPL.
|
|
|
|
*
|
|
|
|
* ***** END LICENSE BLOCK ***** */
|
|
|
|
|
|
|
|
#include "mozilla/ipc/RPCChannel.h"
|
2009-07-02 05:45:19 +00:00
|
|
|
#include "mozilla/ipc/GeckoThread.h"
|
2009-06-29 18:38:29 +00:00
|
|
|
|
|
|
|
#include "nsDebug.h"
|
|
|
|
|
|
|
|
using mozilla::MutexAutoLock;
|
2009-09-10 23:54:37 +00:00
|
|
|
using mozilla::MutexAutoUnlock;
|
2009-06-29 18:38:29 +00:00
|
|
|
|
|
|
|
template<>
|
|
|
|
struct RunnableMethodTraits<mozilla::ipc::RPCChannel>
|
|
|
|
{
|
|
|
|
static void RetainCallee(mozilla::ipc::RPCChannel* obj) { }
|
|
|
|
static void ReleaseCallee(mozilla::ipc::RPCChannel* obj) { }
|
|
|
|
};
|
|
|
|
|
|
|
|
namespace mozilla {
|
|
|
|
namespace ipc {
|
|
|
|
|
|
|
|
bool
|
|
|
|
RPCChannel::Call(Message* msg, Message* reply)
|
|
|
|
{
|
2009-10-08 19:11:13 +00:00
|
|
|
AssertWorkerThread();
|
2009-08-19 15:44:56 +00:00
|
|
|
NS_ABORT_IF_FALSE(!ProcessingSyncMessage(),
|
|
|
|
"violation of sync handler invariant");
|
2009-09-22 02:02:15 +00:00
|
|
|
NS_ABORT_IF_FALSE(msg->is_rpc(),
|
|
|
|
"can only Call() RPC messages here");
|
|
|
|
|
2009-10-08 21:44:43 +00:00
|
|
|
MutexAutoLock lock(mMutex);
|
|
|
|
|
2009-09-22 02:02:15 +00:00
|
|
|
if (!Connected())
|
|
|
|
// trying to Send() to a closed or error'd channel
|
|
|
|
return false;
|
2009-07-02 05:45:19 +00:00
|
|
|
|
2009-09-11 07:28:09 +00:00
|
|
|
mStack.push(*msg);
|
2009-10-08 21:44:43 +00:00
|
|
|
msg->set_rpc_remote_stack_depth_guess(mRemoteStackDepthGuess);
|
|
|
|
msg->set_rpc_local_stack_depth(StackDepth());
|
2009-08-19 05:22:01 +00:00
|
|
|
|
|
|
|
// bypass |SyncChannel::Send| b/c RPCChannel implements its own
|
|
|
|
// waiting semantics
|
2009-07-13 21:55:04 +00:00
|
|
|
AsyncChannel::Send(msg);
|
|
|
|
|
2009-06-29 18:38:29 +00:00
|
|
|
while (1) {
|
2009-09-11 07:28:09 +00:00
|
|
|
// here we're waiting for something to happen. see long
|
|
|
|
// comment about the queue in RPCChannel.h
|
2009-09-22 02:02:15 +00:00
|
|
|
while (Connected() && mPending.empty()) {
|
2009-09-11 07:28:09 +00:00
|
|
|
mCvar.Wait();
|
|
|
|
}
|
|
|
|
|
2009-09-22 02:02:15 +00:00
|
|
|
if (!Connected())
|
|
|
|
// FIXME more sophisticated error handling
|
|
|
|
return false;
|
|
|
|
|
2009-09-11 07:28:09 +00:00
|
|
|
Message recvd = mPending.front();
|
2009-06-29 18:38:29 +00:00
|
|
|
mPending.pop();
|
|
|
|
|
2009-09-11 07:28:09 +00:00
|
|
|
// async message. process it, go back to waiting
|
|
|
|
if (!recvd.is_sync() && !recvd.is_rpc()) {
|
|
|
|
MutexAutoUnlock unlock(mMutex);
|
|
|
|
|
|
|
|
AsyncChannel::OnDispatchMessage(recvd);
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2009-09-10 23:54:37 +00:00
|
|
|
// something sync. Let the sync dispatcher take care of it
|
|
|
|
// (it may be an invalid message, but the sync handler will
|
|
|
|
// check that).
|
|
|
|
if (recvd.is_sync()) {
|
2009-10-08 21:44:43 +00:00
|
|
|
if (!mPending.empty())
|
|
|
|
RPC_DEBUGABORT("other side is malfunctioning");
|
2009-09-10 23:54:37 +00:00
|
|
|
MutexAutoUnlock unlock(mMutex);
|
|
|
|
|
|
|
|
SyncChannel::OnDispatchMessage(recvd);
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
// from here on, we know that recvd.is_rpc()
|
|
|
|
NS_ABORT_IF_FALSE(recvd.is_rpc(), "wtf???");
|
|
|
|
|
|
|
|
// reply message
|
2009-08-19 05:22:01 +00:00
|
|
|
if (recvd.is_reply()) {
|
2009-10-08 21:44:43 +00:00
|
|
|
if (0 == mStack.size())
|
|
|
|
RPC_DEBUGABORT("invalid RPC stack");
|
2009-07-13 21:55:04 +00:00
|
|
|
|
2009-09-11 07:28:09 +00:00
|
|
|
const Message& outcall = mStack.top();
|
2009-08-07 23:13:20 +00:00
|
|
|
|
2009-09-11 07:28:09 +00:00
|
|
|
if (recvd.type() != (outcall.type()+1) && !recvd.is_reply_error()) {
|
2009-07-13 21:55:04 +00:00
|
|
|
// FIXME/cjones: handle error
|
2009-10-08 21:44:43 +00:00
|
|
|
RPC_DEBUGABORT("somebody's misbehavin'", "rpc", true);
|
2009-07-13 21:55:04 +00:00
|
|
|
}
|
|
|
|
|
2009-08-19 05:22:01 +00:00
|
|
|
// we received a reply to our most recent outstanding
|
|
|
|
// call. pop this frame and return the reply
|
2009-09-11 07:28:09 +00:00
|
|
|
mStack.pop();
|
2009-08-07 23:13:20 +00:00
|
|
|
|
|
|
|
bool isError = recvd.is_reply_error();
|
|
|
|
if (!isError) {
|
|
|
|
*reply = recvd;
|
|
|
|
}
|
2009-06-29 18:38:29 +00:00
|
|
|
|
2009-09-11 07:28:09 +00:00
|
|
|
if (0 == StackDepth()) {
|
|
|
|
// this was the last outcall we were waiting on.
|
|
|
|
// flush the pending queue into the "regular" event
|
|
|
|
// queue, checking invariants along the way. see long
|
|
|
|
// comment in RPCChannel.h
|
|
|
|
bool seenBlocker = false;
|
|
|
|
|
|
|
|
// A<* (S< | C<)
|
|
|
|
while (!mPending.empty()) {
|
|
|
|
Message m = mPending.front();
|
|
|
|
mPending.pop();
|
|
|
|
|
|
|
|
if (m.is_sync()) {
|
2009-10-08 21:44:43 +00:00
|
|
|
if (seenBlocker)
|
|
|
|
RPC_DEBUGABORT("other side is malfunctioning",
|
|
|
|
"sync", m.is_reply());
|
2009-09-11 07:28:09 +00:00
|
|
|
seenBlocker = true;
|
|
|
|
|
|
|
|
MessageLoop::current()->PostTask(
|
|
|
|
FROM_HERE,
|
|
|
|
NewRunnableMethod(this,
|
|
|
|
&RPCChannel::OnDelegate, m));
|
|
|
|
}
|
|
|
|
else if (m.is_rpc()) {
|
2009-10-08 21:44:43 +00:00
|
|
|
if (seenBlocker)
|
|
|
|
RPC_DEBUGABORT("other side is malfunctioning",
|
|
|
|
"rpc", m.is_reply());
|
2009-09-11 07:28:09 +00:00
|
|
|
seenBlocker = true;
|
|
|
|
|
|
|
|
MessageLoop::current()->PostTask(
|
|
|
|
FROM_HERE,
|
|
|
|
NewRunnableMethod(this,
|
|
|
|
&RPCChannel::OnIncall,
|
|
|
|
m));
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
MessageLoop::current()->PostTask(
|
|
|
|
FROM_HERE,
|
|
|
|
NewRunnableMethod(this,
|
|
|
|
&RPCChannel::OnDelegate, m));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
// shouldn't have queued any more messages, since
|
|
|
|
// the other side is now supposed to be blocked on a
|
|
|
|
// reply from us!
|
2009-10-08 21:44:43 +00:00
|
|
|
if (!mPending.empty())
|
|
|
|
RPC_DEBUGABORT("other side should have been blocked");
|
2009-09-11 07:28:09 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// unlocks mMutex
|
2009-08-07 23:13:20 +00:00
|
|
|
return !isError;
|
2009-06-29 18:38:29 +00:00
|
|
|
}
|
|
|
|
|
2009-10-08 21:44:43 +00:00
|
|
|
// in-call. process in a new stack frame. the other side
|
|
|
|
// should be blocked on us, hence an empty queue, except for
|
|
|
|
// the case where this side "won" an RPC race and the other
|
|
|
|
// side already replied back
|
|
|
|
|
|
|
|
if (!(mPending.empty()
|
|
|
|
|| (1 == mPending.size()
|
|
|
|
&& mPending.front().is_rpc()
|
|
|
|
&& mPending.front().is_reply()
|
|
|
|
&& 1 == StackDepth())))
|
|
|
|
RPC_DEBUGABORT("other side is malfunctioning", "rpc");
|
2009-09-11 07:28:09 +00:00
|
|
|
|
|
|
|
// "snapshot" the current stack depth while we own the Mutex
|
|
|
|
size_t stackDepth = StackDepth();
|
|
|
|
{
|
2009-09-10 23:54:37 +00:00
|
|
|
MutexAutoUnlock unlock(mMutex);
|
2009-06-29 18:38:29 +00:00
|
|
|
// someone called in to us from the other side. handle the call
|
2009-08-19 05:22:01 +00:00
|
|
|
ProcessIncall(recvd, stackDepth);
|
2009-07-13 21:55:04 +00:00
|
|
|
// FIXME/cjones: error handling
|
2009-06-29 18:38:29 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2009-09-11 07:28:09 +00:00
|
|
|
void
|
|
|
|
RPCChannel::OnDelegate(const Message& msg)
|
|
|
|
{
|
2009-10-08 19:11:13 +00:00
|
|
|
AssertWorkerThread();
|
2009-09-11 07:28:09 +00:00
|
|
|
if (msg.is_sync())
|
|
|
|
return SyncChannel::OnDispatchMessage(msg);
|
|
|
|
else if (!msg.is_rpc())
|
|
|
|
return AsyncChannel::OnDispatchMessage(msg);
|
2009-10-08 21:44:43 +00:00
|
|
|
RPC_DEBUGABORT("fatal logic error");
|
2009-09-11 07:28:09 +00:00
|
|
|
}
|
|
|
|
|
2009-09-22 15:23:29 +00:00
|
|
|
void
|
|
|
|
RPCChannel::OnMaybeDequeueOne()
|
|
|
|
{
|
2009-10-08 19:11:13 +00:00
|
|
|
AssertWorkerThread();
|
2009-09-22 15:23:29 +00:00
|
|
|
Message recvd;
|
|
|
|
{
|
|
|
|
MutexAutoLock lock(mMutex);
|
|
|
|
|
|
|
|
if (mPending.empty())
|
|
|
|
return;
|
|
|
|
|
2009-10-08 21:44:43 +00:00
|
|
|
if (mPending.size() != 1)
|
|
|
|
RPC_DEBUGABORT("should only have one msg");
|
|
|
|
if (!(mPending.front().is_rpc() || mPending.front().is_sync()))
|
|
|
|
RPC_DEBUGABORT("msg should be RPC or sync", "async");
|
2009-09-22 15:23:29 +00:00
|
|
|
|
|
|
|
recvd = mPending.front();
|
|
|
|
mPending.pop();
|
|
|
|
}
|
2009-10-08 21:44:43 +00:00
|
|
|
return recvd.is_sync() ?
|
|
|
|
SyncChannel::OnDispatchMessage(recvd)
|
|
|
|
: RPCChannel::OnIncall(recvd);
|
2009-09-22 15:23:29 +00:00
|
|
|
}
|
|
|
|
|
2009-07-13 21:55:04 +00:00
|
|
|
void
|
2009-08-19 05:22:01 +00:00
|
|
|
RPCChannel::OnIncall(const Message& call)
|
2009-06-29 18:38:29 +00:00
|
|
|
{
|
2009-10-08 19:11:13 +00:00
|
|
|
AssertWorkerThread();
|
2009-09-11 07:28:09 +00:00
|
|
|
// We only reach here from the "regular" event loop, when
|
|
|
|
// StackDepth() == 0. That's the "snapshot" of the state of the
|
|
|
|
// RPCChannel we use when processing this message.
|
2009-08-19 05:22:01 +00:00
|
|
|
ProcessIncall(call, 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
RPCChannel::ProcessIncall(const Message& call, size_t stackDepth)
|
|
|
|
{
|
2009-10-08 19:11:13 +00:00
|
|
|
AssertWorkerThread();
|
2009-08-19 05:22:01 +00:00
|
|
|
mMutex.AssertNotCurrentThreadOwns();
|
|
|
|
NS_ABORT_IF_FALSE(call.is_rpc(),
|
|
|
|
"should have been handled by SyncChannel");
|
|
|
|
|
2009-10-08 21:44:43 +00:00
|
|
|
// Race detection: see the long comment near
|
|
|
|
// mRemoteStackDepthGuess in RPCChannel.h. "Remote" stack depth
|
|
|
|
// means our side, and "local" means other side.
|
|
|
|
if (call.rpc_remote_stack_depth_guess() != stackDepth) {
|
|
|
|
NS_WARNING("RPC in-calls have raced!");
|
|
|
|
|
|
|
|
// assumption: at this point, we have one call on our stack,
|
|
|
|
// as does the other side. But both we and the other side
|
|
|
|
// think that the opposite side *doesn't* have any calls on
|
|
|
|
// its stack. We need to verify this because race resolution
|
|
|
|
// depends on this fact.
|
|
|
|
if (!((1 == stackDepth && 0 == mRemoteStackDepthGuess)
|
|
|
|
&& (1 == call.rpc_local_stack_depth()
|
|
|
|
&& 0 == call.rpc_remote_stack_depth_guess())))
|
|
|
|
// TODO this /could/ be construed as evidence of a
|
|
|
|
// misbehaving process, so should probably go through
|
|
|
|
// regular error-handling channels
|
|
|
|
RPC_DEBUGABORT("fatal logic error");
|
|
|
|
|
|
|
|
// the "winner", if there is one, gets to defer processing of
|
|
|
|
// the other side's in-call
|
|
|
|
bool defer;
|
|
|
|
const char* winner;
|
|
|
|
switch (mRacePolicy) {
|
|
|
|
case RRPChildWins:
|
|
|
|
winner = "child";
|
|
|
|
defer = mChild;
|
|
|
|
break;
|
|
|
|
case RRPParentWins:
|
|
|
|
winner = "parent";
|
|
|
|
defer = !mChild;
|
|
|
|
break;
|
|
|
|
case RRPError:
|
|
|
|
NS_RUNTIMEABORT("NYI: 'Error' RPC race policy");
|
|
|
|
return;
|
|
|
|
default:
|
|
|
|
NS_RUNTIMEABORT("not reached");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
printf(" (%s won, so we're%sdeferring)\n",
|
|
|
|
winner, defer ? " " : " not ");
|
|
|
|
|
|
|
|
if (defer) {
|
|
|
|
mWorkerLoop->PostTask(
|
|
|
|
FROM_HERE,
|
|
|
|
NewRunnableMethod(this, &RPCChannel::OnIncall, call));
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// we "lost" and need to process the other side's in-call
|
|
|
|
}
|
2009-06-29 18:38:29 +00:00
|
|
|
|
2009-08-07 23:13:20 +00:00
|
|
|
Message* reply = nsnull;
|
2009-08-19 05:22:01 +00:00
|
|
|
|
2009-10-08 21:44:43 +00:00
|
|
|
++mRemoteStackDepthGuess;
|
2009-08-19 05:22:01 +00:00
|
|
|
Result rv =
|
|
|
|
static_cast<RPCListener*>(mListener)->OnCallReceived(call, reply);
|
2009-10-08 21:44:43 +00:00
|
|
|
--mRemoteStackDepthGuess;
|
2009-08-19 05:22:01 +00:00
|
|
|
|
|
|
|
switch (rv) {
|
2009-07-15 21:38:55 +00:00
|
|
|
case MsgProcessed:
|
2009-09-14 20:00:31 +00:00
|
|
|
break;
|
2009-06-29 18:38:29 +00:00
|
|
|
|
2009-07-15 21:38:55 +00:00
|
|
|
case MsgNotKnown:
|
|
|
|
case MsgNotAllowed:
|
|
|
|
case MsgPayloadError:
|
|
|
|
case MsgRouteError:
|
|
|
|
case MsgValueError:
|
2009-08-07 23:13:20 +00:00
|
|
|
delete reply;
|
|
|
|
reply = new Message();
|
|
|
|
reply->set_rpc();
|
|
|
|
reply->set_reply();
|
|
|
|
reply->set_reply_error();
|
2009-07-13 21:55:04 +00:00
|
|
|
// FIXME/cjones: error handling; OnError()?
|
2009-09-14 20:00:31 +00:00
|
|
|
break;
|
2009-06-29 18:38:29 +00:00
|
|
|
|
|
|
|
default:
|
|
|
|
NOTREACHED();
|
2009-07-13 21:55:04 +00:00
|
|
|
return;
|
2009-06-29 18:38:29 +00:00
|
|
|
}
|
2009-09-14 20:00:31 +00:00
|
|
|
|
|
|
|
mIOLoop->PostTask(FROM_HERE,
|
|
|
|
NewRunnableMethod(this,
|
|
|
|
&RPCChannel::OnSendReply,
|
|
|
|
reply));
|
|
|
|
|
2009-06-29 18:38:29 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
//
|
|
|
|
// The methods below run in the context of the IO thread, and can proxy
|
|
|
|
// back to the methods above
|
|
|
|
//
|
|
|
|
|
|
|
|
void
|
|
|
|
RPCChannel::OnMessageReceived(const Message& msg)
|
2009-07-13 21:55:04 +00:00
|
|
|
{
|
2009-10-08 19:11:13 +00:00
|
|
|
AssertIOThread();
|
2009-07-13 21:55:04 +00:00
|
|
|
MutexAutoLock lock(mMutex);
|
|
|
|
|
2009-09-22 15:23:29 +00:00
|
|
|
// regardless of the RPC stack, if we're awaiting a sync reply, we
|
|
|
|
// know that it needs to be immediately handled to unblock us.
|
|
|
|
// The SyncChannel will check that msg is a reply, and the right
|
|
|
|
// kind of reply, then do its thing.
|
|
|
|
if (AwaitingSyncReply()
|
|
|
|
&& msg.is_sync()) {
|
|
|
|
// wake up worker thread (at SyncChannel::Send) awaiting
|
|
|
|
// this reply
|
|
|
|
mRecvd = msg;
|
|
|
|
mCvar.Notify();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// otherwise, we handle sync/async/rpc messages differently depending
|
|
|
|
// on whether the RPC channel is idle
|
|
|
|
|
2009-08-19 05:22:01 +00:00
|
|
|
if (0 == StackDepth()) {
|
2009-09-10 23:54:37 +00:00
|
|
|
// we're idle wrt to the RPC layer, and this message could be
|
|
|
|
// async, sync, or rpc.
|
2009-09-22 15:23:29 +00:00
|
|
|
|
|
|
|
// async message: delegate, doesn't affect anything
|
|
|
|
if (!msg.is_sync() && !msg.is_rpc()) {
|
2009-09-14 20:00:31 +00:00
|
|
|
MutexAutoUnlock unlock(mMutex);
|
2009-09-22 15:23:29 +00:00
|
|
|
return AsyncChannel::OnMessageReceived(msg);
|
2009-09-10 23:54:37 +00:00
|
|
|
}
|
|
|
|
|
2009-08-19 05:22:01 +00:00
|
|
|
// NB: the interaction between this and SyncChannel is rather
|
2009-09-22 15:23:29 +00:00
|
|
|
// subtle; we have to handle a fairly nasty race condition.
|
|
|
|
// The other side may send us a sync message at any time. If
|
|
|
|
// we receive it here while the worker thread is processing an
|
|
|
|
// event that will eventually send an RPC message (or will
|
|
|
|
// send an RPC message while processing any event enqueued
|
|
|
|
// before the sync message was received), then if we tried to
|
|
|
|
// enqueue the sync message in the worker's event queue, it
|
|
|
|
// would get "lost": the worker would block on the RPC reply
|
|
|
|
// without seeing the sync request, and we'd deadlock.
|
|
|
|
//
|
|
|
|
// So to avoid this case, when the RPC channel is idle and
|
|
|
|
// receives a sync request, it puts the request in the special
|
|
|
|
// RPC message queue, and asks the worker thread to process a
|
|
|
|
// task that might end up dequeuing that RPC message. The
|
|
|
|
// task *might not* dequeue a sync request --- this might
|
|
|
|
// occur if the event the worker is currently processing sends
|
|
|
|
// an RPC message. If that happens, the worker will go into
|
|
|
|
// its "wait loop" for the RPC response, and immediately
|
|
|
|
// dequeue and process the sync request.
|
|
|
|
|
|
|
|
if (msg.is_sync()) {
|
|
|
|
mPending.push(msg);
|
|
|
|
|
|
|
|
mWorkerLoop->PostTask(
|
|
|
|
FROM_HERE,
|
2009-10-08 21:44:43 +00:00
|
|
|
NewRunnableMethod(this, &RPCChannel::OnMaybeDequeueOne));
|
2009-09-22 15:23:29 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// OK: the RPC channel is idle, and we received an in-call.
|
2009-10-08 21:44:43 +00:00
|
|
|
// wake up the worker thread.
|
|
|
|
//
|
|
|
|
// Because of RPC race resolution, there's another sublety
|
|
|
|
// here. We can't enqueue an OnInCall() event directly,
|
|
|
|
// because while this code is executing, the worker thread
|
|
|
|
// concurrently might be making (or preparing to make) an
|
|
|
|
// out-call. If so, and race resolution is ParentWins or
|
|
|
|
// ChildWins, and this side is the "losing" side, then this
|
|
|
|
// side needs to "unblock" and process the new in-call. If
|
|
|
|
// the in-call were to go into the main event queue, then it
|
|
|
|
// would be lost. So it needs to go into mPending queue along
|
|
|
|
// with a OnMaybeDequeueOne() event. The OnMaybeDequeueOne()
|
|
|
|
// event handles the non-racy case.
|
2009-09-22 15:23:29 +00:00
|
|
|
|
|
|
|
NS_ABORT_IF_FALSE(msg.is_rpc(), "should be RPC");
|
|
|
|
|
2009-10-08 21:44:43 +00:00
|
|
|
mPending.push(msg);
|
|
|
|
mWorkerLoop->PostTask(
|
|
|
|
FROM_HERE,
|
|
|
|
NewRunnableMethod(this, &RPCChannel::OnMaybeDequeueOne));
|
2009-06-29 18:38:29 +00:00
|
|
|
}
|
|
|
|
else {
|
2009-09-10 23:54:37 +00:00
|
|
|
// we're waiting on an RPC reply
|
|
|
|
|
|
|
|
// NB some logic here is duplicated with SyncChannel. this is
|
|
|
|
// to allow more local reasoning
|
|
|
|
|
2009-09-11 07:28:09 +00:00
|
|
|
// NBB see the second-to-last long comment in RPCChannel.h
|
|
|
|
// describing legal queue states
|
2009-09-11 06:05:42 +00:00
|
|
|
|
2009-09-10 23:54:37 +00:00
|
|
|
// if we're waiting on a sync reply, and this message is sync,
|
2009-09-22 15:23:29 +00:00
|
|
|
// dispatch it to the sync message handler.
|
2009-09-11 07:28:09 +00:00
|
|
|
//
|
|
|
|
// since we're waiting on an RPC answer in an older stack
|
|
|
|
// frame, we know we'll eventually pop back to the
|
|
|
|
// RPCChannel::Call frame where we're awaiting the RPC reply.
|
|
|
|
// so the queue won't be forgotten!
|
2009-09-10 23:54:37 +00:00
|
|
|
|
2009-09-11 07:28:09 +00:00
|
|
|
// waiting on a sync reply, but got an async message. that's OK,
|
|
|
|
// but we defer processing of it until the sync reply comes in.
|
|
|
|
if (AwaitingSyncReply()
|
|
|
|
&& !msg.is_sync() && !msg.is_rpc()) {
|
|
|
|
mPending.push(msg);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2009-09-10 23:54:37 +00:00
|
|
|
// if this side and the other were functioning correctly, we'd
|
|
|
|
// never reach this case. RPCChannel::Call explicitly checks
|
|
|
|
// for and disallows this case. so if we reach here, the other
|
|
|
|
// side is malfunctioning (compromised?).
|
|
|
|
if (AwaitingSyncReply() /* msg.is_rpc() */) {
|
|
|
|
// FIXME other error handling?
|
2009-10-08 21:44:43 +00:00
|
|
|
RPC_DEBUGABORT("the other side is malfunctioning",
|
|
|
|
"rpc", msg.is_reply());
|
2009-09-10 23:54:37 +00:00
|
|
|
return; // not reached
|
|
|
|
}
|
|
|
|
|
2009-09-11 07:28:09 +00:00
|
|
|
// otherwise, we (legally) either got (i) async msg; (ii) sync
|
|
|
|
// in-msg; (iii) re-entrant rpc in-call; (iv) rpc reply we
|
|
|
|
// were awaiting. Dispatch to the worker, where invariants
|
|
|
|
// are checked and the message processed.
|
2009-06-29 18:38:29 +00:00
|
|
|
mPending.push(msg);
|
|
|
|
mCvar.Notify();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2009-09-22 02:02:15 +00:00
|
|
|
void
|
|
|
|
RPCChannel::OnChannelError()
|
|
|
|
{
|
2009-10-08 19:11:13 +00:00
|
|
|
AssertIOThread();
|
2009-09-22 02:02:15 +00:00
|
|
|
{
|
|
|
|
MutexAutoLock lock(mMutex);
|
|
|
|
|
|
|
|
mChannelState = ChannelError;
|
|
|
|
|
|
|
|
if (AwaitingSyncReply()
|
|
|
|
|| 0 < StackDepth()) {
|
|
|
|
mCvar.Notify();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// skip SyncChannel::OnError(); we subsume its duties
|
|
|
|
|
|
|
|
return AsyncChannel::OnChannelError();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2009-06-29 18:38:29 +00:00
|
|
|
} // namespace ipc
|
|
|
|
} // namespace mozilla
|