blob: f6c9df4e8abc7d901be678848ee828517c7075a3 [file] [log] [blame]
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -08001/*
2 * Copyright (C) 2007 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
Yabin Cui19bec5b2015-09-22 15:52:57 -070017#define TRACE_TAG TRANSPORT
Dan Albertdb6fe642015-03-19 15:21:08 -070018
19#include "sysdeps.h"
20#include "transport.h"
21
Dan Albertb302d122015-02-24 15:51:19 -080022#include <errno.h>
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -080023#include <stdio.h>
24#include <stdlib.h>
25#include <string.h>
Dan Albertb302d122015-02-24 15:51:19 -080026#include <sys/types.h>
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -080027
Elliott Hughesf55ead92015-12-04 22:00:26 -080028#include <android-base/stringprintf.h>
Elliott Hughes43df1092015-07-23 17:12:58 -070029#include <cutils/sockets.h>
Elliott Hughesfb596842015-05-01 17:04:38 -070030
Dan Albertb302d122015-02-24 15:51:19 -080031#if !ADB_HOST
32#include "cutils/properties.h"
33#endif
Dan Albertdb6fe642015-03-19 15:21:08 -070034
35#include "adb.h"
36#include "adb_io.h"
Elliott Hughes43df1092015-07-23 17:12:58 -070037#include "adb_utils.h"
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -080038
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -080039#if ADB_HOST
Stefan Hilzinger1ec03422010-04-26 10:17:43 +010040/* we keep a list of opened transports. The atransport struct knows to which
41 * local transport it is connected. The list is used to detect when we're
42 * trying to connect twice to a given local transport.
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -080043 */
David 'Digit' Turnerb0f0a462014-03-13 11:21:58 +010044#define ADB_LOCAL_TRANSPORT_MAX 64
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -080045
46ADB_MUTEX_DEFINE( local_transports_lock );
47
48static atransport* local_transports[ ADB_LOCAL_TRANSPORT_MAX ];
49#endif /* ADB_HOST */
50
51static int remote_read(apacket *p, atransport *t)
52{
Dan Albert66a91b02015-02-24 21:26:58 -080053 if(!ReadFdExactly(t->sfd, &p->msg, sizeof(amessage))){
Yabin Cui815ad882015-09-02 17:44:28 -070054 D("remote local: read terminated (message)");
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -080055 return -1;
56 }
57
Tamas Berghammera1c60c02015-07-13 19:12:28 +010058 if(check_header(p, t)) {
Yabin Cui815ad882015-09-02 17:44:28 -070059 D("bad header: terminated (data)");
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -080060 return -1;
61 }
62
Dan Albert66a91b02015-02-24 21:26:58 -080063 if(!ReadFdExactly(t->sfd, p->data, p->msg.data_length)){
Yabin Cui815ad882015-09-02 17:44:28 -070064 D("remote local: terminated (data)");
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -080065 return -1;
66 }
67
68 if(check_data(p)) {
Yabin Cui815ad882015-09-02 17:44:28 -070069 D("bad data: terminated (data)");
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -080070 return -1;
71 }
72
73 return 0;
74}
75
76static int remote_write(apacket *p, atransport *t)
77{
78 int length = p->msg.data_length;
79
Dan Albert66a91b02015-02-24 21:26:58 -080080 if(!WriteFdExactly(t->sfd, &p->msg, sizeof(amessage) + length)) {
Yabin Cui815ad882015-09-02 17:44:28 -070081 D("remote local: write terminated");
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -080082 return -1;
83 }
84
85 return 0;
86}
87
Elliott Hughes43df1092015-07-23 17:12:58 -070088void local_connect(int port) {
89 std::string dummy;
90 local_connect_arbitrary_ports(port-1, port, &dummy);
Stefan Hilzinger1ec03422010-04-26 10:17:43 +010091}
92
Elliott Hughes43df1092015-07-23 17:12:58 -070093int local_connect_arbitrary_ports(int console_port, int adb_port, std::string* error) {
94 int fd = -1;
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -080095
96#if ADB_HOST
Yabin Cuid802bcf2015-07-31 14:10:54 -070097 if (find_emulator_transport_by_adb_port(adb_port) != nullptr) {
98 return -1;
99 }
100
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -0800101 const char *host = getenv("ADBHOST");
102 if (host) {
Elliott Hughes43df1092015-07-23 17:12:58 -0700103 fd = network_connect(host, adb_port, SOCK_STREAM, 0, error);
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -0800104 }
105#endif
106 if (fd < 0) {
Spencer Low753d4852015-07-30 23:07:55 -0700107 fd = network_loopback_client(adb_port, SOCK_STREAM, error);
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -0800108 }
109
110 if (fd >= 0) {
Yabin Cui815ad882015-09-02 17:44:28 -0700111 D("client: connected on remote on fd %d", fd);
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -0800112 close_on_exec(fd);
113 disable_tcp_nagle(fd);
Elliott Hughesfb596842015-05-01 17:04:38 -0700114 std::string serial = android::base::StringPrintf("emulator-%d", console_port);
Yabin Cuid802bcf2015-07-31 14:10:54 -0700115 if (register_socket_transport(fd, serial.c_str(), adb_port, 1) == 0) {
116 return 0;
117 }
118 adb_close(fd);
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -0800119 }
120 return -1;
121}
122
Yabin Cui5fe6d0d2015-08-11 13:40:42 -0700123#if ADB_HOST
Josh Gao382ea6e2016-02-12 14:31:15 -0800124static void client_socket_thread(void* x) {
Siva Velusamy2669cf92015-08-28 16:37:29 -0700125 adb_thread_setname("client_socket_thread");
Yabin Cui815ad882015-09-02 17:44:28 -0700126 D("transport: client_socket_thread() starting");
Yabin Cuid802bcf2015-07-31 14:10:54 -0700127 while (true) {
128 int port = DEFAULT_ADB_LOCAL_TRANSPORT_PORT;
129 int count = ADB_LOCAL_TRANSPORT_MAX;
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -0800130
Yabin Cuid802bcf2015-07-31 14:10:54 -0700131 // Try to connect to any number of running emulator instances.
132 for ( ; count > 0; count--, port += 2 ) {
133 local_connect(port);
134 }
135 sleep(1);
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -0800136 }
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -0800137}
138
Yabin Cui5fe6d0d2015-08-11 13:40:42 -0700139#else // ADB_HOST
140
Josh Gao382ea6e2016-02-12 14:31:15 -0800141static void server_socket_thread(void* arg) {
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -0800142 int serverfd, fd;
Erik Kline3c8d44d2015-12-01 17:27:59 +0900143 sockaddr_storage ss;
144 sockaddr *addrp = reinterpret_cast<sockaddr*>(&ss);
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -0800145 socklen_t alen;
Elliott Hughes9c0d9402014-01-16 10:53:11 -0800146 int port = (int) (uintptr_t) arg;
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -0800147
Siva Velusamy2669cf92015-08-28 16:37:29 -0700148 adb_thread_setname("server socket");
Yabin Cui815ad882015-09-02 17:44:28 -0700149 D("transport: server_socket_thread() starting");
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -0800150 serverfd = -1;
151 for(;;) {
152 if(serverfd == -1) {
Spencer Low753d4852015-07-30 23:07:55 -0700153 std::string error;
154 serverfd = network_inaddr_any_server(port, SOCK_STREAM, &error);
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -0800155 if(serverfd < 0) {
Yabin Cui815ad882015-09-02 17:44:28 -0700156 D("server: cannot bind socket yet: %s", error.c_str());
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -0800157 adb_sleep_ms(1000);
158 continue;
159 }
160 close_on_exec(serverfd);
161 }
162
Erik Kline3c8d44d2015-12-01 17:27:59 +0900163 alen = sizeof(ss);
Yabin Cui815ad882015-09-02 17:44:28 -0700164 D("server: trying to get new connection from %d", port);
Erik Kline3c8d44d2015-12-01 17:27:59 +0900165 fd = adb_socket_accept(serverfd, addrp, &alen);
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -0800166 if(fd >= 0) {
Yabin Cui815ad882015-09-02 17:44:28 -0700167 D("server: new connection on fd %d", fd);
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -0800168 close_on_exec(fd);
169 disable_tcp_nagle(fd);
Mike Lockwood26b88e32009-08-24 15:58:40 -0700170 register_socket_transport(fd, "host", port, 1);
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -0800171 }
172 }
Yabin Cui815ad882015-09-02 17:44:28 -0700173 D("transport: server_socket_thread() exiting");
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -0800174}
175
Vladimir Chtchetkine4bdc7762011-12-13 12:19:29 -0800176/* This is relevant only for ADB daemon running inside the emulator. */
Vladimir Chtchetkine7c9339d2011-12-09 15:49:47 -0800177/*
178 * Redefine open and write for qemu_pipe.h that contains inlined references
179 * to those routines. We will redifine them back after qemu_pipe.h inclusion.
180 */
181#undef open
182#undef write
183#define open adb_open
184#define write adb_write
185#include <hardware/qemu_pipe.h>
186#undef open
187#undef write
188#define open ___xxx_open
189#define write ___xxx_write
190
191/* A worker thread that monitors host connections, and registers a transport for
192 * every new host connection. This thread replaces server_socket_thread on
193 * condition that adbd daemon runs inside the emulator, and emulator uses QEMUD
194 * pipe to communicate with adbd daemon inside the guest. This is done in order
195 * to provide more robust communication channel between ADB host and guest. The
196 * main issue with server_socket_thread approach is that it runs on top of TCP,
197 * and thus is sensitive to network disruptions. For instance, the
198 * ConnectionManager may decide to reset all network connections, in which case
199 * the connection between ADB host and guest will be lost. To make ADB traffic
200 * independent from the network, we use here 'adb' QEMUD service to transfer data
201 * between the host, and the guest. See external/qemu/android/adb-*.* that
202 * implements the emulator's side of the protocol. Another advantage of using
203 * QEMUD approach is that ADB will be up much sooner, since it doesn't depend
204 * anymore on network being set up.
205 * The guest side of the protocol contains the following phases:
206 * - Connect with adb QEMUD service. In this phase a handle to 'adb' QEMUD service
207 * is opened, and it becomes clear whether or not emulator supports that
208 * protocol.
209 * - Wait for the ADB host to create connection with the guest. This is done by
210 * sending an 'accept' request to the adb QEMUD service, and waiting on
211 * response.
212 * - When new ADB host connection is accepted, the connection with adb QEMUD
213 * service is registered as the transport, and a 'start' request is sent to the
214 * adb QEMUD service, indicating that the guest is ready to receive messages.
215 * Note that the guest will ignore messages sent down from the emulator before
216 * the transport registration is completed. That's why we need to send the
217 * 'start' request after the transport is registered.
218 */
Josh Gao382ea6e2016-02-12 14:31:15 -0800219static void qemu_socket_thread(void* arg) {
220 /* 'accept' request to the adb QEMUD service. */
221 static const char _accept_req[] = "accept";
222 /* 'start' request to the adb QEMUD service. */
223 static const char _start_req[] = "start";
224 /* 'ok' reply from the adb QEMUD service. */
225 static const char _ok_resp[] = "ok";
Vladimir Chtchetkine7c9339d2011-12-09 15:49:47 -0800226
Elliott Hughes9c0d9402014-01-16 10:53:11 -0800227 const int port = (int) (uintptr_t) arg;
bohuf4ae8fa2016-02-29 13:13:19 -0800228 int fd;
Vladimir Chtchetkine7c9339d2011-12-09 15:49:47 -0800229 char tmp[256];
230 char con_name[32];
231
Siva Velusamy2669cf92015-08-28 16:37:29 -0700232 adb_thread_setname("qemu socket");
Yabin Cui815ad882015-09-02 17:44:28 -0700233 D("transport: qemu_socket_thread() starting");
Vladimir Chtchetkine7c9339d2011-12-09 15:49:47 -0800234
235 /* adb QEMUD service connection request. */
236 snprintf(con_name, sizeof(con_name), "qemud:adb:%d", port);
237
238 /* Connect to the adb QEMUD service. */
239 fd = qemu_pipe_open(con_name);
240 if (fd < 0) {
241 /* This could be an older version of the emulator, that doesn't
242 * implement adb QEMUD service. Fall back to the old TCP way. */
Yabin Cui815ad882015-09-02 17:44:28 -0700243 D("adb service is not available. Falling back to TCP socket.");
Elliott Hughesf2517142015-05-05 13:41:21 -0700244 adb_thread_create(server_socket_thread, arg);
Josh Gao382ea6e2016-02-12 14:31:15 -0800245 return;
Vladimir Chtchetkine7c9339d2011-12-09 15:49:47 -0800246 }
247
248 for(;;) {
249 /*
250 * Wait till the host creates a new connection.
251 */
252
253 /* Send the 'accept' request. */
bohuf4ae8fa2016-02-29 13:13:19 -0800254 if (WriteFdExactly(fd, _accept_req, strlen(_accept_req))) {
Vladimir Chtchetkine7c9339d2011-12-09 15:49:47 -0800255 /* Wait for the response. In the response we expect 'ok' on success,
256 * or 'ko' on failure. */
bohuf4ae8fa2016-02-29 13:13:19 -0800257 if (!ReadFdExactly(fd, tmp, 2) || memcmp(tmp, _ok_resp, 2)) {
Yabin Cui815ad882015-09-02 17:44:28 -0700258 D("Accepting ADB host connection has failed.");
Vladimir Chtchetkine7c9339d2011-12-09 15:49:47 -0800259 adb_close(fd);
260 } else {
261 /* Host is connected. Register the transport, and start the
262 * exchange. */
Prathmesh Prabhuefa49792016-03-09 13:51:30 -0800263 std::string serial = android::base::StringPrintf("host-%d", fd);
264 register_socket_transport(fd, serial.c_str(), port, 1);
bohuf4ae8fa2016-02-29 13:13:19 -0800265 if (!WriteFdExactly(fd, _start_req, strlen(_start_req))) {
266 adb_close(fd);
267 }
Vladimir Chtchetkine7c9339d2011-12-09 15:49:47 -0800268 }
269
270 /* Prepare for accepting of the next ADB host connection. */
271 fd = qemu_pipe_open(con_name);
272 if (fd < 0) {
Yabin Cui815ad882015-09-02 17:44:28 -0700273 D("adb service become unavailable.");
Josh Gao382ea6e2016-02-12 14:31:15 -0800274 return;
Vladimir Chtchetkine7c9339d2011-12-09 15:49:47 -0800275 }
276 } else {
Yabin Cui815ad882015-09-02 17:44:28 -0700277 D("Unable to send the '%s' request to ADB service.", _accept_req);
Josh Gao382ea6e2016-02-12 14:31:15 -0800278 return;
Vladimir Chtchetkine7c9339d2011-12-09 15:49:47 -0800279 }
280 }
Yabin Cui815ad882015-09-02 17:44:28 -0700281 D("transport: qemu_socket_thread() exiting");
Josh Gao382ea6e2016-02-12 14:31:15 -0800282 return;
Vladimir Chtchetkine7c9339d2011-12-09 15:49:47 -0800283}
Vladimir Chtchetkine4bdc7762011-12-13 12:19:29 -0800284#endif // !ADB_HOST
Vladimir Chtchetkine7c9339d2011-12-09 15:49:47 -0800285
Mike Lockwood26b88e32009-08-24 15:58:40 -0700286void local_init(int port)
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -0800287{
Josh Gao382ea6e2016-02-12 14:31:15 -0800288 adb_thread_func_t func;
Yabin Cui5fe6d0d2015-08-11 13:40:42 -0700289 const char* debug_name = "";
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -0800290
Vladimir Chtchetkine4bdc7762011-12-13 12:19:29 -0800291#if ADB_HOST
Yabin Cui5fe6d0d2015-08-11 13:40:42 -0700292 func = client_socket_thread;
293 debug_name = "client";
Vladimir Chtchetkine4bdc7762011-12-13 12:19:29 -0800294#else
Yabin Cui5fe6d0d2015-08-11 13:40:42 -0700295 /* For the adbd daemon in the system image we need to distinguish
296 * between the device, and the emulator. */
297 char is_qemu[PROPERTY_VALUE_MAX];
298 property_get("ro.kernel.qemu", is_qemu, "");
299 if (!strcmp(is_qemu, "1")) {
300 /* Running inside the emulator: use QEMUD pipe as the transport. */
301 func = qemu_socket_thread;
302 } else {
303 /* Running inside the device: use TCP socket as the transport. */
304 func = server_socket_thread;
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -0800305 }
Yabin Cui5fe6d0d2015-08-11 13:40:42 -0700306 debug_name = "server";
307#endif // !ADB_HOST
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -0800308
Yabin Cui815ad882015-09-02 17:44:28 -0700309 D("transport: local %s init", debug_name);
Elliott Hughesf2517142015-05-05 13:41:21 -0700310 if (!adb_thread_create(func, (void *) (uintptr_t) port)) {
Yabin Cui5fe6d0d2015-08-11 13:40:42 -0700311 fatal_errno("cannot create local socket %s thread", debug_name);
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -0800312 }
313}
314
315static void remote_kick(atransport *t)
316{
317 int fd = t->sfd;
318 t->sfd = -1;
Mike Lockwood81ffe172009-10-11 23:04:18 -0400319 adb_shutdown(fd);
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -0800320 adb_close(fd);
321
322#if ADB_HOST
Yabin Cui5fe6d0d2015-08-11 13:40:42 -0700323 int nn;
324 adb_mutex_lock( &local_transports_lock );
325 for (nn = 0; nn < ADB_LOCAL_TRANSPORT_MAX; nn++) {
326 if (local_transports[nn] == t) {
327 local_transports[nn] = NULL;
328 break;
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -0800329 }
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -0800330 }
Yabin Cui5fe6d0d2015-08-11 13:40:42 -0700331 adb_mutex_unlock( &local_transports_lock );
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -0800332#endif
333}
334
335static void remote_close(atransport *t)
336{
Spencer Low6f38e232015-06-09 12:32:17 -0700337 int fd = t->sfd;
338 if (fd != -1) {
339 t->sfd = -1;
340 adb_close(fd);
341 }
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -0800342}
343
Stefan Hilzinger1ec03422010-04-26 10:17:43 +0100344
345#if ADB_HOST
346/* Only call this function if you already hold local_transports_lock. */
347atransport* find_emulator_transport_by_adb_port_locked(int adb_port)
348{
349 int i;
350 for (i = 0; i < ADB_LOCAL_TRANSPORT_MAX; i++) {
351 if (local_transports[i] && local_transports[i]->adb_port == adb_port) {
352 return local_transports[i];
353 }
354 }
355 return NULL;
356}
357
358atransport* find_emulator_transport_by_adb_port(int adb_port)
359{
360 adb_mutex_lock( &local_transports_lock );
361 atransport* result = find_emulator_transport_by_adb_port_locked(adb_port);
362 adb_mutex_unlock( &local_transports_lock );
363 return result;
364}
365
366/* Only call this function if you already hold local_transports_lock. */
367int get_available_local_transport_index_locked()
368{
369 int i;
370 for (i = 0; i < ADB_LOCAL_TRANSPORT_MAX; i++) {
371 if (local_transports[i] == NULL) {
372 return i;
373 }
374 }
375 return -1;
376}
377
378int get_available_local_transport_index()
379{
380 adb_mutex_lock( &local_transports_lock );
381 int result = get_available_local_transport_index_locked();
382 adb_mutex_unlock( &local_transports_lock );
383 return result;
384}
385#endif
386
387int init_socket_transport(atransport *t, int s, int adb_port, int local)
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -0800388{
389 int fail = 0;
390
391 t->kick = remote_kick;
392 t->close = remote_close;
393 t->read_from_remote = remote_read;
394 t->write_to_remote = remote_write;
395 t->sfd = s;
396 t->sync_token = 1;
Dan Albert9a50f4c2015-05-18 16:43:57 -0700397 t->connection_state = kCsOffline;
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -0800398 t->type = kTransportLocal;
Stefan Hilzinger1ec03422010-04-26 10:17:43 +0100399 t->adb_port = 0;
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -0800400
401#if ADB_HOST
Yabin Cui5fe6d0d2015-08-11 13:40:42 -0700402 if (local) {
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -0800403 adb_mutex_lock( &local_transports_lock );
404 {
Stefan Hilzinger1ec03422010-04-26 10:17:43 +0100405 t->adb_port = adb_port;
406 atransport* existing_transport =
407 find_emulator_transport_by_adb_port_locked(adb_port);
408 int index = get_available_local_transport_index_locked();
409 if (existing_transport != NULL) {
Yabin Cui815ad882015-09-02 17:44:28 -0700410 D("local transport for port %d already registered (%p)?",
Stefan Hilzinger1ec03422010-04-26 10:17:43 +0100411 adb_port, existing_transport);
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -0800412 fail = -1;
Stefan Hilzinger1ec03422010-04-26 10:17:43 +0100413 } else if (index < 0) {
414 // Too many emulators.
Yabin Cui815ad882015-09-02 17:44:28 -0700415 D("cannot register more emulators. Maximum is %d",
Stefan Hilzinger1ec03422010-04-26 10:17:43 +0100416 ADB_LOCAL_TRANSPORT_MAX);
417 fail = -1;
418 } else {
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -0800419 local_transports[index] = t;
Stefan Hilzinger1ec03422010-04-26 10:17:43 +0100420 }
421 }
422 adb_mutex_unlock( &local_transports_lock );
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -0800423 }
424#endif
425 return fail;
426}