blob: 06fa62c40137f68aaf294ec131c3727de04c33be [file] [log] [blame]
tedvessenes@gmail.com56b33702012-03-07 13:41:40 +09001// Copyright (c) 2012 The Chromium Authors. All rights reserved.
dmaclach@chromium.orgc1d3d422010-12-20 15:59:23 +09002// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
4
5// These tests are POSIX only.
6
7#include "ipc/ipc_channel_posix.h"
8
9#include <fcntl.h>
10#include <sys/socket.h>
11#include <sys/un.h>
12#include <unistd.h>
13
14#include "base/basictypes.h"
dmaclach@chromium.orgc1d3d422010-12-20 15:59:23 +090015#include "base/file_util.h"
brettw@chromium.org59eef1f2013-02-24 14:40:52 +090016#include "base/files/file_path.h"
levin@chromium.org5c528682011-03-28 10:54:15 +090017#include "base/memory/scoped_ptr.h"
avi@chromium.orga29af562013-07-18 08:00:30 +090018#include "base/message_loop/message_loop.h"
nileshagrawal@chromium.org42a2e0d2012-05-25 11:56:25 +090019#include "base/path_service.h"
brettw@chromium.orgb1788fb2012-11-15 05:54:35 +090020#include "base/posix/eintr_wrapper.h"
dmaclach@chromium.orgc1d3d422010-12-20 15:59:23 +090021#include "base/test/multiprocess_test.h"
22#include "base/test/test_timeouts.h"
brettw@chromium.orgf947ed02012-06-12 07:35:26 +090023#include "ipc/ipc_listener.h"
jeremya@chromium.orgf14bfab2013-03-13 13:23:10 +090024#include "ipc/unix_domain_socket_util.h"
dmaclach@chromium.orgc1d3d422010-12-20 15:59:23 +090025#include "testing/multiprocess_func_list.h"
26
27namespace {
28
pkasting@chromium.orgc4f2de22011-09-01 09:46:33 +090029static const uint32 kQuitMessage = 47;
dmaclach@chromium.orgc1d3d422010-12-20 15:59:23 +090030
brettw@chromium.orgf947ed02012-06-12 07:35:26 +090031class IPCChannelPosixTestListener : public IPC::Listener {
dmaclach@chromium.orgc1d3d422010-12-20 15:59:23 +090032 public:
33 enum STATUS {
34 DISCONNECTED,
35 MESSAGE_RECEIVED,
36 CHANNEL_ERROR,
37 CONNECTED,
38 DENIED,
39 LISTEN_ERROR
40 };
41
42 IPCChannelPosixTestListener(bool quit_only_on_message)
43 : status_(DISCONNECTED), quit_only_on_message_(quit_only_on_message) {}
44
45 virtual ~IPCChannelPosixTestListener() {}
46
evan@chromium.orgecc3f072011-08-17 06:09:25 +090047 virtual bool OnMessageReceived(const IPC::Message& message) OVERRIDE {
pkasting@chromium.orgc4f2de22011-09-01 09:46:33 +090048 EXPECT_EQ(message.type(), kQuitMessage);
dmaclach@chromium.orgc1d3d422010-12-20 15:59:23 +090049 status_ = MESSAGE_RECEIVED;
50 QuitRunLoop();
jam@chromium.org8a2c7842010-12-24 15:19:28 +090051 return true;
dmaclach@chromium.orgc1d3d422010-12-20 15:59:23 +090052 }
53
evan@chromium.orgecc3f072011-08-17 06:09:25 +090054 virtual void OnChannelConnected(int32 peer_pid) OVERRIDE {
dmaclach@chromium.orgc1d3d422010-12-20 15:59:23 +090055 status_ = CONNECTED;
56 if (!quit_only_on_message_) {
57 QuitRunLoop();
58 }
59 }
60
evan@chromium.orgecc3f072011-08-17 06:09:25 +090061 virtual void OnChannelError() OVERRIDE {
dmaclach@chromium.orgc1d3d422010-12-20 15:59:23 +090062 status_ = CHANNEL_ERROR;
63 if (!quit_only_on_message_) {
64 QuitRunLoop();
65 }
66 }
67
evan@chromium.orgecc3f072011-08-17 06:09:25 +090068 virtual void OnChannelDenied() OVERRIDE {
dmaclach@chromium.orgc1d3d422010-12-20 15:59:23 +090069 status_ = DENIED;
70 if (!quit_only_on_message_) {
71 QuitRunLoop();
72 }
73 }
74
evan@chromium.orgecc3f072011-08-17 06:09:25 +090075 virtual void OnChannelListenError() OVERRIDE {
dmaclach@chromium.orgc1d3d422010-12-20 15:59:23 +090076 status_ = LISTEN_ERROR;
77 if (!quit_only_on_message_) {
78 QuitRunLoop();
79 }
80 }
81
82 STATUS status() { return status_; }
83
84 void QuitRunLoop() {
xhwang@chromium.org0b2c2a52013-05-01 05:55:03 +090085 base::MessageLoopForIO::current()->QuitNow();
dmaclach@chromium.orgc1d3d422010-12-20 15:59:23 +090086 }
87
88 private:
89 // The current status of the listener.
90 STATUS status_;
91 // If |quit_only_on_message_| then the listener will only break out of
pkasting@chromium.orgc4f2de22011-09-01 09:46:33 +090092 // the run loop when kQuitMessage is received.
dmaclach@chromium.orgc1d3d422010-12-20 15:59:23 +090093 bool quit_only_on_message_;
94};
95
dmaclach@chromium.orgc1d3d422010-12-20 15:59:23 +090096class IPCChannelPosixTest : public base::MultiProcessTest {
97 public:
dmaclach@chromium.orgc1d3d422010-12-20 15:59:23 +090098 static void SetUpSocket(IPC::ChannelHandle *handle,
99 IPC::Channel::Mode mode);
tedvessenes@gmail.com5966b642012-07-12 00:41:43 +0900100 static void SpinRunLoop(base::TimeDelta delay);
nileshagrawal@chromium.org42a2e0d2012-05-25 11:56:25 +0900101 static const std::string GetConnectionSocketName();
102 static const std::string GetChannelDirName();
dmaclach@chromium.orgc1d3d422010-12-20 15:59:23 +0900103
104 protected:
105 virtual void SetUp();
106 virtual void TearDown();
107
xhwang@chromium.org0b2c2a52013-05-01 05:55:03 +0900108 private:
109 scoped_ptr<base::MessageLoopForIO> message_loop_;
dmaclach@chromium.orgc1d3d422010-12-20 15:59:23 +0900110};
111
nileshagrawal@chromium.org42a2e0d2012-05-25 11:56:25 +0900112const std::string IPCChannelPosixTest::GetChannelDirName() {
jrg@chromium.org2eb192e2011-11-04 09:14:16 +0900113#if defined(OS_ANDROID)
brettw@chromium.org22b3fda2013-02-10 13:49:30 +0900114 base::FilePath tmp_dir;
nileshagrawal@chromium.org42a2e0d2012-05-25 11:56:25 +0900115 PathService::Get(base::DIR_CACHE, &tmp_dir);
116 return tmp_dir.value();
jrg@chromium.org2eb192e2011-11-04 09:14:16 +0900117#else
nileshagrawal@chromium.org42a2e0d2012-05-25 11:56:25 +0900118 return "/var/tmp";
jrg@chromium.org2eb192e2011-11-04 09:14:16 +0900119#endif
nileshagrawal@chromium.org42a2e0d2012-05-25 11:56:25 +0900120}
121
122const std::string IPCChannelPosixTest::GetConnectionSocketName() {
123 return GetChannelDirName() + "/chrome_IPCChannelPosixTest__ConnectionSocket";
124}
dmaclach@chromium.orgc1d3d422010-12-20 15:59:23 +0900125
126void IPCChannelPosixTest::SetUp() {
127 MultiProcessTest::SetUp();
128 // Construct a fresh IO Message loop for the duration of each test.
xhwang@chromium.org0b2c2a52013-05-01 05:55:03 +0900129 message_loop_.reset(new base::MessageLoopForIO());
dmaclach@chromium.orgc1d3d422010-12-20 15:59:23 +0900130}
131
132void IPCChannelPosixTest::TearDown() {
133 message_loop_.reset(NULL);
134 MultiProcessTest::TearDown();
135}
136
137// Create up a socket and bind and listen to it, or connect it
138// depending on the |mode|.
139void IPCChannelPosixTest::SetUpSocket(IPC::ChannelHandle *handle,
140 IPC::Channel::Mode mode) {
141 const std::string& name = handle->name;
142
143 int socket_fd = socket(PF_UNIX, SOCK_STREAM, 0);
144 ASSERT_GE(socket_fd, 0) << name;
145 ASSERT_GE(fcntl(socket_fd, F_SETFL, O_NONBLOCK), 0);
146 struct sockaddr_un server_address = { 0 };
147 memset(&server_address, 0, sizeof(server_address));
148 server_address.sun_family = AF_UNIX;
jeremya@chromium.orgf14bfab2013-03-13 13:23:10 +0900149 int path_len = snprintf(server_address.sun_path, IPC::kMaxSocketNameLength,
dmaclach@chromium.orgc1d3d422010-12-20 15:59:23 +0900150 "%s", name.c_str());
151 DCHECK_EQ(static_cast<int>(name.length()), path_len);
152 size_t server_address_len = offsetof(struct sockaddr_un,
153 sun_path) + path_len + 1;
154
155 if (mode == IPC::Channel::MODE_NAMED_SERVER) {
156 // Only one server at a time. Cleanup garbage if it exists.
157 unlink(name.c_str());
pkasting@chromium.orgc4f2de22011-09-01 09:46:33 +0900158 // Make sure the path we need exists.
brettw@chromium.org22b3fda2013-02-10 13:49:30 +0900159 base::FilePath path(name);
160 base::FilePath dir_path = path.DirName();
dmaclach@chromium.orgc1d3d422010-12-20 15:59:23 +0900161 ASSERT_TRUE(file_util::CreateDirectory(dir_path));
162 ASSERT_GE(bind(socket_fd,
163 reinterpret_cast<struct sockaddr *>(&server_address),
164 server_address_len), 0) << server_address.sun_path
165 << ": " << strerror(errno)
166 << "(" << errno << ")";
167 ASSERT_GE(listen(socket_fd, SOMAXCONN), 0) << server_address.sun_path
168 << ": " << strerror(errno)
169 << "(" << errno << ")";
170 } else if (mode == IPC::Channel::MODE_NAMED_CLIENT) {
171 ASSERT_GE(connect(socket_fd,
172 reinterpret_cast<struct sockaddr *>(&server_address),
173 server_address_len), 0) << server_address.sun_path
174 << ": " << strerror(errno)
175 << "(" << errno << ")";
176 } else {
177 FAIL() << "Unknown mode " << mode;
178 }
179 handle->socket.fd = socket_fd;
180}
181
tedvessenes@gmail.com5966b642012-07-12 00:41:43 +0900182void IPCChannelPosixTest::SpinRunLoop(base::TimeDelta delay) {
xhwang@chromium.org0b2c2a52013-05-01 05:55:03 +0900183 base::MessageLoopForIO* loop = base::MessageLoopForIO::current();
dmaclach@chromium.orgc1d3d422010-12-20 15:59:23 +0900184 // Post a quit task so that this loop eventually ends and we don't hang
185 // in the case of a bad test. Usually, the run loop will quit sooner than
186 // that because all tests use a IPCChannelPosixTestListener which quits the
187 // current run loop on any channel activity.
xhwang@chromium.org0b2c2a52013-05-01 05:55:03 +0900188 loop->PostDelayedTask(FROM_HERE, base::MessageLoop::QuitClosure(), delay);
dmaclach@chromium.orgc1d3d422010-12-20 15:59:23 +0900189 loop->Run();
190}
191
192TEST_F(IPCChannelPosixTest, BasicListen) {
nileshagrawal@chromium.org42a2e0d2012-05-25 11:56:25 +0900193 const std::string kChannelName =
194 GetChannelDirName() + "/IPCChannelPosixTest_BasicListen";
jrg@chromium.org2eb192e2011-11-04 09:14:16 +0900195
dmaclach@chromium.orgc1d3d422010-12-20 15:59:23 +0900196 // Test creating a socket that is listening.
jrg@chromium.org2eb192e2011-11-04 09:14:16 +0900197 IPC::ChannelHandle handle(kChannelName);
dmaclach@chromium.orgc1d3d422010-12-20 15:59:23 +0900198 SetUpSocket(&handle, IPC::Channel::MODE_NAMED_SERVER);
199 unlink(handle.name.c_str());
200 IPC::Channel channel(handle, IPC::Channel::MODE_NAMED_SERVER, NULL);
201 ASSERT_TRUE(channel.Connect());
202 ASSERT_TRUE(channel.AcceptsConnections());
203 ASSERT_FALSE(channel.HasAcceptedConnection());
204 channel.ResetToAcceptingConnectionState();
205 ASSERT_FALSE(channel.HasAcceptedConnection());
206}
207
208TEST_F(IPCChannelPosixTest, BasicConnected) {
209 // Test creating a socket that is connected.
210 int pipe_fds[2];
211 ASSERT_EQ(0, socketpair(AF_UNIX, SOCK_STREAM, 0, pipe_fds));
212 std::string socket_name("/var/tmp/IPCChannelPosixTest_BasicConnected");
213 ASSERT_GE(fcntl(pipe_fds[0], F_SETFL, O_NONBLOCK), 0);
214
215 base::FileDescriptor fd(pipe_fds[0], false);
216 IPC::ChannelHandle handle(socket_name, fd);
217 IPC::Channel channel(handle, IPC::Channel::MODE_SERVER, NULL);
218 ASSERT_TRUE(channel.Connect());
219 ASSERT_FALSE(channel.AcceptsConnections());
220 channel.Close();
221 ASSERT_TRUE(HANDLE_EINTR(close(pipe_fds[1])) == 0);
222
223 // Make sure that we can use the socket that is created for us by
224 // a standard channel.
225 IPC::Channel channel2(socket_name, IPC::Channel::MODE_SERVER, NULL);
226 ASSERT_TRUE(channel2.Connect());
227 ASSERT_FALSE(channel2.AcceptsConnections());
228}
229
230TEST_F(IPCChannelPosixTest, AdvancedConnected) {
231 // Test creating a connection to an external process.
232 IPCChannelPosixTestListener listener(false);
nileshagrawal@chromium.org42a2e0d2012-05-25 11:56:25 +0900233 IPC::ChannelHandle chan_handle(GetConnectionSocketName());
dmaclach@chromium.orgc1d3d422010-12-20 15:59:23 +0900234 SetUpSocket(&chan_handle, IPC::Channel::MODE_NAMED_SERVER);
235 IPC::Channel channel(chan_handle, IPC::Channel::MODE_NAMED_SERVER, &listener);
236 ASSERT_TRUE(channel.Connect());
237 ASSERT_TRUE(channel.AcceptsConnections());
238 ASSERT_FALSE(channel.HasAcceptedConnection());
239
240 base::ProcessHandle handle = SpawnChild("IPCChannelPosixTestConnectionProc",
241 false);
242 ASSERT_TRUE(handle);
tedvessenes@gmail.com5966b642012-07-12 00:41:43 +0900243 SpinRunLoop(TestTimeouts::action_max_timeout());
dmaclach@chromium.orgc1d3d422010-12-20 15:59:23 +0900244 ASSERT_EQ(IPCChannelPosixTestListener::CONNECTED, listener.status());
245 ASSERT_TRUE(channel.HasAcceptedConnection());
pkasting@chromium.orgc4f2de22011-09-01 09:46:33 +0900246 IPC::Message* message = new IPC::Message(0, // routing_id
247 kQuitMessage, // message type
dmaclach@chromium.orgc1d3d422010-12-20 15:59:23 +0900248 IPC::Message::PRIORITY_NORMAL);
249 channel.Send(message);
tedvessenes@gmail.com5966b642012-07-12 00:41:43 +0900250 SpinRunLoop(TestTimeouts::action_timeout());
dmaclach@chromium.orgc1d3d422010-12-20 15:59:23 +0900251 int exit_code = 0;
252 EXPECT_TRUE(base::WaitForExitCode(handle, &exit_code));
253 EXPECT_EQ(0, exit_code);
254 ASSERT_EQ(IPCChannelPosixTestListener::CHANNEL_ERROR, listener.status());
255 ASSERT_FALSE(channel.HasAcceptedConnection());
256}
257
258TEST_F(IPCChannelPosixTest, ResetState) {
259 // Test creating a connection to an external process. Close the connection,
260 // but continue to listen and make sure another external process can connect
261 // to us.
262 IPCChannelPosixTestListener listener(false);
nileshagrawal@chromium.org42a2e0d2012-05-25 11:56:25 +0900263 IPC::ChannelHandle chan_handle(GetConnectionSocketName());
dmaclach@chromium.orgc1d3d422010-12-20 15:59:23 +0900264 SetUpSocket(&chan_handle, IPC::Channel::MODE_NAMED_SERVER);
265 IPC::Channel channel(chan_handle, IPC::Channel::MODE_NAMED_SERVER, &listener);
266 ASSERT_TRUE(channel.Connect());
267 ASSERT_TRUE(channel.AcceptsConnections());
268 ASSERT_FALSE(channel.HasAcceptedConnection());
269
270 base::ProcessHandle handle = SpawnChild("IPCChannelPosixTestConnectionProc",
271 false);
272 ASSERT_TRUE(handle);
tedvessenes@gmail.com5966b642012-07-12 00:41:43 +0900273 SpinRunLoop(TestTimeouts::action_max_timeout());
dmaclach@chromium.orgc1d3d422010-12-20 15:59:23 +0900274 ASSERT_EQ(IPCChannelPosixTestListener::CONNECTED, listener.status());
275 ASSERT_TRUE(channel.HasAcceptedConnection());
276 channel.ResetToAcceptingConnectionState();
277 ASSERT_FALSE(channel.HasAcceptedConnection());
278
279 base::ProcessHandle handle2 = SpawnChild("IPCChannelPosixTestConnectionProc",
280 false);
281 ASSERT_TRUE(handle2);
tedvessenes@gmail.com5966b642012-07-12 00:41:43 +0900282 SpinRunLoop(TestTimeouts::action_max_timeout());
dmaclach@chromium.orgc1d3d422010-12-20 15:59:23 +0900283 ASSERT_EQ(IPCChannelPosixTestListener::CONNECTED, listener.status());
284 ASSERT_TRUE(channel.HasAcceptedConnection());
pkasting@chromium.orgc4f2de22011-09-01 09:46:33 +0900285 IPC::Message* message = new IPC::Message(0, // routing_id
286 kQuitMessage, // message type
dmaclach@chromium.orgc1d3d422010-12-20 15:59:23 +0900287 IPC::Message::PRIORITY_NORMAL);
288 channel.Send(message);
tedvessenes@gmail.com5966b642012-07-12 00:41:43 +0900289 SpinRunLoop(TestTimeouts::action_timeout());
dmaclach@chromium.orgc1d3d422010-12-20 15:59:23 +0900290 EXPECT_TRUE(base::KillProcess(handle, 0, false));
291 int exit_code = 0;
292 EXPECT_TRUE(base::WaitForExitCode(handle2, &exit_code));
293 EXPECT_EQ(0, exit_code);
294 ASSERT_EQ(IPCChannelPosixTestListener::CHANNEL_ERROR, listener.status());
295 ASSERT_FALSE(channel.HasAcceptedConnection());
296}
297
dmaclach@chromium.org344a3d52011-08-25 23:14:05 +0900298TEST_F(IPCChannelPosixTest, BadChannelName) {
299 // Test empty name
300 IPC::ChannelHandle handle("");
301 IPC::Channel channel(handle, IPC::Channel::MODE_NAMED_SERVER, NULL);
302 ASSERT_FALSE(channel.Connect());
303
304 // Test name that is too long.
305 const char *kTooLongName = "This_is_a_very_long_name_to_proactively_implement"
306 "client-centered_synergy_through_top-line"
307 "platforms_Phosfluorescently_disintermediate_"
308 "clicks-and-mortar_best_practices_without_"
309 "future-proof_growth_strategies_Continually"
310 "pontificate_proactive_potentialities_before"
311 "leading-edge_processes";
jeremya@chromium.orgf14bfab2013-03-13 13:23:10 +0900312 EXPECT_GE(strlen(kTooLongName), IPC::kMaxSocketNameLength);
dmaclach@chromium.org344a3d52011-08-25 23:14:05 +0900313 IPC::ChannelHandle handle2(kTooLongName);
314 IPC::Channel channel2(handle2, IPC::Channel::MODE_NAMED_SERVER, NULL);
315 EXPECT_FALSE(channel2.Connect());
316}
317
dmaclach@chromium.orgc1d3d422010-12-20 15:59:23 +0900318TEST_F(IPCChannelPosixTest, MultiConnection) {
319 // Test setting up a connection to an external process, and then have
320 // another external process attempt to connect to us.
321 IPCChannelPosixTestListener listener(false);
nileshagrawal@chromium.org42a2e0d2012-05-25 11:56:25 +0900322 IPC::ChannelHandle chan_handle(GetConnectionSocketName());
dmaclach@chromium.orgc1d3d422010-12-20 15:59:23 +0900323 SetUpSocket(&chan_handle, IPC::Channel::MODE_NAMED_SERVER);
324 IPC::Channel channel(chan_handle, IPC::Channel::MODE_NAMED_SERVER, &listener);
325 ASSERT_TRUE(channel.Connect());
326 ASSERT_TRUE(channel.AcceptsConnections());
327 ASSERT_FALSE(channel.HasAcceptedConnection());
328
329 base::ProcessHandle handle = SpawnChild("IPCChannelPosixTestConnectionProc",
330 false);
331 ASSERT_TRUE(handle);
tedvessenes@gmail.com5966b642012-07-12 00:41:43 +0900332 SpinRunLoop(TestTimeouts::action_max_timeout());
dmaclach@chromium.orgc1d3d422010-12-20 15:59:23 +0900333 ASSERT_EQ(IPCChannelPosixTestListener::CONNECTED, listener.status());
334 ASSERT_TRUE(channel.HasAcceptedConnection());
335 base::ProcessHandle handle2 = SpawnChild("IPCChannelPosixFailConnectionProc",
336 false);
337 ASSERT_TRUE(handle2);
tedvessenes@gmail.com5966b642012-07-12 00:41:43 +0900338 SpinRunLoop(TestTimeouts::action_max_timeout());
dmaclach@chromium.orgc1d3d422010-12-20 15:59:23 +0900339 int exit_code = 0;
340 EXPECT_TRUE(base::WaitForExitCode(handle2, &exit_code));
341 EXPECT_EQ(exit_code, 0);
342 ASSERT_EQ(IPCChannelPosixTestListener::DENIED, listener.status());
343 ASSERT_TRUE(channel.HasAcceptedConnection());
pkasting@chromium.orgc4f2de22011-09-01 09:46:33 +0900344 IPC::Message* message = new IPC::Message(0, // routing_id
345 kQuitMessage, // message type
dmaclach@chromium.orgc1d3d422010-12-20 15:59:23 +0900346 IPC::Message::PRIORITY_NORMAL);
347 channel.Send(message);
tedvessenes@gmail.com5966b642012-07-12 00:41:43 +0900348 SpinRunLoop(TestTimeouts::action_timeout());
dmaclach@chromium.orgc1d3d422010-12-20 15:59:23 +0900349 EXPECT_TRUE(base::WaitForExitCode(handle, &exit_code));
350 EXPECT_EQ(exit_code, 0);
351 ASSERT_EQ(IPCChannelPosixTestListener::CHANNEL_ERROR, listener.status());
352 ASSERT_FALSE(channel.HasAcceptedConnection());
353}
354
dmaclach@chromium.org2812db62011-03-03 07:27:14 +0900355TEST_F(IPCChannelPosixTest, DoubleServer) {
356 // Test setting up two servers with the same name.
357 IPCChannelPosixTestListener listener(false);
358 IPCChannelPosixTestListener listener2(false);
nileshagrawal@chromium.org42a2e0d2012-05-25 11:56:25 +0900359 IPC::ChannelHandle chan_handle(GetConnectionSocketName());
dmaclach@chromium.org2812db62011-03-03 07:27:14 +0900360 IPC::Channel channel(chan_handle, IPC::Channel::MODE_SERVER, &listener);
361 IPC::Channel channel2(chan_handle, IPC::Channel::MODE_SERVER, &listener2);
362 ASSERT_TRUE(channel.Connect());
363 ASSERT_FALSE(channel2.Connect());
364}
365
366TEST_F(IPCChannelPosixTest, BadMode) {
367 // Test setting up two servers with a bad mode.
368 IPCChannelPosixTestListener listener(false);
nileshagrawal@chromium.org42a2e0d2012-05-25 11:56:25 +0900369 IPC::ChannelHandle chan_handle(GetConnectionSocketName());
dmaclach@chromium.org2812db62011-03-03 07:27:14 +0900370 IPC::Channel channel(chan_handle, IPC::Channel::MODE_NONE, &listener);
371 ASSERT_FALSE(channel.Connect());
372}
373
kkania@chromium.orgf37b4e52011-08-09 15:46:06 +0900374TEST_F(IPCChannelPosixTest, IsNamedServerInitialized) {
nileshagrawal@chromium.org42a2e0d2012-05-25 11:56:25 +0900375 const std::string& connection_socket_name = GetConnectionSocketName();
kkania@chromium.orgf37b4e52011-08-09 15:46:06 +0900376 IPCChannelPosixTestListener listener(false);
nileshagrawal@chromium.org42a2e0d2012-05-25 11:56:25 +0900377 IPC::ChannelHandle chan_handle(connection_socket_name);
brettw@chromium.org220b8de2013-07-17 04:10:23 +0900378 ASSERT_TRUE(base::DeleteFile(base::FilePath(connection_socket_name), false));
kkania@chromium.orgf37b4e52011-08-09 15:46:06 +0900379 ASSERT_FALSE(IPC::Channel::IsNamedServerInitialized(
nileshagrawal@chromium.org42a2e0d2012-05-25 11:56:25 +0900380 connection_socket_name));
kkania@chromium.orgf37b4e52011-08-09 15:46:06 +0900381 IPC::Channel channel(chan_handle, IPC::Channel::MODE_NAMED_SERVER, &listener);
382 ASSERT_TRUE(IPC::Channel::IsNamedServerInitialized(
nileshagrawal@chromium.org42a2e0d2012-05-25 11:56:25 +0900383 connection_socket_name));
kkania@chromium.orgf37b4e52011-08-09 15:46:06 +0900384 channel.Close();
385 ASSERT_FALSE(IPC::Channel::IsNamedServerInitialized(
nileshagrawal@chromium.org42a2e0d2012-05-25 11:56:25 +0900386 connection_socket_name));
kkania@chromium.orgf37b4e52011-08-09 15:46:06 +0900387}
388
dmaclach@chromium.orgc1d3d422010-12-20 15:59:23 +0900389// A long running process that connects to us
390MULTIPROCESS_TEST_MAIN(IPCChannelPosixTestConnectionProc) {
xhwang@chromium.org0b2c2a52013-05-01 05:55:03 +0900391 base::MessageLoopForIO message_loop;
dmaclach@chromium.orgc1d3d422010-12-20 15:59:23 +0900392 IPCChannelPosixTestListener listener(true);
nileshagrawal@chromium.org42a2e0d2012-05-25 11:56:25 +0900393 IPC::ChannelHandle handle(IPCChannelPosixTest::GetConnectionSocketName());
dmaclach@chromium.orgc1d3d422010-12-20 15:59:23 +0900394 IPCChannelPosixTest::SetUpSocket(&handle, IPC::Channel::MODE_NAMED_CLIENT);
395 IPC::Channel channel(handle, IPC::Channel::MODE_NAMED_CLIENT, &listener);
396 EXPECT_TRUE(channel.Connect());
tedvessenes@gmail.com5966b642012-07-12 00:41:43 +0900397 IPCChannelPosixTest::SpinRunLoop(TestTimeouts::action_max_timeout());
dmaclach@chromium.orgc1d3d422010-12-20 15:59:23 +0900398 EXPECT_EQ(IPCChannelPosixTestListener::MESSAGE_RECEIVED, listener.status());
399 return 0;
400}
401
402// Simple external process that shouldn't be able to connect to us.
403MULTIPROCESS_TEST_MAIN(IPCChannelPosixFailConnectionProc) {
xhwang@chromium.org0b2c2a52013-05-01 05:55:03 +0900404 base::MessageLoopForIO message_loop;
dmaclach@chromium.orgc1d3d422010-12-20 15:59:23 +0900405 IPCChannelPosixTestListener listener(false);
nileshagrawal@chromium.org42a2e0d2012-05-25 11:56:25 +0900406 IPC::ChannelHandle handle(IPCChannelPosixTest::GetConnectionSocketName());
dmaclach@chromium.orgc1d3d422010-12-20 15:59:23 +0900407 IPCChannelPosixTest::SetUpSocket(&handle, IPC::Channel::MODE_NAMED_CLIENT);
408 IPC::Channel channel(handle, IPC::Channel::MODE_NAMED_CLIENT, &listener);
409
410 // In this case connect may succeed or fail depending on if the packet
411 // actually gets sent at sendmsg. Since we never delay on send, we may not
412 // see the error. However even if connect succeeds, eventually we will get an
413 // error back since the channel will be closed when we attempt to read from
414 // it.
415 bool connected = channel.Connect();
416 if (connected) {
tedvessenes@gmail.com5966b642012-07-12 00:41:43 +0900417 IPCChannelPosixTest::SpinRunLoop(TestTimeouts::action_max_timeout());
dmaclach@chromium.orgc1d3d422010-12-20 15:59:23 +0900418 EXPECT_EQ(IPCChannelPosixTestListener::CHANNEL_ERROR, listener.status());
419 } else {
420 EXPECT_EQ(IPCChannelPosixTestListener::DISCONNECTED, listener.status());
421 }
422 return 0;
423}
viettrungluu@chromium.org7ca19132013-01-12 05:56:22 +0900424
425} // namespace