blob: 679b086f26f64eb1f59bd467e40ada646503b390 [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>
24#include <string.h>
25#include <time.h>
Mike Lockwood1f546e62009-05-25 18:17:55 -040026#include <sys/time.h>
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -080027
28#include "sysdeps.h"
29#include "adb.h"
30
31#if !ADB_HOST
32#include <private/android_filesystem_config.h>
Mike Lockwood5f4b0512009-08-04 20:37:51 -040033#include <linux/capability.h>
34#include <linux/prctl.h>
Xavier Ducroheta09fbd12009-05-20 17:33:53 -070035#else
36#include "usb_vendors.h"
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -080037#endif
38
39
40int HOST = 0;
41
42static const char *adb_device_banner = "device";
43
44void fatal(const char *fmt, ...)
45{
46 va_list ap;
47 va_start(ap, fmt);
48 fprintf(stderr, "error: ");
49 vfprintf(stderr, fmt, ap);
50 fprintf(stderr, "\n");
51 va_end(ap);
52 exit(-1);
53}
54
55void fatal_errno(const char *fmt, ...)
56{
57 va_list ap;
58 va_start(ap, fmt);
59 fprintf(stderr, "error: %s: ", strerror(errno));
60 vfprintf(stderr, fmt, ap);
61 fprintf(stderr, "\n");
62 va_end(ap);
63 exit(-1);
64}
65
66int adb_trace_mask;
67
68/* read a comma/space/colum/semi-column separated list of tags
69 * from the ADB_TRACE environment variable and build the trace
70 * mask from it. note that '1' and 'all' are special cases to
71 * enable all tracing
72 */
73void adb_trace_init(void)
74{
75 const char* p = getenv("ADB_TRACE");
76 const char* q;
77
78 static const struct {
79 const char* tag;
80 int flag;
81 } tags[] = {
82 { "1", 0 },
83 { "all", 0 },
84 { "adb", TRACE_ADB },
85 { "sockets", TRACE_SOCKETS },
86 { "packets", TRACE_PACKETS },
87 { "rwx", TRACE_RWX },
88 { "usb", TRACE_USB },
89 { "sync", TRACE_SYNC },
90 { "sysdeps", TRACE_SYSDEPS },
91 { "transport", TRACE_TRANSPORT },
92 { "jdwp", TRACE_JDWP },
93 { NULL, 0 }
94 };
95
96 if (p == NULL)
97 return;
98
99 /* use a comma/column/semi-colum/space separated list */
100 while (*p) {
101 int len, tagn;
102
103 q = strpbrk(p, " ,:;");
104 if (q == NULL) {
105 q = p + strlen(p);
106 }
107 len = q - p;
108
109 for (tagn = 0; tags[tagn].tag != NULL; tagn++)
110 {
111 int taglen = strlen(tags[tagn].tag);
112
113 if (len == taglen && !memcmp(tags[tagn].tag, p, len) )
114 {
115 int flag = tags[tagn].flag;
116 if (flag == 0) {
117 adb_trace_mask = ~0;
118 return;
119 }
120 adb_trace_mask |= (1 << flag);
121 break;
122 }
123 }
124 p = q;
125 if (*p)
126 p++;
127 }
128}
129
130
131apacket *get_apacket(void)
132{
133 apacket *p = malloc(sizeof(apacket));
134 if(p == 0) fatal("failed to allocate an apacket");
135 memset(p, 0, sizeof(apacket) - MAX_PAYLOAD);
136 return p;
137}
138
139void put_apacket(apacket *p)
140{
141 free(p);
142}
143
144void handle_online(void)
145{
146 D("adb: online\n");
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800147}
148
149void handle_offline(atransport *t)
150{
151 D("adb: offline\n");
152 //Close the associated usb
153 run_transport_disconnects(t);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800154}
155
156#if TRACE_PACKETS
157#define DUMPMAX 32
158void print_packet(const char *label, apacket *p)
159{
160 char *tag;
161 char *x;
162 unsigned count;
163
164 switch(p->msg.command){
165 case A_SYNC: tag = "SYNC"; break;
166 case A_CNXN: tag = "CNXN" ; break;
167 case A_OPEN: tag = "OPEN"; break;
168 case A_OKAY: tag = "OKAY"; break;
169 case A_CLSE: tag = "CLSE"; break;
170 case A_WRTE: tag = "WRTE"; break;
171 default: tag = "????"; break;
172 }
173
174 fprintf(stderr, "%s: %s %08x %08x %04x \"",
175 label, tag, p->msg.arg0, p->msg.arg1, p->msg.data_length);
176 count = p->msg.data_length;
177 x = (char*) p->data;
178 if(count > DUMPMAX) {
179 count = DUMPMAX;
180 tag = "\n";
181 } else {
182 tag = "\"\n";
183 }
184 while(count-- > 0){
185 if((*x >= ' ') && (*x < 127)) {
186 fputc(*x, stderr);
187 } else {
188 fputc('.', stderr);
189 }
190 x++;
191 }
192 fprintf(stderr, tag);
193}
194#endif
195
196static void send_ready(unsigned local, unsigned remote, atransport *t)
197{
198 D("Calling send_ready \n");
199 apacket *p = get_apacket();
200 p->msg.command = A_OKAY;
201 p->msg.arg0 = local;
202 p->msg.arg1 = remote;
203 send_packet(p, t);
204}
205
206static void send_close(unsigned local, unsigned remote, atransport *t)
207{
208 D("Calling send_close \n");
209 apacket *p = get_apacket();
210 p->msg.command = A_CLSE;
211 p->msg.arg0 = local;
212 p->msg.arg1 = remote;
213 send_packet(p, t);
214}
215
216static void send_connect(atransport *t)
217{
218 D("Calling send_connect \n");
219 apacket *cp = get_apacket();
220 cp->msg.command = A_CNXN;
221 cp->msg.arg0 = A_VERSION;
222 cp->msg.arg1 = MAX_PAYLOAD;
223 snprintf((char*) cp->data, sizeof cp->data, "%s::",
224 HOST ? "host" : adb_device_banner);
225 cp->msg.data_length = strlen((char*) cp->data) + 1;
226 send_packet(cp, t);
227#if ADB_HOST
228 /* XXX why sleep here? */
229 // allow the device some time to respond to the connect message
230 adb_sleep_ms(1000);
231#endif
232}
233
234static char *connection_state_name(atransport *t)
235{
236 if (t == NULL) {
237 return "unknown";
238 }
239
240 switch(t->connection_state) {
241 case CS_BOOTLOADER:
242 return "bootloader";
243 case CS_DEVICE:
244 return "device";
245 case CS_OFFLINE:
246 return "offline";
247 default:
248 return "unknown";
249 }
250}
251
252void parse_banner(char *banner, atransport *t)
253{
254 char *type, *product, *end;
255
256 D("parse_banner: %s\n", banner);
257 type = banner;
258 product = strchr(type, ':');
259 if(product) {
260 *product++ = 0;
261 } else {
262 product = "";
263 }
264
265 /* remove trailing ':' */
266 end = strchr(product, ':');
267 if(end) *end = 0;
268
269 /* save product name in device structure */
270 if (t->product == NULL) {
271 t->product = strdup(product);
272 } else if (strcmp(product, t->product) != 0) {
273 free(t->product);
274 t->product = strdup(product);
275 }
276
277 if(!strcmp(type, "bootloader")){
278 D("setting connection_state to CS_BOOTLOADER\n");
279 t->connection_state = CS_BOOTLOADER;
280 update_transports();
281 return;
282 }
283
284 if(!strcmp(type, "device")) {
285 D("setting connection_state to CS_DEVICE\n");
286 t->connection_state = CS_DEVICE;
287 update_transports();
288 return;
289 }
290
291 if(!strcmp(type, "recovery")) {
292 D("setting connection_state to CS_RECOVERY\n");
293 t->connection_state = CS_RECOVERY;
294 update_transports();
295 return;
296 }
297
298 t->connection_state = CS_HOST;
299}
300
301void handle_packet(apacket *p, atransport *t)
302{
303 asocket *s;
304
Viral Mehta899913f2010-06-16 18:41:28 +0530305 D("handle_packet() %c%c%c%c\n", ((char*) (&(p->msg.command)))[0],
306 ((char*) (&(p->msg.command)))[1],
307 ((char*) (&(p->msg.command)))[2],
308 ((char*) (&(p->msg.command)))[3]);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800309 print_packet("recv", p);
310
311 switch(p->msg.command){
312 case A_SYNC:
313 if(p->msg.arg0){
314 send_packet(p, t);
315 if(HOST) send_connect(t);
316 } else {
317 t->connection_state = CS_OFFLINE;
318 handle_offline(t);
319 send_packet(p, t);
320 }
321 return;
322
323 case A_CNXN: /* CONNECT(version, maxdata, "system-id-string") */
324 /* XXX verify version, etc */
325 if(t->connection_state != CS_OFFLINE) {
326 t->connection_state = CS_OFFLINE;
327 handle_offline(t);
328 }
329 parse_banner((char*) p->data, t);
330 handle_online();
331 if(!HOST) send_connect(t);
332 break;
333
334 case A_OPEN: /* OPEN(local-id, 0, "destination") */
335 if(t->connection_state != CS_OFFLINE) {
336 char *name = (char*) p->data;
337 name[p->msg.data_length > 0 ? p->msg.data_length - 1 : 0] = 0;
338 s = create_local_service_socket(name);
339 if(s == 0) {
340 send_close(0, p->msg.arg0, t);
341 } else {
342 s->peer = create_remote_socket(p->msg.arg0, t);
343 s->peer->peer = s;
344 send_ready(s->id, s->peer->id, t);
345 s->ready(s);
346 }
347 }
348 break;
349
350 case A_OKAY: /* READY(local-id, remote-id, "") */
351 if(t->connection_state != CS_OFFLINE) {
352 if((s = find_local_socket(p->msg.arg1))) {
353 if(s->peer == 0) {
354 s->peer = create_remote_socket(p->msg.arg0, t);
355 s->peer->peer = s;
356 }
357 s->ready(s);
358 }
359 }
360 break;
361
362 case A_CLSE: /* CLOSE(local-id, remote-id, "") */
363 if(t->connection_state != CS_OFFLINE) {
364 if((s = find_local_socket(p->msg.arg1))) {
365 s->close(s);
366 }
367 }
368 break;
369
370 case A_WRTE:
371 if(t->connection_state != CS_OFFLINE) {
372 if((s = find_local_socket(p->msg.arg1))) {
373 unsigned rid = p->msg.arg0;
374 p->len = p->msg.data_length;
375
376 if(s->enqueue(s, p) == 0) {
377 D("Enqueue the socket\n");
378 send_ready(s->id, rid, t);
379 }
380 return;
381 }
382 }
383 break;
384
385 default:
386 printf("handle_packet: what is %08x?!\n", p->msg.command);
387 }
388
389 put_apacket(p);
390}
391
392alistener listener_list = {
393 .next = &listener_list,
394 .prev = &listener_list,
395};
396
397static void ss_listener_event_func(int _fd, unsigned ev, void *_l)
398{
399 asocket *s;
400
401 if(ev & FDE_READ) {
402 struct sockaddr addr;
403 socklen_t alen;
404 int fd;
405
406 alen = sizeof(addr);
407 fd = adb_socket_accept(_fd, &addr, &alen);
408 if(fd < 0) return;
409
410 adb_socket_setbufsize(fd, CHUNK_SIZE);
411
412 s = create_local_socket(fd);
413 if(s) {
414 connect_to_smartsocket(s);
415 return;
416 }
417
418 adb_close(fd);
419 }
420}
421
422static void listener_event_func(int _fd, unsigned ev, void *_l)
423{
424 alistener *l = _l;
425 asocket *s;
426
427 if(ev & FDE_READ) {
428 struct sockaddr addr;
429 socklen_t alen;
430 int fd;
431
432 alen = sizeof(addr);
433 fd = adb_socket_accept(_fd, &addr, &alen);
434 if(fd < 0) return;
435
436 s = create_local_socket(fd);
437 if(s) {
438 s->transport = l->transport;
439 connect_to_remote(s, l->connect_to);
440 return;
441 }
442
443 adb_close(fd);
444 }
445}
446
447static void free_listener(alistener* l)
448{
449 if (l->next) {
450 l->next->prev = l->prev;
451 l->prev->next = l->next;
452 l->next = l->prev = l;
453 }
454
455 // closes the corresponding fd
456 fdevent_remove(&l->fde);
457
458 if (l->local_name)
459 free((char*)l->local_name);
460
461 if (l->connect_to)
462 free((char*)l->connect_to);
463
464 if (l->transport) {
465 remove_transport_disconnect(l->transport, &l->disconnect);
466 }
467 free(l);
468}
469
470static void listener_disconnect(void* _l, atransport* t)
471{
472 alistener* l = _l;
473
474 free_listener(l);
475}
476
477int local_name_to_fd(const char *name)
478{
479 int port;
480
481 if(!strncmp("tcp:", name, 4)){
482 int ret;
483 port = atoi(name + 4);
484 ret = socket_loopback_server(port, SOCK_STREAM);
485 return ret;
486 }
487#ifndef HAVE_WIN32_IPC /* no Unix-domain sockets on Win32 */
488 // It's non-sensical to support the "reserved" space on the adb host side
489 if(!strncmp(name, "local:", 6)) {
490 return socket_local_server(name + 6,
491 ANDROID_SOCKET_NAMESPACE_ABSTRACT, SOCK_STREAM);
492 } else if(!strncmp(name, "localabstract:", 14)) {
493 return socket_local_server(name + 14,
494 ANDROID_SOCKET_NAMESPACE_ABSTRACT, SOCK_STREAM);
495 } else if(!strncmp(name, "localfilesystem:", 16)) {
496 return socket_local_server(name + 16,
497 ANDROID_SOCKET_NAMESPACE_FILESYSTEM, SOCK_STREAM);
498 }
499
500#endif
501 printf("unknown local portname '%s'\n", name);
502 return -1;
503}
504
505static int remove_listener(const char *local_name, const char *connect_to, atransport* transport)
506{
507 alistener *l;
508
509 for (l = listener_list.next; l != &listener_list; l = l->next) {
510 if (!strcmp(local_name, l->local_name) &&
511 !strcmp(connect_to, l->connect_to) &&
512 l->transport && l->transport == transport) {
513
514 listener_disconnect(l, transport);
515 return 0;
516 }
517 }
518
519 return -1;
520}
521
522static int install_listener(const char *local_name, const char *connect_to, atransport* transport)
523{
524 alistener *l;
525
526 //printf("install_listener('%s','%s')\n", local_name, connect_to);
527
528 for(l = listener_list.next; l != &listener_list; l = l->next){
529 if(strcmp(local_name, l->local_name) == 0) {
530 char *cto;
531
532 /* can't repurpose a smartsocket */
533 if(l->connect_to[0] == '*') {
534 return -1;
535 }
536
537 cto = strdup(connect_to);
538 if(cto == 0) {
539 return -1;
540 }
541
542 //printf("rebinding '%s' to '%s'\n", local_name, connect_to);
543 free((void*) l->connect_to);
544 l->connect_to = cto;
545 if (l->transport != transport) {
546 remove_transport_disconnect(l->transport, &l->disconnect);
547 l->transport = transport;
548 add_transport_disconnect(l->transport, &l->disconnect);
549 }
550 return 0;
551 }
552 }
553
554 if((l = calloc(1, sizeof(alistener))) == 0) goto nomem;
555 if((l->local_name = strdup(local_name)) == 0) goto nomem;
556 if((l->connect_to = strdup(connect_to)) == 0) goto nomem;
557
558
559 l->fd = local_name_to_fd(local_name);
560 if(l->fd < 0) {
561 free((void*) l->local_name);
562 free((void*) l->connect_to);
563 free(l);
564 printf("cannot bind '%s'\n", local_name);
565 return -2;
566 }
567
568 close_on_exec(l->fd);
569 if(!strcmp(l->connect_to, "*smartsocket*")) {
570 fdevent_install(&l->fde, l->fd, ss_listener_event_func, l);
571 } else {
572 fdevent_install(&l->fde, l->fd, listener_event_func, l);
573 }
574 fdevent_set(&l->fde, FDE_READ);
575
576 l->next = &listener_list;
577 l->prev = listener_list.prev;
578 l->next->prev = l;
579 l->prev->next = l;
580 l->transport = transport;
581
582 if (transport) {
583 l->disconnect.opaque = l;
584 l->disconnect.func = listener_disconnect;
585 add_transport_disconnect(transport, &l->disconnect);
586 }
587 return 0;
588
589nomem:
590 fatal("cannot allocate listener");
591 return 0;
592}
593
594#ifdef HAVE_FORKEXEC
595static void sigchld_handler(int n)
596{
597 int status;
598 while(waitpid(-1, &status, WNOHANG) > 0) ;
599}
600#endif
601
602#ifdef HAVE_WIN32_PROC
603static BOOL WINAPI ctrlc_handler(DWORD type)
604{
605 exit(STATUS_CONTROL_C_EXIT);
606 return TRUE;
607}
608#endif
609
610static void adb_cleanup(void)
611{
612 usb_cleanup();
613}
614
615void start_logging(void)
616{
617#ifdef HAVE_WIN32_PROC
618 char temp[ MAX_PATH ];
619 FILE* fnul;
620 FILE* flog;
621
622 GetTempPath( sizeof(temp) - 8, temp );
623 strcat( temp, "adb.log" );
624
625 /* Win32 specific redirections */
626 fnul = fopen( "NUL", "rt" );
627 if (fnul != NULL)
628 stdin[0] = fnul[0];
629
630 flog = fopen( temp, "at" );
631 if (flog == NULL)
632 flog = fnul;
633
634 setvbuf( flog, NULL, _IONBF, 0 );
635
636 stdout[0] = flog[0];
637 stderr[0] = flog[0];
638 fprintf(stderr,"--- adb starting (pid %d) ---\n", getpid());
639#else
640 int fd;
641
642 fd = unix_open("/dev/null", O_RDONLY);
643 dup2(fd, 0);
644
645 fd = unix_open("/tmp/adb.log", O_WRONLY | O_CREAT | O_APPEND, 0640);
646 if(fd < 0) {
647 fd = unix_open("/dev/null", O_WRONLY);
648 }
649 dup2(fd, 1);
650 dup2(fd, 2);
651 fprintf(stderr,"--- adb starting (pid %d) ---\n", getpid());
652#endif
653}
654
655#if !ADB_HOST
656void start_device_log(void)
657{
658 int fd;
Mike Lockwood1f546e62009-05-25 18:17:55 -0400659 char path[PATH_MAX];
660 struct tm now;
661 time_t t;
662 char value[PROPERTY_VALUE_MAX];
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800663
Mike Lockwood1f546e62009-05-25 18:17:55 -0400664 // read the trace mask from persistent property persist.adb.trace_mask
665 // give up if the property is not set or cannot be parsed
666 property_get("persist.adb.trace_mask", value, "");
667 if (sscanf(value, "%x", &adb_trace_mask) != 1)
668 return;
669
670 adb_mkdir("/data/adb", 0775);
671 tzset();
672 time(&t);
673 localtime_r(&t, &now);
674 strftime(path, sizeof(path),
675 "/data/adb/adb-%Y-%m-%d-%H-%M-%S.txt",
676 &now);
677 fd = unix_open(path, O_WRONLY | O_CREAT | O_TRUNC, 0640);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800678 if (fd < 0)
679 return;
680
681 // redirect stdout and stderr to the log file
682 dup2(fd, 1);
683 dup2(fd, 2);
684 fprintf(stderr,"--- adb starting (pid %d) ---\n", getpid());
685
686 fd = unix_open("/dev/null", O_RDONLY);
687 dup2(fd, 0);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800688}
689#endif
690
691#if ADB_HOST
Stefan Hilzingera84a42e2010-04-19 12:21:12 +0100692int launch_server(int server_port)
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800693{
694#ifdef HAVE_WIN32_PROC
695 /* we need to start the server in the background */
696 /* we create a PIPE that will be used to wait for the server's "OK" */
697 /* message since the pipe handles must be inheritable, we use a */
698 /* security attribute */
699 HANDLE pipe_read, pipe_write;
700 SECURITY_ATTRIBUTES sa;
701 STARTUPINFO startup;
702 PROCESS_INFORMATION pinfo;
703 char program_path[ MAX_PATH ];
704 int ret;
705
706 sa.nLength = sizeof(sa);
707 sa.lpSecurityDescriptor = NULL;
708 sa.bInheritHandle = TRUE;
709
710 /* create pipe, and ensure its read handle isn't inheritable */
711 ret = CreatePipe( &pipe_read, &pipe_write, &sa, 0 );
712 if (!ret) {
713 fprintf(stderr, "CreatePipe() failure, error %ld\n", GetLastError() );
714 return -1;
715 }
716
717 SetHandleInformation( pipe_read, HANDLE_FLAG_INHERIT, 0 );
718
719 ZeroMemory( &startup, sizeof(startup) );
720 startup.cb = sizeof(startup);
721 startup.hStdInput = GetStdHandle( STD_INPUT_HANDLE );
722 startup.hStdOutput = pipe_write;
723 startup.hStdError = GetStdHandle( STD_ERROR_HANDLE );
724 startup.dwFlags = STARTF_USESTDHANDLES;
725
726 ZeroMemory( &pinfo, sizeof(pinfo) );
727
728 /* get path of current program */
729 GetModuleFileName( NULL, program_path, sizeof(program_path) );
730
731 ret = CreateProcess(
732 program_path, /* program path */
733 "adb fork-server server",
734 /* the fork-server argument will set the
735 debug = 2 in the child */
736 NULL, /* process handle is not inheritable */
737 NULL, /* thread handle is not inheritable */
738 TRUE, /* yes, inherit some handles */
739 DETACHED_PROCESS, /* the new process doesn't have a console */
740 NULL, /* use parent's environment block */
741 NULL, /* use parent's starting directory */
742 &startup, /* startup info, i.e. std handles */
743 &pinfo );
744
745 CloseHandle( pipe_write );
746
747 if (!ret) {
748 fprintf(stderr, "CreateProcess failure, error %ld\n", GetLastError() );
749 CloseHandle( pipe_read );
750 return -1;
751 }
752
753 CloseHandle( pinfo.hProcess );
754 CloseHandle( pinfo.hThread );
755
756 /* wait for the "OK\n" message */
757 {
758 char temp[3];
759 DWORD count;
760
761 ret = ReadFile( pipe_read, temp, 3, &count, NULL );
762 CloseHandle( pipe_read );
763 if ( !ret ) {
764 fprintf(stderr, "could not read ok from ADB Server, error = %ld\n", GetLastError() );
765 return -1;
766 }
767 if (count != 3 || temp[0] != 'O' || temp[1] != 'K' || temp[2] != '\n') {
768 fprintf(stderr, "ADB server didn't ACK\n" );
769 return -1;
770 }
771 }
772#elif defined(HAVE_FORKEXEC)
773 char path[PATH_MAX];
774 int fd[2];
775
776 // set up a pipe so the child can tell us when it is ready.
777 // fd[0] will be parent's end, and fd[1] will get mapped to stderr in the child.
778 if (pipe(fd)) {
779 fprintf(stderr, "pipe failed in launch_server, errno: %d\n", errno);
780 return -1;
781 }
Alexey Tarasov31664102009-10-22 02:55:00 +1100782 get_my_path(path, PATH_MAX);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800783 pid_t pid = fork();
784 if(pid < 0) return -1;
785
786 if (pid == 0) {
787 // child side of the fork
788
789 // redirect stderr to the pipe
790 // we use stderr instead of stdout due to stdout's buffering behavior.
791 adb_close(fd[0]);
792 dup2(fd[1], STDERR_FILENO);
793 adb_close(fd[1]);
794
795 // child process
796 int result = execl(path, "adb", "fork-server", "server", NULL);
797 // this should not return
798 fprintf(stderr, "OOPS! execl returned %d, errno: %d\n", result, errno);
799 } else {
800 // parent side of the fork
801
802 char temp[3];
803
804 temp[0] = 'A'; temp[1] = 'B'; temp[2] = 'C';
805 // wait for the "OK\n" message
806 adb_close(fd[1]);
807 int ret = adb_read(fd[0], temp, 3);
808 adb_close(fd[0]);
809 if (ret < 0) {
810 fprintf(stderr, "could not read ok from ADB Server, errno = %d\n", errno);
811 return -1;
812 }
813 if (ret != 3 || temp[0] != 'O' || temp[1] != 'K' || temp[2] != '\n') {
814 fprintf(stderr, "ADB server didn't ACK\n" );
815 return -1;
816 }
817
818 setsid();
819 }
820#else
821#error "cannot implement background server start on this platform"
822#endif
823 return 0;
824}
825#endif
826
Stefan Hilzingera84a42e2010-04-19 12:21:12 +0100827/* Constructs a local name of form tcp:port.
828 * target_str points to the target string, it's content will be overwritten.
829 * target_size is the capacity of the target string.
830 * server_port is the port number to use for the local name.
831 */
832void build_local_name(char* target_str, size_t target_size, int server_port)
833{
834 snprintf(target_str, target_size, "tcp:%d", server_port);
835}
836
837int adb_main(int is_daemon, int server_port)
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800838{
839#if !ADB_HOST
840 int secure = 0;
Mike Lockwood2f38b692009-08-24 15:58:40 -0700841 int port;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800842 char value[PROPERTY_VALUE_MAX];
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800843#endif
844
845 atexit(adb_cleanup);
846#ifdef HAVE_WIN32_PROC
847 SetConsoleCtrlHandler( ctrlc_handler, TRUE );
848#elif defined(HAVE_FORKEXEC)
849 signal(SIGCHLD, sigchld_handler);
850 signal(SIGPIPE, SIG_IGN);
851#endif
852
853 init_transport_registration();
854
855
856#if ADB_HOST
857 HOST = 1;
Xavier Ducroheta09fbd12009-05-20 17:33:53 -0700858 usb_vendors_init();
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800859 usb_init();
Stefan Hilzingera84a42e2010-04-19 12:21:12 +0100860 local_init(DEFAULT_ADB_LOCAL_TRANSPORT_PORT);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800861
Stefan Hilzingera84a42e2010-04-19 12:21:12 +0100862 char local_name[30];
863 build_local_name(local_name, sizeof(local_name), server_port);
864 if(install_listener(local_name, "*smartsocket*", NULL)) {
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800865 exit(1);
866 }
867#else
868 /* run adbd in secure mode if ro.secure is set and
869 ** we are not in the emulator
870 */
871 property_get("ro.kernel.qemu", value, "");
872 if (strcmp(value, "1") != 0) {
873 property_get("ro.secure", value, "");
The Android Open Source Projecte037fd72009-03-13 13:04:37 -0700874 if (strcmp(value, "1") == 0) {
875 // don't run as root if ro.secure is set...
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800876 secure = 1;
The Android Open Source Projecte037fd72009-03-13 13:04:37 -0700877
David 'Digit' Turner730ff3b2011-01-06 14:11:07 +0100878 // ... except we allow running as root in userdebug builds if the
The Android Open Source Projecte037fd72009-03-13 13:04:37 -0700879 // service.adb.root property has been set by the "adb root" command
880 property_get("ro.debuggable", value, "");
881 if (strcmp(value, "1") == 0) {
882 property_get("service.adb.root", value, "");
883 if (strcmp(value, "1") == 0) {
884 secure = 0;
885 }
886 }
887 }
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800888 }
889
Stefan Hilzingera84a42e2010-04-19 12:21:12 +0100890 /* don't listen on a port (default 5037) if running in secure mode */
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800891 /* don't run as root if we are running in secure mode */
892 if (secure) {
Mike Lockwood5f4b0512009-08-04 20:37:51 -0400893 struct __user_cap_header_struct header;
894 struct __user_cap_data_struct cap;
895
Nick Kralevich44db9902010-08-27 14:35:07 -0700896 if (prctl(PR_SET_KEEPCAPS, 1, 0, 0, 0) != 0) {
897 exit(1);
898 }
Mike Lockwood5f4b0512009-08-04 20:37:51 -0400899
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800900 /* add extra groups:
901 ** AID_ADB to access the USB driver
902 ** AID_LOG to read system logs (adb logcat)
903 ** AID_INPUT to diagnose input issues (getevent)
904 ** AID_INET to diagnose network issues (netcfg, ping)
905 ** AID_GRAPHICS to access the frame buffer
The Android Open Source Project20155492009-03-11 12:12:01 -0700906 ** AID_NET_BT and AID_NET_BT_ADMIN to diagnose bluetooth (hcidump)
Mike Lockwood6a3075c2009-05-25 13:52:00 -0400907 ** AID_SDCARD_RW to allow writing to the SD card
Mike Lockwoodd969faa2010-02-24 16:07:23 -0500908 ** AID_MOUNT to allow unmounting the SD card before rebooting
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800909 */
The Android Open Source Project20155492009-03-11 12:12:01 -0700910 gid_t groups[] = { AID_ADB, AID_LOG, AID_INPUT, AID_INET, AID_GRAPHICS,
Mike Lockwoodd969faa2010-02-24 16:07:23 -0500911 AID_NET_BT, AID_NET_BT_ADMIN, AID_SDCARD_RW, AID_MOUNT };
Nick Kralevich44db9902010-08-27 14:35:07 -0700912 if (setgroups(sizeof(groups)/sizeof(groups[0]), groups) != 0) {
913 exit(1);
914 }
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800915
916 /* then switch user and group to "shell" */
Nick Kralevich44db9902010-08-27 14:35:07 -0700917 if (setgid(AID_SHELL) != 0) {
918 exit(1);
919 }
920 if (setuid(AID_SHELL) != 0) {
921 exit(1);
922 }
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800923
Mike Lockwood5f4b0512009-08-04 20:37:51 -0400924 /* set CAP_SYS_BOOT capability, so "adb reboot" will succeed */
925 header.version = _LINUX_CAPABILITY_VERSION;
926 header.pid = 0;
927 cap.effective = cap.permitted = (1 << CAP_SYS_BOOT);
928 cap.inheritable = 0;
929 capset(&header, &cap);
930
Stefan Hilzingera84a42e2010-04-19 12:21:12 +0100931 D("Local port disabled\n");
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800932 } else {
Stefan Hilzingera84a42e2010-04-19 12:21:12 +0100933 char local_name[30];
934 build_local_name(local_name, sizeof(local_name), server_port);
935 if(install_listener(local_name, "*smartsocket*", NULL)) {
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800936 exit(1);
937 }
938 }
939
940 /* for the device, start the usb transport if the
Mike Lockwood8e2ceae2010-04-20 14:06:40 -0400941 ** android usb device exists and the "service.adb.tcp.port" and
942 ** "persist.adb.tcp.port" properties are not set.
943 ** Otherwise start the network transport.
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800944 */
Mike Lockwood8e2ceae2010-04-20 14:06:40 -0400945 property_get("service.adb.tcp.port", value, "");
946 if (!value[0])
947 property_get("persist.adb.tcp.port", value, "");
Mike Lockwoodcef31a02009-08-26 12:50:22 -0700948 if (sscanf(value, "%d", &port) == 1 && port > 0) {
949 // listen on TCP port specified by service.adb.tcp.port property
950 local_init(port);
951 } else if (access("/dev/android_adb", F_OK) == 0) {
952 // listen on USB
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800953 usb_init();
954 } else {
Mike Lockwoodcef31a02009-08-26 12:50:22 -0700955 // listen on default port
Stefan Hilzingera84a42e2010-04-19 12:21:12 +0100956 local_init(DEFAULT_ADB_LOCAL_TRANSPORT_PORT);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800957 }
958 init_jdwp();
959#endif
960
961 if (is_daemon)
962 {
963 // inform our parent that we are up and running.
964#ifdef HAVE_WIN32_PROC
965 DWORD count;
966 WriteFile( GetStdHandle( STD_OUTPUT_HANDLE ), "OK\n", 3, &count, NULL );
967#elif defined(HAVE_FORKEXEC)
968 fprintf(stderr, "OK\n");
969#endif
970 start_logging();
971 }
972
973 fdevent_loop();
974
975 usb_cleanup();
976
977 return 0;
978}
979
Stefan Hilzingerd9d1ca42010-04-26 10:17:43 +0100980#if ADB_HOST
981void connect_device(char* host, char* buffer, int buffer_size)
982{
983 int port, fd;
984 char* portstr = strchr(host, ':');
Mike Lockwoodcbbe79a2010-05-24 10:44:35 -0400985 char hostbuf[100];
986 char serial[100];
Stefan Hilzingerd9d1ca42010-04-26 10:17:43 +0100987
Mike Lockwoodcbbe79a2010-05-24 10:44:35 -0400988 strncpy(hostbuf, host, sizeof(hostbuf) - 1);
989 if (portstr) {
990 if (portstr - host >= sizeof(hostbuf)) {
991 snprintf(buffer, buffer_size, "bad host name %s", host);
992 return;
993 }
994 // zero terminate the host at the point we found the colon
995 hostbuf[portstr - host] = 0;
996 if (sscanf(portstr + 1, "%d", &port) == 0) {
997 snprintf(buffer, buffer_size, "bad port number %s", portstr);
998 return;
999 }
1000 } else {
1001 port = DEFAULT_ADB_LOCAL_TRANSPORT_PORT;
Stefan Hilzingerd9d1ca42010-04-26 10:17:43 +01001002 }
Mike Lockwoodcbbe79a2010-05-24 10:44:35 -04001003
1004 snprintf(serial, sizeof(serial), "%s:%d", hostbuf, port);
1005 if (find_transport(serial)) {
1006 snprintf(buffer, buffer_size, "already connected to %s", serial);
Stefan Hilzingerd9d1ca42010-04-26 10:17:43 +01001007 return;
1008 }
1009
Mike Lockwoodcbbe79a2010-05-24 10:44:35 -04001010 fd = socket_network_client(hostbuf, port, SOCK_STREAM);
Stefan Hilzingerd9d1ca42010-04-26 10:17:43 +01001011 if (fd < 0) {
1012 snprintf(buffer, buffer_size, "unable to connect to %s:%d", host, port);
1013 return;
1014 }
1015
1016 D("client: connected on remote on fd %d\n", fd);
1017 close_on_exec(fd);
1018 disable_tcp_nagle(fd);
Mike Lockwoodcbbe79a2010-05-24 10:44:35 -04001019 register_socket_transport(fd, serial, port, 0);
1020 snprintf(buffer, buffer_size, "connected to %s", serial);
Stefan Hilzingerd9d1ca42010-04-26 10:17:43 +01001021}
1022
1023void connect_emulator(char* port_spec, char* buffer, int buffer_size)
1024{
1025 char* port_separator = strchr(port_spec, ',');
1026 if (!port_separator) {
1027 snprintf(buffer, buffer_size,
1028 "unable to parse '%s' as <console port>,<adb port>",
1029 port_spec);
1030 return;
1031 }
1032
1033 // Zero-terminate console port and make port_separator point to 2nd port.
1034 *port_separator++ = 0;
1035 int console_port = strtol(port_spec, NULL, 0);
1036 int adb_port = strtol(port_separator, NULL, 0);
1037 if (!(console_port > 0 && adb_port > 0)) {
1038 *(port_separator - 1) = ',';
1039 snprintf(buffer, buffer_size,
1040 "Invalid port numbers: Expected positive numbers, got '%s'",
1041 port_spec);
1042 return;
1043 }
1044
1045 /* Check if the emulator is already known.
1046 * Note: There's a small but harmless race condition here: An emulator not
1047 * present just yet could be registered by another invocation right
1048 * after doing this check here. However, local_connect protects
1049 * against double-registration too. From here, a better error message
1050 * can be produced. In the case of the race condition, the very specific
1051 * error message won't be shown, but the data doesn't get corrupted. */
1052 atransport* known_emulator = find_emulator_transport_by_adb_port(adb_port);
1053 if (known_emulator != NULL) {
1054 snprintf(buffer, buffer_size,
1055 "Emulator on port %d already registered.", adb_port);
1056 return;
1057 }
1058
1059 /* Check if more emulators can be registered. Similar unproblematic
1060 * race condition as above. */
1061 int candidate_slot = get_available_local_transport_index();
1062 if (candidate_slot < 0) {
1063 snprintf(buffer, buffer_size, "Cannot accept more emulators.");
1064 return;
1065 }
1066
1067 /* Preconditions met, try to connect to the emulator. */
1068 if (!local_connect_arbitrary_ports(console_port, adb_port)) {
1069 snprintf(buffer, buffer_size,
1070 "Connected to emulator on ports %d,%d", console_port, adb_port);
1071 } else {
1072 snprintf(buffer, buffer_size,
1073 "Could not connect to emulator on ports %d,%d",
1074 console_port, adb_port);
1075 }
1076}
1077#endif
1078
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001079int handle_host_request(char *service, transport_type ttype, char* serial, int reply_fd, asocket *s)
1080{
1081 atransport *transport = NULL;
1082 char buf[4096];
1083
1084 if(!strcmp(service, "kill")) {
1085 fprintf(stderr,"adb server killed by remote request\n");
1086 fflush(stdout);
1087 adb_write(reply_fd, "OKAY", 4);
1088 usb_cleanup();
1089 exit(0);
1090 }
1091
1092#if ADB_HOST
1093 // "transport:" is used for switching transport with a specified serial number
1094 // "transport-usb:" is used for switching transport to the only USB transport
1095 // "transport-local:" is used for switching transport to the only local transport
1096 // "transport-any:" is used for switching transport to the only transport
1097 if (!strncmp(service, "transport", strlen("transport"))) {
1098 char* error_string = "unknown failure";
1099 transport_type type = kTransportAny;
1100
1101 if (!strncmp(service, "transport-usb", strlen("transport-usb"))) {
1102 type = kTransportUsb;
1103 } else if (!strncmp(service, "transport-local", strlen("transport-local"))) {
1104 type = kTransportLocal;
1105 } else if (!strncmp(service, "transport-any", strlen("transport-any"))) {
1106 type = kTransportAny;
1107 } else if (!strncmp(service, "transport:", strlen("transport:"))) {
1108 service += strlen("transport:");
1109 serial = strdup(service);
1110 }
1111
1112 transport = acquire_one_transport(CS_ANY, type, serial, &error_string);
1113
1114 if (transport) {
1115 s->transport = transport;
1116 adb_write(reply_fd, "OKAY", 4);
1117 } else {
1118 sendfailmsg(reply_fd, error_string);
1119 }
1120 return 1;
1121 }
1122
1123 // return a list of all connected devices
1124 if (!strcmp(service, "devices")) {
1125 char buffer[4096];
1126 memset(buf, 0, sizeof(buf));
1127 memset(buffer, 0, sizeof(buffer));
1128 D("Getting device list \n");
1129 list_transports(buffer, sizeof(buffer));
1130 snprintf(buf, sizeof(buf), "OKAY%04x%s",(unsigned)strlen(buffer),buffer);
1131 D("Wrote device list \n");
1132 writex(reply_fd, buf, strlen(buf));
1133 return 0;
1134 }
1135
Stefan Hilzingerd9d1ca42010-04-26 10:17:43 +01001136 // add a new TCP transport, device or emulator
Mike Lockwood2f38b692009-08-24 15:58:40 -07001137 if (!strncmp(service, "connect:", 8)) {
1138 char buffer[4096];
Mike Lockwood2f38b692009-08-24 15:58:40 -07001139 char* host = service + 8;
Stefan Hilzingerd9d1ca42010-04-26 10:17:43 +01001140 if (!strncmp(host, "emu:", 4)) {
1141 connect_emulator(host + 4, buffer, sizeof(buffer));
1142 } else {
1143 connect_device(host, buffer, sizeof(buffer));
Mike Lockwood2f38b692009-08-24 15:58:40 -07001144 }
Stefan Hilzingerd9d1ca42010-04-26 10:17:43 +01001145 // Send response for emulator and device
Mike Lockwood74d7ff82009-10-11 23:04:18 -04001146 snprintf(buf, sizeof(buf), "OKAY%04x%s",(unsigned)strlen(buffer), buffer);
1147 writex(reply_fd, buf, strlen(buf));
1148 return 0;
1149 }
1150
1151 // remove TCP transport
1152 if (!strncmp(service, "disconnect:", 11)) {
1153 char buffer[4096];
1154 memset(buffer, 0, sizeof(buffer));
1155 char* serial = service + 11;
Mike Lockwoodcbbe79a2010-05-24 10:44:35 -04001156 if (serial[0] == 0) {
1157 // disconnect from all TCP devices
1158 unregister_all_tcp_transports();
Mike Lockwood74d7ff82009-10-11 23:04:18 -04001159 } else {
Mike Lockwoodcbbe79a2010-05-24 10:44:35 -04001160 char hostbuf[100];
1161 // assume port 5555 if no port is specified
1162 if (!strchr(serial, ':')) {
1163 snprintf(hostbuf, sizeof(hostbuf) - 1, "%s:5555", serial);
1164 serial = hostbuf;
1165 }
1166 atransport *t = find_transport(serial);
1167
1168 if (t) {
1169 unregister_transport(t);
1170 } else {
1171 snprintf(buffer, sizeof(buffer), "No such device %s", serial);
1172 }
Mike Lockwood74d7ff82009-10-11 23:04:18 -04001173 }
1174
1175 snprintf(buf, sizeof(buf), "OKAY%04x%s",(unsigned)strlen(buffer), buffer);
Mike Lockwood2f38b692009-08-24 15:58:40 -07001176 writex(reply_fd, buf, strlen(buf));
1177 return 0;
1178 }
1179
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001180 // returns our value for ADB_SERVER_VERSION
1181 if (!strcmp(service, "version")) {
1182 char version[12];
1183 snprintf(version, sizeof version, "%04x", ADB_SERVER_VERSION);
1184 snprintf(buf, sizeof buf, "OKAY%04x%s", (unsigned)strlen(version), version);
1185 writex(reply_fd, buf, strlen(buf));
1186 return 0;
1187 }
1188
1189 if(!strncmp(service,"get-serialno",strlen("get-serialno"))) {
1190 char *out = "unknown";
1191 transport = acquire_one_transport(CS_ANY, ttype, serial, NULL);
1192 if (transport && transport->serial) {
1193 out = transport->serial;
1194 }
1195 snprintf(buf, sizeof buf, "OKAY%04x%s",(unsigned)strlen(out),out);
1196 writex(reply_fd, buf, strlen(buf));
1197 return 0;
1198 }
1199 // indicates a new emulator instance has started
1200 if (!strncmp(service,"emulator:",9)) {
1201 int port = atoi(service+9);
1202 local_connect(port);
1203 /* we don't even need to send a reply */
1204 return 0;
1205 }
1206#endif // ADB_HOST
1207
1208 if(!strncmp(service,"forward:",8) || !strncmp(service,"killforward:",12)) {
1209 char *local, *remote, *err;
1210 int r;
1211 atransport *transport;
1212
1213 int createForward = strncmp(service,"kill",4);
1214
1215 local = service + (createForward ? 8 : 12);
1216 remote = strchr(local,';');
1217 if(remote == 0) {
1218 sendfailmsg(reply_fd, "malformed forward spec");
1219 return 0;
1220 }
1221
1222 *remote++ = 0;
1223 if((local[0] == 0) || (remote[0] == 0) || (remote[0] == '*')){
1224 sendfailmsg(reply_fd, "malformed forward spec");
1225 return 0;
1226 }
1227
1228 transport = acquire_one_transport(CS_ANY, ttype, serial, &err);
1229 if (!transport) {
1230 sendfailmsg(reply_fd, err);
1231 return 0;
1232 }
1233
1234 if (createForward) {
1235 r = install_listener(local, remote, transport);
1236 } else {
1237 r = remove_listener(local, remote, transport);
1238 }
1239 if(r == 0) {
1240 /* 1st OKAY is connect, 2nd OKAY is status */
1241 writex(reply_fd, "OKAYOKAY", 8);
1242 return 0;
1243 }
1244
1245 if (createForward) {
1246 sendfailmsg(reply_fd, (r == -1) ? "cannot rebind smartsocket" : "cannot bind socket");
1247 } else {
1248 sendfailmsg(reply_fd, "cannot remove listener");
1249 }
1250 return 0;
1251 }
1252
1253 if(!strncmp(service,"get-state",strlen("get-state"))) {
1254 transport = acquire_one_transport(CS_ANY, ttype, serial, NULL);
1255 char *state = connection_state_name(transport);
1256 snprintf(buf, sizeof buf, "OKAY%04x%s",(unsigned)strlen(state),state);
1257 writex(reply_fd, buf, strlen(buf));
1258 return 0;
1259 }
1260 return -1;
1261}
1262
1263#if !ADB_HOST
1264int recovery_mode = 0;
1265#endif
1266
1267int main(int argc, char **argv)
1268{
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001269#if ADB_HOST
David 'Digit' Turner730ff3b2011-01-06 14:11:07 +01001270 adb_trace_init();
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001271 adb_sysdeps_init();
1272 return adb_commandline(argc - 1, argv + 1);
1273#else
1274 if((argc > 1) && (!strcmp(argv[1],"recovery"))) {
1275 adb_device_banner = "recovery";
1276 recovery_mode = 1;
1277 }
Mike Lockwood1f546e62009-05-25 18:17:55 -04001278
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001279 start_device_log();
Stefan Hilzingera84a42e2010-04-19 12:21:12 +01001280 return adb_main(0, DEFAULT_ADB_PORT);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001281#endif
1282}