2016-10-29 20:38:31 +03:00
|
|
|
/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 4 -*-
|
2009-07-25 03:24:27 +04:00
|
|
|
* vim: sw=4 ts=4 et :
|
|
|
|
*/
|
2012-05-21 15:12:37 +04: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 09:45:19 +04:00
|
|
|
|
|
|
|
#ifndef mozilla_ipc_ProtocolUtils_h
|
|
|
|
#define mozilla_ipc_ProtocolUtils_h 1
|
|
|
|
|
2016-11-02 06:55:23 +03:00
|
|
|
#include "base/id_map.h"
|
2009-10-28 00:52:37 +03:00
|
|
|
#include "base/process.h"
|
2009-12-03 11:16:03 +03:00
|
|
|
#include "base/process_util.h"
|
2009-07-02 09:45:19 +04:00
|
|
|
#include "chrome/common/ipc_message_utils.h"
|
|
|
|
|
2009-10-29 20:50:28 +03:00
|
|
|
#include "prenv.h"
|
|
|
|
|
2011-06-03 22:33:56 +04:00
|
|
|
#include "IPCMessageStart.h"
|
2016-10-29 06:46:59 +03:00
|
|
|
#include "mozilla/AlreadyAddRefed.h"
|
2013-08-22 18:39:32 +04:00
|
|
|
#include "mozilla/Attributes.h"
|
2017-11-29 18:11:15 +03:00
|
|
|
#include "mozilla/ipc/ByteBuf.h"
|
2012-08-16 08:02:32 +04:00
|
|
|
#include "mozilla/ipc/FileDescriptor.h"
|
2018-04-23 21:13:36 +03:00
|
|
|
#include "mozilla/ipc/MessageChannel.h"
|
2009-12-04 21:45:21 +03:00
|
|
|
#include "mozilla/ipc/Shmem.h"
|
2011-06-03 22:33:56 +04:00
|
|
|
#include "mozilla/ipc/Transport.h"
|
2013-05-31 17:16:57 +04:00
|
|
|
#include "mozilla/ipc/MessageLink.h"
|
2018-07-22 14:51:30 +03:00
|
|
|
#include "mozilla/recordreplay/ChildIPC.h"
|
2013-05-31 17:16:57 +04:00
|
|
|
#include "mozilla/LinkedList.h"
|
2016-05-21 11:07:56 +03:00
|
|
|
#include "mozilla/Maybe.h"
|
2017-03-16 12:36:15 +03:00
|
|
|
#include "mozilla/MozPromise.h"
|
2015-02-27 09:31:00 +03:00
|
|
|
#include "mozilla/Mutex.h"
|
2016-11-15 06:26:00 +03:00
|
|
|
#include "mozilla/NotNull.h"
|
2018-06-07 22:33:40 +03:00
|
|
|
#include "mozilla/Scoped.h"
|
2016-07-07 04:51:20 +03:00
|
|
|
#include "mozilla/UniquePtr.h"
|
2014-07-04 22:04:13 +04:00
|
|
|
#include "MainThreadUtils.h"
|
Bug 1348273 - Convert crash annotations into a machine-readable list of constants; r=ted.mielczarek,njn,dholbert,mak,cpearce,mcmanus,froydnj,Dexter,jrmuizel,jchen,jimm,bz,surkov
This introduces the machinery needed to generate crash annotations from a YAML
file. The relevant C++ functions are updated to take a typed enum. JavaScript
calls are unaffected but they will throw if the string argument does not
correspond to one of the known entries in the C++ enum. The existing whitelists
and blacklists of annotations are also generated from the YAML file and all
duplicate code related to them has been consolidated. Once written out to the
.extra file the annotations are converted in string form and are no different
than the existing ones.
All existing annotations have been included in the list (and some obsolete ones
have been removed) and all call sites have been updated including tests where
appropriate.
--HG--
extra : source : 4f6c43f2830701ec5552e08e3f1b06fe6d045860
2018-07-05 16:42:11 +03:00
|
|
|
#include "nsICrashReporter.h"
|
2017-09-13 06:59:35 +03:00
|
|
|
#include "nsILabelableRunnable.h"
|
2009-12-03 11:16:28 +03:00
|
|
|
|
2014-02-03 17:11:50 +04:00
|
|
|
#if defined(ANDROID) && defined(DEBUG)
|
|
|
|
#include <android/log.h>
|
|
|
|
#endif
|
|
|
|
|
2015-10-07 21:30:33 +03:00
|
|
|
template<typename T> class nsTHashtable;
|
|
|
|
template<typename T> class nsPtrHashKey;
|
|
|
|
|
2009-12-03 11:16:28 +03: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 22:33:56 +04: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 11:16:28 +03:00
|
|
|
enum {
|
2018-05-08 17:31:44 +03:00
|
|
|
BUILD_IDS_MATCH_MESSAGE_TYPE = kuint16max - 8,
|
|
|
|
BUILD_ID_MESSAGE_TYPE = kuint16max - 7, // unused
|
|
|
|
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-21 01:32:02 +04:00
|
|
|
|
|
|
|
// kuint16max - 1 is used by ipc_channel.h.
|
2009-12-03 11:16:28 +03:00
|
|
|
};
|
2015-07-13 18:25:42 +03:00
|
|
|
|
|
|
|
} // namespace
|
2009-07-02 09:45:19 +04:00
|
|
|
|
2016-10-29 06:46:59 +03:00
|
|
|
class nsIEventTarget;
|
|
|
|
|
2009-07-02 09:45:19 +04:00
|
|
|
namespace mozilla {
|
2017-07-20 02:23:01 +03:00
|
|
|
class SchedulerGroup;
|
|
|
|
|
2013-05-31 17:16:57 +04:00
|
|
|
namespace dom {
|
|
|
|
class ContentParent;
|
2015-07-13 18:25:42 +03:00
|
|
|
} // namespace dom
|
2013-05-31 17:16:57 +04:00
|
|
|
|
|
|
|
namespace net {
|
|
|
|
class NeckoParent;
|
2015-07-13 18:25:42 +03:00
|
|
|
} // namespace net
|
2013-05-31 17:16:57 +04:00
|
|
|
|
2009-07-02 09:45:19 +04:00
|
|
|
namespace ipc {
|
|
|
|
|
2018-08-20 21:46:05 +03:00
|
|
|
#ifdef FUZZING
|
|
|
|
class ProtocolFuzzerHelper;
|
|
|
|
#endif
|
|
|
|
|
2016-11-02 02:50:07 +03:00
|
|
|
class MessageChannel;
|
|
|
|
|
2014-02-25 17:12:49 +04:00
|
|
|
#ifdef XP_WIN
|
|
|
|
const base::ProcessHandle kInvalidProcessHandle = INVALID_HANDLE_VALUE;
|
2015-04-01 11:40:35 +03: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 17:12:49 +04:00
|
|
|
#else
|
|
|
|
const base::ProcessHandle kInvalidProcessHandle = -1;
|
2015-04-01 11:40:35 +03:00
|
|
|
const base::ProcessId kInvalidProcessId = -1;
|
2014-02-25 17:12:49 +04:00
|
|
|
#endif
|
2015-04-01 11:40:35 +03: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 17:12:49 +04:00
|
|
|
|
2013-05-31 17:16:57 +04:00
|
|
|
class ProtocolFdMapping;
|
|
|
|
class ProtocolCloneContext;
|
2009-07-02 09:45:19 +04:00
|
|
|
|
2009-07-25 03:24:27 +04: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 09:45:19 +04:00
|
|
|
struct ActorHandle
|
|
|
|
{
|
2009-07-25 03:24:27 +04:00
|
|
|
int mId;
|
2009-07-02 09:45:19 +04:00
|
|
|
};
|
|
|
|
|
2016-10-30 21:26:40 +03:00
|
|
|
// What happens if Interrupt calls race?
|
|
|
|
enum RacyInterruptPolicy {
|
|
|
|
RIPError,
|
|
|
|
RIPChildWins,
|
|
|
|
RIPParentWins
|
|
|
|
};
|
|
|
|
|
2018-04-30 22:22:18 +03:00
|
|
|
|
2016-10-29 06:46:59 +03:00
|
|
|
class IToplevelProtocol;
|
|
|
|
|
2016-10-30 21:26:40 +03:00
|
|
|
class IProtocol : public HasResultCodes
|
2009-07-02 09:45:19 +04:00
|
|
|
{
|
2018-08-20 21:46:05 +03:00
|
|
|
#ifdef FUZZING
|
|
|
|
friend class mozilla::ipc::ProtocolFuzzerHelper;
|
|
|
|
#endif
|
|
|
|
|
2009-07-02 09:45:19 +04:00
|
|
|
public:
|
2009-12-03 11:16:28 +03:00
|
|
|
enum ActorDestroyReason {
|
2011-03-21 19:00:00 +03:00
|
|
|
FailedConstructor,
|
2009-12-03 11:16:28 +03:00
|
|
|
Deletion,
|
|
|
|
AncestorDeletion,
|
|
|
|
NormalShutdown,
|
|
|
|
AbnormalShutdown
|
|
|
|
};
|
|
|
|
|
2018-04-23 21:13:37 +03:00
|
|
|
// A lot of the functionality of IProtocol only differs between toplevel
|
|
|
|
// protocols (IToplevelProtocol) and managed protocols (everything else).
|
|
|
|
// If we put such functionality in IProtocol via virtual methods, that
|
|
|
|
// means that *every* protocol inherits that functionality through said
|
|
|
|
// virtual methods, then every protocol needs a (largely redundant)
|
|
|
|
// entry in its vtable. That redundancy adds up quickly with several
|
|
|
|
// hundred protocols.
|
|
|
|
//
|
|
|
|
// This class (and its two subclasses) ensure that we don't have a bunch
|
|
|
|
// of redundant entries in protocol vtables: we have a single vtable per
|
|
|
|
// subclass, and then each protocol has its own instance of one of the
|
|
|
|
// subclasses. This setup makes things a bit slower, but the space
|
|
|
|
// savings are worth it.
|
|
|
|
class ProtocolState
|
|
|
|
{
|
|
|
|
public:
|
2018-04-23 21:13:36 +03:00
|
|
|
ProtocolState() : mChannel(nullptr) {}
|
2018-04-23 21:13:37 +03:00
|
|
|
virtual ~ProtocolState() = default;
|
|
|
|
|
|
|
|
// Shared memory functions.
|
2018-04-23 21:13:37 +03:00
|
|
|
virtual Shmem::SharedMemory* CreateSharedMemory(
|
|
|
|
size_t, SharedMemory::SharedMemoryType, bool, int32_t*) = 0;
|
|
|
|
virtual Shmem::SharedMemory* LookupSharedMemory(int32_t) = 0;
|
|
|
|
virtual bool IsTrackingSharedMemory(Shmem::SharedMemory*) = 0;
|
|
|
|
virtual bool DestroySharedMemory(Shmem&) = 0;
|
2018-04-23 21:13:37 +03:00
|
|
|
|
|
|
|
// Protocol management functions.
|
|
|
|
virtual int32_t Register(IProtocol*) = 0;
|
|
|
|
virtual int32_t RegisterID(IProtocol*, int32_t) = 0;
|
|
|
|
virtual IProtocol* Lookup(int32_t) = 0;
|
|
|
|
virtual void Unregister(int32_t) = 0;
|
2018-04-23 21:13:37 +03:00
|
|
|
|
|
|
|
// Returns the event target set by SetEventTargetForActor() if available.
|
|
|
|
virtual nsIEventTarget* GetActorEventTarget() = 0;
|
|
|
|
|
|
|
|
virtual void SetEventTargetForActor(IProtocol* aActor, nsIEventTarget* aEventTarget) = 0;
|
|
|
|
virtual void ReplaceEventTargetForActor(IProtocol* aActor, nsIEventTarget* aEventTarget) = 0;
|
|
|
|
|
|
|
|
virtual already_AddRefed<nsIEventTarget>
|
|
|
|
GetActorEventTarget(IProtocol* aActor) = 0;
|
2018-04-23 21:13:36 +03:00
|
|
|
|
|
|
|
virtual const MessageChannel* GetIPCChannel() const = 0;
|
|
|
|
virtual MessageChannel* GetIPCChannel() = 0;
|
|
|
|
|
|
|
|
// XXX we have this weird setup where ProtocolState has an mChannel
|
|
|
|
// member, but it (probably?) only gets set for protocols that have
|
|
|
|
// a manager. That is, for toplevel protocols, this member is dead
|
|
|
|
// weight and should be removed, since toplevel protocols maintain
|
|
|
|
// their own channel.
|
|
|
|
void SetIPCChannel(MessageChannel* aChannel) { mChannel = aChannel; }
|
|
|
|
|
|
|
|
protected:
|
|
|
|
MessageChannel* mChannel;
|
2018-04-23 21:13:37 +03:00
|
|
|
};
|
|
|
|
|
|
|
|
// Managed protocols just forward all of their operations to the topmost
|
|
|
|
// managing protocol.
|
|
|
|
class ManagedState final : public ProtocolState
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
explicit ManagedState(IProtocol* aProtocol)
|
2018-04-23 21:13:36 +03:00
|
|
|
: ProtocolState()
|
|
|
|
, mProtocol(aProtocol)
|
2018-04-23 21:13:37 +03:00
|
|
|
{}
|
|
|
|
|
|
|
|
Shmem::SharedMemory* CreateSharedMemory(
|
|
|
|
size_t, SharedMemory::SharedMemoryType, bool, int32_t*) override;
|
|
|
|
Shmem::SharedMemory* LookupSharedMemory(int32_t) override;
|
|
|
|
bool IsTrackingSharedMemory(Shmem::SharedMemory*) override;
|
|
|
|
bool DestroySharedMemory(Shmem&) override;
|
|
|
|
|
2018-04-23 21:13:37 +03:00
|
|
|
int32_t Register(IProtocol*) override;
|
|
|
|
int32_t RegisterID(IProtocol*, int32_t) override;
|
|
|
|
IProtocol* Lookup(int32_t) override;
|
|
|
|
void Unregister(int32_t) override;
|
|
|
|
|
2018-04-23 21:13:37 +03:00
|
|
|
nsIEventTarget* GetActorEventTarget() override;
|
|
|
|
void SetEventTargetForActor(IProtocol* aActor, nsIEventTarget* aEventTarget) override;
|
|
|
|
void ReplaceEventTargetForActor(IProtocol* aActor, nsIEventTarget* aEventTarget) override;
|
|
|
|
already_AddRefed<nsIEventTarget> GetActorEventTarget(IProtocol* aActor) override;
|
|
|
|
|
2018-04-23 21:13:36 +03:00
|
|
|
const MessageChannel* GetIPCChannel() const override;
|
|
|
|
MessageChannel* GetIPCChannel() override;
|
|
|
|
|
2018-04-23 21:13:37 +03:00
|
|
|
private:
|
|
|
|
IProtocol* const mProtocol;
|
|
|
|
};
|
|
|
|
|
2015-04-01 11:40:35 +03:00
|
|
|
typedef base::ProcessId ProcessId;
|
2016-10-30 21:26:40 +03:00
|
|
|
typedef IPC::Message Message;
|
|
|
|
typedef IPC::MessageInfo MessageInfo;
|
2016-10-29 20:38:31 +03:00
|
|
|
|
2018-04-23 21:13:37 +03:00
|
|
|
explicit IProtocol(Side aSide)
|
|
|
|
: IProtocol(aSide, MakeUnique<ManagedState>(this))
|
|
|
|
{}
|
2016-10-29 20:38:31 +03:00
|
|
|
|
2018-04-23 21:13:37 +03:00
|
|
|
int32_t Register(IProtocol* aRouted)
|
|
|
|
{
|
|
|
|
return mState->Register(aRouted);
|
|
|
|
}
|
|
|
|
int32_t RegisterID(IProtocol* aRouted, int32_t aId)
|
|
|
|
{
|
|
|
|
return mState->RegisterID(aRouted, aId);
|
|
|
|
}
|
|
|
|
IProtocol* Lookup(int32_t aId)
|
|
|
|
{
|
|
|
|
return mState->Lookup(aId);
|
|
|
|
}
|
|
|
|
void Unregister(int32_t aId)
|
|
|
|
{
|
|
|
|
return mState->Unregister(aId);
|
|
|
|
}
|
|
|
|
|
2016-10-29 07:26:21 +03:00
|
|
|
virtual void RemoveManagee(int32_t, IProtocol*) = 0;
|
2010-03-23 08:02:16 +03:00
|
|
|
|
2018-04-23 21:13:37 +03:00
|
|
|
Shmem::SharedMemory* CreateSharedMemory(
|
|
|
|
size_t aSize, SharedMemory::SharedMemoryType aType, bool aUnsafe, int32_t* aId)
|
|
|
|
{
|
|
|
|
return mState->CreateSharedMemory(aSize, aType, aUnsafe, aId);
|
|
|
|
}
|
|
|
|
Shmem::SharedMemory* LookupSharedMemory(int32_t aId)
|
|
|
|
{
|
|
|
|
return mState->LookupSharedMemory(aId);
|
|
|
|
}
|
|
|
|
bool IsTrackingSharedMemory(Shmem::SharedMemory* aSegment)
|
|
|
|
{
|
|
|
|
return mState->IsTrackingSharedMemory(aSegment);
|
|
|
|
}
|
|
|
|
bool DestroySharedMemory(Shmem& aShmem)
|
|
|
|
{
|
|
|
|
return mState->DestroySharedMemory(aShmem);
|
|
|
|
}
|
2010-03-23 08:02:16 +03:00
|
|
|
|
2018-04-23 21:13:36 +03:00
|
|
|
MessageChannel* GetIPCChannel()
|
|
|
|
{
|
|
|
|
return mState->GetIPCChannel();
|
|
|
|
}
|
|
|
|
const MessageChannel* GetIPCChannel() const
|
|
|
|
{
|
|
|
|
return mState->GetIPCChannel();
|
|
|
|
}
|
2018-07-22 14:51:30 +03:00
|
|
|
void SetMiddlemanIPCChannel(MessageChannel* aChannel)
|
|
|
|
{
|
|
|
|
// Middleman processes sometimes need to change the channel used by a
|
|
|
|
// protocol.
|
|
|
|
MOZ_RELEASE_ASSERT(recordreplay::IsMiddleman());
|
|
|
|
mState->SetIPCChannel(aChannel);
|
|
|
|
}
|
2018-04-23 21:13:36 +03:00
|
|
|
|
2011-06-03 22:33:55 +04:00
|
|
|
// XXX odd ducks, acknowledged
|
2016-11-01 01:08:00 +03:00
|
|
|
virtual ProcessId OtherPid() const;
|
2016-11-02 06:44:27 +03:00
|
|
|
Side GetSide() const { return mSide; }
|
2013-05-31 17:16:57 +04:00
|
|
|
|
2016-11-01 19:10:42 +03:00
|
|
|
void FatalError(const char* const aErrorMsg) const;
|
2018-04-23 21:13:36 +03:00
|
|
|
virtual void HandleFatalError(const char* aErrorMsg) const;
|
2016-10-04 11:31:25 +03:00
|
|
|
|
2016-10-29 07:26:21 +03:00
|
|
|
Maybe<IProtocol*> ReadActor(const IPC::Message* aMessage, PickleIterator* aIter, bool aNullable,
|
2016-05-21 11:07:56 +03:00
|
|
|
const char* aActorDescription, int32_t aProtocolTypeId);
|
2016-10-30 21:26:40 +03:00
|
|
|
|
|
|
|
virtual Result OnMessageReceived(const Message& aMessage) = 0;
|
|
|
|
virtual Result OnMessageReceived(const Message& aMessage, Message *& aReply) = 0;
|
|
|
|
virtual Result OnCallReceived(const Message& aMessage, Message *& aReply) = 0;
|
|
|
|
|
|
|
|
virtual int32_t GetProtocolTypeId() = 0;
|
2016-10-29 20:38:31 +03:00
|
|
|
|
2016-11-04 01:48:58 +03:00
|
|
|
int32_t Id() const { return mId; }
|
2016-10-29 20:38:31 +03:00
|
|
|
IProtocol* Manager() const { return mManager; }
|
|
|
|
|
2016-11-01 02:00:00 +03:00
|
|
|
bool AllocShmem(size_t aSize, Shmem::SharedMemory::SharedMemoryType aType, Shmem* aOutMem);
|
|
|
|
bool AllocUnsafeShmem(size_t aSize, Shmem::SharedMemory::SharedMemoryType aType, Shmem* aOutMem);
|
|
|
|
bool DeallocShmem(Shmem& aMem);
|
|
|
|
|
2016-10-29 06:46:59 +03:00
|
|
|
// Sets an event target to which all messages for aActor will be
|
|
|
|
// dispatched. This method must be called before right before the SendPFoo
|
|
|
|
// message for aActor is sent. And SendPFoo *must* be called if
|
|
|
|
// SetEventTargetForActor is called. The receiver when calling
|
|
|
|
// SetEventTargetForActor must be the actor that will be the manager for
|
|
|
|
// aActor.
|
|
|
|
void SetEventTargetForActor(IProtocol* aActor, nsIEventTarget* aEventTarget);
|
|
|
|
|
2017-03-21 06:57:56 +03:00
|
|
|
// Replace the event target for the messages of aActor. There must not be
|
|
|
|
// any messages of aActor in the task queue, or we might run into some
|
|
|
|
// unexpected behavior.
|
|
|
|
void ReplaceEventTargetForActor(IProtocol* aActor,
|
|
|
|
nsIEventTarget* aEventTarget);
|
|
|
|
|
2018-04-23 21:13:37 +03:00
|
|
|
nsIEventTarget* GetActorEventTarget();
|
|
|
|
already_AddRefed<nsIEventTarget> GetActorEventTarget(IProtocol* aActor);
|
2017-02-13 09:04:58 +03:00
|
|
|
|
2016-10-29 20:38:31 +03:00
|
|
|
protected:
|
2018-04-23 21:13:37 +03:00
|
|
|
IProtocol(Side aSide, UniquePtr<ProtocolState> aState)
|
|
|
|
: mId(0)
|
|
|
|
, mSide(aSide)
|
|
|
|
, mManager(nullptr)
|
2018-05-30 22:15:35 +03:00
|
|
|
, mState(std::move(aState))
|
2018-04-23 21:13:37 +03:00
|
|
|
{}
|
|
|
|
|
2016-10-29 06:46:59 +03:00
|
|
|
friend class IToplevelProtocol;
|
|
|
|
|
2016-11-04 01:48:58 +03:00
|
|
|
void SetId(int32_t aId) { mId = aId; }
|
2017-05-31 08:41:10 +03:00
|
|
|
void ResetManager() { mManager = nullptr; }
|
2018-04-23 21:13:37 +03:00
|
|
|
// We have separate functions because the accessibility code manually
|
|
|
|
// calls SetManager.
|
2016-10-29 06:46:59 +03:00
|
|
|
void SetManager(IProtocol* aManager);
|
2018-04-23 21:13:37 +03:00
|
|
|
|
|
|
|
// Sets the manager for the protocol and registers the protocol with
|
|
|
|
// its manager, setting up channels for the protocol as well. Not
|
|
|
|
// for use outside of IPDL.
|
|
|
|
void SetManagerAndRegister(IProtocol* aManager);
|
|
|
|
void SetManagerAndRegister(IProtocol* aManager, int32_t aId);
|
|
|
|
|
2016-10-29 06:46:59 +03:00
|
|
|
static const int32_t kNullActorId = 0;
|
|
|
|
static const int32_t kFreedActorId = 1;
|
|
|
|
|
2016-10-29 20:38:31 +03:00
|
|
|
private:
|
2016-11-04 01:48:58 +03:00
|
|
|
int32_t mId;
|
2016-11-01 02:27:08 +03:00
|
|
|
Side mSide;
|
2016-10-29 20:38:31 +03:00
|
|
|
IProtocol* mManager;
|
2018-04-23 21:13:37 +03:00
|
|
|
UniquePtr<ProtocolState> mState;
|
2013-05-31 17:16:57 +04:00
|
|
|
};
|
|
|
|
|
|
|
|
typedef IPCMessageStart ProtocolId;
|
|
|
|
|
2016-11-15 06:26:00 +03:00
|
|
|
#define IPC_OK() mozilla::ipc::IPCResult::Ok()
|
|
|
|
#define IPC_FAIL(actor, why) mozilla::ipc::IPCResult::Fail(WrapNotNull(actor), __func__, (why))
|
|
|
|
#define IPC_FAIL_NO_REASON(actor) mozilla::ipc::IPCResult::Fail(WrapNotNull(actor), __func__)
|
|
|
|
|
|
|
|
/**
|
|
|
|
* All message deserializer and message handler should return this
|
|
|
|
* type via above macros. We use a less generic name here to avoid
|
|
|
|
* conflict with mozilla::Result because we have quite a few using
|
|
|
|
* namespace mozilla::ipc; in the code base.
|
|
|
|
*/
|
|
|
|
class IPCResult {
|
|
|
|
public:
|
|
|
|
static IPCResult Ok() { return IPCResult(true); }
|
|
|
|
static IPCResult Fail(NotNull<IProtocol*> aActor, const char* aWhere, const char* aWhy = "");
|
|
|
|
MOZ_IMPLICIT operator bool() const { return mSuccess; }
|
|
|
|
private:
|
|
|
|
explicit IPCResult(bool aResult) : mSuccess(aResult) {}
|
|
|
|
bool mSuccess;
|
|
|
|
};
|
|
|
|
|
2015-11-01 06:02:08 +03:00
|
|
|
template<class PFooSide>
|
|
|
|
class Endpoint;
|
|
|
|
|
2013-05-31 17:16:57 +04:00
|
|
|
/**
|
|
|
|
* All top-level protocols should inherit this class.
|
|
|
|
*
|
|
|
|
* IToplevelProtocol tracks all top-level protocol actors created from
|
|
|
|
* this protocol actor.
|
|
|
|
*/
|
2016-10-29 07:42:23 +03:00
|
|
|
class IToplevelProtocol : public IProtocol
|
2013-05-31 17:16:57 +04:00
|
|
|
{
|
2015-11-01 06:02:08 +03:00
|
|
|
template<class PFooSide> friend class Endpoint;
|
|
|
|
|
2015-02-27 09:31:00 +03:00
|
|
|
protected:
|
2018-04-23 21:13:36 +03:00
|
|
|
explicit IToplevelProtocol(const char* aName, ProtocolId aProtoId,
|
|
|
|
Side aSide);
|
2013-05-31 17:16:57 +04:00
|
|
|
~IToplevelProtocol();
|
|
|
|
|
|
|
|
public:
|
2018-02-22 18:36:55 +03:00
|
|
|
enum ProcessIdState {
|
|
|
|
eUnstarted,
|
|
|
|
ePending,
|
|
|
|
eReady,
|
|
|
|
eError
|
|
|
|
};
|
|
|
|
|
2018-04-23 21:13:37 +03:00
|
|
|
class ToplevelState final : public ProtocolState
|
|
|
|
{
|
2018-08-20 21:46:05 +03:00
|
|
|
#ifdef FUZZING
|
|
|
|
friend class mozilla::ipc::ProtocolFuzzerHelper;
|
|
|
|
#endif
|
|
|
|
|
2018-04-23 21:13:37 +03:00
|
|
|
public:
|
2018-04-23 21:13:36 +03:00
|
|
|
ToplevelState(const char* aName, IToplevelProtocol* aProtocol, Side aSide);
|
2018-04-23 21:13:37 +03:00
|
|
|
|
|
|
|
Shmem::SharedMemory* CreateSharedMemory(
|
|
|
|
size_t, SharedMemory::SharedMemoryType, bool, int32_t*) override;
|
|
|
|
Shmem::SharedMemory* LookupSharedMemory(int32_t) override;
|
|
|
|
bool IsTrackingSharedMemory(Shmem::SharedMemory*) override;
|
|
|
|
bool DestroySharedMemory(Shmem&) override;
|
|
|
|
|
|
|
|
void DeallocShmems();
|
|
|
|
|
|
|
|
bool ShmemCreated(const Message& aMsg);
|
|
|
|
bool ShmemDestroyed(const Message& aMsg);
|
|
|
|
|
2018-04-23 21:13:37 +03:00
|
|
|
int32_t Register(IProtocol*) override;
|
|
|
|
int32_t RegisterID(IProtocol*, int32_t) override;
|
|
|
|
IProtocol* Lookup(int32_t) override;
|
|
|
|
void Unregister(int32_t) override;
|
|
|
|
|
2018-04-23 21:13:37 +03:00
|
|
|
nsIEventTarget* GetActorEventTarget() override;
|
|
|
|
void SetEventTargetForActor(IProtocol* aActor, nsIEventTarget* aEventTarget) override;
|
|
|
|
void ReplaceEventTargetForActor(IProtocol* aActor, nsIEventTarget* aEventTarget) override;
|
|
|
|
already_AddRefed<nsIEventTarget> GetActorEventTarget(IProtocol* aActor) override;
|
|
|
|
|
|
|
|
virtual already_AddRefed<nsIEventTarget>
|
|
|
|
GetMessageEventTarget(const Message& aMsg);
|
|
|
|
|
2018-04-23 21:13:36 +03:00
|
|
|
const MessageChannel* GetIPCChannel() const override;
|
|
|
|
MessageChannel* GetIPCChannel() override;
|
|
|
|
|
2018-04-23 21:13:37 +03:00
|
|
|
private:
|
|
|
|
IToplevelProtocol* const mProtocol;
|
2018-04-23 21:13:37 +03:00
|
|
|
IDMap<IProtocol*> mActorMap;
|
|
|
|
int32_t mLastRouteId;
|
2018-04-23 21:13:37 +03:00
|
|
|
IDMap<Shmem::SharedMemory*> mShmemMap;
|
|
|
|
Shmem::id_t mLastShmemId;
|
2018-04-23 21:13:37 +03:00
|
|
|
|
|
|
|
Mutex mEventTargetMutex;
|
|
|
|
IDMap<nsCOMPtr<nsIEventTarget>> mEventTargetMap;
|
2018-04-23 21:13:36 +03:00
|
|
|
|
|
|
|
MessageChannel mChannel;
|
2018-04-23 21:13:37 +03:00
|
|
|
};
|
|
|
|
|
2017-09-13 06:59:35 +03:00
|
|
|
using SchedulerGroupSet = nsILabelableRunnable::SchedulerGroupSet;
|
|
|
|
|
2016-07-07 04:51:20 +03:00
|
|
|
void SetTransport(UniquePtr<Transport> aTrans)
|
2013-05-31 17:16:57 +04:00
|
|
|
{
|
2018-05-30 22:15:35 +03:00
|
|
|
mTrans = std::move(aTrans);
|
2013-05-31 17:16:57 +04:00
|
|
|
}
|
|
|
|
|
2016-07-07 04:51:20 +03:00
|
|
|
Transport* GetTransport() const { return mTrans.get(); }
|
2013-05-31 17:16:57 +04:00
|
|
|
|
|
|
|
ProtocolId GetProtocolId() const { return mProtocolId; }
|
|
|
|
|
2018-02-22 18:36:55 +03:00
|
|
|
base::ProcessId OtherPid() const final;
|
|
|
|
void SetOtherProcessId(base::ProcessId aOtherPid,
|
|
|
|
ProcessIdState aState = ProcessIdState::eReady);
|
2016-11-02 03:02:48 +03:00
|
|
|
|
2016-11-02 06:44:27 +03:00
|
|
|
bool TakeMinidump(nsIFile** aDump, uint32_t* aSequence);
|
|
|
|
|
2016-10-30 21:26:40 +03:00
|
|
|
virtual void OnChannelClose() = 0;
|
|
|
|
virtual void OnChannelError() = 0;
|
2016-11-02 02:50:07 +03:00
|
|
|
virtual void ProcessingError(Result aError, const char* aMsgName) {}
|
2016-10-30 21:26:40 +03:00
|
|
|
virtual void OnChannelConnected(int32_t peer_pid) {}
|
2016-11-02 02:50:07 +03:00
|
|
|
|
2016-11-02 02:58:33 +03:00
|
|
|
bool Open(mozilla::ipc::Transport* aTransport,
|
|
|
|
base::ProcessId aOtherPid,
|
|
|
|
MessageLoop* aThread = nullptr,
|
|
|
|
mozilla::ipc::Side aSide = mozilla::ipc::UnknownSide);
|
|
|
|
|
|
|
|
bool Open(MessageChannel* aChannel,
|
|
|
|
MessageLoop* aMessageLoop,
|
|
|
|
mozilla::ipc::Side aSide = mozilla::ipc::UnknownSide);
|
|
|
|
|
2017-08-03 12:21:44 +03:00
|
|
|
bool Open(MessageChannel* aChannel,
|
|
|
|
nsIEventTarget* aEventTarget,
|
|
|
|
mozilla::ipc::Side aSide = mozilla::ipc::UnknownSide);
|
|
|
|
|
2018-02-16 18:24:21 +03:00
|
|
|
bool OpenWithAsyncPid(mozilla::ipc::Transport* aTransport,
|
|
|
|
MessageLoop* aThread = nullptr,
|
|
|
|
mozilla::ipc::Side aSide = mozilla::ipc::UnknownSide);
|
|
|
|
|
2016-11-02 02:58:33 +03:00
|
|
|
void Close();
|
|
|
|
|
|
|
|
void SetReplyTimeoutMs(int32_t aTimeoutMs);
|
|
|
|
|
2018-04-23 21:13:37 +03:00
|
|
|
void DeallocShmems() { DowncastState()->DeallocShmems(); }
|
2016-11-02 07:05:38 +03:00
|
|
|
|
2018-04-23 21:13:37 +03:00
|
|
|
bool ShmemCreated(const Message& aMsg) { return DowncastState()->ShmemCreated(aMsg); }
|
|
|
|
bool ShmemDestroyed(const Message& aMsg) { return DowncastState()->ShmemDestroyed(aMsg); }
|
2016-11-02 07:05:38 +03:00
|
|
|
|
2016-11-02 02:50:07 +03:00
|
|
|
virtual bool ShouldContinueFromReplyTimeout() {
|
2016-10-30 21:26:40 +03:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
// WARNING: This function is called with the MessageChannel monitor held.
|
|
|
|
virtual void IntentionalCrash() {
|
|
|
|
MOZ_CRASH("Intentional IPDL crash");
|
|
|
|
}
|
|
|
|
|
|
|
|
// The code here is only useful for fuzzing. It should not be used for any
|
|
|
|
// other purpose.
|
|
|
|
#ifdef DEBUG
|
|
|
|
// Returns true if we should simulate a timeout.
|
|
|
|
// WARNING: This is a testing-only function that is called with the
|
|
|
|
// MessageChannel monitor held. Don't do anything fancy here or we could
|
|
|
|
// deadlock.
|
|
|
|
virtual bool ArtificialTimeout() {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Returns true if we want to cause the worker thread to sleep with the
|
|
|
|
// monitor unlocked.
|
|
|
|
virtual bool NeedArtificialSleep() {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
// This function should be implemented to sleep for some amount of time on
|
|
|
|
// the worker thread. Will only be called if NeedArtificialSleep() returns
|
|
|
|
// true.
|
|
|
|
virtual void ArtificialSleep() {}
|
|
|
|
#else
|
|
|
|
bool ArtificialTimeout() { return false; }
|
|
|
|
bool NeedArtificialSleep() { return false; }
|
|
|
|
void ArtificialSleep() {}
|
|
|
|
#endif
|
|
|
|
|
2016-11-02 02:50:07 +03:00
|
|
|
virtual void EnteredCxxStack() {}
|
|
|
|
virtual void ExitedCxxStack() {}
|
|
|
|
virtual void EnteredCall() {}
|
|
|
|
virtual void ExitedCall() {}
|
|
|
|
|
|
|
|
bool IsOnCxxStack() const;
|
|
|
|
|
2016-10-30 21:26:40 +03:00
|
|
|
virtual RacyInterruptPolicy MediateInterruptRace(const MessageInfo& parent,
|
|
|
|
const MessageInfo& child)
|
|
|
|
{
|
|
|
|
return RIPChildWins;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Return true if windows messages can be handled while waiting for a reply
|
|
|
|
* to a sync IPDL message.
|
|
|
|
*/
|
|
|
|
virtual bool HandleWindowsMessages(const Message& aMsg) const { return true; }
|
|
|
|
|
|
|
|
virtual void OnEnteredSyncSend() {
|
|
|
|
}
|
|
|
|
virtual void OnExitedSyncSend() {
|
|
|
|
}
|
|
|
|
|
|
|
|
virtual void ProcessRemoteNativeEventsInInterruptCall() {
|
|
|
|
}
|
|
|
|
|
2017-07-20 02:23:01 +03:00
|
|
|
// Override this method in top-level protocols to change the SchedulerGroups
|
|
|
|
// that a message might affect. This should be used only as a last resort
|
|
|
|
// when it's difficult to determine an EventTarget ahead of time. See the
|
|
|
|
// comment in nsILabelableRunnable.h for more information.
|
|
|
|
virtual bool
|
2017-09-13 06:59:35 +03:00
|
|
|
GetMessageSchedulerGroups(const Message& aMsg, SchedulerGroupSet& aGroups)
|
2017-07-20 02:23:01 +03:00
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2018-04-23 21:13:37 +03:00
|
|
|
// This method is only used for collecting telemetry bits in various places,
|
|
|
|
// and we shouldn't pay the overhead of having it in protocol vtables when
|
|
|
|
// it's not being used.
|
|
|
|
#ifdef EARLY_BETA_OR_EARLIER
|
2017-05-02 15:10:00 +03:00
|
|
|
virtual void OnChannelReceivedMessage(const Message& aMsg) {}
|
2018-04-23 21:13:37 +03:00
|
|
|
#endif
|
2017-05-10 22:52:20 +03:00
|
|
|
|
|
|
|
bool IsMainThreadProtocol() const { return mIsMainThreadProtocol; }
|
|
|
|
void SetIsMainThreadProtocol() { mIsMainThreadProtocol = NS_IsMainThread(); }
|
|
|
|
|
2018-04-23 21:13:37 +03:00
|
|
|
already_AddRefed<nsIEventTarget>
|
|
|
|
GetMessageEventTarget(const Message& aMsg)
|
|
|
|
{
|
|
|
|
return DowncastState()->GetMessageEventTarget(aMsg);
|
|
|
|
}
|
|
|
|
|
2016-10-29 06:46:59 +03:00
|
|
|
protected:
|
2018-04-23 21:13:37 +03:00
|
|
|
ToplevelState* DowncastState() const
|
|
|
|
{
|
|
|
|
return static_cast<ToplevelState*>(mState.get());
|
|
|
|
}
|
|
|
|
|
2017-04-05 06:21:16 +03:00
|
|
|
// Override this method in top-level protocols to change the event target
|
|
|
|
// for a new actor (and its sub-actors).
|
2016-10-29 06:46:59 +03:00
|
|
|
virtual already_AddRefed<nsIEventTarget>
|
|
|
|
GetConstructedEventTarget(const Message& aMsg) { return nullptr; }
|
|
|
|
|
2017-04-05 06:21:16 +03:00
|
|
|
// Override this method in top-level protocols to change the event target
|
|
|
|
// for specific messages.
|
|
|
|
virtual already_AddRefed<nsIEventTarget>
|
|
|
|
GetSpecificMessageEventTarget(const Message& aMsg) { return nullptr; }
|
|
|
|
|
2018-02-22 18:36:55 +03:00
|
|
|
// This monitor protects mOtherPid and mOtherPidState. All other fields
|
|
|
|
// should only be accessed on the worker thread.
|
|
|
|
mutable mozilla::Monitor mMonitor;
|
2016-10-29 06:46:59 +03:00
|
|
|
private:
|
2018-03-13 19:54:35 +03:00
|
|
|
base::ProcessId OtherPidMaybeInvalid() const;
|
|
|
|
|
2013-05-31 17:16:57 +04:00
|
|
|
ProtocolId mProtocolId;
|
2016-07-07 04:51:20 +03:00
|
|
|
UniquePtr<Transport> mTrans;
|
2016-11-02 03:02:48 +03:00
|
|
|
base::ProcessId mOtherPid;
|
2018-02-22 18:36:55 +03:00
|
|
|
ProcessIdState mOtherPidState;
|
2017-05-10 22:52:20 +03:00
|
|
|
bool mIsMainThreadProtocol;
|
2009-07-02 09:45:19 +04:00
|
|
|
};
|
|
|
|
|
2016-06-15 15:49:13 +03:00
|
|
|
class IShmemAllocator
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
virtual bool AllocShmem(size_t aSize,
|
|
|
|
mozilla::ipc::SharedMemory::SharedMemoryType aShmType,
|
|
|
|
mozilla::ipc::Shmem* aShmem) = 0;
|
|
|
|
virtual bool AllocUnsafeShmem(size_t aSize,
|
|
|
|
mozilla::ipc::SharedMemory::SharedMemoryType aShmType,
|
|
|
|
mozilla::ipc::Shmem* aShmem) = 0;
|
|
|
|
virtual bool DeallocShmem(mozilla::ipc::Shmem& aShmem) = 0;
|
|
|
|
};
|
|
|
|
|
|
|
|
#define FORWARD_SHMEM_ALLOCATOR_TO(aImplClass) \
|
|
|
|
virtual bool AllocShmem(size_t aSize, \
|
|
|
|
mozilla::ipc::SharedMemory::SharedMemoryType aShmType, \
|
|
|
|
mozilla::ipc::Shmem* aShmem) override \
|
|
|
|
{ return aImplClass::AllocShmem(aSize, aShmType, aShmem); } \
|
|
|
|
virtual bool AllocUnsafeShmem(size_t aSize, \
|
|
|
|
mozilla::ipc::SharedMemory::SharedMemoryType aShmType, \
|
|
|
|
mozilla::ipc::Shmem* aShmem) override \
|
|
|
|
{ return aImplClass::AllocUnsafeShmem(aSize, aShmType, aShmem); } \
|
|
|
|
virtual bool DeallocShmem(mozilla::ipc::Shmem& aShmem) override \
|
|
|
|
{ return aImplClass::DeallocShmem(aShmem); }
|
2009-10-29 20:50:28 +03:00
|
|
|
|
|
|
|
inline bool
|
|
|
|
LoggingEnabled()
|
|
|
|
{
|
2017-02-08 09:08:00 +03:00
|
|
|
#if defined(DEBUG) || defined(FUZZING)
|
2009-10-29 20:50:28 +03:00
|
|
|
return !!PR_GetEnv("MOZ_IPC_MESSAGE_LOG");
|
|
|
|
#else
|
|
|
|
return false;
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2014-08-20 23:49:11 +04:00
|
|
|
inline bool
|
|
|
|
LoggingEnabledFor(const char *aTopLevelProtocol)
|
|
|
|
{
|
2017-02-14 14:38:22 +03:00
|
|
|
#if defined(DEBUG) || defined(FUZZING)
|
2014-08-20 23:49:11 +04:00
|
|
|
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
|
|
|
|
}
|
|
|
|
|
2016-03-26 00:02:38 +03:00
|
|
|
enum class MessageDirection {
|
|
|
|
eSending,
|
|
|
|
eReceiving,
|
|
|
|
};
|
|
|
|
|
|
|
|
MOZ_NEVER_INLINE void
|
|
|
|
LogMessageForProtocol(const char* aTopLevelProtocol, base::ProcessId aOtherPid,
|
|
|
|
const char* aContextDescription,
|
2016-10-13 09:18:45 +03:00
|
|
|
uint32_t aMessageId,
|
2016-03-26 00:02:38 +03:00
|
|
|
MessageDirection aDirection);
|
|
|
|
|
2013-08-22 18:39:32 +04:00
|
|
|
MOZ_NEVER_INLINE void
|
2013-07-24 20:38:24 +04:00
|
|
|
ProtocolErrorBreakpoint(const char* aMsg);
|
2009-12-04 21:45:21 +03:00
|
|
|
|
2016-04-06 17:53:06 +03:00
|
|
|
// The code generator calls this function for errors which come from the
|
|
|
|
// methods of protocols. Doing this saves codesize by making the error
|
|
|
|
// cases significantly smaller.
|
2013-08-22 18:39:32 +04:00
|
|
|
MOZ_NEVER_INLINE void
|
2018-04-23 21:13:36 +03:00
|
|
|
FatalError(const char* aMsg, bool aIsParent);
|
2013-08-22 18:39:32 +04:00
|
|
|
|
2016-04-06 17:53:06 +03:00
|
|
|
// The code generator calls this function for errors which are not
|
|
|
|
// protocol-specific: errors in generated struct methods or errors in
|
|
|
|
// transition functions, for instance. Doing this saves codesize by
|
|
|
|
// by making the error cases significantly smaller.
|
|
|
|
MOZ_NEVER_INLINE void
|
|
|
|
LogicError(const char* aMsg);
|
|
|
|
|
2016-05-21 11:07:56 +03:00
|
|
|
MOZ_NEVER_INLINE void
|
|
|
|
ActorIdReadError(const char* aActorDescription);
|
|
|
|
|
|
|
|
MOZ_NEVER_INLINE void
|
|
|
|
BadActorIdError(const char* aActorDescription);
|
|
|
|
|
|
|
|
MOZ_NEVER_INLINE void
|
|
|
|
ActorLookupError(const char* aActorDescription);
|
|
|
|
|
|
|
|
MOZ_NEVER_INLINE void
|
|
|
|
MismatchedActorTypeError(const char* aActorDescription);
|
|
|
|
|
2016-05-21 11:07:56 +03:00
|
|
|
MOZ_NEVER_INLINE void
|
|
|
|
UnionTypeReadError(const char* aUnionName);
|
|
|
|
|
2016-05-21 11:07:56 +03:00
|
|
|
MOZ_NEVER_INLINE void
|
|
|
|
ArrayLengthReadError(const char* aElementName);
|
|
|
|
|
2017-03-10 00:37:55 +03:00
|
|
|
MOZ_NEVER_INLINE void
|
|
|
|
SentinelReadError(const char* aElementName);
|
|
|
|
|
2011-06-03 22:33:56 +04:00
|
|
|
struct PrivateIPDLInterface {};
|
|
|
|
|
2015-07-10 03:07:49 +03:00
|
|
|
nsresult
|
2011-06-03 22:33:56 +04:00
|
|
|
Bridge(const PrivateIPDLInterface&,
|
2015-04-01 11:40:35 +03:00
|
|
|
MessageChannel*, base::ProcessId, MessageChannel*, base::ProcessId,
|
2013-08-20 23:46:41 +04:00
|
|
|
ProtocolId, ProtocolId);
|
2011-06-03 22:33:56 +04:00
|
|
|
|
2011-06-03 22:33:56 +04:00
|
|
|
bool
|
|
|
|
Open(const PrivateIPDLInterface&,
|
2015-04-01 11:40:35 +03:00
|
|
|
MessageChannel*, base::ProcessId, Transport::Mode,
|
2013-08-20 23:46:41 +04:00
|
|
|
ProtocolId, ProtocolId);
|
2011-06-03 22:33:56 +04:00
|
|
|
|
2011-06-03 22:33:56 +04:00
|
|
|
bool
|
|
|
|
UnpackChannelOpened(const PrivateIPDLInterface&,
|
|
|
|
const IPC::Message&,
|
|
|
|
TransportDescriptor*, base::ProcessId*, ProtocolId*);
|
|
|
|
|
2015-04-01 11:40:35 +03: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
|
|
|
|
|
2016-04-01 09:33:52 +03:00
|
|
|
/**
|
2016-04-19 14:08:55 +03:00
|
|
|
* Annotate the crash reporter with the error code from the most recent system
|
|
|
|
* call. Returns the system error.
|
2016-04-01 09:33:52 +03:00
|
|
|
*/
|
|
|
|
void AnnotateSystemError();
|
|
|
|
|
2018-08-27 21:20:17 +03:00
|
|
|
enum class LivenessState
|
2018-05-01 00:10:27 +03:00
|
|
|
{
|
|
|
|
Dead,
|
|
|
|
Null,
|
|
|
|
Start = Null
|
|
|
|
};
|
|
|
|
|
2018-05-03 19:08:48 +03:00
|
|
|
bool
|
2018-08-27 21:20:17 +03:00
|
|
|
StateTransition(bool aIsDelete, LivenessState* aNext);
|
2018-05-01 00:10:27 +03:00
|
|
|
|
2018-08-27 21:20:17 +03:00
|
|
|
enum class ReEntrantDeleteLivenessState
|
2018-05-01 00:10:27 +03:00
|
|
|
{
|
|
|
|
Dead,
|
|
|
|
Null,
|
|
|
|
Dying,
|
|
|
|
Start = Null,
|
|
|
|
};
|
|
|
|
|
2018-05-03 19:08:48 +03:00
|
|
|
bool
|
2018-05-01 00:10:27 +03:00
|
|
|
ReEntrantDeleteStateTransition(bool aIsDelete,
|
|
|
|
bool aIsDeleteReply,
|
2018-08-27 21:20:17 +03:00
|
|
|
ReEntrantDeleteLivenessState* aNext);
|
2018-05-01 00:10:27 +03:00
|
|
|
|
2015-11-01 06:02:08 +03:00
|
|
|
/**
|
|
|
|
* An endpoint represents one end of a partially initialized IPDL channel. To
|
|
|
|
* set up a new top-level protocol:
|
|
|
|
*
|
|
|
|
* Endpoint<PFooParent> parentEp;
|
|
|
|
* Endpoint<PFooChild> childEp;
|
|
|
|
* nsresult rv;
|
|
|
|
* rv = PFoo::CreateEndpoints(parentPid, childPid, &parentEp, &childEp);
|
|
|
|
*
|
|
|
|
* You're required to pass in parentPid and childPid, which are the pids of the
|
|
|
|
* processes in which the parent and child endpoints will be used.
|
|
|
|
*
|
|
|
|
* Endpoints can be passed in IPDL messages or sent to other threads using
|
|
|
|
* PostTask. Once an Endpoint has arrived at its destination process and thread,
|
|
|
|
* you need to create the top-level actor and bind it to the endpoint:
|
|
|
|
*
|
|
|
|
* FooParent* parent = new FooParent();
|
|
|
|
* bool rv1 = parentEp.Bind(parent, processActor);
|
|
|
|
* bool rv2 = parent->SendBar(...);
|
|
|
|
*
|
|
|
|
* (See Bind below for an explanation of processActor.) Once the actor is bound
|
|
|
|
* to the endpoint, it can send and receive messages.
|
|
|
|
*/
|
|
|
|
template<class PFooSide>
|
|
|
|
class Endpoint
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
typedef base::ProcessId ProcessId;
|
|
|
|
|
|
|
|
Endpoint()
|
|
|
|
: mValid(false)
|
2018-06-14 08:48:43 +03:00
|
|
|
, mMode(static_cast<mozilla::ipc::Transport::Mode>(0))
|
|
|
|
, mMyPid(0)
|
|
|
|
, mOtherPid(0)
|
|
|
|
{
|
|
|
|
}
|
2015-11-01 06:02:08 +03:00
|
|
|
|
|
|
|
Endpoint(const PrivateIPDLInterface&,
|
|
|
|
mozilla::ipc::Transport::Mode aMode,
|
|
|
|
TransportDescriptor aTransport,
|
|
|
|
ProcessId aMyPid,
|
2017-07-27 20:32:15 +03:00
|
|
|
ProcessId aOtherPid)
|
2015-11-01 06:02:08 +03:00
|
|
|
: mValid(true)
|
|
|
|
, mMode(aMode)
|
|
|
|
, mTransport(aTransport)
|
|
|
|
, mMyPid(aMyPid)
|
|
|
|
, mOtherPid(aOtherPid)
|
|
|
|
{}
|
|
|
|
|
|
|
|
Endpoint(Endpoint&& aOther)
|
|
|
|
: mValid(aOther.mValid)
|
|
|
|
, mTransport(aOther.mTransport)
|
|
|
|
, mMyPid(aOther.mMyPid)
|
|
|
|
, mOtherPid(aOther.mOtherPid)
|
|
|
|
{
|
2017-10-02 09:03:00 +03:00
|
|
|
if (aOther.mValid) {
|
|
|
|
mMode = aOther.mMode;
|
|
|
|
}
|
2015-11-01 06:02:08 +03:00
|
|
|
aOther.mValid = false;
|
|
|
|
}
|
|
|
|
|
|
|
|
Endpoint& operator=(Endpoint&& aOther)
|
|
|
|
{
|
|
|
|
mValid = aOther.mValid;
|
2017-10-02 09:03:00 +03:00
|
|
|
if (aOther.mValid) {
|
|
|
|
mMode = aOther.mMode;
|
|
|
|
}
|
2015-11-01 06:02:08 +03:00
|
|
|
mTransport = aOther.mTransport;
|
|
|
|
mMyPid = aOther.mMyPid;
|
|
|
|
mOtherPid = aOther.mOtherPid;
|
|
|
|
|
|
|
|
aOther.mValid = false;
|
|
|
|
return *this;
|
|
|
|
}
|
|
|
|
|
|
|
|
~Endpoint() {
|
|
|
|
if (mValid) {
|
|
|
|
CloseDescriptor(mTransport);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-07-20 10:18:30 +03:00
|
|
|
ProcessId OtherPid() const {
|
|
|
|
return mOtherPid;
|
|
|
|
}
|
|
|
|
|
2015-11-01 06:02:08 +03:00
|
|
|
// This method binds aActor to this endpoint. After this call, the actor can
|
2016-09-02 23:13:50 +03:00
|
|
|
// be used to send and receive messages. The endpoint becomes invalid.
|
|
|
|
bool Bind(PFooSide* aActor)
|
2015-11-01 06:02:08 +03:00
|
|
|
{
|
|
|
|
MOZ_RELEASE_ASSERT(mValid);
|
2018-07-22 14:51:30 +03:00
|
|
|
if (mMyPid != base::GetCurrentProcId()) {
|
|
|
|
// These pids must match, unless we are recording or replaying, in
|
|
|
|
// which case the parent process will have supplied the pid for the
|
|
|
|
// middleman process instead. Fix this here. If we're replaying
|
|
|
|
// we'll see the pid of the middleman used while recording.
|
|
|
|
MOZ_RELEASE_ASSERT(recordreplay::IsRecordingOrReplaying());
|
|
|
|
MOZ_RELEASE_ASSERT(recordreplay::IsReplaying() ||
|
|
|
|
mMyPid == recordreplay::child::MiddlemanProcessId());
|
|
|
|
mMyPid = base::GetCurrentProcId();
|
|
|
|
}
|
2015-11-01 06:02:08 +03:00
|
|
|
|
2016-07-07 04:51:20 +03:00
|
|
|
UniquePtr<Transport> t = mozilla::ipc::OpenDescriptor(mTransport, mMode);
|
2015-11-01 06:02:08 +03:00
|
|
|
if (!t) {
|
|
|
|
return false;
|
|
|
|
}
|
2016-07-07 04:51:20 +03:00
|
|
|
if (!aActor->Open(t.get(), mOtherPid, XRE_GetIOMessageLoop(),
|
2015-11-01 06:02:08 +03:00
|
|
|
mMode == Transport::MODE_SERVER ? ParentSide : ChildSide)) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
mValid = false;
|
2018-05-30 22:15:35 +03:00
|
|
|
aActor->SetTransport(std::move(t));
|
2015-11-01 06:02:08 +03:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2016-09-20 05:18:20 +03:00
|
|
|
bool IsValid() const {
|
|
|
|
return mValid;
|
|
|
|
}
|
2015-11-01 06:02:08 +03:00
|
|
|
|
|
|
|
private:
|
|
|
|
friend struct IPC::ParamTraits<Endpoint<PFooSide>>;
|
|
|
|
|
|
|
|
Endpoint(const Endpoint&) = delete;
|
|
|
|
Endpoint& operator=(const Endpoint&) = delete;
|
|
|
|
|
|
|
|
bool mValid;
|
|
|
|
mozilla::ipc::Transport::Mode mMode;
|
|
|
|
TransportDescriptor mTransport;
|
|
|
|
ProcessId mMyPid, mOtherPid;
|
|
|
|
};
|
|
|
|
|
2017-10-10 13:06:35 +03:00
|
|
|
#if defined(XP_MACOSX)
|
Bug 1348273 - Convert crash annotations into a machine-readable list of constants; r=ted.mielczarek,njn,dholbert,mak,cpearce,mcmanus,froydnj,Dexter,jrmuizel,jchen,jimm,bz,surkov
This introduces the machinery needed to generate crash annotations from a YAML
file. The relevant C++ functions are updated to take a typed enum. JavaScript
calls are unaffected but they will throw if the string argument does not
correspond to one of the known entries in the C++ enum. The existing whitelists
and blacklists of annotations are also generated from the YAML file and all
duplicate code related to them has been consolidated. Once written out to the
.extra file the annotations are converted in string form and are no different
than the existing ones.
All existing annotations have been included in the list (and some obsolete ones
have been removed) and all call sites have been updated including tests where
appropriate.
--HG--
extra : source : 4f6c43f2830701ec5552e08e3f1b06fe6d045860
2018-07-05 16:42:11 +03:00
|
|
|
void AnnotateCrashReportWithErrno(CrashReporter::Annotation tag, int error);
|
2016-08-23 08:52:04 +03:00
|
|
|
#else
|
Bug 1348273 - Convert crash annotations into a machine-readable list of constants; r=ted.mielczarek,njn,dholbert,mak,cpearce,mcmanus,froydnj,Dexter,jrmuizel,jchen,jimm,bz,surkov
This introduces the machinery needed to generate crash annotations from a YAML
file. The relevant C++ functions are updated to take a typed enum. JavaScript
calls are unaffected but they will throw if the string argument does not
correspond to one of the known entries in the C++ enum. The existing whitelists
and blacklists of annotations are also generated from the YAML file and all
duplicate code related to them has been consolidated. Once written out to the
.extra file the annotations are converted in string form and are no different
than the existing ones.
All existing annotations have been included in the list (and some obsolete ones
have been removed) and all call sites have been updated including tests where
appropriate.
--HG--
extra : source : 4f6c43f2830701ec5552e08e3f1b06fe6d045860
2018-07-05 16:42:11 +03:00
|
|
|
static inline void AnnotateCrashReportWithErrno(CrashReporter::Annotation tag, int error)
|
2016-08-23 08:52:04 +03:00
|
|
|
{}
|
|
|
|
#endif
|
|
|
|
|
2015-11-01 06:02:08 +03:00
|
|
|
// This function is used internally to create a pair of Endpoints. See the
|
|
|
|
// comment above Endpoint for a description of how it might be used.
|
|
|
|
template<class PFooParent, class PFooChild>
|
|
|
|
nsresult
|
|
|
|
CreateEndpoints(const PrivateIPDLInterface& aPrivate,
|
|
|
|
base::ProcessId aParentDestPid,
|
|
|
|
base::ProcessId aChildDestPid,
|
|
|
|
Endpoint<PFooParent>* aParentEndpoint,
|
|
|
|
Endpoint<PFooChild>* aChildEndpoint)
|
|
|
|
{
|
|
|
|
MOZ_RELEASE_ASSERT(aParentDestPid);
|
|
|
|
MOZ_RELEASE_ASSERT(aChildDestPid);
|
|
|
|
|
|
|
|
TransportDescriptor parentTransport, childTransport;
|
|
|
|
nsresult rv;
|
|
|
|
if (NS_FAILED(rv = CreateTransport(aParentDestPid, &parentTransport, &childTransport))) {
|
Bug 1348273 - Convert crash annotations into a machine-readable list of constants; r=ted.mielczarek,njn,dholbert,mak,cpearce,mcmanus,froydnj,Dexter,jrmuizel,jchen,jimm,bz,surkov
This introduces the machinery needed to generate crash annotations from a YAML
file. The relevant C++ functions are updated to take a typed enum. JavaScript
calls are unaffected but they will throw if the string argument does not
correspond to one of the known entries in the C++ enum. The existing whitelists
and blacklists of annotations are also generated from the YAML file and all
duplicate code related to them has been consolidated. Once written out to the
.extra file the annotations are converted in string form and are no different
than the existing ones.
All existing annotations have been included in the list (and some obsolete ones
have been removed) and all call sites have been updated including tests where
appropriate.
--HG--
extra : source : 4f6c43f2830701ec5552e08e3f1b06fe6d045860
2018-07-05 16:42:11 +03:00
|
|
|
AnnotateCrashReportWithErrno(
|
|
|
|
CrashReporter::Annotation::IpcCreateEndpointsNsresult, int(rv));
|
2015-11-01 06:02:08 +03:00
|
|
|
return rv;
|
|
|
|
}
|
|
|
|
|
|
|
|
*aParentEndpoint = Endpoint<PFooParent>(aPrivate, mozilla::ipc::Transport::MODE_SERVER,
|
2017-07-27 20:32:15 +03:00
|
|
|
parentTransport, aParentDestPid, aChildDestPid);
|
2015-11-01 06:02:08 +03:00
|
|
|
|
|
|
|
*aChildEndpoint = Endpoint<PFooChild>(aPrivate, mozilla::ipc::Transport::MODE_CLIENT,
|
2017-07-27 20:32:15 +03:00
|
|
|
childTransport, aChildDestPid, aParentDestPid);
|
2015-11-01 06:02:08 +03:00
|
|
|
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
2016-08-30 03:41:22 +03:00
|
|
|
void
|
|
|
|
TableToArray(const nsTHashtable<nsPtrHashKey<void>>& aTable,
|
|
|
|
nsTArray<void*>& aArray);
|
|
|
|
|
2009-07-02 09:45:19 +04:00
|
|
|
} // namespace ipc
|
2015-10-08 03:15:56 +03:00
|
|
|
|
2015-10-07 21:30:33 +03:00
|
|
|
template<typename Protocol>
|
2016-08-30 03:41:22 +03:00
|
|
|
class ManagedContainer : public nsTHashtable<nsPtrHashKey<Protocol>>
|
|
|
|
{
|
|
|
|
typedef nsTHashtable<nsPtrHashKey<Protocol>> BaseClass;
|
|
|
|
|
|
|
|
public:
|
|
|
|
// Having the core logic work on void pointers, rather than typed pointers,
|
|
|
|
// means that we can have one instance of this code out-of-line, rather
|
|
|
|
// than several hundred instances of this code out-of-lined. (Those
|
|
|
|
// repeated instances don't necessarily get folded together by the linker
|
|
|
|
// because they contain member offsets and such that differ between the
|
|
|
|
// functions.) We do have to pay for it with some eye-bleedingly bad casts,
|
|
|
|
// though.
|
|
|
|
void ToArray(nsTArray<Protocol*>& aArray) const {
|
|
|
|
::mozilla::ipc::TableToArray(*reinterpret_cast<const nsTHashtable<nsPtrHashKey<void>>*>
|
|
|
|
(static_cast<const BaseClass*>(this)),
|
|
|
|
reinterpret_cast<nsTArray<void*>&>(aArray));
|
|
|
|
}
|
|
|
|
};
|
2015-10-07 21:30:33 +03:00
|
|
|
|
2015-10-08 03:15:56 +03:00
|
|
|
template<typename Protocol>
|
|
|
|
Protocol*
|
2015-12-22 18:14:23 +03:00
|
|
|
LoneManagedOrNullAsserts(const ManagedContainer<Protocol>& aManagees)
|
2015-10-08 03:15:56 +03:00
|
|
|
{
|
2015-10-07 21:30:33 +03:00
|
|
|
if (aManagees.IsEmpty()) {
|
2015-10-08 03:15:56 +03:00
|
|
|
return nullptr;
|
|
|
|
}
|
2015-10-07 21:30:33 +03:00
|
|
|
MOZ_ASSERT(aManagees.Count() == 1);
|
|
|
|
return aManagees.ConstIter().Get()->GetKey();
|
2015-10-08 03:15:56 +03:00
|
|
|
}
|
|
|
|
|
2015-12-22 18:14:23 +03:00
|
|
|
// appId's are for B2G only currently, where managees.Count() == 1. This is
|
|
|
|
// not guaranteed currently in Desktop, so for paths used for desktop,
|
|
|
|
// don't assert there's one managee.
|
|
|
|
template<typename Protocol>
|
|
|
|
Protocol*
|
|
|
|
SingleManagedOrNull(const ManagedContainer<Protocol>& aManagees)
|
|
|
|
{
|
|
|
|
if (aManagees.Count() != 1) {
|
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
return aManagees.ConstIter().Get()->GetKey();
|
|
|
|
}
|
|
|
|
|
2009-07-02 09:45:19 +04:00
|
|
|
} // namespace mozilla
|
|
|
|
|
|
|
|
|
|
|
|
namespace IPC {
|
|
|
|
|
|
|
|
template <>
|
|
|
|
struct ParamTraits<mozilla::ipc::ActorHandle>
|
|
|
|
{
|
2009-07-25 03:24:27 +04:00
|
|
|
typedef mozilla::ipc::ActorHandle paramType;
|
|
|
|
|
|
|
|
static void Write(Message* aMsg, const paramType& aParam)
|
|
|
|
{
|
|
|
|
IPC::WriteParam(aMsg, aParam.mId);
|
|
|
|
}
|
|
|
|
|
2016-04-21 07:09:15 +03:00
|
|
|
static bool Read(const Message* aMsg, PickleIterator* aIter, paramType* aResult)
|
2009-07-25 03:24:27 +04:00
|
|
|
{
|
|
|
|
int id;
|
|
|
|
if (IPC::ReadParam(aMsg, aIter, &id)) {
|
|
|
|
aResult->mId = id;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return false;
|
2009-07-02 09:45:19 +04:00
|
|
|
}
|
|
|
|
|
2009-07-25 03:24:27 +04:00
|
|
|
static void Log(const paramType& aParam, std::wstring* aLog)
|
|
|
|
{
|
|
|
|
aLog->append(StringPrintf(L"(%d)", aParam.mId));
|
|
|
|
}
|
2009-07-02 09:45:19 +04:00
|
|
|
};
|
|
|
|
|
2015-11-01 06:02:08 +03:00
|
|
|
template<class PFooSide>
|
|
|
|
struct ParamTraits<mozilla::ipc::Endpoint<PFooSide>>
|
|
|
|
{
|
|
|
|
typedef mozilla::ipc::Endpoint<PFooSide> paramType;
|
|
|
|
|
|
|
|
static void Write(Message* aMsg, const paramType& aParam)
|
|
|
|
{
|
2016-09-20 05:18:20 +03:00
|
|
|
IPC::WriteParam(aMsg, aParam.mValid);
|
|
|
|
if (!aParam.mValid) {
|
|
|
|
return;
|
|
|
|
}
|
2015-11-01 06:02:08 +03:00
|
|
|
|
|
|
|
IPC::WriteParam(aMsg, static_cast<uint32_t>(aParam.mMode));
|
|
|
|
|
|
|
|
// We duplicate the descriptor so that our own file descriptor remains
|
|
|
|
// valid after the write. An alternative would be to set
|
|
|
|
// aParam.mTransport.mValid to false, but that won't work because aParam
|
|
|
|
// is const.
|
|
|
|
mozilla::ipc::TransportDescriptor desc = mozilla::ipc::DuplicateDescriptor(aParam.mTransport);
|
|
|
|
IPC::WriteParam(aMsg, desc);
|
|
|
|
|
|
|
|
IPC::WriteParam(aMsg, aParam.mMyPid);
|
|
|
|
IPC::WriteParam(aMsg, aParam.mOtherPid);
|
|
|
|
}
|
|
|
|
|
2016-04-21 07:09:15 +03:00
|
|
|
static bool Read(const Message* aMsg, PickleIterator* aIter, paramType* aResult)
|
2015-11-01 06:02:08 +03:00
|
|
|
{
|
|
|
|
MOZ_RELEASE_ASSERT(!aResult->mValid);
|
2016-09-20 05:18:20 +03:00
|
|
|
|
|
|
|
if (!IPC::ReadParam(aMsg, aIter, &aResult->mValid)) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
if (!aResult->mValid) {
|
|
|
|
// Object is empty, but read succeeded.
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2017-07-27 20:32:15 +03:00
|
|
|
uint32_t mode;
|
2015-11-01 06:02:08 +03:00
|
|
|
if (!IPC::ReadParam(aMsg, aIter, &mode) ||
|
|
|
|
!IPC::ReadParam(aMsg, aIter, &aResult->mTransport) ||
|
|
|
|
!IPC::ReadParam(aMsg, aIter, &aResult->mMyPid) ||
|
2017-07-27 20:32:15 +03:00
|
|
|
!IPC::ReadParam(aMsg, aIter, &aResult->mOtherPid)) {
|
2015-11-01 06:02:08 +03:00
|
|
|
return false;
|
|
|
|
}
|
2016-01-06 01:19:43 +03:00
|
|
|
aResult->mMode = Channel::Mode(mode);
|
2015-11-01 06:02:08 +03:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void Log(const paramType& aParam, std::wstring* aLog)
|
|
|
|
{
|
|
|
|
aLog->append(StringPrintf(L"Endpoint"));
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2009-07-02 09:45:19 +04:00
|
|
|
} // namespace IPC
|
|
|
|
|
|
|
|
|
|
|
|
#endif // mozilla_ipc_ProtocolUtils_h
|