blob: b1a0e62cb8d8a65190c7433cbb55345d7103ee14 [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
305 D("handle_packet() %d\n", p->msg.command);
306
307 print_packet("recv", p);
308
309 switch(p->msg.command){
310 case A_SYNC:
311 if(p->msg.arg0){
312 send_packet(p, t);
313 if(HOST) send_connect(t);
314 } else {
315 t->connection_state = CS_OFFLINE;
316 handle_offline(t);
317 send_packet(p, t);
318 }
319 return;
320
321 case A_CNXN: /* CONNECT(version, maxdata, "system-id-string") */
322 /* XXX verify version, etc */
323 if(t->connection_state != CS_OFFLINE) {
324 t->connection_state = CS_OFFLINE;
325 handle_offline(t);
326 }
327 parse_banner((char*) p->data, t);
328 handle_online();
329 if(!HOST) send_connect(t);
330 break;
331
332 case A_OPEN: /* OPEN(local-id, 0, "destination") */
333 if(t->connection_state != CS_OFFLINE) {
334 char *name = (char*) p->data;
335 name[p->msg.data_length > 0 ? p->msg.data_length - 1 : 0] = 0;
336 s = create_local_service_socket(name);
337 if(s == 0) {
338 send_close(0, p->msg.arg0, t);
339 } else {
340 s->peer = create_remote_socket(p->msg.arg0, t);
341 s->peer->peer = s;
342 send_ready(s->id, s->peer->id, t);
343 s->ready(s);
344 }
345 }
346 break;
347
348 case A_OKAY: /* READY(local-id, remote-id, "") */
349 if(t->connection_state != CS_OFFLINE) {
350 if((s = find_local_socket(p->msg.arg1))) {
351 if(s->peer == 0) {
352 s->peer = create_remote_socket(p->msg.arg0, t);
353 s->peer->peer = s;
354 }
355 s->ready(s);
356 }
357 }
358 break;
359
360 case A_CLSE: /* CLOSE(local-id, remote-id, "") */
361 if(t->connection_state != CS_OFFLINE) {
362 if((s = find_local_socket(p->msg.arg1))) {
363 s->close(s);
364 }
365 }
366 break;
367
368 case A_WRTE:
369 if(t->connection_state != CS_OFFLINE) {
370 if((s = find_local_socket(p->msg.arg1))) {
371 unsigned rid = p->msg.arg0;
372 p->len = p->msg.data_length;
373
374 if(s->enqueue(s, p) == 0) {
375 D("Enqueue the socket\n");
376 send_ready(s->id, rid, t);
377 }
378 return;
379 }
380 }
381 break;
382
383 default:
384 printf("handle_packet: what is %08x?!\n", p->msg.command);
385 }
386
387 put_apacket(p);
388}
389
390alistener listener_list = {
391 .next = &listener_list,
392 .prev = &listener_list,
393};
394
395static void ss_listener_event_func(int _fd, unsigned ev, void *_l)
396{
397 asocket *s;
398
399 if(ev & FDE_READ) {
400 struct sockaddr addr;
401 socklen_t alen;
402 int fd;
403
404 alen = sizeof(addr);
405 fd = adb_socket_accept(_fd, &addr, &alen);
406 if(fd < 0) return;
407
408 adb_socket_setbufsize(fd, CHUNK_SIZE);
409
410 s = create_local_socket(fd);
411 if(s) {
412 connect_to_smartsocket(s);
413 return;
414 }
415
416 adb_close(fd);
417 }
418}
419
420static void listener_event_func(int _fd, unsigned ev, void *_l)
421{
422 alistener *l = _l;
423 asocket *s;
424
425 if(ev & FDE_READ) {
426 struct sockaddr addr;
427 socklen_t alen;
428 int fd;
429
430 alen = sizeof(addr);
431 fd = adb_socket_accept(_fd, &addr, &alen);
432 if(fd < 0) return;
433
434 s = create_local_socket(fd);
435 if(s) {
436 s->transport = l->transport;
437 connect_to_remote(s, l->connect_to);
438 return;
439 }
440
441 adb_close(fd);
442 }
443}
444
445static void free_listener(alistener* l)
446{
447 if (l->next) {
448 l->next->prev = l->prev;
449 l->prev->next = l->next;
450 l->next = l->prev = l;
451 }
452
453 // closes the corresponding fd
454 fdevent_remove(&l->fde);
455
456 if (l->local_name)
457 free((char*)l->local_name);
458
459 if (l->connect_to)
460 free((char*)l->connect_to);
461
462 if (l->transport) {
463 remove_transport_disconnect(l->transport, &l->disconnect);
464 }
465 free(l);
466}
467
468static void listener_disconnect(void* _l, atransport* t)
469{
470 alistener* l = _l;
471
472 free_listener(l);
473}
474
475int local_name_to_fd(const char *name)
476{
477 int port;
478
479 if(!strncmp("tcp:", name, 4)){
480 int ret;
481 port = atoi(name + 4);
482 ret = socket_loopback_server(port, SOCK_STREAM);
483 return ret;
484 }
485#ifndef HAVE_WIN32_IPC /* no Unix-domain sockets on Win32 */
486 // It's non-sensical to support the "reserved" space on the adb host side
487 if(!strncmp(name, "local:", 6)) {
488 return socket_local_server(name + 6,
489 ANDROID_SOCKET_NAMESPACE_ABSTRACT, SOCK_STREAM);
490 } else if(!strncmp(name, "localabstract:", 14)) {
491 return socket_local_server(name + 14,
492 ANDROID_SOCKET_NAMESPACE_ABSTRACT, SOCK_STREAM);
493 } else if(!strncmp(name, "localfilesystem:", 16)) {
494 return socket_local_server(name + 16,
495 ANDROID_SOCKET_NAMESPACE_FILESYSTEM, SOCK_STREAM);
496 }
497
498#endif
499 printf("unknown local portname '%s'\n", name);
500 return -1;
501}
502
503static int remove_listener(const char *local_name, const char *connect_to, atransport* transport)
504{
505 alistener *l;
506
507 for (l = listener_list.next; l != &listener_list; l = l->next) {
508 if (!strcmp(local_name, l->local_name) &&
509 !strcmp(connect_to, l->connect_to) &&
510 l->transport && l->transport == transport) {
511
512 listener_disconnect(l, transport);
513 return 0;
514 }
515 }
516
517 return -1;
518}
519
520static int install_listener(const char *local_name, const char *connect_to, atransport* transport)
521{
522 alistener *l;
523
524 //printf("install_listener('%s','%s')\n", local_name, connect_to);
525
526 for(l = listener_list.next; l != &listener_list; l = l->next){
527 if(strcmp(local_name, l->local_name) == 0) {
528 char *cto;
529
530 /* can't repurpose a smartsocket */
531 if(l->connect_to[0] == '*') {
532 return -1;
533 }
534
535 cto = strdup(connect_to);
536 if(cto == 0) {
537 return -1;
538 }
539
540 //printf("rebinding '%s' to '%s'\n", local_name, connect_to);
541 free((void*) l->connect_to);
542 l->connect_to = cto;
543 if (l->transport != transport) {
544 remove_transport_disconnect(l->transport, &l->disconnect);
545 l->transport = transport;
546 add_transport_disconnect(l->transport, &l->disconnect);
547 }
548 return 0;
549 }
550 }
551
552 if((l = calloc(1, sizeof(alistener))) == 0) goto nomem;
553 if((l->local_name = strdup(local_name)) == 0) goto nomem;
554 if((l->connect_to = strdup(connect_to)) == 0) goto nomem;
555
556
557 l->fd = local_name_to_fd(local_name);
558 if(l->fd < 0) {
559 free((void*) l->local_name);
560 free((void*) l->connect_to);
561 free(l);
562 printf("cannot bind '%s'\n", local_name);
563 return -2;
564 }
565
566 close_on_exec(l->fd);
567 if(!strcmp(l->connect_to, "*smartsocket*")) {
568 fdevent_install(&l->fde, l->fd, ss_listener_event_func, l);
569 } else {
570 fdevent_install(&l->fde, l->fd, listener_event_func, l);
571 }
572 fdevent_set(&l->fde, FDE_READ);
573
574 l->next = &listener_list;
575 l->prev = listener_list.prev;
576 l->next->prev = l;
577 l->prev->next = l;
578 l->transport = transport;
579
580 if (transport) {
581 l->disconnect.opaque = l;
582 l->disconnect.func = listener_disconnect;
583 add_transport_disconnect(transport, &l->disconnect);
584 }
585 return 0;
586
587nomem:
588 fatal("cannot allocate listener");
589 return 0;
590}
591
592#ifdef HAVE_FORKEXEC
593static void sigchld_handler(int n)
594{
595 int status;
596 while(waitpid(-1, &status, WNOHANG) > 0) ;
597}
598#endif
599
600#ifdef HAVE_WIN32_PROC
601static BOOL WINAPI ctrlc_handler(DWORD type)
602{
603 exit(STATUS_CONTROL_C_EXIT);
604 return TRUE;
605}
606#endif
607
608static void adb_cleanup(void)
609{
610 usb_cleanup();
611}
612
613void start_logging(void)
614{
615#ifdef HAVE_WIN32_PROC
616 char temp[ MAX_PATH ];
617 FILE* fnul;
618 FILE* flog;
619
620 GetTempPath( sizeof(temp) - 8, temp );
621 strcat( temp, "adb.log" );
622
623 /* Win32 specific redirections */
624 fnul = fopen( "NUL", "rt" );
625 if (fnul != NULL)
626 stdin[0] = fnul[0];
627
628 flog = fopen( temp, "at" );
629 if (flog == NULL)
630 flog = fnul;
631
632 setvbuf( flog, NULL, _IONBF, 0 );
633
634 stdout[0] = flog[0];
635 stderr[0] = flog[0];
636 fprintf(stderr,"--- adb starting (pid %d) ---\n", getpid());
637#else
638 int fd;
639
640 fd = unix_open("/dev/null", O_RDONLY);
641 dup2(fd, 0);
642
643 fd = unix_open("/tmp/adb.log", O_WRONLY | O_CREAT | O_APPEND, 0640);
644 if(fd < 0) {
645 fd = unix_open("/dev/null", O_WRONLY);
646 }
647 dup2(fd, 1);
648 dup2(fd, 2);
649 fprintf(stderr,"--- adb starting (pid %d) ---\n", getpid());
650#endif
651}
652
653#if !ADB_HOST
654void start_device_log(void)
655{
656 int fd;
Mike Lockwood1f546e62009-05-25 18:17:55 -0400657 char path[PATH_MAX];
658 struct tm now;
659 time_t t;
660 char value[PROPERTY_VALUE_MAX];
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800661
Mike Lockwood1f546e62009-05-25 18:17:55 -0400662 // read the trace mask from persistent property persist.adb.trace_mask
663 // give up if the property is not set or cannot be parsed
664 property_get("persist.adb.trace_mask", value, "");
665 if (sscanf(value, "%x", &adb_trace_mask) != 1)
666 return;
667
668 adb_mkdir("/data/adb", 0775);
669 tzset();
670 time(&t);
671 localtime_r(&t, &now);
672 strftime(path, sizeof(path),
673 "/data/adb/adb-%Y-%m-%d-%H-%M-%S.txt",
674 &now);
675 fd = unix_open(path, O_WRONLY | O_CREAT | O_TRUNC, 0640);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800676 if (fd < 0)
677 return;
678
679 // redirect stdout and stderr to the log file
680 dup2(fd, 1);
681 dup2(fd, 2);
682 fprintf(stderr,"--- adb starting (pid %d) ---\n", getpid());
683
684 fd = unix_open("/dev/null", O_RDONLY);
685 dup2(fd, 0);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800686}
687#endif
688
689#if ADB_HOST
Stefan Hilzingera84a42e2010-04-19 12:21:12 +0100690int launch_server(int server_port)
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800691{
692#ifdef HAVE_WIN32_PROC
693 /* we need to start the server in the background */
694 /* we create a PIPE that will be used to wait for the server's "OK" */
695 /* message since the pipe handles must be inheritable, we use a */
696 /* security attribute */
697 HANDLE pipe_read, pipe_write;
698 SECURITY_ATTRIBUTES sa;
699 STARTUPINFO startup;
700 PROCESS_INFORMATION pinfo;
701 char program_path[ MAX_PATH ];
702 int ret;
703
704 sa.nLength = sizeof(sa);
705 sa.lpSecurityDescriptor = NULL;
706 sa.bInheritHandle = TRUE;
707
708 /* create pipe, and ensure its read handle isn't inheritable */
709 ret = CreatePipe( &pipe_read, &pipe_write, &sa, 0 );
710 if (!ret) {
711 fprintf(stderr, "CreatePipe() failure, error %ld\n", GetLastError() );
712 return -1;
713 }
714
715 SetHandleInformation( pipe_read, HANDLE_FLAG_INHERIT, 0 );
716
717 ZeroMemory( &startup, sizeof(startup) );
718 startup.cb = sizeof(startup);
719 startup.hStdInput = GetStdHandle( STD_INPUT_HANDLE );
720 startup.hStdOutput = pipe_write;
721 startup.hStdError = GetStdHandle( STD_ERROR_HANDLE );
722 startup.dwFlags = STARTF_USESTDHANDLES;
723
724 ZeroMemory( &pinfo, sizeof(pinfo) );
725
726 /* get path of current program */
727 GetModuleFileName( NULL, program_path, sizeof(program_path) );
728
729 ret = CreateProcess(
730 program_path, /* program path */
731 "adb fork-server server",
732 /* the fork-server argument will set the
733 debug = 2 in the child */
734 NULL, /* process handle is not inheritable */
735 NULL, /* thread handle is not inheritable */
736 TRUE, /* yes, inherit some handles */
737 DETACHED_PROCESS, /* the new process doesn't have a console */
738 NULL, /* use parent's environment block */
739 NULL, /* use parent's starting directory */
740 &startup, /* startup info, i.e. std handles */
741 &pinfo );
742
743 CloseHandle( pipe_write );
744
745 if (!ret) {
746 fprintf(stderr, "CreateProcess failure, error %ld\n", GetLastError() );
747 CloseHandle( pipe_read );
748 return -1;
749 }
750
751 CloseHandle( pinfo.hProcess );
752 CloseHandle( pinfo.hThread );
753
754 /* wait for the "OK\n" message */
755 {
756 char temp[3];
757 DWORD count;
758
759 ret = ReadFile( pipe_read, temp, 3, &count, NULL );
760 CloseHandle( pipe_read );
761 if ( !ret ) {
762 fprintf(stderr, "could not read ok from ADB Server, error = %ld\n", GetLastError() );
763 return -1;
764 }
765 if (count != 3 || temp[0] != 'O' || temp[1] != 'K' || temp[2] != '\n') {
766 fprintf(stderr, "ADB server didn't ACK\n" );
767 return -1;
768 }
769 }
770#elif defined(HAVE_FORKEXEC)
771 char path[PATH_MAX];
772 int fd[2];
773
774 // set up a pipe so the child can tell us when it is ready.
775 // fd[0] will be parent's end, and fd[1] will get mapped to stderr in the child.
776 if (pipe(fd)) {
777 fprintf(stderr, "pipe failed in launch_server, errno: %d\n", errno);
778 return -1;
779 }
Alexey Tarasov31664102009-10-22 02:55:00 +1100780 get_my_path(path, PATH_MAX);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800781 pid_t pid = fork();
782 if(pid < 0) return -1;
783
784 if (pid == 0) {
785 // child side of the fork
786
787 // redirect stderr to the pipe
788 // we use stderr instead of stdout due to stdout's buffering behavior.
789 adb_close(fd[0]);
790 dup2(fd[1], STDERR_FILENO);
791 adb_close(fd[1]);
792
793 // child process
794 int result = execl(path, "adb", "fork-server", "server", NULL);
795 // this should not return
796 fprintf(stderr, "OOPS! execl returned %d, errno: %d\n", result, errno);
797 } else {
798 // parent side of the fork
799
800 char temp[3];
801
802 temp[0] = 'A'; temp[1] = 'B'; temp[2] = 'C';
803 // wait for the "OK\n" message
804 adb_close(fd[1]);
805 int ret = adb_read(fd[0], temp, 3);
806 adb_close(fd[0]);
807 if (ret < 0) {
808 fprintf(stderr, "could not read ok from ADB Server, errno = %d\n", errno);
809 return -1;
810 }
811 if (ret != 3 || temp[0] != 'O' || temp[1] != 'K' || temp[2] != '\n') {
812 fprintf(stderr, "ADB server didn't ACK\n" );
813 return -1;
814 }
815
816 setsid();
817 }
818#else
819#error "cannot implement background server start on this platform"
820#endif
821 return 0;
822}
823#endif
824
Stefan Hilzingera84a42e2010-04-19 12:21:12 +0100825/* Constructs a local name of form tcp:port.
826 * target_str points to the target string, it's content will be overwritten.
827 * target_size is the capacity of the target string.
828 * server_port is the port number to use for the local name.
829 */
830void build_local_name(char* target_str, size_t target_size, int server_port)
831{
832 snprintf(target_str, target_size, "tcp:%d", server_port);
833}
834
835int adb_main(int is_daemon, int server_port)
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800836{
837#if !ADB_HOST
838 int secure = 0;
Mike Lockwood2f38b692009-08-24 15:58:40 -0700839 int port;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800840 char value[PROPERTY_VALUE_MAX];
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800841#endif
842
843 atexit(adb_cleanup);
844#ifdef HAVE_WIN32_PROC
845 SetConsoleCtrlHandler( ctrlc_handler, TRUE );
846#elif defined(HAVE_FORKEXEC)
847 signal(SIGCHLD, sigchld_handler);
848 signal(SIGPIPE, SIG_IGN);
849#endif
850
851 init_transport_registration();
852
853
854#if ADB_HOST
855 HOST = 1;
Xavier Ducroheta09fbd12009-05-20 17:33:53 -0700856 usb_vendors_init();
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800857 usb_init();
Stefan Hilzingera84a42e2010-04-19 12:21:12 +0100858 local_init(DEFAULT_ADB_LOCAL_TRANSPORT_PORT);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800859
Stefan Hilzingera84a42e2010-04-19 12:21:12 +0100860 char local_name[30];
861 build_local_name(local_name, sizeof(local_name), server_port);
862 if(install_listener(local_name, "*smartsocket*", NULL)) {
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800863 exit(1);
864 }
865#else
866 /* run adbd in secure mode if ro.secure is set and
867 ** we are not in the emulator
868 */
869 property_get("ro.kernel.qemu", value, "");
870 if (strcmp(value, "1") != 0) {
871 property_get("ro.secure", value, "");
The Android Open Source Projecte037fd72009-03-13 13:04:37 -0700872 if (strcmp(value, "1") == 0) {
873 // don't run as root if ro.secure is set...
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800874 secure = 1;
The Android Open Source Projecte037fd72009-03-13 13:04:37 -0700875
876 // ... except we allow running as root in userdebug builds if the
877 // service.adb.root property has been set by the "adb root" command
878 property_get("ro.debuggable", value, "");
879 if (strcmp(value, "1") == 0) {
880 property_get("service.adb.root", value, "");
881 if (strcmp(value, "1") == 0) {
882 secure = 0;
883 }
884 }
885 }
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800886 }
887
Stefan Hilzingera84a42e2010-04-19 12:21:12 +0100888 /* don't listen on a port (default 5037) if running in secure mode */
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800889 /* don't run as root if we are running in secure mode */
890 if (secure) {
Mike Lockwood5f4b0512009-08-04 20:37:51 -0400891 struct __user_cap_header_struct header;
892 struct __user_cap_data_struct cap;
893
894 prctl(PR_SET_KEEPCAPS, 1, 0, 0, 0);
895
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800896 /* add extra groups:
897 ** AID_ADB to access the USB driver
898 ** AID_LOG to read system logs (adb logcat)
899 ** AID_INPUT to diagnose input issues (getevent)
900 ** AID_INET to diagnose network issues (netcfg, ping)
901 ** AID_GRAPHICS to access the frame buffer
The Android Open Source Project20155492009-03-11 12:12:01 -0700902 ** AID_NET_BT and AID_NET_BT_ADMIN to diagnose bluetooth (hcidump)
Mike Lockwood6a3075c2009-05-25 13:52:00 -0400903 ** AID_SDCARD_RW to allow writing to the SD card
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800904 */
The Android Open Source Project20155492009-03-11 12:12:01 -0700905 gid_t groups[] = { AID_ADB, AID_LOG, AID_INPUT, AID_INET, AID_GRAPHICS,
Mike Lockwood6a3075c2009-05-25 13:52:00 -0400906 AID_NET_BT, AID_NET_BT_ADMIN, AID_SDCARD_RW };
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800907 setgroups(sizeof(groups)/sizeof(groups[0]), groups);
908
909 /* then switch user and group to "shell" */
910 setgid(AID_SHELL);
911 setuid(AID_SHELL);
912
Mike Lockwood5f4b0512009-08-04 20:37:51 -0400913 /* set CAP_SYS_BOOT capability, so "adb reboot" will succeed */
914 header.version = _LINUX_CAPABILITY_VERSION;
915 header.pid = 0;
916 cap.effective = cap.permitted = (1 << CAP_SYS_BOOT);
917 cap.inheritable = 0;
918 capset(&header, &cap);
919
Stefan Hilzingera84a42e2010-04-19 12:21:12 +0100920 D("Local port disabled\n");
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800921 } else {
Stefan Hilzingera84a42e2010-04-19 12:21:12 +0100922 char local_name[30];
923 build_local_name(local_name, sizeof(local_name), server_port);
924 if(install_listener(local_name, "*smartsocket*", NULL)) {
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800925 exit(1);
926 }
927 }
928
929 /* for the device, start the usb transport if the
Mike Lockwood8e2ceae2010-04-20 14:06:40 -0400930 ** android usb device exists and the "service.adb.tcp.port" and
931 ** "persist.adb.tcp.port" properties are not set.
932 ** Otherwise start the network transport.
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800933 */
Mike Lockwood8e2ceae2010-04-20 14:06:40 -0400934 property_get("service.adb.tcp.port", value, "");
935 if (!value[0])
936 property_get("persist.adb.tcp.port", value, "");
Mike Lockwoodcef31a02009-08-26 12:50:22 -0700937 if (sscanf(value, "%d", &port) == 1 && port > 0) {
938 // listen on TCP port specified by service.adb.tcp.port property
939 local_init(port);
940 } else if (access("/dev/android_adb", F_OK) == 0) {
941 // listen on USB
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800942 usb_init();
943 } else {
Mike Lockwoodcef31a02009-08-26 12:50:22 -0700944 // listen on default port
Stefan Hilzingera84a42e2010-04-19 12:21:12 +0100945 local_init(DEFAULT_ADB_LOCAL_TRANSPORT_PORT);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800946 }
947 init_jdwp();
948#endif
949
950 if (is_daemon)
951 {
952 // inform our parent that we are up and running.
953#ifdef HAVE_WIN32_PROC
954 DWORD count;
955 WriteFile( GetStdHandle( STD_OUTPUT_HANDLE ), "OK\n", 3, &count, NULL );
956#elif defined(HAVE_FORKEXEC)
957 fprintf(stderr, "OK\n");
958#endif
959 start_logging();
960 }
961
962 fdevent_loop();
963
964 usb_cleanup();
965
966 return 0;
967}
968
Stefan Hilzingerd9d1ca42010-04-26 10:17:43 +0100969#if ADB_HOST
970void connect_device(char* host, char* buffer, int buffer_size)
971{
972 int port, fd;
973 char* portstr = strchr(host, ':');
Mike Lockwoodcbbe79a2010-05-24 10:44:35 -0400974 char hostbuf[100];
975 char serial[100];
Stefan Hilzingerd9d1ca42010-04-26 10:17:43 +0100976
Mike Lockwoodcbbe79a2010-05-24 10:44:35 -0400977 strncpy(hostbuf, host, sizeof(hostbuf) - 1);
978 if (portstr) {
979 if (portstr - host >= sizeof(hostbuf)) {
980 snprintf(buffer, buffer_size, "bad host name %s", host);
981 return;
982 }
983 // zero terminate the host at the point we found the colon
984 hostbuf[portstr - host] = 0;
985 if (sscanf(portstr + 1, "%d", &port) == 0) {
986 snprintf(buffer, buffer_size, "bad port number %s", portstr);
987 return;
988 }
989 } else {
990 port = DEFAULT_ADB_LOCAL_TRANSPORT_PORT;
Stefan Hilzingerd9d1ca42010-04-26 10:17:43 +0100991 }
Mike Lockwoodcbbe79a2010-05-24 10:44:35 -0400992
993 snprintf(serial, sizeof(serial), "%s:%d", hostbuf, port);
994 if (find_transport(serial)) {
995 snprintf(buffer, buffer_size, "already connected to %s", serial);
Stefan Hilzingerd9d1ca42010-04-26 10:17:43 +0100996 return;
997 }
998
Mike Lockwoodcbbe79a2010-05-24 10:44:35 -0400999 fd = socket_network_client(hostbuf, port, SOCK_STREAM);
Stefan Hilzingerd9d1ca42010-04-26 10:17:43 +01001000 if (fd < 0) {
1001 snprintf(buffer, buffer_size, "unable to connect to %s:%d", host, port);
1002 return;
1003 }
1004
1005 D("client: connected on remote on fd %d\n", fd);
1006 close_on_exec(fd);
1007 disable_tcp_nagle(fd);
Mike Lockwoodcbbe79a2010-05-24 10:44:35 -04001008 register_socket_transport(fd, serial, port, 0);
1009 snprintf(buffer, buffer_size, "connected to %s", serial);
Stefan Hilzingerd9d1ca42010-04-26 10:17:43 +01001010}
1011
1012void connect_emulator(char* port_spec, char* buffer, int buffer_size)
1013{
1014 char* port_separator = strchr(port_spec, ',');
1015 if (!port_separator) {
1016 snprintf(buffer, buffer_size,
1017 "unable to parse '%s' as <console port>,<adb port>",
1018 port_spec);
1019 return;
1020 }
1021
1022 // Zero-terminate console port and make port_separator point to 2nd port.
1023 *port_separator++ = 0;
1024 int console_port = strtol(port_spec, NULL, 0);
1025 int adb_port = strtol(port_separator, NULL, 0);
1026 if (!(console_port > 0 && adb_port > 0)) {
1027 *(port_separator - 1) = ',';
1028 snprintf(buffer, buffer_size,
1029 "Invalid port numbers: Expected positive numbers, got '%s'",
1030 port_spec);
1031 return;
1032 }
1033
1034 /* Check if the emulator is already known.
1035 * Note: There's a small but harmless race condition here: An emulator not
1036 * present just yet could be registered by another invocation right
1037 * after doing this check here. However, local_connect protects
1038 * against double-registration too. From here, a better error message
1039 * can be produced. In the case of the race condition, the very specific
1040 * error message won't be shown, but the data doesn't get corrupted. */
1041 atransport* known_emulator = find_emulator_transport_by_adb_port(adb_port);
1042 if (known_emulator != NULL) {
1043 snprintf(buffer, buffer_size,
1044 "Emulator on port %d already registered.", adb_port);
1045 return;
1046 }
1047
1048 /* Check if more emulators can be registered. Similar unproblematic
1049 * race condition as above. */
1050 int candidate_slot = get_available_local_transport_index();
1051 if (candidate_slot < 0) {
1052 snprintf(buffer, buffer_size, "Cannot accept more emulators.");
1053 return;
1054 }
1055
1056 /* Preconditions met, try to connect to the emulator. */
1057 if (!local_connect_arbitrary_ports(console_port, adb_port)) {
1058 snprintf(buffer, buffer_size,
1059 "Connected to emulator on ports %d,%d", console_port, adb_port);
1060 } else {
1061 snprintf(buffer, buffer_size,
1062 "Could not connect to emulator on ports %d,%d",
1063 console_port, adb_port);
1064 }
1065}
1066#endif
1067
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001068int handle_host_request(char *service, transport_type ttype, char* serial, int reply_fd, asocket *s)
1069{
1070 atransport *transport = NULL;
1071 char buf[4096];
1072
1073 if(!strcmp(service, "kill")) {
1074 fprintf(stderr,"adb server killed by remote request\n");
1075 fflush(stdout);
1076 adb_write(reply_fd, "OKAY", 4);
1077 usb_cleanup();
1078 exit(0);
1079 }
1080
1081#if ADB_HOST
1082 // "transport:" is used for switching transport with a specified serial number
1083 // "transport-usb:" is used for switching transport to the only USB transport
1084 // "transport-local:" is used for switching transport to the only local transport
1085 // "transport-any:" is used for switching transport to the only transport
1086 if (!strncmp(service, "transport", strlen("transport"))) {
1087 char* error_string = "unknown failure";
1088 transport_type type = kTransportAny;
1089
1090 if (!strncmp(service, "transport-usb", strlen("transport-usb"))) {
1091 type = kTransportUsb;
1092 } else if (!strncmp(service, "transport-local", strlen("transport-local"))) {
1093 type = kTransportLocal;
1094 } else if (!strncmp(service, "transport-any", strlen("transport-any"))) {
1095 type = kTransportAny;
1096 } else if (!strncmp(service, "transport:", strlen("transport:"))) {
1097 service += strlen("transport:");
1098 serial = strdup(service);
1099 }
1100
1101 transport = acquire_one_transport(CS_ANY, type, serial, &error_string);
1102
1103 if (transport) {
1104 s->transport = transport;
1105 adb_write(reply_fd, "OKAY", 4);
1106 } else {
1107 sendfailmsg(reply_fd, error_string);
1108 }
1109 return 1;
1110 }
1111
1112 // return a list of all connected devices
1113 if (!strcmp(service, "devices")) {
1114 char buffer[4096];
1115 memset(buf, 0, sizeof(buf));
1116 memset(buffer, 0, sizeof(buffer));
1117 D("Getting device list \n");
1118 list_transports(buffer, sizeof(buffer));
1119 snprintf(buf, sizeof(buf), "OKAY%04x%s",(unsigned)strlen(buffer),buffer);
1120 D("Wrote device list \n");
1121 writex(reply_fd, buf, strlen(buf));
1122 return 0;
1123 }
1124
Stefan Hilzingerd9d1ca42010-04-26 10:17:43 +01001125 // add a new TCP transport, device or emulator
Mike Lockwood2f38b692009-08-24 15:58:40 -07001126 if (!strncmp(service, "connect:", 8)) {
1127 char buffer[4096];
Mike Lockwood2f38b692009-08-24 15:58:40 -07001128 char* host = service + 8;
Stefan Hilzingerd9d1ca42010-04-26 10:17:43 +01001129 if (!strncmp(host, "emu:", 4)) {
1130 connect_emulator(host + 4, buffer, sizeof(buffer));
1131 } else {
1132 connect_device(host, buffer, sizeof(buffer));
Mike Lockwood2f38b692009-08-24 15:58:40 -07001133 }
Stefan Hilzingerd9d1ca42010-04-26 10:17:43 +01001134 // Send response for emulator and device
Mike Lockwood74d7ff82009-10-11 23:04:18 -04001135 snprintf(buf, sizeof(buf), "OKAY%04x%s",(unsigned)strlen(buffer), buffer);
1136 writex(reply_fd, buf, strlen(buf));
1137 return 0;
1138 }
1139
1140 // remove TCP transport
1141 if (!strncmp(service, "disconnect:", 11)) {
1142 char buffer[4096];
1143 memset(buffer, 0, sizeof(buffer));
1144 char* serial = service + 11;
Mike Lockwoodcbbe79a2010-05-24 10:44:35 -04001145 if (serial[0] == 0) {
1146 // disconnect from all TCP devices
1147 unregister_all_tcp_transports();
Mike Lockwood74d7ff82009-10-11 23:04:18 -04001148 } else {
Mike Lockwoodcbbe79a2010-05-24 10:44:35 -04001149 char hostbuf[100];
1150 // assume port 5555 if no port is specified
1151 if (!strchr(serial, ':')) {
1152 snprintf(hostbuf, sizeof(hostbuf) - 1, "%s:5555", serial);
1153 serial = hostbuf;
1154 }
1155 atransport *t = find_transport(serial);
1156
1157 if (t) {
1158 unregister_transport(t);
1159 } else {
1160 snprintf(buffer, sizeof(buffer), "No such device %s", serial);
1161 }
Mike Lockwood74d7ff82009-10-11 23:04:18 -04001162 }
1163
1164 snprintf(buf, sizeof(buf), "OKAY%04x%s",(unsigned)strlen(buffer), buffer);
Mike Lockwood2f38b692009-08-24 15:58:40 -07001165 writex(reply_fd, buf, strlen(buf));
1166 return 0;
1167 }
1168
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001169 // returns our value for ADB_SERVER_VERSION
1170 if (!strcmp(service, "version")) {
1171 char version[12];
1172 snprintf(version, sizeof version, "%04x", ADB_SERVER_VERSION);
1173 snprintf(buf, sizeof buf, "OKAY%04x%s", (unsigned)strlen(version), version);
1174 writex(reply_fd, buf, strlen(buf));
1175 return 0;
1176 }
1177
1178 if(!strncmp(service,"get-serialno",strlen("get-serialno"))) {
1179 char *out = "unknown";
1180 transport = acquire_one_transport(CS_ANY, ttype, serial, NULL);
1181 if (transport && transport->serial) {
1182 out = transport->serial;
1183 }
1184 snprintf(buf, sizeof buf, "OKAY%04x%s",(unsigned)strlen(out),out);
1185 writex(reply_fd, buf, strlen(buf));
1186 return 0;
1187 }
1188 // indicates a new emulator instance has started
1189 if (!strncmp(service,"emulator:",9)) {
1190 int port = atoi(service+9);
1191 local_connect(port);
1192 /* we don't even need to send a reply */
1193 return 0;
1194 }
1195#endif // ADB_HOST
1196
1197 if(!strncmp(service,"forward:",8) || !strncmp(service,"killforward:",12)) {
1198 char *local, *remote, *err;
1199 int r;
1200 atransport *transport;
1201
1202 int createForward = strncmp(service,"kill",4);
1203
1204 local = service + (createForward ? 8 : 12);
1205 remote = strchr(local,';');
1206 if(remote == 0) {
1207 sendfailmsg(reply_fd, "malformed forward spec");
1208 return 0;
1209 }
1210
1211 *remote++ = 0;
1212 if((local[0] == 0) || (remote[0] == 0) || (remote[0] == '*')){
1213 sendfailmsg(reply_fd, "malformed forward spec");
1214 return 0;
1215 }
1216
1217 transport = acquire_one_transport(CS_ANY, ttype, serial, &err);
1218 if (!transport) {
1219 sendfailmsg(reply_fd, err);
1220 return 0;
1221 }
1222
1223 if (createForward) {
1224 r = install_listener(local, remote, transport);
1225 } else {
1226 r = remove_listener(local, remote, transport);
1227 }
1228 if(r == 0) {
1229 /* 1st OKAY is connect, 2nd OKAY is status */
1230 writex(reply_fd, "OKAYOKAY", 8);
1231 return 0;
1232 }
1233
1234 if (createForward) {
1235 sendfailmsg(reply_fd, (r == -1) ? "cannot rebind smartsocket" : "cannot bind socket");
1236 } else {
1237 sendfailmsg(reply_fd, "cannot remove listener");
1238 }
1239 return 0;
1240 }
1241
1242 if(!strncmp(service,"get-state",strlen("get-state"))) {
1243 transport = acquire_one_transport(CS_ANY, ttype, serial, NULL);
1244 char *state = connection_state_name(transport);
1245 snprintf(buf, sizeof buf, "OKAY%04x%s",(unsigned)strlen(state),state);
1246 writex(reply_fd, buf, strlen(buf));
1247 return 0;
1248 }
1249 return -1;
1250}
1251
1252#if !ADB_HOST
1253int recovery_mode = 0;
1254#endif
1255
1256int main(int argc, char **argv)
1257{
1258 adb_trace_init();
1259#if ADB_HOST
1260 adb_sysdeps_init();
1261 return adb_commandline(argc - 1, argv + 1);
1262#else
1263 if((argc > 1) && (!strcmp(argv[1],"recovery"))) {
1264 adb_device_banner = "recovery";
1265 recovery_mode = 1;
1266 }
Mike Lockwood1f546e62009-05-25 18:17:55 -04001267
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001268 start_device_log();
Stefan Hilzingera84a42e2010-04-19 12:21:12 +01001269 return adb_main(0, DEFAULT_ADB_PORT);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001270#endif
1271}