forked from facebookarchive/fb-adb
-
Notifications
You must be signed in to change notification settings - Fork 0
/
cmd_stub.c
920 lines (787 loc) · 27.8 KB
/
cmd_stub.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
/*
* Copyright (c) 2014, Facebook, Inc.
* All rights reserved.
*
* This source code is licensed under the BSD-style license found in
* the LICENSE file in the root directory of this source tree. An
* additional grant of patent rights can be found in the PATENTS file
* in the same directory.
*
*/
#include <stdio.h>
#include <stdlib.h>
#include <sys/types.h>
#include <stdint.h>
#include <assert.h>
#include <errno.h>
#include <string.h>
#include <sys/wait.h>
#include <termios.h>
#include <sys/ioctl.h>
#include <stdarg.h>
#include <limits.h>
#include <sys/socket.h>
#include <sys/un.h>
#ifdef __ANDROID__
# include <sys/system_properties.h>
# define LOG_TAG PACKAGE
#endif
#include "util.h"
#include "child.h"
#include "xmkraw.h"
#include "ringbuf.h"
#include "ringbuf.h"
#include "proto.h"
#include "core.h"
#include "channel.h"
#include "adbenc.h"
#include "termbits.h"
#include "constants.h"
#include "timestamp.h"
#include "net.h"
#include "xenviron.h"
#include "autocmd.h"
#include "fs.h"
#include "stubdaemon.h"
#include "androidmsg.h"
static bool should_send_error_packet = false;
static void
send_exit_message(int status, struct fb_adb_sh* sh)
{
struct msg_child_exit m;
memset(&m, 0, sizeof (m));
m.msg.type = MSG_CHILD_EXIT;
m.msg.size = sizeof (m);
if (WIFEXITED(status))
m.exit_status = WEXITSTATUS(status);
else if (WIFSIGNALED(status))
m.exit_status = 128 + WTERMSIG(status);
queue_message_synch(sh, &m.msg);
}
static void
set_window_size(int fd, const struct window_size* ws)
{
int ret;
struct winsize wz = {
.ws_row = ws->row,
.ws_col = ws->col,
.ws_xpixel = ws->xpixel,
.ws_ypixel = ws->ypixel,
};
do {
ret = ioctl(fd, TIOCSWINSZ, &wz);
} while (ret == -1 && errno == EINTR);
dbg("TIOCSWINSZ(%ux%u): %d", wz.ws_row, wz.ws_col, ret);
}
struct stub {
struct fb_adb_sh sh;
struct child* child;
};
static void
stub_process_msg(struct fb_adb_sh* sh, struct msg mhdr)
{
if (mhdr.type == MSG_WINDOW_SIZE) {
struct msg_window_size m;
read_cmdmsg(sh, mhdr, &m, sizeof (m));
dbgmsg(&m.msg, "recv");
struct stub* stub = (struct stub*) sh;
if (stub->child->pty_master)
set_window_size(stub->child->pty_master->fd, &m.ws);
return;
}
fb_adb_sh_process_msg(sh, mhdr);
}
static void
setup_pty(int master, int slave, void* arg)
{
struct msg_shex_hello* shex_hello = arg;
char* hello_end = (char*) shex_hello + shex_hello->msg.size;
struct termios attr = { 0 };
xtcgetattr(slave, &attr);
if (shex_hello->ispeed)
cfsetispeed(&attr, shex_hello->ispeed);
if (shex_hello->ospeed)
cfsetospeed(&attr, shex_hello->ospeed);
const struct termbit* tb = &termbits[0];
const struct termbit* tb_end = tb + nr_termbits;
struct term_control* tc = &shex_hello->tctl[0];
while ((char*)(tc+1) <= hello_end && tb < tb_end) {
int cmp = strncmp(tc->name, tb->name, sizeof (tc->name));
if (cmp < 0) {
dbg("tc not present: %.*s", (int) sizeof (tc->name), tc->name);
tc++;
continue;
}
if (cmp > 0) {
dbg("tc not sent: %s", tb->name);
tb++;
continue;
}
tcflag_t* flg = NULL;
if (tb->thing == TERM_IFLAG) {
flg = &attr.c_iflag;
} else if (tb->thing == TERM_OFLAG) {
flg = &attr.c_oflag;
} else if (tb->thing == TERM_LFLAG) {
flg = &attr.c_lflag;
} else if (tb->thing == TERM_C_CC) {
if (tc->value == shex_hello->posix_vdisable_value)
attr.c_cc[tb->value] = _POSIX_VDISABLE;
else
attr.c_cc[tb->value] = tc->value;
dbg("c_cc[%s] = %d", tb->name, tc->value);
}
if (flg) {
if (tc->value) {
dbg("pty %s: set", tb->name);
*flg |= tb->value;
} else {
dbg("pty %s: reset", tb->name);
*flg &= ~tb->value;
}
}
tc++;
tb++;
}
xtcsetattr(slave, &attr);
if (shex_hello->have_ws) {
dbg("ws %ux%u (%ux%u)",
shex_hello->ws.row,
shex_hello->ws.col,
shex_hello->ws.xpixel,
shex_hello->ws.ypixel);
set_window_size(master, &shex_hello->ws);
}
}
static void
die_setup_eof(void)
{
die(ECOMM, "peer disconnected");
}
static void
die_setup_overflow(void)
{
die(ECOMM, "bad handshake: length too big");
}
static int
handle_open_exec_file(struct msg_open_exec_file* oef)
{
SCOPED_RESLIST(rl);
char* xcmd_basename = xstrndup(
oef->basename,
oef->msg.size - offsetof(struct msg_open_exec_file, basename));
if (strchr(xcmd_basename, '/'))
die(ECOMM, "xcmd command cannot contain slashes");
const char* mydir = my_fb_adb_directory();
const char* exec_filename = xaprintf("%s/%s", mydir, xcmd_basename);
SCOPED_RESLIST(rl_exec_file);
int exec_file = try_xopen(exec_filename, O_RDONLY, 0);
WITH_CURRENT_RESLIST(rl);
if (exec_file == -1 && errno != ENOENT)
die_errno("open(\"%s\")", exec_filename);
if (exec_file != -1) {
struct sha256_hash hash = sha256_fd(exec_file);
_Static_assert(
sizeof (oef->expected_sha256_hash) <= sizeof (hash.digest),
"hash size mismatch");
if (memcmp(oef->expected_sha256_hash,
hash.digest,
sizeof (oef->expected_sha256_hash)) == 0)
{
struct msg m = {
.type = MSG_EXEC_FILE_OK,
.size = sizeof (m),
};
write_all(STDOUT_FILENO, &m, sizeof (m));
reslist_xfer(rl->parent, rl_exec_file);
return exec_file;
}
}
size_t exec_filename_length = strlen(exec_filename);
struct msg_exec_file_mismatch errm = {
.msg.type = MSG_EXEC_FILE_MISMATCH,
.msg.size = sizeof (errm) + exec_filename_length,
};
write_all(STDOUT_FILENO, &errm, sizeof (errm));
write_all(STDOUT_FILENO, exec_filename, exec_filename_length);
return -1;
}
static void
read_child_arglist(reader rdr,
size_t expected,
char*** out_argv,
const char** out_cwd,
struct xenviron** out_xe)
{
char** argv;
const char* cwd = NULL;
struct xenviron* xe = NULL;
int exec_file = -1;
if (expected >= SIZE_MAX / sizeof (*argv))
die(EFBIG, "too many arguments");
argv = xalloc(sizeof (*argv) * (1+expected));
size_t argno = 0;
while (argno < expected) {
SCOPED_RESLIST(rl_read_arg);
struct msg* mhdr = read_msg(STDIN_FILENO, rdr);
const char* argval = NULL;
size_t arglen;
if (mhdr->type == MSG_CMDLINE_ARGUMENT) {
struct msg_cmdline_argument* m =
CHECK_MSG_CAST(mhdr, struct msg_cmdline_argument);
argval = m->value;
arglen = m->msg.size - sizeof (*m);
dbg("got regular command line argument [%.*s]",
(int) arglen, argval);
} else if (mhdr->type == MSG_CMDLINE_DEFAULT_SH ||
mhdr->type == MSG_CMDLINE_DEFAULT_SH_LOGIN)
{
argval = getenv("SHELL");
if (argval == NULL)
argval = DEFAULT_SHELL;
if (mhdr->type == MSG_CMDLINE_DEFAULT_SH_LOGIN)
argval = xaprintf("-%s", argval);
arglen = strlen(argval);
} else if(mhdr->type == MSG_CMDLINE_EXEC_FILE) {
if (exec_file == -1)
die(ECOMM, "exec file not set");
argval = xaprintf("/proc/self/fd/%d", exec_file);
arglen = strlen(argval);
} else if(mhdr->type == MSG_CMDLINE_SELF_ARGV0) {
argval = orig_argv0;
arglen = strlen(argval);
} else if (mhdr->type == MSG_CMDLINE_ARGUMENT_JUMBO) {
struct msg_cmdline_argument_jumbo* mj =
CHECK_MSG_CAST(mhdr,
struct msg_cmdline_argument_jumbo);
arglen = mj->actual_size;
void* buf = xalloc(arglen);
size_t nr_read = rdr(STDIN_FILENO, buf, arglen);
if (nr_read != arglen)
die_setup_eof();
argval = buf;
dbg("Got jumbo command line option: [%.*s]",
(int) arglen, argval);
} else if (mhdr->type == MSG_CLEARENV) {
if (xe) {
xenviron_clear(xe);
} else {
WITH_CURRENT_RESLIST(rl_read_arg->parent);
xe = xenviron_create(NULL);
}
} else if (mhdr->type == MSG_ENVIRONMENT_VARIABLE_SET) {
struct msg_environment_variable_set* e =
CHECK_MSG_CAST(mhdr, struct msg_environment_variable_set);
const char* payload = e->value;
size_t payload_length = e->msg.size - sizeof (*e);
const char* name;
const char* value;
size_t name_length = strnlen(payload, payload_length);
if (name_length == payload_length)
die(ECOMM, "invalid environment variable messsage");
name = payload;
size_t value_offset = name_length + 1;
value = xstrndup(payload + value_offset,
payload_length - value_offset);
if (xe == NULL) {
WITH_CURRENT_RESLIST(rl_read_arg->parent);
xe = xenviron_copy_environ();
}
xenviron_set(xe, name, value);
} else if (mhdr->type == MSG_ENVIRONMENT_VARIABLE_SET_JUMBO) {
struct msg_environment_variable_set_jumbo* ej =
CHECK_MSG_CAST(
mhdr,
struct msg_environment_variable_set_jumbo);
if (ej->name_length == SIZE_MAX || ej->value_length == SIZE_MAX)
die_setup_overflow();
char* name = xalloc((size_t) ej->name_length + 1);
char* value = xalloc((size_t) ej->value_length + 1);
if (rdr(STDIN_FILENO, name, ej->name_length) < ej->name_length ||
rdr(STDIN_FILENO, value, ej->value_length) < ej->value_length)
die_setup_eof();
name[ej->name_length] = '\0';
value[ej->value_length] = '\0';
if (xe == NULL) {
WITH_CURRENT_RESLIST(rl_read_arg->parent);
xe = xenviron_copy_environ();
}
xenviron_set(xe, name, value);
} else if (mhdr->type == MSG_ENVIRONMENT_VARIABLE_UNSET) {
struct msg_environment_variable_unset* ue =
CHECK_MSG_CAST(mhdr, struct msg_environment_variable_unset);
const char* payload = ue->name;
size_t payload_length = ue->msg.size - sizeof (*ue);
if (xe == NULL) {
WITH_CURRENT_RESLIST(rl_read_arg->parent);
xe = xenviron_copy_environ();
}
xenviron_unset(xe, xstrndup(payload, payload_length));
} else if (mhdr->type == MSG_ENVIRONMENT_VARIABLE_UNSET_JUMBO) {
struct msg_environment_variable_unset_jumbo* uej =
CHECK_MSG_CAST(
mhdr,
struct msg_environment_variable_unset_jumbo);
if (uej->name_length == SIZE_MAX)
die_setup_overflow();
char* name = xalloc((size_t) uej->name_length + 1);
if (rdr(STDIN_FILENO, name, uej->name_length) < uej->name_length)
die_setup_eof();
name[uej->name_length] = '\0';
if (xe == NULL) {
WITH_CURRENT_RESLIST(rl_read_arg->parent);
xe = xenviron_copy_environ();
}
xenviron_unset(xe, name);
} else if (mhdr->type == MSG_CHDIR) {
struct msg_chdir* mchd = CHECK_MSG_CAST(mhdr, struct msg_chdir);
WITH_CURRENT_RESLIST(rl_read_arg->parent);
cwd = xstrndup(mchd->dir, mhdr->size - sizeof (*mchd));
} else if (mhdr->type == MSG_OPEN_EXEC_FILE) {
if (exec_file != -1)
die(ECOMM, "exec file already open");
struct msg_open_exec_file* oef =
CHECK_MSG_CAST(mhdr, struct msg_open_exec_file);
WITH_CURRENT_RESLIST(rl_read_arg->parent);
exec_file = handle_open_exec_file(oef);
} else {
die(ECOMM,
"bad handshake: unknown init msg s=%u t=%u",
(unsigned) mhdr->size, (unsigned) mhdr->type);
}
if (argval != NULL) {
WITH_CURRENT_RESLIST(rl_read_arg->parent);
size_t allocsz;
if (SATADD(&allocsz, arglen, 1))
die_setup_overflow();
argv[argno] = xalloc(arglen + 1);
memcpy(argv[argno], argval, arglen);
argv[argno][arglen] = '\0';
argno += 1;
}
}
argv[expected] = NULL;
*out_argv = argv;
*out_cwd = cwd;
*out_xe = xe;
}
static struct child*
start_child(reader rdr, struct msg_shex_hello* shex_hello)
{
if (shex_hello->nr_argv < 2)
die(ECOMM, "insufficient arguments given");
SCOPED_RESLIST(rl_args);
char** child_args;
const char* child_chdir = NULL;
struct xenviron* child_xe = NULL;
read_child_arglist(rdr,
shex_hello->nr_argv,
&child_args,
&child_chdir,
&child_xe);
WITH_CURRENT_RESLIST(rl_args->parent);
struct child_start_info csi = {
.flags = CHILD_SETSID,
.exename = maybe_my_exe(child_args[0]),
.argv = (const char* const *) child_args + 1,
.environ = child_xe ? xenviron_as_environ(child_xe) : NULL,
.pty_setup = setup_pty,
.pty_setup_data = shex_hello,
.deathsig = -SIGHUP,
.child_chdir = child_chdir,
};
for (unsigned i = 0; i < 3; ++i)
csi.io[i] = shex_hello->si[i].pty_p
? CHILD_IO_PTY
: CHILD_IO_PIPE;
if (shex_hello->ctty_p)
csi.flags |= CHILD_CTTY;
return child_start(&csi);
}
static void __attribute__((noreturn))
re_exec_as_root()
{
should_send_error_packet = false; // Peer expects text
execlp("su", "su", "-c", orig_argv0, "stub", NULL);
die_errno("execlp of su");
}
static void __attribute__((noreturn))
re_exec_as_user(const char* username, bool shell_thunk)
{
should_send_error_packet = false; // Peer expects text
(void) shell_thunk;
#ifdef __ANDROID__
if (!shell_thunk) {
execlp("run-as", "run-as", username, orig_argv0, "stub", NULL);
} else {
// Work around brain-damaged SELinux-based security theater
// that prohibits execution of binaries directly from
// /data/local/tmp on Lollipop and above. Instead, copy the
// binary to the application data directory (which is the
// current woring directory for processes launched via run-as)
// and run that copy.
// Small shell script we run below. $1 is the name of the
// fb-adb binary; the rest of the arguments are arguments for
// fb-adb.
static const char selinux_workaround[] =
"{ { [ -f fb-adb ] && cmp fb-adb \"$1\" >/dev/null 2>&1; } "
" || { cp -f \"$1\" fb-adb.tmp.$$ && mv -f fb-adb.tmp.$$ fb-adb; }"
" } && shift && exec ./fb-adb \"$@\"";
execlp("run-as", "run-as", username,
"/system/bin/sh",
"-c",
selinux_workaround,
"selinux_workaround",
orig_argv0,
"stub",
NULL);
}
die_errno("execlp of run-as");
#else
die(ENOSYS, "re_exec_as_user works only under Android");
#endif
}
static void
send_socket_available_now_message()
{
struct msg m;
memset(&m, 0, sizeof (m));
m.type = MSG_LISTENING_ON_SOCKET;
m.size = sizeof (m);
write_all(STDOUT_FILENO, &m, sizeof (m));
}
static int
connect_peer_unix_socket(struct msg* mhdr)
{
struct msg_rebind_to_unix_socket* rbmsg =
(struct msg_rebind_to_unix_socket*) mhdr;
if (rbmsg->msg.size < sizeof (*rbmsg))
die(ECOMM, "invalid MSG_REBIND_TO_UNIX_SOCKET length");
size_t socket_name_length = rbmsg->msg.size - sizeof (*rbmsg);
char* socket_name = strndup(rbmsg->socket, socket_name_length);
int listening_socket = xsocket(AF_UNIX, SOCK_STREAM, 0);
xbind(listening_socket, make_addr_unix_abstract(
socket_name, strlen(socket_name)));
if (listen(listening_socket, 1) == -1)
die_errno("listen");
send_socket_available_now_message();
return xaccept(listening_socket);
}
static int
connect_peer_tcp4_socket(struct msg* mhdr)
{
struct msg_rebind_to_tcp4_socket* rbmsg =
(struct msg_rebind_to_tcp4_socket*) mhdr;
if (rbmsg->msg.size < sizeof (*rbmsg))
die(ECOMM, "invalid MSG_REBIND_TO_TCP4_SOCKET length");
int client = xsocket(AF_INET, SOCK_STREAM, 0);
disable_tcp_nagle(client);
struct addr addr;
memset(&addr, 0, sizeof (addr));
addr.size = sizeof (addr.addr_in);
addr.addr_in.sin_family = AF_INET;
addr.addr_in.sin_port = rbmsg->port;
addr.addr_in.sin_addr.s_addr = rbmsg->addr;
xconnect(client, &addr);
return client;
}
static int
connect_peer_tcp6_socket(struct msg* mhdr)
{
struct msg_rebind_to_tcp6_socket* rbmsg =
(struct msg_rebind_to_tcp6_socket*) mhdr;
if (rbmsg->msg.size < sizeof (*rbmsg))
die(ECOMM, "invalid MSG_REBIND_TO_TCP6_SOCKET length");
int client = xsocket(AF_INET, SOCK_STREAM, 0);
disable_tcp_nagle(client);
struct addr addr;
memset(&addr, 0, sizeof (addr));
addr.size = sizeof (addr.addr_in6);
addr.addr_in6.sin6_family = AF_INET6;
addr.addr_in6.sin6_port = rbmsg->port;
memcpy(addr.addr_in6.sin6_addr.s6_addr, rbmsg->addr, 16);
xconnect(client, &addr);
return client;
}
static void
rebind_to_socket(struct msg* mhdr)
{
SCOPED_RESLIST(rl_rebind);
int client;
switch (mhdr->type) {
case MSG_REBIND_TO_UNIX_SOCKET:
client = connect_peer_unix_socket(mhdr);
break;
case MSG_REBIND_TO_TCP4_SOCKET:
client = connect_peer_tcp4_socket(mhdr);
break;
case MSG_REBIND_TO_TCP6_SOCKET:
client = connect_peer_tcp6_socket(mhdr);
break;
default:
assert(!"missed socket message enumeration");
__builtin_unreachable();
}
// Leak the old console file descriptor so our parent doesn't
// think we're died. Deliberately allow the file descriptor to
// leak across exec.
int leaked = dup(STDERR_FILENO);
if (leaked == -1)
die_errno("dup");
xdup3nc(client, STDIN_FILENO, 0);
xdup3nc(client, STDOUT_FILENO, 0);
xdup3nc(client, STDERR_FILENO, 0);
}
static void
xmkraw(int fd)
{
struct termios attr;
xtcgetattr(fd, &attr);
cfmakeraw(&attr);
xtcsetattr(fd, &attr);
}
#ifdef __ANDROID__
static unsigned
abi_to_abi_bit(const char* abi)
{
if (string_starts_with_p(abi, "armeabi"))
return FB_ADB_ARCH_ARM;
if (string_starts_with_p(abi, "arm64"))
return FB_ADB_ARCH_AARCH64;
if (!strcmp(abi, "x86"))
return FB_ADB_ARCH_X86;
if (!strcmp(abi, "x86_64"))
return FB_ADB_ARCH_AMD64;
return 0;
}
#endif
static unsigned
make_abi_mask(unsigned api_level)
{
unsigned abi_mask = 0;
#ifdef __ANDROID__
char propval[PROP_VALUE_MAX];
const prop_info* pi;
if (api_level < 21) {
pi = __system_property_find("ro.product.cpu.abi");
if (pi) {
__system_property_read(pi, NULL, propval);
abi_mask |= abi_to_abi_bit(propval);
}
pi = __system_property_find("ro.product.cpu.abi2");
if (pi) {
__system_property_read(pi, NULL, propval);
abi_mask |= abi_to_abi_bit(propval);
}
} else {
pi = __system_property_find("ro.product.cpu.abilist");
if (pi) {
__system_property_read(pi, NULL, propval);
char* savepos = NULL;
for (char* abi = strtok_r(propval, ",", &savepos);
abi != NULL;
abi = strtok_r(NULL, ",", &savepos))
{
abi_mask |= abi_to_abi_bit(abi);
}
}
}
#endif
return abi_mask;
}
static int
stub_main_1(const struct cmd_stub_info* info)
{
if (info->stub.listen &&
run_stub_daemon(
(struct stub_daemon_info){
.daemonize = info->stub.daemonize,
.replace = info->stub.replace,
}) == STUB_DAEMON_EXIT_PROGRAM)
{
return 0;
}
/* Never unset raw mode. We never change from raw back to cooked
* mode on exit. The connection dies on exit anyway, and
* resetting the pty can send some extra bytes that can confuse
* our peer. */
for (int fd = 0; fd <= 1; ++fd)
if (isatty(fd))
xmkraw(fd);
unsigned my_api_level;
#ifdef __ANDROID__
my_api_level = api_level();
#else
my_api_level = 15; // Fake
#endif
xprintf(xstdout,
FB_ADB_PROTO_START_LINE "\n", build_fingerprint,
make_abi_mask(my_api_level),
(unsigned) getuid(),
my_api_level);
xflush(xstdout);
should_send_error_packet = true;
struct msg_shex_hello* shex_hello;
reader rdr = isatty(0) ? read_all_adb_encoded : read_all;
struct msg* mhdr = read_msg(STDIN_FILENO, rdr);
if (mhdr->type == MSG_REBIND_TO_UNIX_SOCKET ||
mhdr->type == MSG_REBIND_TO_TCP4_SOCKET ||
mhdr->type == MSG_REBIND_TO_TCP6_SOCKET)
{
rebind_to_socket(mhdr);
rdr = read_all; // Yay! No more tty deobfuscation!
mhdr = read_msg(STDIN_FILENO, rdr);
}
if (mhdr->type == MSG_EXEC_AS_ROOT)
re_exec_as_root(); // Never returns
if (mhdr->type == MSG_EXEC_AS_USER) {
struct msg_exec_as_user* umsg =
(struct msg_exec_as_user*) mhdr;
size_t username_length = umsg->msg.size - sizeof (*umsg);
const char* username = xstrndup(umsg->username, username_length);
re_exec_as_user(username, umsg->shell_thunk); // Never returns
}
if (mhdr->type != MSG_SHEX_HELLO ||
mhdr->size < sizeof (struct msg_shex_hello))
{
die(ECOMM, "bad hello");
}
shex_hello = (struct msg_shex_hello*) mhdr;
struct child* child = start_child(rdr, shex_hello);
// Child could be running arbitrary SIGHUP-ignoring code. Do our
// best to kill it if we have to exit, but don't wait around
// for it.
child->skip_cleanup_wait = true;
struct stub stub;
memset(&stub, 0, sizeof (stub));
stub.child = child;
struct fb_adb_sh* sh = &stub.sh;
sh->process_msg = stub_process_msg;
sh->max_outgoing_msg = shex_hello->maxmsg;
sh->nrch = 5;
struct channel** ch = xalloc(sh->nrch * sizeof (*ch));
should_send_error_packet = false;
ch[FROM_PEER] = channel_new(fdh_dup(STDIN_FILENO),
shex_hello->stub_recv_bufsz,
CHANNEL_FROM_FD);
ch[FROM_PEER]->window = UINT32_MAX;
ch[FROM_PEER]->adb_encoding_hack = !!(rdr == read_all_adb_encoded);
ch[TO_PEER] = channel_new(fdh_dup(STDOUT_FILENO),
shex_hello->stub_send_bufsz,
CHANNEL_TO_FD);
replace_stdin_stdout_with_dev_null();
// See comment in cmd_shex.c
ch[TO_PEER]->always_buffer = true;
ch[CHILD_STDIN] = channel_new(child->fd[STDIN_FILENO],
shex_hello->si[STDIN_FILENO].bufsz,
CHANNEL_TO_FD);
if (shex_hello->si[STDIN_FILENO].compress)
ch[CHILD_STDIN]->compress = true;
ch[CHILD_STDIN]->track_bytes_written = true;
ch[CHILD_STDIN]->bytes_written =
ringbuf_room(ch[CHILD_STDIN]->rb);
ch[CHILD_STDOUT] = channel_new(child->fd[STDOUT_FILENO],
shex_hello->si[STDOUT_FILENO].bufsz,
CHANNEL_FROM_FD);
ch[CHILD_STDOUT]->track_window = true;
if (shex_hello->si[STDOUT_FILENO].compress)
ch[CHILD_STDOUT]->compress = true;
ch[CHILD_STDERR] = channel_new(child->fd[STDERR_FILENO],
shex_hello->si[STDERR_FILENO].bufsz,
CHANNEL_FROM_FD);
ch[CHILD_STDERR]->track_window = true;
if (shex_hello->si[STDERR_FILENO].compress)
ch[CHILD_STDERR]->compress = true;
sh->ch = ch;
io_loop_init(sh);
PUMP_WHILE(sh, (!channel_dead_p(ch[FROM_PEER]) &&
!channel_dead_p(ch[TO_PEER]) &&
(!channel_dead_p(ch[CHILD_STDOUT]) ||
!channel_dead_p(ch[CHILD_STDERR]))));
if (channel_dead_p(ch[FROM_PEER]) || channel_dead_p(ch[TO_PEER])) {
dbg("abnormal exit: closing peer channels");
//
// If we lost our peer connection, make sure the child sees
// SIGHUP instead of seeing its stdin close: just drain any
// internally-buffered IO and exit. When we lose the pty, the
// child gets SIGHUP.
//
// Make sure we won't be getting any more commands.
channel_close(ch[FROM_PEER]);
channel_close(ch[TO_PEER]);
dbg("waiting for peer channels to die");
PUMP_WHILE(sh, (!channel_dead_p(ch[FROM_PEER]) ||
!channel_dead_p(ch[TO_PEER])));
// Drain output buffers
dbg("closing child stdin");
channel_close(ch[CHILD_STDIN]);
dbg("waiting for child stdin to close");
PUMP_WHILE(sh, !channel_dead_p(ch[CHILD_STDIN]));
dbg("exiting");
return 128 + SIGHUP;
}
//
// Clean exit: close standard handles and drain IO. Peer still
// has no idea that we're exiting. Get exit status, send that to
// peer, then wait for peer to shut down our connection. N.B.
// it's important to wait for FROM_PEER to die after we close
// TO_PEER; ADB sometimes drops the last few bytes from a
// connection if we exit immediately after write, and waiting for
// our peer to close the control connection indicates that it's
// acknowledged receipt of our close-status message.
//
dbg("clean exit");
channel_close(ch[CHILD_STDIN]);
channel_close(ch[CHILD_STDOUT]);
channel_close(ch[CHILD_STDERR]);
PUMP_WHILE (sh, (!channel_dead_p(ch[CHILD_STDIN]) ||
!channel_dead_p(ch[CHILD_STDOUT]) ||
!channel_dead_p(ch[CHILD_STDERR])));
send_exit_message(child_wait(child), sh);
channel_close(ch[TO_PEER]);
PUMP_WHILE(sh, !channel_dead_p(ch[TO_PEER]));
PUMP_WHILE(sh, !channel_dead_p(ch[FROM_PEER]));
return 0;
}
struct stub_main_context {
const struct cmd_stub_info *info;
int ret;
};
static void
stub_main_trampoline(void* data)
{
struct stub_main_context* ctx = data;
ctx->ret = stub_main_1(ctx->info);
}
static void
send_error_packet(void* data)
{
struct errinfo* ei = data;
size_t msg_length = strlen(ei->msg);
struct msg_error* me;
size_t packet_length = XMIN(msg_length + sizeof (*me), MSG_MAX_SIZE);
msg_length = packet_length - sizeof (*me);
me = alloca(packet_length);
memset(me, 0, sizeof (*me));
me->msg.type = MSG_ERROR;
me->msg.size = packet_length;
memcpy(&me->text[0], ei->msg, msg_length);
write_all(STDOUT_FILENO, me, packet_length);
}
int
stub_main(const struct cmd_stub_info* info)
{
if (info->stub.daemonize && !info->stub.listen)
usage_error("--daemonize without --listen is nonsensical");
struct stub_main_context ctx = { .info = info };
struct errinfo ei = { .want_msg = true };
if (catch_error(stub_main_trampoline, &ctx, &ei)) {
android_msg(ANDROID_LOG_ERROR, "%s", ei.msg);
if (should_send_error_packet) {
(void) catch_error(send_error_packet, &ei, NULL);
return 1; // Exit silently
}
die_rethrow(&ei);
}
return ctx.ret;
}