blob: 75993b3ce133548aff61c9f96ee3b8b396af1939 [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 Gao18f7a5c2019-01-11 14:42:08 -080029#include <chrono>
Josh Gao0f1a20a2016-05-17 17:46:27 -070030#include <mutex>
David Pursellc929c6f2016-03-01 08:58:26 -080031#include <string>
32#include <vector>
Spencer Low28bc2cb2015-11-07 18:51:54 -080033
Elliott Hughes0d1e8fd2019-05-03 09:02:45 -070034#include <android-base/strings.h>
35
Dan Albertb302d122015-02-24 15:51:19 -080036#if !ADB_HOST
Elliott Hughes8b249d22016-09-23 15:40:03 -070037#include <android-base/properties.h>
Steven Morelandb087d302017-04-13 23:48:57 -070038#include <log/log_properties.h>
Dan Albertb302d122015-02-24 15:51:19 -080039#endif
Dan Albertdb6fe642015-03-19 15:21:08 -070040
41#include "adb.h"
42#include "adb_io.h"
Josh Gao8d49e122018-12-19 13:37:41 -080043#include "adb_utils.h"
Dan Albertb302d122015-02-24 15:51:19 -080044#include "transport.h"
Josh Gaocd2a5292018-03-07 16:52:28 -080045#include "types.h"
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -080046
Josh Gao18f7a5c2019-01-11 14:42:08 -080047using namespace std::chrono_literals;
48
Josh Gao0f1a20a2016-05-17 17:46:27 -070049static std::recursive_mutex& local_socket_list_lock = *new std::recursive_mutex();
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -080050static unsigned local_socket_next_id = 1;
51
Josh Gao2b3db9e2018-01-31 13:15:51 -080052static auto& local_socket_list = *new std::vector<asocket*>();
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -080053
54/* the the list of currently closing local sockets.
55** these have no peer anymore, but still packets to
56** write to their fd.
57*/
Josh Gao2b3db9e2018-01-31 13:15:51 -080058static auto& local_socket_closing_list = *new std::vector<asocket*>();
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -080059
David 'Digit' Turnere92344d2013-12-13 14:09:44 +010060// Parse the global list of sockets to find one with id |local_id|.
61// If |peer_id| is not 0, also check that it is connected to a peer
62// with id |peer_id|. Returns an asocket handle on success, NULL on failure.
Josh Gaoef550fe2016-05-17 16:55:06 -070063asocket* find_local_socket(unsigned local_id, unsigned peer_id) {
Josh Gao2b3db9e2018-01-31 13:15:51 -080064 asocket* result = nullptr;
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -080065
Josh Gao0f1a20a2016-05-17 17:46:27 -070066 std::lock_guard<std::recursive_mutex> lock(local_socket_list_lock);
Josh Gao2b3db9e2018-01-31 13:15:51 -080067 for (asocket* s : local_socket_list) {
Josh Gaoef550fe2016-05-17 16:55:06 -070068 if (s->id != local_id) {
David 'Digit' Turnere92344d2013-12-13 14:09:44 +010069 continue;
Josh Gaoef550fe2016-05-17 16:55:06 -070070 }
David 'Digit' Turnere92344d2013-12-13 14:09:44 +010071 if (peer_id == 0 || (s->peer && s->peer->id == peer_id)) {
André Goddard Rosa5720e6e2010-06-12 11:40:20 -030072 result = s;
André Goddard Rosa5720e6e2010-06-12 11:40:20 -030073 }
David 'Digit' Turnere92344d2013-12-13 14:09:44 +010074 break;
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -080075 }
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -080076
77 return result;
78}
79
Josh Gaoef550fe2016-05-17 16:55:06 -070080void install_local_socket(asocket* s) {
Josh Gao0f1a20a2016-05-17 17:46:27 -070081 std::lock_guard<std::recursive_mutex> lock(local_socket_list_lock);
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -080082
83 s->id = local_socket_next_id++;
David 'Digit' Turnere92344d2013-12-13 14:09:44 +010084
85 // Socket ids should never be 0.
Josh Gaoef550fe2016-05-17 16:55:06 -070086 if (local_socket_next_id == 0) {
Elliott Hughese64126b2018-10-19 13:59:44 -070087 LOG(FATAL) << "local socket id overflow";
Josh Gaoef550fe2016-05-17 16:55:06 -070088 }
David 'Digit' Turnere92344d2013-12-13 14:09:44 +010089
Josh Gao2b3db9e2018-01-31 13:15:51 -080090 local_socket_list.push_back(s);
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -080091}
92
Josh Gaoef550fe2016-05-17 16:55:06 -070093void remove_socket(asocket* s) {
Josh Gaob69c78b2017-09-13 11:17:33 -070094 std::lock_guard<std::recursive_mutex> lock(local_socket_list_lock);
Josh Gao2b3db9e2018-01-31 13:15:51 -080095 for (auto list : { &local_socket_list, &local_socket_closing_list }) {
96 list->erase(std::remove_if(list->begin(), list->end(), [s](asocket* x) { return x == s; }),
97 list->end());
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -080098 }
99}
100
Josh Gaoef550fe2016-05-17 16:55:06 -0700101void close_all_sockets(atransport* t) {
Josh Gaoef550fe2016-05-17 16:55:06 -0700102 /* this is a little gross, but since s->close() *will* modify
103 ** the list out from under you, your options are limited.
104 */
Josh Gao0f1a20a2016-05-17 17:46:27 -0700105 std::lock_guard<std::recursive_mutex> lock(local_socket_list_lock);
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -0800106restart:
Josh Gao2b3db9e2018-01-31 13:15:51 -0800107 for (asocket* s : local_socket_list) {
Josh Gaoef550fe2016-05-17 16:55:06 -0700108 if (s->transport == t || (s->peer && s->peer->transport == t)) {
Josh Gao80814e12016-05-18 10:39:48 -0700109 s->close(s);
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -0800110 goto restart;
111 }
112 }
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -0800113}
114
Josh Gao4b808502018-03-19 13:20:29 -0700115enum class SocketFlushResult {
116 Destroyed,
117 TryAgain,
118 Completed,
119};
120
121static SocketFlushResult local_socket_flush_incoming(asocket* s) {
Josh Gao9f155db2018-04-03 14:37:11 -0700122 if (!s->packet_queue.empty()) {
123 std::vector<adb_iovec> iov = s->packet_queue.iovecs();
124 ssize_t rc = adb_writev(s->fd, iov.data(), iov.size());
125 if (rc > 0 && static_cast<size_t>(rc) == s->packet_queue.size()) {
126 s->packet_queue.clear();
Josh Gao4b808502018-03-19 13:20:29 -0700127 } else if (rc > 0) {
Josh Gao9f155db2018-04-03 14:37:11 -0700128 // TODO: Implement a faster drop_front?
129 s->packet_queue.take_front(rc);
Josh Gao9528df22018-05-14 11:14:33 -0700130 fdevent_add(s->fde, FDE_WRITE);
Josh Gao4b808502018-03-19 13:20:29 -0700131 return SocketFlushResult::TryAgain;
132 } else if (rc == -1 && errno == EAGAIN) {
Josh Gao9528df22018-05-14 11:14:33 -0700133 fdevent_add(s->fde, FDE_WRITE);
Josh Gao4b808502018-03-19 13:20:29 -0700134 return SocketFlushResult::TryAgain;
Josh Gaob50b92f2018-03-30 13:56:24 -0700135 } else {
136 // We failed to write, but it's possible that we can still read from the socket.
137 // Give that a try before giving up.
138 s->has_write_error = true;
Josh Gao4b808502018-03-19 13:20:29 -0700139 }
Josh Gao4b808502018-03-19 13:20:29 -0700140 }
141
142 // If we sent the last packet of a closing socket, we can now destroy it.
143 if (s->closing) {
144 s->close(s);
145 return SocketFlushResult::Destroyed;
146 }
147
Josh Gao9528df22018-05-14 11:14:33 -0700148 fdevent_del(s->fde, FDE_WRITE);
Josh Gao4b808502018-03-19 13:20:29 -0700149 return SocketFlushResult::Completed;
150}
151
152// Returns false if the socket has been closed and destroyed as a side-effect of this function.
153static bool local_socket_flush_outgoing(asocket* s) {
154 const size_t max_payload = s->get_max_payload();
Josh Gaocd2a5292018-03-07 16:52:28 -0800155 apacket::payload_type data;
Josh Gao4b808502018-03-19 13:20:29 -0700156 data.resize(max_payload);
157 char* x = &data[0];
158 size_t avail = max_payload;
159 int r = 0;
160 int is_eof = 0;
161
162 while (avail > 0) {
163 r = adb_read(s->fd, x, avail);
164 D("LS(%d): post adb_read(fd=%d,...) r=%d (errno=%d) avail=%zu", s->id, s->fd, r,
165 r < 0 ? errno : 0, avail);
166 if (r == -1) {
167 if (errno == EAGAIN) {
168 break;
169 }
170 } else if (r > 0) {
171 avail -= r;
172 x += r;
173 continue;
174 }
175
176 /* r = 0 or unhandled error */
177 is_eof = 1;
178 break;
179 }
180 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 -0700181 s->fde->force_eof);
Josh Gao4b808502018-03-19 13:20:29 -0700182
183 if (avail != max_payload && s->peer) {
184 data.resize(max_payload - avail);
185
186 // s->peer->enqueue() may call s->close() and free s,
187 // so save variables for debug printing below.
188 unsigned saved_id = s->id;
189 int saved_fd = s->fd;
190 r = s->peer->enqueue(s->peer, std::move(data));
191 D("LS(%u): fd=%d post peer->enqueue(). r=%d", saved_id, saved_fd, r);
192
193 if (r < 0) {
194 // Error return means they closed us as a side-effect and we must
195 // return immediately.
196 //
197 // Note that if we still have buffered packets, the socket will be
198 // placed on the closing socket list. This handler function will be
199 // called again to process FDE_WRITE events.
200 return false;
201 }
202
203 if (r > 0) {
204 /* if the remote cannot accept further events,
205 ** we disable notification of READs. They'll
206 ** be enabled again when we get a call to ready()
207 */
Josh Gao9528df22018-05-14 11:14:33 -0700208 fdevent_del(s->fde, FDE_READ);
Josh Gao4b808502018-03-19 13:20:29 -0700209 }
210 }
211
212 // Don't allow a forced eof if data is still there.
Josh Gao9528df22018-05-14 11:14:33 -0700213 if ((s->fde->force_eof && !r) || is_eof) {
214 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 -0700215 s->close(s);
216 return false;
217 }
218
219 return true;
220}
221
Josh Gaocd2a5292018-03-07 16:52:28 -0800222static int local_socket_enqueue(asocket* s, apacket::payload_type data) {
Josh Gaoa7d9d712018-02-01 13:17:50 -0800223 D("LS(%d): enqueue %zu", s->id, data.size());
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -0800224
Josh Gao9f155db2018-04-03 14:37:11 -0700225 s->packet_queue.append(std::move(data));
Josh Gao4b808502018-03-19 13:20:29 -0700226 switch (local_socket_flush_incoming(s)) {
227 case SocketFlushResult::Destroyed:
228 return -1;
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -0800229
Josh Gao4b808502018-03-19 13:20:29 -0700230 case SocketFlushResult::TryAgain:
231 return 1;
232
233 case SocketFlushResult::Completed:
234 return 0;
235 }
236
237 return !s->packet_queue.empty();
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -0800238}
239
Josh Gaoef550fe2016-05-17 16:55:06 -0700240static void local_socket_ready(asocket* s) {
Nanik Tolaramc624a7e2015-02-18 22:53:37 +1100241 /* far side is ready for data, pay attention to
242 readable events */
Josh Gao9528df22018-05-14 11:14:33 -0700243 fdevent_add(s->fde, FDE_READ);
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -0800244}
245
Josh Gao18f7a5c2019-01-11 14:42:08 -0800246struct ClosingSocket {
247 std::chrono::steady_clock::time_point begin;
248};
249
250// The standard (RFC 1122 - 4.2.2.13) says that if we call close on a
251// socket while we have pending data, a TCP RST should be sent to the
252// other end to notify it that we didn't read all of its data. However,
253// this can result in data that we've successfully written out to be dropped
254// on the other end. To avoid this, instead of immediately closing a
255// socket, call shutdown on it instead, and then read from the file
256// descriptor until we hit EOF or an error before closing.
257static void deferred_close(unique_fd fd) {
258 // Shutdown the socket in the outgoing direction only, so that
259 // we don't have the same problem on the opposite end.
260 adb_shutdown(fd.get(), SHUT_WR);
261 auto callback = [](fdevent* fde, unsigned event, void* arg) {
262 auto socket_info = static_cast<ClosingSocket*>(arg);
263 if (event & FDE_READ) {
264 ssize_t rc;
265 char buf[BUFSIZ];
266 while ((rc = adb_read(fde->fd.get(), buf, sizeof(buf))) > 0) {
267 continue;
268 }
269
270 if (rc == -1 && errno == EAGAIN) {
271 // There's potentially more data to read.
272 auto duration = std::chrono::steady_clock::now() - socket_info->begin;
273 if (duration > 1s) {
274 LOG(WARNING) << "timeout expired while flushing socket, closing";
275 } else {
276 return;
277 }
278 }
279 } else if (event & FDE_TIMEOUT) {
280 LOG(WARNING) << "timeout expired while flushing socket, closing";
281 }
282
283 // Either there was an error, we hit the end of the socket, or our timeout expired.
284 fdevent_destroy(fde);
285 delete socket_info;
286 };
287
288 ClosingSocket* socket_info = new ClosingSocket{
289 .begin = std::chrono::steady_clock::now(),
290 };
291
292 fdevent* fde = fdevent_create(fd.release(), callback, socket_info);
293 fdevent_add(fde, FDE_READ);
294 fdevent_set_timeout(fde, 1s);
295}
296
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -0800297// be sure to hold the socket list lock when calling this
Josh Gaoef550fe2016-05-17 16:55:06 -0700298static void local_socket_destroy(asocket* s) {
Benoit Goby88468f32012-03-16 14:50:07 -0700299 int exit_on_close = s->exit_on_close;
300
Josh Gao9528df22018-05-14 11:14:33 -0700301 D("LS(%d): destroying fde.fd=%d", s->id, s->fd);
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -0800302
Josh Gao18f7a5c2019-01-11 14:42:08 -0800303 deferred_close(fdevent_release(s->fde));
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -0800304
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -0800305 remove_socket(s);
Josh Gao5cb76ce2018-02-12 17:24:00 -0800306 delete s;
Benoit Goby88468f32012-03-16 14:50:07 -0700307
308 if (exit_on_close) {
Yabin Cui815ad882015-09-02 17:44:28 -0700309 D("local_socket_destroy: exiting");
Benoit Goby88468f32012-03-16 14:50:07 -0700310 exit(1);
311 }
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -0800312}
313
Josh Gao0f1a20a2016-05-17 17:46:27 -0700314static void local_socket_close(asocket* s) {
315 D("entered local_socket_close. LS(%d) fd=%d", s->id, s->fd);
316 std::lock_guard<std::recursive_mutex> lock(local_socket_list_lock);
Josh Gaoef550fe2016-05-17 16:55:06 -0700317 if (s->peer) {
318 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 +0100319 /* Note: it's important to call shutdown before disconnecting from
320 * the peer, this ensures that remote sockets can still get the id
321 * of the local socket they're connected to, to send a CLOSE()
322 * protocol event. */
Josh Gaoef550fe2016-05-17 16:55:06 -0700323 if (s->peer->shutdown) {
324 s->peer->shutdown(s->peer);
325 }
Josh Gao0f1a20a2016-05-17 17:46:27 -0700326 s->peer->peer = nullptr;
327 s->peer->close(s->peer);
328 s->peer = nullptr;
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -0800329 }
330
Josh Gaoef550fe2016-05-17 16:55:06 -0700331 /* If we are already closing, or if there are no
332 ** pending packets, destroy immediately
333 */
Josh Gaoa7d9d712018-02-01 13:17:50 -0800334 if (s->closing || s->has_write_error || s->packet_queue.empty()) {
Josh Gaoef550fe2016-05-17 16:55:06 -0700335 int id = s->id;
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -0800336 local_socket_destroy(s);
Yabin Cui815ad882015-09-02 17:44:28 -0700337 D("LS(%d): closed", id);
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -0800338 return;
339 }
340
Josh Gaoef550fe2016-05-17 16:55:06 -0700341 /* otherwise, put on the closing list
342 */
Yabin Cui815ad882015-09-02 17:44:28 -0700343 D("LS(%d): closing", s->id);
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -0800344 s->closing = 1;
Josh Gao9528df22018-05-14 11:14:33 -0700345 fdevent_del(s->fde, FDE_READ);
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -0800346 remove_socket(s);
Yabin Cui815ad882015-09-02 17:44:28 -0700347 D("LS(%d): put on socket_closing_list fd=%d", s->id, s->fd);
Josh Gao2b3db9e2018-01-31 13:15:51 -0800348 local_socket_closing_list.push_back(s);
Josh Gao9528df22018-05-14 11:14:33 -0700349 CHECK_EQ(FDE_WRITE, s->fde->state & FDE_WRITE);
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -0800350}
351
Josh Gaoef550fe2016-05-17 16:55:06 -0700352static void local_socket_event_func(int fd, unsigned ev, void* _s) {
Dan Albertf30d73c2015-02-25 17:51:28 -0800353 asocket* s = reinterpret_cast<asocket*>(_s);
Yabin Cui815ad882015-09-02 17:44:28 -0700354 D("LS(%d): event_func(fd=%d(==%d), ev=%04x)", s->id, s->fd, fd, ev);
JP Abgrall2e5dd6e2011-03-16 15:57:42 -0700355
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -0800356 /* put the FDE_WRITE processing before the FDE_READ
357 ** in order to simplify the code.
358 */
Dan Albertf30d73c2015-02-25 17:51:28 -0800359 if (ev & FDE_WRITE) {
Josh Gao4b808502018-03-19 13:20:29 -0700360 switch (local_socket_flush_incoming(s)) {
361 case SocketFlushResult::Destroyed:
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -0800362 return;
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -0800363
Josh Gao4b808502018-03-19 13:20:29 -0700364 case SocketFlushResult::TryAgain:
365 break;
366
367 case SocketFlushResult::Completed:
368 s->peer->ready(s->peer);
369 break;
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -0800370 }
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -0800371 }
372
Dan Albertf30d73c2015-02-25 17:51:28 -0800373 if (ev & FDE_READ) {
Josh Gao4b808502018-03-19 13:20:29 -0700374 if (!local_socket_flush_outgoing(s)) {
Yabin Cui2ce9d562015-09-15 16:27:09 -0700375 return;
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -0800376 }
377 }
378
Josh Gaoef550fe2016-05-17 16:55:06 -0700379 if (ev & FDE_ERROR) {
380 /* this should be caught be the next read or write
381 ** catching it here means we may skip the last few
382 ** bytes of readable data.
383 */
Yabin Cui815ad882015-09-02 17:44:28 -0700384 D("LS(%d): FDE_ERROR (fd=%d)", s->id, s->fd);
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -0800385 return;
386 }
387}
388
Josh Gaoc2705962019-01-23 15:36:42 -0800389asocket* create_local_socket(unique_fd ufd) {
390 int fd = ufd.release();
Josh Gao5cb76ce2018-02-12 17:24:00 -0800391 asocket* s = new asocket();
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -0800392 s->fd = fd;
393 s->enqueue = local_socket_enqueue;
394 s->ready = local_socket_ready;
Yi Kong86e67182018-07-13 18:15:16 -0700395 s->shutdown = nullptr;
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -0800396 s->close = local_socket_close;
JP Abgrall2e5dd6e2011-03-16 15:57:42 -0700397 install_local_socket(s);
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -0800398
Josh Gao9528df22018-05-14 11:14:33 -0700399 s->fde = fdevent_create(fd, local_socket_event_func, s);
Yabin Cui815ad882015-09-02 17:44:28 -0700400 D("LS(%d): created (fd=%d)", s->id, s->fd);
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -0800401 return s;
402}
403
Josh Gao6dbf5792018-12-13 14:21:00 -0800404asocket* create_local_service_socket(std::string_view name, atransport* transport) {
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -0800405#if !ADB_HOST
Josh Gao3edf8072018-11-16 15:40:16 -0800406 if (asocket* s = daemon_service_to_socket(name); s) {
407 return s;
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -0800408 }
409#endif
Josh Gaoc2705962019-01-23 15:36:42 -0800410 unique_fd fd = service_to_fd(name, transport);
Josh Gaoef550fe2016-05-17 16:55:06 -0700411 if (fd < 0) {
Elliott Hughesc3d1c112016-06-15 14:46:56 -0700412 return nullptr;
Josh Gaoef550fe2016-05-17 16:55:06 -0700413 }
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -0800414
Greg Kaiser74b84982019-01-28 06:17:44 -0800415 int fd_value = fd.get();
Josh Gaoc2705962019-01-23 15:36:42 -0800416 asocket* s = create_local_socket(std::move(fd));
Greg Kaiser74b84982019-01-28 06:17:44 -0800417 LOG(VERBOSE) << "LS(" << s->id << "): bound to '" << name << "' via " << fd_value;
Benoit Goby88468f32012-03-16 14:50:07 -0700418
JP Abgralla84bd682012-03-30 13:19:11 -0700419#if !ADB_HOST
Josh Gao6dbf5792018-12-13 14:21:00 -0800420 if ((name.starts_with("root:") && getuid() != 0 && __android_log_is_debuggable()) ||
421 (name.starts_with("unroot:") && getuid() == 0) || name.starts_with("usb:") ||
422 name.starts_with("tcpip:")) {
Yabin Cui815ad882015-09-02 17:44:28 -0700423 D("LS(%d): enabling exit_on_close", s->id);
Benoit Goby88468f32012-03-16 14:50:07 -0700424 s->exit_on_close = 1;
425 }
JP Abgralla84bd682012-03-30 13:19:11 -0700426#endif
Benoit Goby88468f32012-03-16 14:50:07 -0700427
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -0800428 return s;
429}
430
Josh Gaocd2a5292018-03-07 16:52:28 -0800431static int remote_socket_enqueue(asocket* s, apacket::payload_type data) {
Josh Gaoef550fe2016-05-17 16:55:06 -0700432 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 -0800433 apacket* p = get_apacket();
434
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -0800435 p->msg.command = A_WRTE;
436 p->msg.arg0 = s->peer->id;
437 p->msg.arg1 = s->id;
Josh Gaoa7d9d712018-02-01 13:17:50 -0800438
Josh Gao839b9322018-02-05 18:49:10 -0800439 if (data.size() > MAX_PAYLOAD) {
Josh Gaoa7d9d712018-02-01 13:17:50 -0800440 put_apacket(p);
441 return -1;
442 }
443
Josh Gao839b9322018-02-05 18:49:10 -0800444 p->payload = std::move(data);
445 p->msg.data_length = p->payload.size();
446
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -0800447 send_packet(p, s->transport);
448 return 1;
449}
450
Josh Gaoef550fe2016-05-17 16:55:06 -0700451static void remote_socket_ready(asocket* s) {
452 D("entered remote_socket_ready RS(%d) OKAY fd=%d peer.fd=%d", s->id, s->fd, s->peer->fd);
453 apacket* p = get_apacket();
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -0800454 p->msg.command = A_OKAY;
455 p->msg.arg0 = s->peer->id;
456 p->msg.arg1 = s->id;
457 send_packet(p, s->transport);
458}
459
Josh Gaoef550fe2016-05-17 16:55:06 -0700460static void remote_socket_shutdown(asocket* s) {
461 D("entered remote_socket_shutdown RS(%d) CLOSE fd=%d peer->fd=%d", s->id, s->fd,
462 s->peer ? s->peer->fd : -1);
463 apacket* p = get_apacket();
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -0800464 p->msg.command = A_CLSE;
Josh Gaoef550fe2016-05-17 16:55:06 -0700465 if (s->peer) {
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -0800466 p->msg.arg0 = s->peer->id;
David 'Digit' Turnere92344d2013-12-13 14:09:44 +0100467 }
468 p->msg.arg1 = s->id;
469 send_packet(p, s->transport);
470}
471
Josh Gaoef550fe2016-05-17 16:55:06 -0700472static void remote_socket_close(asocket* s) {
David 'Digit' Turnere92344d2013-12-13 14:09:44 +0100473 if (s->peer) {
Yi Kong86e67182018-07-13 18:15:16 -0700474 s->peer->peer = nullptr;
Josh Gaoef550fe2016-05-17 16:55:06 -0700475 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 -0800476 s->peer->close(s->peer);
477 }
Josh Gaoef550fe2016-05-17 16:55:06 -0700478 D("entered remote_socket_close RS(%d) CLOSE fd=%d peer->fd=%d", s->id, s->fd,
479 s->peer ? s->peer->fd : -1);
Yabin Cui815ad882015-09-02 17:44:28 -0700480 D("RS(%d): closed", s->id);
Josh Gao5cb76ce2018-02-12 17:24:00 -0800481 delete s;
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -0800482}
483
Yabin Cui70ec57b2015-08-27 18:50:04 -0700484// Create a remote socket to exchange packets with a remote service through transport
485// |t|. Where |id| is the socket id of the corresponding service on the other
486// side of the transport (it is allocated by the remote side and _cannot_ be 0).
487// Returns a new non-NULL asocket handle.
Josh Gaoef550fe2016-05-17 16:55:06 -0700488asocket* create_remote_socket(unsigned id, atransport* t) {
489 if (id == 0) {
Elliott Hughese64126b2018-10-19 13:59:44 -0700490 LOG(FATAL) << "invalid remote socket id (0)";
Josh Gaoef550fe2016-05-17 16:55:06 -0700491 }
Josh Gao5cb76ce2018-02-12 17:24:00 -0800492 asocket* s = new asocket();
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -0800493 s->id = id;
494 s->enqueue = remote_socket_enqueue;
495 s->ready = remote_socket_ready;
David 'Digit' Turnere92344d2013-12-13 14:09:44 +0100496 s->shutdown = remote_socket_shutdown;
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -0800497 s->close = remote_socket_close;
498 s->transport = t;
499
Yabin Cui815ad882015-09-02 17:44:28 -0700500 D("RS(%d): created", s->id);
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -0800501 return s;
502}
503
Josh Gao4a037e22018-12-20 17:00:13 -0800504void connect_to_remote(asocket* s, std::string_view destination) {
Yabin Cui815ad882015-09-02 17:44:28 -0700505 D("Connect_to_remote call RS(%d) fd=%d", s->id, s->fd);
Josh Gaoef550fe2016-05-17 16:55:06 -0700506 apacket* p = get_apacket();
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -0800507
Josh Gao4a037e22018-12-20 17:00:13 -0800508 LOG(VERBOSE) << "LS(" << s->id << ": connect(" << destination << ")";
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -0800509 p->msg.command = A_OPEN;
510 p->msg.arg0 = s->id;
Josh Gao839b9322018-02-05 18:49:10 -0800511
Josh Gao4a037e22018-12-20 17:00:13 -0800512 // adbd used to expect a null-terminated string.
513 // Keep doing so to maintain backward compatibility.
514 p->payload.resize(destination.size() + 1);
515 memcpy(p->payload.data(), destination.data(), destination.size());
516 p->payload[destination.size()] = '\0';
Josh Gao839b9322018-02-05 18:49:10 -0800517 p->msg.data_length = p->payload.size();
518
Elliott Hughese64126b2018-10-19 13:59:44 -0700519 CHECK_LE(p->msg.data_length, s->get_max_payload());
Josh Gao839b9322018-02-05 18:49:10 -0800520
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -0800521 send_packet(p, s->transport);
522}
523
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -0800524/* this is used by magic sockets to rig local sockets to
525 send the go-ahead message when they connect */
Josh Gaoef550fe2016-05-17 16:55:06 -0700526static void local_socket_ready_notify(asocket* s) {
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -0800527 s->ready = local_socket_ready;
Yi Kong86e67182018-07-13 18:15:16 -0700528 s->shutdown = nullptr;
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -0800529 s->close = local_socket_close;
Elliott Hughes88b4c852015-04-30 17:32:03 -0700530 SendOkay(s->fd);
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -0800531 s->ready(s);
532}
533
534/* this is used by magic sockets to rig local sockets to
535 send the failure message if they are closed before
536 connected (to avoid closing them without a status message) */
Josh Gaoef550fe2016-05-17 16:55:06 -0700537static void local_socket_close_notify(asocket* s) {
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -0800538 s->ready = local_socket_ready;
Yi Kong86e67182018-07-13 18:15:16 -0700539 s->shutdown = nullptr;
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -0800540 s->close = local_socket_close;
Elliott Hughes88b4c852015-04-30 17:32:03 -0700541 SendFail(s->fd, "closed");
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -0800542 s->close(s);
543}
544
Josh Gaoa7d9d712018-02-01 13:17:50 -0800545static unsigned unhex(const char* s, int len) {
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -0800546 unsigned n = 0, c;
547
Josh Gaoef550fe2016-05-17 16:55:06 -0700548 while (len-- > 0) {
549 switch ((c = *s++)) {
550 case '0':
551 case '1':
552 case '2':
553 case '3':
554 case '4':
555 case '5':
556 case '6':
557 case '7':
558 case '8':
559 case '9':
560 c -= '0';
561 break;
562 case 'a':
563 case 'b':
564 case 'c':
565 case 'd':
566 case 'e':
567 case 'f':
568 c = c - 'a' + 10;
569 break;
570 case 'A':
571 case 'B':
572 case 'C':
573 case 'D':
574 case 'E':
575 case 'F':
576 c = c - 'A' + 10;
577 break;
578 default:
579 return 0xffffffff;
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -0800580 }
581
582 n = (n << 4) | c;
583 }
584
585 return n;
586}
587
Elliott Hughes88b4c852015-04-30 17:32:03 -0700588#if ADB_HOST
589
David Pursellc929c6f2016-03-01 08:58:26 -0800590namespace internal {
Scott Anderson27042382012-05-30 18:11:27 -0700591
Josh Gao8d49e122018-12-19 13:37:41 -0800592// Parses a host service string of the following format:
David Pursellc929c6f2016-03-01 08:58:26 -0800593// * [tcp:|udp:]<serial>[:<port>]:<command>
594// * <prefix>:<serial>:<command>
595// Where <port> must be a base-10 number and <prefix> may be any of {usb,product,model,device}.
Josh Gao8d49e122018-12-19 13:37:41 -0800596bool parse_host_service(std::string_view* out_serial, std::string_view* out_command,
597 std::string_view full_service) {
598 if (full_service.empty()) {
599 return false;
600 }
Terence Haddock6c670402011-03-16 09:43:56 +0100601
Josh Gao8d49e122018-12-19 13:37:41 -0800602 std::string_view serial;
603 std::string_view command = full_service;
604 // Remove |count| bytes from the beginning of command and add them to |serial|.
605 auto consume = [&full_service, &serial, &command](size_t count) {
606 CHECK_LE(count, command.size());
607 if (!serial.empty()) {
608 CHECK_EQ(serial.data() + serial.size(), command.data());
609 }
610
611 serial = full_service.substr(0, serial.size() + count);
612 command.remove_prefix(count);
613 };
614
615 // Remove the trailing : from serial, and assign the values to the output parameters.
616 auto finish = [out_serial, out_command, &serial, &command] {
617 if (serial.empty() || command.empty()) {
618 return false;
619 }
620
621 CHECK_EQ(':', serial.back());
622 serial.remove_suffix(1);
623
624 *out_serial = serial;
625 *out_command = command;
626 return true;
627 };
628
629 static constexpr std::string_view prefixes[] = {"usb:", "product:", "model:", "device:"};
630 for (std::string_view prefix : prefixes) {
631 if (command.starts_with(prefix)) {
632 consume(prefix.size());
633
634 size_t offset = command.find_first_of(':');
635 if (offset == std::string::npos) {
636 return false;
637 }
638 consume(offset + 1);
639 return finish();
David Pursellc929c6f2016-03-01 08:58:26 -0800640 }
Scott Anderson090e5cb2012-05-31 12:04:23 -0700641 }
642
David Pursellc929c6f2016-03-01 08:58:26 -0800643 // For fastboot compatibility, ignore protocol prefixes.
Josh Gao8d49e122018-12-19 13:37:41 -0800644 if (command.starts_with("tcp:") || command.starts_with("udp:")) {
645 consume(4);
646 if (command.empty()) {
647 return false;
David Pursell24b62a72016-09-21 12:08:37 -0700648 }
649 }
Cody Schuffelen637aaf52019-01-04 18:51:11 -0800650 if (command.starts_with("vsock:")) {
651 // vsock serials are vsock:cid:port, which have an extra colon compared to tcp.
652 size_t next_colon = command.find(':');
653 if (next_colon == std::string::npos) {
654 return false;
655 }
656 consume(next_colon + 1);
657 }
David Pursell24b62a72016-09-21 12:08:37 -0700658
Josh Gao8d49e122018-12-19 13:37:41 -0800659 bool found_address = false;
660 if (command[0] == '[') {
661 // Read an IPv6 address. `adb connect` creates the serial number from the canonical
662 // network address so it will always have the [] delimiters.
663 size_t ipv6_end = command.find_first_of(']');
664 if (ipv6_end != std::string::npos) {
665 consume(ipv6_end + 1);
666 if (command.empty()) {
667 // Nothing after the IPv6 address.
668 return false;
669 } else if (command[0] != ':') {
670 // Garbage after the IPv6 address.
671 return false;
672 }
673 consume(1);
674 found_address = true;
675 }
Terence Haddock6c670402011-03-16 09:43:56 +0100676 }
David Pursellc929c6f2016-03-01 08:58:26 -0800677
Josh Gao8d49e122018-12-19 13:37:41 -0800678 if (!found_address) {
679 // Scan ahead to the next colon.
680 size_t offset = command.find_first_of(':');
681 if (offset == std::string::npos) {
682 return false;
Terence Haddock6c670402011-03-16 09:43:56 +0100683 }
Josh Gao8d49e122018-12-19 13:37:41 -0800684 consume(offset + 1);
685 }
686
687 // We're either at the beginning of a port, or the command itself.
688 // Look for a port in between colons.
689 size_t next_colon = command.find_first_of(':');
690 if (next_colon == std::string::npos) {
691 // No colon, we must be at the command.
692 return finish();
693 }
694
695 bool port_valid = true;
696 if (command.size() <= next_colon) {
697 return false;
698 }
699
700 std::string_view port = command.substr(0, next_colon);
701 for (auto digit : port) {
702 if (!isdigit(digit)) {
703 // Port isn't a number.
704 port_valid = false;
705 break;
Terence Haddock6c670402011-03-16 09:43:56 +0100706 }
707 }
Josh Gao8d49e122018-12-19 13:37:41 -0800708
709 if (port_valid) {
710 consume(next_colon + 1);
711 }
712 return finish();
Terence Haddock6c670402011-03-16 09:43:56 +0100713}
714
David Pursellc929c6f2016-03-01 08:58:26 -0800715} // namespace internal
716
Josh Gaoef550fe2016-05-17 16:55:06 -0700717#endif // ADB_HOST
Elliott Hughes88b4c852015-04-30 17:32:03 -0700718
Josh Gaocd2a5292018-03-07 16:52:28 -0800719static int smart_socket_enqueue(asocket* s, apacket::payload_type data) {
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -0800720#if ADB_HOST
Josh Gao8d49e122018-12-19 13:37:41 -0800721 std::string_view service;
722 std::string_view serial;
Josh Gaob39e4152017-08-16 16:57:01 -0700723 TransportId transport_id = 0;
Elliott Hughes3aec2ba2015-05-05 13:10:43 -0700724 TransportType type = kTransportAny;
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -0800725#endif
726
Josh Gaoa7d9d712018-02-01 13:17:50 -0800727 D("SS(%d): enqueue %zu", s->id, data.size());
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -0800728
Josh Gaoa7d9d712018-02-01 13:17:50 -0800729 if (s->smart_socket_data.empty()) {
Josh Gao9f155db2018-04-03 14:37:11 -0700730 // TODO: Make this an IOVector?
Josh Gaocd2a5292018-03-07 16:52:28 -0800731 s->smart_socket_data.assign(data.begin(), data.end());
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -0800732 } else {
Josh Gaoa7d9d712018-02-01 13:17:50 -0800733 std::copy(data.begin(), data.end(), std::back_inserter(s->smart_socket_data));
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -0800734 }
735
Josh Gao9055a582016-01-15 14:35:54 -0800736 /* don't bother if we can't decode the length */
Josh Gaoa7d9d712018-02-01 13:17:50 -0800737 if (s->smart_socket_data.size() < 4) {
Josh Gaoef550fe2016-05-17 16:55:06 -0700738 return 0;
739 }
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -0800740
Josh Gaoa7d9d712018-02-01 13:17:50 -0800741 uint32_t len = unhex(s->smart_socket_data.data(), 4);
742 if (len == 0 || len > MAX_PAYLOAD) {
743 D("SS(%d): bad size (%u)", s->id, len);
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -0800744 goto fail;
745 }
746
Josh Gaoa7d9d712018-02-01 13:17:50 -0800747 D("SS(%d): len is %u", s->id, len);
Josh Gao9055a582016-01-15 14:35:54 -0800748 /* can't do anything until we have the full header */
Josh Gaoa7d9d712018-02-01 13:17:50 -0800749 if ((len + 4) > s->smart_socket_data.size()) {
750 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 -0800751 return 0;
752 }
753
Josh Gaoa7d9d712018-02-01 13:17:50 -0800754 s->smart_socket_data[len + 4] = 0;
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -0800755
Josh Gaoa7d9d712018-02-01 13:17:50 -0800756 D("SS(%d): '%s'", s->id, (char*)(s->smart_socket_data.data() + 4));
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -0800757
758#if ADB_HOST
Josh Gao8d49e122018-12-19 13:37:41 -0800759 service = std::string_view(s->smart_socket_data).substr(4);
Elliott Hughes0d1e8fd2019-05-03 09:02:45 -0700760 if (android::base::ConsumePrefix(&service, "host-serial:")) {
Terence Haddock6c670402011-03-16 09:43:56 +0100761 // serial number should follow "host:" and could be a host:port string.
Josh Gao8d49e122018-12-19 13:37:41 -0800762 if (!internal::parse_host_service(&serial, &service, service)) {
763 LOG(ERROR) << "SS(" << s->id << "): failed to parse host service: " << service;
764 goto fail;
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -0800765 }
Elliott Hughes0d1e8fd2019-05-03 09:02:45 -0700766 } else if (android::base::ConsumePrefix(&service, "host-transport-id:")) {
Josh Gao8d49e122018-12-19 13:37:41 -0800767 if (!ParseUint(&transport_id, service, &service)) {
768 LOG(ERROR) << "SS(" << s->id << "): failed to parse host transport id: " << service;
Josh Gaob39e4152017-08-16 16:57:01 -0700769 return -1;
770 }
Elliott Hughes0d1e8fd2019-05-03 09:02:45 -0700771 if (!android::base::ConsumePrefix(&service, ":")) {
Josh Gao8d49e122018-12-19 13:37:41 -0800772 LOG(ERROR) << "SS(" << s->id << "): host-transport-id without command";
773 return -1;
774 }
Elliott Hughes0d1e8fd2019-05-03 09:02:45 -0700775 } else if (android::base::ConsumePrefix(&service, "host-usb:")) {
Elliott Hughes3aec2ba2015-05-05 13:10:43 -0700776 type = kTransportUsb;
Elliott Hughes0d1e8fd2019-05-03 09:02:45 -0700777 } else if (android::base::ConsumePrefix(&service, "host-local:")) {
Elliott Hughes3aec2ba2015-05-05 13:10:43 -0700778 type = kTransportLocal;
Elliott Hughes0d1e8fd2019-05-03 09:02:45 -0700779 } else if (android::base::ConsumePrefix(&service, "host:")) {
Elliott Hughes3aec2ba2015-05-05 13:10:43 -0700780 type = kTransportAny;
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -0800781 } else {
Josh Gao8d49e122018-12-19 13:37:41 -0800782 service = std::string_view{};
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -0800783 }
784
Josh Gao8d49e122018-12-19 13:37:41 -0800785 if (!service.empty()) {
Josh Gaoef550fe2016-05-17 16:55:06 -0700786 asocket* s2;
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -0800787
Josh Gaod3067472018-08-07 14:14:21 -0700788 // Some requests are handled immediately -- in that case the handle_host_request() routine
789 // has sent the OKAY or FAIL message and all we have to do is clean up.
Josh Gaob13f3cd2019-02-20 20:37:26 -0800790 auto host_request_result = handle_host_request(
791 service, type, serial.empty() ? nullptr : std::string(serial).c_str(), transport_id,
792 s->peer->fd, s);
793
794 switch (host_request_result) {
795 case HostRequestResult::Handled:
796 LOG(VERBOSE) << "SS(" << s->id << "): handled host service '" << service << "'";
797 goto fail;
798
799 case HostRequestResult::SwitchedTransport:
800 D("SS(%d): okay transport", s->id);
801 s->smart_socket_data.clear();
802 return 0;
803
804 case HostRequestResult::Unhandled:
805 break;
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -0800806 }
807
Josh Gaoef550fe2016-05-17 16:55:06 -0700808 /* try to find a local service with this name.
809 ** if no such service exists, we'll fail out
810 ** and tear down here.
811 */
Josh Gao8d49e122018-12-19 13:37:41 -0800812 // TODO: Convert to string_view.
Josh Gao0565ae02019-02-22 13:41:55 -0800813 s2 = host_service_to_socket(service, serial, transport_id);
Yi Kong86e67182018-07-13 18:15:16 -0700814 if (s2 == nullptr) {
Josh Gao8d49e122018-12-19 13:37:41 -0800815 LOG(VERBOSE) << "SS(" << s->id << "): couldn't create host service '" << service << "'";
Elliott Hughes88b4c852015-04-30 17:32:03 -0700816 SendFail(s->peer->fd, "unknown host service");
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -0800817 goto fail;
818 }
819
Josh Gaoef550fe2016-05-17 16:55:06 -0700820 /* we've connected to a local host service,
821 ** so we make our peer back into a regular
822 ** local socket and bind it to the new local
823 ** service socket, acknowledge the successful
824 ** connection, and close this smart socket now
825 ** that its work is done.
826 */
Elliott Hughes88b4c852015-04-30 17:32:03 -0700827 SendOkay(s->peer->fd);
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -0800828
829 s->peer->ready = local_socket_ready;
Elliott Hughes67943d12015-10-07 14:55:10 -0700830 s->peer->shutdown = nullptr;
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -0800831 s->peer->close = local_socket_close;
832 s->peer->peer = s2;
833 s2->peer = s->peer;
Yi Kong86e67182018-07-13 18:15:16 -0700834 s->peer = nullptr;
Josh Gaoef550fe2016-05-17 16:55:06 -0700835 D("SS(%d): okay", s->id);
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -0800836 s->close(s);
837
Josh Gaoef550fe2016-05-17 16:55:06 -0700838 /* initial state is "ready" */
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -0800839 s2->ready(s2);
840 return 0;
841 }
842#else /* !ADB_HOST */
Elliott Hughes67943d12015-10-07 14:55:10 -0700843 if (s->transport == nullptr) {
Elliott Hughesab882422015-04-16 22:54:44 -0700844 std::string error_msg = "unknown failure";
Josh Gaob39e4152017-08-16 16:57:01 -0700845 s->transport = acquire_one_transport(kTransportAny, nullptr, 0, nullptr, &error_msg);
Elliott Hughes67943d12015-10-07 14:55:10 -0700846 if (s->transport == nullptr) {
Elliott Hughes88b4c852015-04-30 17:32:03 -0700847 SendFail(s->peer->fd, error_msg);
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -0800848 goto fail;
849 }
850 }
851#endif
852
Josh Gao4e562502016-10-27 14:01:08 -0700853 if (!s->transport) {
854 SendFail(s->peer->fd, "device offline (no transport)");
855 goto fail;
Josh Gao7a7c5cb2018-05-04 16:04:49 -0700856 } else if (!ConnectionStateIsOnline(s->transport->GetConnectionState())) {
Josh Gaoef550fe2016-05-17 16:55:06 -0700857 /* if there's no remote we fail the connection
858 ** right here and terminate it
859 */
Josh Gao4e562502016-10-27 14:01:08 -0700860 SendFail(s->peer->fd, "device offline (transport offline)");
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -0800861 goto fail;
862 }
863
Josh Gaoef550fe2016-05-17 16:55:06 -0700864 /* instrument our peer to pass the success or fail
865 ** message back once it connects or closes, then
866 ** detach from it, request the connection, and
867 ** tear down
868 */
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -0800869 s->peer->ready = local_socket_ready_notify;
Elliott Hughes67943d12015-10-07 14:55:10 -0700870 s->peer->shutdown = nullptr;
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -0800871 s->peer->close = local_socket_close_notify;
Yi Kong86e67182018-07-13 18:15:16 -0700872 s->peer->peer = nullptr;
Josh Gaoef550fe2016-05-17 16:55:06 -0700873 /* give him our transport and upref it */
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -0800874 s->peer->transport = s->transport;
875
Josh Gao4a037e22018-12-20 17:00:13 -0800876 connect_to_remote(s->peer, std::string_view(s->smart_socket_data).substr(4));
Yi Kong86e67182018-07-13 18:15:16 -0700877 s->peer = nullptr;
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -0800878 s->close(s);
879 return 1;
880
881fail:
Josh Gaoef550fe2016-05-17 16:55:06 -0700882 /* we're going to close our peer as a side-effect, so
883 ** return -1 to signal that state to the local socket
884 ** who is enqueueing against us
885 */
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -0800886 s->close(s);
887 return -1;
888}
889
Josh Gaoef550fe2016-05-17 16:55:06 -0700890static void smart_socket_ready(asocket* s) {
Yabin Cui815ad882015-09-02 17:44:28 -0700891 D("SS(%d): ready", s->id);
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -0800892}
893
Josh Gaoef550fe2016-05-17 16:55:06 -0700894static void smart_socket_close(asocket* s) {
Yabin Cui815ad882015-09-02 17:44:28 -0700895 D("SS(%d): closed", s->id);
Josh Gaoef550fe2016-05-17 16:55:06 -0700896 if (s->peer) {
Yi Kong86e67182018-07-13 18:15:16 -0700897 s->peer->peer = nullptr;
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -0800898 s->peer->close(s->peer);
Yi Kong86e67182018-07-13 18:15:16 -0700899 s->peer = nullptr;
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -0800900 }
Josh Gao5cb76ce2018-02-12 17:24:00 -0800901 delete s;
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -0800902}
903
Josh Gaoef550fe2016-05-17 16:55:06 -0700904static asocket* create_smart_socket(void) {
Yabin Cui815ad882015-09-02 17:44:28 -0700905 D("Creating smart socket");
Josh Gao5cb76ce2018-02-12 17:24:00 -0800906 asocket* s = new asocket();
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -0800907 s->enqueue = smart_socket_enqueue;
908 s->ready = smart_socket_ready;
Yi Kong86e67182018-07-13 18:15:16 -0700909 s->shutdown = nullptr;
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -0800910 s->close = smart_socket_close;
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -0800911
Yabin Cui815ad882015-09-02 17:44:28 -0700912 D("SS(%d)", s->id);
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -0800913 return s;
914}
915
Josh Gaoef550fe2016-05-17 16:55:06 -0700916void connect_to_smartsocket(asocket* s) {
Yabin Cui815ad882015-09-02 17:44:28 -0700917 D("Connecting to smart socket");
Josh Gaoef550fe2016-05-17 16:55:06 -0700918 asocket* ss = create_smart_socket();
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -0800919 s->peer = ss;
920 ss->peer = s;
921 s->ready(s);
922}
Tamas Berghammera1c60c02015-07-13 19:12:28 +0100923
924size_t asocket::get_max_payload() const {
925 size_t max_payload = MAX_PAYLOAD;
926 if (transport) {
927 max_payload = std::min(max_payload, transport->get_max_payload());
928 }
929 if (peer && peer->transport) {
930 max_payload = std::min(max_payload, peer->transport->get_max_payload());
931 }
932 return max_payload;
933}