blob: d5d34945415197eb321266f81b398995df00e7d3 [file] [log] [blame]
brettw@chromium.org293988a2012-03-01 07:48:14 +09001// Copyright (c) 2012 The Chromium Authors. All rights reserved.
agl@chromium.org1c6dcf22009-07-23 08:57:21 +09002// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
4
5#ifndef IPC_IPC_CHANNEL_POSIX_H_
6#define IPC_IPC_CHANNEL_POSIX_H_
7
8#include "ipc/ipc_channel.h"
9
10#include <sys/socket.h> // for CMSG macros
11
12#include <queue>
hubbe@chromium.org683920d2013-10-15 09:07:00 +090013#include <set>
agl@chromium.org1c6dcf22009-07-23 08:57:21 +090014#include <string>
15#include <vector>
16
morrita39722a32014-09-30 07:25:54 +090017#include "base/files/scoped_file.h"
avi@chromium.orga29af562013-07-18 08:00:30 +090018#include "base/message_loop/message_loop.h"
rsesek@chromium.org19319712013-07-24 14:15:24 +090019#include "base/process/process.h"
brettw@chromium.org0e9d0a12012-03-08 21:30:28 +090020#include "ipc/ipc_channel_reader.h"
morrita33a35902015-01-15 06:17:06 +090021#include "ipc/ipc_message_attachment_set.h"
agl@chromium.org1c6dcf22009-07-23 08:57:21 +090022
23namespace IPC {
24
morrita@chromium.org844f1c32014-06-07 15:15:53 +090025class IPC_EXPORT ChannelPosix : public Channel,
26 public internal::ChannelReader,
27 public base::MessageLoopForIO::Watcher {
agl@chromium.org1c6dcf22009-07-23 08:57:21 +090028 public:
erikchen99b3dc02015-06-17 06:21:04 +090029 // |broker| must outlive the newly created object.
30 ChannelPosix(const IPC::ChannelHandle& channel_handle,
31 Mode mode,
erikchen2ffe51b2015-09-15 02:45:12 +090032 Listener* listener);
dchengef7721a2014-10-22 11:29:52 +090033 ~ChannelPosix() override;
morrita@chromium.orgfde2b6b2014-06-07 05:13:51 +090034
35 // Channel implementation
dchengef7721a2014-10-22 11:29:52 +090036 bool Connect() override;
37 void Close() override;
38 bool Send(Message* message) override;
erikchen99b3dc02015-06-17 06:21:04 +090039 AttachmentBroker* GetAttachmentBroker() override;
dchengef7721a2014-10-22 11:29:52 +090040 base::ProcessId GetPeerPID() const override;
41 base::ProcessId GetSelfPID() const override;
42 int GetClientFileDescriptor() const override;
43 base::ScopedFD TakeClientFileDescriptor() override;
morrita@chromium.org844f1c32014-06-07 15:15:53 +090044
45 // Returns true if the channel supports listening for connections.
46 bool AcceptsConnections() const;
47
48 // Returns true if the channel supports listening for connections and is
49 // currently connected.
50 bool HasAcceptedConnection() const;
51
52 // Closes any currently connected socket, and returns to a listening state
53 // for more connections.
54 void ResetToAcceptingConnectionState();
55
56 // Returns true if the peer process' effective user id can be determined, in
57 // which case the supplied peer_euid is updated with it.
58 bool GetPeerEuid(uid_t* peer_euid) const;
morrita@chromium.orgfde2b6b2014-06-07 05:13:51 +090059
phajdan.jr@chromium.orgaf9455b2011-09-20 02:08:12 +090060 void CloseClientFileDescriptor();
morrita@chromium.orgfde2b6b2014-06-07 05:13:51 +090061
kkania@chromium.orgf37b4e52011-08-09 15:46:06 +090062 static bool IsNamedServerInitialized(const std::string& channel_id);
perkj596cc352014-12-12 02:27:58 +090063#if defined(OS_LINUX)
64 static void SetGlobalPid(int pid);
65#endif // OS_LINUX
agl@chromium.org1c6dcf22009-07-23 08:57:21 +090066
67 private:
dmaclach@chromium.orgf146c292011-02-04 05:35:09 +090068 bool CreatePipe(const IPC::ChannelHandle& channel_handle);
agl@chromium.org1c6dcf22009-07-23 08:57:21 +090069
erikchen0948aee2015-10-07 06:46:37 +090070 // Returns false on recoverable error.
71 // There are two reasons why this method might leave messages in the
72 // output_queue_.
73 // 1. |waiting_connect_| is |true|.
74 // 2. |is_blocked_on_write_| is |true|.
75 // If any of these conditionals change, this method should be called, as
76 // previously blocked messages may no longer be blocked.
agl@chromium.org1c6dcf22009-07-23 08:57:21 +090077 bool ProcessOutgoingMessages();
78
dmaclach@chromium.orgc1d3d422010-12-20 15:59:23 +090079 bool AcceptConnection();
80 void ClosePipeOnError();
morrita@chromium.org15996aa2014-08-05 08:44:17 +090081 int GetHelloMessageProcId() const;
dmaclach@chromium.orgc1d3d422010-12-20 15:59:23 +090082 void QueueHelloMessage();
hubbe@chromium.org683920d2013-10-15 09:07:00 +090083 void CloseFileDescriptors(Message* msg);
84 void QueueCloseFDMessage(int fd, int hops);
dmaclach@chromium.orgc1d3d422010-12-20 15:59:23 +090085
brettw@chromium.org0e9d0a12012-03-08 21:30:28 +090086 // ChannelReader implementation.
dchengef7721a2014-10-22 11:29:52 +090087 ReadState ReadData(char* buffer, int buffer_len, int* bytes_read) override;
erikchenf295bbc2015-07-28 03:26:14 +090088 bool ShouldDispatchInputMessage(Message* msg) override;
89 bool GetNonBrokeredAttachments(Message* msg) override;
dchengef7721a2014-10-22 11:29:52 +090090 bool DidEmptyInputBuffers() override;
91 void HandleInternalMessage(const Message& msg) override;
erikchencc6ccfc2015-07-29 08:16:48 +090092 base::ProcessId GetSenderPID() override;
erikchenca630d72015-07-31 07:26:08 +090093 bool IsAttachmentBrokerEndpoint() override;
brettw@chromium.org293988a2012-03-01 07:48:14 +090094
brettw@chromium.org293988a2012-03-01 07:48:14 +090095 // Finds the set of file descriptors in the given message. On success,
96 // appends the descriptors to the input_fds_ member and returns true
97 //
98 // Returns false if the message was truncated. In this case, any handles that
99 // were sent will be closed.
100 bool ExtractFileDescriptorsFromMsghdr(msghdr* msg);
101
102 // Closes all handles in the input_fds_ list and clears the list. This is
103 // used to clean up handles in error conditions to avoid leaking the handles.
104 void ClearInputFDs();
105
agl@chromium.org1c6dcf22009-07-23 08:57:21 +0900106 // MessageLoopForIO::Watcher implementation.
dchengef7721a2014-10-22 11:29:52 +0900107 void OnFileCanReadWithoutBlocking(int fd) override;
108 void OnFileCanWriteWithoutBlocking(int fd) override;
agl@chromium.org1c6dcf22009-07-23 08:57:21 +0900109
erikchen0948aee2015-10-07 06:46:37 +0900110 // Returns |false| on channel error.
111 // If |message| has brokerable attachments, those attachments are passed to
112 // the AttachmentBroker (which in turn invokes Send()), so this method must
113 // be re-entrant.
114 // Adds |message| to |output_queue_| and calls ProcessOutgoingMessages().
115 bool ProcessMessageForDelivery(Message* message);
116
117 // Moves all messages from |prelim_queue_| to |output_queue_| by calling
118 // ProcessMessageForDelivery().
119 // Returns |false| on channel error.
120 bool FlushPrelimQueue();
121
agl@chromium.org1c6dcf22009-07-23 08:57:21 +0900122 Mode mode_;
123
jschuh@chromium.orga5cd0762012-04-05 11:38:34 +0900124 base::ProcessId peer_pid_;
125
agl@chromium.org1c6dcf22009-07-23 08:57:21 +0900126 // After accepting one client connection on our server socket we want to
127 // stop listening.
xhwang@chromium.org0b2c2a52013-05-01 05:55:03 +0900128 base::MessageLoopForIO::FileDescriptorWatcher
129 server_listen_connection_watcher_;
130 base::MessageLoopForIO::FileDescriptorWatcher read_watcher_;
131 base::MessageLoopForIO::FileDescriptorWatcher write_watcher_;
agl@chromium.org1c6dcf22009-07-23 08:57:21 +0900132
133 // Indicates whether we're currently blocked waiting for a write to complete.
134 bool is_blocked_on_write_;
dmaclach@chromium.orgc1d3d422010-12-20 15:59:23 +0900135 bool waiting_connect_;
agl@chromium.org1c6dcf22009-07-23 08:57:21 +0900136
137 // If sending a message blocks then we use this variable
138 // to keep track of where we are.
139 size_t message_send_bytes_written_;
140
dmaclach@chromium.orgc1d3d422010-12-20 15:59:23 +0900141 // File descriptor we're listening on for new connections if we listen
142 // for connections.
morrita39722a32014-09-30 07:25:54 +0900143 base::ScopedFD server_listen_pipe_;
agl@chromium.org1c6dcf22009-07-23 08:57:21 +0900144
145 // The pipe used for communication.
morrita39722a32014-09-30 07:25:54 +0900146 base::ScopedFD pipe_;
agl@chromium.org1c6dcf22009-07-23 08:57:21 +0900147
148 // For a server, the client end of our socketpair() -- the other end of our
149 // pipe_ that is passed to the client.
morrita39722a32014-09-30 07:25:54 +0900150 base::ScopedFD client_pipe_;
morrita@chromium.orgfde2b6b2014-06-07 05:13:51 +0900151 mutable base::Lock client_pipe_lock_; // Lock that protects |client_pipe_|.
agl@chromium.org1c6dcf22009-07-23 08:57:21 +0900152
agl@chromium.org1c6dcf22009-07-23 08:57:21 +0900153 // The "name" of our pipe. On Windows this is the global identifier for
154 // the pipe. On POSIX it's used as a key in a local map of file descriptors.
155 std::string pipe_name_;
156
erikchen0948aee2015-10-07 06:46:37 +0900157 // Messages not yet ready to be sent are queued here. Messages removed from
158 // this queue are placed in the output_queue_. The double queue is
159 // unfortunate, but is necessary because messages with brokerable attachments
160 // can generate multiple messages to be sent (possibly from other channels).
161 // Some of these generated messages cannot be sent until |peer_pid_| has been
162 // configured.
163 // As soon as |peer_pid| has been configured, there is no longer any need for
164 // |prelim_queue_|. All messages are flushed, and no new messages are added.
165 std::queue<Message*> prelim_queue_;
166
agl@chromium.org1c6dcf22009-07-23 08:57:21 +0900167 // Messages to be sent are queued here.
erikchen0948aee2015-10-07 06:46:37 +0900168 std::queue<OutputElement*> output_queue_;
agl@chromium.org1c6dcf22009-07-23 08:57:21 +0900169
pkasting@chromium.org9687a8f2011-09-01 09:50:13 +0900170 // We assume a worst case: kReadBufferSize bytes of messages, where each
171 // message has no payload and a full complement of descriptors.
172 static const size_t kMaxReadFDs =
173 (Channel::kReadBufferSize / sizeof(IPC::Message::Header)) *
morrita33a35902015-01-15 06:17:06 +0900174 MessageAttachmentSet::kMaxDescriptorsPerMessage;
agl@chromium.org1c6dcf22009-07-23 08:57:21 +0900175
brettw@chromium.org293988a2012-03-01 07:48:14 +0900176 // Buffer size for file descriptors used for recvmsg. On Mac the CMSG macros
bratell88511de2015-05-29 22:19:01 +0900177 // are not constant so we have to pick a "large enough" padding for headers.
agl@chromium.org1c6dcf22009-07-23 08:57:21 +0900178#if defined(OS_MACOSX)
bratell88511de2015-05-29 22:19:01 +0900179 static const size_t kMaxReadFDBuffer = 1024 + sizeof(int) * kMaxReadFDs;
agl@chromium.org1c6dcf22009-07-23 08:57:21 +0900180#else
brettw@chromium.org293988a2012-03-01 07:48:14 +0900181 static const size_t kMaxReadFDBuffer = CMSG_SPACE(sizeof(int) * kMaxReadFDs);
agl@chromium.org1c6dcf22009-07-23 08:57:21 +0900182#endif
bratell88511de2015-05-29 22:19:01 +0900183 static_assert(kMaxReadFDBuffer <= 8192,
184 "kMaxReadFDBuffer too big for a stack buffer");
brettw@chromium.org293988a2012-03-01 07:48:14 +0900185
186 // File descriptors extracted from messages coming off of the channel. The
187 // handles may span messages and come off different channels from the message
188 // data (in the case of READWRITE), and are processed in FIFO here.
fischman@chromium.org8b60dfa2012-04-10 06:40:44 +0900189 // NOTE: The implementation assumes underlying storage here is contiguous, so
190 // don't change to something like std::deque<> without changing the
191 // implementation!
192 std::vector<int> input_fds_;
agl@chromium.org1c6dcf22009-07-23 08:57:21 +0900193
morritae491a7b2015-01-28 05:05:53 +0900194
195 void ResetSafely(base::ScopedFD* fd);
196 bool in_dtor_;
197
hubbe@chromium.org683920d2013-10-15 09:07:00 +0900198#if defined(OS_MACOSX)
199 // On OSX, sent FDs must not be closed until we get an ack.
200 // Keep track of sent FDs here to make sure the remote is not
201 // trying to bamboozle us.
202 std::set<int> fds_to_close_;
203#endif
204
dmaclach@chromium.orgc1d3d422010-12-20 15:59:23 +0900205 // True if we are responsible for unlinking the unix domain socket file.
206 bool must_unlink_;
agl@chromium.org1c6dcf22009-07-23 08:57:21 +0900207
perkj596cc352014-12-12 02:27:58 +0900208#if defined(OS_LINUX)
209 // If non-zero, overrides the process ID sent in the hello message.
210 static int global_pid_;
211#endif // OS_LINUX
212
morrita@chromium.orgfde2b6b2014-06-07 05:13:51 +0900213 DISALLOW_IMPLICIT_CONSTRUCTORS(ChannelPosix);
agl@chromium.org1c6dcf22009-07-23 08:57:21 +0900214};
215
agl@chromium.org1c6dcf22009-07-23 08:57:21 +0900216} // namespace IPC
217
218#endif // IPC_IPC_CHANNEL_POSIX_H_