2009-07-24 23:24:27 +00:00
|
|
|
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*-
|
|
|
|
* vim: sw=4 ts=4 et :
|
|
|
|
*/
|
2012-05-21 11:12:37 +00:00
|
|
|
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
2009-07-02 05:45:19 +00:00
|
|
|
|
|
|
|
#ifndef mozilla_ipc_ProtocolUtils_h
|
|
|
|
#define mozilla_ipc_ProtocolUtils_h 1
|
|
|
|
|
2009-10-27 21:52:37 +00:00
|
|
|
#include "base/process.h"
|
2009-12-03 08:16:03 +00:00
|
|
|
#include "base/process_util.h"
|
2009-07-02 05:45:19 +00:00
|
|
|
#include "chrome/common/ipc_message_utils.h"
|
|
|
|
|
2009-10-29 17:50:28 +00:00
|
|
|
#include "prenv.h"
|
|
|
|
|
2011-06-03 18:33:56 +00:00
|
|
|
#include "IPCMessageStart.h"
|
2013-08-22 14:39:32 +00:00
|
|
|
#include "mozilla/Attributes.h"
|
2012-08-16 04:02:32 +00:00
|
|
|
#include "mozilla/ipc/FileDescriptor.h"
|
2009-12-04 18:45:21 +00:00
|
|
|
#include "mozilla/ipc/Shmem.h"
|
2011-06-03 18:33:56 +00:00
|
|
|
#include "mozilla/ipc/Transport.h"
|
2013-05-31 13:16:57 +00:00
|
|
|
#include "mozilla/ipc/MessageLink.h"
|
|
|
|
#include "mozilla/LinkedList.h"
|
2015-02-27 06:31:00 +00:00
|
|
|
#include "mozilla/Mutex.h"
|
2014-07-04 18:04:13 +00:00
|
|
|
#include "MainThreadUtils.h"
|
2009-12-03 08:16:28 +00:00
|
|
|
|
2014-02-03 13:11:50 +00:00
|
|
|
#if defined(ANDROID) && defined(DEBUG)
|
|
|
|
#include <android/log.h>
|
|
|
|
#endif
|
|
|
|
|
2009-12-03 08:16:28 +00:00
|
|
|
// WARNING: this takes into account the private, special-message-type
|
|
|
|
// enum in ipc_channel.h. They need to be kept in sync.
|
|
|
|
namespace {
|
2011-06-03 18:33:56 +00:00
|
|
|
// XXX the max message ID is actually kuint32max now ... when this
|
|
|
|
// changed, the assumptions of the special message IDs changed in that
|
|
|
|
// they're not carving out messages from likely-unallocated space, but
|
|
|
|
// rather carving out messages from the end of space allocated to
|
|
|
|
// protocol 0. Oops! We can get away with this until protocol 0
|
|
|
|
// starts approaching its 65,536th message.
|
2009-12-03 08:16:28 +00:00
|
|
|
enum {
|
2015-06-19 18:32:35 +00:00
|
|
|
CHANNEL_OPENED_MESSAGE_TYPE = kuint16max - 6,
|
|
|
|
SHMEM_DESTROYED_MESSAGE_TYPE = kuint16max - 5,
|
|
|
|
SHMEM_CREATED_MESSAGE_TYPE = kuint16max - 4,
|
|
|
|
GOODBYE_MESSAGE_TYPE = kuint16max - 3,
|
|
|
|
CANCEL_MESSAGE_TYPE = kuint16max - 2,
|
2013-06-20 21:32:02 +00:00
|
|
|
|
|
|
|
// kuint16max - 1 is used by ipc_channel.h.
|
2009-12-03 08:16:28 +00:00
|
|
|
};
|
|
|
|
}
|
2009-07-02 05:45:19 +00:00
|
|
|
|
|
|
|
namespace mozilla {
|
2013-05-31 13:16:57 +00:00
|
|
|
namespace dom {
|
|
|
|
class ContentParent;
|
|
|
|
}
|
|
|
|
|
|
|
|
namespace net {
|
|
|
|
class NeckoParent;
|
|
|
|
}
|
|
|
|
|
2009-07-02 05:45:19 +00:00
|
|
|
namespace ipc {
|
|
|
|
|
2014-02-25 13:12:49 +00:00
|
|
|
#ifdef XP_WIN
|
|
|
|
const base::ProcessHandle kInvalidProcessHandle = INVALID_HANDLE_VALUE;
|
2015-04-01 08:40:35 +00:00
|
|
|
|
|
|
|
// In theory, on Windows, this is a valid process ID, but in practice they are
|
|
|
|
// currently divisible by four. Process IDs share the kernel handle allocation
|
|
|
|
// code and they are guaranteed to be divisible by four.
|
|
|
|
// As this could change for process IDs we shouldn't generally rely on this
|
|
|
|
// property, however even if that were to change, it seems safe to rely on this
|
|
|
|
// particular value never being used.
|
|
|
|
const base::ProcessId kInvalidProcessId = kuint32max;
|
2014-02-25 13:12:49 +00:00
|
|
|
#else
|
|
|
|
const base::ProcessHandle kInvalidProcessHandle = -1;
|
2015-04-01 08:40:35 +00:00
|
|
|
const base::ProcessId kInvalidProcessId = -1;
|
2014-02-25 13:12:49 +00:00
|
|
|
#endif
|
2015-04-01 08:40:35 +00:00
|
|
|
|
|
|
|
// Scoped base::ProcessHandle to ensure base::CloseProcessHandle is called.
|
|
|
|
struct ScopedProcessHandleTraits
|
|
|
|
{
|
|
|
|
typedef base::ProcessHandle type;
|
|
|
|
|
|
|
|
static type empty()
|
|
|
|
{
|
|
|
|
return kInvalidProcessHandle;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void release(type aProcessHandle)
|
|
|
|
{
|
|
|
|
if (aProcessHandle && aProcessHandle != kInvalidProcessHandle) {
|
|
|
|
base::CloseProcessHandle(aProcessHandle);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|
|
|
|
typedef mozilla::Scoped<ScopedProcessHandleTraits> ScopedProcessHandle;
|
2014-02-25 13:12:49 +00:00
|
|
|
|
2013-05-31 13:16:57 +00:00
|
|
|
class ProtocolFdMapping;
|
|
|
|
class ProtocolCloneContext;
|
2009-07-02 05:45:19 +00:00
|
|
|
|
2009-07-24 23:24:27 +00:00
|
|
|
// Used to pass references to protocol actors across the wire.
|
|
|
|
// Actors created on the parent-side have a positive ID, and actors
|
|
|
|
// allocated on the child side have a negative ID.
|
2009-07-02 05:45:19 +00:00
|
|
|
struct ActorHandle
|
|
|
|
{
|
2009-07-24 23:24:27 +00:00
|
|
|
int mId;
|
2009-07-02 05:45:19 +00:00
|
|
|
};
|
|
|
|
|
2010-07-15 19:27:43 +00:00
|
|
|
// Used internally to represent a "trigger" that might cause a state
|
|
|
|
// transition. Triggers are normalized across parent+child to Send
|
|
|
|
// and Recv (instead of child-in, child-out, parent-in, parent-out) so
|
|
|
|
// that they can share the same state machine implementation. To
|
|
|
|
// further normalize, |Send| is used for 'call', |Recv| for 'answer'.
|
|
|
|
struct Trigger
|
|
|
|
{
|
|
|
|
enum Action { Send, Recv };
|
|
|
|
|
2012-09-17 08:37:20 +00:00
|
|
|
Trigger(Action action, int32_t msg) :
|
2010-07-15 19:27:43 +00:00
|
|
|
mAction(action),
|
|
|
|
mMsg(msg)
|
|
|
|
{}
|
|
|
|
|
|
|
|
Action mAction;
|
2012-09-17 08:37:20 +00:00
|
|
|
int32_t mMsg;
|
2010-07-15 19:27:43 +00:00
|
|
|
};
|
|
|
|
|
2013-05-31 13:16:57 +00:00
|
|
|
class ProtocolCloneContext
|
|
|
|
{
|
|
|
|
typedef mozilla::dom::ContentParent ContentParent;
|
|
|
|
typedef mozilla::net::NeckoParent NeckoParent;
|
|
|
|
|
2015-05-22 14:10:00 +00:00
|
|
|
nsRefPtr<ContentParent> mContentParent;
|
2013-05-31 13:16:57 +00:00
|
|
|
NeckoParent* mNeckoParent;
|
|
|
|
|
|
|
|
public:
|
2015-05-22 14:10:00 +00:00
|
|
|
ProtocolCloneContext();
|
2013-05-31 13:16:57 +00:00
|
|
|
|
2015-05-22 14:10:00 +00:00
|
|
|
~ProtocolCloneContext();
|
|
|
|
|
|
|
|
void SetContentParent(ContentParent* aContentParent);
|
2013-05-31 13:16:57 +00:00
|
|
|
|
|
|
|
ContentParent* GetContentParent() { return mContentParent; }
|
|
|
|
|
|
|
|
void SetNeckoParent(NeckoParent* aNeckoParent)
|
|
|
|
{
|
|
|
|
mNeckoParent = aNeckoParent;
|
|
|
|
}
|
|
|
|
|
|
|
|
NeckoParent* GetNeckoParent() { return mNeckoParent; }
|
|
|
|
};
|
|
|
|
|
2009-07-20 16:59:51 +00:00
|
|
|
template<class ListenerT>
|
2015-06-06 21:37:59 +00:00
|
|
|
class IProtocolManager
|
2009-07-02 05:45:19 +00:00
|
|
|
{
|
|
|
|
public:
|
2009-12-03 08:16:28 +00:00
|
|
|
enum ActorDestroyReason {
|
2011-03-21 16:00:00 +00:00
|
|
|
FailedConstructor,
|
2009-12-03 08:16:28 +00:00
|
|
|
Deletion,
|
|
|
|
AncestorDeletion,
|
|
|
|
NormalShutdown,
|
|
|
|
AbnormalShutdown
|
|
|
|
};
|
|
|
|
|
2015-04-01 08:40:35 +00:00
|
|
|
typedef base::ProcessId ProcessId;
|
2009-10-27 21:52:37 +00:00
|
|
|
|
2012-09-17 08:37:20 +00:00
|
|
|
virtual int32_t Register(ListenerT*) = 0;
|
|
|
|
virtual int32_t RegisterID(ListenerT*, int32_t) = 0;
|
|
|
|
virtual ListenerT* Lookup(int32_t) = 0;
|
|
|
|
virtual void Unregister(int32_t) = 0;
|
|
|
|
virtual void RemoveManagee(int32_t, ListenerT*) = 0;
|
2010-03-23 05:02:16 +00:00
|
|
|
|
2010-04-16 05:29:16 +00:00
|
|
|
virtual Shmem::SharedMemory* CreateSharedMemory(
|
2012-09-17 08:37:20 +00:00
|
|
|
size_t, SharedMemory::SharedMemoryType, bool, int32_t*) = 0;
|
|
|
|
virtual bool AdoptSharedMemory(Shmem::SharedMemory*, int32_t*) = 0;
|
|
|
|
virtual Shmem::SharedMemory* LookupSharedMemory(int32_t) = 0;
|
2010-05-22 19:35:33 +00:00
|
|
|
virtual bool IsTrackingSharedMemory(Shmem::SharedMemory*) = 0;
|
2010-04-27 01:11:40 +00:00
|
|
|
virtual bool DestroySharedMemory(Shmem&) = 0;
|
2010-03-23 05:02:16 +00:00
|
|
|
|
2011-06-03 18:33:55 +00:00
|
|
|
// XXX odd ducks, acknowledged
|
2015-04-01 08:40:35 +00:00
|
|
|
virtual ProcessId OtherPid() const = 0;
|
2013-09-28 01:42:08 +00:00
|
|
|
virtual MessageChannel* GetIPCChannel() = 0;
|
2013-05-31 13:16:57 +00:00
|
|
|
|
|
|
|
// The implementation of function is generated by code generator.
|
|
|
|
virtual void CloneManagees(ListenerT* aSource,
|
|
|
|
ProtocolCloneContext* aCtx) = 0;
|
|
|
|
};
|
|
|
|
|
|
|
|
typedef IPCMessageStart ProtocolId;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* All RPC protocols should implement this interface.
|
|
|
|
*/
|
|
|
|
class IProtocol : protected MessageListener
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
/**
|
|
|
|
* This function is used to clone this protocol actor.
|
|
|
|
*
|
|
|
|
* see IProtocol::CloneProtocol()
|
|
|
|
*/
|
|
|
|
virtual IProtocol*
|
|
|
|
CloneProtocol(MessageChannel* aChannel,
|
|
|
|
ProtocolCloneContext* aCtx) = 0;
|
|
|
|
};
|
|
|
|
|
|
|
|
/**
|
|
|
|
* All top-level protocols should inherit this class.
|
|
|
|
*
|
|
|
|
* IToplevelProtocol tracks all top-level protocol actors created from
|
|
|
|
* this protocol actor.
|
|
|
|
*/
|
2015-02-27 06:31:00 +00:00
|
|
|
class IToplevelProtocol : private LinkedListElement<IToplevelProtocol>
|
2013-05-31 13:16:57 +00:00
|
|
|
{
|
2015-02-27 06:31:00 +00:00
|
|
|
friend class LinkedList<IToplevelProtocol>;
|
|
|
|
friend class LinkedListElement<IToplevelProtocol>;
|
2013-05-31 13:16:57 +00:00
|
|
|
|
2015-02-27 06:31:00 +00:00
|
|
|
protected:
|
|
|
|
explicit IToplevelProtocol(ProtocolId aProtoId);
|
2013-05-31 13:16:57 +00:00
|
|
|
~IToplevelProtocol();
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Add an actor to the list of actors that have been opened by this
|
|
|
|
* protocol.
|
|
|
|
*/
|
|
|
|
void AddOpenedActor(IToplevelProtocol* aActor);
|
|
|
|
|
|
|
|
public:
|
|
|
|
void SetTransport(Transport* aTrans)
|
|
|
|
{
|
|
|
|
mTrans = aTrans;
|
|
|
|
}
|
|
|
|
|
|
|
|
Transport* GetTransport() const { return mTrans; }
|
|
|
|
|
|
|
|
ProtocolId GetProtocolId() const { return mProtocolId; }
|
|
|
|
|
2015-02-27 06:31:00 +00:00
|
|
|
void GetOpenedActors(nsTArray<IToplevelProtocol*>& aActors);
|
|
|
|
|
|
|
|
// This Unsafe version should only be used when all other threads are
|
|
|
|
// frozen, since it performs no locking. It also takes a stack-allocated
|
|
|
|
// array and its size (number of elements) rather than an nsTArray. The Nuwa
|
|
|
|
// code that calls this function is not allowed to allocate memory.
|
|
|
|
size_t GetOpenedActorsUnsafe(IToplevelProtocol** aActors, size_t aActorsMax);
|
2013-05-31 13:16:57 +00:00
|
|
|
|
|
|
|
virtual IToplevelProtocol*
|
|
|
|
CloneToplevel(const InfallibleTArray<ProtocolFdMapping>& aFds,
|
|
|
|
base::ProcessHandle aPeerProcess,
|
|
|
|
ProtocolCloneContext* aCtx);
|
|
|
|
|
|
|
|
void CloneOpenedToplevels(IToplevelProtocol* aTemplate,
|
|
|
|
const InfallibleTArray<ProtocolFdMapping>& aFds,
|
|
|
|
base::ProcessHandle aPeerProcess,
|
|
|
|
ProtocolCloneContext* aCtx);
|
|
|
|
|
|
|
|
private:
|
2015-02-27 06:31:00 +00:00
|
|
|
void AddOpenedActorLocked(IToplevelProtocol* aActor);
|
|
|
|
void GetOpenedActorsLocked(nsTArray<IToplevelProtocol*>& aActors);
|
|
|
|
|
2013-05-31 13:16:57 +00:00
|
|
|
LinkedList<IToplevelProtocol> mOpenActors; // All protocol actors opened by this.
|
2015-02-27 06:31:00 +00:00
|
|
|
IToplevelProtocol* mOpener;
|
2013-05-31 13:16:57 +00:00
|
|
|
|
|
|
|
ProtocolId mProtocolId;
|
|
|
|
Transport* mTrans;
|
2009-07-02 05:45:19 +00:00
|
|
|
};
|
|
|
|
|
2009-10-29 17:50:28 +00:00
|
|
|
|
|
|
|
inline bool
|
|
|
|
LoggingEnabled()
|
|
|
|
{
|
|
|
|
#if defined(DEBUG)
|
|
|
|
return !!PR_GetEnv("MOZ_IPC_MESSAGE_LOG");
|
|
|
|
#else
|
|
|
|
return false;
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2014-08-20 19:49:11 +00:00
|
|
|
inline bool
|
|
|
|
LoggingEnabledFor(const char *aTopLevelProtocol)
|
|
|
|
{
|
|
|
|
#if defined(DEBUG)
|
|
|
|
const char *filter = PR_GetEnv("MOZ_IPC_MESSAGE_LOG");
|
|
|
|
if (!filter) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
return strcmp(filter, "1") == 0 || strcmp(filter, aTopLevelProtocol) == 0;
|
|
|
|
#else
|
|
|
|
return false;
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2013-08-22 14:39:32 +00:00
|
|
|
MOZ_NEVER_INLINE void
|
2013-07-24 16:38:24 +00:00
|
|
|
ProtocolErrorBreakpoint(const char* aMsg);
|
2009-12-04 18:45:21 +00:00
|
|
|
|
2013-08-22 14:39:32 +00:00
|
|
|
MOZ_NEVER_INLINE void
|
|
|
|
FatalError(const char* aProtocolName, const char* aMsg,
|
2015-04-01 08:40:35 +00:00
|
|
|
base::ProcessId aOtherPid, bool aIsParent);
|
2013-08-22 14:39:32 +00:00
|
|
|
|
2011-06-03 18:33:56 +00:00
|
|
|
struct PrivateIPDLInterface {};
|
|
|
|
|
|
|
|
bool
|
|
|
|
Bridge(const PrivateIPDLInterface&,
|
2015-04-01 08:40:35 +00:00
|
|
|
MessageChannel*, base::ProcessId, MessageChannel*, base::ProcessId,
|
2013-08-20 19:46:41 +00:00
|
|
|
ProtocolId, ProtocolId);
|
2011-06-03 18:33:56 +00:00
|
|
|
|
2011-06-03 18:33:56 +00:00
|
|
|
bool
|
|
|
|
Open(const PrivateIPDLInterface&,
|
2015-04-01 08:40:35 +00:00
|
|
|
MessageChannel*, base::ProcessId, Transport::Mode,
|
2013-08-20 19:46:41 +00:00
|
|
|
ProtocolId, ProtocolId);
|
2011-06-03 18:33:56 +00:00
|
|
|
|
2011-06-03 18:33:56 +00:00
|
|
|
bool
|
|
|
|
UnpackChannelOpened(const PrivateIPDLInterface&,
|
|
|
|
const IPC::Message&,
|
|
|
|
TransportDescriptor*, base::ProcessId*, ProtocolId*);
|
|
|
|
|
2015-04-01 08:40:35 +00:00
|
|
|
#if defined(XP_WIN)
|
|
|
|
// This is a restricted version of Windows' DuplicateHandle() function
|
|
|
|
// that works inside the sandbox and can send handles but not retrieve
|
|
|
|
// them. Unlike DuplicateHandle(), it takes a process ID rather than
|
|
|
|
// a process handle. It returns true on success, false otherwise.
|
|
|
|
bool
|
|
|
|
DuplicateHandle(HANDLE aSourceHandle,
|
|
|
|
DWORD aTargetProcessId,
|
|
|
|
HANDLE* aTargetHandle,
|
|
|
|
DWORD aDesiredAccess,
|
|
|
|
DWORD aOptions);
|
|
|
|
#endif
|
|
|
|
|
2009-07-02 05:45:19 +00:00
|
|
|
} // namespace ipc
|
|
|
|
} // namespace mozilla
|
|
|
|
|
|
|
|
|
|
|
|
namespace IPC {
|
|
|
|
|
|
|
|
template <>
|
|
|
|
struct ParamTraits<mozilla::ipc::ActorHandle>
|
|
|
|
{
|
2009-07-24 23:24:27 +00:00
|
|
|
typedef mozilla::ipc::ActorHandle paramType;
|
|
|
|
|
|
|
|
static void Write(Message* aMsg, const paramType& aParam)
|
|
|
|
{
|
|
|
|
IPC::WriteParam(aMsg, aParam.mId);
|
|
|
|
}
|
|
|
|
|
|
|
|
static bool Read(const Message* aMsg, void** aIter, paramType* aResult)
|
|
|
|
{
|
|
|
|
int id;
|
|
|
|
if (IPC::ReadParam(aMsg, aIter, &id)) {
|
|
|
|
aResult->mId = id;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return false;
|
2009-07-02 05:45:19 +00:00
|
|
|
}
|
|
|
|
|
2009-07-24 23:24:27 +00:00
|
|
|
static void Log(const paramType& aParam, std::wstring* aLog)
|
|
|
|
{
|
|
|
|
aLog->append(StringPrintf(L"(%d)", aParam.mId));
|
|
|
|
}
|
2009-07-02 05:45:19 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace IPC
|
|
|
|
|
|
|
|
|
|
|
|
#endif // mozilla_ipc_ProtocolUtils_h
|