blob: 1bd57c1b25711e055cea3cb7d6d27064843d5a88 [file] [log] [blame]
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -08001/*
2 * Copyright (C) 2007 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
Yabin Cui19bec5b2015-09-22 15:52:57 -070017#define TRACE_TAG SOCKETS
Dan Albertdb6fe642015-03-19 15:21:08 -070018
19#include "sysdeps.h"
20
Dan Albertb302d122015-02-24 15:51:19 -080021#include <ctype.h>
22#include <errno.h>
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -080023#include <stdio.h>
24#include <stdlib.h>
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -080025#include <string.h>
Dan Albertb302d122015-02-24 15:51:19 -080026#include <unistd.h>
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -080027
Spencer Low28bc2cb2015-11-07 18:51:54 -080028#include <algorithm>
Josh Gao0f1a20a2016-05-17 17:46:27 -070029#include <mutex>
David Pursellc929c6f2016-03-01 08:58:26 -080030#include <string>
31#include <vector>
Spencer Low28bc2cb2015-11-07 18:51:54 -080032
Dan Albertb302d122015-02-24 15:51:19 -080033#if !ADB_HOST
Elliott Hughes8b249d22016-09-23 15:40:03 -070034#include <android-base/properties.h>
Steven Morelandb087d302017-04-13 23:48:57 -070035#include <log/log_properties.h>
Dan Albertb302d122015-02-24 15:51:19 -080036#endif
Dan Albertdb6fe642015-03-19 15:21:08 -070037
38#include "adb.h"
39#include "adb_io.h"
Dan Albertb302d122015-02-24 15:51:19 -080040#include "transport.h"
Josh Gaocd2a5292018-03-07 16:52:28 -080041#include "types.h"
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -080042
Josh Gao0f1a20a2016-05-17 17:46:27 -070043static std::recursive_mutex& local_socket_list_lock = *new std::recursive_mutex();
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -080044static unsigned local_socket_next_id = 1;
45
Josh Gao2b3db9e2018-01-31 13:15:51 -080046static auto& local_socket_list = *new std::vector<asocket*>();
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -080047
48/* the the list of currently closing local sockets.
49** these have no peer anymore, but still packets to
50** write to their fd.
51*/
Josh Gao2b3db9e2018-01-31 13:15:51 -080052static auto& local_socket_closing_list = *new std::vector<asocket*>();
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -080053
David 'Digit' Turnere92344d2013-12-13 14:09:44 +010054// Parse the global list of sockets to find one with id |local_id|.
55// If |peer_id| is not 0, also check that it is connected to a peer
56// with id |peer_id|. Returns an asocket handle on success, NULL on failure.
Josh Gaoef550fe2016-05-17 16:55:06 -070057asocket* find_local_socket(unsigned local_id, unsigned peer_id) {
Josh Gao2b3db9e2018-01-31 13:15:51 -080058 asocket* result = nullptr;
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -080059
Josh Gao0f1a20a2016-05-17 17:46:27 -070060 std::lock_guard<std::recursive_mutex> lock(local_socket_list_lock);
Josh Gao2b3db9e2018-01-31 13:15:51 -080061 for (asocket* s : local_socket_list) {
Josh Gaoef550fe2016-05-17 16:55:06 -070062 if (s->id != local_id) {
David 'Digit' Turnere92344d2013-12-13 14:09:44 +010063 continue;
Josh Gaoef550fe2016-05-17 16:55:06 -070064 }
David 'Digit' Turnere92344d2013-12-13 14:09:44 +010065 if (peer_id == 0 || (s->peer && s->peer->id == peer_id)) {
André Goddard Rosa5720e6e2010-06-12 11:40:20 -030066 result = s;
André Goddard Rosa5720e6e2010-06-12 11:40:20 -030067 }
David 'Digit' Turnere92344d2013-12-13 14:09:44 +010068 break;
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -080069 }
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -080070
71 return result;
72}
73
Josh Gaoef550fe2016-05-17 16:55:06 -070074void install_local_socket(asocket* s) {
Josh Gao0f1a20a2016-05-17 17:46:27 -070075 std::lock_guard<std::recursive_mutex> lock(local_socket_list_lock);
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -080076
77 s->id = local_socket_next_id++;
David 'Digit' Turnere92344d2013-12-13 14:09:44 +010078
79 // Socket ids should never be 0.
Josh Gaoef550fe2016-05-17 16:55:06 -070080 if (local_socket_next_id == 0) {
Elliott Hughese64126b2018-10-19 13:59:44 -070081 LOG(FATAL) << "local socket id overflow";
Josh Gaoef550fe2016-05-17 16:55:06 -070082 }
David 'Digit' Turnere92344d2013-12-13 14:09:44 +010083
Josh Gao2b3db9e2018-01-31 13:15:51 -080084 local_socket_list.push_back(s);
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -080085}
86
Josh Gaoef550fe2016-05-17 16:55:06 -070087void remove_socket(asocket* s) {
Josh Gaob69c78b2017-09-13 11:17:33 -070088 std::lock_guard<std::recursive_mutex> lock(local_socket_list_lock);
Josh Gao2b3db9e2018-01-31 13:15:51 -080089 for (auto list : { &local_socket_list, &local_socket_closing_list }) {
90 list->erase(std::remove_if(list->begin(), list->end(), [s](asocket* x) { return x == s; }),
91 list->end());
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -080092 }
93}
94
Josh Gaoef550fe2016-05-17 16:55:06 -070095void close_all_sockets(atransport* t) {
Josh Gaoef550fe2016-05-17 16:55:06 -070096 /* this is a little gross, but since s->close() *will* modify
97 ** the list out from under you, your options are limited.
98 */
Josh Gao0f1a20a2016-05-17 17:46:27 -070099 std::lock_guard<std::recursive_mutex> lock(local_socket_list_lock);
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -0800100restart:
Josh Gao2b3db9e2018-01-31 13:15:51 -0800101 for (asocket* s : local_socket_list) {
Josh Gaoef550fe2016-05-17 16:55:06 -0700102 if (s->transport == t || (s->peer && s->peer->transport == t)) {
Josh Gao80814e12016-05-18 10:39:48 -0700103 s->close(s);
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -0800104 goto restart;
105 }
106 }
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -0800107}
108
Josh Gao4b808502018-03-19 13:20:29 -0700109enum class SocketFlushResult {
110 Destroyed,
111 TryAgain,
112 Completed,
113};
114
115static SocketFlushResult local_socket_flush_incoming(asocket* s) {
Josh Gao9f155db2018-04-03 14:37:11 -0700116 if (!s->packet_queue.empty()) {
117 std::vector<adb_iovec> iov = s->packet_queue.iovecs();
118 ssize_t rc = adb_writev(s->fd, iov.data(), iov.size());
119 if (rc > 0 && static_cast<size_t>(rc) == s->packet_queue.size()) {
120 s->packet_queue.clear();
Josh Gao4b808502018-03-19 13:20:29 -0700121 } else if (rc > 0) {
Josh Gao9f155db2018-04-03 14:37:11 -0700122 // TODO: Implement a faster drop_front?
123 s->packet_queue.take_front(rc);
Josh Gao9528df22018-05-14 11:14:33 -0700124 fdevent_add(s->fde, FDE_WRITE);
Josh Gao4b808502018-03-19 13:20:29 -0700125 return SocketFlushResult::TryAgain;
126 } else if (rc == -1 && errno == EAGAIN) {
Josh Gao9528df22018-05-14 11:14:33 -0700127 fdevent_add(s->fde, FDE_WRITE);
Josh Gao4b808502018-03-19 13:20:29 -0700128 return SocketFlushResult::TryAgain;
Josh Gaob50b92f2018-03-30 13:56:24 -0700129 } else {
130 // We failed to write, but it's possible that we can still read from the socket.
131 // Give that a try before giving up.
132 s->has_write_error = true;
Josh Gao4b808502018-03-19 13:20:29 -0700133 }
Josh Gao4b808502018-03-19 13:20:29 -0700134 }
135
136 // If we sent the last packet of a closing socket, we can now destroy it.
137 if (s->closing) {
138 s->close(s);
139 return SocketFlushResult::Destroyed;
140 }
141
Josh Gao9528df22018-05-14 11:14:33 -0700142 fdevent_del(s->fde, FDE_WRITE);
Josh Gao4b808502018-03-19 13:20:29 -0700143 return SocketFlushResult::Completed;
144}
145
146// Returns false if the socket has been closed and destroyed as a side-effect of this function.
147static bool local_socket_flush_outgoing(asocket* s) {
148 const size_t max_payload = s->get_max_payload();
Josh Gaocd2a5292018-03-07 16:52:28 -0800149 apacket::payload_type data;
Josh Gao4b808502018-03-19 13:20:29 -0700150 data.resize(max_payload);
151 char* x = &data[0];
152 size_t avail = max_payload;
153 int r = 0;
154 int is_eof = 0;
155
156 while (avail > 0) {
157 r = adb_read(s->fd, x, avail);
158 D("LS(%d): post adb_read(fd=%d,...) r=%d (errno=%d) avail=%zu", s->id, s->fd, r,
159 r < 0 ? errno : 0, avail);
160 if (r == -1) {
161 if (errno == EAGAIN) {
162 break;
163 }
164 } else if (r > 0) {
165 avail -= r;
166 x += r;
167 continue;
168 }
169
170 /* r = 0 or unhandled error */
171 is_eof = 1;
172 break;
173 }
174 D("LS(%d): fd=%d post avail loop. r=%d is_eof=%d forced_eof=%d", s->id, s->fd, r, is_eof,
Josh Gao9528df22018-05-14 11:14:33 -0700175 s->fde->force_eof);
Josh Gao4b808502018-03-19 13:20:29 -0700176
177 if (avail != max_payload && s->peer) {
178 data.resize(max_payload - avail);
179
180 // s->peer->enqueue() may call s->close() and free s,
181 // so save variables for debug printing below.
182 unsigned saved_id = s->id;
183 int saved_fd = s->fd;
184 r = s->peer->enqueue(s->peer, std::move(data));
185 D("LS(%u): fd=%d post peer->enqueue(). r=%d", saved_id, saved_fd, r);
186
187 if (r < 0) {
188 // Error return means they closed us as a side-effect and we must
189 // return immediately.
190 //
191 // Note that if we still have buffered packets, the socket will be
192 // placed on the closing socket list. This handler function will be
193 // called again to process FDE_WRITE events.
194 return false;
195 }
196
197 if (r > 0) {
198 /* if the remote cannot accept further events,
199 ** we disable notification of READs. They'll
200 ** be enabled again when we get a call to ready()
201 */
Josh Gao9528df22018-05-14 11:14:33 -0700202 fdevent_del(s->fde, FDE_READ);
Josh Gao4b808502018-03-19 13:20:29 -0700203 }
204 }
205
206 // Don't allow a forced eof if data is still there.
Josh Gao9528df22018-05-14 11:14:33 -0700207 if ((s->fde->force_eof && !r) || is_eof) {
208 D(" closing because is_eof=%d r=%d s->fde.force_eof=%d", is_eof, r, s->fde->force_eof);
Josh Gao4b808502018-03-19 13:20:29 -0700209 s->close(s);
210 return false;
211 }
212
213 return true;
214}
215
Josh Gaocd2a5292018-03-07 16:52:28 -0800216static int local_socket_enqueue(asocket* s, apacket::payload_type data) {
Josh Gaoa7d9d712018-02-01 13:17:50 -0800217 D("LS(%d): enqueue %zu", s->id, data.size());
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -0800218
Josh Gao9f155db2018-04-03 14:37:11 -0700219 s->packet_queue.append(std::move(data));
Josh Gao4b808502018-03-19 13:20:29 -0700220 switch (local_socket_flush_incoming(s)) {
221 case SocketFlushResult::Destroyed:
222 return -1;
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -0800223
Josh Gao4b808502018-03-19 13:20:29 -0700224 case SocketFlushResult::TryAgain:
225 return 1;
226
227 case SocketFlushResult::Completed:
228 return 0;
229 }
230
231 return !s->packet_queue.empty();
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -0800232}
233
Josh Gaoef550fe2016-05-17 16:55:06 -0700234static void local_socket_ready(asocket* s) {
Nanik Tolaramc624a7e2015-02-18 22:53:37 +1100235 /* far side is ready for data, pay attention to
236 readable events */
Josh Gao9528df22018-05-14 11:14:33 -0700237 fdevent_add(s->fde, FDE_READ);
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -0800238}
239
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -0800240// be sure to hold the socket list lock when calling this
Josh Gaoef550fe2016-05-17 16:55:06 -0700241static void local_socket_destroy(asocket* s) {
Benoit Goby88468f32012-03-16 14:50:07 -0700242 int exit_on_close = s->exit_on_close;
243
Josh Gao9528df22018-05-14 11:14:33 -0700244 D("LS(%d): destroying fde.fd=%d", s->id, s->fd);
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -0800245
Josh Gao94250272018-10-12 05:08:45 +0000246 /* IMPORTANT: the remove closes the fd
247 ** that belongs to this socket
248 */
249 fdevent_destroy(s->fde);
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -0800250
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -0800251 remove_socket(s);
Josh Gao5cb76ce2018-02-12 17:24:00 -0800252 delete s;
Benoit Goby88468f32012-03-16 14:50:07 -0700253
254 if (exit_on_close) {
Yabin Cui815ad882015-09-02 17:44:28 -0700255 D("local_socket_destroy: exiting");
Benoit Goby88468f32012-03-16 14:50:07 -0700256 exit(1);
257 }
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -0800258}
259
Josh Gao0f1a20a2016-05-17 17:46:27 -0700260static void local_socket_close(asocket* s) {
261 D("entered local_socket_close. LS(%d) fd=%d", s->id, s->fd);
262 std::lock_guard<std::recursive_mutex> lock(local_socket_list_lock);
Josh Gaoef550fe2016-05-17 16:55:06 -0700263 if (s->peer) {
264 D("LS(%d): closing peer. peer->id=%d peer->fd=%d", s->id, s->peer->id, s->peer->fd);
David 'Digit' Turnere92344d2013-12-13 14:09:44 +0100265 /* Note: it's important to call shutdown before disconnecting from
266 * the peer, this ensures that remote sockets can still get the id
267 * of the local socket they're connected to, to send a CLOSE()
268 * protocol event. */
Josh Gaoef550fe2016-05-17 16:55:06 -0700269 if (s->peer->shutdown) {
270 s->peer->shutdown(s->peer);
271 }
Josh Gao0f1a20a2016-05-17 17:46:27 -0700272 s->peer->peer = nullptr;
273 s->peer->close(s->peer);
274 s->peer = nullptr;
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -0800275 }
276
Josh Gaoef550fe2016-05-17 16:55:06 -0700277 /* If we are already closing, or if there are no
278 ** pending packets, destroy immediately
279 */
Josh Gaoa7d9d712018-02-01 13:17:50 -0800280 if (s->closing || s->has_write_error || s->packet_queue.empty()) {
Josh Gaoef550fe2016-05-17 16:55:06 -0700281 int id = s->id;
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -0800282 local_socket_destroy(s);
Yabin Cui815ad882015-09-02 17:44:28 -0700283 D("LS(%d): closed", id);
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -0800284 return;
285 }
286
Josh Gaoef550fe2016-05-17 16:55:06 -0700287 /* otherwise, put on the closing list
288 */
Yabin Cui815ad882015-09-02 17:44:28 -0700289 D("LS(%d): closing", s->id);
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -0800290 s->closing = 1;
Josh Gao9528df22018-05-14 11:14:33 -0700291 fdevent_del(s->fde, FDE_READ);
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -0800292 remove_socket(s);
Yabin Cui815ad882015-09-02 17:44:28 -0700293 D("LS(%d): put on socket_closing_list fd=%d", s->id, s->fd);
Josh Gao2b3db9e2018-01-31 13:15:51 -0800294 local_socket_closing_list.push_back(s);
Josh Gao9528df22018-05-14 11:14:33 -0700295 CHECK_EQ(FDE_WRITE, s->fde->state & FDE_WRITE);
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -0800296}
297
Josh Gaoef550fe2016-05-17 16:55:06 -0700298static void local_socket_event_func(int fd, unsigned ev, void* _s) {
Dan Albertf30d73c2015-02-25 17:51:28 -0800299 asocket* s = reinterpret_cast<asocket*>(_s);
Yabin Cui815ad882015-09-02 17:44:28 -0700300 D("LS(%d): event_func(fd=%d(==%d), ev=%04x)", s->id, s->fd, fd, ev);
JP Abgrall2e5dd6e2011-03-16 15:57:42 -0700301
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -0800302 /* put the FDE_WRITE processing before the FDE_READ
303 ** in order to simplify the code.
304 */
Dan Albertf30d73c2015-02-25 17:51:28 -0800305 if (ev & FDE_WRITE) {
Josh Gao4b808502018-03-19 13:20:29 -0700306 switch (local_socket_flush_incoming(s)) {
307 case SocketFlushResult::Destroyed:
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -0800308 return;
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -0800309
Josh Gao4b808502018-03-19 13:20:29 -0700310 case SocketFlushResult::TryAgain:
311 break;
312
313 case SocketFlushResult::Completed:
314 s->peer->ready(s->peer);
315 break;
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -0800316 }
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -0800317 }
318
Dan Albertf30d73c2015-02-25 17:51:28 -0800319 if (ev & FDE_READ) {
Josh Gao4b808502018-03-19 13:20:29 -0700320 if (!local_socket_flush_outgoing(s)) {
Yabin Cui2ce9d562015-09-15 16:27:09 -0700321 return;
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -0800322 }
323 }
324
Josh Gaoef550fe2016-05-17 16:55:06 -0700325 if (ev & FDE_ERROR) {
326 /* this should be caught be the next read or write
327 ** catching it here means we may skip the last few
328 ** bytes of readable data.
329 */
Yabin Cui815ad882015-09-02 17:44:28 -0700330 D("LS(%d): FDE_ERROR (fd=%d)", s->id, s->fd);
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -0800331 return;
332 }
333}
334
Josh Gaoef550fe2016-05-17 16:55:06 -0700335asocket* create_local_socket(int fd) {
Josh Gao5cb76ce2018-02-12 17:24:00 -0800336 asocket* s = new asocket();
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -0800337 s->fd = fd;
338 s->enqueue = local_socket_enqueue;
339 s->ready = local_socket_ready;
Yi Kong86e67182018-07-13 18:15:16 -0700340 s->shutdown = nullptr;
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -0800341 s->close = local_socket_close;
JP Abgrall2e5dd6e2011-03-16 15:57:42 -0700342 install_local_socket(s);
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -0800343
Josh Gao9528df22018-05-14 11:14:33 -0700344 s->fde = fdevent_create(fd, local_socket_event_func, s);
Yabin Cui815ad882015-09-02 17:44:28 -0700345 D("LS(%d): created (fd=%d)", s->id, s->fd);
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -0800346 return s;
347}
348
Josh Gaoebc1c312018-04-13 12:17:03 -0700349asocket* create_local_service_socket(const char* name, atransport* transport) {
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -0800350#if !ADB_HOST
Josh Gao3edf8072018-11-16 15:40:16 -0800351 if (asocket* s = daemon_service_to_socket(name); s) {
352 return s;
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -0800353 }
354#endif
David Pursell8da19a42015-08-31 10:42:13 -0700355 int fd = service_to_fd(name, transport);
Josh Gaoef550fe2016-05-17 16:55:06 -0700356 if (fd < 0) {
Elliott Hughesc3d1c112016-06-15 14:46:56 -0700357 return nullptr;
Josh Gaoef550fe2016-05-17 16:55:06 -0700358 }
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -0800359
Dan Pasanenfb787d92014-10-06 12:57:20 -0500360 asocket* s = create_local_socket(fd);
Yabin Cui815ad882015-09-02 17:44:28 -0700361 D("LS(%d): bound to '%s' via %d", s->id, name, fd);
Benoit Goby88468f32012-03-16 14:50:07 -0700362
JP Abgralla84bd682012-03-30 13:19:11 -0700363#if !ADB_HOST
Mark Salyzync75f65f2016-03-28 15:52:13 -0700364 if ((!strncmp(name, "root:", 5) && getuid() != 0 && __android_log_is_debuggable()) ||
Josh Gaoef550fe2016-05-17 16:55:06 -0700365 (!strncmp(name, "unroot:", 7) && getuid() == 0) ||
366 !strncmp(name, "usb:", 4) ||
367 !strncmp(name, "tcpip:", 6)) {
Yabin Cui815ad882015-09-02 17:44:28 -0700368 D("LS(%d): enabling exit_on_close", s->id);
Benoit Goby88468f32012-03-16 14:50:07 -0700369 s->exit_on_close = 1;
370 }
JP Abgralla84bd682012-03-30 13:19:11 -0700371#endif
Benoit Goby88468f32012-03-16 14:50:07 -0700372
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -0800373 return s;
374}
375
376#if ADB_HOST
Josh Gaob39e4152017-08-16 16:57:01 -0700377static asocket* create_host_service_socket(const char* name, const char* serial,
378 TransportId transport_id) {
Josh Gaoef550fe2016-05-17 16:55:06 -0700379 asocket* s;
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -0800380
Josh Gaob39e4152017-08-16 16:57:01 -0700381 s = host_service_to_socket(name, serial, transport_id);
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -0800382
Yi Kong86e67182018-07-13 18:15:16 -0700383 if (s != nullptr) {
Yabin Cui815ad882015-09-02 17:44:28 -0700384 D("LS(%d) bound to '%s'", s->id, name);
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -0800385 return s;
386 }
387
388 return s;
389}
390#endif /* ADB_HOST */
391
Josh Gaocd2a5292018-03-07 16:52:28 -0800392static int remote_socket_enqueue(asocket* s, apacket::payload_type data) {
Josh Gaoef550fe2016-05-17 16:55:06 -0700393 D("entered remote_socket_enqueue RS(%d) WRITE fd=%d peer.fd=%d", s->id, s->fd, s->peer->fd);
Josh Gaoa7d9d712018-02-01 13:17:50 -0800394 apacket* p = get_apacket();
395
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -0800396 p->msg.command = A_WRTE;
397 p->msg.arg0 = s->peer->id;
398 p->msg.arg1 = s->id;
Josh Gaoa7d9d712018-02-01 13:17:50 -0800399
Josh Gao839b9322018-02-05 18:49:10 -0800400 if (data.size() > MAX_PAYLOAD) {
Josh Gaoa7d9d712018-02-01 13:17:50 -0800401 put_apacket(p);
402 return -1;
403 }
404
Josh Gao839b9322018-02-05 18:49:10 -0800405 p->payload = std::move(data);
406 p->msg.data_length = p->payload.size();
407
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -0800408 send_packet(p, s->transport);
409 return 1;
410}
411
Josh Gaoef550fe2016-05-17 16:55:06 -0700412static void remote_socket_ready(asocket* s) {
413 D("entered remote_socket_ready RS(%d) OKAY fd=%d peer.fd=%d", s->id, s->fd, s->peer->fd);
414 apacket* p = get_apacket();
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -0800415 p->msg.command = A_OKAY;
416 p->msg.arg0 = s->peer->id;
417 p->msg.arg1 = s->id;
418 send_packet(p, s->transport);
419}
420
Josh Gaoef550fe2016-05-17 16:55:06 -0700421static void remote_socket_shutdown(asocket* s) {
422 D("entered remote_socket_shutdown RS(%d) CLOSE fd=%d peer->fd=%d", s->id, s->fd,
423 s->peer ? s->peer->fd : -1);
424 apacket* p = get_apacket();
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -0800425 p->msg.command = A_CLSE;
Josh Gaoef550fe2016-05-17 16:55:06 -0700426 if (s->peer) {
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -0800427 p->msg.arg0 = s->peer->id;
David 'Digit' Turnere92344d2013-12-13 14:09:44 +0100428 }
429 p->msg.arg1 = s->id;
430 send_packet(p, s->transport);
431}
432
Josh Gaoef550fe2016-05-17 16:55:06 -0700433static void remote_socket_close(asocket* s) {
David 'Digit' Turnere92344d2013-12-13 14:09:44 +0100434 if (s->peer) {
Yi Kong86e67182018-07-13 18:15:16 -0700435 s->peer->peer = nullptr;
Josh Gaoef550fe2016-05-17 16:55:06 -0700436 D("RS(%d) peer->close()ing peer->id=%d peer->fd=%d", s->id, s->peer->id, s->peer->fd);
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -0800437 s->peer->close(s->peer);
438 }
Josh Gaoef550fe2016-05-17 16:55:06 -0700439 D("entered remote_socket_close RS(%d) CLOSE fd=%d peer->fd=%d", s->id, s->fd,
440 s->peer ? s->peer->fd : -1);
Yabin Cui815ad882015-09-02 17:44:28 -0700441 D("RS(%d): closed", s->id);
Josh Gao5cb76ce2018-02-12 17:24:00 -0800442 delete s;
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -0800443}
444
Yabin Cui70ec57b2015-08-27 18:50:04 -0700445// Create a remote socket to exchange packets with a remote service through transport
446// |t|. Where |id| is the socket id of the corresponding service on the other
447// side of the transport (it is allocated by the remote side and _cannot_ be 0).
448// Returns a new non-NULL asocket handle.
Josh Gaoef550fe2016-05-17 16:55:06 -0700449asocket* create_remote_socket(unsigned id, atransport* t) {
450 if (id == 0) {
Elliott Hughese64126b2018-10-19 13:59:44 -0700451 LOG(FATAL) << "invalid remote socket id (0)";
Josh Gaoef550fe2016-05-17 16:55:06 -0700452 }
Josh Gao5cb76ce2018-02-12 17:24:00 -0800453 asocket* s = new asocket();
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -0800454 s->id = id;
455 s->enqueue = remote_socket_enqueue;
456 s->ready = remote_socket_ready;
David 'Digit' Turnere92344d2013-12-13 14:09:44 +0100457 s->shutdown = remote_socket_shutdown;
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -0800458 s->close = remote_socket_close;
459 s->transport = t;
460
Yabin Cui815ad882015-09-02 17:44:28 -0700461 D("RS(%d): created", s->id);
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -0800462 return s;
463}
464
Josh Gaoef550fe2016-05-17 16:55:06 -0700465void connect_to_remote(asocket* s, const char* destination) {
Yabin Cui815ad882015-09-02 17:44:28 -0700466 D("Connect_to_remote call RS(%d) fd=%d", s->id, s->fd);
Josh Gaoef550fe2016-05-17 16:55:06 -0700467 apacket* p = get_apacket();
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -0800468
Yabin Cui815ad882015-09-02 17:44:28 -0700469 D("LS(%d): connect('%s')", s->id, destination);
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -0800470 p->msg.command = A_OPEN;
471 p->msg.arg0 = s->id;
Josh Gao839b9322018-02-05 18:49:10 -0800472
473 // adbd expects a null-terminated string.
Josh Gaocd2a5292018-03-07 16:52:28 -0800474 p->payload.assign(destination, destination + strlen(destination) + 1);
Josh Gao839b9322018-02-05 18:49:10 -0800475 p->msg.data_length = p->payload.size();
476
Elliott Hughese64126b2018-10-19 13:59:44 -0700477 CHECK_LE(p->msg.data_length, s->get_max_payload());
Josh Gao839b9322018-02-05 18:49:10 -0800478
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -0800479 send_packet(p, s->transport);
480}
481
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -0800482/* this is used by magic sockets to rig local sockets to
483 send the go-ahead message when they connect */
Josh Gaoef550fe2016-05-17 16:55:06 -0700484static void local_socket_ready_notify(asocket* s) {
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -0800485 s->ready = local_socket_ready;
Yi Kong86e67182018-07-13 18:15:16 -0700486 s->shutdown = nullptr;
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -0800487 s->close = local_socket_close;
Elliott Hughes88b4c852015-04-30 17:32:03 -0700488 SendOkay(s->fd);
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -0800489 s->ready(s);
490}
491
492/* this is used by magic sockets to rig local sockets to
493 send the failure message if they are closed before
494 connected (to avoid closing them without a status message) */
Josh Gaoef550fe2016-05-17 16:55:06 -0700495static void local_socket_close_notify(asocket* s) {
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -0800496 s->ready = local_socket_ready;
Yi Kong86e67182018-07-13 18:15:16 -0700497 s->shutdown = nullptr;
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -0800498 s->close = local_socket_close;
Elliott Hughes88b4c852015-04-30 17:32:03 -0700499 SendFail(s->fd, "closed");
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -0800500 s->close(s);
501}
502
Josh Gaoa7d9d712018-02-01 13:17:50 -0800503static unsigned unhex(const char* s, int len) {
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -0800504 unsigned n = 0, c;
505
Josh Gaoef550fe2016-05-17 16:55:06 -0700506 while (len-- > 0) {
507 switch ((c = *s++)) {
508 case '0':
509 case '1':
510 case '2':
511 case '3':
512 case '4':
513 case '5':
514 case '6':
515 case '7':
516 case '8':
517 case '9':
518 c -= '0';
519 break;
520 case 'a':
521 case 'b':
522 case 'c':
523 case 'd':
524 case 'e':
525 case 'f':
526 c = c - 'a' + 10;
527 break;
528 case 'A':
529 case 'B':
530 case 'C':
531 case 'D':
532 case 'E':
533 case 'F':
534 c = c - 'A' + 10;
535 break;
536 default:
537 return 0xffffffff;
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -0800538 }
539
540 n = (n << 4) | c;
541 }
542
543 return n;
544}
545
Elliott Hughes88b4c852015-04-30 17:32:03 -0700546#if ADB_HOST
547
David Pursellc929c6f2016-03-01 08:58:26 -0800548namespace internal {
Scott Anderson27042382012-05-30 18:11:27 -0700549
David Pursellc929c6f2016-03-01 08:58:26 -0800550// Returns the position in |service| following the target serial parameter. Serial format can be
551// any of:
552// * [tcp:|udp:]<serial>[:<port>]:<command>
553// * <prefix>:<serial>:<command>
554// Where <port> must be a base-10 number and <prefix> may be any of {usb,product,model,device}.
555//
556// The returned pointer will point to the ':' just before <command>, or nullptr if not found.
Dan Austinca35e9e2016-03-28 15:32:37 -0700557char* skip_host_serial(char* service) {
David Pursellc929c6f2016-03-01 08:58:26 -0800558 static const std::vector<std::string>& prefixes =
559 *(new std::vector<std::string>{"usb:", "product:", "model:", "device:"});
Terence Haddock6c670402011-03-16 09:43:56 +0100560
David Pursellc929c6f2016-03-01 08:58:26 -0800561 for (const std::string& prefix : prefixes) {
562 if (!strncmp(service, prefix.c_str(), prefix.length())) {
563 return strchr(service + prefix.length(), ':');
564 }
Scott Anderson090e5cb2012-05-31 12:04:23 -0700565 }
566
David Pursellc929c6f2016-03-01 08:58:26 -0800567 // For fastboot compatibility, ignore protocol prefixes.
568 if (!strncmp(service, "tcp:", 4) || !strncmp(service, "udp:", 4)) {
569 service += 4;
570 }
571
David Pursell24b62a72016-09-21 12:08:37 -0700572 // Check for an IPv6 address. `adb connect` creates the serial number from the canonical
573 // network address so it will always have the [] delimiters.
574 if (service[0] == '[') {
575 char* ipv6_end = strchr(service, ']');
576 if (ipv6_end != nullptr) {
577 service = ipv6_end;
578 }
579 }
580
581 // The next colon we find must either begin the port field or the command field.
582 char* colon_ptr = strchr(service, ':');
583 if (!colon_ptr) {
David Pursellc929c6f2016-03-01 08:58:26 -0800584 // No colon in service string.
585 return nullptr;
Terence Haddock6c670402011-03-16 09:43:56 +0100586 }
David Pursellc929c6f2016-03-01 08:58:26 -0800587
David Pursell24b62a72016-09-21 12:08:37 -0700588 // If the next field is only decimal digits and ends with another colon, it's a port.
589 char* serial_end = colon_ptr;
Terence Haddock6c670402011-03-16 09:43:56 +0100590 if (isdigit(serial_end[1])) {
591 serial_end++;
David Pursellc929c6f2016-03-01 08:58:26 -0800592 while (*serial_end && isdigit(*serial_end)) {
Terence Haddock6c670402011-03-16 09:43:56 +0100593 serial_end++;
594 }
David Pursellc929c6f2016-03-01 08:58:26 -0800595 if (*serial_end != ':') {
David Pursell24b62a72016-09-21 12:08:37 -0700596 // Something other than "<port>:" was found, this must be the command field instead.
597 serial_end = colon_ptr;
Terence Haddock6c670402011-03-16 09:43:56 +0100598 }
599 }
600 return serial_end;
601}
602
David Pursellc929c6f2016-03-01 08:58:26 -0800603} // namespace internal
604
Josh Gaoef550fe2016-05-17 16:55:06 -0700605#endif // ADB_HOST
Elliott Hughes88b4c852015-04-30 17:32:03 -0700606
Josh Gaocd2a5292018-03-07 16:52:28 -0800607static int smart_socket_enqueue(asocket* s, apacket::payload_type data) {
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -0800608#if ADB_HOST
Josh Gaoef550fe2016-05-17 16:55:06 -0700609 char* service = nullptr;
Elliott Hughes67943d12015-10-07 14:55:10 -0700610 char* serial = nullptr;
Josh Gaob39e4152017-08-16 16:57:01 -0700611 TransportId transport_id = 0;
Elliott Hughes3aec2ba2015-05-05 13:10:43 -0700612 TransportType type = kTransportAny;
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -0800613#endif
614
Josh Gaoa7d9d712018-02-01 13:17:50 -0800615 D("SS(%d): enqueue %zu", s->id, data.size());
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -0800616
Josh Gaoa7d9d712018-02-01 13:17:50 -0800617 if (s->smart_socket_data.empty()) {
Josh Gao9f155db2018-04-03 14:37:11 -0700618 // TODO: Make this an IOVector?
Josh Gaocd2a5292018-03-07 16:52:28 -0800619 s->smart_socket_data.assign(data.begin(), data.end());
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -0800620 } else {
Josh Gaoa7d9d712018-02-01 13:17:50 -0800621 std::copy(data.begin(), data.end(), std::back_inserter(s->smart_socket_data));
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -0800622 }
623
Josh Gao9055a582016-01-15 14:35:54 -0800624 /* don't bother if we can't decode the length */
Josh Gaoa7d9d712018-02-01 13:17:50 -0800625 if (s->smart_socket_data.size() < 4) {
Josh Gaoef550fe2016-05-17 16:55:06 -0700626 return 0;
627 }
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -0800628
Josh Gaoa7d9d712018-02-01 13:17:50 -0800629 uint32_t len = unhex(s->smart_socket_data.data(), 4);
630 if (len == 0 || len > MAX_PAYLOAD) {
631 D("SS(%d): bad size (%u)", s->id, len);
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -0800632 goto fail;
633 }
634
Josh Gaoa7d9d712018-02-01 13:17:50 -0800635 D("SS(%d): len is %u", s->id, len);
Josh Gao9055a582016-01-15 14:35:54 -0800636 /* can't do anything until we have the full header */
Josh Gaoa7d9d712018-02-01 13:17:50 -0800637 if ((len + 4) > s->smart_socket_data.size()) {
638 D("SS(%d): waiting for %zu more bytes", s->id, len + 4 - s->smart_socket_data.size());
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -0800639 return 0;
640 }
641
Josh Gaoa7d9d712018-02-01 13:17:50 -0800642 s->smart_socket_data[len + 4] = 0;
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -0800643
Josh Gaoa7d9d712018-02-01 13:17:50 -0800644 D("SS(%d): '%s'", s->id, (char*)(s->smart_socket_data.data() + 4));
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -0800645
646#if ADB_HOST
Josh Gaoa7d9d712018-02-01 13:17:50 -0800647 service = &s->smart_socket_data[4];
Josh Gaoef550fe2016-05-17 16:55:06 -0700648 if (!strncmp(service, "host-serial:", strlen("host-serial:"))) {
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -0800649 char* serial_end;
650 service += strlen("host-serial:");
651
Terence Haddock6c670402011-03-16 09:43:56 +0100652 // serial number should follow "host:" and could be a host:port string.
David Pursellc929c6f2016-03-01 08:58:26 -0800653 serial_end = internal::skip_host_serial(service);
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -0800654 if (serial_end) {
Josh Gaoef550fe2016-05-17 16:55:06 -0700655 *serial_end = 0; // terminate string
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -0800656 serial = service;
657 service = serial_end + 1;
658 }
Josh Gaob39e4152017-08-16 16:57:01 -0700659 } else if (!strncmp(service, "host-transport-id:", strlen("host-transport-id:"))) {
660 service += strlen("host-transport-id:");
661 transport_id = strtoll(service, &service, 10);
662
663 if (*service != ':') {
664 return -1;
665 }
666 service++;
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -0800667 } else if (!strncmp(service, "host-usb:", strlen("host-usb:"))) {
Elliott Hughes3aec2ba2015-05-05 13:10:43 -0700668 type = kTransportUsb;
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -0800669 service += strlen("host-usb:");
670 } else if (!strncmp(service, "host-local:", strlen("host-local:"))) {
Elliott Hughes3aec2ba2015-05-05 13:10:43 -0700671 type = kTransportLocal;
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -0800672 service += strlen("host-local:");
673 } else if (!strncmp(service, "host:", strlen("host:"))) {
Elliott Hughes3aec2ba2015-05-05 13:10:43 -0700674 type = kTransportAny;
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -0800675 service += strlen("host:");
676 } else {
Elliott Hughes67943d12015-10-07 14:55:10 -0700677 service = nullptr;
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -0800678 }
679
680 if (service) {
Josh Gaoef550fe2016-05-17 16:55:06 -0700681 asocket* s2;
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -0800682
Josh Gaod3067472018-08-07 14:14:21 -0700683 // Some requests are handled immediately -- in that case the handle_host_request() routine
684 // has sent the OKAY or FAIL message and all we have to do is clean up.
685 if (handle_host_request(service, type, serial, transport_id, s->peer->fd, s)) {
Josh Gaoef550fe2016-05-17 16:55:06 -0700686 D("SS(%d): handled host service '%s'", s->id, service);
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -0800687 goto fail;
688 }
689 if (!strncmp(service, "transport", strlen("transport"))) {
Josh Gaoef550fe2016-05-17 16:55:06 -0700690 D("SS(%d): okay transport", s->id);
Josh Gaoa7d9d712018-02-01 13:17:50 -0800691 s->smart_socket_data.clear();
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -0800692 return 0;
693 }
694
Josh Gaoef550fe2016-05-17 16:55:06 -0700695 /* try to find a local service with this name.
696 ** if no such service exists, we'll fail out
697 ** and tear down here.
698 */
Josh Gaob39e4152017-08-16 16:57:01 -0700699 s2 = create_host_service_socket(service, serial, transport_id);
Yi Kong86e67182018-07-13 18:15:16 -0700700 if (s2 == nullptr) {
Josh Gaoef550fe2016-05-17 16:55:06 -0700701 D("SS(%d): couldn't create host service '%s'", s->id, service);
Elliott Hughes88b4c852015-04-30 17:32:03 -0700702 SendFail(s->peer->fd, "unknown host service");
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -0800703 goto fail;
704 }
705
Josh Gaoef550fe2016-05-17 16:55:06 -0700706 /* we've connected to a local host service,
707 ** so we make our peer back into a regular
708 ** local socket and bind it to the new local
709 ** service socket, acknowledge the successful
710 ** connection, and close this smart socket now
711 ** that its work is done.
712 */
Elliott Hughes88b4c852015-04-30 17:32:03 -0700713 SendOkay(s->peer->fd);
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -0800714
715 s->peer->ready = local_socket_ready;
Elliott Hughes67943d12015-10-07 14:55:10 -0700716 s->peer->shutdown = nullptr;
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -0800717 s->peer->close = local_socket_close;
718 s->peer->peer = s2;
719 s2->peer = s->peer;
Yi Kong86e67182018-07-13 18:15:16 -0700720 s->peer = nullptr;
Josh Gaoef550fe2016-05-17 16:55:06 -0700721 D("SS(%d): okay", s->id);
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -0800722 s->close(s);
723
Josh Gaoef550fe2016-05-17 16:55:06 -0700724 /* initial state is "ready" */
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -0800725 s2->ready(s2);
726 return 0;
727 }
728#else /* !ADB_HOST */
Elliott Hughes67943d12015-10-07 14:55:10 -0700729 if (s->transport == nullptr) {
Elliott Hughesab882422015-04-16 22:54:44 -0700730 std::string error_msg = "unknown failure";
Josh Gaob39e4152017-08-16 16:57:01 -0700731 s->transport = acquire_one_transport(kTransportAny, nullptr, 0, nullptr, &error_msg);
Elliott Hughes67943d12015-10-07 14:55:10 -0700732 if (s->transport == nullptr) {
Elliott Hughes88b4c852015-04-30 17:32:03 -0700733 SendFail(s->peer->fd, error_msg);
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -0800734 goto fail;
735 }
736 }
737#endif
738
Josh Gao4e562502016-10-27 14:01:08 -0700739 if (!s->transport) {
740 SendFail(s->peer->fd, "device offline (no transport)");
741 goto fail;
Josh Gao7a7c5cb2018-05-04 16:04:49 -0700742 } else if (!ConnectionStateIsOnline(s->transport->GetConnectionState())) {
Josh Gaoef550fe2016-05-17 16:55:06 -0700743 /* if there's no remote we fail the connection
744 ** right here and terminate it
745 */
Josh Gao4e562502016-10-27 14:01:08 -0700746 SendFail(s->peer->fd, "device offline (transport offline)");
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -0800747 goto fail;
748 }
749
Josh Gaoef550fe2016-05-17 16:55:06 -0700750 /* instrument our peer to pass the success or fail
751 ** message back once it connects or closes, then
752 ** detach from it, request the connection, and
753 ** tear down
754 */
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -0800755 s->peer->ready = local_socket_ready_notify;
Elliott Hughes67943d12015-10-07 14:55:10 -0700756 s->peer->shutdown = nullptr;
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -0800757 s->peer->close = local_socket_close_notify;
Yi Kong86e67182018-07-13 18:15:16 -0700758 s->peer->peer = nullptr;
Josh Gaoef550fe2016-05-17 16:55:06 -0700759 /* give him our transport and upref it */
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -0800760 s->peer->transport = s->transport;
761
Josh Gaoa7d9d712018-02-01 13:17:50 -0800762 connect_to_remote(s->peer, s->smart_socket_data.data() + 4);
Yi Kong86e67182018-07-13 18:15:16 -0700763 s->peer = nullptr;
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -0800764 s->close(s);
765 return 1;
766
767fail:
Josh Gaoef550fe2016-05-17 16:55:06 -0700768 /* we're going to close our peer as a side-effect, so
769 ** return -1 to signal that state to the local socket
770 ** who is enqueueing against us
771 */
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -0800772 s->close(s);
773 return -1;
774}
775
Josh Gaoef550fe2016-05-17 16:55:06 -0700776static void smart_socket_ready(asocket* s) {
Yabin Cui815ad882015-09-02 17:44:28 -0700777 D("SS(%d): ready", s->id);
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -0800778}
779
Josh Gaoef550fe2016-05-17 16:55:06 -0700780static void smart_socket_close(asocket* s) {
Yabin Cui815ad882015-09-02 17:44:28 -0700781 D("SS(%d): closed", s->id);
Josh Gaoef550fe2016-05-17 16:55:06 -0700782 if (s->peer) {
Yi Kong86e67182018-07-13 18:15:16 -0700783 s->peer->peer = nullptr;
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -0800784 s->peer->close(s->peer);
Yi Kong86e67182018-07-13 18:15:16 -0700785 s->peer = nullptr;
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -0800786 }
Josh Gao5cb76ce2018-02-12 17:24:00 -0800787 delete s;
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -0800788}
789
Josh Gaoef550fe2016-05-17 16:55:06 -0700790static asocket* create_smart_socket(void) {
Yabin Cui815ad882015-09-02 17:44:28 -0700791 D("Creating smart socket");
Josh Gao5cb76ce2018-02-12 17:24:00 -0800792 asocket* s = new asocket();
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -0800793 s->enqueue = smart_socket_enqueue;
794 s->ready = smart_socket_ready;
Yi Kong86e67182018-07-13 18:15:16 -0700795 s->shutdown = nullptr;
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -0800796 s->close = smart_socket_close;
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -0800797
Yabin Cui815ad882015-09-02 17:44:28 -0700798 D("SS(%d)", s->id);
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -0800799 return s;
800}
801
Josh Gaoef550fe2016-05-17 16:55:06 -0700802void connect_to_smartsocket(asocket* s) {
Yabin Cui815ad882015-09-02 17:44:28 -0700803 D("Connecting to smart socket");
Josh Gaoef550fe2016-05-17 16:55:06 -0700804 asocket* ss = create_smart_socket();
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -0800805 s->peer = ss;
806 ss->peer = s;
807 s->ready(s);
808}
Tamas Berghammera1c60c02015-07-13 19:12:28 +0100809
810size_t asocket::get_max_payload() const {
811 size_t max_payload = MAX_PAYLOAD;
812 if (transport) {
813 max_payload = std::min(max_payload, transport->get_max_payload());
814 }
815 if (peer && peer->transport) {
816 max_payload = std::min(max_payload, peer->transport->get_max_payload());
817 }
818 return max_payload;
819}