blob: 4c3364fe5bcc3e972798020023d7c673bb62ee44 [file] [log] [blame]
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001/*
2 * Copyright (C) 2007 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17#define TRACE_TAG TRACE_ADB
18
19#include <stdio.h>
20#include <stdlib.h>
21#include <ctype.h>
22#include <stdarg.h>
23#include <errno.h>
Scott Andersonc7993af2012-05-25 13:55:46 -070024#include <stddef.h>
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -080025#include <string.h>
26#include <time.h>
Mike Lockwood1f546e62009-05-25 18:17:55 -040027#include <sys/time.h>
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -080028
29#include "sysdeps.h"
30#include "adb.h"
Benoit Gobyd5fcafa2012-04-12 12:23:49 -070031#include "adb_auth.h"
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -080032
Scott Andersone82c2db2012-05-25 14:10:02 -070033#define ARRAY_SIZE(a) (sizeof(a) / sizeof((a)[0]))
34
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -080035#if !ADB_HOST
36#include <private/android_filesystem_config.h>
Mike Lockwood5f4b0512009-08-04 20:37:51 -040037#include <linux/capability.h>
38#include <linux/prctl.h>
Jeff Sharkey885342a2012-08-14 21:00:22 -070039#include <sys/mount.h>
Xavier Ducroheta09fbd12009-05-20 17:33:53 -070040#else
41#include "usb_vendors.h"
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -080042#endif
43
JP Abgrall408fa572011-03-16 15:57:42 -070044#if ADB_TRACE
45ADB_MUTEX_DEFINE( D_lock );
46#endif
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -080047
48int HOST = 0;
Matt Gumbeld7b33082012-11-14 10:16:17 -080049int gListenAll = 0;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -080050
Benoit Gobyd5fcafa2012-04-12 12:23:49 -070051static int auth_enabled = 0;
52
Scott Andersone82c2db2012-05-25 14:10:02 -070053#if !ADB_HOST
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -080054static const char *adb_device_banner = "device";
Scott Andersone82c2db2012-05-25 14:10:02 -070055#endif
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -080056
57void fatal(const char *fmt, ...)
58{
59 va_list ap;
60 va_start(ap, fmt);
61 fprintf(stderr, "error: ");
62 vfprintf(stderr, fmt, ap);
63 fprintf(stderr, "\n");
64 va_end(ap);
65 exit(-1);
66}
67
68void fatal_errno(const char *fmt, ...)
69{
70 va_list ap;
71 va_start(ap, fmt);
72 fprintf(stderr, "error: %s: ", strerror(errno));
73 vfprintf(stderr, fmt, ap);
74 fprintf(stderr, "\n");
75 va_end(ap);
76 exit(-1);
77}
78
79int adb_trace_mask;
80
81/* read a comma/space/colum/semi-column separated list of tags
82 * from the ADB_TRACE environment variable and build the trace
83 * mask from it. note that '1' and 'all' are special cases to
84 * enable all tracing
85 */
86void adb_trace_init(void)
87{
88 const char* p = getenv("ADB_TRACE");
89 const char* q;
90
91 static const struct {
92 const char* tag;
93 int flag;
94 } tags[] = {
95 { "1", 0 },
96 { "all", 0 },
97 { "adb", TRACE_ADB },
98 { "sockets", TRACE_SOCKETS },
99 { "packets", TRACE_PACKETS },
100 { "rwx", TRACE_RWX },
101 { "usb", TRACE_USB },
102 { "sync", TRACE_SYNC },
103 { "sysdeps", TRACE_SYSDEPS },
104 { "transport", TRACE_TRANSPORT },
105 { "jdwp", TRACE_JDWP },
JP Abgrall408fa572011-03-16 15:57:42 -0700106 { "services", TRACE_SERVICES },
Benoit Gobyd5fcafa2012-04-12 12:23:49 -0700107 { "auth", TRACE_AUTH },
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800108 { NULL, 0 }
109 };
110
111 if (p == NULL)
112 return;
113
114 /* use a comma/column/semi-colum/space separated list */
115 while (*p) {
116 int len, tagn;
117
118 q = strpbrk(p, " ,:;");
119 if (q == NULL) {
120 q = p + strlen(p);
121 }
122 len = q - p;
123
124 for (tagn = 0; tags[tagn].tag != NULL; tagn++)
125 {
126 int taglen = strlen(tags[tagn].tag);
127
128 if (len == taglen && !memcmp(tags[tagn].tag, p, len) )
129 {
130 int flag = tags[tagn].flag;
131 if (flag == 0) {
132 adb_trace_mask = ~0;
133 return;
134 }
135 adb_trace_mask |= (1 << flag);
136 break;
137 }
138 }
139 p = q;
140 if (*p)
141 p++;
142 }
143}
144
Vladimir Chtchetkine28781b02012-02-27 10:41:53 -0800145#if !ADB_HOST
146/*
147 * Implements ADB tracing inside the emulator.
148 */
149
150#include <stdarg.h>
151
152/*
153 * Redefine open and write for qemu_pipe.h that contains inlined references
154 * to those routines. We will redifine them back after qemu_pipe.h inclusion.
155 */
156
157#undef open
158#undef write
159#define open adb_open
160#define write adb_write
161#include <hardware/qemu_pipe.h>
162#undef open
163#undef write
164#define open ___xxx_open
165#define write ___xxx_write
166
167/* A handle to adb-debug qemud service in the emulator. */
168int adb_debug_qemu = -1;
169
170/* Initializes connection with the adb-debug qemud service in the emulator. */
171static int adb_qemu_trace_init(void)
172{
173 char con_name[32];
174
175 if (adb_debug_qemu >= 0) {
176 return 0;
177 }
178
179 /* adb debugging QEMUD service connection request. */
180 snprintf(con_name, sizeof(con_name), "qemud:adb-debug");
181 adb_debug_qemu = qemu_pipe_open(con_name);
182 return (adb_debug_qemu >= 0) ? 0 : -1;
183}
184
185void adb_qemu_trace(const char* fmt, ...)
186{
187 va_list args;
188 va_start(args, fmt);
189 char msg[1024];
190
191 if (adb_debug_qemu >= 0) {
192 vsnprintf(msg, sizeof(msg), fmt, args);
193 adb_write(adb_debug_qemu, msg, strlen(msg));
194 }
195}
196#endif /* !ADB_HOST */
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800197
198apacket *get_apacket(void)
199{
200 apacket *p = malloc(sizeof(apacket));
201 if(p == 0) fatal("failed to allocate an apacket");
202 memset(p, 0, sizeof(apacket) - MAX_PAYLOAD);
203 return p;
204}
205
206void put_apacket(apacket *p)
207{
208 free(p);
209}
210
Benoit Gobyd5fcafa2012-04-12 12:23:49 -0700211void handle_online(atransport *t)
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800212{
213 D("adb: online\n");
Benoit Gobyd5fcafa2012-04-12 12:23:49 -0700214 t->online = 1;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800215}
216
217void handle_offline(atransport *t)
218{
219 D("adb: offline\n");
220 //Close the associated usb
Benoit Gobyd5fcafa2012-04-12 12:23:49 -0700221 t->online = 0;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800222 run_transport_disconnects(t);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800223}
224
Benoit Gobyd5fcafa2012-04-12 12:23:49 -0700225#if DEBUG_PACKETS
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800226#define DUMPMAX 32
227void print_packet(const char *label, apacket *p)
228{
229 char *tag;
230 char *x;
231 unsigned count;
232
233 switch(p->msg.command){
234 case A_SYNC: tag = "SYNC"; break;
235 case A_CNXN: tag = "CNXN" ; break;
236 case A_OPEN: tag = "OPEN"; break;
237 case A_OKAY: tag = "OKAY"; break;
238 case A_CLSE: tag = "CLSE"; break;
239 case A_WRTE: tag = "WRTE"; break;
Benoit Gobyd5fcafa2012-04-12 12:23:49 -0700240 case A_AUTH: tag = "AUTH"; break;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800241 default: tag = "????"; break;
242 }
243
244 fprintf(stderr, "%s: %s %08x %08x %04x \"",
245 label, tag, p->msg.arg0, p->msg.arg1, p->msg.data_length);
246 count = p->msg.data_length;
247 x = (char*) p->data;
248 if(count > DUMPMAX) {
249 count = DUMPMAX;
250 tag = "\n";
251 } else {
252 tag = "\"\n";
253 }
254 while(count-- > 0){
255 if((*x >= ' ') && (*x < 127)) {
256 fputc(*x, stderr);
257 } else {
258 fputc('.', stderr);
259 }
260 x++;
261 }
Benoit Gobyd5fcafa2012-04-12 12:23:49 -0700262 fputs(tag, stderr);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800263}
264#endif
265
266static void send_ready(unsigned local, unsigned remote, atransport *t)
267{
268 D("Calling send_ready \n");
269 apacket *p = get_apacket();
270 p->msg.command = A_OKAY;
271 p->msg.arg0 = local;
272 p->msg.arg1 = remote;
273 send_packet(p, t);
274}
275
276static void send_close(unsigned local, unsigned remote, atransport *t)
277{
278 D("Calling send_close \n");
279 apacket *p = get_apacket();
280 p->msg.command = A_CLSE;
281 p->msg.arg0 = local;
282 p->msg.arg1 = remote;
283 send_packet(p, t);
284}
285
Scott Andersone82c2db2012-05-25 14:10:02 -0700286static size_t fill_connect_data(char *buf, size_t bufsize)
287{
288#if ADB_HOST
289 return snprintf(buf, bufsize, "host::") + 1;
290#else
291 static const char *cnxn_props[] = {
292 "ro.product.name",
293 "ro.product.model",
294 "ro.product.device",
295 };
296 static const int num_cnxn_props = ARRAY_SIZE(cnxn_props);
297 int i;
298 size_t remaining = bufsize;
299 size_t len;
300
301 len = snprintf(buf, remaining, "%s::", adb_device_banner);
302 remaining -= len;
303 buf += len;
304 for (i = 0; i < num_cnxn_props; i++) {
305 char value[PROPERTY_VALUE_MAX];
306 property_get(cnxn_props[i], value, "");
307 len = snprintf(buf, remaining, "%s=%s;", cnxn_props[i], value);
308 remaining -= len;
309 buf += len;
310 }
311
312 return bufsize - remaining + 1;
313#endif
314}
315
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800316static void send_connect(atransport *t)
317{
318 D("Calling send_connect \n");
319 apacket *cp = get_apacket();
320 cp->msg.command = A_CNXN;
321 cp->msg.arg0 = A_VERSION;
322 cp->msg.arg1 = MAX_PAYLOAD;
Scott Andersone82c2db2012-05-25 14:10:02 -0700323 cp->msg.data_length = fill_connect_data((char *)cp->data,
324 sizeof(cp->data));
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800325 send_packet(cp, t);
Benoit Gobyd5fcafa2012-04-12 12:23:49 -0700326}
327
328static void send_auth_request(atransport *t)
329{
330 D("Calling send_auth_request\n");
331 apacket *p;
332 int ret;
333
334 ret = adb_auth_generate_token(t->token, sizeof(t->token));
335 if (ret != sizeof(t->token)) {
336 D("Error generating token ret=%d\n", ret);
337 return;
338 }
339
340 p = get_apacket();
341 memcpy(p->data, t->token, ret);
342 p->msg.command = A_AUTH;
343 p->msg.arg0 = ADB_AUTH_TOKEN;
344 p->msg.data_length = ret;
345 send_packet(p, t);
346}
347
348static void send_auth_response(uint8_t *token, size_t token_size, atransport *t)
349{
350 D("Calling send_auth_response\n");
351 apacket *p = get_apacket();
352 int ret;
353
354 ret = adb_auth_sign(t->key, token, token_size, p->data);
355 if (!ret) {
356 D("Error signing the token\n");
357 put_apacket(p);
358 return;
359 }
360
361 p->msg.command = A_AUTH;
362 p->msg.arg0 = ADB_AUTH_SIGNATURE;
363 p->msg.data_length = ret;
364 send_packet(p, t);
365}
366
367static void send_auth_publickey(atransport *t)
368{
369 D("Calling send_auth_publickey\n");
370 apacket *p = get_apacket();
371 int ret;
372
373 ret = adb_auth_get_userkey(p->data, sizeof(p->data));
374 if (!ret) {
375 D("Failed to get user public key\n");
376 put_apacket(p);
377 return;
378 }
379
380 p->msg.command = A_AUTH;
381 p->msg.arg0 = ADB_AUTH_RSAPUBLICKEY;
382 p->msg.data_length = ret;
383 send_packet(p, t);
384}
385
386void adb_auth_verified(atransport *t)
387{
388 handle_online(t);
389 send_connect(t);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800390}
391
392static char *connection_state_name(atransport *t)
393{
394 if (t == NULL) {
395 return "unknown";
396 }
397
398 switch(t->connection_state) {
399 case CS_BOOTLOADER:
400 return "bootloader";
401 case CS_DEVICE:
402 return "device";
403 case CS_OFFLINE:
404 return "offline";
405 default:
406 return "unknown";
407 }
408}
409
Scott Andersone82c2db2012-05-25 14:10:02 -0700410/* qual_overwrite is used to overwrite a qualifier string. dst is a
411 * pointer to a char pointer. It is assumed that if *dst is non-NULL, it
Scott Anderson2ca3e6b2012-05-30 18:11:27 -0700412 * was malloc'ed and needs to freed. *dst will be set to a dup of src.
Scott Andersone82c2db2012-05-25 14:10:02 -0700413 */
414static void qual_overwrite(char **dst, const char *src)
415{
416 if (!dst)
417 return;
418
419 free(*dst);
420 *dst = NULL;
421
422 if (!src || !*src)
423 return;
424
425 *dst = strdup(src);
426}
427
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800428void parse_banner(char *banner, atransport *t)
429{
Scott Andersone82c2db2012-05-25 14:10:02 -0700430 static const char *prop_seps = ";";
431 static const char key_val_sep = '=';
Scott Anderson2ca3e6b2012-05-30 18:11:27 -0700432 char *cp;
433 char *type;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800434
435 D("parse_banner: %s\n", banner);
436 type = banner;
Scott Andersone82c2db2012-05-25 14:10:02 -0700437 cp = strchr(type, ':');
438 if (cp) {
439 *cp++ = 0;
440 /* Nothing is done with second field. */
441 cp = strchr(cp, ':');
442 if (cp) {
443 char *save;
444 char *key;
Scott Anderson1b7a7e82012-06-05 17:54:27 -0700445 key = adb_strtok_r(cp + 1, prop_seps, &save);
Scott Andersone82c2db2012-05-25 14:10:02 -0700446 while (key) {
447 cp = strchr(key, key_val_sep);
448 if (cp) {
449 *cp++ = '\0';
450 if (!strcmp(key, "ro.product.name"))
451 qual_overwrite(&t->product, cp);
452 else if (!strcmp(key, "ro.product.model"))
453 qual_overwrite(&t->model, cp);
454 else if (!strcmp(key, "ro.product.device"))
455 qual_overwrite(&t->device, cp);
456 }
Scott Anderson1b7a7e82012-06-05 17:54:27 -0700457 key = adb_strtok_r(NULL, prop_seps, &save);
Scott Andersone82c2db2012-05-25 14:10:02 -0700458 }
459 }
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800460 }
461
462 if(!strcmp(type, "bootloader")){
463 D("setting connection_state to CS_BOOTLOADER\n");
464 t->connection_state = CS_BOOTLOADER;
465 update_transports();
466 return;
467 }
468
469 if(!strcmp(type, "device")) {
470 D("setting connection_state to CS_DEVICE\n");
471 t->connection_state = CS_DEVICE;
472 update_transports();
473 return;
474 }
475
476 if(!strcmp(type, "recovery")) {
477 D("setting connection_state to CS_RECOVERY\n");
478 t->connection_state = CS_RECOVERY;
479 update_transports();
480 return;
481 }
482
Doug Zongker447f0612012-01-09 14:54:53 -0800483 if(!strcmp(type, "sideload")) {
484 D("setting connection_state to CS_SIDELOAD\n");
485 t->connection_state = CS_SIDELOAD;
486 update_transports();
487 return;
488 }
489
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800490 t->connection_state = CS_HOST;
491}
492
493void handle_packet(apacket *p, atransport *t)
494{
495 asocket *s;
496
Viral Mehta899913f2010-06-16 18:41:28 +0530497 D("handle_packet() %c%c%c%c\n", ((char*) (&(p->msg.command)))[0],
498 ((char*) (&(p->msg.command)))[1],
499 ((char*) (&(p->msg.command)))[2],
500 ((char*) (&(p->msg.command)))[3]);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800501 print_packet("recv", p);
502
503 switch(p->msg.command){
504 case A_SYNC:
505 if(p->msg.arg0){
506 send_packet(p, t);
507 if(HOST) send_connect(t);
508 } else {
509 t->connection_state = CS_OFFLINE;
510 handle_offline(t);
511 send_packet(p, t);
512 }
513 return;
514
515 case A_CNXN: /* CONNECT(version, maxdata, "system-id-string") */
516 /* XXX verify version, etc */
517 if(t->connection_state != CS_OFFLINE) {
518 t->connection_state = CS_OFFLINE;
519 handle_offline(t);
520 }
Benoit Gobyd5fcafa2012-04-12 12:23:49 -0700521
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800522 parse_banner((char*) p->data, t);
Benoit Gobyd5fcafa2012-04-12 12:23:49 -0700523
524 if (HOST || !auth_enabled) {
525 handle_online(t);
526 if(!HOST) send_connect(t);
527 } else {
528 send_auth_request(t);
529 }
530 break;
531
532 case A_AUTH:
533 if (p->msg.arg0 == ADB_AUTH_TOKEN) {
534 t->key = adb_auth_nextkey(t->key);
535 if (t->key) {
536 send_auth_response(p->data, p->msg.data_length, t);
537 } else {
538 /* No more private keys to try, send the public key */
539 send_auth_publickey(t);
540 }
541 } else if (p->msg.arg0 == ADB_AUTH_SIGNATURE) {
542 if (adb_auth_verify(t->token, p->data, p->msg.data_length)) {
543 adb_auth_verified(t);
544 t->failed_auth_attempts = 0;
545 } else {
546 if (t->failed_auth_attempts++ > 10)
547 adb_sleep_ms(1000);
548 send_auth_request(t);
549 }
550 } else if (p->msg.arg0 == ADB_AUTH_RSAPUBLICKEY) {
551 adb_auth_confirm_key(p->data, p->msg.data_length, t);
552 }
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800553 break;
554
555 case A_OPEN: /* OPEN(local-id, 0, "destination") */
Benoit Gobyd5fcafa2012-04-12 12:23:49 -0700556 if (t->online) {
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800557 char *name = (char*) p->data;
558 name[p->msg.data_length > 0 ? p->msg.data_length - 1 : 0] = 0;
559 s = create_local_service_socket(name);
560 if(s == 0) {
561 send_close(0, p->msg.arg0, t);
562 } else {
563 s->peer = create_remote_socket(p->msg.arg0, t);
564 s->peer->peer = s;
565 send_ready(s->id, s->peer->id, t);
566 s->ready(s);
567 }
568 }
569 break;
570
571 case A_OKAY: /* READY(local-id, remote-id, "") */
Benoit Gobyd5fcafa2012-04-12 12:23:49 -0700572 if (t->online) {
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800573 if((s = find_local_socket(p->msg.arg1))) {
574 if(s->peer == 0) {
575 s->peer = create_remote_socket(p->msg.arg0, t);
576 s->peer->peer = s;
577 }
578 s->ready(s);
579 }
580 }
581 break;
582
583 case A_CLSE: /* CLOSE(local-id, remote-id, "") */
Benoit Gobyd5fcafa2012-04-12 12:23:49 -0700584 if (t->online) {
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800585 if((s = find_local_socket(p->msg.arg1))) {
586 s->close(s);
587 }
588 }
589 break;
590
591 case A_WRTE:
Benoit Gobyd5fcafa2012-04-12 12:23:49 -0700592 if (t->online) {
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800593 if((s = find_local_socket(p->msg.arg1))) {
594 unsigned rid = p->msg.arg0;
595 p->len = p->msg.data_length;
596
597 if(s->enqueue(s, p) == 0) {
598 D("Enqueue the socket\n");
599 send_ready(s->id, rid, t);
600 }
601 return;
602 }
603 }
604 break;
605
606 default:
607 printf("handle_packet: what is %08x?!\n", p->msg.command);
608 }
609
610 put_apacket(p);
611}
612
613alistener listener_list = {
614 .next = &listener_list,
615 .prev = &listener_list,
616};
617
618static void ss_listener_event_func(int _fd, unsigned ev, void *_l)
619{
620 asocket *s;
621
622 if(ev & FDE_READ) {
623 struct sockaddr addr;
624 socklen_t alen;
625 int fd;
626
627 alen = sizeof(addr);
628 fd = adb_socket_accept(_fd, &addr, &alen);
629 if(fd < 0) return;
630
631 adb_socket_setbufsize(fd, CHUNK_SIZE);
632
633 s = create_local_socket(fd);
634 if(s) {
635 connect_to_smartsocket(s);
636 return;
637 }
638
639 adb_close(fd);
640 }
641}
642
643static void listener_event_func(int _fd, unsigned ev, void *_l)
644{
645 alistener *l = _l;
646 asocket *s;
647
648 if(ev & FDE_READ) {
649 struct sockaddr addr;
650 socklen_t alen;
651 int fd;
652
653 alen = sizeof(addr);
654 fd = adb_socket_accept(_fd, &addr, &alen);
655 if(fd < 0) return;
656
657 s = create_local_socket(fd);
658 if(s) {
659 s->transport = l->transport;
660 connect_to_remote(s, l->connect_to);
661 return;
662 }
663
664 adb_close(fd);
665 }
666}
667
668static void free_listener(alistener* l)
669{
670 if (l->next) {
671 l->next->prev = l->prev;
672 l->prev->next = l->next;
673 l->next = l->prev = l;
674 }
675
676 // closes the corresponding fd
677 fdevent_remove(&l->fde);
678
679 if (l->local_name)
680 free((char*)l->local_name);
681
682 if (l->connect_to)
683 free((char*)l->connect_to);
684
685 if (l->transport) {
686 remove_transport_disconnect(l->transport, &l->disconnect);
687 }
688 free(l);
689}
690
691static void listener_disconnect(void* _l, atransport* t)
692{
693 alistener* l = _l;
694
695 free_listener(l);
696}
697
698int local_name_to_fd(const char *name)
699{
700 int port;
701
702 if(!strncmp("tcp:", name, 4)){
703 int ret;
704 port = atoi(name + 4);
Matt Gumbeld7b33082012-11-14 10:16:17 -0800705
706 if (gListenAll > 0) {
707 ret = socket_inaddr_any_server(port, SOCK_STREAM);
708 } else {
709 ret = socket_loopback_server(port, SOCK_STREAM);
710 }
711
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800712 return ret;
713 }
714#ifndef HAVE_WIN32_IPC /* no Unix-domain sockets on Win32 */
715 // It's non-sensical to support the "reserved" space on the adb host side
716 if(!strncmp(name, "local:", 6)) {
717 return socket_local_server(name + 6,
718 ANDROID_SOCKET_NAMESPACE_ABSTRACT, SOCK_STREAM);
719 } else if(!strncmp(name, "localabstract:", 14)) {
720 return socket_local_server(name + 14,
721 ANDROID_SOCKET_NAMESPACE_ABSTRACT, SOCK_STREAM);
722 } else if(!strncmp(name, "localfilesystem:", 16)) {
723 return socket_local_server(name + 16,
724 ANDROID_SOCKET_NAMESPACE_FILESYSTEM, SOCK_STREAM);
725 }
726
727#endif
728 printf("unknown local portname '%s'\n", name);
729 return -1;
730}
731
David 'Digit' Turner0d82fbf2012-11-14 15:01:55 +0100732// Write a single line describing a listener to a user-provided buffer.
733// Appends a trailing zero, even in case of truncation, but the function
734// returns the full line length.
735// If |buffer| is NULL, does not write but returns required size.
736static int format_listener(alistener* l, char* buffer, size_t buffer_len) {
737 // Format is simply:
738 //
739 // <device-serial> " " <local-name> " " <remote-name> "\n"
740 //
741 int local_len = strlen(l->local_name);
742 int connect_len = strlen(l->connect_to);
743 int serial_len = strlen(l->transport->serial);
744
745 if (buffer != NULL) {
746 snprintf(buffer, buffer_len, "%s %s %s\n",
747 l->transport->serial, l->local_name, l->connect_to);
748 }
749 // NOTE: snprintf() on Windows returns -1 in case of truncation, so
750 // return the computed line length instead.
751 return local_len + connect_len + serial_len + 3;
752}
753
754// Write the list of current listeners (network redirections) into a
755// user-provided buffer. Appends a trailing zero, even in case of
756// trunctaion, but return the full size in bytes.
757// If |buffer| is NULL, does not write but returns required size.
758static int format_listeners(char* buf, size_t buflen)
759{
760 alistener* l;
761 int result = 0;
762 for (l = listener_list.next; l != &listener_list; l = l->next) {
763 // Ignore special listeners like those for *smartsocket*
764 if (l->connect_to[0] == '*')
765 continue;
766 int len = format_listener(l, buf, buflen);
767 // Ensure there is space for the trailing zero.
768 result += len;
769 if (buf != NULL) {
770 buf += len;
771 buflen -= len;
772 if (buflen <= 0)
773 break;
774 }
775 }
776 return result;
777}
778
779static int remove_listener(const char *local_name, atransport* transport)
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800780{
781 alistener *l;
782
783 for (l = listener_list.next; l != &listener_list; l = l->next) {
David 'Digit' Turner0d82fbf2012-11-14 15:01:55 +0100784 if (!strcmp(local_name, l->local_name)) {
785 listener_disconnect(l, l->transport);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800786 return 0;
787 }
788 }
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800789 return -1;
790}
791
David 'Digit' Turner0d82fbf2012-11-14 15:01:55 +0100792static void remove_all_listeners(void)
793{
794 alistener *l, *l_next;
795 for (l = listener_list.next; l != &listener_list; l = l_next) {
796 l_next = l->next;
797 // Never remove smart sockets.
798 if (l->connect_to[0] == '*')
799 continue;
800 listener_disconnect(l, l->transport);
801 }
802}
803
804// error/status codes for install_listener.
805typedef enum {
806 INSTALL_STATUS_OK = 0,
807 INSTALL_STATUS_INTERNAL_ERROR = -1,
808 INSTALL_STATUS_CANNOT_BIND = -2,
809 INSTALL_STATUS_CANNOT_REBIND = -3,
810} install_status_t;
811
812static install_status_t install_listener(const char *local_name,
813 const char *connect_to,
814 atransport* transport,
815 int no_rebind)
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800816{
817 alistener *l;
818
819 //printf("install_listener('%s','%s')\n", local_name, connect_to);
820
821 for(l = listener_list.next; l != &listener_list; l = l->next){
822 if(strcmp(local_name, l->local_name) == 0) {
823 char *cto;
824
825 /* can't repurpose a smartsocket */
826 if(l->connect_to[0] == '*') {
David 'Digit' Turner0d82fbf2012-11-14 15:01:55 +0100827 return INSTALL_STATUS_INTERNAL_ERROR;
828 }
829
830 /* can't repurpose a listener if 'no_rebind' is true */
831 if (no_rebind) {
832 return INSTALL_STATUS_CANNOT_REBIND;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800833 }
834
835 cto = strdup(connect_to);
836 if(cto == 0) {
David 'Digit' Turner0d82fbf2012-11-14 15:01:55 +0100837 return INSTALL_STATUS_INTERNAL_ERROR;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800838 }
839
840 //printf("rebinding '%s' to '%s'\n", local_name, connect_to);
841 free((void*) l->connect_to);
842 l->connect_to = cto;
843 if (l->transport != transport) {
844 remove_transport_disconnect(l->transport, &l->disconnect);
845 l->transport = transport;
846 add_transport_disconnect(l->transport, &l->disconnect);
847 }
David 'Digit' Turner0d82fbf2012-11-14 15:01:55 +0100848 return INSTALL_STATUS_OK;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800849 }
850 }
851
852 if((l = calloc(1, sizeof(alistener))) == 0) goto nomem;
853 if((l->local_name = strdup(local_name)) == 0) goto nomem;
854 if((l->connect_to = strdup(connect_to)) == 0) goto nomem;
855
856
857 l->fd = local_name_to_fd(local_name);
858 if(l->fd < 0) {
859 free((void*) l->local_name);
860 free((void*) l->connect_to);
861 free(l);
862 printf("cannot bind '%s'\n", local_name);
863 return -2;
864 }
865
866 close_on_exec(l->fd);
867 if(!strcmp(l->connect_to, "*smartsocket*")) {
868 fdevent_install(&l->fde, l->fd, ss_listener_event_func, l);
869 } else {
870 fdevent_install(&l->fde, l->fd, listener_event_func, l);
871 }
872 fdevent_set(&l->fde, FDE_READ);
873
874 l->next = &listener_list;
875 l->prev = listener_list.prev;
876 l->next->prev = l;
877 l->prev->next = l;
878 l->transport = transport;
879
880 if (transport) {
881 l->disconnect.opaque = l;
882 l->disconnect.func = listener_disconnect;
883 add_transport_disconnect(transport, &l->disconnect);
884 }
David 'Digit' Turner0d82fbf2012-11-14 15:01:55 +0100885 return INSTALL_STATUS_OK;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800886
887nomem:
888 fatal("cannot allocate listener");
David 'Digit' Turner0d82fbf2012-11-14 15:01:55 +0100889 return INSTALL_STATUS_INTERNAL_ERROR;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800890}
891
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800892#ifdef HAVE_WIN32_PROC
893static BOOL WINAPI ctrlc_handler(DWORD type)
894{
895 exit(STATUS_CONTROL_C_EXIT);
896 return TRUE;
897}
898#endif
899
900static void adb_cleanup(void)
901{
902 usb_cleanup();
903}
904
905void start_logging(void)
906{
907#ifdef HAVE_WIN32_PROC
908 char temp[ MAX_PATH ];
909 FILE* fnul;
910 FILE* flog;
911
912 GetTempPath( sizeof(temp) - 8, temp );
913 strcat( temp, "adb.log" );
914
915 /* Win32 specific redirections */
916 fnul = fopen( "NUL", "rt" );
917 if (fnul != NULL)
918 stdin[0] = fnul[0];
919
920 flog = fopen( temp, "at" );
921 if (flog == NULL)
922 flog = fnul;
923
924 setvbuf( flog, NULL, _IONBF, 0 );
925
926 stdout[0] = flog[0];
927 stderr[0] = flog[0];
928 fprintf(stderr,"--- adb starting (pid %d) ---\n", getpid());
929#else
930 int fd;
931
932 fd = unix_open("/dev/null", O_RDONLY);
933 dup2(fd, 0);
JP Abgrall408fa572011-03-16 15:57:42 -0700934 adb_close(fd);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800935
936 fd = unix_open("/tmp/adb.log", O_WRONLY | O_CREAT | O_APPEND, 0640);
937 if(fd < 0) {
938 fd = unix_open("/dev/null", O_WRONLY);
939 }
940 dup2(fd, 1);
941 dup2(fd, 2);
JP Abgrall408fa572011-03-16 15:57:42 -0700942 adb_close(fd);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800943 fprintf(stderr,"--- adb starting (pid %d) ---\n", getpid());
944#endif
945}
946
947#if !ADB_HOST
948void start_device_log(void)
949{
950 int fd;
Mike Lockwood1f546e62009-05-25 18:17:55 -0400951 char path[PATH_MAX];
952 struct tm now;
953 time_t t;
954 char value[PROPERTY_VALUE_MAX];
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800955
Mike Lockwood1f546e62009-05-25 18:17:55 -0400956 // read the trace mask from persistent property persist.adb.trace_mask
957 // give up if the property is not set or cannot be parsed
958 property_get("persist.adb.trace_mask", value, "");
959 if (sscanf(value, "%x", &adb_trace_mask) != 1)
960 return;
961
962 adb_mkdir("/data/adb", 0775);
963 tzset();
964 time(&t);
965 localtime_r(&t, &now);
966 strftime(path, sizeof(path),
967 "/data/adb/adb-%Y-%m-%d-%H-%M-%S.txt",
968 &now);
969 fd = unix_open(path, O_WRONLY | O_CREAT | O_TRUNC, 0640);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800970 if (fd < 0)
971 return;
972
973 // redirect stdout and stderr to the log file
974 dup2(fd, 1);
975 dup2(fd, 2);
976 fprintf(stderr,"--- adb starting (pid %d) ---\n", getpid());
Benoit Goby95ef8282011-02-01 18:57:41 -0800977 adb_close(fd);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800978
979 fd = unix_open("/dev/null", O_RDONLY);
980 dup2(fd, 0);
Benoit Goby95ef8282011-02-01 18:57:41 -0800981 adb_close(fd);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800982}
983#endif
984
985#if ADB_HOST
Stefan Hilzingera84a42e2010-04-19 12:21:12 +0100986int launch_server(int server_port)
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800987{
988#ifdef HAVE_WIN32_PROC
989 /* we need to start the server in the background */
990 /* we create a PIPE that will be used to wait for the server's "OK" */
991 /* message since the pipe handles must be inheritable, we use a */
992 /* security attribute */
993 HANDLE pipe_read, pipe_write;
994 SECURITY_ATTRIBUTES sa;
995 STARTUPINFO startup;
996 PROCESS_INFORMATION pinfo;
997 char program_path[ MAX_PATH ];
998 int ret;
999
1000 sa.nLength = sizeof(sa);
1001 sa.lpSecurityDescriptor = NULL;
1002 sa.bInheritHandle = TRUE;
1003
1004 /* create pipe, and ensure its read handle isn't inheritable */
1005 ret = CreatePipe( &pipe_read, &pipe_write, &sa, 0 );
1006 if (!ret) {
1007 fprintf(stderr, "CreatePipe() failure, error %ld\n", GetLastError() );
1008 return -1;
1009 }
1010
1011 SetHandleInformation( pipe_read, HANDLE_FLAG_INHERIT, 0 );
1012
1013 ZeroMemory( &startup, sizeof(startup) );
1014 startup.cb = sizeof(startup);
1015 startup.hStdInput = GetStdHandle( STD_INPUT_HANDLE );
1016 startup.hStdOutput = pipe_write;
1017 startup.hStdError = GetStdHandle( STD_ERROR_HANDLE );
1018 startup.dwFlags = STARTF_USESTDHANDLES;
1019
1020 ZeroMemory( &pinfo, sizeof(pinfo) );
1021
1022 /* get path of current program */
1023 GetModuleFileName( NULL, program_path, sizeof(program_path) );
1024
1025 ret = CreateProcess(
1026 program_path, /* program path */
1027 "adb fork-server server",
1028 /* the fork-server argument will set the
1029 debug = 2 in the child */
1030 NULL, /* process handle is not inheritable */
1031 NULL, /* thread handle is not inheritable */
1032 TRUE, /* yes, inherit some handles */
1033 DETACHED_PROCESS, /* the new process doesn't have a console */
1034 NULL, /* use parent's environment block */
1035 NULL, /* use parent's starting directory */
1036 &startup, /* startup info, i.e. std handles */
1037 &pinfo );
1038
1039 CloseHandle( pipe_write );
1040
1041 if (!ret) {
1042 fprintf(stderr, "CreateProcess failure, error %ld\n", GetLastError() );
1043 CloseHandle( pipe_read );
1044 return -1;
1045 }
1046
1047 CloseHandle( pinfo.hProcess );
1048 CloseHandle( pinfo.hThread );
1049
1050 /* wait for the "OK\n" message */
1051 {
1052 char temp[3];
1053 DWORD count;
1054
1055 ret = ReadFile( pipe_read, temp, 3, &count, NULL );
1056 CloseHandle( pipe_read );
1057 if ( !ret ) {
1058 fprintf(stderr, "could not read ok from ADB Server, error = %ld\n", GetLastError() );
1059 return -1;
1060 }
1061 if (count != 3 || temp[0] != 'O' || temp[1] != 'K' || temp[2] != '\n') {
1062 fprintf(stderr, "ADB server didn't ACK\n" );
1063 return -1;
1064 }
1065 }
1066#elif defined(HAVE_FORKEXEC)
1067 char path[PATH_MAX];
1068 int fd[2];
1069
1070 // set up a pipe so the child can tell us when it is ready.
1071 // fd[0] will be parent's end, and fd[1] will get mapped to stderr in the child.
1072 if (pipe(fd)) {
1073 fprintf(stderr, "pipe failed in launch_server, errno: %d\n", errno);
1074 return -1;
1075 }
Alexey Tarasov31664102009-10-22 02:55:00 +11001076 get_my_path(path, PATH_MAX);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001077 pid_t pid = fork();
1078 if(pid < 0) return -1;
1079
1080 if (pid == 0) {
1081 // child side of the fork
1082
1083 // redirect stderr to the pipe
1084 // we use stderr instead of stdout due to stdout's buffering behavior.
1085 adb_close(fd[0]);
1086 dup2(fd[1], STDERR_FILENO);
1087 adb_close(fd[1]);
1088
Matt Gumbeld7b33082012-11-14 10:16:17 -08001089 char str_port[30];
1090 snprintf(str_port, sizeof(str_port), "%d", server_port);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001091 // child process
Matt Gumbeld7b33082012-11-14 10:16:17 -08001092 int result = execl(path, "adb", "-P", str_port, "fork-server", "server", NULL);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001093 // this should not return
1094 fprintf(stderr, "OOPS! execl returned %d, errno: %d\n", result, errno);
1095 } else {
1096 // parent side of the fork
1097
1098 char temp[3];
1099
1100 temp[0] = 'A'; temp[1] = 'B'; temp[2] = 'C';
1101 // wait for the "OK\n" message
1102 adb_close(fd[1]);
1103 int ret = adb_read(fd[0], temp, 3);
JP Abgrall408fa572011-03-16 15:57:42 -07001104 int saved_errno = errno;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001105 adb_close(fd[0]);
1106 if (ret < 0) {
JP Abgrall408fa572011-03-16 15:57:42 -07001107 fprintf(stderr, "could not read ok from ADB Server, errno = %d\n", saved_errno);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001108 return -1;
1109 }
1110 if (ret != 3 || temp[0] != 'O' || temp[1] != 'K' || temp[2] != '\n') {
1111 fprintf(stderr, "ADB server didn't ACK\n" );
1112 return -1;
1113 }
1114
1115 setsid();
1116 }
1117#else
1118#error "cannot implement background server start on this platform"
1119#endif
1120 return 0;
1121}
1122#endif
1123
Stefan Hilzingera84a42e2010-04-19 12:21:12 +01001124/* Constructs a local name of form tcp:port.
1125 * target_str points to the target string, it's content will be overwritten.
1126 * target_size is the capacity of the target string.
1127 * server_port is the port number to use for the local name.
1128 */
1129void build_local_name(char* target_str, size_t target_size, int server_port)
1130{
1131 snprintf(target_str, target_size, "tcp:%d", server_port);
1132}
1133
Nick Kralevichbd9206b2012-01-19 10:18:59 -08001134#if !ADB_HOST
1135static int should_drop_privileges() {
Nick Kralevich5890fe32012-01-19 13:11:35 -08001136#ifndef ALLOW_ADBD_ROOT
1137 return 1;
1138#else /* ALLOW_ADBD_ROOT */
Nick Kralevichbd9206b2012-01-19 10:18:59 -08001139 int secure = 0;
1140 char value[PROPERTY_VALUE_MAX];
1141
1142 /* run adbd in secure mode if ro.secure is set and
1143 ** we are not in the emulator
1144 */
1145 property_get("ro.kernel.qemu", value, "");
1146 if (strcmp(value, "1") != 0) {
1147 property_get("ro.secure", value, "1");
1148 if (strcmp(value, "1") == 0) {
1149 // don't run as root if ro.secure is set...
1150 secure = 1;
1151
1152 // ... except we allow running as root in userdebug builds if the
1153 // service.adb.root property has been set by the "adb root" command
1154 property_get("ro.debuggable", value, "");
1155 if (strcmp(value, "1") == 0) {
1156 property_get("service.adb.root", value, "");
1157 if (strcmp(value, "1") == 0) {
1158 secure = 0;
1159 }
1160 }
1161 }
1162 }
1163 return secure;
Nick Kralevich5890fe32012-01-19 13:11:35 -08001164#endif /* ALLOW_ADBD_ROOT */
Nick Kralevichbd9206b2012-01-19 10:18:59 -08001165}
1166#endif /* !ADB_HOST */
1167
Stefan Hilzingera84a42e2010-04-19 12:21:12 +01001168int adb_main(int is_daemon, int server_port)
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001169{
1170#if !ADB_HOST
Mike Lockwood2f38b692009-08-24 15:58:40 -07001171 int port;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001172 char value[PROPERTY_VALUE_MAX];
Nick Kralevicheb68fa82012-04-02 13:00:35 -07001173
1174 umask(000);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001175#endif
1176
1177 atexit(adb_cleanup);
1178#ifdef HAVE_WIN32_PROC
1179 SetConsoleCtrlHandler( ctrlc_handler, TRUE );
1180#elif defined(HAVE_FORKEXEC)
JP Abgrall408fa572011-03-16 15:57:42 -07001181 // No SIGCHLD. Let the service subproc handle its children.
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001182 signal(SIGPIPE, SIG_IGN);
1183#endif
1184
1185 init_transport_registration();
1186
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001187#if ADB_HOST
1188 HOST = 1;
Xavier Ducroheta09fbd12009-05-20 17:33:53 -07001189 usb_vendors_init();
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001190 usb_init();
Stefan Hilzingera84a42e2010-04-19 12:21:12 +01001191 local_init(DEFAULT_ADB_LOCAL_TRANSPORT_PORT);
Benoit Gobyd5fcafa2012-04-12 12:23:49 -07001192 adb_auth_init();
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001193
Stefan Hilzingera84a42e2010-04-19 12:21:12 +01001194 char local_name[30];
1195 build_local_name(local_name, sizeof(local_name), server_port);
David 'Digit' Turner0d82fbf2012-11-14 15:01:55 +01001196 if(install_listener(local_name, "*smartsocket*", NULL, 0)) {
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001197 exit(1);
1198 }
1199#else
Benoit Gobyd5fcafa2012-04-12 12:23:49 -07001200 property_get("ro.adb.secure", value, "0");
1201 auth_enabled = !strcmp(value, "1");
1202 if (auth_enabled)
1203 adb_auth_init();
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001204
Jeff Sharkeyd6d42862012-09-06 13:05:40 -07001205 // Our external storage path may be different than apps, since
1206 // we aren't able to bind mount after dropping root.
1207 const char* adb_external_storage = getenv("ADB_EXTERNAL_STORAGE");
1208 if (NULL != adb_external_storage) {
1209 setenv("EXTERNAL_STORAGE", adb_external_storage, 1);
1210 } else {
1211 D("Warning: ADB_EXTERNAL_STORAGE is not set. Leaving EXTERNAL_STORAGE"
1212 " unchanged.\n");
1213 }
1214
Stefan Hilzingera84a42e2010-04-19 12:21:12 +01001215 /* don't listen on a port (default 5037) if running in secure mode */
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001216 /* don't run as root if we are running in secure mode */
Nick Kralevichbd9206b2012-01-19 10:18:59 -08001217 if (should_drop_privileges()) {
Mike Lockwood5f4b0512009-08-04 20:37:51 -04001218 struct __user_cap_header_struct header;
1219 struct __user_cap_data_struct cap;
1220
Nick Kralevich44db9902010-08-27 14:35:07 -07001221 if (prctl(PR_SET_KEEPCAPS, 1, 0, 0, 0) != 0) {
1222 exit(1);
1223 }
Mike Lockwood5f4b0512009-08-04 20:37:51 -04001224
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001225 /* add extra groups:
1226 ** AID_ADB to access the USB driver
1227 ** AID_LOG to read system logs (adb logcat)
1228 ** AID_INPUT to diagnose input issues (getevent)
1229 ** AID_INET to diagnose network issues (netcfg, ping)
1230 ** AID_GRAPHICS to access the frame buffer
The Android Open Source Project20155492009-03-11 12:12:01 -07001231 ** AID_NET_BT and AID_NET_BT_ADMIN to diagnose bluetooth (hcidump)
Dianne Hackborn50458cf2012-03-07 12:57:14 -08001232 ** AID_SDCARD_R to allow reading from the SD card
Mike Lockwood6a3075c2009-05-25 13:52:00 -04001233 ** AID_SDCARD_RW to allow writing to the SD card
Mike Lockwoodd969faa2010-02-24 16:07:23 -05001234 ** AID_MOUNT to allow unmounting the SD card before rebooting
JP Abgrall61b90bd2011-11-09 10:30:08 -08001235 ** AID_NET_BW_STATS to read out qtaguid statistics
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001236 */
The Android Open Source Project20155492009-03-11 12:12:01 -07001237 gid_t groups[] = { AID_ADB, AID_LOG, AID_INPUT, AID_INET, AID_GRAPHICS,
Dianne Hackborn50458cf2012-03-07 12:57:14 -08001238 AID_NET_BT, AID_NET_BT_ADMIN, AID_SDCARD_R, AID_SDCARD_RW,
1239 AID_MOUNT, AID_NET_BW_STATS };
Nick Kralevich44db9902010-08-27 14:35:07 -07001240 if (setgroups(sizeof(groups)/sizeof(groups[0]), groups) != 0) {
1241 exit(1);
1242 }
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001243
1244 /* then switch user and group to "shell" */
Nick Kralevich44db9902010-08-27 14:35:07 -07001245 if (setgid(AID_SHELL) != 0) {
1246 exit(1);
1247 }
1248 if (setuid(AID_SHELL) != 0) {
1249 exit(1);
1250 }
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001251
Mike Lockwood5f4b0512009-08-04 20:37:51 -04001252 /* set CAP_SYS_BOOT capability, so "adb reboot" will succeed */
1253 header.version = _LINUX_CAPABILITY_VERSION;
1254 header.pid = 0;
1255 cap.effective = cap.permitted = (1 << CAP_SYS_BOOT);
1256 cap.inheritable = 0;
1257 capset(&header, &cap);
1258
Stefan Hilzingera84a42e2010-04-19 12:21:12 +01001259 D("Local port disabled\n");
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001260 } else {
Stefan Hilzingera84a42e2010-04-19 12:21:12 +01001261 char local_name[30];
1262 build_local_name(local_name, sizeof(local_name), server_port);
David 'Digit' Turner0d82fbf2012-11-14 15:01:55 +01001263 if(install_listener(local_name, "*smartsocket*", NULL, 0)) {
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001264 exit(1);
1265 }
1266 }
1267
Mike J. Chen1dd55c52012-07-20 18:16:21 -07001268 int usb = 0;
1269 if (access(USB_ADB_PATH, F_OK) == 0 || access(USB_FFS_ADB_EP0, F_OK) == 0) {
Mike Lockwoodcef31a02009-08-26 12:50:22 -07001270 // listen on USB
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001271 usb_init();
Mike J. Chen1dd55c52012-07-20 18:16:21 -07001272 usb = 1;
1273 }
1274
1275 // If one of these properties is set, also listen on that port
1276 // If one of the properties isn't set and we couldn't listen on usb,
1277 // listen on the default port.
1278 property_get("service.adb.tcp.port", value, "");
1279 if (!value[0]) {
1280 property_get("persist.adb.tcp.port", value, "");
1281 }
1282 if (sscanf(value, "%d", &port) == 1 && port > 0) {
1283 printf("using port=%d\n", port);
1284 // listen on TCP port specified by service.adb.tcp.port property
1285 local_init(port);
1286 } else if (!usb) {
Mike Lockwoodcef31a02009-08-26 12:50:22 -07001287 // listen on default port
Stefan Hilzingera84a42e2010-04-19 12:21:12 +01001288 local_init(DEFAULT_ADB_LOCAL_TRANSPORT_PORT);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001289 }
Mike J. Chen1dd55c52012-07-20 18:16:21 -07001290
JP Abgrall408fa572011-03-16 15:57:42 -07001291 D("adb_main(): pre init_jdwp()\n");
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001292 init_jdwp();
JP Abgrall408fa572011-03-16 15:57:42 -07001293 D("adb_main(): post init_jdwp()\n");
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001294#endif
1295
1296 if (is_daemon)
1297 {
1298 // inform our parent that we are up and running.
1299#ifdef HAVE_WIN32_PROC
1300 DWORD count;
1301 WriteFile( GetStdHandle( STD_OUTPUT_HANDLE ), "OK\n", 3, &count, NULL );
1302#elif defined(HAVE_FORKEXEC)
1303 fprintf(stderr, "OK\n");
1304#endif
1305 start_logging();
1306 }
JP Abgrall408fa572011-03-16 15:57:42 -07001307 D("Event loop starting\n");
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001308
1309 fdevent_loop();
1310
1311 usb_cleanup();
1312
1313 return 0;
1314}
1315
Stefan Hilzingerd9d1ca42010-04-26 10:17:43 +01001316#if ADB_HOST
1317void connect_device(char* host, char* buffer, int buffer_size)
1318{
1319 int port, fd;
1320 char* portstr = strchr(host, ':');
Mike Lockwoodcbbe79a2010-05-24 10:44:35 -04001321 char hostbuf[100];
1322 char serial[100];
Stefan Hilzingerd9d1ca42010-04-26 10:17:43 +01001323
Mike Lockwoodcbbe79a2010-05-24 10:44:35 -04001324 strncpy(hostbuf, host, sizeof(hostbuf) - 1);
1325 if (portstr) {
Scott Andersonc7993af2012-05-25 13:55:46 -07001326 if (portstr - host >= (ptrdiff_t)sizeof(hostbuf)) {
Mike Lockwoodcbbe79a2010-05-24 10:44:35 -04001327 snprintf(buffer, buffer_size, "bad host name %s", host);
1328 return;
1329 }
1330 // zero terminate the host at the point we found the colon
1331 hostbuf[portstr - host] = 0;
1332 if (sscanf(portstr + 1, "%d", &port) == 0) {
1333 snprintf(buffer, buffer_size, "bad port number %s", portstr);
1334 return;
1335 }
1336 } else {
1337 port = DEFAULT_ADB_LOCAL_TRANSPORT_PORT;
Stefan Hilzingerd9d1ca42010-04-26 10:17:43 +01001338 }
Mike Lockwoodcbbe79a2010-05-24 10:44:35 -04001339
1340 snprintf(serial, sizeof(serial), "%s:%d", hostbuf, port);
1341 if (find_transport(serial)) {
1342 snprintf(buffer, buffer_size, "already connected to %s", serial);
Stefan Hilzingerd9d1ca42010-04-26 10:17:43 +01001343 return;
1344 }
1345
Mike Lockwoodcbbe79a2010-05-24 10:44:35 -04001346 fd = socket_network_client(hostbuf, port, SOCK_STREAM);
Stefan Hilzingerd9d1ca42010-04-26 10:17:43 +01001347 if (fd < 0) {
1348 snprintf(buffer, buffer_size, "unable to connect to %s:%d", host, port);
1349 return;
1350 }
1351
1352 D("client: connected on remote on fd %d\n", fd);
1353 close_on_exec(fd);
1354 disable_tcp_nagle(fd);
Mike Lockwoodcbbe79a2010-05-24 10:44:35 -04001355 register_socket_transport(fd, serial, port, 0);
1356 snprintf(buffer, buffer_size, "connected to %s", serial);
Stefan Hilzingerd9d1ca42010-04-26 10:17:43 +01001357}
1358
1359void connect_emulator(char* port_spec, char* buffer, int buffer_size)
1360{
1361 char* port_separator = strchr(port_spec, ',');
1362 if (!port_separator) {
1363 snprintf(buffer, buffer_size,
1364 "unable to parse '%s' as <console port>,<adb port>",
1365 port_spec);
1366 return;
1367 }
1368
1369 // Zero-terminate console port and make port_separator point to 2nd port.
1370 *port_separator++ = 0;
1371 int console_port = strtol(port_spec, NULL, 0);
1372 int adb_port = strtol(port_separator, NULL, 0);
1373 if (!(console_port > 0 && adb_port > 0)) {
1374 *(port_separator - 1) = ',';
1375 snprintf(buffer, buffer_size,
1376 "Invalid port numbers: Expected positive numbers, got '%s'",
1377 port_spec);
1378 return;
1379 }
1380
1381 /* Check if the emulator is already known.
1382 * Note: There's a small but harmless race condition here: An emulator not
1383 * present just yet could be registered by another invocation right
1384 * after doing this check here. However, local_connect protects
1385 * against double-registration too. From here, a better error message
1386 * can be produced. In the case of the race condition, the very specific
1387 * error message won't be shown, but the data doesn't get corrupted. */
1388 atransport* known_emulator = find_emulator_transport_by_adb_port(adb_port);
1389 if (known_emulator != NULL) {
1390 snprintf(buffer, buffer_size,
1391 "Emulator on port %d already registered.", adb_port);
1392 return;
1393 }
1394
1395 /* Check if more emulators can be registered. Similar unproblematic
1396 * race condition as above. */
1397 int candidate_slot = get_available_local_transport_index();
1398 if (candidate_slot < 0) {
1399 snprintf(buffer, buffer_size, "Cannot accept more emulators.");
1400 return;
1401 }
1402
1403 /* Preconditions met, try to connect to the emulator. */
1404 if (!local_connect_arbitrary_ports(console_port, adb_port)) {
1405 snprintf(buffer, buffer_size,
1406 "Connected to emulator on ports %d,%d", console_port, adb_port);
1407 } else {
1408 snprintf(buffer, buffer_size,
1409 "Could not connect to emulator on ports %d,%d",
1410 console_port, adb_port);
1411 }
1412}
1413#endif
1414
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001415int handle_host_request(char *service, transport_type ttype, char* serial, int reply_fd, asocket *s)
1416{
1417 atransport *transport = NULL;
1418 char buf[4096];
1419
1420 if(!strcmp(service, "kill")) {
1421 fprintf(stderr,"adb server killed by remote request\n");
1422 fflush(stdout);
1423 adb_write(reply_fd, "OKAY", 4);
1424 usb_cleanup();
1425 exit(0);
1426 }
1427
1428#if ADB_HOST
1429 // "transport:" is used for switching transport with a specified serial number
1430 // "transport-usb:" is used for switching transport to the only USB transport
1431 // "transport-local:" is used for switching transport to the only local transport
1432 // "transport-any:" is used for switching transport to the only transport
1433 if (!strncmp(service, "transport", strlen("transport"))) {
1434 char* error_string = "unknown failure";
1435 transport_type type = kTransportAny;
1436
1437 if (!strncmp(service, "transport-usb", strlen("transport-usb"))) {
1438 type = kTransportUsb;
1439 } else if (!strncmp(service, "transport-local", strlen("transport-local"))) {
1440 type = kTransportLocal;
1441 } else if (!strncmp(service, "transport-any", strlen("transport-any"))) {
1442 type = kTransportAny;
1443 } else if (!strncmp(service, "transport:", strlen("transport:"))) {
1444 service += strlen("transport:");
Tom Marlin3175c8e2011-07-27 12:56:14 -05001445 serial = service;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001446 }
1447
1448 transport = acquire_one_transport(CS_ANY, type, serial, &error_string);
1449
1450 if (transport) {
1451 s->transport = transport;
1452 adb_write(reply_fd, "OKAY", 4);
1453 } else {
1454 sendfailmsg(reply_fd, error_string);
1455 }
1456 return 1;
1457 }
1458
1459 // return a list of all connected devices
Scott Andersone109d262012-04-20 11:21:14 -07001460 if (!strncmp(service, "devices", 7)) {
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001461 char buffer[4096];
Scott Andersone109d262012-04-20 11:21:14 -07001462 int use_long = !strcmp(service+7, "-l");
1463 if (use_long || service[7] == 0) {
1464 memset(buf, 0, sizeof(buf));
1465 memset(buffer, 0, sizeof(buffer));
1466 D("Getting device list \n");
1467 list_transports(buffer, sizeof(buffer), use_long);
1468 snprintf(buf, sizeof(buf), "OKAY%04x%s",(unsigned)strlen(buffer),buffer);
1469 D("Wrote device list \n");
1470 writex(reply_fd, buf, strlen(buf));
1471 return 0;
1472 }
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001473 }
1474
Stefan Hilzingerd9d1ca42010-04-26 10:17:43 +01001475 // add a new TCP transport, device or emulator
Mike Lockwood2f38b692009-08-24 15:58:40 -07001476 if (!strncmp(service, "connect:", 8)) {
1477 char buffer[4096];
Mike Lockwood2f38b692009-08-24 15:58:40 -07001478 char* host = service + 8;
Stefan Hilzingerd9d1ca42010-04-26 10:17:43 +01001479 if (!strncmp(host, "emu:", 4)) {
1480 connect_emulator(host + 4, buffer, sizeof(buffer));
1481 } else {
1482 connect_device(host, buffer, sizeof(buffer));
Mike Lockwood2f38b692009-08-24 15:58:40 -07001483 }
Stefan Hilzingerd9d1ca42010-04-26 10:17:43 +01001484 // Send response for emulator and device
Mike Lockwood74d7ff82009-10-11 23:04:18 -04001485 snprintf(buf, sizeof(buf), "OKAY%04x%s",(unsigned)strlen(buffer), buffer);
1486 writex(reply_fd, buf, strlen(buf));
1487 return 0;
1488 }
1489
1490 // remove TCP transport
1491 if (!strncmp(service, "disconnect:", 11)) {
1492 char buffer[4096];
1493 memset(buffer, 0, sizeof(buffer));
1494 char* serial = service + 11;
Mike Lockwoodcbbe79a2010-05-24 10:44:35 -04001495 if (serial[0] == 0) {
1496 // disconnect from all TCP devices
1497 unregister_all_tcp_transports();
Mike Lockwood74d7ff82009-10-11 23:04:18 -04001498 } else {
Mike Lockwoodcbbe79a2010-05-24 10:44:35 -04001499 char hostbuf[100];
1500 // assume port 5555 if no port is specified
1501 if (!strchr(serial, ':')) {
1502 snprintf(hostbuf, sizeof(hostbuf) - 1, "%s:5555", serial);
1503 serial = hostbuf;
1504 }
1505 atransport *t = find_transport(serial);
1506
1507 if (t) {
1508 unregister_transport(t);
1509 } else {
1510 snprintf(buffer, sizeof(buffer), "No such device %s", serial);
1511 }
Mike Lockwood74d7ff82009-10-11 23:04:18 -04001512 }
1513
1514 snprintf(buf, sizeof(buf), "OKAY%04x%s",(unsigned)strlen(buffer), buffer);
Mike Lockwood2f38b692009-08-24 15:58:40 -07001515 writex(reply_fd, buf, strlen(buf));
1516 return 0;
1517 }
1518
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001519 // returns our value for ADB_SERVER_VERSION
1520 if (!strcmp(service, "version")) {
1521 char version[12];
1522 snprintf(version, sizeof version, "%04x", ADB_SERVER_VERSION);
1523 snprintf(buf, sizeof buf, "OKAY%04x%s", (unsigned)strlen(version), version);
1524 writex(reply_fd, buf, strlen(buf));
1525 return 0;
1526 }
1527
1528 if(!strncmp(service,"get-serialno",strlen("get-serialno"))) {
1529 char *out = "unknown";
1530 transport = acquire_one_transport(CS_ANY, ttype, serial, NULL);
1531 if (transport && transport->serial) {
1532 out = transport->serial;
1533 }
1534 snprintf(buf, sizeof buf, "OKAY%04x%s",(unsigned)strlen(out),out);
1535 writex(reply_fd, buf, strlen(buf));
1536 return 0;
1537 }
Scott Andersone109d262012-04-20 11:21:14 -07001538 if(!strncmp(service,"get-devpath",strlen("get-devpath"))) {
1539 char *out = "unknown";
1540 transport = acquire_one_transport(CS_ANY, ttype, serial, NULL);
1541 if (transport && transport->devpath) {
1542 out = transport->devpath;
1543 }
1544 snprintf(buf, sizeof buf, "OKAY%04x%s",(unsigned)strlen(out),out);
1545 writex(reply_fd, buf, strlen(buf));
1546 return 0;
1547 }
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001548 // indicates a new emulator instance has started
1549 if (!strncmp(service,"emulator:",9)) {
1550 int port = atoi(service+9);
1551 local_connect(port);
1552 /* we don't even need to send a reply */
1553 return 0;
1554 }
1555#endif // ADB_HOST
1556
David 'Digit' Turner0d82fbf2012-11-14 15:01:55 +01001557 if(!strcmp(service,"list-forward")) {
1558 // Create the list of forward redirections.
1559 char header[9];
1560 int buffer_size = format_listeners(NULL, 0);
1561 // Add one byte for the trailing zero.
1562 char* buffer = malloc(buffer_size+1);
1563 (void) format_listeners(buffer, buffer_size+1);
1564 snprintf(header, sizeof header, "OKAY%04x", buffer_size);
1565 writex(reply_fd, header, 8);
1566 writex(reply_fd, buffer, buffer_size);
1567 free(buffer);
1568 return 0;
1569 }
1570
1571 if (!strcmp(service,"killforward-all")) {
1572 remove_all_listeners();
1573 adb_write(reply_fd, "OKAYOKAY", 8);
1574 return 0;
1575 }
1576
1577 if(!strncmp(service,"forward:",8) ||
1578 !strncmp(service,"killforward:",12)) {
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001579 char *local, *remote, *err;
1580 int r;
1581 atransport *transport;
1582
1583 int createForward = strncmp(service,"kill",4);
David 'Digit' Turner0d82fbf2012-11-14 15:01:55 +01001584 int no_rebind = 0;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001585
David 'Digit' Turner0d82fbf2012-11-14 15:01:55 +01001586 local = strchr(service, ':') + 1;
1587
1588 // Handle forward:norebind:<local>... here
1589 if (createForward && !strncmp(local, "norebind:", 9)) {
1590 no_rebind = 1;
1591 local = strchr(local, ':') + 1;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001592 }
1593
David 'Digit' Turner0d82fbf2012-11-14 15:01:55 +01001594 remote = strchr(local,';');
1595
1596 if (createForward) {
1597 // Check forward: parameter format: '<local>;<remote>'
1598 if(remote == 0) {
1599 sendfailmsg(reply_fd, "malformed forward spec");
1600 return 0;
1601 }
1602
1603 *remote++ = 0;
1604 if((local[0] == 0) || (remote[0] == 0) || (remote[0] == '*')){
1605 sendfailmsg(reply_fd, "malformed forward spec");
1606 return 0;
1607 }
1608 } else {
1609 // Check killforward: parameter format: '<local>'
1610 if (local[0] == 0) {
1611 sendfailmsg(reply_fd, "malformed forward spec");
1612 return 0;
1613 }
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001614 }
1615
1616 transport = acquire_one_transport(CS_ANY, ttype, serial, &err);
1617 if (!transport) {
1618 sendfailmsg(reply_fd, err);
1619 return 0;
1620 }
1621
1622 if (createForward) {
David 'Digit' Turner0d82fbf2012-11-14 15:01:55 +01001623 r = install_listener(local, remote, transport, no_rebind);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001624 } else {
David 'Digit' Turner0d82fbf2012-11-14 15:01:55 +01001625 r = remove_listener(local, transport);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001626 }
1627 if(r == 0) {
1628 /* 1st OKAY is connect, 2nd OKAY is status */
1629 writex(reply_fd, "OKAYOKAY", 8);
1630 return 0;
1631 }
1632
1633 if (createForward) {
David 'Digit' Turner0d82fbf2012-11-14 15:01:55 +01001634 const char* message;
1635 switch (r) {
1636 case INSTALL_STATUS_CANNOT_BIND:
1637 message = "cannot bind to socket";
1638 break;
1639 case INSTALL_STATUS_CANNOT_REBIND:
1640 message = "cannot rebind existing socket";
1641 break;
1642 default:
1643 message = "internal error";
1644 }
1645 sendfailmsg(reply_fd, message);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001646 } else {
1647 sendfailmsg(reply_fd, "cannot remove listener");
1648 }
1649 return 0;
1650 }
1651
1652 if(!strncmp(service,"get-state",strlen("get-state"))) {
1653 transport = acquire_one_transport(CS_ANY, ttype, serial, NULL);
1654 char *state = connection_state_name(transport);
1655 snprintf(buf, sizeof buf, "OKAY%04x%s",(unsigned)strlen(state),state);
1656 writex(reply_fd, buf, strlen(buf));
1657 return 0;
1658 }
1659 return -1;
1660}
1661
1662#if !ADB_HOST
1663int recovery_mode = 0;
1664#endif
1665
1666int main(int argc, char **argv)
1667{
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001668#if ADB_HOST
1669 adb_sysdeps_init();
JP Abgrall408fa572011-03-16 15:57:42 -07001670 adb_trace_init();
1671 D("Handling commandline()\n");
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001672 return adb_commandline(argc - 1, argv + 1);
1673#else
Vladimir Chtchetkine28781b02012-02-27 10:41:53 -08001674 /* If adbd runs inside the emulator this will enable adb tracing via
1675 * adb-debug qemud service in the emulator. */
1676 adb_qemu_trace_init();
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001677 if((argc > 1) && (!strcmp(argv[1],"recovery"))) {
1678 adb_device_banner = "recovery";
1679 recovery_mode = 1;
1680 }
Mike Lockwood1f546e62009-05-25 18:17:55 -04001681
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001682 start_device_log();
JP Abgrall408fa572011-03-16 15:57:42 -07001683 D("Handling main()\n");
Stefan Hilzingera84a42e2010-04-19 12:21:12 +01001684 return adb_main(0, DEFAULT_ADB_PORT);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001685#endif
1686}