blob: 04214a20b9e87376787beb15189db04cec1921fd [file] [log] [blame]
Yabin Cui2ce9d562015-09-15 16:27:09 -07001/*
2 * Copyright (C) 2015 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17#include "fdevent.h"
18
19#include <gtest/gtest.h>
20
Josh Gao511763b2016-02-10 14:49:00 -080021#include <array>
Yabin Cui2ce9d562015-09-15 16:27:09 -070022#include <limits>
23#include <queue>
24#include <string>
Elliott Hughes73925982016-11-15 12:37:32 -080025#include <thread>
Yabin Cui2ce9d562015-09-15 16:27:09 -070026#include <vector>
27
Yabin Cui2ce9d562015-09-15 16:27:09 -070028#include <unistd.h>
29
30#include "adb.h"
31#include "adb_io.h"
Josh Gao511763b2016-02-10 14:49:00 -080032#include "fdevent_test.h"
Yabin Cui2ce9d562015-09-15 16:27:09 -070033#include "socket.h"
34#include "sysdeps.h"
Josh Gao70267e42016-11-15 18:55:47 -080035#include "sysdeps/chrono.h"
Yabin Cui2ce9d562015-09-15 16:27:09 -070036
Yabin Cui2ce9d562015-09-15 16:27:09 -070037struct ThreadArg {
38 int first_read_fd;
39 int last_write_fd;
40 size_t middle_pipe_count;
41};
42
Josh Gao511763b2016-02-10 14:49:00 -080043class LocalSocketTest : public FdeventTest {};
Yabin Cui2ce9d562015-09-15 16:27:09 -070044
Yabin Cui2ce9d562015-09-15 16:27:09 -070045TEST_F(LocalSocketTest, smoke) {
Josh Gao511763b2016-02-10 14:49:00 -080046 // Join two socketpairs with a chain of intermediate socketpairs.
47 int first[2];
48 std::vector<std::array<int, 2>> intermediates;
49 int last[2];
50
51 constexpr size_t INTERMEDIATE_COUNT = 50;
52 constexpr size_t MESSAGE_LOOP_COUNT = 100;
Yabin Cui2ce9d562015-09-15 16:27:09 -070053 const std::string MESSAGE = "socket_test";
Yabin Cui2ce9d562015-09-15 16:27:09 -070054
Josh Gao511763b2016-02-10 14:49:00 -080055 intermediates.resize(INTERMEDIATE_COUNT);
56 ASSERT_EQ(0, adb_socketpair(first)) << strerror(errno);
57 ASSERT_EQ(0, adb_socketpair(last)) << strerror(errno);
58 asocket* prev_tail = create_local_socket(first[1]);
59 ASSERT_NE(nullptr, prev_tail);
Yabin Cui2ce9d562015-09-15 16:27:09 -070060
Josh Gao511763b2016-02-10 14:49:00 -080061 auto connect = [](asocket* tail, asocket* head) {
62 tail->peer = head;
63 head->peer = tail;
64 tail->ready(tail);
65 };
66
67 for (auto& intermediate : intermediates) {
68 ASSERT_EQ(0, adb_socketpair(intermediate.data())) << strerror(errno);
69
70 asocket* head = create_local_socket(intermediate[0]);
71 ASSERT_NE(nullptr, head);
72
73 asocket* tail = create_local_socket(intermediate[1]);
74 ASSERT_NE(nullptr, tail);
75
76 connect(prev_tail, head);
77 prev_tail = tail;
78 }
79
80 asocket* end = create_local_socket(last[0]);
81 ASSERT_NE(nullptr, end);
82 connect(prev_tail, end);
83
84 PrepareThread();
Josh Gao511763b2016-02-10 14:49:00 -080085
Yabin Cui2ce9d562015-09-15 16:27:09 -070086 for (size_t i = 0; i < MESSAGE_LOOP_COUNT; ++i) {
87 std::string read_buffer = MESSAGE;
88 std::string write_buffer(MESSAGE.size(), 'a');
Josh Gao511763b2016-02-10 14:49:00 -080089 ASSERT_TRUE(WriteFdExactly(first[0], &read_buffer[0], read_buffer.size()));
90 ASSERT_TRUE(ReadFdExactly(last[1], &write_buffer[0], write_buffer.size()));
Yabin Cui2ce9d562015-09-15 16:27:09 -070091 ASSERT_EQ(read_buffer, write_buffer);
92 }
Yabin Cui2ce9d562015-09-15 16:27:09 -070093
Josh Gao511763b2016-02-10 14:49:00 -080094 ASSERT_EQ(0, adb_close(first[0]));
95 ASSERT_EQ(0, adb_close(last[1]));
96
97 // Wait until the local sockets are closed.
Josh Gaocd608202018-03-28 18:53:30 -070098 WaitForFdeventLoop();
Yabin Cui40a47272016-04-25 19:48:19 -070099 ASSERT_EQ(GetAdditionalLocalSocketCount(), fdevent_installed_count());
Josh Gaoc7bdb6d2018-03-29 16:27:13 -0700100 TerminateThread();
Yabin Cui2ce9d562015-09-15 16:27:09 -0700101}
102
103struct CloseWithPacketArg {
104 int socket_fd;
105 size_t bytes_written;
106 int cause_close_fd;
107};
108
Josh Gaoc7bdb6d2018-03-29 16:27:13 -0700109static void CreateCloser(CloseWithPacketArg* arg) {
110 fdevent_run_on_main_thread([arg]() {
111 asocket* s = create_local_socket(arg->socket_fd);
112 ASSERT_TRUE(s != nullptr);
113 arg->bytes_written = 0;
Josh Gaod5e56ce2018-03-19 15:36:17 -0700114
Josh Gao205a8f42018-03-30 14:05:40 -0700115 // On platforms that implement sockets via underlying sockets (e.g. Wine),
116 // a socket can appear to be full, and then become available for writes
117 // again without read being called on the other end. Loop and sleep after
118 // each write to give the underlying implementation time to flush.
119 bool socket_filled = false;
120 for (int i = 0; i < 128; ++i) {
Josh Gaocd2a5292018-03-07 16:52:28 -0800121 apacket::payload_type data;
Josh Gao205a8f42018-03-30 14:05:40 -0700122 data.resize(MAX_PAYLOAD);
123 arg->bytes_written += data.size();
124 int ret = s->enqueue(s, std::move(data));
125 if (ret == 1) {
126 socket_filled = true;
127 break;
128 }
129 ASSERT_NE(-1, ret);
130
131 std::this_thread::sleep_for(250ms);
132 }
133 ASSERT_TRUE(socket_filled);
Yabin Cui2ce9d562015-09-15 16:27:09 -0700134
Josh Gaoc7bdb6d2018-03-29 16:27:13 -0700135 asocket* cause_close_s = create_local_socket(arg->cause_close_fd);
136 ASSERT_TRUE(cause_close_s != nullptr);
137 cause_close_s->peer = s;
138 s->peer = cause_close_s;
139 cause_close_s->ready(cause_close_s);
140 });
141 WaitForFdeventLoop();
Yabin Cui2ce9d562015-09-15 16:27:09 -0700142}
143
144// This test checks if we can close local socket in the following situation:
145// The socket is closing but having some packets, so it is not closed. Then
146// some write error happens in the socket's file handler, e.g., the file
147// handler is closed.
Yabin Cuiec2e7d82015-09-29 12:25:33 -0700148TEST_F(LocalSocketTest, close_socket_with_packet) {
Yabin Cui2ce9d562015-09-15 16:27:09 -0700149 int socket_fd[2];
150 ASSERT_EQ(0, adb_socketpair(socket_fd));
151 int cause_close_fd[2];
152 ASSERT_EQ(0, adb_socketpair(cause_close_fd));
153 CloseWithPacketArg arg;
154 arg.socket_fd = socket_fd[1];
155 arg.cause_close_fd = cause_close_fd[1];
Yabin Cui2ce9d562015-09-15 16:27:09 -0700156
Josh Gao511763b2016-02-10 14:49:00 -0800157 PrepareThread();
Josh Gaoc7bdb6d2018-03-29 16:27:13 -0700158 CreateCloser(&arg);
Josh Gaocd608202018-03-28 18:53:30 -0700159
Josh Gao511763b2016-02-10 14:49:00 -0800160 ASSERT_EQ(0, adb_close(cause_close_fd[0]));
Josh Gaocd608202018-03-28 18:53:30 -0700161
162 WaitForFdeventLoop();
Yabin Cui40a47272016-04-25 19:48:19 -0700163 EXPECT_EQ(1u + GetAdditionalLocalSocketCount(), fdevent_installed_count());
Josh Gao511763b2016-02-10 14:49:00 -0800164 ASSERT_EQ(0, adb_close(socket_fd[0]));
Josh Gaocd608202018-03-28 18:53:30 -0700165
166 WaitForFdeventLoop();
Yabin Cui40a47272016-04-25 19:48:19 -0700167 ASSERT_EQ(GetAdditionalLocalSocketCount(), fdevent_installed_count());
Josh Gaoc7bdb6d2018-03-29 16:27:13 -0700168 TerminateThread();
Yabin Cui2ce9d562015-09-15 16:27:09 -0700169}
170
Yabin Cui2ce9d562015-09-15 16:27:09 -0700171// This test checks if we can read packets from a closing local socket.
Yabin Cuiec2e7d82015-09-29 12:25:33 -0700172TEST_F(LocalSocketTest, read_from_closing_socket) {
Yabin Cui2ce9d562015-09-15 16:27:09 -0700173 int socket_fd[2];
174 ASSERT_EQ(0, adb_socketpair(socket_fd));
175 int cause_close_fd[2];
176 ASSERT_EQ(0, adb_socketpair(cause_close_fd));
177 CloseWithPacketArg arg;
178 arg.socket_fd = socket_fd[1];
179 arg.cause_close_fd = cause_close_fd[1];
180
Josh Gao511763b2016-02-10 14:49:00 -0800181 PrepareThread();
Josh Gaoc7bdb6d2018-03-29 16:27:13 -0700182 CreateCloser(&arg);
Josh Gaocd608202018-03-28 18:53:30 -0700183
184 WaitForFdeventLoop();
Yabin Cui2ce9d562015-09-15 16:27:09 -0700185 ASSERT_EQ(0, adb_close(cause_close_fd[0]));
Josh Gaocd608202018-03-28 18:53:30 -0700186
187 WaitForFdeventLoop();
Yabin Cui40a47272016-04-25 19:48:19 -0700188 EXPECT_EQ(1u + GetAdditionalLocalSocketCount(), fdevent_installed_count());
Yabin Cui2ce9d562015-09-15 16:27:09 -0700189
190 // Verify if we can read successfully.
191 std::vector<char> buf(arg.bytes_written);
Josh Gao511763b2016-02-10 14:49:00 -0800192 ASSERT_NE(0u, arg.bytes_written);
Yabin Cui2ce9d562015-09-15 16:27:09 -0700193 ASSERT_EQ(true, ReadFdExactly(socket_fd[0], buf.data(), buf.size()));
194 ASSERT_EQ(0, adb_close(socket_fd[0]));
195
Josh Gaocd608202018-03-28 18:53:30 -0700196 WaitForFdeventLoop();
Yabin Cui40a47272016-04-25 19:48:19 -0700197 ASSERT_EQ(GetAdditionalLocalSocketCount(), fdevent_installed_count());
Josh Gaoc7bdb6d2018-03-29 16:27:13 -0700198 TerminateThread();
Yabin Cui2ce9d562015-09-15 16:27:09 -0700199}
200
201// This test checks if we can close local socket in the following situation:
202// The socket is not closed and has some packets. When it fails to write to
203// the socket's file handler because the other end is closed, we check if the
204// socket is closed.
205TEST_F(LocalSocketTest, write_error_when_having_packets) {
206 int socket_fd[2];
207 ASSERT_EQ(0, adb_socketpair(socket_fd));
208 int cause_close_fd[2];
209 ASSERT_EQ(0, adb_socketpair(cause_close_fd));
210 CloseWithPacketArg arg;
211 arg.socket_fd = socket_fd[1];
212 arg.cause_close_fd = cause_close_fd[1];
213
Josh Gao511763b2016-02-10 14:49:00 -0800214 PrepareThread();
Josh Gaoc7bdb6d2018-03-29 16:27:13 -0700215 CreateCloser(&arg);
Josh Gaocd608202018-03-28 18:53:30 -0700216
217 WaitForFdeventLoop();
Yabin Cui40a47272016-04-25 19:48:19 -0700218 EXPECT_EQ(2u + GetAdditionalLocalSocketCount(), fdevent_installed_count());
Yabin Cui2ce9d562015-09-15 16:27:09 -0700219 ASSERT_EQ(0, adb_close(socket_fd[0]));
220
Josh Gaocd608202018-03-28 18:53:30 -0700221 WaitForFdeventLoop();
Yabin Cui40a47272016-04-25 19:48:19 -0700222 ASSERT_EQ(GetAdditionalLocalSocketCount(), fdevent_installed_count());
Josh Gaoc7bdb6d2018-03-29 16:27:13 -0700223 TerminateThread();
Yabin Cui2ce9d562015-09-15 16:27:09 -0700224}
225
Josh Gao80206022018-03-15 15:28:55 -0700226// Ensure that if we fail to write output to an fd, we will still flush data coming from it.
227TEST_F(LocalSocketTest, flush_after_shutdown) {
228 int head_fd[2];
229 int tail_fd[2];
230 ASSERT_EQ(0, adb_socketpair(head_fd));
231 ASSERT_EQ(0, adb_socketpair(tail_fd));
232
233 asocket* head = create_local_socket(head_fd[1]);
234 asocket* tail = create_local_socket(tail_fd[1]);
235
236 head->peer = tail;
237 head->ready(head);
238
239 tail->peer = head;
240 tail->ready(tail);
241
242 PrepareThread();
Josh Gao80206022018-03-15 15:28:55 -0700243
Josh Gaod5e56ce2018-03-19 15:36:17 -0700244 EXPECT_TRUE(WriteFdExactly(head_fd[0], "foo", 3));
Josh Gao80206022018-03-15 15:28:55 -0700245
Josh Gaod5e56ce2018-03-19 15:36:17 -0700246 EXPECT_EQ(0, adb_shutdown(head_fd[0], SHUT_RD));
247 const char* str = "write succeeds, but local_socket will fail to write";
248 EXPECT_TRUE(WriteFdExactly(tail_fd[0], str, strlen(str)));
249 EXPECT_TRUE(WriteFdExactly(head_fd[0], "bar", 3));
250
251 char buf[6];
252 EXPECT_TRUE(ReadFdExactly(tail_fd[0], buf, 6));
253 EXPECT_EQ(0, memcmp(buf, "foobar", 6));
Josh Gao80206022018-03-15 15:28:55 -0700254
255 adb_close(head_fd[0]);
256 adb_close(tail_fd[0]);
257
Josh Gaocd608202018-03-28 18:53:30 -0700258 WaitForFdeventLoop();
Josh Gao80206022018-03-15 15:28:55 -0700259 ASSERT_EQ(GetAdditionalLocalSocketCount(), fdevent_installed_count());
Josh Gaoc7bdb6d2018-03-29 16:27:13 -0700260 TerminateThread();
Josh Gao80206022018-03-15 15:28:55 -0700261}
Josh Gao80206022018-03-15 15:28:55 -0700262
Yabin Cuiec2e7d82015-09-29 12:25:33 -0700263#if defined(__linux__)
264
265static void ClientThreadFunc() {
266 std::string error;
267 int fd = network_loopback_client(5038, SOCK_STREAM, &error);
268 ASSERT_GE(fd, 0) << error;
Josh Gaoc7bdb6d2018-03-29 16:27:13 -0700269 std::this_thread::sleep_for(1s);
Yabin Cuiec2e7d82015-09-29 12:25:33 -0700270 ASSERT_EQ(0, adb_close(fd));
271}
272
Yabin Cuiec2e7d82015-09-29 12:25:33 -0700273// This test checks if we can close sockets in CLOSE_WAIT state.
274TEST_F(LocalSocketTest, close_socket_in_CLOSE_WAIT_state) {
Josh Gao511763b2016-02-10 14:49:00 -0800275 std::string error;
276 int listen_fd = network_inaddr_any_server(5038, SOCK_STREAM, &error);
277 ASSERT_GE(listen_fd, 0);
Yabin Cui2ce9d562015-09-15 16:27:09 -0700278
Josh Gao0f3312a2017-04-12 17:00:49 -0700279 std::thread client_thread(ClientThreadFunc);
Josh Gao511763b2016-02-10 14:49:00 -0800280
Elliott Hughes97a035c2016-08-23 12:50:00 -0700281 int accept_fd = adb_socket_accept(listen_fd, nullptr, nullptr);
Josh Gao511763b2016-02-10 14:49:00 -0800282 ASSERT_GE(accept_fd, 0);
Josh Gao511763b2016-02-10 14:49:00 -0800283
284 PrepareThread();
Josh Gaoc7bdb6d2018-03-29 16:27:13 -0700285
286 fdevent_run_on_main_thread([accept_fd]() {
287 asocket* s = create_local_socket(accept_fd);
288 ASSERT_TRUE(s != nullptr);
289 });
Josh Gao511763b2016-02-10 14:49:00 -0800290
Josh Gaocd608202018-03-28 18:53:30 -0700291 WaitForFdeventLoop();
Yabin Cui40a47272016-04-25 19:48:19 -0700292 EXPECT_EQ(1u + GetAdditionalLocalSocketCount(), fdevent_installed_count());
Josh Gao511763b2016-02-10 14:49:00 -0800293
294 // Wait until the client closes its socket.
Josh Gao0f3312a2017-04-12 17:00:49 -0700295 client_thread.join();
Josh Gao511763b2016-02-10 14:49:00 -0800296
Josh Gaocd608202018-03-28 18:53:30 -0700297 WaitForFdeventLoop();
Yabin Cui40a47272016-04-25 19:48:19 -0700298 ASSERT_EQ(GetAdditionalLocalSocketCount(), fdevent_installed_count());
Josh Gaoc7bdb6d2018-03-29 16:27:13 -0700299 TerminateThread();
Yabin Cui2ce9d562015-09-15 16:27:09 -0700300}
Yabin Cuiec2e7d82015-09-29 12:25:33 -0700301
302#endif // defined(__linux__)
David Pursellc929c6f2016-03-01 08:58:26 -0800303
304#if ADB_HOST
305
306// Checks that skip_host_serial(serial) returns a pointer to the part of |serial| which matches
307// |expected|, otherwise logs the failure to gtest.
Dan Austinca35e9e2016-03-28 15:32:37 -0700308void VerifySkipHostSerial(std::string serial, const char* expected) {
309 char* result = internal::skip_host_serial(&serial[0]);
David Pursellc929c6f2016-03-01 08:58:26 -0800310 if (expected == nullptr) {
311 EXPECT_EQ(nullptr, result);
312 } else {
313 EXPECT_STREQ(expected, result);
314 }
315}
316
317// Check [tcp:|udp:]<serial>[:<port>]:<command> format.
318TEST(socket_test, test_skip_host_serial) {
319 for (const std::string& protocol : {"", "tcp:", "udp:"}) {
320 VerifySkipHostSerial(protocol, nullptr);
321 VerifySkipHostSerial(protocol + "foo", nullptr);
322
323 VerifySkipHostSerial(protocol + "foo:bar", ":bar");
324 VerifySkipHostSerial(protocol + "foo:bar:baz", ":bar:baz");
325
326 VerifySkipHostSerial(protocol + "foo:123:bar", ":bar");
327 VerifySkipHostSerial(protocol + "foo:123:456", ":456");
328 VerifySkipHostSerial(protocol + "foo:123:bar:baz", ":bar:baz");
329
330 // Don't register a port unless it's all numbers and ends with ':'.
331 VerifySkipHostSerial(protocol + "foo:123", ":123");
332 VerifySkipHostSerial(protocol + "foo:123bar:baz", ":123bar:baz");
David Pursell24b62a72016-09-21 12:08:37 -0700333
334 VerifySkipHostSerial(protocol + "100.100.100.100:5555:foo", ":foo");
335 VerifySkipHostSerial(protocol + "[0123:4567:89ab:CDEF:0:9:a:f]:5555:foo", ":foo");
336 VerifySkipHostSerial(protocol + "[::1]:5555:foo", ":foo");
337
338 // If we can't find both [] then treat it as a normal serial with [ in it.
339 VerifySkipHostSerial(protocol + "[0123:foo", ":foo");
340
341 // Don't be fooled by random IPv6 addresses in the command string.
342 VerifySkipHostSerial(protocol + "foo:ping [0123:4567:89ab:CDEF:0:9:a:f]:5555",
343 ":ping [0123:4567:89ab:CDEF:0:9:a:f]:5555");
David Pursellc929c6f2016-03-01 08:58:26 -0800344 }
345}
346
347// Check <prefix>:<serial>:<command> format.
348TEST(socket_test, test_skip_host_serial_prefix) {
349 for (const std::string& prefix : {"usb:", "product:", "model:", "device:"}) {
350 VerifySkipHostSerial(prefix, nullptr);
351 VerifySkipHostSerial(prefix + "foo", nullptr);
352
353 VerifySkipHostSerial(prefix + "foo:bar", ":bar");
354 VerifySkipHostSerial(prefix + "foo:bar:baz", ":bar:baz");
355 VerifySkipHostSerial(prefix + "foo:123:bar", ":123:bar");
356 }
357}
358
359#endif // ADB_HOST