blob: de3215dc491a51385ec80af36da30081e46e28d3 [file] [log] [blame]
The Android Open Source Projectdd7bc332009-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 Cuiaed3c612015-09-22 15:52:57 -070017#define TRACE_TAG SOCKETS
Dan Albert33134262015-03-19 15:21:08 -070018
19#include "sysdeps.h"
20
Dan Albert76649012015-02-24 15:51:19 -080021#include <ctype.h>
22#include <errno.h>
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -080023#include <stdio.h>
24#include <stdlib.h>
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -080025#include <string.h>
Dan Albert76649012015-02-24 15:51:19 -080026#include <unistd.h>
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -080027
Spencer Low363af562015-11-07 18:51:54 -080028#include <algorithm>
Josh Gao9b587de2016-05-17 17:46:27 -070029#include <mutex>
David Pursell3f902aa2016-03-01 08:58:26 -080030#include <string>
31#include <vector>
Spencer Low363af562015-11-07 18:51:54 -080032
Dan Albert76649012015-02-24 15:51:19 -080033#if !ADB_HOST
Elliott Hughesffdec182016-09-23 15:40:03 -070034#include <android-base/properties.h>
Steven Morelandd73be1b2017-04-13 23:48:57 -070035#include <log/log_properties.h>
Dan Albert76649012015-02-24 15:51:19 -080036#endif
Dan Albert33134262015-03-19 15:21:08 -070037
38#include "adb.h"
39#include "adb_io.h"
Dan Albert76649012015-02-24 15:51:19 -080040#include "transport.h"
Josh Gao1ce99572018-03-07 16:52:28 -080041#include "types.h"
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -080042
Josh Gao9b587de2016-05-17 17:46:27 -070043static std::recursive_mutex& local_socket_list_lock = *new std::recursive_mutex();
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -080044static unsigned local_socket_next_id = 1;
45
Josh Gao5e507642018-01-31 13:15:51 -080046static auto& local_socket_list = *new std::vector<asocket*>();
The Android Open Source Projectdd7bc332009-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 Gao5e507642018-01-31 13:15:51 -080052static auto& local_socket_closing_list = *new std::vector<asocket*>();
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -080053
David 'Digit' Turner818d6412013-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 Gao52bd8522016-05-17 16:55:06 -070057asocket* find_local_socket(unsigned local_id, unsigned peer_id) {
Josh Gao5e507642018-01-31 13:15:51 -080058 asocket* result = nullptr;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -080059
Josh Gao9b587de2016-05-17 17:46:27 -070060 std::lock_guard<std::recursive_mutex> lock(local_socket_list_lock);
Josh Gao5e507642018-01-31 13:15:51 -080061 for (asocket* s : local_socket_list) {
Josh Gao52bd8522016-05-17 16:55:06 -070062 if (s->id != local_id) {
David 'Digit' Turner818d6412013-12-13 14:09:44 +010063 continue;
Josh Gao52bd8522016-05-17 16:55:06 -070064 }
David 'Digit' Turner818d6412013-12-13 14:09:44 +010065 if (peer_id == 0 || (s->peer && s->peer->id == peer_id)) {
André Goddard Rosa81828292010-06-12 11:40:20 -030066 result = s;
André Goddard Rosa81828292010-06-12 11:40:20 -030067 }
David 'Digit' Turner818d6412013-12-13 14:09:44 +010068 break;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -080069 }
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -080070
71 return result;
72}
73
Josh Gao52bd8522016-05-17 16:55:06 -070074void install_local_socket(asocket* s) {
Josh Gao9b587de2016-05-17 17:46:27 -070075 std::lock_guard<std::recursive_mutex> lock(local_socket_list_lock);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -080076
77 s->id = local_socket_next_id++;
David 'Digit' Turner818d6412013-12-13 14:09:44 +010078
79 // Socket ids should never be 0.
Josh Gao52bd8522016-05-17 16:55:06 -070080 if (local_socket_next_id == 0) {
Josh Gao9b587de2016-05-17 17:46:27 -070081 fatal("local socket id overflow");
Josh Gao52bd8522016-05-17 16:55:06 -070082 }
David 'Digit' Turner818d6412013-12-13 14:09:44 +010083
Josh Gao5e507642018-01-31 13:15:51 -080084 local_socket_list.push_back(s);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -080085}
86
Josh Gao52bd8522016-05-17 16:55:06 -070087void remove_socket(asocket* s) {
Josh Gao62c92f02017-09-13 11:17:33 -070088 std::lock_guard<std::recursive_mutex> lock(local_socket_list_lock);
Josh Gao5e507642018-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 Projectdd7bc332009-03-03 19:32:55 -080092 }
93}
94
Josh Gao52bd8522016-05-17 16:55:06 -070095void close_all_sockets(atransport* t) {
Josh Gao52bd8522016-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 Gao9b587de2016-05-17 17:46:27 -070099 std::lock_guard<std::recursive_mutex> lock(local_socket_list_lock);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800100restart:
Josh Gao5e507642018-01-31 13:15:51 -0800101 for (asocket* s : local_socket_list) {
Josh Gao52bd8522016-05-17 16:55:06 -0700102 if (s->transport == t || (s->peer && s->peer->transport == t)) {
Josh Gao53eb31d2016-05-18 10:39:48 -0700103 s->close(s);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800104 goto restart;
105 }
106 }
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800107}
108
Josh Gao184f4802018-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 Gao7c738cd2018-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 Gao184f4802018-03-19 13:20:29 -0700121 } else if (rc > 0) {
Josh Gao7c738cd2018-04-03 14:37:11 -0700122 // TODO: Implement a faster drop_front?
123 s->packet_queue.take_front(rc);
Josh Gao71f775a2018-05-14 11:14:33 -0700124 fdevent_add(s->fde, FDE_WRITE);
Josh Gao184f4802018-03-19 13:20:29 -0700125 return SocketFlushResult::TryAgain;
126 } else if (rc == -1 && errno == EAGAIN) {
Josh Gao71f775a2018-05-14 11:14:33 -0700127 fdevent_add(s->fde, FDE_WRITE);
Josh Gao184f4802018-03-19 13:20:29 -0700128 return SocketFlushResult::TryAgain;
Josh Gao954e1282018-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 Gao184f4802018-03-19 13:20:29 -0700133 }
Josh Gao184f4802018-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 Gao71f775a2018-05-14 11:14:33 -0700142 fdevent_del(s->fde, FDE_WRITE);
Josh Gao184f4802018-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 Gao1ce99572018-03-07 16:52:28 -0800149 apacket::payload_type data;
Josh Gao184f4802018-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 Gao71f775a2018-05-14 11:14:33 -0700175 s->fde->force_eof);
Josh Gao184f4802018-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 Gao71f775a2018-05-14 11:14:33 -0700202 fdevent_del(s->fde, FDE_READ);
Josh Gao184f4802018-03-19 13:20:29 -0700203 }
204 }
205
206 // Don't allow a forced eof if data is still there.
Josh Gao71f775a2018-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 Gao184f4802018-03-19 13:20:29 -0700209 s->close(s);
210 return false;
211 }
212
213 return true;
214}
215
Josh Gao1ce99572018-03-07 16:52:28 -0800216static int local_socket_enqueue(asocket* s, apacket::payload_type data) {
Josh Gao27cb7dc2018-02-01 13:17:50 -0800217 D("LS(%d): enqueue %zu", s->id, data.size());
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800218
Josh Gao7c738cd2018-04-03 14:37:11 -0700219 s->packet_queue.append(std::move(data));
Josh Gao184f4802018-03-19 13:20:29 -0700220 switch (local_socket_flush_incoming(s)) {
221 case SocketFlushResult::Destroyed:
222 return -1;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800223
Josh Gao184f4802018-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 Projectdd7bc332009-03-03 19:32:55 -0800232}
233
Josh Gao52bd8522016-05-17 16:55:06 -0700234static void local_socket_ready(asocket* s) {
Nanik Tolaramb627a0e2015-02-18 22:53:37 +1100235 /* far side is ready for data, pay attention to
236 readable events */
Josh Gao71f775a2018-05-14 11:14:33 -0700237 fdevent_add(s->fde, FDE_READ);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800238}
239
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800240// be sure to hold the socket list lock when calling this
Josh Gao52bd8522016-05-17 16:55:06 -0700241static void local_socket_destroy(asocket* s) {
Benoit Gobyf366b362012-03-16 14:50:07 -0700242 int exit_on_close = s->exit_on_close;
243
Josh Gao71f775a2018-05-14 11:14:33 -0700244 D("LS(%d): destroying fde.fd=%d", s->id, s->fd);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800245
Josh Gao52bd8522016-05-17 16:55:06 -0700246 /* IMPORTANT: the remove closes the fd
247 ** that belongs to this socket
248 */
Josh Gao71f775a2018-05-14 11:14:33 -0700249 fdevent_destroy(s->fde);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800250
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800251 remove_socket(s);
Josh Gaoe0361d12018-02-12 17:24:00 -0800252 delete s;
Benoit Gobyf366b362012-03-16 14:50:07 -0700253
254 if (exit_on_close) {
Yabin Cui7a3f8d62015-09-02 17:44:28 -0700255 D("local_socket_destroy: exiting");
Benoit Gobyf366b362012-03-16 14:50:07 -0700256 exit(1);
257 }
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800258}
259
Josh Gao9b587de2016-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 Gao52bd8522016-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' Turner818d6412013-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 Gao52bd8522016-05-17 16:55:06 -0700269 if (s->peer->shutdown) {
270 s->peer->shutdown(s->peer);
271 }
Josh Gao9b587de2016-05-17 17:46:27 -0700272 s->peer->peer = nullptr;
273 s->peer->close(s->peer);
274 s->peer = nullptr;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800275 }
276
Josh Gao52bd8522016-05-17 16:55:06 -0700277 /* If we are already closing, or if there are no
278 ** pending packets, destroy immediately
279 */
Josh Gao27cb7dc2018-02-01 13:17:50 -0800280 if (s->closing || s->has_write_error || s->packet_queue.empty()) {
Josh Gao52bd8522016-05-17 16:55:06 -0700281 int id = s->id;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800282 local_socket_destroy(s);
Yabin Cui7a3f8d62015-09-02 17:44:28 -0700283 D("LS(%d): closed", id);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800284 return;
285 }
286
Josh Gao52bd8522016-05-17 16:55:06 -0700287 /* otherwise, put on the closing list
288 */
Yabin Cui7a3f8d62015-09-02 17:44:28 -0700289 D("LS(%d): closing", s->id);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800290 s->closing = 1;
Josh Gao71f775a2018-05-14 11:14:33 -0700291 fdevent_del(s->fde, FDE_READ);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800292 remove_socket(s);
Yabin Cui7a3f8d62015-09-02 17:44:28 -0700293 D("LS(%d): put on socket_closing_list fd=%d", s->id, s->fd);
Josh Gao5e507642018-01-31 13:15:51 -0800294 local_socket_closing_list.push_back(s);
Josh Gao71f775a2018-05-14 11:14:33 -0700295 CHECK_EQ(FDE_WRITE, s->fde->state & FDE_WRITE);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800296}
297
Josh Gao52bd8522016-05-17 16:55:06 -0700298static void local_socket_event_func(int fd, unsigned ev, void* _s) {
Dan Albertbac34742015-02-25 17:51:28 -0800299 asocket* s = reinterpret_cast<asocket*>(_s);
Yabin Cui7a3f8d62015-09-02 17:44:28 -0700300 D("LS(%d): event_func(fd=%d(==%d), ev=%04x)", s->id, s->fd, fd, ev);
JP Abgrall408fa572011-03-16 15:57:42 -0700301
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800302 /* put the FDE_WRITE processing before the FDE_READ
303 ** in order to simplify the code.
304 */
Dan Albertbac34742015-02-25 17:51:28 -0800305 if (ev & FDE_WRITE) {
Josh Gao184f4802018-03-19 13:20:29 -0700306 switch (local_socket_flush_incoming(s)) {
307 case SocketFlushResult::Destroyed:
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800308 return;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800309
Josh Gao184f4802018-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 Projectdd7bc332009-03-03 19:32:55 -0800316 }
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800317 }
318
Dan Albertbac34742015-02-25 17:51:28 -0800319 if (ev & FDE_READ) {
Josh Gao184f4802018-03-19 13:20:29 -0700320 if (!local_socket_flush_outgoing(s)) {
Yabin Cuic1b1f6f2015-09-15 16:27:09 -0700321 return;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800322 }
323 }
324
Josh Gao52bd8522016-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 Cui7a3f8d62015-09-02 17:44:28 -0700330 D("LS(%d): FDE_ERROR (fd=%d)", s->id, s->fd);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800331 return;
332 }
333}
334
Josh Gao52bd8522016-05-17 16:55:06 -0700335asocket* create_local_socket(int fd) {
Josh Gaoe0361d12018-02-12 17:24:00 -0800336 asocket* s = new asocket();
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800337 s->fd = fd;
338 s->enqueue = local_socket_enqueue;
339 s->ready = local_socket_ready;
David 'Digit' Turner818d6412013-12-13 14:09:44 +0100340 s->shutdown = NULL;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800341 s->close = local_socket_close;
JP Abgrall408fa572011-03-16 15:57:42 -0700342 install_local_socket(s);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800343
Josh Gao71f775a2018-05-14 11:14:33 -0700344 s->fde = fdevent_create(fd, local_socket_event_func, s);
Yabin Cui7a3f8d62015-09-02 17:44:28 -0700345 D("LS(%d): created (fd=%d)", s->id, s->fd);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800346 return s;
347}
348
Josh Gao44899ee2018-04-13 12:17:03 -0700349asocket* create_local_service_socket(const char* name, atransport* transport) {
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800350#if !ADB_HOST
Josh Gao52bd8522016-05-17 16:55:06 -0700351 if (!strcmp(name, "jdwp")) {
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800352 return create_jdwp_service_socket();
353 }
Josh Gao52bd8522016-05-17 16:55:06 -0700354 if (!strcmp(name, "track-jdwp")) {
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800355 return create_jdwp_tracker_service_socket();
356 }
357#endif
David Pursell0955c662015-08-31 10:42:13 -0700358 int fd = service_to_fd(name, transport);
Josh Gao52bd8522016-05-17 16:55:06 -0700359 if (fd < 0) {
Elliott Hughesffc73a32016-06-15 14:46:56 -0700360 return nullptr;
Josh Gao52bd8522016-05-17 16:55:06 -0700361 }
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800362
Dan Pasanen98858812014-10-06 12:57:20 -0500363 asocket* s = create_local_socket(fd);
Yabin Cui7a3f8d62015-09-02 17:44:28 -0700364 D("LS(%d): bound to '%s' via %d", s->id, name, fd);
Benoit Gobyf366b362012-03-16 14:50:07 -0700365
JP Abgrallf91259a2012-03-30 13:19:11 -0700366#if !ADB_HOST
Mark Salyzyn97787a02016-03-28 15:52:13 -0700367 if ((!strncmp(name, "root:", 5) && getuid() != 0 && __android_log_is_debuggable()) ||
Josh Gao52bd8522016-05-17 16:55:06 -0700368 (!strncmp(name, "unroot:", 7) && getuid() == 0) ||
369 !strncmp(name, "usb:", 4) ||
370 !strncmp(name, "tcpip:", 6)) {
Yabin Cui7a3f8d62015-09-02 17:44:28 -0700371 D("LS(%d): enabling exit_on_close", s->id);
Benoit Gobyf366b362012-03-16 14:50:07 -0700372 s->exit_on_close = 1;
373 }
JP Abgrallf91259a2012-03-30 13:19:11 -0700374#endif
Benoit Gobyf366b362012-03-16 14:50:07 -0700375
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800376 return s;
377}
378
379#if ADB_HOST
Josh Gaob122b172017-08-16 16:57:01 -0700380static asocket* create_host_service_socket(const char* name, const char* serial,
381 TransportId transport_id) {
Josh Gao52bd8522016-05-17 16:55:06 -0700382 asocket* s;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800383
Josh Gaob122b172017-08-16 16:57:01 -0700384 s = host_service_to_socket(name, serial, transport_id);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800385
386 if (s != NULL) {
Yabin Cui7a3f8d62015-09-02 17:44:28 -0700387 D("LS(%d) bound to '%s'", s->id, name);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800388 return s;
389 }
390
391 return s;
392}
393#endif /* ADB_HOST */
394
Josh Gao1ce99572018-03-07 16:52:28 -0800395static int remote_socket_enqueue(asocket* s, apacket::payload_type data) {
Josh Gao52bd8522016-05-17 16:55:06 -0700396 D("entered remote_socket_enqueue RS(%d) WRITE fd=%d peer.fd=%d", s->id, s->fd, s->peer->fd);
Josh Gao27cb7dc2018-02-01 13:17:50 -0800397 apacket* p = get_apacket();
398
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800399 p->msg.command = A_WRTE;
400 p->msg.arg0 = s->peer->id;
401 p->msg.arg1 = s->id;
Josh Gao27cb7dc2018-02-01 13:17:50 -0800402
Josh Gaof571fcb2018-02-05 18:49:10 -0800403 if (data.size() > MAX_PAYLOAD) {
Josh Gao27cb7dc2018-02-01 13:17:50 -0800404 put_apacket(p);
405 return -1;
406 }
407
Josh Gaof571fcb2018-02-05 18:49:10 -0800408 p->payload = std::move(data);
409 p->msg.data_length = p->payload.size();
410
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800411 send_packet(p, s->transport);
412 return 1;
413}
414
Josh Gao52bd8522016-05-17 16:55:06 -0700415static void remote_socket_ready(asocket* s) {
416 D("entered remote_socket_ready RS(%d) OKAY fd=%d peer.fd=%d", s->id, s->fd, s->peer->fd);
417 apacket* p = get_apacket();
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800418 p->msg.command = A_OKAY;
419 p->msg.arg0 = s->peer->id;
420 p->msg.arg1 = s->id;
421 send_packet(p, s->transport);
422}
423
Josh Gao52bd8522016-05-17 16:55:06 -0700424static void remote_socket_shutdown(asocket* s) {
425 D("entered remote_socket_shutdown RS(%d) CLOSE fd=%d peer->fd=%d", s->id, s->fd,
426 s->peer ? s->peer->fd : -1);
427 apacket* p = get_apacket();
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800428 p->msg.command = A_CLSE;
Josh Gao52bd8522016-05-17 16:55:06 -0700429 if (s->peer) {
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800430 p->msg.arg0 = s->peer->id;
David 'Digit' Turner818d6412013-12-13 14:09:44 +0100431 }
432 p->msg.arg1 = s->id;
433 send_packet(p, s->transport);
434}
435
Josh Gao52bd8522016-05-17 16:55:06 -0700436static void remote_socket_close(asocket* s) {
David 'Digit' Turner818d6412013-12-13 14:09:44 +0100437 if (s->peer) {
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800438 s->peer->peer = 0;
Josh Gao52bd8522016-05-17 16:55:06 -0700439 D("RS(%d) peer->close()ing peer->id=%d peer->fd=%d", s->id, s->peer->id, s->peer->fd);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800440 s->peer->close(s->peer);
441 }
Josh Gao52bd8522016-05-17 16:55:06 -0700442 D("entered remote_socket_close RS(%d) CLOSE fd=%d peer->fd=%d", s->id, s->fd,
443 s->peer ? s->peer->fd : -1);
Yabin Cui7a3f8d62015-09-02 17:44:28 -0700444 D("RS(%d): closed", s->id);
Josh Gaoe0361d12018-02-12 17:24:00 -0800445 delete s;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800446}
447
Yabin Cuifd28f322015-08-27 18:50:04 -0700448// Create a remote socket to exchange packets with a remote service through transport
449// |t|. Where |id| is the socket id of the corresponding service on the other
450// side of the transport (it is allocated by the remote side and _cannot_ be 0).
451// Returns a new non-NULL asocket handle.
Josh Gao52bd8522016-05-17 16:55:06 -0700452asocket* create_remote_socket(unsigned id, atransport* t) {
453 if (id == 0) {
454 fatal("invalid remote socket id (0)");
455 }
Josh Gaoe0361d12018-02-12 17:24:00 -0800456 asocket* s = new asocket();
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800457 s->id = id;
458 s->enqueue = remote_socket_enqueue;
459 s->ready = remote_socket_ready;
David 'Digit' Turner818d6412013-12-13 14:09:44 +0100460 s->shutdown = remote_socket_shutdown;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800461 s->close = remote_socket_close;
462 s->transport = t;
463
Yabin Cui7a3f8d62015-09-02 17:44:28 -0700464 D("RS(%d): created", s->id);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800465 return s;
466}
467
Josh Gao52bd8522016-05-17 16:55:06 -0700468void connect_to_remote(asocket* s, const char* destination) {
Yabin Cui7a3f8d62015-09-02 17:44:28 -0700469 D("Connect_to_remote call RS(%d) fd=%d", s->id, s->fd);
Josh Gao52bd8522016-05-17 16:55:06 -0700470 apacket* p = get_apacket();
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800471
Yabin Cui7a3f8d62015-09-02 17:44:28 -0700472 D("LS(%d): connect('%s')", s->id, destination);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800473 p->msg.command = A_OPEN;
474 p->msg.arg0 = s->id;
Josh Gaof571fcb2018-02-05 18:49:10 -0800475
476 // adbd expects a null-terminated string.
Josh Gao1ce99572018-03-07 16:52:28 -0800477 p->payload.assign(destination, destination + strlen(destination) + 1);
Josh Gaof571fcb2018-02-05 18:49:10 -0800478 p->msg.data_length = p->payload.size();
479
480 if (p->msg.data_length > s->get_max_payload()) {
481 fatal("destination oversized");
482 }
483
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800484 send_packet(p, s->transport);
485}
486
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800487/* this is used by magic sockets to rig local sockets to
488 send the go-ahead message when they connect */
Josh Gao52bd8522016-05-17 16:55:06 -0700489static void local_socket_ready_notify(asocket* s) {
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800490 s->ready = local_socket_ready;
David 'Digit' Turner818d6412013-12-13 14:09:44 +0100491 s->shutdown = NULL;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800492 s->close = local_socket_close;
Elliott Hughese67f1f82015-04-30 17:32:03 -0700493 SendOkay(s->fd);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800494 s->ready(s);
495}
496
497/* this is used by magic sockets to rig local sockets to
498 send the failure message if they are closed before
499 connected (to avoid closing them without a status message) */
Josh Gao52bd8522016-05-17 16:55:06 -0700500static void local_socket_close_notify(asocket* s) {
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800501 s->ready = local_socket_ready;
David 'Digit' Turner818d6412013-12-13 14:09:44 +0100502 s->shutdown = NULL;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800503 s->close = local_socket_close;
Elliott Hughese67f1f82015-04-30 17:32:03 -0700504 SendFail(s->fd, "closed");
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800505 s->close(s);
506}
507
Josh Gao27cb7dc2018-02-01 13:17:50 -0800508static unsigned unhex(const char* s, int len) {
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800509 unsigned n = 0, c;
510
Josh Gao52bd8522016-05-17 16:55:06 -0700511 while (len-- > 0) {
512 switch ((c = *s++)) {
513 case '0':
514 case '1':
515 case '2':
516 case '3':
517 case '4':
518 case '5':
519 case '6':
520 case '7':
521 case '8':
522 case '9':
523 c -= '0';
524 break;
525 case 'a':
526 case 'b':
527 case 'c':
528 case 'd':
529 case 'e':
530 case 'f':
531 c = c - 'a' + 10;
532 break;
533 case 'A':
534 case 'B':
535 case 'C':
536 case 'D':
537 case 'E':
538 case 'F':
539 c = c - 'A' + 10;
540 break;
541 default:
542 return 0xffffffff;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800543 }
544
545 n = (n << 4) | c;
546 }
547
548 return n;
549}
550
Elliott Hughese67f1f82015-04-30 17:32:03 -0700551#if ADB_HOST
552
David Pursell3f902aa2016-03-01 08:58:26 -0800553namespace internal {
Scott Anderson2ca3e6b2012-05-30 18:11:27 -0700554
David Pursell3f902aa2016-03-01 08:58:26 -0800555// Returns the position in |service| following the target serial parameter. Serial format can be
556// any of:
557// * [tcp:|udp:]<serial>[:<port>]:<command>
558// * <prefix>:<serial>:<command>
559// Where <port> must be a base-10 number and <prefix> may be any of {usb,product,model,device}.
560//
561// The returned pointer will point to the ':' just before <command>, or nullptr if not found.
Dan Austinb4cff492016-03-28 15:32:37 -0700562char* skip_host_serial(char* service) {
David Pursell3f902aa2016-03-01 08:58:26 -0800563 static const std::vector<std::string>& prefixes =
564 *(new std::vector<std::string>{"usb:", "product:", "model:", "device:"});
Terence Haddock28e13902011-03-16 09:43:56 +0100565
David Pursell3f902aa2016-03-01 08:58:26 -0800566 for (const std::string& prefix : prefixes) {
567 if (!strncmp(service, prefix.c_str(), prefix.length())) {
568 return strchr(service + prefix.length(), ':');
569 }
Scott Anderson3608d832012-05-31 12:04:23 -0700570 }
571
David Pursell3f902aa2016-03-01 08:58:26 -0800572 // For fastboot compatibility, ignore protocol prefixes.
573 if (!strncmp(service, "tcp:", 4) || !strncmp(service, "udp:", 4)) {
574 service += 4;
575 }
576
David Pursell73d55aa2016-09-21 12:08:37 -0700577 // Check for an IPv6 address. `adb connect` creates the serial number from the canonical
578 // network address so it will always have the [] delimiters.
579 if (service[0] == '[') {
580 char* ipv6_end = strchr(service, ']');
581 if (ipv6_end != nullptr) {
582 service = ipv6_end;
583 }
584 }
585
586 // The next colon we find must either begin the port field or the command field.
587 char* colon_ptr = strchr(service, ':');
588 if (!colon_ptr) {
David Pursell3f902aa2016-03-01 08:58:26 -0800589 // No colon in service string.
590 return nullptr;
Terence Haddock28e13902011-03-16 09:43:56 +0100591 }
David Pursell3f902aa2016-03-01 08:58:26 -0800592
David Pursell73d55aa2016-09-21 12:08:37 -0700593 // If the next field is only decimal digits and ends with another colon, it's a port.
594 char* serial_end = colon_ptr;
Terence Haddock28e13902011-03-16 09:43:56 +0100595 if (isdigit(serial_end[1])) {
596 serial_end++;
David Pursell3f902aa2016-03-01 08:58:26 -0800597 while (*serial_end && isdigit(*serial_end)) {
Terence Haddock28e13902011-03-16 09:43:56 +0100598 serial_end++;
599 }
David Pursell3f902aa2016-03-01 08:58:26 -0800600 if (*serial_end != ':') {
David Pursell73d55aa2016-09-21 12:08:37 -0700601 // Something other than "<port>:" was found, this must be the command field instead.
602 serial_end = colon_ptr;
Terence Haddock28e13902011-03-16 09:43:56 +0100603 }
604 }
605 return serial_end;
606}
607
David Pursell3f902aa2016-03-01 08:58:26 -0800608} // namespace internal
609
Josh Gao52bd8522016-05-17 16:55:06 -0700610#endif // ADB_HOST
Elliott Hughese67f1f82015-04-30 17:32:03 -0700611
Josh Gao1ce99572018-03-07 16:52:28 -0800612static int smart_socket_enqueue(asocket* s, apacket::payload_type data) {
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800613#if ADB_HOST
Josh Gao52bd8522016-05-17 16:55:06 -0700614 char* service = nullptr;
Elliott Hughes8d28e192015-10-07 14:55:10 -0700615 char* serial = nullptr;
Josh Gaob122b172017-08-16 16:57:01 -0700616 TransportId transport_id = 0;
Elliott Hughes3bd73c12015-05-05 13:10:43 -0700617 TransportType type = kTransportAny;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800618#endif
619
Josh Gao27cb7dc2018-02-01 13:17:50 -0800620 D("SS(%d): enqueue %zu", s->id, data.size());
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800621
Josh Gao27cb7dc2018-02-01 13:17:50 -0800622 if (s->smart_socket_data.empty()) {
Josh Gao7c738cd2018-04-03 14:37:11 -0700623 // TODO: Make this an IOVector?
Josh Gao1ce99572018-03-07 16:52:28 -0800624 s->smart_socket_data.assign(data.begin(), data.end());
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800625 } else {
Josh Gao27cb7dc2018-02-01 13:17:50 -0800626 std::copy(data.begin(), data.end(), std::back_inserter(s->smart_socket_data));
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800627 }
628
Josh Gao7e6683c2016-01-15 14:35:54 -0800629 /* don't bother if we can't decode the length */
Josh Gao27cb7dc2018-02-01 13:17:50 -0800630 if (s->smart_socket_data.size() < 4) {
Josh Gao52bd8522016-05-17 16:55:06 -0700631 return 0;
632 }
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800633
Josh Gao27cb7dc2018-02-01 13:17:50 -0800634 uint32_t len = unhex(s->smart_socket_data.data(), 4);
635 if (len == 0 || len > MAX_PAYLOAD) {
636 D("SS(%d): bad size (%u)", s->id, len);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800637 goto fail;
638 }
639
Josh Gao27cb7dc2018-02-01 13:17:50 -0800640 D("SS(%d): len is %u", s->id, len);
Josh Gao7e6683c2016-01-15 14:35:54 -0800641 /* can't do anything until we have the full header */
Josh Gao27cb7dc2018-02-01 13:17:50 -0800642 if ((len + 4) > s->smart_socket_data.size()) {
643 D("SS(%d): waiting for %zu more bytes", s->id, len + 4 - s->smart_socket_data.size());
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800644 return 0;
645 }
646
Josh Gao27cb7dc2018-02-01 13:17:50 -0800647 s->smart_socket_data[len + 4] = 0;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800648
Josh Gao27cb7dc2018-02-01 13:17:50 -0800649 D("SS(%d): '%s'", s->id, (char*)(s->smart_socket_data.data() + 4));
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800650
651#if ADB_HOST
Josh Gao27cb7dc2018-02-01 13:17:50 -0800652 service = &s->smart_socket_data[4];
Josh Gao52bd8522016-05-17 16:55:06 -0700653 if (!strncmp(service, "host-serial:", strlen("host-serial:"))) {
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800654 char* serial_end;
655 service += strlen("host-serial:");
656
Terence Haddock28e13902011-03-16 09:43:56 +0100657 // serial number should follow "host:" and could be a host:port string.
David Pursell3f902aa2016-03-01 08:58:26 -0800658 serial_end = internal::skip_host_serial(service);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800659 if (serial_end) {
Josh Gao52bd8522016-05-17 16:55:06 -0700660 *serial_end = 0; // terminate string
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800661 serial = service;
662 service = serial_end + 1;
663 }
Josh Gaob122b172017-08-16 16:57:01 -0700664 } else if (!strncmp(service, "host-transport-id:", strlen("host-transport-id:"))) {
665 service += strlen("host-transport-id:");
666 transport_id = strtoll(service, &service, 10);
667
668 if (*service != ':') {
669 return -1;
670 }
671 service++;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800672 } else if (!strncmp(service, "host-usb:", strlen("host-usb:"))) {
Elliott Hughes3bd73c12015-05-05 13:10:43 -0700673 type = kTransportUsb;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800674 service += strlen("host-usb:");
675 } else if (!strncmp(service, "host-local:", strlen("host-local:"))) {
Elliott Hughes3bd73c12015-05-05 13:10:43 -0700676 type = kTransportLocal;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800677 service += strlen("host-local:");
678 } else if (!strncmp(service, "host:", strlen("host:"))) {
Elliott Hughes3bd73c12015-05-05 13:10:43 -0700679 type = kTransportAny;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800680 service += strlen("host:");
681 } else {
Elliott Hughes8d28e192015-10-07 14:55:10 -0700682 service = nullptr;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800683 }
684
685 if (service) {
Josh Gao52bd8522016-05-17 16:55:06 -0700686 asocket* s2;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800687
Josh Gao52bd8522016-05-17 16:55:06 -0700688 /* some requests are handled immediately -- in that
689 ** case the handle_host_request() routine has sent
690 ** the OKAY or FAIL message and all we have to do
691 ** is clean up.
692 */
Josh Gaob122b172017-08-16 16:57:01 -0700693 if (handle_host_request(service, type, serial, transport_id, s->peer->fd, s) == 0) {
Josh Gao52bd8522016-05-17 16:55:06 -0700694 /* XXX fail message? */
695 D("SS(%d): handled host service '%s'", s->id, service);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800696 goto fail;
697 }
698 if (!strncmp(service, "transport", strlen("transport"))) {
Josh Gao52bd8522016-05-17 16:55:06 -0700699 D("SS(%d): okay transport", s->id);
Josh Gao27cb7dc2018-02-01 13:17:50 -0800700 s->smart_socket_data.clear();
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800701 return 0;
702 }
703
Josh Gao52bd8522016-05-17 16:55:06 -0700704 /* try to find a local service with this name.
705 ** if no such service exists, we'll fail out
706 ** and tear down here.
707 */
Josh Gaob122b172017-08-16 16:57:01 -0700708 s2 = create_host_service_socket(service, serial, transport_id);
Josh Gao52bd8522016-05-17 16:55:06 -0700709 if (s2 == 0) {
710 D("SS(%d): couldn't create host service '%s'", s->id, service);
Elliott Hughese67f1f82015-04-30 17:32:03 -0700711 SendFail(s->peer->fd, "unknown host service");
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800712 goto fail;
713 }
714
Josh Gao52bd8522016-05-17 16:55:06 -0700715 /* we've connected to a local host service,
716 ** so we make our peer back into a regular
717 ** local socket and bind it to the new local
718 ** service socket, acknowledge the successful
719 ** connection, and close this smart socket now
720 ** that its work is done.
721 */
Elliott Hughese67f1f82015-04-30 17:32:03 -0700722 SendOkay(s->peer->fd);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800723
724 s->peer->ready = local_socket_ready;
Elliott Hughes8d28e192015-10-07 14:55:10 -0700725 s->peer->shutdown = nullptr;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800726 s->peer->close = local_socket_close;
727 s->peer->peer = s2;
728 s2->peer = s->peer;
729 s->peer = 0;
Josh Gao52bd8522016-05-17 16:55:06 -0700730 D("SS(%d): okay", s->id);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800731 s->close(s);
732
Josh Gao52bd8522016-05-17 16:55:06 -0700733 /* initial state is "ready" */
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800734 s2->ready(s2);
735 return 0;
736 }
737#else /* !ADB_HOST */
Elliott Hughes8d28e192015-10-07 14:55:10 -0700738 if (s->transport == nullptr) {
Elliott Hughes7be29c82015-04-16 22:54:44 -0700739 std::string error_msg = "unknown failure";
Josh Gaob122b172017-08-16 16:57:01 -0700740 s->transport = acquire_one_transport(kTransportAny, nullptr, 0, nullptr, &error_msg);
Elliott Hughes8d28e192015-10-07 14:55:10 -0700741 if (s->transport == nullptr) {
Elliott Hughese67f1f82015-04-30 17:32:03 -0700742 SendFail(s->peer->fd, error_msg);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800743 goto fail;
744 }
745 }
746#endif
747
Josh Gao22d2b3e2016-10-27 14:01:08 -0700748 if (!s->transport) {
749 SendFail(s->peer->fd, "device offline (no transport)");
750 goto fail;
Josh Gao704494b2018-05-04 16:04:49 -0700751 } else if (!ConnectionStateIsOnline(s->transport->GetConnectionState())) {
Josh Gao52bd8522016-05-17 16:55:06 -0700752 /* if there's no remote we fail the connection
753 ** right here and terminate it
754 */
Josh Gao22d2b3e2016-10-27 14:01:08 -0700755 SendFail(s->peer->fd, "device offline (transport offline)");
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800756 goto fail;
757 }
758
Josh Gao52bd8522016-05-17 16:55:06 -0700759 /* instrument our peer to pass the success or fail
760 ** message back once it connects or closes, then
761 ** detach from it, request the connection, and
762 ** tear down
763 */
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800764 s->peer->ready = local_socket_ready_notify;
Elliott Hughes8d28e192015-10-07 14:55:10 -0700765 s->peer->shutdown = nullptr;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800766 s->peer->close = local_socket_close_notify;
767 s->peer->peer = 0;
Josh Gao52bd8522016-05-17 16:55:06 -0700768 /* give him our transport and upref it */
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800769 s->peer->transport = s->transport;
770
Josh Gao27cb7dc2018-02-01 13:17:50 -0800771 connect_to_remote(s->peer, s->smart_socket_data.data() + 4);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800772 s->peer = 0;
773 s->close(s);
774 return 1;
775
776fail:
Josh Gao52bd8522016-05-17 16:55:06 -0700777 /* we're going to close our peer as a side-effect, so
778 ** return -1 to signal that state to the local socket
779 ** who is enqueueing against us
780 */
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800781 s->close(s);
782 return -1;
783}
784
Josh Gao52bd8522016-05-17 16:55:06 -0700785static void smart_socket_ready(asocket* s) {
Yabin Cui7a3f8d62015-09-02 17:44:28 -0700786 D("SS(%d): ready", s->id);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800787}
788
Josh Gao52bd8522016-05-17 16:55:06 -0700789static void smart_socket_close(asocket* s) {
Yabin Cui7a3f8d62015-09-02 17:44:28 -0700790 D("SS(%d): closed", s->id);
Josh Gao52bd8522016-05-17 16:55:06 -0700791 if (s->peer) {
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800792 s->peer->peer = 0;
793 s->peer->close(s->peer);
Tom Marlin49f18572011-05-13 13:24:55 -0500794 s->peer = 0;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800795 }
Josh Gaoe0361d12018-02-12 17:24:00 -0800796 delete s;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800797}
798
Josh Gao52bd8522016-05-17 16:55:06 -0700799static asocket* create_smart_socket(void) {
Yabin Cui7a3f8d62015-09-02 17:44:28 -0700800 D("Creating smart socket");
Josh Gaoe0361d12018-02-12 17:24:00 -0800801 asocket* s = new asocket();
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800802 s->enqueue = smart_socket_enqueue;
803 s->ready = smart_socket_ready;
David 'Digit' Turner818d6412013-12-13 14:09:44 +0100804 s->shutdown = NULL;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800805 s->close = smart_socket_close;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800806
Yabin Cui7a3f8d62015-09-02 17:44:28 -0700807 D("SS(%d)", s->id);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800808 return s;
809}
810
Josh Gao52bd8522016-05-17 16:55:06 -0700811void connect_to_smartsocket(asocket* s) {
Yabin Cui7a3f8d62015-09-02 17:44:28 -0700812 D("Connecting to smart socket");
Josh Gao52bd8522016-05-17 16:55:06 -0700813 asocket* ss = create_smart_socket();
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800814 s->peer = ss;
815 ss->peer = s;
816 s->ready(s);
817}
Tamas Berghammer3d2904c2015-07-13 19:12:28 +0100818
819size_t asocket::get_max_payload() const {
820 size_t max_payload = MAX_PAYLOAD;
821 if (transport) {
822 max_payload = std::min(max_payload, transport->get_max_payload());
823 }
824 if (peer && peer->transport) {
825 max_payload = std::min(max_payload, peer->transport->get_max_payload());
826 }
827 return max_payload;
828}