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 | |
Dan Albert | 3313426 | 2015-03-19 15:21:08 -0700 | [diff] [blame] | 17 | #define TRACE_TAG TRACE_SOCKETS |
| 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 | |
Dan Albert | 7664901 | 2015-02-24 15:51:19 -0800 | [diff] [blame] | 28 | #if !ADB_HOST |
| 29 | #include "cutils/properties.h" |
| 30 | #endif |
Dan Albert | 3313426 | 2015-03-19 15:21:08 -0700 | [diff] [blame] | 31 | |
| 32 | #include "adb.h" |
| 33 | #include "adb_io.h" |
Dan Albert | 7664901 | 2015-02-24 15:51:19 -0800 | [diff] [blame] | 34 | #include "transport.h" |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 35 | |
| 36 | ADB_MUTEX_DEFINE( socket_list_lock ); |
| 37 | |
| 38 | static void local_socket_close_locked(asocket *s); |
| 39 | |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 40 | static unsigned local_socket_next_id = 1; |
| 41 | |
| 42 | static asocket local_socket_list = { |
| 43 | .next = &local_socket_list, |
| 44 | .prev = &local_socket_list, |
| 45 | }; |
| 46 | |
| 47 | /* the the list of currently closing local sockets. |
| 48 | ** these have no peer anymore, but still packets to |
| 49 | ** write to their fd. |
| 50 | */ |
| 51 | static asocket local_socket_closing_list = { |
| 52 | .next = &local_socket_closing_list, |
| 53 | .prev = &local_socket_closing_list, |
| 54 | }; |
| 55 | |
David 'Digit' Turner | 818d641 | 2013-12-13 14:09:44 +0100 | [diff] [blame] | 56 | // Parse the global list of sockets to find one with id |local_id|. |
| 57 | // If |peer_id| is not 0, also check that it is connected to a peer |
| 58 | // with id |peer_id|. Returns an asocket handle on success, NULL on failure. |
| 59 | asocket *find_local_socket(unsigned local_id, unsigned peer_id) |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 60 | { |
| 61 | asocket *s; |
| 62 | asocket *result = NULL; |
| 63 | |
| 64 | adb_mutex_lock(&socket_list_lock); |
André Goddard Rosa | 8182829 | 2010-06-12 11:40:20 -0300 | [diff] [blame] | 65 | for (s = local_socket_list.next; s != &local_socket_list; s = s->next) { |
David 'Digit' Turner | 818d641 | 2013-12-13 14:09:44 +0100 | [diff] [blame] | 66 | if (s->id != local_id) |
| 67 | continue; |
| 68 | if (peer_id == 0 || (s->peer && s->peer->id == peer_id)) { |
André Goddard Rosa | 8182829 | 2010-06-12 11:40:20 -0300 | [diff] [blame] | 69 | result = s; |
André Goddard Rosa | 8182829 | 2010-06-12 11:40:20 -0300 | [diff] [blame] | 70 | } |
David 'Digit' Turner | 818d641 | 2013-12-13 14:09:44 +0100 | [diff] [blame] | 71 | break; |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 72 | } |
| 73 | adb_mutex_unlock(&socket_list_lock); |
| 74 | |
| 75 | return result; |
| 76 | } |
| 77 | |
| 78 | static void |
| 79 | insert_local_socket(asocket* s, asocket* list) |
| 80 | { |
| 81 | s->next = list; |
| 82 | s->prev = s->next->prev; |
| 83 | s->prev->next = s; |
| 84 | s->next->prev = s; |
| 85 | } |
| 86 | |
| 87 | |
| 88 | void install_local_socket(asocket *s) |
| 89 | { |
| 90 | adb_mutex_lock(&socket_list_lock); |
| 91 | |
| 92 | s->id = local_socket_next_id++; |
David 'Digit' Turner | 818d641 | 2013-12-13 14:09:44 +0100 | [diff] [blame] | 93 | |
| 94 | // Socket ids should never be 0. |
| 95 | if (local_socket_next_id == 0) |
| 96 | local_socket_next_id = 1; |
| 97 | |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 98 | insert_local_socket(s, &local_socket_list); |
| 99 | |
| 100 | adb_mutex_unlock(&socket_list_lock); |
| 101 | } |
| 102 | |
| 103 | void remove_socket(asocket *s) |
| 104 | { |
| 105 | // socket_list_lock should already be held |
| 106 | if (s->prev && s->next) |
| 107 | { |
| 108 | s->prev->next = s->next; |
| 109 | s->next->prev = s->prev; |
| 110 | s->next = 0; |
| 111 | s->prev = 0; |
| 112 | s->id = 0; |
| 113 | } |
| 114 | } |
| 115 | |
| 116 | void close_all_sockets(atransport *t) |
| 117 | { |
| 118 | asocket *s; |
| 119 | |
| 120 | /* this is a little gross, but since s->close() *will* modify |
| 121 | ** the list out from under you, your options are limited. |
| 122 | */ |
| 123 | adb_mutex_lock(&socket_list_lock); |
| 124 | restart: |
| 125 | for(s = local_socket_list.next; s != &local_socket_list; s = s->next){ |
| 126 | if(s->transport == t || (s->peer && s->peer->transport == t)) { |
| 127 | local_socket_close_locked(s); |
| 128 | goto restart; |
| 129 | } |
| 130 | } |
| 131 | adb_mutex_unlock(&socket_list_lock); |
| 132 | } |
| 133 | |
| 134 | static int local_socket_enqueue(asocket *s, apacket *p) |
| 135 | { |
| 136 | D("LS(%d): enqueue %d\n", s->id, p->len); |
| 137 | |
| 138 | p->ptr = p->data; |
| 139 | |
| 140 | /* if there is already data queue'd, we will receive |
| 141 | ** events when it's time to write. just add this to |
| 142 | ** the tail |
| 143 | */ |
| 144 | if(s->pkt_first) { |
| 145 | goto enqueue; |
| 146 | } |
| 147 | |
| 148 | /* write as much as we can, until we |
| 149 | ** would block or there is an error/eof |
| 150 | */ |
| 151 | while(p->len > 0) { |
| 152 | int r = adb_write(s->fd, p->ptr, p->len); |
| 153 | if(r > 0) { |
| 154 | p->len -= r; |
| 155 | p->ptr += r; |
| 156 | continue; |
| 157 | } |
| 158 | if((r == 0) || (errno != EAGAIN)) { |
| 159 | D( "LS(%d): not ready, errno=%d: %s\n", s->id, errno, strerror(errno) ); |
| 160 | s->close(s); |
| 161 | return 1; /* not ready (error) */ |
| 162 | } else { |
| 163 | break; |
| 164 | } |
| 165 | } |
| 166 | |
| 167 | if(p->len == 0) { |
| 168 | put_apacket(p); |
| 169 | return 0; /* ready for more data */ |
| 170 | } |
| 171 | |
| 172 | enqueue: |
| 173 | p->next = 0; |
| 174 | if(s->pkt_first) { |
| 175 | s->pkt_last->next = p; |
| 176 | } else { |
| 177 | s->pkt_first = p; |
| 178 | } |
| 179 | s->pkt_last = p; |
| 180 | |
| 181 | /* make sure we are notified when we can drain the queue */ |
| 182 | fdevent_add(&s->fde, FDE_WRITE); |
| 183 | |
| 184 | return 1; /* not ready (backlog) */ |
| 185 | } |
| 186 | |
| 187 | static void local_socket_ready(asocket *s) |
| 188 | { |
Nanik Tolaram | b627a0e | 2015-02-18 22:53:37 +1100 | [diff] [blame] | 189 | /* far side is ready for data, pay attention to |
| 190 | readable events */ |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 191 | fdevent_add(&s->fde, FDE_READ); |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 192 | } |
| 193 | |
| 194 | static void local_socket_close(asocket *s) |
| 195 | { |
| 196 | adb_mutex_lock(&socket_list_lock); |
| 197 | local_socket_close_locked(s); |
| 198 | adb_mutex_unlock(&socket_list_lock); |
| 199 | } |
| 200 | |
| 201 | // be sure to hold the socket list lock when calling this |
| 202 | static void local_socket_destroy(asocket *s) |
| 203 | { |
| 204 | apacket *p, *n; |
Benoit Goby | f366b36 | 2012-03-16 14:50:07 -0700 | [diff] [blame] | 205 | int exit_on_close = s->exit_on_close; |
| 206 | |
JP Abgrall | 408fa57 | 2011-03-16 15:57:42 -0700 | [diff] [blame] | 207 | D("LS(%d): destroying fde.fd=%d\n", s->id, s->fde.fd); |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 208 | |
| 209 | /* IMPORTANT: the remove closes the fd |
| 210 | ** that belongs to this socket |
| 211 | */ |
| 212 | fdevent_remove(&s->fde); |
| 213 | |
| 214 | /* dispose of any unwritten data */ |
| 215 | for(p = s->pkt_first; p; p = n) { |
| 216 | D("LS(%d): discarding %d bytes\n", s->id, p->len); |
| 217 | n = p->next; |
| 218 | put_apacket(p); |
| 219 | } |
| 220 | remove_socket(s); |
| 221 | free(s); |
Benoit Goby | f366b36 | 2012-03-16 14:50:07 -0700 | [diff] [blame] | 222 | |
| 223 | if (exit_on_close) { |
| 224 | D("local_socket_destroy: exiting\n"); |
| 225 | exit(1); |
| 226 | } |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 227 | } |
| 228 | |
| 229 | |
| 230 | static void local_socket_close_locked(asocket *s) |
| 231 | { |
Nanik Tolaram | b627a0e | 2015-02-18 22:53:37 +1100 | [diff] [blame] | 232 | D("entered local_socket_close_locked. LS(%d) fd=%d\n", s->id, s->fd); |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 233 | if(s->peer) { |
JP Abgrall | 408fa57 | 2011-03-16 15:57:42 -0700 | [diff] [blame] | 234 | D("LS(%d): closing peer. peer->id=%d peer->fd=%d\n", |
| 235 | s->id, s->peer->id, s->peer->fd); |
David 'Digit' Turner | 818d641 | 2013-12-13 14:09:44 +0100 | [diff] [blame] | 236 | /* Note: it's important to call shutdown before disconnecting from |
| 237 | * the peer, this ensures that remote sockets can still get the id |
| 238 | * of the local socket they're connected to, to send a CLOSE() |
| 239 | * protocol event. */ |
| 240 | if (s->peer->shutdown) |
| 241 | s->peer->shutdown(s->peer); |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 242 | s->peer->peer = 0; |
| 243 | // tweak to avoid deadlock |
Tom Marlin | 49f1857 | 2011-05-13 13:24:55 -0500 | [diff] [blame] | 244 | if (s->peer->close == local_socket_close) { |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 245 | local_socket_close_locked(s->peer); |
Tom Marlin | 49f1857 | 2011-05-13 13:24:55 -0500 | [diff] [blame] | 246 | } else { |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 247 | s->peer->close(s->peer); |
Tom Marlin | 49f1857 | 2011-05-13 13:24:55 -0500 | [diff] [blame] | 248 | } |
| 249 | s->peer = 0; |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 250 | } |
| 251 | |
| 252 | /* If we are already closing, or if there are no |
| 253 | ** pending packets, destroy immediately |
| 254 | */ |
| 255 | if (s->closing || s->pkt_first == NULL) { |
| 256 | int id = s->id; |
| 257 | local_socket_destroy(s); |
| 258 | D("LS(%d): closed\n", id); |
| 259 | return; |
| 260 | } |
| 261 | |
| 262 | /* otherwise, put on the closing list |
| 263 | */ |
| 264 | D("LS(%d): closing\n", s->id); |
| 265 | s->closing = 1; |
| 266 | fdevent_del(&s->fde, FDE_READ); |
| 267 | remove_socket(s); |
JP Abgrall | 408fa57 | 2011-03-16 15:57:42 -0700 | [diff] [blame] | 268 | D("LS(%d): put on socket_closing_list fd=%d\n", s->id, s->fd); |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 269 | insert_local_socket(s, &local_socket_closing_list); |
| 270 | } |
| 271 | |
Dan Albert | bac3474 | 2015-02-25 17:51:28 -0800 | [diff] [blame] | 272 | static void local_socket_event_func(int fd, unsigned ev, void* _s) |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 273 | { |
Dan Albert | bac3474 | 2015-02-25 17:51:28 -0800 | [diff] [blame] | 274 | asocket* s = reinterpret_cast<asocket*>(_s); |
JP Abgrall | 408fa57 | 2011-03-16 15:57:42 -0700 | [diff] [blame] | 275 | D("LS(%d): event_func(fd=%d(==%d), ev=%04x)\n", s->id, s->fd, fd, ev); |
| 276 | |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 277 | /* put the FDE_WRITE processing before the FDE_READ |
| 278 | ** in order to simplify the code. |
| 279 | */ |
Dan Albert | bac3474 | 2015-02-25 17:51:28 -0800 | [diff] [blame] | 280 | if (ev & FDE_WRITE) { |
| 281 | apacket* p; |
| 282 | while ((p = s->pkt_first) != nullptr) { |
| 283 | while (p->len > 0) { |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 284 | int r = adb_write(fd, p->ptr, p->len); |
Dan Albert | bac3474 | 2015-02-25 17:51:28 -0800 | [diff] [blame] | 285 | if (r == -1) { |
| 286 | /* returning here is ok because FDE_READ will |
| 287 | ** be processed in the next iteration loop |
| 288 | */ |
| 289 | if (errno == EAGAIN) { |
| 290 | return; |
| 291 | } |
| 292 | } else if (r > 0) { |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 293 | p->ptr += r; |
| 294 | p->len -= r; |
| 295 | continue; |
| 296 | } |
Dan Albert | bac3474 | 2015-02-25 17:51:28 -0800 | [diff] [blame] | 297 | |
Christopher Tate | 5b811fa | 2011-06-10 11:38:37 -0700 | [diff] [blame] | 298 | D(" closing after write because r=%d and errno is %d\n", r, errno); |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 299 | s->close(s); |
| 300 | return; |
| 301 | } |
| 302 | |
Dan Albert | bac3474 | 2015-02-25 17:51:28 -0800 | [diff] [blame] | 303 | if (p->len == 0) { |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 304 | s->pkt_first = p->next; |
Dan Albert | bac3474 | 2015-02-25 17:51:28 -0800 | [diff] [blame] | 305 | if (s->pkt_first == 0) { |
| 306 | s->pkt_last = 0; |
| 307 | } |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 308 | put_apacket(p); |
| 309 | } |
| 310 | } |
| 311 | |
Dan Albert | bac3474 | 2015-02-25 17:51:28 -0800 | [diff] [blame] | 312 | /* if we sent the last packet of a closing socket, |
| 313 | ** we can now destroy it. |
| 314 | */ |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 315 | if (s->closing) { |
Christopher Tate | 5b811fa | 2011-06-10 11:38:37 -0700 | [diff] [blame] | 316 | D(" closing because 'closing' is set after write\n"); |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 317 | s->close(s); |
| 318 | return; |
| 319 | } |
| 320 | |
Dan Albert | bac3474 | 2015-02-25 17:51:28 -0800 | [diff] [blame] | 321 | /* no more packets queued, so we can ignore |
| 322 | ** writable events again and tell our peer |
| 323 | ** to resume writing |
| 324 | */ |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 325 | fdevent_del(&s->fde, FDE_WRITE); |
| 326 | s->peer->ready(s->peer); |
| 327 | } |
| 328 | |
| 329 | |
Dan Albert | bac3474 | 2015-02-25 17:51:28 -0800 | [diff] [blame] | 330 | if (ev & FDE_READ) { |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 331 | apacket *p = get_apacket(); |
| 332 | unsigned char *x = p->data; |
Tamas Berghammer | 3d2904c | 2015-07-13 19:12:28 +0100 | [diff] [blame] | 333 | const size_t max_payload = s->get_max_payload(); |
| 334 | size_t avail = max_payload; |
| 335 | int r = 0; |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 336 | int is_eof = 0; |
| 337 | |
Dan Albert | bac3474 | 2015-02-25 17:51:28 -0800 | [diff] [blame] | 338 | while (avail > 0) { |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 339 | r = adb_read(fd, x, avail); |
Dan Albert | bac3474 | 2015-02-25 17:51:28 -0800 | [diff] [blame] | 340 | D("LS(%d): post adb_read(fd=%d,...) r=%d (errno=%d) avail=%zu\n", |
| 341 | s->id, s->fd, r, r < 0 ? errno : 0, avail); |
| 342 | if (r == -1) { |
| 343 | if (errno == EAGAIN) { |
| 344 | break; |
| 345 | } |
| 346 | } else if (r > 0) { |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 347 | avail -= r; |
| 348 | x += r; |
| 349 | continue; |
| 350 | } |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 351 | |
Dan Albert | bac3474 | 2015-02-25 17:51:28 -0800 | [diff] [blame] | 352 | /* r = 0 or unhandled error */ |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 353 | is_eof = 1; |
| 354 | break; |
| 355 | } |
JP Abgrall | 408fa57 | 2011-03-16 15:57:42 -0700 | [diff] [blame] | 356 | D("LS(%d): fd=%d post avail loop. r=%d is_eof=%d forced_eof=%d\n", |
| 357 | s->id, s->fd, r, is_eof, s->fde.force_eof); |
Tamas Berghammer | 3d2904c | 2015-07-13 19:12:28 +0100 | [diff] [blame] | 358 | if ((avail == max_payload) || (s->peer == 0)) { |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 359 | put_apacket(p); |
| 360 | } else { |
Tamas Berghammer | 3d2904c | 2015-07-13 19:12:28 +0100 | [diff] [blame] | 361 | p->len = max_payload - avail; |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 362 | |
| 363 | r = s->peer->enqueue(s->peer, p); |
Dan Albert | bac3474 | 2015-02-25 17:51:28 -0800 | [diff] [blame] | 364 | D("LS(%d): fd=%d post peer->enqueue(). r=%d\n", s->id, s->fd, |
| 365 | r); |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 366 | |
Dan Albert | bac3474 | 2015-02-25 17:51:28 -0800 | [diff] [blame] | 367 | if (r < 0) { |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 368 | /* error return means they closed us as a side-effect |
| 369 | ** and we must return immediately. |
| 370 | ** |
| 371 | ** note that if we still have buffered packets, the |
| 372 | ** socket will be placed on the closing socket list. |
| 373 | ** this handler function will be called again |
| 374 | ** to process FDE_WRITE events. |
| 375 | */ |
| 376 | return; |
| 377 | } |
| 378 | |
Dan Albert | bac3474 | 2015-02-25 17:51:28 -0800 | [diff] [blame] | 379 | if (r > 0) { |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 380 | /* if the remote cannot accept further events, |
| 381 | ** we disable notification of READs. They'll |
| 382 | ** be enabled again when we get a call to ready() |
| 383 | */ |
| 384 | fdevent_del(&s->fde, FDE_READ); |
| 385 | } |
| 386 | } |
JP Abgrall | 112445b | 2011-04-12 22:01:58 -0700 | [diff] [blame] | 387 | /* Don't allow a forced eof if data is still there */ |
Dan Albert | bac3474 | 2015-02-25 17:51:28 -0800 | [diff] [blame] | 388 | if ((s->fde.force_eof && !r) || is_eof) { |
| 389 | D(" closing because is_eof=%d r=%d s->fde.force_eof=%d\n", |
| 390 | is_eof, r, s->fde.force_eof); |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 391 | s->close(s); |
| 392 | } |
| 393 | } |
| 394 | |
Dan Albert | bac3474 | 2015-02-25 17:51:28 -0800 | [diff] [blame] | 395 | if (ev & FDE_ERROR){ |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 396 | /* this should be caught be the next read or write |
| 397 | ** catching it here means we may skip the last few |
| 398 | ** bytes of readable data. |
| 399 | */ |
JP Abgrall | 408fa57 | 2011-03-16 15:57:42 -0700 | [diff] [blame] | 400 | D("LS(%d): FDE_ERROR (fd=%d)\n", s->id, s->fd); |
| 401 | |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 402 | return; |
| 403 | } |
| 404 | } |
| 405 | |
| 406 | asocket *create_local_socket(int fd) |
| 407 | { |
Dan Albert | bac3474 | 2015-02-25 17:51:28 -0800 | [diff] [blame] | 408 | asocket *s = reinterpret_cast<asocket*>(calloc(1, sizeof(asocket))); |
André Goddard Rosa | c419e2a | 2010-06-10 20:48:19 -0300 | [diff] [blame] | 409 | if (s == NULL) fatal("cannot allocate socket"); |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 410 | s->fd = fd; |
| 411 | s->enqueue = local_socket_enqueue; |
| 412 | s->ready = local_socket_ready; |
David 'Digit' Turner | 818d641 | 2013-12-13 14:09:44 +0100 | [diff] [blame] | 413 | s->shutdown = NULL; |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 414 | s->close = local_socket_close; |
JP Abgrall | 408fa57 | 2011-03-16 15:57:42 -0700 | [diff] [blame] | 415 | install_local_socket(s); |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 416 | |
| 417 | fdevent_install(&s->fde, fd, local_socket_event_func, s); |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 418 | D("LS(%d): created (fd=%d)\n", s->id, s->fd); |
| 419 | return s; |
| 420 | } |
| 421 | |
| 422 | asocket *create_local_service_socket(const char *name) |
| 423 | { |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 424 | #if !ADB_HOST |
| 425 | if (!strcmp(name,"jdwp")) { |
| 426 | return create_jdwp_service_socket(); |
| 427 | } |
| 428 | if (!strcmp(name,"track-jdwp")) { |
| 429 | return create_jdwp_tracker_service_socket(); |
| 430 | } |
| 431 | #endif |
Dan Pasanen | 9885881 | 2014-10-06 12:57:20 -0500 | [diff] [blame] | 432 | int fd = service_to_fd(name); |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 433 | if(fd < 0) return 0; |
| 434 | |
Dan Pasanen | 9885881 | 2014-10-06 12:57:20 -0500 | [diff] [blame] | 435 | asocket* s = create_local_socket(fd); |
JP Abgrall | 408fa57 | 2011-03-16 15:57:42 -0700 | [diff] [blame] | 436 | D("LS(%d): bound to '%s' via %d\n", s->id, name, fd); |
Benoit Goby | f366b36 | 2012-03-16 14:50:07 -0700 | [diff] [blame] | 437 | |
JP Abgrall | f91259a | 2012-03-30 13:19:11 -0700 | [diff] [blame] | 438 | #if !ADB_HOST |
Dan Pasanen | 9885881 | 2014-10-06 12:57:20 -0500 | [diff] [blame] | 439 | char debug[PROPERTY_VALUE_MAX]; |
jzhuan5 | 1297d22 | 2013-05-24 17:40:15 -0400 | [diff] [blame] | 440 | if (!strncmp(name, "root:", 5)) |
| 441 | property_get("ro.debuggable", debug, ""); |
| 442 | |
Dan Pasanen | 9885881 | 2014-10-06 12:57:20 -0500 | [diff] [blame] | 443 | if ((!strncmp(name, "root:", 5) && getuid() != 0 && strcmp(debug, "1") == 0) |
| 444 | || (!strncmp(name, "unroot:", 7) && getuid() == 0) |
Benoit Goby | aeceb51 | 2012-06-12 12:12:18 -0700 | [diff] [blame] | 445 | || !strncmp(name, "usb:", 4) |
| 446 | || !strncmp(name, "tcpip:", 6)) { |
Benoit Goby | f366b36 | 2012-03-16 14:50:07 -0700 | [diff] [blame] | 447 | D("LS(%d): enabling exit_on_close\n", s->id); |
| 448 | s->exit_on_close = 1; |
| 449 | } |
JP Abgrall | f91259a | 2012-03-30 13:19:11 -0700 | [diff] [blame] | 450 | #endif |
Benoit Goby | f366b36 | 2012-03-16 14:50:07 -0700 | [diff] [blame] | 451 | |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 452 | return s; |
| 453 | } |
| 454 | |
| 455 | #if ADB_HOST |
| 456 | static asocket *create_host_service_socket(const char *name, const char* serial) |
| 457 | { |
| 458 | asocket *s; |
| 459 | |
| 460 | s = host_service_to_socket(name, serial); |
| 461 | |
| 462 | if (s != NULL) { |
| 463 | D("LS(%d) bound to '%s'\n", s->id, name); |
| 464 | return s; |
| 465 | } |
| 466 | |
| 467 | return s; |
| 468 | } |
| 469 | #endif /* ADB_HOST */ |
| 470 | |
| 471 | /* a Remote socket is used to send/receive data to/from a given transport object |
| 472 | ** it needs to be closed when the transport is forcibly destroyed by the user |
| 473 | */ |
Elliott Hughes | 2d4121c | 2015-04-17 09:47:42 -0700 | [diff] [blame] | 474 | struct aremotesocket { |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 475 | asocket socket; |
| 476 | adisconnect disconnect; |
Elliott Hughes | 2d4121c | 2015-04-17 09:47:42 -0700 | [diff] [blame] | 477 | }; |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 478 | |
| 479 | static int remote_socket_enqueue(asocket *s, apacket *p) |
| 480 | { |
JP Abgrall | 408fa57 | 2011-03-16 15:57:42 -0700 | [diff] [blame] | 481 | D("entered remote_socket_enqueue RS(%d) WRITE fd=%d peer.fd=%d\n", |
| 482 | s->id, s->fd, s->peer->fd); |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 483 | p->msg.command = A_WRTE; |
| 484 | p->msg.arg0 = s->peer->id; |
| 485 | p->msg.arg1 = s->id; |
| 486 | p->msg.data_length = p->len; |
| 487 | send_packet(p, s->transport); |
| 488 | return 1; |
| 489 | } |
| 490 | |
| 491 | static void remote_socket_ready(asocket *s) |
| 492 | { |
JP Abgrall | 408fa57 | 2011-03-16 15:57:42 -0700 | [diff] [blame] | 493 | D("entered remote_socket_ready RS(%d) OKAY fd=%d peer.fd=%d\n", |
| 494 | s->id, s->fd, s->peer->fd); |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 495 | apacket *p = get_apacket(); |
| 496 | p->msg.command = A_OKAY; |
| 497 | p->msg.arg0 = s->peer->id; |
| 498 | p->msg.arg1 = s->id; |
| 499 | send_packet(p, s->transport); |
| 500 | } |
| 501 | |
David 'Digit' Turner | 818d641 | 2013-12-13 14:09:44 +0100 | [diff] [blame] | 502 | static void remote_socket_shutdown(asocket *s) |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 503 | { |
David 'Digit' Turner | 818d641 | 2013-12-13 14:09:44 +0100 | [diff] [blame] | 504 | D("entered remote_socket_shutdown RS(%d) CLOSE fd=%d peer->fd=%d\n", |
JP Abgrall | 408fa57 | 2011-03-16 15:57:42 -0700 | [diff] [blame] | 505 | s->id, s->fd, s->peer?s->peer->fd:-1); |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 506 | apacket *p = get_apacket(); |
| 507 | p->msg.command = A_CLSE; |
| 508 | if(s->peer) { |
| 509 | p->msg.arg0 = s->peer->id; |
David 'Digit' Turner | 818d641 | 2013-12-13 14:09:44 +0100 | [diff] [blame] | 510 | } |
| 511 | p->msg.arg1 = s->id; |
| 512 | send_packet(p, s->transport); |
| 513 | } |
| 514 | |
| 515 | static void remote_socket_close(asocket *s) |
| 516 | { |
| 517 | if (s->peer) { |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 518 | s->peer->peer = 0; |
JP Abgrall | 408fa57 | 2011-03-16 15:57:42 -0700 | [diff] [blame] | 519 | D("RS(%d) peer->close()ing peer->id=%d peer->fd=%d\n", |
| 520 | s->id, s->peer->id, s->peer->fd); |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 521 | s->peer->close(s->peer); |
| 522 | } |
David 'Digit' Turner | 818d641 | 2013-12-13 14:09:44 +0100 | [diff] [blame] | 523 | D("entered remote_socket_close RS(%d) CLOSE fd=%d peer->fd=%d\n", |
| 524 | s->id, s->fd, s->peer?s->peer->fd:-1); |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 525 | D("RS(%d): closed\n", s->id); |
| 526 | remove_transport_disconnect( s->transport, &((aremotesocket*)s)->disconnect ); |
| 527 | free(s); |
| 528 | } |
| 529 | |
| 530 | static void remote_socket_disconnect(void* _s, atransport* t) |
| 531 | { |
Dan Albert | bac3474 | 2015-02-25 17:51:28 -0800 | [diff] [blame] | 532 | asocket* s = reinterpret_cast<asocket*>(_s); |
| 533 | asocket* peer = s->peer; |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 534 | |
| 535 | D("remote_socket_disconnect RS(%d)\n", s->id); |
| 536 | if (peer) { |
| 537 | peer->peer = NULL; |
| 538 | peer->close(peer); |
| 539 | } |
| 540 | remove_transport_disconnect( s->transport, &((aremotesocket*)s)->disconnect ); |
| 541 | free(s); |
| 542 | } |
| 543 | |
David 'Digit' Turner | 818d641 | 2013-12-13 14:09:44 +0100 | [diff] [blame] | 544 | /* Create an asocket to exchange packets with a remote service through transport |
| 545 | |t|. Where |id| is the socket id of the corresponding service on the other |
| 546 | side of the transport (it is allocated by the remote side and _cannot_ be 0). |
| 547 | Returns a new non-NULL asocket handle. */ |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 548 | asocket *create_remote_socket(unsigned id, atransport *t) |
| 549 | { |
David 'Digit' Turner | 818d641 | 2013-12-13 14:09:44 +0100 | [diff] [blame] | 550 | if (id == 0) fatal("invalid remote socket id (0)"); |
Dan Albert | bac3474 | 2015-02-25 17:51:28 -0800 | [diff] [blame] | 551 | asocket* s = reinterpret_cast<asocket*>(calloc(1, sizeof(aremotesocket))); |
| 552 | adisconnect* dis = &reinterpret_cast<aremotesocket*>(s)->disconnect; |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 553 | |
André Goddard Rosa | c419e2a | 2010-06-10 20:48:19 -0300 | [diff] [blame] | 554 | if (s == NULL) fatal("cannot allocate socket"); |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 555 | s->id = id; |
| 556 | s->enqueue = remote_socket_enqueue; |
| 557 | s->ready = remote_socket_ready; |
David 'Digit' Turner | 818d641 | 2013-12-13 14:09:44 +0100 | [diff] [blame] | 558 | s->shutdown = remote_socket_shutdown; |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 559 | s->close = remote_socket_close; |
| 560 | s->transport = t; |
| 561 | |
| 562 | dis->func = remote_socket_disconnect; |
| 563 | dis->opaque = s; |
| 564 | add_transport_disconnect( t, dis ); |
| 565 | D("RS(%d): created\n", s->id); |
| 566 | return s; |
| 567 | } |
| 568 | |
| 569 | void connect_to_remote(asocket *s, const char *destination) |
| 570 | { |
JP Abgrall | 408fa57 | 2011-03-16 15:57:42 -0700 | [diff] [blame] | 571 | D("Connect_to_remote call RS(%d) fd=%d\n", s->id, s->fd); |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 572 | apacket *p = get_apacket(); |
Tamas Berghammer | 3d2904c | 2015-07-13 19:12:28 +0100 | [diff] [blame] | 573 | size_t len = strlen(destination) + 1; |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 574 | |
Tamas Berghammer | 3d2904c | 2015-07-13 19:12:28 +0100 | [diff] [blame] | 575 | if(len > (s->get_max_payload()-1)) { |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 576 | fatal("destination oversized"); |
| 577 | } |
| 578 | |
| 579 | D("LS(%d): connect('%s')\n", s->id, destination); |
| 580 | p->msg.command = A_OPEN; |
| 581 | p->msg.arg0 = s->id; |
| 582 | p->msg.data_length = len; |
| 583 | strcpy((char*) p->data, destination); |
| 584 | send_packet(p, s->transport); |
| 585 | } |
| 586 | |
| 587 | |
| 588 | /* this is used by magic sockets to rig local sockets to |
| 589 | send the go-ahead message when they connect */ |
| 590 | static void local_socket_ready_notify(asocket *s) |
| 591 | { |
| 592 | s->ready = local_socket_ready; |
David 'Digit' Turner | 818d641 | 2013-12-13 14:09:44 +0100 | [diff] [blame] | 593 | s->shutdown = NULL; |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 594 | s->close = local_socket_close; |
Elliott Hughes | e67f1f8 | 2015-04-30 17:32:03 -0700 | [diff] [blame] | 595 | SendOkay(s->fd); |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 596 | s->ready(s); |
| 597 | } |
| 598 | |
| 599 | /* this is used by magic sockets to rig local sockets to |
| 600 | send the failure message if they are closed before |
| 601 | connected (to avoid closing them without a status message) */ |
| 602 | static void local_socket_close_notify(asocket *s) |
| 603 | { |
| 604 | s->ready = local_socket_ready; |
David 'Digit' Turner | 818d641 | 2013-12-13 14:09:44 +0100 | [diff] [blame] | 605 | s->shutdown = NULL; |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 606 | s->close = local_socket_close; |
Elliott Hughes | e67f1f8 | 2015-04-30 17:32:03 -0700 | [diff] [blame] | 607 | SendFail(s->fd, "closed"); |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 608 | s->close(s); |
| 609 | } |
| 610 | |
Elliott Hughes | e67f1f8 | 2015-04-30 17:32:03 -0700 | [diff] [blame] | 611 | static unsigned unhex(unsigned char *s, int len) |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 612 | { |
| 613 | unsigned n = 0, c; |
| 614 | |
| 615 | while(len-- > 0) { |
| 616 | switch((c = *s++)) { |
| 617 | case '0': case '1': case '2': |
| 618 | case '3': case '4': case '5': |
| 619 | case '6': case '7': case '8': |
| 620 | case '9': |
| 621 | c -= '0'; |
| 622 | break; |
| 623 | case 'a': case 'b': case 'c': |
| 624 | case 'd': case 'e': case 'f': |
| 625 | c = c - 'a' + 10; |
| 626 | break; |
| 627 | case 'A': case 'B': case 'C': |
| 628 | case 'D': case 'E': case 'F': |
| 629 | c = c - 'A' + 10; |
| 630 | break; |
| 631 | default: |
| 632 | return 0xffffffff; |
| 633 | } |
| 634 | |
| 635 | n = (n << 4) | c; |
| 636 | } |
| 637 | |
| 638 | return n; |
| 639 | } |
| 640 | |
Elliott Hughes | e67f1f8 | 2015-04-30 17:32:03 -0700 | [diff] [blame] | 641 | #if ADB_HOST |
| 642 | |
Scott Anderson | 2ca3e6b | 2012-05-30 18:11:27 -0700 | [diff] [blame] | 643 | #define PREFIX(str) { str, sizeof(str) - 1 } |
| 644 | static const struct prefix_struct { |
| 645 | const char *str; |
| 646 | const size_t len; |
| 647 | } prefixes[] = { |
| 648 | PREFIX("usb:"), |
| 649 | PREFIX("product:"), |
| 650 | PREFIX("model:"), |
| 651 | PREFIX("device:"), |
| 652 | }; |
| 653 | static const int num_prefixes = (sizeof(prefixes) / sizeof(prefixes[0])); |
| 654 | |
Terence Haddock | 28e1390 | 2011-03-16 09:43:56 +0100 | [diff] [blame] | 655 | /* skip_host_serial return the position in a string |
| 656 | skipping over the 'serial' parameter in the ADB protocol, |
| 657 | where parameter string may be a host:port string containing |
| 658 | the protocol delimiter (colon). */ |
Elliott Hughes | e67f1f8 | 2015-04-30 17:32:03 -0700 | [diff] [blame] | 659 | static char *skip_host_serial(char *service) { |
Terence Haddock | 28e1390 | 2011-03-16 09:43:56 +0100 | [diff] [blame] | 660 | char *first_colon, *serial_end; |
Scott Anderson | 2ca3e6b | 2012-05-30 18:11:27 -0700 | [diff] [blame] | 661 | int i; |
Terence Haddock | 28e1390 | 2011-03-16 09:43:56 +0100 | [diff] [blame] | 662 | |
Scott Anderson | 2ca3e6b | 2012-05-30 18:11:27 -0700 | [diff] [blame] | 663 | for (i = 0; i < num_prefixes; i++) { |
| 664 | if (!strncmp(service, prefixes[i].str, prefixes[i].len)) |
| 665 | return strchr(service + prefixes[i].len, ':'); |
Scott Anderson | 3608d83 | 2012-05-31 12:04:23 -0700 | [diff] [blame] | 666 | } |
| 667 | |
Terence Haddock | 28e1390 | 2011-03-16 09:43:56 +0100 | [diff] [blame] | 668 | first_colon = strchr(service, ':'); |
| 669 | if (!first_colon) { |
| 670 | /* No colon in service string. */ |
| 671 | return NULL; |
| 672 | } |
| 673 | serial_end = first_colon; |
| 674 | if (isdigit(serial_end[1])) { |
| 675 | serial_end++; |
| 676 | while ((*serial_end) && isdigit(*serial_end)) { |
| 677 | serial_end++; |
| 678 | } |
| 679 | if ((*serial_end) != ':') { |
| 680 | // Something other than numbers was found, reset the end. |
| 681 | serial_end = first_colon; |
| 682 | } |
| 683 | } |
| 684 | return serial_end; |
| 685 | } |
| 686 | |
Elliott Hughes | e67f1f8 | 2015-04-30 17:32:03 -0700 | [diff] [blame] | 687 | #endif // ADB_HOST |
| 688 | |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 689 | static int smart_socket_enqueue(asocket *s, apacket *p) |
| 690 | { |
| 691 | unsigned len; |
| 692 | #if ADB_HOST |
| 693 | char *service = NULL; |
| 694 | char* serial = NULL; |
Elliott Hughes | 3bd73c1 | 2015-05-05 13:10:43 -0700 | [diff] [blame] | 695 | TransportType type = kTransportAny; |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 696 | #endif |
| 697 | |
| 698 | D("SS(%d): enqueue %d\n", s->id, p->len); |
| 699 | |
| 700 | if(s->pkt_first == 0) { |
| 701 | s->pkt_first = p; |
| 702 | s->pkt_last = p; |
| 703 | } else { |
Tamas Berghammer | 3d2904c | 2015-07-13 19:12:28 +0100 | [diff] [blame] | 704 | if((s->pkt_first->len + p->len) > s->get_max_payload()) { |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 705 | D("SS(%d): overflow\n", s->id); |
| 706 | put_apacket(p); |
| 707 | goto fail; |
| 708 | } |
| 709 | |
| 710 | memcpy(s->pkt_first->data + s->pkt_first->len, |
| 711 | p->data, p->len); |
| 712 | s->pkt_first->len += p->len; |
| 713 | put_apacket(p); |
| 714 | |
| 715 | p = s->pkt_first; |
| 716 | } |
| 717 | |
| 718 | /* don't bother if we can't decode the length */ |
| 719 | if(p->len < 4) return 0; |
| 720 | |
| 721 | len = unhex(p->data, 4); |
| 722 | if((len < 1) || (len > 1024)) { |
| 723 | D("SS(%d): bad size (%d)\n", s->id, len); |
| 724 | goto fail; |
| 725 | } |
| 726 | |
| 727 | D("SS(%d): len is %d\n", s->id, len ); |
| 728 | /* can't do anything until we have the full header */ |
| 729 | if((len + 4) > p->len) { |
| 730 | D("SS(%d): waiting for %d more bytes\n", s->id, len+4 - p->len); |
| 731 | return 0; |
| 732 | } |
| 733 | |
| 734 | p->data[len + 4] = 0; |
| 735 | |
| 736 | D("SS(%d): '%s'\n", s->id, (char*) (p->data + 4)); |
| 737 | |
| 738 | #if ADB_HOST |
| 739 | service = (char *)p->data + 4; |
| 740 | if(!strncmp(service, "host-serial:", strlen("host-serial:"))) { |
| 741 | char* serial_end; |
| 742 | service += strlen("host-serial:"); |
| 743 | |
Terence Haddock | 28e1390 | 2011-03-16 09:43:56 +0100 | [diff] [blame] | 744 | // serial number should follow "host:" and could be a host:port string. |
| 745 | serial_end = skip_host_serial(service); |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 746 | if (serial_end) { |
| 747 | *serial_end = 0; // terminate string |
| 748 | serial = service; |
| 749 | service = serial_end + 1; |
| 750 | } |
| 751 | } else if (!strncmp(service, "host-usb:", strlen("host-usb:"))) { |
Elliott Hughes | 3bd73c1 | 2015-05-05 13:10:43 -0700 | [diff] [blame] | 752 | type = kTransportUsb; |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 753 | service += strlen("host-usb:"); |
| 754 | } else if (!strncmp(service, "host-local:", strlen("host-local:"))) { |
Elliott Hughes | 3bd73c1 | 2015-05-05 13:10:43 -0700 | [diff] [blame] | 755 | type = kTransportLocal; |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 756 | service += strlen("host-local:"); |
| 757 | } else if (!strncmp(service, "host:", strlen("host:"))) { |
Elliott Hughes | 3bd73c1 | 2015-05-05 13:10:43 -0700 | [diff] [blame] | 758 | type = kTransportAny; |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 759 | service += strlen("host:"); |
| 760 | } else { |
| 761 | service = NULL; |
| 762 | } |
| 763 | |
| 764 | if (service) { |
| 765 | asocket *s2; |
| 766 | |
| 767 | /* some requests are handled immediately -- in that |
| 768 | ** case the handle_host_request() routine has sent |
| 769 | ** the OKAY or FAIL message and all we have to do |
| 770 | ** is clean up. |
| 771 | */ |
Elliott Hughes | 3bd73c1 | 2015-05-05 13:10:43 -0700 | [diff] [blame] | 772 | if(handle_host_request(service, type, serial, s->peer->fd, s) == 0) { |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 773 | /* XXX fail message? */ |
| 774 | D( "SS(%d): handled host service '%s'\n", s->id, service ); |
| 775 | goto fail; |
| 776 | } |
| 777 | if (!strncmp(service, "transport", strlen("transport"))) { |
| 778 | D( "SS(%d): okay transport\n", s->id ); |
| 779 | p->len = 0; |
| 780 | return 0; |
| 781 | } |
| 782 | |
| 783 | /* try to find a local service with this name. |
| 784 | ** if no such service exists, we'll fail out |
| 785 | ** and tear down here. |
| 786 | */ |
| 787 | s2 = create_host_service_socket(service, serial); |
| 788 | if(s2 == 0) { |
| 789 | D( "SS(%d): couldn't create host service '%s'\n", s->id, service ); |
Elliott Hughes | e67f1f8 | 2015-04-30 17:32:03 -0700 | [diff] [blame] | 790 | SendFail(s->peer->fd, "unknown host service"); |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 791 | goto fail; |
| 792 | } |
| 793 | |
| 794 | /* we've connected to a local host service, |
| 795 | ** so we make our peer back into a regular |
| 796 | ** local socket and bind it to the new local |
| 797 | ** service socket, acknowledge the successful |
| 798 | ** connection, and close this smart socket now |
| 799 | ** that its work is done. |
| 800 | */ |
Elliott Hughes | e67f1f8 | 2015-04-30 17:32:03 -0700 | [diff] [blame] | 801 | SendOkay(s->peer->fd); |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 802 | |
| 803 | s->peer->ready = local_socket_ready; |
David 'Digit' Turner | 818d641 | 2013-12-13 14:09:44 +0100 | [diff] [blame] | 804 | s->peer->shutdown = NULL; |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 805 | s->peer->close = local_socket_close; |
| 806 | s->peer->peer = s2; |
| 807 | s2->peer = s->peer; |
| 808 | s->peer = 0; |
| 809 | D( "SS(%d): okay\n", s->id ); |
| 810 | s->close(s); |
| 811 | |
| 812 | /* initial state is "ready" */ |
| 813 | s2->ready(s2); |
| 814 | return 0; |
| 815 | } |
| 816 | #else /* !ADB_HOST */ |
| 817 | if (s->transport == NULL) { |
Elliott Hughes | 7be29c8 | 2015-04-16 22:54:44 -0700 | [diff] [blame] | 818 | std::string error_msg = "unknown failure"; |
Dan Albert | dcd78a1 | 2015-05-18 16:43:57 -0700 | [diff] [blame] | 819 | s->transport = |
| 820 | acquire_one_transport(kCsAny, kTransportAny, NULL, &error_msg); |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 821 | |
| 822 | if (s->transport == NULL) { |
Elliott Hughes | e67f1f8 | 2015-04-30 17:32:03 -0700 | [diff] [blame] | 823 | SendFail(s->peer->fd, error_msg); |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 824 | goto fail; |
| 825 | } |
| 826 | } |
| 827 | #endif |
| 828 | |
Dan Albert | dcd78a1 | 2015-05-18 16:43:57 -0700 | [diff] [blame] | 829 | if(!(s->transport) || (s->transport->connection_state == kCsOffline)) { |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 830 | /* if there's no remote we fail the connection |
| 831 | ** right here and terminate it |
| 832 | */ |
Elliott Hughes | e67f1f8 | 2015-04-30 17:32:03 -0700 | [diff] [blame] | 833 | SendFail(s->peer->fd, "device offline (x)"); |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 834 | goto fail; |
| 835 | } |
| 836 | |
| 837 | |
| 838 | /* instrument our peer to pass the success or fail |
| 839 | ** message back once it connects or closes, then |
| 840 | ** detach from it, request the connection, and |
| 841 | ** tear down |
| 842 | */ |
| 843 | s->peer->ready = local_socket_ready_notify; |
David 'Digit' Turner | 818d641 | 2013-12-13 14:09:44 +0100 | [diff] [blame] | 844 | s->peer->shutdown = NULL; |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 845 | s->peer->close = local_socket_close_notify; |
| 846 | s->peer->peer = 0; |
| 847 | /* give him our transport and upref it */ |
| 848 | s->peer->transport = s->transport; |
| 849 | |
| 850 | connect_to_remote(s->peer, (char*) (p->data + 4)); |
| 851 | s->peer = 0; |
| 852 | s->close(s); |
| 853 | return 1; |
| 854 | |
| 855 | fail: |
| 856 | /* we're going to close our peer as a side-effect, so |
| 857 | ** return -1 to signal that state to the local socket |
| 858 | ** who is enqueueing against us |
| 859 | */ |
| 860 | s->close(s); |
| 861 | return -1; |
| 862 | } |
| 863 | |
| 864 | static void smart_socket_ready(asocket *s) |
| 865 | { |
| 866 | D("SS(%d): ready\n", s->id); |
| 867 | } |
| 868 | |
| 869 | static void smart_socket_close(asocket *s) |
| 870 | { |
| 871 | D("SS(%d): closed\n", s->id); |
| 872 | if(s->pkt_first){ |
| 873 | put_apacket(s->pkt_first); |
| 874 | } |
| 875 | if(s->peer) { |
| 876 | s->peer->peer = 0; |
| 877 | s->peer->close(s->peer); |
Tom Marlin | 49f1857 | 2011-05-13 13:24:55 -0500 | [diff] [blame] | 878 | s->peer = 0; |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 879 | } |
| 880 | free(s); |
| 881 | } |
| 882 | |
Benoit Goby | 9470c2f | 2013-02-20 15:04:53 -0800 | [diff] [blame] | 883 | static asocket *create_smart_socket(void) |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 884 | { |
| 885 | D("Creating smart socket \n"); |
Dan Albert | bac3474 | 2015-02-25 17:51:28 -0800 | [diff] [blame] | 886 | asocket *s = reinterpret_cast<asocket*>(calloc(1, sizeof(asocket))); |
André Goddard Rosa | c419e2a | 2010-06-10 20:48:19 -0300 | [diff] [blame] | 887 | if (s == NULL) fatal("cannot allocate socket"); |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 888 | s->enqueue = smart_socket_enqueue; |
| 889 | s->ready = smart_socket_ready; |
David 'Digit' Turner | 818d641 | 2013-12-13 14:09:44 +0100 | [diff] [blame] | 890 | s->shutdown = NULL; |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 891 | s->close = smart_socket_close; |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 892 | |
Benoit Goby | 9470c2f | 2013-02-20 15:04:53 -0800 | [diff] [blame] | 893 | D("SS(%d)\n", s->id); |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 894 | return s; |
| 895 | } |
| 896 | |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 897 | void connect_to_smartsocket(asocket *s) |
| 898 | { |
| 899 | D("Connecting to smart socket \n"); |
Benoit Goby | 9470c2f | 2013-02-20 15:04:53 -0800 | [diff] [blame] | 900 | asocket *ss = create_smart_socket(); |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 901 | s->peer = ss; |
| 902 | ss->peer = s; |
| 903 | s->ready(s); |
| 904 | } |
Tamas Berghammer | 3d2904c | 2015-07-13 19:12:28 +0100 | [diff] [blame] | 905 | |
| 906 | size_t asocket::get_max_payload() const { |
| 907 | size_t max_payload = MAX_PAYLOAD; |
| 908 | if (transport) { |
| 909 | max_payload = std::min(max_payload, transport->get_max_payload()); |
| 910 | } |
| 911 | if (peer && peer->transport) { |
| 912 | max_payload = std::min(max_payload, peer->transport->get_max_payload()); |
| 913 | } |
| 914 | return max_payload; |
| 915 | } |