1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 #include "ipc/ipc_channel_win.h"
9 #include "base/auto_reset.h"
10 #include "base/bind.h"
11 #include "base/compiler_specific.h"
12 #include "base/logging.h"
13 #include "base/pickle.h"
14 #include "base/process/process_handle.h"
15 #include "base/rand_util.h"
16 #include "base/strings/string_number_conversions.h"
17 #include "base/strings/utf_string_conversions.h"
18 #include "base/threading/thread_checker.h"
19 #include "base/win/scoped_handle.h"
20 #include "ipc/ipc_listener.h"
21 #include "ipc/ipc_logging.h"
22 #include "ipc/ipc_message_utils.h"
26 ChannelWin::State::State(ChannelWin
* channel
) : is_pending(false) {
27 memset(&context
.overlapped
, 0, sizeof(context
.overlapped
));
28 context
.handler
= channel
;
31 ChannelWin::State::~State() {
32 static_assert(offsetof(ChannelWin::State
, context
) == 0,
33 "ChannelWin::State should have context as its first data"
37 ChannelWin::ChannelWin(const IPC::ChannelHandle
&channel_handle
,
38 Mode mode
, Listener
* listener
)
39 : ChannelReader(listener
),
42 peer_pid_(base::kNullProcessId
),
43 waiting_connect_(mode
& MODE_SERVER_FLAG
),
44 processing_incoming_(false),
45 validate_client_(false),
48 CreatePipe(channel_handle
, mode
);
51 ChannelWin::~ChannelWin() {
55 void ChannelWin::Close() {
56 if (thread_check_
.get())
57 DCHECK(thread_check_
->CalledOnValidThread());
59 if (input_state_
.is_pending
|| output_state_
.is_pending
)
60 CancelIo(pipe_
.Get());
62 // Closing the handle at this point prevents us from issuing more requests
63 // form OnIOCompleted().
67 // Make sure all IO has completed.
68 base::Time start
= base::Time::Now();
69 while (input_state_
.is_pending
|| output_state_
.is_pending
) {
70 base::MessageLoopForIO::current()->WaitForIOCompletion(INFINITE
, this);
73 while (!output_queue_
.empty()) {
74 Message
* m
= output_queue_
.front();
80 bool ChannelWin::Send(Message
* message
) {
81 DCHECK(!message
->HasAttachments());
82 DCHECK(thread_check_
->CalledOnValidThread());
83 DVLOG(2) << "sending message @" << message
<< " on channel @" << this
84 << " with type " << message
->type()
85 << " (" << output_queue_
.size() << " in queue)";
87 #ifdef IPC_MESSAGE_LOG_ENABLED
88 Logging::GetInstance()->OnSendMessage(message
, "");
91 message
->TraceMessageBegin();
92 output_queue_
.push(message
);
93 // ensure waiting to write
94 if (!waiting_connect_
) {
95 if (!output_state_
.is_pending
) {
96 if (!ProcessOutgoingMessages(NULL
, 0))
104 base::ProcessId
ChannelWin::GetPeerPID() const {
108 base::ProcessId
ChannelWin::GetSelfPID() const {
109 return GetCurrentProcessId();
113 bool ChannelWin::IsNamedServerInitialized(
114 const std::string
& channel_id
) {
115 if (WaitNamedPipe(PipeName(channel_id
, NULL
).c_str(), 1))
117 // If ERROR_SEM_TIMEOUT occurred, the pipe exists but is handling another
119 return GetLastError() == ERROR_SEM_TIMEOUT
;
122 ChannelWin::ReadState
ChannelWin::ReadData(
125 int* /* bytes_read */) {
126 if (!pipe_
.IsValid())
129 DWORD bytes_read
= 0;
130 BOOL ok
= ReadFile(pipe_
.Get(), buffer
, buffer_len
,
131 &bytes_read
, &input_state_
.context
.overlapped
);
133 DWORD err
= GetLastError();
134 if (err
== ERROR_IO_PENDING
) {
135 input_state_
.is_pending
= true;
138 LOG(ERROR
) << "pipe error: " << err
;
142 // We could return READ_SUCCEEDED here. But the way that this code is
143 // structured we instead go back to the message loop. Our completion port
144 // will be signalled even in the "synchronously completed" state.
146 // This allows us to potentially process some outgoing messages and
147 // interleave other work on this thread when we're getting hammered with
148 // input messages. Potentially, this could be tuned to be more efficient
149 // with some testing.
150 input_state_
.is_pending
= true;
154 bool ChannelWin::WillDispatchInputMessage(Message
* msg
) {
155 // Make sure we get a hello when client validation is required.
156 if (validate_client_
)
157 return IsHelloMessage(*msg
);
161 void ChannelWin::HandleInternalMessage(const Message
& msg
) {
162 DCHECK_EQ(msg
.type(), static_cast<unsigned>(Channel::HELLO_MESSAGE_TYPE
));
163 // The hello message contains one parameter containing the PID.
164 PickleIterator
it(msg
);
166 bool failed
= !it
.ReadInt(&claimed_pid
);
168 if (!failed
&& validate_client_
) {
170 failed
= it
.ReadInt(&secret
) ? (secret
!= client_secret_
) : true;
176 listener()->OnChannelError();
180 peer_pid_
= claimed_pid
;
181 // Validation completed.
182 validate_client_
= false;
183 listener()->OnChannelConnected(claimed_pid
);
186 bool ChannelWin::DidEmptyInputBuffers() {
187 // We don't need to do anything here.
192 const base::string16
ChannelWin::PipeName(
193 const std::string
& channel_id
, int32
* secret
) {
194 std::string
name("\\\\.\\pipe\\chrome.");
196 // Prevent the shared secret from ending up in the pipe name.
197 size_t index
= channel_id
.find_first_of('\\');
198 if (index
!= std::string::npos
) {
199 if (secret
) // Retrieve the secret if asked for.
200 base::StringToInt(channel_id
.substr(index
+ 1), secret
);
201 return base::ASCIIToUTF16(name
.append(channel_id
.substr(0, index
- 1)));
204 // This case is here to support predictable named pipes in tests.
207 return base::ASCIIToUTF16(name
.append(channel_id
));
210 bool ChannelWin::CreatePipe(const IPC::ChannelHandle
&channel_handle
,
212 DCHECK(!pipe_
.IsValid());
213 base::string16 pipe_name
;
214 // If we already have a valid pipe for channel just copy it.
215 if (channel_handle
.pipe
.handle
) {
216 // TODO(rvargas) crbug.com/415294: ChannelHandle should either go away in
217 // favor of two independent entities (name/file), or it should be a move-
218 // only type with a base::File member. In any case, this code should not
219 // call DuplicateHandle.
220 DCHECK(channel_handle
.name
.empty());
221 pipe_name
= L
"Not Available"; // Just used for LOG
222 // Check that the given pipe confirms to the specified mode. We can
223 // only check for PIPE_TYPE_MESSAGE & PIPE_SERVER_END flags since the
224 // other flags (PIPE_TYPE_BYTE, and PIPE_CLIENT_END) are defined as 0.
226 GetNamedPipeInfo(channel_handle
.pipe
.handle
, &flags
, NULL
, NULL
, NULL
);
227 DCHECK(!(flags
& PIPE_TYPE_MESSAGE
));
228 if (((mode
& MODE_SERVER_FLAG
) && !(flags
& PIPE_SERVER_END
)) ||
229 ((mode
& MODE_CLIENT_FLAG
) && (flags
& PIPE_SERVER_END
))) {
230 LOG(WARNING
) << "Inconsistent open mode. Mode :" << mode
;
234 if (!DuplicateHandle(GetCurrentProcess(),
235 channel_handle
.pipe
.handle
,
240 DUPLICATE_SAME_ACCESS
)) {
241 LOG(WARNING
) << "DuplicateHandle failed. Error :" << GetLastError();
244 pipe_
.Set(local_handle
);
245 } else if (mode
& MODE_SERVER_FLAG
) {
246 DCHECK(!channel_handle
.pipe
.handle
);
247 const DWORD open_mode
= PIPE_ACCESS_DUPLEX
| FILE_FLAG_OVERLAPPED
|
248 FILE_FLAG_FIRST_PIPE_INSTANCE
;
249 pipe_name
= PipeName(channel_handle
.name
, &client_secret_
);
250 validate_client_
= !!client_secret_
;
251 pipe_
.Set(CreateNamedPipeW(pipe_name
.c_str(),
253 PIPE_TYPE_BYTE
| PIPE_READMODE_BYTE
,
255 Channel::kReadBufferSize
,
256 Channel::kReadBufferSize
,
259 } else if (mode
& MODE_CLIENT_FLAG
) {
260 DCHECK(!channel_handle
.pipe
.handle
);
261 pipe_name
= PipeName(channel_handle
.name
, &client_secret_
);
262 pipe_
.Set(CreateFileW(pipe_name
.c_str(),
263 GENERIC_READ
| GENERIC_WRITE
,
267 SECURITY_SQOS_PRESENT
| SECURITY_ANONYMOUS
|
268 FILE_FLAG_OVERLAPPED
,
274 if (!pipe_
.IsValid()) {
275 // If this process is being closed, the pipe may be gone already.
276 PLOG(WARNING
) << "Unable to create pipe \"" << pipe_name
<< "\" in "
277 << (mode
& MODE_SERVER_FLAG
? "server" : "client") << " mode";
281 // Create the Hello message to be sent when Connect is called
282 scoped_ptr
<Message
> m(new Message(MSG_ROUTING_NONE
,
284 IPC::Message::PRIORITY_NORMAL
));
286 // Don't send the secret to the untrusted process, and don't send a secret
287 // if the value is zero (for IPC backwards compatability).
288 int32 secret
= validate_client_
? 0 : client_secret_
;
289 if (!m
->WriteInt(GetCurrentProcessId()) ||
290 (secret
&& !m
->WriteUInt32(secret
))) {
295 output_queue_
.push(m
.release());
299 bool ChannelWin::Connect() {
300 DLOG_IF(WARNING
, thread_check_
.get()) << "Connect called more than once";
302 if (!thread_check_
.get())
303 thread_check_
.reset(new base::ThreadChecker());
305 if (!pipe_
.IsValid())
308 base::MessageLoopForIO::current()->RegisterIOHandler(pipe_
.Get(), this);
310 // Check to see if there is a client connected to our pipe...
311 if (waiting_connect_
)
314 if (!input_state_
.is_pending
) {
315 // Complete setup asynchronously. By not setting input_state_.is_pending
316 // to true, we indicate to OnIOCompleted that this is the special
317 // initialization signal.
318 base::MessageLoopForIO::current()->PostTask(
320 base::Bind(&ChannelWin::OnIOCompleted
,
321 weak_factory_
.GetWeakPtr(),
322 &input_state_
.context
,
327 if (!waiting_connect_
)
328 ProcessOutgoingMessages(NULL
, 0);
332 bool ChannelWin::ProcessConnection() {
333 DCHECK(thread_check_
->CalledOnValidThread());
334 if (input_state_
.is_pending
)
335 input_state_
.is_pending
= false;
337 // Do we have a client connected to our pipe?
338 if (!pipe_
.IsValid())
341 BOOL ok
= ConnectNamedPipe(pipe_
.Get(), &input_state_
.context
.overlapped
);
342 DWORD err
= GetLastError();
344 // Uhm, the API documentation says that this function should never
345 // return success when used in overlapped mode.
351 case ERROR_IO_PENDING
:
352 input_state_
.is_pending
= true;
354 case ERROR_PIPE_CONNECTED
:
355 waiting_connect_
= false;
358 // The pipe is being closed.
368 bool ChannelWin::ProcessOutgoingMessages(
369 base::MessageLoopForIO::IOContext
* context
,
370 DWORD bytes_written
) {
371 DCHECK(!waiting_connect_
); // Why are we trying to send messages if there's
373 DCHECK(thread_check_
->CalledOnValidThread());
375 if (output_state_
.is_pending
) {
377 output_state_
.is_pending
= false;
378 if (!context
|| bytes_written
== 0) {
379 DWORD err
= GetLastError();
380 LOG(ERROR
) << "pipe error: " << err
;
384 CHECK(!output_queue_
.empty());
385 Message
* m
= output_queue_
.front();
390 if (output_queue_
.empty())
393 if (!pipe_
.IsValid())
397 Message
* m
= output_queue_
.front();
398 DCHECK(m
->size() <= INT_MAX
);
399 BOOL ok
= WriteFile(pipe_
.Get(),
401 static_cast<uint32
>(m
->size()),
403 &output_state_
.context
.overlapped
);
405 DWORD write_error
= GetLastError();
406 if (write_error
== ERROR_IO_PENDING
) {
407 output_state_
.is_pending
= true;
409 DVLOG(2) << "sent pending message @" << m
<< " on channel @" << this
410 << " with type " << m
->type();
414 LOG(ERROR
) << "pipe error: " << write_error
;
418 DVLOG(2) << "sent message @" << m
<< " on channel @" << this
419 << " with type " << m
->type();
421 output_state_
.is_pending
= true;
425 void ChannelWin::OnIOCompleted(
426 base::MessageLoopForIO::IOContext
* context
,
427 DWORD bytes_transfered
,
430 DCHECK(thread_check_
->CalledOnValidThread());
431 if (context
== &input_state_
.context
) {
432 if (waiting_connect_
) {
433 if (!ProcessConnection())
435 // We may have some messages queued up to send...
436 if (!output_queue_
.empty() && !output_state_
.is_pending
)
437 ProcessOutgoingMessages(NULL
, 0);
438 if (input_state_
.is_pending
)
440 // else, fall-through and look for incoming messages...
443 // We don't support recursion through OnMessageReceived yet!
444 DCHECK(!processing_incoming_
);
445 base::AutoReset
<bool> auto_reset_processing_incoming(
446 &processing_incoming_
, true);
448 // Process the new data.
449 if (input_state_
.is_pending
) {
450 // This is the normal case for everything except the initialization step.
451 input_state_
.is_pending
= false;
452 if (!bytes_transfered
)
454 else if (pipe_
.IsValid())
455 ok
= AsyncReadComplete(bytes_transfered
);
457 DCHECK(!bytes_transfered
);
460 // Request more data.
462 ok
= ProcessIncomingMessages();
464 DCHECK(context
== &output_state_
.context
);
465 CHECK(output_state_
.is_pending
);
466 ok
= ProcessOutgoingMessages(context
, bytes_transfered
);
468 if (!ok
&& pipe_
.IsValid()) {
469 // We don't want to re-enter Close().
471 listener()->OnChannelError();
475 //------------------------------------------------------------------------------
479 scoped_ptr
<Channel
> Channel::Create(
480 const IPC::ChannelHandle
&channel_handle
, Mode mode
, Listener
* listener
) {
481 return scoped_ptr
<Channel
>(
482 new ChannelWin(channel_handle
, mode
, listener
));
486 bool Channel::IsNamedServerInitialized(const std::string
& channel_id
) {
487 return ChannelWin::IsNamedServerInitialized(channel_id
);
491 std::string
Channel::GenerateVerifiedChannelID(const std::string
& prefix
) {
492 // Windows pipes can be enumerated by low-privileged processes. So, we
493 // append a strong random value after the \ character. This value is not
494 // included in the pipe name, but sent as part of the client hello, to
495 // hijacking the pipe name to spoof the client.
497 std::string id
= prefix
;
502 do { // Guarantee we get a non-zero value.
503 secret
= base::RandInt(0, std::numeric_limits
<int>::max());
504 } while (secret
== 0);
506 id
.append(GenerateUniqueRandomChannelID());
507 return id
.append(base::StringPrintf("\\%d", secret
));