summaryrefslogtreecommitdiffstats
path: root/ipc/glue/Transport_win.cpp
blob: 28e9026c30aa82614ec50dadc58dcc84e54a0254 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
/* vim: set ts=8 sts=2 et sw=2 tw=80: */
/* 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/. */

#include "base/message_loop.h"

#include "mozilla/ipc/Transport.h"
#include "mozilla/ipc/ProtocolUtils.h"

using namespace std;

using base::ProcessHandle;

namespace mozilla {
namespace ipc {

nsresult
CreateTransport(base::ProcessId aProcIdOne,
                TransportDescriptor* aOne,
                TransportDescriptor* aTwo)
{
  wstring id = IPC::Channel::GenerateVerifiedChannelID(std::wstring());
  // Use MODE_SERVER to force creation of the pipe
  Transport t(id, Transport::MODE_SERVER, nullptr);
  HANDLE serverPipe = t.GetServerPipeHandle();
  if (!serverPipe) {
    return NS_ERROR_TRANSPORT_INIT;
  }

  // NB: we create the server pipe immediately, instead of just
  // grabbing an ID, on purpose.  In the current setup, the client
  // needs to connect to an existing server pipe, so to prevent race
  // conditions, we create the server side here. When we send the pipe
  // to the server, we DuplicateHandle it to the server process to give it
  // access.
  HANDLE serverDup;
  DWORD access = 0;
  DWORD options = DUPLICATE_SAME_ACCESS;
  if (!DuplicateHandle(serverPipe, base::GetCurrentProcId(), &serverDup, access, options)) {
    return NS_ERROR_DUPLICATE_HANDLE;
  }

  aOne->mPipeName = aTwo->mPipeName = id;
  aOne->mServerPipeHandle = serverDup;
  aOne->mDestinationProcessId = aProcIdOne;
  aTwo->mServerPipeHandle = INVALID_HANDLE_VALUE;
  aTwo->mDestinationProcessId = 0;
  return NS_OK;
}

HANDLE
TransferHandleToProcess(HANDLE source, base::ProcessId pid)
{
  // At this point we're sending the handle to another process.

  if (source == INVALID_HANDLE_VALUE) {
    return source;
  }
  HANDLE handleDup;
  DWORD access = 0;
  DWORD options = DUPLICATE_SAME_ACCESS;
  bool ok = DuplicateHandle(source, pid, &handleDup, access, options);
  if (!ok) {
    return nullptr;
  }

  // Now close our own copy of the handle (we're supposed to be transferring,
  // not copying).
  CloseHandle(source);

  return handleDup;
}

UniquePtr<Transport>
OpenDescriptor(const TransportDescriptor& aTd, Transport::Mode aMode)
{
  if (aTd.mServerPipeHandle != INVALID_HANDLE_VALUE) {
    MOZ_RELEASE_ASSERT(aTd.mDestinationProcessId == base::GetCurrentProcId());
  }
  return MakeUnique<Transport>(aTd.mPipeName, aTd.mServerPipeHandle, aMode, nullptr);
}

UniquePtr<Transport>
OpenDescriptor(const FileDescriptor& aFd, Transport::Mode aMode)
{
  NS_NOTREACHED("Not implemented!");
  return nullptr;
}

TransportDescriptor
DuplicateDescriptor(const TransportDescriptor& aTd)
{
  // We're duplicating this handle in our own process for bookkeeping purposes.

  if (aTd.mServerPipeHandle == INVALID_HANDLE_VALUE) {
    return aTd;
  }

  HANDLE serverDup;
  DWORD access = 0;
  DWORD options = DUPLICATE_SAME_ACCESS;
  bool ok = DuplicateHandle(aTd.mServerPipeHandle, base::GetCurrentProcId(),
                            &serverDup, access, options);
  if (!ok) {
    AnnotateSystemError();
  }
  MOZ_RELEASE_ASSERT(ok);

  TransportDescriptor desc = aTd;
  desc.mServerPipeHandle = serverDup;
  return desc;
}

void
CloseDescriptor(const TransportDescriptor& aTd)
{
  // We're closing our own local copy of the pipe.

  CloseHandle(aTd.mServerPipeHandle);
}

} // namespace ipc
} // namespace mozilla