The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 1 | /* |
| 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 Cui | aed3c61 | 2015-09-22 15:52:57 -0700 | [diff] [blame] | 17 | #define TRACE_TAG SOCKETS |
Dan Albert | 3313426 | 2015-03-19 15:21:08 -0700 | [diff] [blame] | 18 | |
| 19 | #include "sysdeps.h" |
| 20 | |
Dan Albert | 7664901 | 2015-02-24 15:51:19 -0800 | [diff] [blame] | 21 | #include <ctype.h> |
| 22 | #include <errno.h> |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 23 | #include <stdio.h> |
| 24 | #include <stdlib.h> |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 25 | #include <string.h> |
Dan Albert | 7664901 | 2015-02-24 15:51:19 -0800 | [diff] [blame] | 26 | #include <unistd.h> |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 27 | |
Spencer Low | 363af56 | 2015-11-07 18:51:54 -0800 | [diff] [blame] | 28 | #include <algorithm> |
Josh Gao | 74b7ec7 | 2019-01-11 14:42:08 -0800 | [diff] [blame] | 29 | #include <chrono> |
Josh Gao | 9b587de | 2016-05-17 17:46:27 -0700 | [diff] [blame] | 30 | #include <mutex> |
David Pursell | 3f902aa | 2016-03-01 08:58:26 -0800 | [diff] [blame] | 31 | #include <string> |
| 32 | #include <vector> |
Spencer Low | 363af56 | 2015-11-07 18:51:54 -0800 | [diff] [blame] | 33 | |
Elliott Hughes | b4dc7be | 2019-05-03 09:02:45 -0700 | [diff] [blame] | 34 | #include <android-base/strings.h> |
| 35 | |
Dan Albert | 7664901 | 2015-02-24 15:51:19 -0800 | [diff] [blame] | 36 | #if !ADB_HOST |
Elliott Hughes | ffdec18 | 2016-09-23 15:40:03 -0700 | [diff] [blame] | 37 | #include <android-base/properties.h> |
Steven Moreland | d73be1b | 2017-04-13 23:48:57 -0700 | [diff] [blame] | 38 | #include <log/log_properties.h> |
Dan Albert | 7664901 | 2015-02-24 15:51:19 -0800 | [diff] [blame] | 39 | #endif |
Dan Albert | 3313426 | 2015-03-19 15:21:08 -0700 | [diff] [blame] | 40 | |
| 41 | #include "adb.h" |
| 42 | #include "adb_io.h" |
Josh Gao | bd76720 | 2018-12-19 13:37:41 -0800 | [diff] [blame] | 43 | #include "adb_utils.h" |
Dan Albert | 7664901 | 2015-02-24 15:51:19 -0800 | [diff] [blame] | 44 | #include "transport.h" |
Josh Gao | 1ce9957 | 2018-03-07 16:52:28 -0800 | [diff] [blame] | 45 | #include "types.h" |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 46 | |
Josh Gao | 74b7ec7 | 2019-01-11 14:42:08 -0800 | [diff] [blame] | 47 | using namespace std::chrono_literals; |
| 48 | |
Josh Gao | 9b587de | 2016-05-17 17:46:27 -0700 | [diff] [blame] | 49 | static std::recursive_mutex& local_socket_list_lock = *new std::recursive_mutex(); |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 50 | static unsigned local_socket_next_id = 1; |
| 51 | |
Josh Gao | 5e50764 | 2018-01-31 13:15:51 -0800 | [diff] [blame] | 52 | static auto& local_socket_list = *new std::vector<asocket*>(); |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 53 | |
| 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 Gao | 5e50764 | 2018-01-31 13:15:51 -0800 | [diff] [blame] | 58 | static auto& local_socket_closing_list = *new std::vector<asocket*>(); |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 59 | |
David 'Digit' Turner | 818d641 | 2013-12-13 14:09:44 +0100 | [diff] [blame] | 60 | // 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 Gao | 52bd852 | 2016-05-17 16:55:06 -0700 | [diff] [blame] | 63 | asocket* find_local_socket(unsigned local_id, unsigned peer_id) { |
Josh Gao | 5e50764 | 2018-01-31 13:15:51 -0800 | [diff] [blame] | 64 | asocket* result = nullptr; |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 65 | |
Josh Gao | 9b587de | 2016-05-17 17:46:27 -0700 | [diff] [blame] | 66 | std::lock_guard<std::recursive_mutex> lock(local_socket_list_lock); |
Josh Gao | 5e50764 | 2018-01-31 13:15:51 -0800 | [diff] [blame] | 67 | for (asocket* s : local_socket_list) { |
Josh Gao | 52bd852 | 2016-05-17 16:55:06 -0700 | [diff] [blame] | 68 | if (s->id != local_id) { |
David 'Digit' Turner | 818d641 | 2013-12-13 14:09:44 +0100 | [diff] [blame] | 69 | continue; |
Josh Gao | 52bd852 | 2016-05-17 16:55:06 -0700 | [diff] [blame] | 70 | } |
David 'Digit' Turner | 818d641 | 2013-12-13 14:09:44 +0100 | [diff] [blame] | 71 | if (peer_id == 0 || (s->peer && s->peer->id == peer_id)) { |
André Goddard Rosa | 8182829 | 2010-06-12 11:40:20 -0300 | [diff] [blame] | 72 | result = s; |
André Goddard Rosa | 8182829 | 2010-06-12 11:40:20 -0300 | [diff] [blame] | 73 | } |
David 'Digit' Turner | 818d641 | 2013-12-13 14:09:44 +0100 | [diff] [blame] | 74 | break; |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 75 | } |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 76 | |
| 77 | return result; |
| 78 | } |
| 79 | |
Josh Gao | 52bd852 | 2016-05-17 16:55:06 -0700 | [diff] [blame] | 80 | void install_local_socket(asocket* s) { |
Josh Gao | 9b587de | 2016-05-17 17:46:27 -0700 | [diff] [blame] | 81 | std::lock_guard<std::recursive_mutex> lock(local_socket_list_lock); |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 82 | |
| 83 | s->id = local_socket_next_id++; |
David 'Digit' Turner | 818d641 | 2013-12-13 14:09:44 +0100 | [diff] [blame] | 84 | |
| 85 | // Socket ids should never be 0. |
Josh Gao | 52bd852 | 2016-05-17 16:55:06 -0700 | [diff] [blame] | 86 | if (local_socket_next_id == 0) { |
Elliott Hughes | 4679a39 | 2018-10-19 13:59:44 -0700 | [diff] [blame] | 87 | LOG(FATAL) << "local socket id overflow"; |
Josh Gao | 52bd852 | 2016-05-17 16:55:06 -0700 | [diff] [blame] | 88 | } |
David 'Digit' Turner | 818d641 | 2013-12-13 14:09:44 +0100 | [diff] [blame] | 89 | |
Josh Gao | 5e50764 | 2018-01-31 13:15:51 -0800 | [diff] [blame] | 90 | local_socket_list.push_back(s); |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 91 | } |
| 92 | |
Josh Gao | 52bd852 | 2016-05-17 16:55:06 -0700 | [diff] [blame] | 93 | void remove_socket(asocket* s) { |
Josh Gao | 62c92f0 | 2017-09-13 11:17:33 -0700 | [diff] [blame] | 94 | std::lock_guard<std::recursive_mutex> lock(local_socket_list_lock); |
Josh Gao | 5e50764 | 2018-01-31 13:15:51 -0800 | [diff] [blame] | 95 | 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 Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 98 | } |
| 99 | } |
| 100 | |
Josh Gao | 52bd852 | 2016-05-17 16:55:06 -0700 | [diff] [blame] | 101 | void close_all_sockets(atransport* t) { |
Josh Gao | 52bd852 | 2016-05-17 16:55:06 -0700 | [diff] [blame] | 102 | /* this is a little gross, but since s->close() *will* modify |
| 103 | ** the list out from under you, your options are limited. |
| 104 | */ |
Josh Gao | 9b587de | 2016-05-17 17:46:27 -0700 | [diff] [blame] | 105 | std::lock_guard<std::recursive_mutex> lock(local_socket_list_lock); |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 106 | restart: |
Josh Gao | 5e50764 | 2018-01-31 13:15:51 -0800 | [diff] [blame] | 107 | for (asocket* s : local_socket_list) { |
Josh Gao | 52bd852 | 2016-05-17 16:55:06 -0700 | [diff] [blame] | 108 | if (s->transport == t || (s->peer && s->peer->transport == t)) { |
Josh Gao | 53eb31d | 2016-05-18 10:39:48 -0700 | [diff] [blame] | 109 | s->close(s); |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 110 | goto restart; |
| 111 | } |
| 112 | } |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 113 | } |
| 114 | |
Josh Gao | 184f480 | 2018-03-19 13:20:29 -0700 | [diff] [blame] | 115 | enum class SocketFlushResult { |
| 116 | Destroyed, |
| 117 | TryAgain, |
| 118 | Completed, |
| 119 | }; |
| 120 | |
| 121 | static SocketFlushResult local_socket_flush_incoming(asocket* s) { |
Josh Gao | 7c738cd | 2018-04-03 14:37:11 -0700 | [diff] [blame] | 122 | 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 Gao | 184f480 | 2018-03-19 13:20:29 -0700 | [diff] [blame] | 127 | } else if (rc > 0) { |
Yurii Zubrytskyi | 5dda7f6 | 2019-07-12 14:11:54 -0700 | [diff] [blame] | 128 | s->packet_queue.drop_front(rc); |
Josh Gao | 71f775a | 2018-05-14 11:14:33 -0700 | [diff] [blame] | 129 | fdevent_add(s->fde, FDE_WRITE); |
Josh Gao | 184f480 | 2018-03-19 13:20:29 -0700 | [diff] [blame] | 130 | return SocketFlushResult::TryAgain; |
| 131 | } else if (rc == -1 && errno == EAGAIN) { |
Josh Gao | 71f775a | 2018-05-14 11:14:33 -0700 | [diff] [blame] | 132 | fdevent_add(s->fde, FDE_WRITE); |
Josh Gao | 184f480 | 2018-03-19 13:20:29 -0700 | [diff] [blame] | 133 | return SocketFlushResult::TryAgain; |
Josh Gao | 954e128 | 2018-03-30 13:56:24 -0700 | [diff] [blame] | 134 | } else { |
| 135 | // We failed to write, but it's possible that we can still read from the socket. |
| 136 | // Give that a try before giving up. |
| 137 | s->has_write_error = true; |
Josh Gao | 184f480 | 2018-03-19 13:20:29 -0700 | [diff] [blame] | 138 | } |
Josh Gao | 184f480 | 2018-03-19 13:20:29 -0700 | [diff] [blame] | 139 | } |
| 140 | |
| 141 | // If we sent the last packet of a closing socket, we can now destroy it. |
| 142 | if (s->closing) { |
| 143 | s->close(s); |
| 144 | return SocketFlushResult::Destroyed; |
| 145 | } |
| 146 | |
Josh Gao | 71f775a | 2018-05-14 11:14:33 -0700 | [diff] [blame] | 147 | fdevent_del(s->fde, FDE_WRITE); |
Josh Gao | 184f480 | 2018-03-19 13:20:29 -0700 | [diff] [blame] | 148 | return SocketFlushResult::Completed; |
| 149 | } |
| 150 | |
| 151 | // Returns false if the socket has been closed and destroyed as a side-effect of this function. |
| 152 | static bool local_socket_flush_outgoing(asocket* s) { |
| 153 | const size_t max_payload = s->get_max_payload(); |
Josh Gao | 1ce9957 | 2018-03-07 16:52:28 -0800 | [diff] [blame] | 154 | apacket::payload_type data; |
Josh Gao | 184f480 | 2018-03-19 13:20:29 -0700 | [diff] [blame] | 155 | data.resize(max_payload); |
| 156 | char* x = &data[0]; |
| 157 | size_t avail = max_payload; |
| 158 | int r = 0; |
| 159 | int is_eof = 0; |
| 160 | |
| 161 | while (avail > 0) { |
| 162 | r = adb_read(s->fd, x, avail); |
| 163 | D("LS(%d): post adb_read(fd=%d,...) r=%d (errno=%d) avail=%zu", s->id, s->fd, r, |
| 164 | r < 0 ? errno : 0, avail); |
| 165 | if (r == -1) { |
| 166 | if (errno == EAGAIN) { |
| 167 | break; |
| 168 | } |
| 169 | } else if (r > 0) { |
| 170 | avail -= r; |
| 171 | x += r; |
| 172 | continue; |
| 173 | } |
| 174 | |
| 175 | /* r = 0 or unhandled error */ |
| 176 | is_eof = 1; |
| 177 | break; |
| 178 | } |
| 179 | D("LS(%d): fd=%d post avail loop. r=%d is_eof=%d forced_eof=%d", s->id, s->fd, r, is_eof, |
Josh Gao | 71f775a | 2018-05-14 11:14:33 -0700 | [diff] [blame] | 180 | s->fde->force_eof); |
Josh Gao | 184f480 | 2018-03-19 13:20:29 -0700 | [diff] [blame] | 181 | |
| 182 | if (avail != max_payload && s->peer) { |
| 183 | data.resize(max_payload - avail); |
| 184 | |
| 185 | // s->peer->enqueue() may call s->close() and free s, |
| 186 | // so save variables for debug printing below. |
| 187 | unsigned saved_id = s->id; |
| 188 | int saved_fd = s->fd; |
| 189 | r = s->peer->enqueue(s->peer, std::move(data)); |
| 190 | D("LS(%u): fd=%d post peer->enqueue(). r=%d", saved_id, saved_fd, r); |
| 191 | |
| 192 | if (r < 0) { |
| 193 | // Error return means they closed us as a side-effect and we must |
| 194 | // return immediately. |
| 195 | // |
| 196 | // Note that if we still have buffered packets, the socket will be |
| 197 | // placed on the closing socket list. This handler function will be |
| 198 | // called again to process FDE_WRITE events. |
| 199 | return false; |
| 200 | } |
| 201 | |
| 202 | if (r > 0) { |
| 203 | /* if the remote cannot accept further events, |
| 204 | ** we disable notification of READs. They'll |
| 205 | ** be enabled again when we get a call to ready() |
| 206 | */ |
Josh Gao | 71f775a | 2018-05-14 11:14:33 -0700 | [diff] [blame] | 207 | fdevent_del(s->fde, FDE_READ); |
Josh Gao | 184f480 | 2018-03-19 13:20:29 -0700 | [diff] [blame] | 208 | } |
| 209 | } |
| 210 | |
| 211 | // Don't allow a forced eof if data is still there. |
Josh Gao | 71f775a | 2018-05-14 11:14:33 -0700 | [diff] [blame] | 212 | if ((s->fde->force_eof && !r) || is_eof) { |
| 213 | D(" closing because is_eof=%d r=%d s->fde.force_eof=%d", is_eof, r, s->fde->force_eof); |
Josh Gao | 184f480 | 2018-03-19 13:20:29 -0700 | [diff] [blame] | 214 | s->close(s); |
| 215 | return false; |
| 216 | } |
| 217 | |
| 218 | return true; |
| 219 | } |
| 220 | |
Josh Gao | 1ce9957 | 2018-03-07 16:52:28 -0800 | [diff] [blame] | 221 | static int local_socket_enqueue(asocket* s, apacket::payload_type data) { |
Josh Gao | 27cb7dc | 2018-02-01 13:17:50 -0800 | [diff] [blame] | 222 | D("LS(%d): enqueue %zu", s->id, data.size()); |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 223 | |
Josh Gao | 7c738cd | 2018-04-03 14:37:11 -0700 | [diff] [blame] | 224 | s->packet_queue.append(std::move(data)); |
Josh Gao | 184f480 | 2018-03-19 13:20:29 -0700 | [diff] [blame] | 225 | switch (local_socket_flush_incoming(s)) { |
| 226 | case SocketFlushResult::Destroyed: |
| 227 | return -1; |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 228 | |
Josh Gao | 184f480 | 2018-03-19 13:20:29 -0700 | [diff] [blame] | 229 | case SocketFlushResult::TryAgain: |
| 230 | return 1; |
| 231 | |
| 232 | case SocketFlushResult::Completed: |
| 233 | return 0; |
| 234 | } |
| 235 | |
| 236 | return !s->packet_queue.empty(); |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 237 | } |
| 238 | |
Josh Gao | 52bd852 | 2016-05-17 16:55:06 -0700 | [diff] [blame] | 239 | static void local_socket_ready(asocket* s) { |
Nanik Tolaram | b627a0e | 2015-02-18 22:53:37 +1100 | [diff] [blame] | 240 | /* far side is ready for data, pay attention to |
| 241 | readable events */ |
Josh Gao | 71f775a | 2018-05-14 11:14:33 -0700 | [diff] [blame] | 242 | fdevent_add(s->fde, FDE_READ); |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 243 | } |
| 244 | |
Josh Gao | 74b7ec7 | 2019-01-11 14:42:08 -0800 | [diff] [blame] | 245 | struct ClosingSocket { |
| 246 | std::chrono::steady_clock::time_point begin; |
| 247 | }; |
| 248 | |
| 249 | // The standard (RFC 1122 - 4.2.2.13) says that if we call close on a |
| 250 | // socket while we have pending data, a TCP RST should be sent to the |
| 251 | // other end to notify it that we didn't read all of its data. However, |
| 252 | // this can result in data that we've successfully written out to be dropped |
| 253 | // on the other end. To avoid this, instead of immediately closing a |
| 254 | // socket, call shutdown on it instead, and then read from the file |
| 255 | // descriptor until we hit EOF or an error before closing. |
| 256 | static void deferred_close(unique_fd fd) { |
| 257 | // Shutdown the socket in the outgoing direction only, so that |
| 258 | // we don't have the same problem on the opposite end. |
| 259 | adb_shutdown(fd.get(), SHUT_WR); |
| 260 | auto callback = [](fdevent* fde, unsigned event, void* arg) { |
| 261 | auto socket_info = static_cast<ClosingSocket*>(arg); |
| 262 | if (event & FDE_READ) { |
| 263 | ssize_t rc; |
| 264 | char buf[BUFSIZ]; |
| 265 | while ((rc = adb_read(fde->fd.get(), buf, sizeof(buf))) > 0) { |
| 266 | continue; |
| 267 | } |
| 268 | |
| 269 | if (rc == -1 && errno == EAGAIN) { |
| 270 | // There's potentially more data to read. |
| 271 | auto duration = std::chrono::steady_clock::now() - socket_info->begin; |
| 272 | if (duration > 1s) { |
| 273 | LOG(WARNING) << "timeout expired while flushing socket, closing"; |
| 274 | } else { |
| 275 | return; |
| 276 | } |
| 277 | } |
| 278 | } else if (event & FDE_TIMEOUT) { |
| 279 | LOG(WARNING) << "timeout expired while flushing socket, closing"; |
| 280 | } |
| 281 | |
| 282 | // Either there was an error, we hit the end of the socket, or our timeout expired. |
| 283 | fdevent_destroy(fde); |
| 284 | delete socket_info; |
| 285 | }; |
| 286 | |
| 287 | ClosingSocket* socket_info = new ClosingSocket{ |
| 288 | .begin = std::chrono::steady_clock::now(), |
| 289 | }; |
| 290 | |
| 291 | fdevent* fde = fdevent_create(fd.release(), callback, socket_info); |
| 292 | fdevent_add(fde, FDE_READ); |
| 293 | fdevent_set_timeout(fde, 1s); |
| 294 | } |
| 295 | |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 296 | // be sure to hold the socket list lock when calling this |
Josh Gao | 52bd852 | 2016-05-17 16:55:06 -0700 | [diff] [blame] | 297 | static void local_socket_destroy(asocket* s) { |
Benoit Goby | f366b36 | 2012-03-16 14:50:07 -0700 | [diff] [blame] | 298 | int exit_on_close = s->exit_on_close; |
| 299 | |
Josh Gao | 71f775a | 2018-05-14 11:14:33 -0700 | [diff] [blame] | 300 | D("LS(%d): destroying fde.fd=%d", s->id, s->fd); |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 301 | |
Josh Gao | 74b7ec7 | 2019-01-11 14:42:08 -0800 | [diff] [blame] | 302 | deferred_close(fdevent_release(s->fde)); |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 303 | |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 304 | remove_socket(s); |
Josh Gao | e0361d1 | 2018-02-12 17:24:00 -0800 | [diff] [blame] | 305 | delete s; |
Benoit Goby | f366b36 | 2012-03-16 14:50:07 -0700 | [diff] [blame] | 306 | |
| 307 | if (exit_on_close) { |
Yabin Cui | 7a3f8d6 | 2015-09-02 17:44:28 -0700 | [diff] [blame] | 308 | D("local_socket_destroy: exiting"); |
Benoit Goby | f366b36 | 2012-03-16 14:50:07 -0700 | [diff] [blame] | 309 | exit(1); |
| 310 | } |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 311 | } |
| 312 | |
Josh Gao | 9b587de | 2016-05-17 17:46:27 -0700 | [diff] [blame] | 313 | static void local_socket_close(asocket* s) { |
| 314 | D("entered local_socket_close. LS(%d) fd=%d", s->id, s->fd); |
| 315 | std::lock_guard<std::recursive_mutex> lock(local_socket_list_lock); |
Josh Gao | 52bd852 | 2016-05-17 16:55:06 -0700 | [diff] [blame] | 316 | if (s->peer) { |
| 317 | D("LS(%d): closing peer. peer->id=%d peer->fd=%d", s->id, s->peer->id, s->peer->fd); |
David 'Digit' Turner | 818d641 | 2013-12-13 14:09:44 +0100 | [diff] [blame] | 318 | /* Note: it's important to call shutdown before disconnecting from |
| 319 | * the peer, this ensures that remote sockets can still get the id |
| 320 | * of the local socket they're connected to, to send a CLOSE() |
| 321 | * protocol event. */ |
Josh Gao | 52bd852 | 2016-05-17 16:55:06 -0700 | [diff] [blame] | 322 | if (s->peer->shutdown) { |
| 323 | s->peer->shutdown(s->peer); |
| 324 | } |
Josh Gao | 9b587de | 2016-05-17 17:46:27 -0700 | [diff] [blame] | 325 | s->peer->peer = nullptr; |
| 326 | s->peer->close(s->peer); |
| 327 | s->peer = nullptr; |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 328 | } |
| 329 | |
Josh Gao | 52bd852 | 2016-05-17 16:55:06 -0700 | [diff] [blame] | 330 | /* If we are already closing, or if there are no |
| 331 | ** pending packets, destroy immediately |
| 332 | */ |
Josh Gao | 27cb7dc | 2018-02-01 13:17:50 -0800 | [diff] [blame] | 333 | if (s->closing || s->has_write_error || s->packet_queue.empty()) { |
Josh Gao | 52bd852 | 2016-05-17 16:55:06 -0700 | [diff] [blame] | 334 | int id = s->id; |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 335 | local_socket_destroy(s); |
Yabin Cui | 7a3f8d6 | 2015-09-02 17:44:28 -0700 | [diff] [blame] | 336 | D("LS(%d): closed", id); |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 337 | return; |
| 338 | } |
| 339 | |
Josh Gao | 52bd852 | 2016-05-17 16:55:06 -0700 | [diff] [blame] | 340 | /* otherwise, put on the closing list |
| 341 | */ |
Yabin Cui | 7a3f8d6 | 2015-09-02 17:44:28 -0700 | [diff] [blame] | 342 | D("LS(%d): closing", s->id); |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 343 | s->closing = 1; |
Josh Gao | 71f775a | 2018-05-14 11:14:33 -0700 | [diff] [blame] | 344 | fdevent_del(s->fde, FDE_READ); |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 345 | remove_socket(s); |
Yabin Cui | 7a3f8d6 | 2015-09-02 17:44:28 -0700 | [diff] [blame] | 346 | D("LS(%d): put on socket_closing_list fd=%d", s->id, s->fd); |
Josh Gao | 5e50764 | 2018-01-31 13:15:51 -0800 | [diff] [blame] | 347 | local_socket_closing_list.push_back(s); |
Josh Gao | 71f775a | 2018-05-14 11:14:33 -0700 | [diff] [blame] | 348 | CHECK_EQ(FDE_WRITE, s->fde->state & FDE_WRITE); |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 349 | } |
| 350 | |
Josh Gao | 52bd852 | 2016-05-17 16:55:06 -0700 | [diff] [blame] | 351 | static void local_socket_event_func(int fd, unsigned ev, void* _s) { |
Dan Albert | bac3474 | 2015-02-25 17:51:28 -0800 | [diff] [blame] | 352 | asocket* s = reinterpret_cast<asocket*>(_s); |
Yabin Cui | 7a3f8d6 | 2015-09-02 17:44:28 -0700 | [diff] [blame] | 353 | D("LS(%d): event_func(fd=%d(==%d), ev=%04x)", s->id, s->fd, fd, ev); |
JP Abgrall | 408fa57 | 2011-03-16 15:57:42 -0700 | [diff] [blame] | 354 | |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 355 | /* put the FDE_WRITE processing before the FDE_READ |
| 356 | ** in order to simplify the code. |
| 357 | */ |
Dan Albert | bac3474 | 2015-02-25 17:51:28 -0800 | [diff] [blame] | 358 | if (ev & FDE_WRITE) { |
Josh Gao | 184f480 | 2018-03-19 13:20:29 -0700 | [diff] [blame] | 359 | switch (local_socket_flush_incoming(s)) { |
| 360 | case SocketFlushResult::Destroyed: |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 361 | return; |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 362 | |
Josh Gao | 184f480 | 2018-03-19 13:20:29 -0700 | [diff] [blame] | 363 | case SocketFlushResult::TryAgain: |
| 364 | break; |
| 365 | |
| 366 | case SocketFlushResult::Completed: |
| 367 | s->peer->ready(s->peer); |
| 368 | break; |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 369 | } |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 370 | } |
| 371 | |
Dan Albert | bac3474 | 2015-02-25 17:51:28 -0800 | [diff] [blame] | 372 | if (ev & FDE_READ) { |
Josh Gao | 184f480 | 2018-03-19 13:20:29 -0700 | [diff] [blame] | 373 | if (!local_socket_flush_outgoing(s)) { |
Yabin Cui | c1b1f6f | 2015-09-15 16:27:09 -0700 | [diff] [blame] | 374 | return; |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 375 | } |
| 376 | } |
| 377 | |
Josh Gao | 52bd852 | 2016-05-17 16:55:06 -0700 | [diff] [blame] | 378 | if (ev & FDE_ERROR) { |
| 379 | /* this should be caught be the next read or write |
| 380 | ** catching it here means we may skip the last few |
| 381 | ** bytes of readable data. |
| 382 | */ |
Yabin Cui | 7a3f8d6 | 2015-09-02 17:44:28 -0700 | [diff] [blame] | 383 | D("LS(%d): FDE_ERROR (fd=%d)", s->id, s->fd); |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 384 | return; |
| 385 | } |
| 386 | } |
| 387 | |
Josh Gao | 74ccdf9 | 2019-01-23 15:36:42 -0800 | [diff] [blame] | 388 | asocket* create_local_socket(unique_fd ufd) { |
| 389 | int fd = ufd.release(); |
Josh Gao | e0361d1 | 2018-02-12 17:24:00 -0800 | [diff] [blame] | 390 | asocket* s = new asocket(); |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 391 | s->fd = fd; |
| 392 | s->enqueue = local_socket_enqueue; |
| 393 | s->ready = local_socket_ready; |
Yi Kong | aed415c | 2018-07-13 18:15:16 -0700 | [diff] [blame] | 394 | s->shutdown = nullptr; |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 395 | s->close = local_socket_close; |
JP Abgrall | 408fa57 | 2011-03-16 15:57:42 -0700 | [diff] [blame] | 396 | install_local_socket(s); |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 397 | |
Josh Gao | 71f775a | 2018-05-14 11:14:33 -0700 | [diff] [blame] | 398 | s->fde = fdevent_create(fd, local_socket_event_func, s); |
Yabin Cui | 7a3f8d6 | 2015-09-02 17:44:28 -0700 | [diff] [blame] | 399 | D("LS(%d): created (fd=%d)", s->id, s->fd); |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 400 | return s; |
| 401 | } |
| 402 | |
Josh Gao | d19b77a | 2018-12-13 14:21:00 -0800 | [diff] [blame] | 403 | asocket* create_local_service_socket(std::string_view name, atransport* transport) { |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 404 | #if !ADB_HOST |
Josh Gao | 6eb7882 | 2018-11-16 15:40:16 -0800 | [diff] [blame] | 405 | if (asocket* s = daemon_service_to_socket(name); s) { |
| 406 | return s; |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 407 | } |
| 408 | #endif |
Josh Gao | 74ccdf9 | 2019-01-23 15:36:42 -0800 | [diff] [blame] | 409 | unique_fd fd = service_to_fd(name, transport); |
Josh Gao | 52bd852 | 2016-05-17 16:55:06 -0700 | [diff] [blame] | 410 | if (fd < 0) { |
Elliott Hughes | ffc73a3 | 2016-06-15 14:46:56 -0700 | [diff] [blame] | 411 | return nullptr; |
Josh Gao | 52bd852 | 2016-05-17 16:55:06 -0700 | [diff] [blame] | 412 | } |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 413 | |
Greg Kaiser | fdb9800 | 2019-01-28 06:17:44 -0800 | [diff] [blame] | 414 | int fd_value = fd.get(); |
Josh Gao | 74ccdf9 | 2019-01-23 15:36:42 -0800 | [diff] [blame] | 415 | asocket* s = create_local_socket(std::move(fd)); |
Greg Kaiser | fdb9800 | 2019-01-28 06:17:44 -0800 | [diff] [blame] | 416 | LOG(VERBOSE) << "LS(" << s->id << "): bound to '" << name << "' via " << fd_value; |
Benoit Goby | f366b36 | 2012-03-16 14:50:07 -0700 | [diff] [blame] | 417 | |
JP Abgrall | f91259a | 2012-03-30 13:19:11 -0700 | [diff] [blame] | 418 | #if !ADB_HOST |
Josh Gao | d19b77a | 2018-12-13 14:21:00 -0800 | [diff] [blame] | 419 | if ((name.starts_with("root:") && getuid() != 0 && __android_log_is_debuggable()) || |
| 420 | (name.starts_with("unroot:") && getuid() == 0) || name.starts_with("usb:") || |
| 421 | name.starts_with("tcpip:")) { |
Yabin Cui | 7a3f8d6 | 2015-09-02 17:44:28 -0700 | [diff] [blame] | 422 | D("LS(%d): enabling exit_on_close", s->id); |
Benoit Goby | f366b36 | 2012-03-16 14:50:07 -0700 | [diff] [blame] | 423 | s->exit_on_close = 1; |
| 424 | } |
JP Abgrall | f91259a | 2012-03-30 13:19:11 -0700 | [diff] [blame] | 425 | #endif |
Benoit Goby | f366b36 | 2012-03-16 14:50:07 -0700 | [diff] [blame] | 426 | |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 427 | return s; |
| 428 | } |
| 429 | |
Josh Gao | 1ce9957 | 2018-03-07 16:52:28 -0800 | [diff] [blame] | 430 | static int remote_socket_enqueue(asocket* s, apacket::payload_type data) { |
Josh Gao | 52bd852 | 2016-05-17 16:55:06 -0700 | [diff] [blame] | 431 | D("entered remote_socket_enqueue RS(%d) WRITE fd=%d peer.fd=%d", s->id, s->fd, s->peer->fd); |
Josh Gao | 27cb7dc | 2018-02-01 13:17:50 -0800 | [diff] [blame] | 432 | apacket* p = get_apacket(); |
| 433 | |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 434 | p->msg.command = A_WRTE; |
| 435 | p->msg.arg0 = s->peer->id; |
| 436 | p->msg.arg1 = s->id; |
Josh Gao | 27cb7dc | 2018-02-01 13:17:50 -0800 | [diff] [blame] | 437 | |
Josh Gao | f571fcb | 2018-02-05 18:49:10 -0800 | [diff] [blame] | 438 | if (data.size() > MAX_PAYLOAD) { |
Josh Gao | 27cb7dc | 2018-02-01 13:17:50 -0800 | [diff] [blame] | 439 | put_apacket(p); |
| 440 | return -1; |
| 441 | } |
| 442 | |
Josh Gao | f571fcb | 2018-02-05 18:49:10 -0800 | [diff] [blame] | 443 | p->payload = std::move(data); |
| 444 | p->msg.data_length = p->payload.size(); |
| 445 | |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 446 | send_packet(p, s->transport); |
| 447 | return 1; |
| 448 | } |
| 449 | |
Josh Gao | 52bd852 | 2016-05-17 16:55:06 -0700 | [diff] [blame] | 450 | static void remote_socket_ready(asocket* s) { |
| 451 | D("entered remote_socket_ready RS(%d) OKAY fd=%d peer.fd=%d", s->id, s->fd, s->peer->fd); |
| 452 | apacket* p = get_apacket(); |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 453 | p->msg.command = A_OKAY; |
| 454 | p->msg.arg0 = s->peer->id; |
| 455 | p->msg.arg1 = s->id; |
| 456 | send_packet(p, s->transport); |
| 457 | } |
| 458 | |
Josh Gao | 52bd852 | 2016-05-17 16:55:06 -0700 | [diff] [blame] | 459 | static void remote_socket_shutdown(asocket* s) { |
| 460 | D("entered remote_socket_shutdown RS(%d) CLOSE fd=%d peer->fd=%d", s->id, s->fd, |
| 461 | s->peer ? s->peer->fd : -1); |
| 462 | apacket* p = get_apacket(); |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 463 | p->msg.command = A_CLSE; |
Josh Gao | 52bd852 | 2016-05-17 16:55:06 -0700 | [diff] [blame] | 464 | if (s->peer) { |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 465 | p->msg.arg0 = s->peer->id; |
David 'Digit' Turner | 818d641 | 2013-12-13 14:09:44 +0100 | [diff] [blame] | 466 | } |
| 467 | p->msg.arg1 = s->id; |
| 468 | send_packet(p, s->transport); |
| 469 | } |
| 470 | |
Josh Gao | 52bd852 | 2016-05-17 16:55:06 -0700 | [diff] [blame] | 471 | static void remote_socket_close(asocket* s) { |
David 'Digit' Turner | 818d641 | 2013-12-13 14:09:44 +0100 | [diff] [blame] | 472 | if (s->peer) { |
Yi Kong | aed415c | 2018-07-13 18:15:16 -0700 | [diff] [blame] | 473 | s->peer->peer = nullptr; |
Josh Gao | 52bd852 | 2016-05-17 16:55:06 -0700 | [diff] [blame] | 474 | D("RS(%d) peer->close()ing peer->id=%d peer->fd=%d", s->id, s->peer->id, s->peer->fd); |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 475 | s->peer->close(s->peer); |
| 476 | } |
Josh Gao | 52bd852 | 2016-05-17 16:55:06 -0700 | [diff] [blame] | 477 | D("entered remote_socket_close RS(%d) CLOSE fd=%d peer->fd=%d", s->id, s->fd, |
| 478 | s->peer ? s->peer->fd : -1); |
Yabin Cui | 7a3f8d6 | 2015-09-02 17:44:28 -0700 | [diff] [blame] | 479 | D("RS(%d): closed", s->id); |
Josh Gao | e0361d1 | 2018-02-12 17:24:00 -0800 | [diff] [blame] | 480 | delete s; |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 481 | } |
| 482 | |
Yabin Cui | fd28f32 | 2015-08-27 18:50:04 -0700 | [diff] [blame] | 483 | // Create a remote socket to exchange packets with a remote service through transport |
| 484 | // |t|. Where |id| is the socket id of the corresponding service on the other |
| 485 | // side of the transport (it is allocated by the remote side and _cannot_ be 0). |
| 486 | // Returns a new non-NULL asocket handle. |
Josh Gao | 52bd852 | 2016-05-17 16:55:06 -0700 | [diff] [blame] | 487 | asocket* create_remote_socket(unsigned id, atransport* t) { |
| 488 | if (id == 0) { |
Elliott Hughes | 4679a39 | 2018-10-19 13:59:44 -0700 | [diff] [blame] | 489 | LOG(FATAL) << "invalid remote socket id (0)"; |
Josh Gao | 52bd852 | 2016-05-17 16:55:06 -0700 | [diff] [blame] | 490 | } |
Josh Gao | e0361d1 | 2018-02-12 17:24:00 -0800 | [diff] [blame] | 491 | asocket* s = new asocket(); |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 492 | s->id = id; |
| 493 | s->enqueue = remote_socket_enqueue; |
| 494 | s->ready = remote_socket_ready; |
David 'Digit' Turner | 818d641 | 2013-12-13 14:09:44 +0100 | [diff] [blame] | 495 | s->shutdown = remote_socket_shutdown; |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 496 | s->close = remote_socket_close; |
| 497 | s->transport = t; |
| 498 | |
Yabin Cui | 7a3f8d6 | 2015-09-02 17:44:28 -0700 | [diff] [blame] | 499 | D("RS(%d): created", s->id); |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 500 | return s; |
| 501 | } |
| 502 | |
Josh Gao | d0fa13e | 2018-12-20 17:00:13 -0800 | [diff] [blame] | 503 | void connect_to_remote(asocket* s, std::string_view destination) { |
Yabin Cui | 7a3f8d6 | 2015-09-02 17:44:28 -0700 | [diff] [blame] | 504 | D("Connect_to_remote call RS(%d) fd=%d", s->id, s->fd); |
Josh Gao | 52bd852 | 2016-05-17 16:55:06 -0700 | [diff] [blame] | 505 | apacket* p = get_apacket(); |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 506 | |
Josh Gao | d0fa13e | 2018-12-20 17:00:13 -0800 | [diff] [blame] | 507 | LOG(VERBOSE) << "LS(" << s->id << ": connect(" << destination << ")"; |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 508 | p->msg.command = A_OPEN; |
| 509 | p->msg.arg0 = s->id; |
Josh Gao | f571fcb | 2018-02-05 18:49:10 -0800 | [diff] [blame] | 510 | |
Josh Gao | d0fa13e | 2018-12-20 17:00:13 -0800 | [diff] [blame] | 511 | // adbd used to expect a null-terminated string. |
| 512 | // Keep doing so to maintain backward compatibility. |
| 513 | p->payload.resize(destination.size() + 1); |
| 514 | memcpy(p->payload.data(), destination.data(), destination.size()); |
| 515 | p->payload[destination.size()] = '\0'; |
Josh Gao | f571fcb | 2018-02-05 18:49:10 -0800 | [diff] [blame] | 516 | p->msg.data_length = p->payload.size(); |
| 517 | |
Elliott Hughes | 4679a39 | 2018-10-19 13:59:44 -0700 | [diff] [blame] | 518 | CHECK_LE(p->msg.data_length, s->get_max_payload()); |
Josh Gao | f571fcb | 2018-02-05 18:49:10 -0800 | [diff] [blame] | 519 | |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 520 | send_packet(p, s->transport); |
| 521 | } |
| 522 | |
Josh Gao | 9f3064f | 2020-04-22 20:57:26 -0700 | [diff] [blame] | 523 | #if ADB_HOST |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 524 | /* this is used by magic sockets to rig local sockets to |
| 525 | send the go-ahead message when they connect */ |
Josh Gao | 52bd852 | 2016-05-17 16:55:06 -0700 | [diff] [blame] | 526 | static void local_socket_ready_notify(asocket* s) { |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 527 | s->ready = local_socket_ready; |
Yi Kong | aed415c | 2018-07-13 18:15:16 -0700 | [diff] [blame] | 528 | s->shutdown = nullptr; |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 529 | s->close = local_socket_close; |
Elliott Hughes | e67f1f8 | 2015-04-30 17:32:03 -0700 | [diff] [blame] | 530 | SendOkay(s->fd); |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 531 | 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 Gao | 52bd852 | 2016-05-17 16:55:06 -0700 | [diff] [blame] | 537 | static void local_socket_close_notify(asocket* s) { |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 538 | s->ready = local_socket_ready; |
Yi Kong | aed415c | 2018-07-13 18:15:16 -0700 | [diff] [blame] | 539 | s->shutdown = nullptr; |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 540 | s->close = local_socket_close; |
Elliott Hughes | e67f1f8 | 2015-04-30 17:32:03 -0700 | [diff] [blame] | 541 | SendFail(s->fd, "closed"); |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 542 | s->close(s); |
| 543 | } |
| 544 | |
Josh Gao | 27cb7dc | 2018-02-01 13:17:50 -0800 | [diff] [blame] | 545 | static unsigned unhex(const char* s, int len) { |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 546 | unsigned n = 0, c; |
| 547 | |
Josh Gao | 52bd852 | 2016-05-17 16:55:06 -0700 | [diff] [blame] | 548 | 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 Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 580 | } |
| 581 | |
| 582 | n = (n << 4) | c; |
| 583 | } |
| 584 | |
| 585 | return n; |
| 586 | } |
| 587 | |
David Pursell | 3f902aa | 2016-03-01 08:58:26 -0800 | [diff] [blame] | 588 | namespace internal { |
Scott Anderson | 2ca3e6b | 2012-05-30 18:11:27 -0700 | [diff] [blame] | 589 | |
Josh Gao | bd76720 | 2018-12-19 13:37:41 -0800 | [diff] [blame] | 590 | // Parses a host service string of the following format: |
David Pursell | 3f902aa | 2016-03-01 08:58:26 -0800 | [diff] [blame] | 591 | // * [tcp:|udp:]<serial>[:<port>]:<command> |
| 592 | // * <prefix>:<serial>:<command> |
| 593 | // Where <port> must be a base-10 number and <prefix> may be any of {usb,product,model,device}. |
Josh Gao | bd76720 | 2018-12-19 13:37:41 -0800 | [diff] [blame] | 594 | bool parse_host_service(std::string_view* out_serial, std::string_view* out_command, |
| 595 | std::string_view full_service) { |
| 596 | if (full_service.empty()) { |
| 597 | return false; |
| 598 | } |
Terence Haddock | 28e1390 | 2011-03-16 09:43:56 +0100 | [diff] [blame] | 599 | |
Josh Gao | bd76720 | 2018-12-19 13:37:41 -0800 | [diff] [blame] | 600 | std::string_view serial; |
| 601 | std::string_view command = full_service; |
| 602 | // Remove |count| bytes from the beginning of command and add them to |serial|. |
| 603 | auto consume = [&full_service, &serial, &command](size_t count) { |
| 604 | CHECK_LE(count, command.size()); |
| 605 | if (!serial.empty()) { |
| 606 | CHECK_EQ(serial.data() + serial.size(), command.data()); |
| 607 | } |
| 608 | |
| 609 | serial = full_service.substr(0, serial.size() + count); |
| 610 | command.remove_prefix(count); |
| 611 | }; |
| 612 | |
| 613 | // Remove the trailing : from serial, and assign the values to the output parameters. |
| 614 | auto finish = [out_serial, out_command, &serial, &command] { |
| 615 | if (serial.empty() || command.empty()) { |
| 616 | return false; |
| 617 | } |
| 618 | |
| 619 | CHECK_EQ(':', serial.back()); |
| 620 | serial.remove_suffix(1); |
| 621 | |
| 622 | *out_serial = serial; |
| 623 | *out_command = command; |
| 624 | return true; |
| 625 | }; |
| 626 | |
Jason Jeremy Iman | 8bde191 | 2019-07-19 12:44:39 +0900 | [diff] [blame] | 627 | static constexpr std::string_view prefixes[] = { |
| 628 | "usb:", "product:", "model:", "device:", "localfilesystem:"}; |
Josh Gao | bd76720 | 2018-12-19 13:37:41 -0800 | [diff] [blame] | 629 | for (std::string_view prefix : prefixes) { |
| 630 | if (command.starts_with(prefix)) { |
| 631 | consume(prefix.size()); |
| 632 | |
| 633 | size_t offset = command.find_first_of(':'); |
| 634 | if (offset == std::string::npos) { |
| 635 | return false; |
| 636 | } |
| 637 | consume(offset + 1); |
| 638 | return finish(); |
David Pursell | 3f902aa | 2016-03-01 08:58:26 -0800 | [diff] [blame] | 639 | } |
Scott Anderson | 3608d83 | 2012-05-31 12:04:23 -0700 | [diff] [blame] | 640 | } |
| 641 | |
David Pursell | 3f902aa | 2016-03-01 08:58:26 -0800 | [diff] [blame] | 642 | // For fastboot compatibility, ignore protocol prefixes. |
Josh Gao | bd76720 | 2018-12-19 13:37:41 -0800 | [diff] [blame] | 643 | if (command.starts_with("tcp:") || command.starts_with("udp:")) { |
| 644 | consume(4); |
| 645 | if (command.empty()) { |
| 646 | return false; |
David Pursell | 73d55aa | 2016-09-21 12:08:37 -0700 | [diff] [blame] | 647 | } |
| 648 | } |
Cody Schuffelen | a05b64d | 2019-01-04 18:51:11 -0800 | [diff] [blame] | 649 | if (command.starts_with("vsock:")) { |
| 650 | // vsock serials are vsock:cid:port, which have an extra colon compared to tcp. |
| 651 | size_t next_colon = command.find(':'); |
| 652 | if (next_colon == std::string::npos) { |
| 653 | return false; |
| 654 | } |
| 655 | consume(next_colon + 1); |
| 656 | } |
David Pursell | 73d55aa | 2016-09-21 12:08:37 -0700 | [diff] [blame] | 657 | |
Josh Gao | bd76720 | 2018-12-19 13:37:41 -0800 | [diff] [blame] | 658 | bool found_address = false; |
| 659 | if (command[0] == '[') { |
| 660 | // Read an IPv6 address. `adb connect` creates the serial number from the canonical |
| 661 | // network address so it will always have the [] delimiters. |
| 662 | size_t ipv6_end = command.find_first_of(']'); |
| 663 | if (ipv6_end != std::string::npos) { |
| 664 | consume(ipv6_end + 1); |
| 665 | if (command.empty()) { |
| 666 | // Nothing after the IPv6 address. |
| 667 | return false; |
| 668 | } else if (command[0] != ':') { |
| 669 | // Garbage after the IPv6 address. |
| 670 | return false; |
| 671 | } |
| 672 | consume(1); |
| 673 | found_address = true; |
| 674 | } |
Terence Haddock | 28e1390 | 2011-03-16 09:43:56 +0100 | [diff] [blame] | 675 | } |
David Pursell | 3f902aa | 2016-03-01 08:58:26 -0800 | [diff] [blame] | 676 | |
Josh Gao | bd76720 | 2018-12-19 13:37:41 -0800 | [diff] [blame] | 677 | if (!found_address) { |
| 678 | // Scan ahead to the next colon. |
| 679 | size_t offset = command.find_first_of(':'); |
| 680 | if (offset == std::string::npos) { |
| 681 | return false; |
Terence Haddock | 28e1390 | 2011-03-16 09:43:56 +0100 | [diff] [blame] | 682 | } |
Josh Gao | bd76720 | 2018-12-19 13:37:41 -0800 | [diff] [blame] | 683 | consume(offset + 1); |
| 684 | } |
| 685 | |
| 686 | // We're either at the beginning of a port, or the command itself. |
| 687 | // Look for a port in between colons. |
| 688 | size_t next_colon = command.find_first_of(':'); |
| 689 | if (next_colon == std::string::npos) { |
| 690 | // No colon, we must be at the command. |
| 691 | return finish(); |
| 692 | } |
| 693 | |
| 694 | bool port_valid = true; |
| 695 | if (command.size() <= next_colon) { |
| 696 | return false; |
| 697 | } |
| 698 | |
| 699 | std::string_view port = command.substr(0, next_colon); |
| 700 | for (auto digit : port) { |
| 701 | if (!isdigit(digit)) { |
| 702 | // Port isn't a number. |
| 703 | port_valid = false; |
| 704 | break; |
Terence Haddock | 28e1390 | 2011-03-16 09:43:56 +0100 | [diff] [blame] | 705 | } |
| 706 | } |
Josh Gao | bd76720 | 2018-12-19 13:37:41 -0800 | [diff] [blame] | 707 | |
| 708 | if (port_valid) { |
| 709 | consume(next_colon + 1); |
| 710 | } |
| 711 | return finish(); |
Terence Haddock | 28e1390 | 2011-03-16 09:43:56 +0100 | [diff] [blame] | 712 | } |
| 713 | |
David Pursell | 3f902aa | 2016-03-01 08:58:26 -0800 | [diff] [blame] | 714 | } // namespace internal |
| 715 | |
Josh Gao | 1ce9957 | 2018-03-07 16:52:28 -0800 | [diff] [blame] | 716 | static int smart_socket_enqueue(asocket* s, apacket::payload_type data) { |
Josh Gao | bd76720 | 2018-12-19 13:37:41 -0800 | [diff] [blame] | 717 | std::string_view service; |
| 718 | std::string_view serial; |
Josh Gao | b122b17 | 2017-08-16 16:57:01 -0700 | [diff] [blame] | 719 | TransportId transport_id = 0; |
Elliott Hughes | 3bd73c1 | 2015-05-05 13:10:43 -0700 | [diff] [blame] | 720 | TransportType type = kTransportAny; |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 721 | |
Josh Gao | 27cb7dc | 2018-02-01 13:17:50 -0800 | [diff] [blame] | 722 | D("SS(%d): enqueue %zu", s->id, data.size()); |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 723 | |
Josh Gao | 27cb7dc | 2018-02-01 13:17:50 -0800 | [diff] [blame] | 724 | if (s->smart_socket_data.empty()) { |
Josh Gao | 7c738cd | 2018-04-03 14:37:11 -0700 | [diff] [blame] | 725 | // TODO: Make this an IOVector? |
Josh Gao | 1ce9957 | 2018-03-07 16:52:28 -0800 | [diff] [blame] | 726 | s->smart_socket_data.assign(data.begin(), data.end()); |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 727 | } else { |
Josh Gao | 27cb7dc | 2018-02-01 13:17:50 -0800 | [diff] [blame] | 728 | std::copy(data.begin(), data.end(), std::back_inserter(s->smart_socket_data)); |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 729 | } |
| 730 | |
Josh Gao | 7e6683c | 2016-01-15 14:35:54 -0800 | [diff] [blame] | 731 | /* don't bother if we can't decode the length */ |
Josh Gao | 27cb7dc | 2018-02-01 13:17:50 -0800 | [diff] [blame] | 732 | if (s->smart_socket_data.size() < 4) { |
Josh Gao | 52bd852 | 2016-05-17 16:55:06 -0700 | [diff] [blame] | 733 | return 0; |
| 734 | } |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 735 | |
Josh Gao | 27cb7dc | 2018-02-01 13:17:50 -0800 | [diff] [blame] | 736 | uint32_t len = unhex(s->smart_socket_data.data(), 4); |
| 737 | if (len == 0 || len > MAX_PAYLOAD) { |
| 738 | D("SS(%d): bad size (%u)", s->id, len); |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 739 | goto fail; |
| 740 | } |
| 741 | |
Josh Gao | 27cb7dc | 2018-02-01 13:17:50 -0800 | [diff] [blame] | 742 | D("SS(%d): len is %u", s->id, len); |
Josh Gao | 7e6683c | 2016-01-15 14:35:54 -0800 | [diff] [blame] | 743 | /* can't do anything until we have the full header */ |
Josh Gao | 27cb7dc | 2018-02-01 13:17:50 -0800 | [diff] [blame] | 744 | if ((len + 4) > s->smart_socket_data.size()) { |
| 745 | D("SS(%d): waiting for %zu more bytes", s->id, len + 4 - s->smart_socket_data.size()); |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 746 | return 0; |
| 747 | } |
| 748 | |
Josh Gao | 27cb7dc | 2018-02-01 13:17:50 -0800 | [diff] [blame] | 749 | s->smart_socket_data[len + 4] = 0; |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 750 | |
Josh Gao | 27cb7dc | 2018-02-01 13:17:50 -0800 | [diff] [blame] | 751 | D("SS(%d): '%s'", s->id, (char*)(s->smart_socket_data.data() + 4)); |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 752 | |
Josh Gao | bd76720 | 2018-12-19 13:37:41 -0800 | [diff] [blame] | 753 | service = std::string_view(s->smart_socket_data).substr(4); |
Josh Gao | 727b07b | 2019-09-13 00:12:26 +0800 | [diff] [blame] | 754 | |
| 755 | // TODO: These should be handled in handle_host_request. |
Elliott Hughes | b4dc7be | 2019-05-03 09:02:45 -0700 | [diff] [blame] | 756 | if (android::base::ConsumePrefix(&service, "host-serial:")) { |
Terence Haddock | 28e1390 | 2011-03-16 09:43:56 +0100 | [diff] [blame] | 757 | // serial number should follow "host:" and could be a host:port string. |
Josh Gao | bd76720 | 2018-12-19 13:37:41 -0800 | [diff] [blame] | 758 | if (!internal::parse_host_service(&serial, &service, service)) { |
| 759 | LOG(ERROR) << "SS(" << s->id << "): failed to parse host service: " << service; |
| 760 | goto fail; |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 761 | } |
Elliott Hughes | b4dc7be | 2019-05-03 09:02:45 -0700 | [diff] [blame] | 762 | } else if (android::base::ConsumePrefix(&service, "host-transport-id:")) { |
Josh Gao | bd76720 | 2018-12-19 13:37:41 -0800 | [diff] [blame] | 763 | if (!ParseUint(&transport_id, service, &service)) { |
| 764 | LOG(ERROR) << "SS(" << s->id << "): failed to parse host transport id: " << service; |
Josh Gao | b122b17 | 2017-08-16 16:57:01 -0700 | [diff] [blame] | 765 | return -1; |
| 766 | } |
Elliott Hughes | b4dc7be | 2019-05-03 09:02:45 -0700 | [diff] [blame] | 767 | if (!android::base::ConsumePrefix(&service, ":")) { |
Josh Gao | bd76720 | 2018-12-19 13:37:41 -0800 | [diff] [blame] | 768 | LOG(ERROR) << "SS(" << s->id << "): host-transport-id without command"; |
| 769 | return -1; |
| 770 | } |
Elliott Hughes | b4dc7be | 2019-05-03 09:02:45 -0700 | [diff] [blame] | 771 | } else if (android::base::ConsumePrefix(&service, "host-usb:")) { |
Elliott Hughes | 3bd73c1 | 2015-05-05 13:10:43 -0700 | [diff] [blame] | 772 | type = kTransportUsb; |
Elliott Hughes | b4dc7be | 2019-05-03 09:02:45 -0700 | [diff] [blame] | 773 | } else if (android::base::ConsumePrefix(&service, "host-local:")) { |
Elliott Hughes | 3bd73c1 | 2015-05-05 13:10:43 -0700 | [diff] [blame] | 774 | type = kTransportLocal; |
Elliott Hughes | b4dc7be | 2019-05-03 09:02:45 -0700 | [diff] [blame] | 775 | } else if (android::base::ConsumePrefix(&service, "host:")) { |
Elliott Hughes | 3bd73c1 | 2015-05-05 13:10:43 -0700 | [diff] [blame] | 776 | type = kTransportAny; |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 777 | } else { |
Josh Gao | bd76720 | 2018-12-19 13:37:41 -0800 | [diff] [blame] | 778 | service = std::string_view{}; |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 779 | } |
| 780 | |
Josh Gao | bd76720 | 2018-12-19 13:37:41 -0800 | [diff] [blame] | 781 | if (!service.empty()) { |
Josh Gao | 52bd852 | 2016-05-17 16:55:06 -0700 | [diff] [blame] | 782 | asocket* s2; |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 783 | |
Josh Gao | 4039051 | 2018-08-07 14:14:21 -0700 | [diff] [blame] | 784 | // Some requests are handled immediately -- in that case the handle_host_request() routine |
| 785 | // has sent the OKAY or FAIL message and all we have to do is clean up. |
Josh Gao | 79797ec | 2019-02-20 20:37:26 -0800 | [diff] [blame] | 786 | auto host_request_result = handle_host_request( |
| 787 | service, type, serial.empty() ? nullptr : std::string(serial).c_str(), transport_id, |
| 788 | s->peer->fd, s); |
| 789 | |
| 790 | switch (host_request_result) { |
| 791 | case HostRequestResult::Handled: |
| 792 | LOG(VERBOSE) << "SS(" << s->id << "): handled host service '" << service << "'"; |
| 793 | goto fail; |
| 794 | |
| 795 | case HostRequestResult::SwitchedTransport: |
| 796 | D("SS(%d): okay transport", s->id); |
| 797 | s->smart_socket_data.clear(); |
| 798 | return 0; |
| 799 | |
| 800 | case HostRequestResult::Unhandled: |
| 801 | break; |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 802 | } |
| 803 | |
Josh Gao | 52bd852 | 2016-05-17 16:55:06 -0700 | [diff] [blame] | 804 | /* try to find a local service with this name. |
| 805 | ** if no such service exists, we'll fail out |
| 806 | ** and tear down here. |
| 807 | */ |
Josh Gao | bd76720 | 2018-12-19 13:37:41 -0800 | [diff] [blame] | 808 | // TODO: Convert to string_view. |
Josh Gao | 0ecc402 | 2019-02-22 13:41:55 -0800 | [diff] [blame] | 809 | s2 = host_service_to_socket(service, serial, transport_id); |
Yi Kong | aed415c | 2018-07-13 18:15:16 -0700 | [diff] [blame] | 810 | if (s2 == nullptr) { |
Josh Gao | bd76720 | 2018-12-19 13:37:41 -0800 | [diff] [blame] | 811 | LOG(VERBOSE) << "SS(" << s->id << "): couldn't create host service '" << service << "'"; |
Elliott Hughes | e67f1f8 | 2015-04-30 17:32:03 -0700 | [diff] [blame] | 812 | SendFail(s->peer->fd, "unknown host service"); |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 813 | goto fail; |
| 814 | } |
| 815 | |
Josh Gao | 52bd852 | 2016-05-17 16:55:06 -0700 | [diff] [blame] | 816 | /* we've connected to a local host service, |
| 817 | ** so we make our peer back into a regular |
| 818 | ** local socket and bind it to the new local |
| 819 | ** service socket, acknowledge the successful |
| 820 | ** connection, and close this smart socket now |
| 821 | ** that its work is done. |
| 822 | */ |
Elliott Hughes | e67f1f8 | 2015-04-30 17:32:03 -0700 | [diff] [blame] | 823 | SendOkay(s->peer->fd); |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 824 | |
| 825 | s->peer->ready = local_socket_ready; |
Elliott Hughes | 8d28e19 | 2015-10-07 14:55:10 -0700 | [diff] [blame] | 826 | s->peer->shutdown = nullptr; |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 827 | s->peer->close = local_socket_close; |
| 828 | s->peer->peer = s2; |
| 829 | s2->peer = s->peer; |
Yi Kong | aed415c | 2018-07-13 18:15:16 -0700 | [diff] [blame] | 830 | s->peer = nullptr; |
Josh Gao | 52bd852 | 2016-05-17 16:55:06 -0700 | [diff] [blame] | 831 | D("SS(%d): okay", s->id); |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 832 | s->close(s); |
| 833 | |
Josh Gao | 52bd852 | 2016-05-17 16:55:06 -0700 | [diff] [blame] | 834 | /* initial state is "ready" */ |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 835 | s2->ready(s2); |
| 836 | return 0; |
| 837 | } |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 838 | |
Josh Gao | 22d2b3e | 2016-10-27 14:01:08 -0700 | [diff] [blame] | 839 | if (!s->transport) { |
| 840 | SendFail(s->peer->fd, "device offline (no transport)"); |
| 841 | goto fail; |
Josh Gao | 704494b | 2018-05-04 16:04:49 -0700 | [diff] [blame] | 842 | } else if (!ConnectionStateIsOnline(s->transport->GetConnectionState())) { |
Josh Gao | 52bd852 | 2016-05-17 16:55:06 -0700 | [diff] [blame] | 843 | /* if there's no remote we fail the connection |
| 844 | ** right here and terminate it |
| 845 | */ |
Josh Gao | 22d2b3e | 2016-10-27 14:01:08 -0700 | [diff] [blame] | 846 | SendFail(s->peer->fd, "device offline (transport offline)"); |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 847 | goto fail; |
| 848 | } |
| 849 | |
Josh Gao | 52bd852 | 2016-05-17 16:55:06 -0700 | [diff] [blame] | 850 | /* instrument our peer to pass the success or fail |
| 851 | ** message back once it connects or closes, then |
| 852 | ** detach from it, request the connection, and |
| 853 | ** tear down |
| 854 | */ |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 855 | s->peer->ready = local_socket_ready_notify; |
Elliott Hughes | 8d28e19 | 2015-10-07 14:55:10 -0700 | [diff] [blame] | 856 | s->peer->shutdown = nullptr; |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 857 | s->peer->close = local_socket_close_notify; |
Yi Kong | aed415c | 2018-07-13 18:15:16 -0700 | [diff] [blame] | 858 | s->peer->peer = nullptr; |
Jeff Sharkey | 7b21637 | 2020-07-31 15:25:43 -0600 | [diff] [blame] | 859 | /* give them our transport and upref it */ |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 860 | s->peer->transport = s->transport; |
| 861 | |
Josh Gao | d0fa13e | 2018-12-20 17:00:13 -0800 | [diff] [blame] | 862 | connect_to_remote(s->peer, std::string_view(s->smart_socket_data).substr(4)); |
Yi Kong | aed415c | 2018-07-13 18:15:16 -0700 | [diff] [blame] | 863 | s->peer = nullptr; |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 864 | s->close(s); |
| 865 | return 1; |
| 866 | |
| 867 | fail: |
Josh Gao | 52bd852 | 2016-05-17 16:55:06 -0700 | [diff] [blame] | 868 | /* we're going to close our peer as a side-effect, so |
| 869 | ** return -1 to signal that state to the local socket |
| 870 | ** who is enqueueing against us |
| 871 | */ |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 872 | s->close(s); |
| 873 | return -1; |
| 874 | } |
| 875 | |
Josh Gao | 52bd852 | 2016-05-17 16:55:06 -0700 | [diff] [blame] | 876 | static void smart_socket_ready(asocket* s) { |
Yabin Cui | 7a3f8d6 | 2015-09-02 17:44:28 -0700 | [diff] [blame] | 877 | D("SS(%d): ready", s->id); |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 878 | } |
| 879 | |
Josh Gao | 52bd852 | 2016-05-17 16:55:06 -0700 | [diff] [blame] | 880 | static void smart_socket_close(asocket* s) { |
Yabin Cui | 7a3f8d6 | 2015-09-02 17:44:28 -0700 | [diff] [blame] | 881 | D("SS(%d): closed", s->id); |
Josh Gao | 52bd852 | 2016-05-17 16:55:06 -0700 | [diff] [blame] | 882 | if (s->peer) { |
Yi Kong | aed415c | 2018-07-13 18:15:16 -0700 | [diff] [blame] | 883 | s->peer->peer = nullptr; |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 884 | s->peer->close(s->peer); |
Yi Kong | aed415c | 2018-07-13 18:15:16 -0700 | [diff] [blame] | 885 | s->peer = nullptr; |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 886 | } |
Josh Gao | e0361d1 | 2018-02-12 17:24:00 -0800 | [diff] [blame] | 887 | delete s; |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 888 | } |
| 889 | |
Josh Gao | 52bd852 | 2016-05-17 16:55:06 -0700 | [diff] [blame] | 890 | static asocket* create_smart_socket(void) { |
Yabin Cui | 7a3f8d6 | 2015-09-02 17:44:28 -0700 | [diff] [blame] | 891 | D("Creating smart socket"); |
Josh Gao | e0361d1 | 2018-02-12 17:24:00 -0800 | [diff] [blame] | 892 | asocket* s = new asocket(); |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 893 | s->enqueue = smart_socket_enqueue; |
| 894 | s->ready = smart_socket_ready; |
Yi Kong | aed415c | 2018-07-13 18:15:16 -0700 | [diff] [blame] | 895 | s->shutdown = nullptr; |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 896 | s->close = smart_socket_close; |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 897 | |
Yabin Cui | 7a3f8d6 | 2015-09-02 17:44:28 -0700 | [diff] [blame] | 898 | D("SS(%d)", s->id); |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 899 | return s; |
| 900 | } |
| 901 | |
Josh Gao | 52bd852 | 2016-05-17 16:55:06 -0700 | [diff] [blame] | 902 | void connect_to_smartsocket(asocket* s) { |
Yabin Cui | 7a3f8d6 | 2015-09-02 17:44:28 -0700 | [diff] [blame] | 903 | D("Connecting to smart socket"); |
Josh Gao | 52bd852 | 2016-05-17 16:55:06 -0700 | [diff] [blame] | 904 | asocket* ss = create_smart_socket(); |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 905 | s->peer = ss; |
| 906 | ss->peer = s; |
| 907 | s->ready(s); |
| 908 | } |
Josh Gao | 9f3064f | 2020-04-22 20:57:26 -0700 | [diff] [blame] | 909 | #endif |
Tamas Berghammer | 3d2904c | 2015-07-13 19:12:28 +0100 | [diff] [blame] | 910 | |
| 911 | size_t asocket::get_max_payload() const { |
| 912 | size_t max_payload = MAX_PAYLOAD; |
| 913 | if (transport) { |
| 914 | max_payload = std::min(max_payload, transport->get_max_payload()); |
| 915 | } |
| 916 | if (peer && peer->transport) { |
| 917 | max_payload = std::min(max_payload, peer->transport->get_max_payload()); |
| 918 | } |
| 919 | return max_payload; |
| 920 | } |