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_nacl.h"
13 #include "base/bind.h"
14 #include "base/logging.h"
15 #include "base/message_loop/message_loop_proxy.h"
16 #include "base/synchronization/lock.h"
17 #include "base/task_runner_util.h"
18 #include "base/threading/simple_thread.h"
19 #include "ipc/ipc_listener.h"
20 #include "ipc/ipc_logging.h"
21 #include "ipc/ipc_message_attachment_set.h"
22 #include "native_client/src/public/imc_syscalls.h"
23 #include "native_client/src/public/imc_types.h"
27 struct MessageContents
{
28 std::vector
<char> data
;
34 bool ReadDataOnReaderThread(int pipe
, MessageContents
* contents
) {
39 contents
->data
.resize(Channel::kReadBufferSize
);
40 contents
->fds
.resize(MessageAttachmentSet::kMaxDescriptorsPerMessage
);
42 NaClAbiNaClImcMsgIoVec iov
= { &contents
->data
[0], contents
->data
.size() };
43 NaClAbiNaClImcMsgHdr msg
= {
44 &iov
, 1, &contents
->fds
[0], contents
->fds
.size()
47 int bytes_read
= imc_recvmsg(pipe
, &msg
, 0);
49 if (bytes_read
<= 0) {
50 // NaClIPCAdapter::BlockingReceive returns -1 when the pipe closes (either
51 // due to error or for regular shutdown).
52 contents
->data
.clear();
53 contents
->fds
.clear();
57 // Resize the buffers down to the number of bytes and fds we actually read.
58 contents
->data
.resize(bytes_read
);
59 contents
->fds
.resize(msg
.desc_length
);
65 class ChannelNacl::ReaderThreadRunner
66 : public base::DelegateSimpleThread::Delegate
{
68 // |pipe|: A file descriptor from which we will read using imc_recvmsg.
69 // |data_read_callback|: A callback we invoke (on the main thread) when we
71 // |failure_callback|: A callback we invoke when we have a failure reading
73 // |main_message_loop|: A proxy for the main thread, where we will invoke the
77 base::Callback
<void (scoped_ptr
<MessageContents
>)> data_read_callback
,
78 base::Callback
<void ()> failure_callback
,
79 scoped_refptr
<base::MessageLoopProxy
> main_message_loop
);
81 // DelegateSimpleThread implementation. Reads data from the pipe in a loop
82 // until either we are told to quit or a read fails.
83 virtual void Run() override
;
87 base::Callback
<void (scoped_ptr
<MessageContents
>)> data_read_callback_
;
88 base::Callback
<void ()> failure_callback_
;
89 scoped_refptr
<base::MessageLoopProxy
> main_message_loop_
;
91 DISALLOW_COPY_AND_ASSIGN(ReaderThreadRunner
);
94 ChannelNacl::ReaderThreadRunner::ReaderThreadRunner(
96 base::Callback
<void (scoped_ptr
<MessageContents
>)> data_read_callback
,
97 base::Callback
<void ()> failure_callback
,
98 scoped_refptr
<base::MessageLoopProxy
> main_message_loop
)
100 data_read_callback_(data_read_callback
),
101 failure_callback_(failure_callback
),
102 main_message_loop_(main_message_loop
) {
105 void ChannelNacl::ReaderThreadRunner::Run() {
107 scoped_ptr
<MessageContents
> msg_contents(new MessageContents
);
108 bool success
= ReadDataOnReaderThread(pipe_
, msg_contents
.get());
110 main_message_loop_
->PostTask(FROM_HERE
,
111 base::Bind(data_read_callback_
, base::Passed(&msg_contents
)));
113 main_message_loop_
->PostTask(FROM_HERE
, failure_callback_
);
114 // Because the read failed, we know we're going to quit. Don't bother
115 // trying to read again.
121 ChannelNacl::ChannelNacl(const IPC::ChannelHandle
& channel_handle
,
124 : ChannelReader(listener
),
126 waiting_connect_(true),
128 pipe_name_(channel_handle
.name
),
129 weak_ptr_factory_(this) {
130 if (!CreatePipe(channel_handle
)) {
131 // The pipe may have been closed already.
132 const char *modestr
= (mode_
& MODE_SERVER_FLAG
) ? "server" : "client";
133 LOG(WARNING
) << "Unable to create pipe named \"" << channel_handle
.name
134 << "\" in " << modestr
<< " mode";
138 ChannelNacl::~ChannelNacl() {
142 base::ProcessId
ChannelNacl::GetPeerPID() const {
143 // This shouldn't actually get used in the untrusted side of the proxy, and we
144 // don't have the real pid anyway.
148 base::ProcessId
ChannelNacl::GetSelfPID() const {
152 bool ChannelNacl::Connect() {
154 DLOG(WARNING
) << "Channel creation failed: " << pipe_name_
;
158 // Note that Connect is called on the "Channel" thread (i.e., the same thread
159 // where Channel::Send will be called, and the same thread that should receive
160 // messages). The constructor might be invoked on another thread (see
161 // ChannelProxy for an example of that). Therefore, we must wait until Connect
162 // is called to decide which MessageLoopProxy to pass to ReaderThreadRunner.
163 reader_thread_runner_
.reset(
164 new ReaderThreadRunner(
166 base::Bind(&ChannelNacl::DidRecvMsg
,
167 weak_ptr_factory_
.GetWeakPtr()),
168 base::Bind(&ChannelNacl::ReadDidFail
,
169 weak_ptr_factory_
.GetWeakPtr()),
170 base::MessageLoopProxy::current()));
171 reader_thread_
.reset(
172 new base::DelegateSimpleThread(reader_thread_runner_
.get(),
173 "ipc_channel_nacl reader thread"));
174 reader_thread_
->Start();
175 waiting_connect_
= false;
176 // If there were any messages queued before connection, send them.
177 ProcessOutgoingMessages();
178 base::MessageLoopProxy::current()->PostTask(FROM_HERE
,
179 base::Bind(&ChannelNacl::CallOnChannelConnected
,
180 weak_ptr_factory_
.GetWeakPtr()));
185 void ChannelNacl::Close() {
186 // For now, we assume that at shutdown, the reader thread will be woken with
187 // a failure (see NaClIPCAdapter::BlockingRead and CloseChannel). Or... we
188 // might simply be killed with no chance to clean up anyway :-).
189 // If untrusted code tries to close the channel prior to shutdown, it's likely
191 // TODO(dmichael): Can we do anything smarter here to make sure the reader
192 // thread wakes up and quits?
193 reader_thread_
->Join();
196 reader_thread_runner_
.reset();
197 reader_thread_
.reset();
199 output_queue_
.clear();
202 bool ChannelNacl::Send(Message
* message
) {
203 DVLOG(2) << "sending message @" << message
<< " on channel @" << this
204 << " with type " << message
->type();
205 scoped_ptr
<Message
> message_ptr(message
);
207 #ifdef IPC_MESSAGE_LOG_ENABLED
208 Logging::GetInstance()->OnSendMessage(message_ptr
.get(), "");
209 #endif // IPC_MESSAGE_LOG_ENABLED
211 message
->TraceMessageBegin();
212 output_queue_
.push_back(linked_ptr
<Message
>(message_ptr
.release()));
213 if (!waiting_connect_
)
214 return ProcessOutgoingMessages();
219 void ChannelNacl::DidRecvMsg(scoped_ptr
<MessageContents
> contents
) {
220 // Close sets the pipe to -1. It's possible we'll get a buffer sent to us from
221 // the reader thread after Close is called. If so, we ignore it.
225 linked_ptr
<std::vector
<char> > data(new std::vector
<char>);
226 data
->swap(contents
->data
);
227 read_queue_
.push_back(data
);
229 input_fds_
.insert(input_fds_
.end(),
230 contents
->fds
.begin(), contents
->fds
.end());
231 contents
->fds
.clear();
233 // In POSIX, we would be told when there are bytes to read by implementing
234 // OnFileCanReadWithoutBlocking in MessageLoopForIO::Watcher. In NaCl, we
235 // instead know at this point because the reader thread posted some data to
237 ProcessIncomingMessages();
240 void ChannelNacl::ReadDidFail() {
244 bool ChannelNacl::CreatePipe(
245 const IPC::ChannelHandle
& channel_handle
) {
248 // There's one possible case in NaCl:
249 // 1) It's a channel wrapping a pipe that is given to us.
250 // We don't support these:
251 // 2) It's for a named channel.
252 // 3) It's for a client that we implement ourself.
253 // 4) It's the initial IPC channel.
255 if (channel_handle
.socket
.fd
== -1) {
259 pipe_
= channel_handle
.socket
.fd
;
263 bool ChannelNacl::ProcessOutgoingMessages() {
264 DCHECK(!waiting_connect_
); // Why are we trying to send messages if there's
266 if (output_queue_
.empty())
272 // Write out all the messages. The trusted implementation is guaranteed to not
273 // block. See NaClIPCAdapter::Send for the implementation of imc_sendmsg.
274 while (!output_queue_
.empty()) {
275 linked_ptr
<Message
> msg
= output_queue_
.front();
276 output_queue_
.pop_front();
278 int fds
[MessageAttachmentSet::kMaxDescriptorsPerMessage
];
279 const size_t num_fds
= msg
->attachment_set()->size();
280 DCHECK(num_fds
<= MessageAttachmentSet::kMaxDescriptorsPerMessage
);
281 msg
->attachment_set()->PeekDescriptors(fds
);
283 NaClAbiNaClImcMsgIoVec iov
= {
284 const_cast<void*>(msg
->data()), msg
->size()
286 NaClAbiNaClImcMsgHdr msgh
= { &iov
, 1, fds
, num_fds
};
287 ssize_t bytes_written
= imc_sendmsg(pipe_
, &msgh
, 0);
289 DCHECK(bytes_written
); // The trusted side shouldn't return 0.
290 if (bytes_written
< 0) {
291 // The trusted side should only ever give us an error of EPIPE. We
292 // should never be interrupted, nor should we get EAGAIN.
293 DCHECK(errno
== EPIPE
);
295 PLOG(ERROR
) << "pipe_ error on "
297 << " Currently writing message of size: "
301 msg
->attachment_set()->CommitAll();
305 DVLOG(2) << "sent message @" << msg
.get() << " with type " << msg
->type()
306 << " on fd " << pipe_
;
311 void ChannelNacl::CallOnChannelConnected() {
312 listener()->OnChannelConnected(GetPeerPID());
315 ChannelNacl::ReadState
ChannelNacl::ReadData(
322 if (read_queue_
.empty())
324 while (!read_queue_
.empty() && *bytes_read
< buffer_len
) {
325 linked_ptr
<std::vector
<char> > vec(read_queue_
.front());
326 size_t bytes_to_read
= buffer_len
- *bytes_read
;
327 if (vec
->size() <= bytes_to_read
) {
328 // We can read and discard the entire vector.
329 std::copy(vec
->begin(), vec
->end(), buffer
+ *bytes_read
);
330 *bytes_read
+= vec
->size();
331 read_queue_
.pop_front();
333 // Read all the bytes we can and discard them from the front of the
334 // vector. (This can be slowish, since erase has to move the back of the
335 // vector to the front, but it's hopefully a temporary hack and it keeps
337 std::copy(vec
->begin(), vec
->begin() + bytes_to_read
,
338 buffer
+ *bytes_read
);
339 vec
->erase(vec
->begin(), vec
->begin() + bytes_to_read
);
340 *bytes_read
+= bytes_to_read
;
343 return READ_SUCCEEDED
;
346 bool ChannelNacl::WillDispatchInputMessage(Message
* msg
) {
347 uint16 header_fds
= msg
->header()->num_fds
;
348 CHECK(header_fds
== input_fds_
.size());
350 return true; // Nothing to do.
352 // The shenaniganery below with &foo.front() requires input_fds_ to have
353 // contiguous underlying storage (such as a simple array or a std::vector).
354 // This is why the header warns not to make input_fds_ a deque<>.
355 msg
->attachment_set()->AddDescriptorsToOwn(&input_fds_
.front(), header_fds
);
360 bool ChannelNacl::DidEmptyInputBuffers() {
361 // When the input data buffer is empty, the fds should be too.
362 return input_fds_
.empty();
365 void ChannelNacl::HandleInternalMessage(const Message
& msg
) {
366 // The trusted side IPC::Channel should handle the "hello" handshake; we
367 // should not receive the "Hello" message.
374 scoped_ptr
<Channel
> Channel::Create(
375 const IPC::ChannelHandle
&channel_handle
, Mode mode
, Listener
* listener
) {
376 return scoped_ptr
<Channel
>(
377 new ChannelNacl(channel_handle
, mode
, listener
));