blob: 04bd0804efe65c4d2bd8c9ac1e1a8b2ab12c3400 [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"
Josh Gao27cb7dc2018-02-01 13:17:50 -080040#include "range.h"
Dan Albert76649012015-02-24 15:51:19 -080041#include "transport.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 Gao7c87b072018-03-19 13:20:29 -0700109enum class SocketFlushResult {
110 Destroyed,
111 TryAgain,
112 Completed,
113};
114
115static SocketFlushResult local_socket_flush_incoming(asocket* s) {
116 while (!s->packet_queue.empty()) {
117 Range& r = s->packet_queue.front();
118
119 int rc = adb_write(s->fd, r.data(), r.size());
120 if (rc == static_cast<int>(r.size())) {
121 s->packet_queue.pop_front();
122 } else if (rc > 0) {
123 r.drop_front(rc);
124 fdevent_add(&s->fde, FDE_WRITE);
125 return SocketFlushResult::TryAgain;
126 } else if (rc == -1 && errno == EAGAIN) {
127 fdevent_add(&s->fde, FDE_WRITE);
128 return SocketFlushResult::TryAgain;
129 }
130
131 // We failed to write, but it's possible that we can still read from the socket.
132 // Give that a try before giving up.
133 s->has_write_error = true;
134 break;
135 }
136
137 // If we sent the last packet of a closing socket, we can now destroy it.
138 if (s->closing) {
139 s->close(s);
140 return SocketFlushResult::Destroyed;
141 }
142
143 fdevent_del(&s->fde, FDE_WRITE);
144 return SocketFlushResult::Completed;
145}
146
147// Returns false if the socket has been closed and destroyed as a side-effect of this function.
148static bool local_socket_flush_outgoing(asocket* s) {
149 const size_t max_payload = s->get_max_payload();
150 std::string data;
151 data.resize(max_payload);
152 char* x = &data[0];
153 size_t avail = max_payload;
154 int r = 0;
155 int is_eof = 0;
156
157 while (avail > 0) {
158 r = adb_read(s->fd, x, avail);
159 D("LS(%d): post adb_read(fd=%d,...) r=%d (errno=%d) avail=%zu", s->id, s->fd, r,
160 r < 0 ? errno : 0, avail);
161 if (r == -1) {
162 if (errno == EAGAIN) {
163 break;
164 }
165 } else if (r > 0) {
166 avail -= r;
167 x += r;
168 continue;
169 }
170
171 /* r = 0 or unhandled error */
172 is_eof = 1;
173 break;
174 }
175 D("LS(%d): fd=%d post avail loop. r=%d is_eof=%d forced_eof=%d", s->id, s->fd, r, is_eof,
176 s->fde.force_eof);
177
178 if (avail != max_payload && s->peer) {
179 data.resize(max_payload - avail);
180
181 // s->peer->enqueue() may call s->close() and free s,
182 // so save variables for debug printing below.
183 unsigned saved_id = s->id;
184 int saved_fd = s->fd;
185 r = s->peer->enqueue(s->peer, std::move(data));
186 D("LS(%u): fd=%d post peer->enqueue(). r=%d", saved_id, saved_fd, r);
187
188 if (r < 0) {
189 // Error return means they closed us as a side-effect and we must
190 // return immediately.
191 //
192 // Note that if we still have buffered packets, the socket will be
193 // placed on the closing socket list. This handler function will be
194 // called again to process FDE_WRITE events.
195 return false;
196 }
197
198 if (r > 0) {
199 /* if the remote cannot accept further events,
200 ** we disable notification of READs. They'll
201 ** be enabled again when we get a call to ready()
202 */
203 fdevent_del(&s->fde, FDE_READ);
204 }
205 }
206
207 // Don't allow a forced eof if data is still there.
208 if ((s->fde.force_eof && !r) || is_eof) {
209 D(" closing because is_eof=%d r=%d s->fde.force_eof=%d", is_eof, r, s->fde.force_eof);
210 s->close(s);
211 return false;
212 }
213
214 return true;
215}
216
Josh Gao27cb7dc2018-02-01 13:17:50 -0800217static int local_socket_enqueue(asocket* s, std::string data) {
218 D("LS(%d): enqueue %zu", s->id, data.size());
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800219
Josh Gao27cb7dc2018-02-01 13:17:50 -0800220 Range r(std::move(data));
Josh Gao27cb7dc2018-02-01 13:17:50 -0800221 s->packet_queue.push_back(std::move(r));
Josh Gao7c87b072018-03-19 13:20:29 -0700222 switch (local_socket_flush_incoming(s)) {
223 case SocketFlushResult::Destroyed:
224 return -1;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800225
Josh Gao7c87b072018-03-19 13:20:29 -0700226 case SocketFlushResult::TryAgain:
227 return 1;
228
229 case SocketFlushResult::Completed:
230 return 0;
231 }
232
233 return !s->packet_queue.empty();
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800234}
235
Josh Gao52bd8522016-05-17 16:55:06 -0700236static void local_socket_ready(asocket* s) {
Nanik Tolaramb627a0e2015-02-18 22:53:37 +1100237 /* far side is ready for data, pay attention to
238 readable events */
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800239 fdevent_add(&s->fde, FDE_READ);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800240}
241
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800242// be sure to hold the socket list lock when calling this
Josh Gao52bd8522016-05-17 16:55:06 -0700243static void local_socket_destroy(asocket* s) {
Benoit Gobyf366b362012-03-16 14:50:07 -0700244 int exit_on_close = s->exit_on_close;
245
Yabin Cui7a3f8d62015-09-02 17:44:28 -0700246 D("LS(%d): destroying fde.fd=%d", s->id, s->fde.fd);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800247
Josh Gao52bd8522016-05-17 16:55:06 -0700248 /* IMPORTANT: the remove closes the fd
249 ** that belongs to this socket
250 */
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800251 fdevent_remove(&s->fde);
252
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800253 remove_socket(s);
Josh Gaoe0361d12018-02-12 17:24:00 -0800254 delete s;
Benoit Gobyf366b362012-03-16 14:50:07 -0700255
256 if (exit_on_close) {
Yabin Cui7a3f8d62015-09-02 17:44:28 -0700257 D("local_socket_destroy: exiting");
Benoit Gobyf366b362012-03-16 14:50:07 -0700258 exit(1);
259 }
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800260}
261
Josh Gao9b587de2016-05-17 17:46:27 -0700262static void local_socket_close(asocket* s) {
263 D("entered local_socket_close. LS(%d) fd=%d", s->id, s->fd);
264 std::lock_guard<std::recursive_mutex> lock(local_socket_list_lock);
Josh Gao52bd8522016-05-17 16:55:06 -0700265 if (s->peer) {
266 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 +0100267 /* Note: it's important to call shutdown before disconnecting from
268 * the peer, this ensures that remote sockets can still get the id
269 * of the local socket they're connected to, to send a CLOSE()
270 * protocol event. */
Josh Gao52bd8522016-05-17 16:55:06 -0700271 if (s->peer->shutdown) {
272 s->peer->shutdown(s->peer);
273 }
Josh Gao9b587de2016-05-17 17:46:27 -0700274 s->peer->peer = nullptr;
275 s->peer->close(s->peer);
276 s->peer = nullptr;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800277 }
278
Josh Gao52bd8522016-05-17 16:55:06 -0700279 /* If we are already closing, or if there are no
280 ** pending packets, destroy immediately
281 */
Josh Gao27cb7dc2018-02-01 13:17:50 -0800282 if (s->closing || s->has_write_error || s->packet_queue.empty()) {
Josh Gao52bd8522016-05-17 16:55:06 -0700283 int id = s->id;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800284 local_socket_destroy(s);
Yabin Cui7a3f8d62015-09-02 17:44:28 -0700285 D("LS(%d): closed", id);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800286 return;
287 }
288
Josh Gao52bd8522016-05-17 16:55:06 -0700289 /* otherwise, put on the closing list
290 */
Yabin Cui7a3f8d62015-09-02 17:44:28 -0700291 D("LS(%d): closing", s->id);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800292 s->closing = 1;
293 fdevent_del(&s->fde, FDE_READ);
294 remove_socket(s);
Yabin Cui7a3f8d62015-09-02 17:44:28 -0700295 D("LS(%d): put on socket_closing_list fd=%d", s->id, s->fd);
Josh Gao5e507642018-01-31 13:15:51 -0800296 local_socket_closing_list.push_back(s);
Yabin Cuic1b1f6f2015-09-15 16:27:09 -0700297 CHECK_EQ(FDE_WRITE, s->fde.state & FDE_WRITE);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800298}
299
Josh Gao52bd8522016-05-17 16:55:06 -0700300static void local_socket_event_func(int fd, unsigned ev, void* _s) {
Dan Albertbac34742015-02-25 17:51:28 -0800301 asocket* s = reinterpret_cast<asocket*>(_s);
Yabin Cui7a3f8d62015-09-02 17:44:28 -0700302 D("LS(%d): event_func(fd=%d(==%d), ev=%04x)", s->id, s->fd, fd, ev);
JP Abgrall408fa572011-03-16 15:57:42 -0700303
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800304 /* put the FDE_WRITE processing before the FDE_READ
305 ** in order to simplify the code.
306 */
Dan Albertbac34742015-02-25 17:51:28 -0800307 if (ev & FDE_WRITE) {
Josh Gao7c87b072018-03-19 13:20:29 -0700308 switch (local_socket_flush_incoming(s)) {
309 case SocketFlushResult::Destroyed:
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800310 return;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800311
Josh Gao7c87b072018-03-19 13:20:29 -0700312 case SocketFlushResult::TryAgain:
313 break;
314
315 case SocketFlushResult::Completed:
316 s->peer->ready(s->peer);
317 break;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800318 }
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800319 }
320
Dan Albertbac34742015-02-25 17:51:28 -0800321 if (ev & FDE_READ) {
Josh Gao7c87b072018-03-19 13:20:29 -0700322 if (!local_socket_flush_outgoing(s)) {
Yabin Cuic1b1f6f2015-09-15 16:27:09 -0700323 return;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800324 }
325 }
326
Josh Gao52bd8522016-05-17 16:55:06 -0700327 if (ev & FDE_ERROR) {
328 /* this should be caught be the next read or write
329 ** catching it here means we may skip the last few
330 ** bytes of readable data.
331 */
Yabin Cui7a3f8d62015-09-02 17:44:28 -0700332 D("LS(%d): FDE_ERROR (fd=%d)", s->id, s->fd);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800333 return;
334 }
335}
336
Josh Gao52bd8522016-05-17 16:55:06 -0700337asocket* create_local_socket(int fd) {
Josh Gaoe0361d12018-02-12 17:24:00 -0800338 asocket* s = new asocket();
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800339 s->fd = fd;
340 s->enqueue = local_socket_enqueue;
341 s->ready = local_socket_ready;
David 'Digit' Turner818d6412013-12-13 14:09:44 +0100342 s->shutdown = NULL;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800343 s->close = local_socket_close;
JP Abgrall408fa572011-03-16 15:57:42 -0700344 install_local_socket(s);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800345
346 fdevent_install(&s->fde, fd, local_socket_event_func, s);
Yabin Cui7a3f8d62015-09-02 17:44:28 -0700347 D("LS(%d): created (fd=%d)", s->id, s->fd);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800348 return s;
349}
350
Josh Gaoa98aab22018-04-13 12:17:03 -0700351asocket* create_local_service_socket(const char* name, atransport* transport) {
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800352#if !ADB_HOST
Josh Gao52bd8522016-05-17 16:55:06 -0700353 if (!strcmp(name, "jdwp")) {
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800354 return create_jdwp_service_socket();
355 }
Josh Gao52bd8522016-05-17 16:55:06 -0700356 if (!strcmp(name, "track-jdwp")) {
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800357 return create_jdwp_tracker_service_socket();
358 }
359#endif
David Pursell0955c662015-08-31 10:42:13 -0700360 int fd = service_to_fd(name, transport);
Josh Gao52bd8522016-05-17 16:55:06 -0700361 if (fd < 0) {
Elliott Hughesffc73a32016-06-15 14:46:56 -0700362 return nullptr;
Josh Gao52bd8522016-05-17 16:55:06 -0700363 }
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800364
Dan Pasanen98858812014-10-06 12:57:20 -0500365 asocket* s = create_local_socket(fd);
Yabin Cui7a3f8d62015-09-02 17:44:28 -0700366 D("LS(%d): bound to '%s' via %d", s->id, name, fd);
Benoit Gobyf366b362012-03-16 14:50:07 -0700367
JP Abgrallf91259a2012-03-30 13:19:11 -0700368#if !ADB_HOST
Mark Salyzyn97787a02016-03-28 15:52:13 -0700369 if ((!strncmp(name, "root:", 5) && getuid() != 0 && __android_log_is_debuggable()) ||
Josh Gao52bd8522016-05-17 16:55:06 -0700370 (!strncmp(name, "unroot:", 7) && getuid() == 0) ||
371 !strncmp(name, "usb:", 4) ||
372 !strncmp(name, "tcpip:", 6)) {
Yabin Cui7a3f8d62015-09-02 17:44:28 -0700373 D("LS(%d): enabling exit_on_close", s->id);
Benoit Gobyf366b362012-03-16 14:50:07 -0700374 s->exit_on_close = 1;
375 }
JP Abgrallf91259a2012-03-30 13:19:11 -0700376#endif
Benoit Gobyf366b362012-03-16 14:50:07 -0700377
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800378 return s;
379}
380
381#if ADB_HOST
Josh Gaob122b172017-08-16 16:57:01 -0700382static asocket* create_host_service_socket(const char* name, const char* serial,
383 TransportId transport_id) {
Josh Gao52bd8522016-05-17 16:55:06 -0700384 asocket* s;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800385
Josh Gaob122b172017-08-16 16:57:01 -0700386 s = host_service_to_socket(name, serial, transport_id);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800387
388 if (s != NULL) {
Yabin Cui7a3f8d62015-09-02 17:44:28 -0700389 D("LS(%d) bound to '%s'", s->id, name);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800390 return s;
391 }
392
393 return s;
394}
395#endif /* ADB_HOST */
396
Josh Gao27cb7dc2018-02-01 13:17:50 -0800397static int remote_socket_enqueue(asocket* s, std::string data) {
Josh Gao52bd8522016-05-17 16:55:06 -0700398 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 -0800399 apacket* p = get_apacket();
400
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800401 p->msg.command = A_WRTE;
402 p->msg.arg0 = s->peer->id;
403 p->msg.arg1 = s->id;
Josh Gao27cb7dc2018-02-01 13:17:50 -0800404
Josh Gaof571fcb2018-02-05 18:49:10 -0800405 if (data.size() > MAX_PAYLOAD) {
Josh Gao27cb7dc2018-02-01 13:17:50 -0800406 put_apacket(p);
407 return -1;
408 }
409
Josh Gaof571fcb2018-02-05 18:49:10 -0800410 p->payload = std::move(data);
411 p->msg.data_length = p->payload.size();
412
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800413 send_packet(p, s->transport);
414 return 1;
415}
416
Josh Gao52bd8522016-05-17 16:55:06 -0700417static void remote_socket_ready(asocket* s) {
418 D("entered remote_socket_ready RS(%d) OKAY fd=%d peer.fd=%d", s->id, s->fd, s->peer->fd);
419 apacket* p = get_apacket();
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800420 p->msg.command = A_OKAY;
421 p->msg.arg0 = s->peer->id;
422 p->msg.arg1 = s->id;
423 send_packet(p, s->transport);
424}
425
Josh Gao52bd8522016-05-17 16:55:06 -0700426static void remote_socket_shutdown(asocket* s) {
427 D("entered remote_socket_shutdown RS(%d) CLOSE fd=%d peer->fd=%d", s->id, s->fd,
428 s->peer ? s->peer->fd : -1);
429 apacket* p = get_apacket();
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800430 p->msg.command = A_CLSE;
Josh Gao52bd8522016-05-17 16:55:06 -0700431 if (s->peer) {
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800432 p->msg.arg0 = s->peer->id;
David 'Digit' Turner818d6412013-12-13 14:09:44 +0100433 }
434 p->msg.arg1 = s->id;
435 send_packet(p, s->transport);
436}
437
Josh Gao52bd8522016-05-17 16:55:06 -0700438static void remote_socket_close(asocket* s) {
David 'Digit' Turner818d6412013-12-13 14:09:44 +0100439 if (s->peer) {
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800440 s->peer->peer = 0;
Josh Gao52bd8522016-05-17 16:55:06 -0700441 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 -0800442 s->peer->close(s->peer);
443 }
Josh Gao52bd8522016-05-17 16:55:06 -0700444 D("entered remote_socket_close RS(%d) CLOSE fd=%d peer->fd=%d", s->id, s->fd,
445 s->peer ? s->peer->fd : -1);
Yabin Cui7a3f8d62015-09-02 17:44:28 -0700446 D("RS(%d): closed", s->id);
Josh Gaoe0361d12018-02-12 17:24:00 -0800447 delete s;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800448}
449
Yabin Cuifd28f322015-08-27 18:50:04 -0700450// Create a remote socket to exchange packets with a remote service through transport
451// |t|. Where |id| is the socket id of the corresponding service on the other
452// side of the transport (it is allocated by the remote side and _cannot_ be 0).
453// Returns a new non-NULL asocket handle.
Josh Gao52bd8522016-05-17 16:55:06 -0700454asocket* create_remote_socket(unsigned id, atransport* t) {
455 if (id == 0) {
456 fatal("invalid remote socket id (0)");
457 }
Josh Gaoe0361d12018-02-12 17:24:00 -0800458 asocket* s = new asocket();
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800459 s->id = id;
460 s->enqueue = remote_socket_enqueue;
461 s->ready = remote_socket_ready;
David 'Digit' Turner818d6412013-12-13 14:09:44 +0100462 s->shutdown = remote_socket_shutdown;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800463 s->close = remote_socket_close;
464 s->transport = t;
465
Yabin Cui7a3f8d62015-09-02 17:44:28 -0700466 D("RS(%d): created", s->id);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800467 return s;
468}
469
Josh Gao52bd8522016-05-17 16:55:06 -0700470void connect_to_remote(asocket* s, const char* destination) {
Yabin Cui7a3f8d62015-09-02 17:44:28 -0700471 D("Connect_to_remote call RS(%d) fd=%d", s->id, s->fd);
Josh Gao52bd8522016-05-17 16:55:06 -0700472 apacket* p = get_apacket();
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800473
Yabin Cui7a3f8d62015-09-02 17:44:28 -0700474 D("LS(%d): connect('%s')", s->id, destination);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800475 p->msg.command = A_OPEN;
476 p->msg.arg0 = s->id;
Josh Gaof571fcb2018-02-05 18:49:10 -0800477
478 // adbd expects a null-terminated string.
479 p->payload = destination;
480 p->payload.push_back('\0');
481 p->msg.data_length = p->payload.size();
482
483 if (p->msg.data_length > s->get_max_payload()) {
484 fatal("destination oversized");
485 }
486
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800487 send_packet(p, s->transport);
488}
489
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800490/* this is used by magic sockets to rig local sockets to
491 send the go-ahead message when they connect */
Josh Gao52bd8522016-05-17 16:55:06 -0700492static void local_socket_ready_notify(asocket* s) {
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800493 s->ready = local_socket_ready;
David 'Digit' Turner818d6412013-12-13 14:09:44 +0100494 s->shutdown = NULL;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800495 s->close = local_socket_close;
Elliott Hughese67f1f82015-04-30 17:32:03 -0700496 SendOkay(s->fd);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800497 s->ready(s);
498}
499
500/* this is used by magic sockets to rig local sockets to
501 send the failure message if they are closed before
502 connected (to avoid closing them without a status message) */
Josh Gao52bd8522016-05-17 16:55:06 -0700503static void local_socket_close_notify(asocket* s) {
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800504 s->ready = local_socket_ready;
David 'Digit' Turner818d6412013-12-13 14:09:44 +0100505 s->shutdown = NULL;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800506 s->close = local_socket_close;
Elliott Hughese67f1f82015-04-30 17:32:03 -0700507 SendFail(s->fd, "closed");
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800508 s->close(s);
509}
510
Josh Gao27cb7dc2018-02-01 13:17:50 -0800511static unsigned unhex(const char* s, int len) {
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800512 unsigned n = 0, c;
513
Josh Gao52bd8522016-05-17 16:55:06 -0700514 while (len-- > 0) {
515 switch ((c = *s++)) {
516 case '0':
517 case '1':
518 case '2':
519 case '3':
520 case '4':
521 case '5':
522 case '6':
523 case '7':
524 case '8':
525 case '9':
526 c -= '0';
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 case 'A':
537 case 'B':
538 case 'C':
539 case 'D':
540 case 'E':
541 case 'F':
542 c = c - 'A' + 10;
543 break;
544 default:
545 return 0xffffffff;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800546 }
547
548 n = (n << 4) | c;
549 }
550
551 return n;
552}
553
Elliott Hughese67f1f82015-04-30 17:32:03 -0700554#if ADB_HOST
555
David Pursell3f902aa2016-03-01 08:58:26 -0800556namespace internal {
Scott Anderson2ca3e6b2012-05-30 18:11:27 -0700557
David Pursell3f902aa2016-03-01 08:58:26 -0800558// Returns the position in |service| following the target serial parameter. Serial format can be
559// any of:
560// * [tcp:|udp:]<serial>[:<port>]:<command>
561// * <prefix>:<serial>:<command>
562// Where <port> must be a base-10 number and <prefix> may be any of {usb,product,model,device}.
563//
564// The returned pointer will point to the ':' just before <command>, or nullptr if not found.
Dan Austinb4cff492016-03-28 15:32:37 -0700565char* skip_host_serial(char* service) {
David Pursell3f902aa2016-03-01 08:58:26 -0800566 static const std::vector<std::string>& prefixes =
567 *(new std::vector<std::string>{"usb:", "product:", "model:", "device:"});
Terence Haddock28e13902011-03-16 09:43:56 +0100568
David Pursell3f902aa2016-03-01 08:58:26 -0800569 for (const std::string& prefix : prefixes) {
570 if (!strncmp(service, prefix.c_str(), prefix.length())) {
571 return strchr(service + prefix.length(), ':');
572 }
Scott Anderson3608d832012-05-31 12:04:23 -0700573 }
574
David Pursell3f902aa2016-03-01 08:58:26 -0800575 // For fastboot compatibility, ignore protocol prefixes.
576 if (!strncmp(service, "tcp:", 4) || !strncmp(service, "udp:", 4)) {
577 service += 4;
578 }
579
David Pursell73d55aa2016-09-21 12:08:37 -0700580 // Check for an IPv6 address. `adb connect` creates the serial number from the canonical
581 // network address so it will always have the [] delimiters.
582 if (service[0] == '[') {
583 char* ipv6_end = strchr(service, ']');
584 if (ipv6_end != nullptr) {
585 service = ipv6_end;
586 }
587 }
588
589 // The next colon we find must either begin the port field or the command field.
590 char* colon_ptr = strchr(service, ':');
591 if (!colon_ptr) {
David Pursell3f902aa2016-03-01 08:58:26 -0800592 // No colon in service string.
593 return nullptr;
Terence Haddock28e13902011-03-16 09:43:56 +0100594 }
David Pursell3f902aa2016-03-01 08:58:26 -0800595
David Pursell73d55aa2016-09-21 12:08:37 -0700596 // If the next field is only decimal digits and ends with another colon, it's a port.
597 char* serial_end = colon_ptr;
Terence Haddock28e13902011-03-16 09:43:56 +0100598 if (isdigit(serial_end[1])) {
599 serial_end++;
David Pursell3f902aa2016-03-01 08:58:26 -0800600 while (*serial_end && isdigit(*serial_end)) {
Terence Haddock28e13902011-03-16 09:43:56 +0100601 serial_end++;
602 }
David Pursell3f902aa2016-03-01 08:58:26 -0800603 if (*serial_end != ':') {
David Pursell73d55aa2016-09-21 12:08:37 -0700604 // Something other than "<port>:" was found, this must be the command field instead.
605 serial_end = colon_ptr;
Terence Haddock28e13902011-03-16 09:43:56 +0100606 }
607 }
608 return serial_end;
609}
610
David Pursell3f902aa2016-03-01 08:58:26 -0800611} // namespace internal
612
Josh Gao52bd8522016-05-17 16:55:06 -0700613#endif // ADB_HOST
Elliott Hughese67f1f82015-04-30 17:32:03 -0700614
Josh Gao27cb7dc2018-02-01 13:17:50 -0800615static int smart_socket_enqueue(asocket* s, std::string data) {
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800616#if ADB_HOST
Josh Gao52bd8522016-05-17 16:55:06 -0700617 char* service = nullptr;
Elliott Hughes8d28e192015-10-07 14:55:10 -0700618 char* serial = nullptr;
Josh Gaob122b172017-08-16 16:57:01 -0700619 TransportId transport_id = 0;
Elliott Hughes3bd73c12015-05-05 13:10:43 -0700620 TransportType type = kTransportAny;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800621#endif
622
Josh Gao27cb7dc2018-02-01 13:17:50 -0800623 D("SS(%d): enqueue %zu", s->id, data.size());
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800624
Josh Gao27cb7dc2018-02-01 13:17:50 -0800625 if (s->smart_socket_data.empty()) {
626 s->smart_socket_data = std::move(data);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800627 } else {
Josh Gao27cb7dc2018-02-01 13:17:50 -0800628 std::copy(data.begin(), data.end(), std::back_inserter(s->smart_socket_data));
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800629 }
630
Josh Gao7e6683c2016-01-15 14:35:54 -0800631 /* don't bother if we can't decode the length */
Josh Gao27cb7dc2018-02-01 13:17:50 -0800632 if (s->smart_socket_data.size() < 4) {
Josh Gao52bd8522016-05-17 16:55:06 -0700633 return 0;
634 }
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800635
Josh Gao27cb7dc2018-02-01 13:17:50 -0800636 uint32_t len = unhex(s->smart_socket_data.data(), 4);
637 if (len == 0 || len > MAX_PAYLOAD) {
638 D("SS(%d): bad size (%u)", s->id, len);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800639 goto fail;
640 }
641
Josh Gao27cb7dc2018-02-01 13:17:50 -0800642 D("SS(%d): len is %u", s->id, len);
Josh Gao7e6683c2016-01-15 14:35:54 -0800643 /* can't do anything until we have the full header */
Josh Gao27cb7dc2018-02-01 13:17:50 -0800644 if ((len + 4) > s->smart_socket_data.size()) {
645 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 -0800646 return 0;
647 }
648
Josh Gao27cb7dc2018-02-01 13:17:50 -0800649 s->smart_socket_data[len + 4] = 0;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800650
Josh Gao27cb7dc2018-02-01 13:17:50 -0800651 D("SS(%d): '%s'", s->id, (char*)(s->smart_socket_data.data() + 4));
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800652
653#if ADB_HOST
Josh Gao27cb7dc2018-02-01 13:17:50 -0800654 service = &s->smart_socket_data[4];
Josh Gao52bd8522016-05-17 16:55:06 -0700655 if (!strncmp(service, "host-serial:", strlen("host-serial:"))) {
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800656 char* serial_end;
657 service += strlen("host-serial:");
658
Terence Haddock28e13902011-03-16 09:43:56 +0100659 // serial number should follow "host:" and could be a host:port string.
David Pursell3f902aa2016-03-01 08:58:26 -0800660 serial_end = internal::skip_host_serial(service);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800661 if (serial_end) {
Josh Gao52bd8522016-05-17 16:55:06 -0700662 *serial_end = 0; // terminate string
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800663 serial = service;
664 service = serial_end + 1;
665 }
Josh Gaob122b172017-08-16 16:57:01 -0700666 } else if (!strncmp(service, "host-transport-id:", strlen("host-transport-id:"))) {
667 service += strlen("host-transport-id:");
668 transport_id = strtoll(service, &service, 10);
669
670 if (*service != ':') {
671 return -1;
672 }
673 service++;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800674 } else if (!strncmp(service, "host-usb:", strlen("host-usb:"))) {
Elliott Hughes3bd73c12015-05-05 13:10:43 -0700675 type = kTransportUsb;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800676 service += strlen("host-usb:");
677 } else if (!strncmp(service, "host-local:", strlen("host-local:"))) {
Elliott Hughes3bd73c12015-05-05 13:10:43 -0700678 type = kTransportLocal;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800679 service += strlen("host-local:");
680 } else if (!strncmp(service, "host:", strlen("host:"))) {
Elliott Hughes3bd73c12015-05-05 13:10:43 -0700681 type = kTransportAny;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800682 service += strlen("host:");
683 } else {
Elliott Hughes8d28e192015-10-07 14:55:10 -0700684 service = nullptr;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800685 }
686
687 if (service) {
Josh Gao52bd8522016-05-17 16:55:06 -0700688 asocket* s2;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800689
Josh Gao52bd8522016-05-17 16:55:06 -0700690 /* some requests are handled immediately -- in that
691 ** case the handle_host_request() routine has sent
692 ** the OKAY or FAIL message and all we have to do
693 ** is clean up.
694 */
Josh Gaob122b172017-08-16 16:57:01 -0700695 if (handle_host_request(service, type, serial, transport_id, s->peer->fd, s) == 0) {
Josh Gao52bd8522016-05-17 16:55:06 -0700696 /* XXX fail message? */
697 D("SS(%d): handled host service '%s'", s->id, service);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800698 goto fail;
699 }
700 if (!strncmp(service, "transport", strlen("transport"))) {
Josh Gao52bd8522016-05-17 16:55:06 -0700701 D("SS(%d): okay transport", s->id);
Josh Gao27cb7dc2018-02-01 13:17:50 -0800702 s->smart_socket_data.clear();
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800703 return 0;
704 }
705
Josh Gao52bd8522016-05-17 16:55:06 -0700706 /* try to find a local service with this name.
707 ** if no such service exists, we'll fail out
708 ** and tear down here.
709 */
Josh Gaob122b172017-08-16 16:57:01 -0700710 s2 = create_host_service_socket(service, serial, transport_id);
Josh Gao52bd8522016-05-17 16:55:06 -0700711 if (s2 == 0) {
712 D("SS(%d): couldn't create host service '%s'", s->id, service);
Elliott Hughese67f1f82015-04-30 17:32:03 -0700713 SendFail(s->peer->fd, "unknown host service");
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800714 goto fail;
715 }
716
Josh Gao52bd8522016-05-17 16:55:06 -0700717 /* we've connected to a local host service,
718 ** so we make our peer back into a regular
719 ** local socket and bind it to the new local
720 ** service socket, acknowledge the successful
721 ** connection, and close this smart socket now
722 ** that its work is done.
723 */
Elliott Hughese67f1f82015-04-30 17:32:03 -0700724 SendOkay(s->peer->fd);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800725
726 s->peer->ready = local_socket_ready;
Elliott Hughes8d28e192015-10-07 14:55:10 -0700727 s->peer->shutdown = nullptr;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800728 s->peer->close = local_socket_close;
729 s->peer->peer = s2;
730 s2->peer = s->peer;
731 s->peer = 0;
Josh Gao52bd8522016-05-17 16:55:06 -0700732 D("SS(%d): okay", s->id);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800733 s->close(s);
734
Josh Gao52bd8522016-05-17 16:55:06 -0700735 /* initial state is "ready" */
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800736 s2->ready(s2);
737 return 0;
738 }
739#else /* !ADB_HOST */
Elliott Hughes8d28e192015-10-07 14:55:10 -0700740 if (s->transport == nullptr) {
Elliott Hughes7be29c82015-04-16 22:54:44 -0700741 std::string error_msg = "unknown failure";
Josh Gaob122b172017-08-16 16:57:01 -0700742 s->transport = acquire_one_transport(kTransportAny, nullptr, 0, nullptr, &error_msg);
Elliott Hughes8d28e192015-10-07 14:55:10 -0700743 if (s->transport == nullptr) {
Elliott Hughese67f1f82015-04-30 17:32:03 -0700744 SendFail(s->peer->fd, error_msg);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800745 goto fail;
746 }
747 }
748#endif
749
Josh Gao22d2b3e2016-10-27 14:01:08 -0700750 if (!s->transport) {
751 SendFail(s->peer->fd, "device offline (no transport)");
752 goto fail;
Yabin Cuib5e11412017-03-10 16:01:01 -0800753 } else if (s->transport->GetConnectionState() == kCsOffline) {
Josh Gao52bd8522016-05-17 16:55:06 -0700754 /* if there's no remote we fail the connection
755 ** right here and terminate it
756 */
Josh Gao22d2b3e2016-10-27 14:01:08 -0700757 SendFail(s->peer->fd, "device offline (transport offline)");
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800758 goto fail;
759 }
760
Josh Gao52bd8522016-05-17 16:55:06 -0700761 /* instrument our peer to pass the success or fail
762 ** message back once it connects or closes, then
763 ** detach from it, request the connection, and
764 ** tear down
765 */
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800766 s->peer->ready = local_socket_ready_notify;
Elliott Hughes8d28e192015-10-07 14:55:10 -0700767 s->peer->shutdown = nullptr;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800768 s->peer->close = local_socket_close_notify;
769 s->peer->peer = 0;
Josh Gao52bd8522016-05-17 16:55:06 -0700770 /* give him our transport and upref it */
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800771 s->peer->transport = s->transport;
772
Josh Gao27cb7dc2018-02-01 13:17:50 -0800773 connect_to_remote(s->peer, s->smart_socket_data.data() + 4);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800774 s->peer = 0;
775 s->close(s);
776 return 1;
777
778fail:
Josh Gao52bd8522016-05-17 16:55:06 -0700779 /* we're going to close our peer as a side-effect, so
780 ** return -1 to signal that state to the local socket
781 ** who is enqueueing against us
782 */
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800783 s->close(s);
784 return -1;
785}
786
Josh Gao52bd8522016-05-17 16:55:06 -0700787static void smart_socket_ready(asocket* s) {
Yabin Cui7a3f8d62015-09-02 17:44:28 -0700788 D("SS(%d): ready", s->id);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800789}
790
Josh Gao52bd8522016-05-17 16:55:06 -0700791static void smart_socket_close(asocket* s) {
Yabin Cui7a3f8d62015-09-02 17:44:28 -0700792 D("SS(%d): closed", s->id);
Josh Gao52bd8522016-05-17 16:55:06 -0700793 if (s->peer) {
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800794 s->peer->peer = 0;
795 s->peer->close(s->peer);
Tom Marlin49f18572011-05-13 13:24:55 -0500796 s->peer = 0;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800797 }
Josh Gaoe0361d12018-02-12 17:24:00 -0800798 delete s;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800799}
800
Josh Gao52bd8522016-05-17 16:55:06 -0700801static asocket* create_smart_socket(void) {
Yabin Cui7a3f8d62015-09-02 17:44:28 -0700802 D("Creating smart socket");
Josh Gaoe0361d12018-02-12 17:24:00 -0800803 asocket* s = new asocket();
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800804 s->enqueue = smart_socket_enqueue;
805 s->ready = smart_socket_ready;
David 'Digit' Turner818d6412013-12-13 14:09:44 +0100806 s->shutdown = NULL;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800807 s->close = smart_socket_close;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800808
Yabin Cui7a3f8d62015-09-02 17:44:28 -0700809 D("SS(%d)", s->id);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800810 return s;
811}
812
Josh Gao52bd8522016-05-17 16:55:06 -0700813void connect_to_smartsocket(asocket* s) {
Yabin Cui7a3f8d62015-09-02 17:44:28 -0700814 D("Connecting to smart socket");
Josh Gao52bd8522016-05-17 16:55:06 -0700815 asocket* ss = create_smart_socket();
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800816 s->peer = ss;
817 ss->peer = s;
818 s->ready(s);
819}
Tamas Berghammer3d2904c2015-07-13 19:12:28 +0100820
821size_t asocket::get_max_payload() const {
822 size_t max_payload = MAX_PAYLOAD;
823 if (transport) {
824 max_payload = std::min(max_payload, transport->get_max_payload());
825 }
826 if (peer && peer->transport) {
827 max_payload = std::min(max_payload, peer->transport->get_max_payload());
828 }
829 return max_payload;
830}