brettw@chromium.org | 293988a | 2012-03-01 07:48:14 +0900 | [diff] [blame] | 1 | // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
agl@chromium.org | 1c6dcf2 | 2009-07-23 08:57:21 +0900 | [diff] [blame] | 2 | // 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.org | 683920d | 2013-10-15 09:07:00 +0900 | [diff] [blame] | 13 | #include <set> |
agl@chromium.org | 1c6dcf2 | 2009-07-23 08:57:21 +0900 | [diff] [blame] | 14 | #include <string> |
| 15 | #include <vector> |
| 16 | |
morrita | 39722a3 | 2014-09-30 07:25:54 +0900 | [diff] [blame] | 17 | #include "base/files/scoped_file.h" |
avi@chromium.org | a29af56 | 2013-07-18 08:00:30 +0900 | [diff] [blame] | 18 | #include "base/message_loop/message_loop.h" |
rsesek@chromium.org | 1931971 | 2013-07-24 14:15:24 +0900 | [diff] [blame] | 19 | #include "base/process/process.h" |
brettw@chromium.org | 0e9d0a1 | 2012-03-08 21:30:28 +0900 | [diff] [blame] | 20 | #include "ipc/ipc_channel_reader.h" |
morrita | 33a3590 | 2015-01-15 06:17:06 +0900 | [diff] [blame] | 21 | #include "ipc/ipc_message_attachment_set.h" |
agl@chromium.org | 1c6dcf2 | 2009-07-23 08:57:21 +0900 | [diff] [blame] | 22 | |
| 23 | namespace IPC { |
| 24 | |
morrita@chromium.org | 844f1c3 | 2014-06-07 15:15:53 +0900 | [diff] [blame] | 25 | class IPC_EXPORT ChannelPosix : public Channel, |
| 26 | public internal::ChannelReader, |
| 27 | public base::MessageLoopForIO::Watcher { |
agl@chromium.org | 1c6dcf2 | 2009-07-23 08:57:21 +0900 | [diff] [blame] | 28 | public: |
morrita@chromium.org | fde2b6b | 2014-06-07 05:13:51 +0900 | [diff] [blame] | 29 | ChannelPosix(const IPC::ChannelHandle& channel_handle, Mode mode, |
| 30 | Listener* listener); |
dcheng | ef7721a | 2014-10-22 11:29:52 +0900 | [diff] [blame] | 31 | ~ChannelPosix() override; |
morrita@chromium.org | fde2b6b | 2014-06-07 05:13:51 +0900 | [diff] [blame] | 32 | |
| 33 | // Channel implementation |
dcheng | ef7721a | 2014-10-22 11:29:52 +0900 | [diff] [blame] | 34 | bool Connect() override; |
| 35 | void Close() override; |
| 36 | bool Send(Message* message) override; |
| 37 | base::ProcessId GetPeerPID() const override; |
| 38 | base::ProcessId GetSelfPID() const override; |
| 39 | int GetClientFileDescriptor() const override; |
| 40 | base::ScopedFD TakeClientFileDescriptor() override; |
morrita@chromium.org | 844f1c3 | 2014-06-07 15:15:53 +0900 | [diff] [blame] | 41 | |
| 42 | // Returns true if the channel supports listening for connections. |
| 43 | bool AcceptsConnections() const; |
| 44 | |
| 45 | // Returns true if the channel supports listening for connections and is |
| 46 | // currently connected. |
| 47 | bool HasAcceptedConnection() const; |
| 48 | |
| 49 | // Closes any currently connected socket, and returns to a listening state |
| 50 | // for more connections. |
| 51 | void ResetToAcceptingConnectionState(); |
| 52 | |
| 53 | // Returns true if the peer process' effective user id can be determined, in |
| 54 | // which case the supplied peer_euid is updated with it. |
| 55 | bool GetPeerEuid(uid_t* peer_euid) const; |
morrita@chromium.org | fde2b6b | 2014-06-07 05:13:51 +0900 | [diff] [blame] | 56 | |
phajdan.jr@chromium.org | af9455b | 2011-09-20 02:08:12 +0900 | [diff] [blame] | 57 | void CloseClientFileDescriptor(); |
morrita@chromium.org | fde2b6b | 2014-06-07 05:13:51 +0900 | [diff] [blame] | 58 | |
kkania@chromium.org | f37b4e5 | 2011-08-09 15:46:06 +0900 | [diff] [blame] | 59 | static bool IsNamedServerInitialized(const std::string& channel_id); |
perkj | 596cc35 | 2014-12-12 02:27:58 +0900 | [diff] [blame] | 60 | #if defined(OS_LINUX) |
| 61 | static void SetGlobalPid(int pid); |
| 62 | #endif // OS_LINUX |
agl@chromium.org | 1c6dcf2 | 2009-07-23 08:57:21 +0900 | [diff] [blame] | 63 | |
| 64 | private: |
dmaclach@chromium.org | f146c29 | 2011-02-04 05:35:09 +0900 | [diff] [blame] | 65 | bool CreatePipe(const IPC::ChannelHandle& channel_handle); |
agl@chromium.org | 1c6dcf2 | 2009-07-23 08:57:21 +0900 | [diff] [blame] | 66 | |
agl@chromium.org | 1c6dcf2 | 2009-07-23 08:57:21 +0900 | [diff] [blame] | 67 | bool ProcessOutgoingMessages(); |
| 68 | |
dmaclach@chromium.org | c1d3d42 | 2010-12-20 15:59:23 +0900 | [diff] [blame] | 69 | bool AcceptConnection(); |
| 70 | void ClosePipeOnError(); |
morrita@chromium.org | 15996aa | 2014-08-05 08:44:17 +0900 | [diff] [blame] | 71 | int GetHelloMessageProcId() const; |
dmaclach@chromium.org | c1d3d42 | 2010-12-20 15:59:23 +0900 | [diff] [blame] | 72 | void QueueHelloMessage(); |
hubbe@chromium.org | 683920d | 2013-10-15 09:07:00 +0900 | [diff] [blame] | 73 | void CloseFileDescriptors(Message* msg); |
| 74 | void QueueCloseFDMessage(int fd, int hops); |
dmaclach@chromium.org | c1d3d42 | 2010-12-20 15:59:23 +0900 | [diff] [blame] | 75 | |
brettw@chromium.org | 0e9d0a1 | 2012-03-08 21:30:28 +0900 | [diff] [blame] | 76 | // ChannelReader implementation. |
dcheng | ef7721a | 2014-10-22 11:29:52 +0900 | [diff] [blame] | 77 | ReadState ReadData(char* buffer, int buffer_len, int* bytes_read) override; |
| 78 | bool WillDispatchInputMessage(Message* msg) override; |
| 79 | bool DidEmptyInputBuffers() override; |
| 80 | void HandleInternalMessage(const Message& msg) override; |
brettw@chromium.org | 293988a | 2012-03-01 07:48:14 +0900 | [diff] [blame] | 81 | |
brettw@chromium.org | 293988a | 2012-03-01 07:48:14 +0900 | [diff] [blame] | 82 | // Finds the set of file descriptors in the given message. On success, |
| 83 | // appends the descriptors to the input_fds_ member and returns true |
| 84 | // |
| 85 | // Returns false if the message was truncated. In this case, any handles that |
| 86 | // were sent will be closed. |
| 87 | bool ExtractFileDescriptorsFromMsghdr(msghdr* msg); |
| 88 | |
| 89 | // Closes all handles in the input_fds_ list and clears the list. This is |
| 90 | // used to clean up handles in error conditions to avoid leaking the handles. |
| 91 | void ClearInputFDs(); |
| 92 | |
agl@chromium.org | 1c6dcf2 | 2009-07-23 08:57:21 +0900 | [diff] [blame] | 93 | // MessageLoopForIO::Watcher implementation. |
dcheng | ef7721a | 2014-10-22 11:29:52 +0900 | [diff] [blame] | 94 | void OnFileCanReadWithoutBlocking(int fd) override; |
| 95 | void OnFileCanWriteWithoutBlocking(int fd) override; |
agl@chromium.org | 1c6dcf2 | 2009-07-23 08:57:21 +0900 | [diff] [blame] | 96 | |
| 97 | Mode mode_; |
| 98 | |
jschuh@chromium.org | a5cd076 | 2012-04-05 11:38:34 +0900 | [diff] [blame] | 99 | base::ProcessId peer_pid_; |
| 100 | |
agl@chromium.org | 1c6dcf2 | 2009-07-23 08:57:21 +0900 | [diff] [blame] | 101 | // After accepting one client connection on our server socket we want to |
| 102 | // stop listening. |
xhwang@chromium.org | 0b2c2a5 | 2013-05-01 05:55:03 +0900 | [diff] [blame] | 103 | base::MessageLoopForIO::FileDescriptorWatcher |
| 104 | server_listen_connection_watcher_; |
| 105 | base::MessageLoopForIO::FileDescriptorWatcher read_watcher_; |
| 106 | base::MessageLoopForIO::FileDescriptorWatcher write_watcher_; |
agl@chromium.org | 1c6dcf2 | 2009-07-23 08:57:21 +0900 | [diff] [blame] | 107 | |
| 108 | // Indicates whether we're currently blocked waiting for a write to complete. |
| 109 | bool is_blocked_on_write_; |
dmaclach@chromium.org | c1d3d42 | 2010-12-20 15:59:23 +0900 | [diff] [blame] | 110 | bool waiting_connect_; |
agl@chromium.org | 1c6dcf2 | 2009-07-23 08:57:21 +0900 | [diff] [blame] | 111 | |
| 112 | // If sending a message blocks then we use this variable |
| 113 | // to keep track of where we are. |
| 114 | size_t message_send_bytes_written_; |
| 115 | |
dmaclach@chromium.org | c1d3d42 | 2010-12-20 15:59:23 +0900 | [diff] [blame] | 116 | // File descriptor we're listening on for new connections if we listen |
| 117 | // for connections. |
morrita | 39722a3 | 2014-09-30 07:25:54 +0900 | [diff] [blame] | 118 | base::ScopedFD server_listen_pipe_; |
agl@chromium.org | 1c6dcf2 | 2009-07-23 08:57:21 +0900 | [diff] [blame] | 119 | |
| 120 | // The pipe used for communication. |
morrita | 39722a3 | 2014-09-30 07:25:54 +0900 | [diff] [blame] | 121 | base::ScopedFD pipe_; |
agl@chromium.org | 1c6dcf2 | 2009-07-23 08:57:21 +0900 | [diff] [blame] | 122 | |
| 123 | // For a server, the client end of our socketpair() -- the other end of our |
| 124 | // pipe_ that is passed to the client. |
morrita | 39722a3 | 2014-09-30 07:25:54 +0900 | [diff] [blame] | 125 | base::ScopedFD client_pipe_; |
morrita@chromium.org | fde2b6b | 2014-06-07 05:13:51 +0900 | [diff] [blame] | 126 | mutable base::Lock client_pipe_lock_; // Lock that protects |client_pipe_|. |
agl@chromium.org | 1c6dcf2 | 2009-07-23 08:57:21 +0900 | [diff] [blame] | 127 | |
agl@chromium.org | 1c6dcf2 | 2009-07-23 08:57:21 +0900 | [diff] [blame] | 128 | // The "name" of our pipe. On Windows this is the global identifier for |
| 129 | // the pipe. On POSIX it's used as a key in a local map of file descriptors. |
| 130 | std::string pipe_name_; |
| 131 | |
agl@chromium.org | 1c6dcf2 | 2009-07-23 08:57:21 +0900 | [diff] [blame] | 132 | // Messages to be sent are queued here. |
| 133 | std::queue<Message*> output_queue_; |
| 134 | |
pkasting@chromium.org | 9687a8f | 2011-09-01 09:50:13 +0900 | [diff] [blame] | 135 | // We assume a worst case: kReadBufferSize bytes of messages, where each |
| 136 | // message has no payload and a full complement of descriptors. |
| 137 | static const size_t kMaxReadFDs = |
| 138 | (Channel::kReadBufferSize / sizeof(IPC::Message::Header)) * |
morrita | 33a3590 | 2015-01-15 06:17:06 +0900 | [diff] [blame] | 139 | MessageAttachmentSet::kMaxDescriptorsPerMessage; |
agl@chromium.org | 1c6dcf2 | 2009-07-23 08:57:21 +0900 | [diff] [blame] | 140 | |
brettw@chromium.org | 293988a | 2012-03-01 07:48:14 +0900 | [diff] [blame] | 141 | // Buffer size for file descriptors used for recvmsg. On Mac the CMSG macros |
bratell | 88511de | 2015-05-29 22:19:01 +0900 | [diff] [blame^] | 142 | // are not constant so we have to pick a "large enough" padding for headers. |
agl@chromium.org | 1c6dcf2 | 2009-07-23 08:57:21 +0900 | [diff] [blame] | 143 | #if defined(OS_MACOSX) |
bratell | 88511de | 2015-05-29 22:19:01 +0900 | [diff] [blame^] | 144 | static const size_t kMaxReadFDBuffer = 1024 + sizeof(int) * kMaxReadFDs; |
agl@chromium.org | 1c6dcf2 | 2009-07-23 08:57:21 +0900 | [diff] [blame] | 145 | #else |
brettw@chromium.org | 293988a | 2012-03-01 07:48:14 +0900 | [diff] [blame] | 146 | static const size_t kMaxReadFDBuffer = CMSG_SPACE(sizeof(int) * kMaxReadFDs); |
agl@chromium.org | 1c6dcf2 | 2009-07-23 08:57:21 +0900 | [diff] [blame] | 147 | #endif |
bratell | 88511de | 2015-05-29 22:19:01 +0900 | [diff] [blame^] | 148 | static_assert(kMaxReadFDBuffer <= 8192, |
| 149 | "kMaxReadFDBuffer too big for a stack buffer"); |
brettw@chromium.org | 293988a | 2012-03-01 07:48:14 +0900 | [diff] [blame] | 150 | |
| 151 | // File descriptors extracted from messages coming off of the channel. The |
| 152 | // handles may span messages and come off different channels from the message |
| 153 | // data (in the case of READWRITE), and are processed in FIFO here. |
fischman@chromium.org | 8b60dfa | 2012-04-10 06:40:44 +0900 | [diff] [blame] | 154 | // NOTE: The implementation assumes underlying storage here is contiguous, so |
| 155 | // don't change to something like std::deque<> without changing the |
| 156 | // implementation! |
| 157 | std::vector<int> input_fds_; |
agl@chromium.org | 1c6dcf2 | 2009-07-23 08:57:21 +0900 | [diff] [blame] | 158 | |
morrita | e491a7b | 2015-01-28 05:05:53 +0900 | [diff] [blame] | 159 | |
| 160 | void ResetSafely(base::ScopedFD* fd); |
| 161 | bool in_dtor_; |
| 162 | |
hubbe@chromium.org | 683920d | 2013-10-15 09:07:00 +0900 | [diff] [blame] | 163 | #if defined(OS_MACOSX) |
| 164 | // On OSX, sent FDs must not be closed until we get an ack. |
| 165 | // Keep track of sent FDs here to make sure the remote is not |
| 166 | // trying to bamboozle us. |
| 167 | std::set<int> fds_to_close_; |
| 168 | #endif |
| 169 | |
dmaclach@chromium.org | c1d3d42 | 2010-12-20 15:59:23 +0900 | [diff] [blame] | 170 | // True if we are responsible for unlinking the unix domain socket file. |
| 171 | bool must_unlink_; |
agl@chromium.org | 1c6dcf2 | 2009-07-23 08:57:21 +0900 | [diff] [blame] | 172 | |
perkj | 596cc35 | 2014-12-12 02:27:58 +0900 | [diff] [blame] | 173 | #if defined(OS_LINUX) |
| 174 | // If non-zero, overrides the process ID sent in the hello message. |
| 175 | static int global_pid_; |
| 176 | #endif // OS_LINUX |
| 177 | |
morrita@chromium.org | fde2b6b | 2014-06-07 05:13:51 +0900 | [diff] [blame] | 178 | DISALLOW_IMPLICIT_CONSTRUCTORS(ChannelPosix); |
agl@chromium.org | 1c6dcf2 | 2009-07-23 08:57:21 +0900 | [diff] [blame] | 179 | }; |
| 180 | |
agl@chromium.org | 1c6dcf2 | 2009-07-23 08:57:21 +0900 | [diff] [blame] | 181 | } // namespace IPC |
| 182 | |
| 183 | #endif // IPC_IPC_CHANNEL_POSIX_H_ |