blob: 7702b0edf4ff442efbc358b9f49dea73479fd6f6 [file] [log] [blame]
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -08001/*
2 * Copyright (C) 2007 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
Yabin Cui19bec5b2015-09-22 15:52:57 -070017#define TRACE_TAG ADB
Dan Albertdb6fe642015-03-19 15:21:08 -070018
19#include "sysdeps.h"
20
Dan Albertb302d122015-02-24 15:51:19 -080021#include <assert.h>
22#include <ctype.h>
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -080023#include <errno.h>
Elliott Hughesd1a5b2b2015-04-17 14:07:52 -070024#include <inttypes.h>
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -080025#include <limits.h>
26#include <stdarg.h>
Dan Albertb302d122015-02-24 15:51:19 -080027#include <stdint.h>
28#include <stdio.h>
29#include <stdlib.h>
30#include <string.h>
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -080031#include <sys/stat.h>
Dan Albertb302d122015-02-24 15:51:19 -080032#include <sys/types.h>
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -080033
David Pursell8a5a5aa2015-09-08 17:17:02 -070034#include <memory>
Elliott Hughes170b5682015-04-17 10:59:34 -070035#include <string>
Elliott Hughes73925982016-11-15 12:37:32 -080036#include <thread>
Josh Gao5d093b22015-10-30 16:57:19 -070037#include <vector>
Elliott Hughes170b5682015-04-17 10:59:34 -070038
Elliott Hughese0a6e2a2016-05-26 22:43:19 -070039#include <android-base/file.h>
Elliott Hughesf55ead92015-12-04 22:00:26 -080040#include <android-base/logging.h>
Tao Wucaedcb52016-09-16 13:01:24 -070041#include <android-base/parseint.h>
Elliott Hughesf55ead92015-12-04 22:00:26 -080042#include <android-base/stringprintf.h>
43#include <android-base/strings.h>
Elliott Hughes170b5682015-04-17 10:59:34 -070044
Yabin Cui6704a3c2014-11-17 14:48:25 -080045#if !defined(_WIN32)
Josh Gaof344ecf2015-10-23 15:03:31 -070046#include <signal.h>
Elliott Hughes4c5e8042015-11-04 13:07:47 -080047#include <sys/ioctl.h>
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -080048#include <termios.h>
Dan Albertb302d122015-02-24 15:51:19 -080049#include <unistd.h>
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -080050#endif
51
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -080052#include "adb.h"
Nick Kralevich6183c962014-11-13 15:17:29 -080053#include "adb_auth.h"
Dan Albert66a91b02015-02-24 21:26:58 -080054#include "adb_client.h"
55#include "adb_io.h"
Josh Gaoea7457b2016-08-30 15:39:25 -070056#include "adb_unique_fd.h"
Elliott Hughes38104452015-04-17 13:57:15 -070057#include "adb_utils.h"
Felipe Leme042c3512016-07-19 17:07:22 -070058#include "bugreport.h"
59#include "commandline.h"
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -080060#include "file_sync_service.h"
David Pursell22fc5e92015-09-30 13:35:42 -070061#include "services.h"
David Pursell8a5a5aa2015-09-08 17:17:02 -070062#include "shell_service.h"
Josh Gao70267e42016-11-15 18:55:47 -080063#include "sysdeps/chrono.h"
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -080064
Elliott Hughes3aec2ba2015-05-05 13:10:43 -070065static int install_app(TransportType t, const char* serial, int argc, const char** argv);
66static int install_multiple_app(TransportType t, const char* serial, int argc, const char** argv);
67static int uninstall_app(TransportType t, const char* serial, int argc, const char** argv);
Todd Kennedy1e2f7dc2015-11-03 16:53:08 -080068static int install_app_legacy(TransportType t, const char* serial, int argc, const char** argv);
69static int uninstall_app_legacy(TransportType t, const char* serial, int argc, const char** argv);
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -080070
Josh Gaoe3a87d02015-11-11 17:56:12 -080071static auto& gProductOutPath = *new std::string();
Matt Gumbel411775c2012-11-14 10:16:17 -080072extern int gListenAll;
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -080073
Felipe Leme60192aa2016-07-26 12:14:39 -070074DefaultStandardStreamsCallback DEFAULT_STANDARD_STREAMS_CALLBACK(nullptr, nullptr);
75
Elliott Hughes38104452015-04-17 13:57:15 -070076static std::string product_file(const char *extra) {
77 if (gProductOutPath.empty()) {
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -080078 fprintf(stderr, "adb: Product directory not specified; "
79 "use -p or define ANDROID_PRODUCT_OUT\n");
80 exit(1);
81 }
82
Elliott Hughes38104452015-04-17 13:57:15 -070083 return android::base::StringPrintf("%s%s%s",
84 gProductOutPath.c_str(), OS_PATH_SEPARATOR_STR, extra);
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -080085}
86
Elliott Hughes38104452015-04-17 13:57:15 -070087static void help() {
Elliott Hughes687f8b42016-09-28 15:25:47 -070088 fprintf(stdout, "%s\n", adb_version().c_str());
Felipe Lemee4893a22016-07-29 17:57:00 -070089 // clang-format off
Elliott Hughes687f8b42016-09-28 15:25:47 -070090 fprintf(stdout,
91 "global options:\n"
92 " -a listen on all network interfaces, not just localhost\n"
93 " -d use USB device (error if multiple devices connected)\n"
Elliott Hughes2d821142017-01-13 16:58:25 -080094 " -e use TCP/IP device (error if multiple TCP/IP devices available)\n"
Elliott Hughes687f8b42016-09-28 15:25:47 -070095 " -s SERIAL\n"
Elliott Hughes2d821142017-01-13 16:58:25 -080096 " use device with given serial number (overrides $ANDROID_SERIAL)\n"
Elliott Hughes687f8b42016-09-28 15:25:47 -070097 " -p PRODUCT\n"
98 " name or path ('angler'/'out/target/product/angler');\n"
99 " default $ANDROID_PRODUCT_OUT\n"
100 " -H name of adb server host [default=localhost]\n"
101 " -P port of adb server [default=5037]\n"
102 " -L SOCKET listen on given socket for adb server [default=tcp:localhost:5037]\n"
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -0800103 "\n"
Elliott Hughes687f8b42016-09-28 15:25:47 -0700104 "general commands:\n"
105 " devices [-l] list connected devices (-l for long output)\n"
106 " help show this help message\n"
107 " version show version num\n"
Elliott Hughes52746b02015-06-12 14:26:29 -0700108 "\n"
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -0800109 "networking:\n"
Elliott Hughes687f8b42016-09-28 15:25:47 -0700110 " connect HOST[:PORT] connect to a device via TCP/IP [default port=5555]\n"
111 " disconnect [HOST[:PORT]]\n"
112 " disconnect from given TCP/IP device [default port=5555], or all\n"
113 " forward --list list all forward socket connections\n"
114 " forward [--no-rebind] LOCAL REMOTE\n"
115 " forward socket connection using:\n"
116 " tcp:<port> (<local> may be \"tcp:0\" to pick any open port)\n"
117 " localabstract:<unix domain socket name>\n"
118 " localreserved:<unix domain socket name>\n"
119 " localfilesystem:<unix domain socket name>\n"
120 " dev:<character device name>\n"
121 " jdwp:<process pid> (remote only)\n"
122 " forward --remove LOCAL remove specific forward socket connection\n"
123 " forward --remove-all remove all forward socket connections\n"
124 " ppp TTY [PARAMETER...] run PPP over USB\n"
125 " reverse --list list all reverse socket connections from device\n"
126 " reverse [--no-rebind] REMOTE LOCAL\n"
127 " reverse socket connection using:\n"
128 " tcp:<port> (<remote> may be \"tcp:0\" to pick any open port)\n"
129 " localabstract:<unix domain socket name>\n"
130 " localreserved:<unix domain socket name>\n"
131 " localfilesystem:<unix domain socket name>\n"
132 " reverse --remove REMOTE remove specific reverse socket connection\n"
133 " reverse --remove-all remove all reverse socket connections from device\n"
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -0800134 "\n"
Elliott Hughes687f8b42016-09-28 15:25:47 -0700135 "file transfer:\n"
136 " push LOCAL... REMOTE\n"
137 " copy local files/directories to device\n"
138 " pull [-a] REMOTE... LOCAL\n"
139 " copy files/dirs from device\n"
140 " -a: preserve file timestamp and mode\n"
141 " sync [DIR]\n"
142 " copy all changed files to device; if DIR is \"system\", \"vendor\", \"oem\",\n"
143 " or \"data\", only sync that partition (default all)\n"
144 " -l: list but don't copy\n"
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -0800145 "\n"
Elliott Hughes687f8b42016-09-28 15:25:47 -0700146 "shell:\n"
147 " shell [-e ESCAPE] [-n] [-Tt] [-x] [COMMAND...]\n"
148 " run remote shell command (interactive shell if no command given)\n"
149 " -e: choose escape character, or \"none\"; default '~'\n"
150 " -n: don't read from stdin\n"
151 " -T: disable PTY allocation\n"
152 " -t: force PTY allocation\n"
153 " -x: disable remote exit codes and stdout/stderr separation\n"
154 " emu COMMAND run emulator console command\n"
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -0800155 "\n"
Elliott Hughes687f8b42016-09-28 15:25:47 -0700156 "app installation:\n"
157 " install [-lrtsdg] PACKAGE\n"
158 " install-multiple [-lrtsdpg] PACKAGE...\n"
159 " push package(s) to the device and install them\n"
160 " -l: forward lock application\n"
161 " -r: replace existing application\n"
162 " -t: allow test packages\n"
163 " -s: install application on sdcard\n"
164 " -d: allow version code downgrade (debuggable packages only)\n"
165 " -p: partial application install (install-multiple only)\n"
166 " -g: grant all runtime permissions\n"
167 " uninstall [-k] PACKAGE\n"
168 " remove this app package from the device\n"
169 " '-k': keep the data and cache directories\n"
170 "\n"
171 "backup/restore:\n"
Johan Toras Halsethd8dedd12017-04-11 19:15:17 +0100172 " to show usage run \"adb shell bu help\"\n"
Elliott Hughes687f8b42016-09-28 15:25:47 -0700173 "\n"
174 "debugging:\n"
175 " bugreport [PATH]\n"
176 " write bugreport to given PATH [default=bugreport.zip];\n"
177 " if PATH is a directory, the bug report is saved in that directory.\n"
178 " devices that don't support zipped bug reports output to stdout.\n"
179 " jdwp list pids of processes hosting a JDWP transport\n"
180 " logcat show device log (logcat --help for more)\n"
181 "\n"
182 "security:\n"
183 " disable-verity disable dm-verity checking on userdebug builds\n"
184 " enable-verity re-enable dm-verity checking on userdebug builds\n"
185 " keygen FILE\n"
186 " generate adb public/private key; private key stored in FILE,\n"
187 " public key stored in FILE.pub (existing files overwritten)\n"
188 "\n"
189 "scripting:\n"
190 " wait-for[-TRANSPORT]-STATE\n"
191 " wait for device to be in the given state\n"
192 " State: device, recovery, sideload, or bootloader\n"
193 " Transport: usb, local, or any [default=any]\n"
194 " get-state print offline | bootloader | device\n"
195 " get-serialno print <serial-number>\n"
196 " get-devpath print <device-path>\n"
197 " remount\n"
198 " remount /system, /vendor, and /oem partitions read-write\n"
199 " reboot [bootloader|recovery|sideload|sideload-auto-reboot]\n"
200 " reboot the device; defaults to booting system image but\n"
201 " supports bootloader and recovery too. sideload reboots\n"
202 " into recovery and automatically starts sideload mode,\n"
203 " sideload-auto-reboot is the same but reboots after sideloading.\n"
204 " sideload OTAPACKAGE sideload the given full OTA package\n"
205 " root restart adbd with root permissions\n"
206 " unroot restart adbd without root permissions\n"
207 " usb restart adb server listening on USB\n"
208 " tcpip PORT restart adb server listening on TCP on PORT\n"
Tim1b29ed32010-02-16 20:18:29 +0000209 "\n"
Yabin Cuid78ed222016-04-05 13:50:44 -0700210 "internal debugging:\n"
Elliott Hughes687f8b42016-09-28 15:25:47 -0700211 " start-server ensure that there is a server running\n"
212 " kill-server kill the server if it is running\n"
213 " reconnect kick connection from host side to force reconnect\n"
214 " reconnect device kick connection from device side to force reconnect\n"
215 "\n"
Elliott Hughes52746b02015-06-12 14:26:29 -0700216 "environment variables:\n"
Elliott Hughes687f8b42016-09-28 15:25:47 -0700217 " $ADB_TRACE\n"
218 " comma-separated list of debug info to log:\n"
219 " all,adb,sockets,packets,rwx,usb,sync,sysdeps,transport,jdwp\n"
220 " $ADB_VENDOR_KEYS colon-separated list of keys (files or directories)\n"
221 " $ANDROID_SERIAL serial number to connect to (see -s)\n"
222 " $ANDROID_LOG_TAGS tags to be used by logcat (see logcat --help)\n");
Felipe Lemee4893a22016-07-29 17:57:00 -0700223 // clang-format on
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -0800224}
225
Yabin Cui6704a3c2014-11-17 14:48:25 -0800226#if defined(_WIN32)
227
Elliott Hughes6a096932015-04-16 16:47:02 -0700228// Implemented in sysdeps_win32.cpp.
Elliott Hughesa8265792015-11-03 11:18:40 -0800229void stdin_raw_init();
230void stdin_raw_restore();
Yabin Cui6704a3c2014-11-17 14:48:25 -0800231
232#else
Alistair Buxton7c5dcbb2013-03-01 22:16:41 +0100233static termios g_saved_terminal_state;
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -0800234
Elliott Hughesa8265792015-11-03 11:18:40 -0800235static void stdin_raw_init() {
236 if (tcgetattr(STDIN_FILENO, &g_saved_terminal_state)) return;
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -0800237
Alistair Buxton7c5dcbb2013-03-01 22:16:41 +0100238 termios tio;
Elliott Hughesa8265792015-11-03 11:18:40 -0800239 if (tcgetattr(STDIN_FILENO, &tio)) return;
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -0800240
Alistair Buxton7c5dcbb2013-03-01 22:16:41 +0100241 cfmakeraw(&tio);
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -0800242
Alistair Buxton7c5dcbb2013-03-01 22:16:41 +0100243 // No timeout but request at least one character per read.
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -0800244 tio.c_cc[VTIME] = 0;
245 tio.c_cc[VMIN] = 1;
246
Elliott Hughesa8265792015-11-03 11:18:40 -0800247 tcsetattr(STDIN_FILENO, TCSAFLUSH, &tio);
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -0800248}
249
Elliott Hughesa8265792015-11-03 11:18:40 -0800250static void stdin_raw_restore() {
251 tcsetattr(STDIN_FILENO, TCSAFLUSH, &g_saved_terminal_state);
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -0800252}
253#endif
254
David Pursell8a5a5aa2015-09-08 17:17:02 -0700255// Reads from |fd| and prints received data. If |use_shell_protocol| is true
256// this expects that incoming data will use the shell protocol, in which case
257// stdout/stderr are routed independently and the remote exit code will be
258// returned.
Felipe Leme60192aa2016-07-26 12:14:39 -0700259// if |callback| is non-null, stdout/stderr output will be handled by it.
260int read_and_dump(int fd, bool use_shell_protocol = false,
261 StandardStreamsCallbackInterface* callback = &DEFAULT_STANDARD_STREAMS_CALLBACK) {
David Pursell8a5a5aa2015-09-08 17:17:02 -0700262 int exit_code = 0;
Felipe Leme5ad50902016-06-06 16:05:36 -0700263 if (fd < 0) return exit_code;
264
David Pursell8a5a5aa2015-09-08 17:17:02 -0700265 std::unique_ptr<ShellProtocol> protocol;
266 int length = 0;
David Pursell8a5a5aa2015-09-08 17:17:02 -0700267
268 char raw_buffer[BUFSIZ];
269 char* buffer_ptr = raw_buffer;
270 if (use_shell_protocol) {
271 protocol.reset(new ShellProtocol(fd));
272 if (!protocol) {
273 LOG(ERROR) << "failed to allocate memory for ShellProtocol object";
274 return 1;
275 }
276 buffer_ptr = protocol->data();
277 }
278
Felipe Leme5ad50902016-06-06 16:05:36 -0700279 while (true) {
David Pursell8a5a5aa2015-09-08 17:17:02 -0700280 if (use_shell_protocol) {
281 if (!protocol->Read()) {
282 break;
283 }
Felipe Leme60192aa2016-07-26 12:14:39 -0700284 length = protocol->data_length();
David Pursell8a5a5aa2015-09-08 17:17:02 -0700285 switch (protocol->id()) {
286 case ShellProtocol::kIdStdout:
Felipe Leme60192aa2016-07-26 12:14:39 -0700287 callback->OnStdout(buffer_ptr, length);
David Pursell8a5a5aa2015-09-08 17:17:02 -0700288 break;
289 case ShellProtocol::kIdStderr:
Felipe Leme60192aa2016-07-26 12:14:39 -0700290 callback->OnStderr(buffer_ptr, length);
David Pursell8a5a5aa2015-09-08 17:17:02 -0700291 break;
292 case ShellProtocol::kIdExit:
293 exit_code = protocol->data()[0];
294 continue;
295 default:
296 continue;
297 }
298 length = protocol->data_length();
299 } else {
300 D("read_and_dump(): pre adb_read(fd=%d)", fd);
301 length = adb_read(fd, raw_buffer, sizeof(raw_buffer));
302 D("read_and_dump(): post adb_read(fd=%d): length=%d", fd, length);
303 if (length <= 0) {
304 break;
305 }
Felipe Leme60192aa2016-07-26 12:14:39 -0700306 callback->OnStdout(buffer_ptr, length);
Felipe Lemeb6447032016-04-01 17:43:27 -0700307 }
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -0800308 }
David Pursell8a5a5aa2015-09-08 17:17:02 -0700309
Felipe Leme60192aa2016-07-26 12:14:39 -0700310 return callback->Done(exit_code);
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -0800311}
312
Jeff Sharkey0e0d2512014-06-09 17:30:57 -0700313static void read_status_line(int fd, char* buf, size_t count)
314{
315 count--;
316 while (count > 0) {
317 int len = adb_read(fd, buf, count);
Elliott Hughes0bd85872015-08-25 10:59:45 -0700318 if (len <= 0) {
Jeff Sharkey0e0d2512014-06-09 17:30:57 -0700319 break;
320 }
321
322 buf += len;
323 count -= len;
324 }
325 *buf = '\0';
326}
327
Christopher Tatee0e9f562016-07-06 13:22:22 -0700328static void stdinout_raw_prologue(int inFd, int outFd, int& old_stdin_mode, int& old_stdout_mode) {
Jeff Sharkeyc52ec1a2014-05-26 18:30:43 -0700329 if (inFd == STDIN_FILENO) {
Elliott Hughesa8265792015-11-03 11:18:40 -0800330 stdin_raw_init();
Spencer Lowe7af2d32015-05-22 16:48:31 -0700331#ifdef _WIN32
332 old_stdin_mode = _setmode(STDIN_FILENO, _O_BINARY);
333 if (old_stdin_mode == -1) {
334 fatal_errno("could not set stdin to binary");
335 }
336#endif
Jeff Sharkeyc52ec1a2014-05-26 18:30:43 -0700337 }
Yabin Cui6704a3c2014-11-17 14:48:25 -0800338
Spencer Lowe7af2d32015-05-22 16:48:31 -0700339#ifdef _WIN32
340 if (outFd == STDOUT_FILENO) {
341 old_stdout_mode = _setmode(STDOUT_FILENO, _O_BINARY);
342 if (old_stdout_mode == -1) {
343 fatal_errno("could not set stdout to binary");
344 }
345 }
346#endif
Christopher Tatee0e9f562016-07-06 13:22:22 -0700347}
348
349static void stdinout_raw_epilogue(int inFd, int outFd, int old_stdin_mode, int old_stdout_mode) {
350 if (inFd == STDIN_FILENO) {
351 stdin_raw_restore();
352#ifdef _WIN32
353 if (_setmode(STDIN_FILENO, old_stdin_mode) == -1) {
354 fatal_errno("could not restore stdin mode");
355 }
356#endif
357 }
358
359#ifdef _WIN32
360 if (outFd == STDOUT_FILENO) {
361 if (_setmode(STDOUT_FILENO, old_stdout_mode) == -1) {
362 fatal_errno("could not restore stdout mode");
363 }
364 }
365#endif
366}
367
368static void copy_to_file(int inFd, int outFd) {
369 const size_t BUFSIZE = 32 * 1024;
370 char* buf = (char*) malloc(BUFSIZE);
371 if (buf == nullptr) fatal("couldn't allocate buffer for copy_to_file");
372 int len;
373 long total = 0;
374 int old_stdin_mode = -1;
375 int old_stdout_mode = -1;
376
377 D("copy_to_file(%d -> %d)", inFd, outFd);
378
379 stdinout_raw_prologue(inFd, outFd, old_stdin_mode, old_stdout_mode);
Spencer Lowe7af2d32015-05-22 16:48:31 -0700380
Elliott Hughes7cf35752015-04-17 17:03:59 -0700381 while (true) {
Jeff Sharkeyc52ec1a2014-05-26 18:30:43 -0700382 if (inFd == STDIN_FILENO) {
383 len = unix_read(inFd, buf, BUFSIZE);
384 } else {
385 len = adb_read(inFd, buf, BUFSIZE);
386 }
Christopher Tate73779122011-04-21 12:53:28 -0700387 if (len == 0) {
Yabin Cui815ad882015-09-02 17:44:28 -0700388 D("copy_to_file() : read 0 bytes; exiting");
Christopher Tate73779122011-04-21 12:53:28 -0700389 break;
390 }
391 if (len < 0) {
Yabin Cui815ad882015-09-02 17:44:28 -0700392 D("copy_to_file(): read failed: %s", strerror(errno));
Christopher Tate73779122011-04-21 12:53:28 -0700393 break;
394 }
Jeff Sharkeyc52ec1a2014-05-26 18:30:43 -0700395 if (outFd == STDOUT_FILENO) {
396 fwrite(buf, 1, len, stdout);
397 fflush(stdout);
398 } else {
399 adb_write(outFd, buf, len);
400 }
Christopher Tatefba22972011-06-01 17:56:23 -0700401 total += len;
Christopher Tate73779122011-04-21 12:53:28 -0700402 }
Yabin Cui6704a3c2014-11-17 14:48:25 -0800403
Christopher Tatee0e9f562016-07-06 13:22:22 -0700404 stdinout_raw_epilogue(inFd, outFd, old_stdin_mode, old_stdout_mode);
Spencer Lowe7af2d32015-05-22 16:48:31 -0700405
Yabin Cui815ad882015-09-02 17:44:28 -0700406 D("copy_to_file() finished after %lu bytes", total);
Christopher Tatea162e242011-06-10 11:38:37 -0700407 free(buf);
Christopher Tate73779122011-04-21 12:53:28 -0700408}
409
Elliott Hughesa8265792015-11-03 11:18:40 -0800410static void send_window_size_change(int fd, std::unique_ptr<ShellProtocol>& shell) {
Elliott Hughesa8265792015-11-03 11:18:40 -0800411 // Old devices can't handle window size changes.
412 if (shell == nullptr) return;
413
Spencer Low55441402015-11-07 17:34:39 -0800414#if defined(_WIN32)
415 struct winsize {
416 unsigned short ws_row;
417 unsigned short ws_col;
418 unsigned short ws_xpixel;
419 unsigned short ws_ypixel;
420 };
421#endif
422
Elliott Hughesa8265792015-11-03 11:18:40 -0800423 winsize ws;
Spencer Low55441402015-11-07 17:34:39 -0800424
425#if defined(_WIN32)
426 // If stdout is redirected to a non-console, we won't be able to get the
427 // console size, but that makes sense.
428 const intptr_t intptr_handle = _get_osfhandle(STDOUT_FILENO);
429 if (intptr_handle == -1) return;
430
431 const HANDLE handle = reinterpret_cast<const HANDLE>(intptr_handle);
432
433 CONSOLE_SCREEN_BUFFER_INFO info;
434 memset(&info, 0, sizeof(info));
435 if (!GetConsoleScreenBufferInfo(handle, &info)) return;
436
437 memset(&ws, 0, sizeof(ws));
438 // The number of visible rows, excluding offscreen scroll-back rows which are in info.dwSize.Y.
439 ws.ws_row = info.srWindow.Bottom - info.srWindow.Top + 1;
440 // If the user has disabled "Wrap text output on resize", they can make the screen buffer wider
441 // than the window, in which case we should use the width of the buffer.
442 ws.ws_col = info.dwSize.X;
443#else
Elliott Hughesa8265792015-11-03 11:18:40 -0800444 if (ioctl(fd, TIOCGWINSZ, &ws) == -1) return;
Spencer Low55441402015-11-07 17:34:39 -0800445#endif
Elliott Hughesa8265792015-11-03 11:18:40 -0800446
447 // Send the new window size as human-readable ASCII for debugging convenience.
448 size_t l = snprintf(shell->data(), shell->data_capacity(), "%dx%d,%dx%d",
449 ws.ws_row, ws.ws_col, ws.ws_xpixel, ws.ws_ypixel);
450 shell->Write(ShellProtocol::kIdWindowSizeChange, l + 1);
Elliott Hughesa8265792015-11-03 11:18:40 -0800451}
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -0800452
David Pursell8a5a5aa2015-09-08 17:17:02 -0700453// Used to pass multiple values to the stdin read thread.
454struct StdinReadArgs {
455 int stdin_fd, write_fd;
David Pursell3fe11f62015-10-06 15:30:03 -0700456 bool raw_stdin;
David Pursell8a5a5aa2015-09-08 17:17:02 -0700457 std::unique_ptr<ShellProtocol> protocol;
Elliott Hughes4cf6f102015-11-04 13:36:32 -0800458 char escape_char;
David Pursell8a5a5aa2015-09-08 17:17:02 -0700459};
460
David Pursell8a5a5aa2015-09-08 17:17:02 -0700461// Loops to read from stdin and push the data to the given FD.
462// The argument should be a pointer to a StdinReadArgs object. This function
463// will take ownership of the object and delete it when finished.
Josh Gao382ea6e2016-02-12 14:31:15 -0800464static void stdin_read_thread_loop(void* x) {
David Pursell8a5a5aa2015-09-08 17:17:02 -0700465 std::unique_ptr<StdinReadArgs> args(reinterpret_cast<StdinReadArgs*>(x));
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -0800466
Elliott Hughesa8265792015-11-03 11:18:40 -0800467#if !defined(_WIN32)
468 // Mask SIGTTIN in case we're in a backgrounded process.
Josh Gaof344ecf2015-10-23 15:03:31 -0700469 sigset_t sigset;
470 sigemptyset(&sigset);
471 sigaddset(&sigset, SIGTTIN);
472 pthread_sigmask(SIG_BLOCK, &sigset, nullptr);
473#endif
474
Spencer Low55441402015-11-07 17:34:39 -0800475#if defined(_WIN32)
476 // _get_interesting_input_record_uncached() causes unix_read_interruptible()
477 // to return -1 with errno == EINTR if the window size changes.
478#else
Elliott Hughesa8265792015-11-03 11:18:40 -0800479 // Unblock SIGWINCH for this thread, so our read(2) below will be
480 // interrupted if the window size changes.
481 sigset_t mask;
482 sigemptyset(&mask);
483 sigaddset(&mask, SIGWINCH);
484 pthread_sigmask(SIG_UNBLOCK, &mask, nullptr);
485#endif
486
487 // Set up the initial window size.
488 send_window_size_change(args->stdin_fd, args->protocol);
489
Elliott Hughes4cf6f102015-11-04 13:36:32 -0800490 char raw_buffer[BUFSIZ];
David Pursell8a5a5aa2015-09-08 17:17:02 -0700491 char* buffer_ptr = raw_buffer;
492 size_t buffer_size = sizeof(raw_buffer);
Elliott Hughesa8265792015-11-03 11:18:40 -0800493 if (args->protocol != nullptr) {
David Pursell8a5a5aa2015-09-08 17:17:02 -0700494 buffer_ptr = args->protocol->data();
495 buffer_size = args->protocol->data_capacity();
496 }
497
Elliott Hughes4cf6f102015-11-04 13:36:32 -0800498 // If we need to parse escape sequences, make life easy.
499 if (args->raw_stdin && args->escape_char != '\0') {
500 buffer_size = 1;
501 }
502
503 enum EscapeState { kMidFlow, kStartOfLine, kInEscape };
504 EscapeState state = kStartOfLine;
505
Elliott Hughesb628cb12015-08-03 10:38:08 -0700506 while (true) {
Spencer Low55441402015-11-07 17:34:39 -0800507 // Use unix_read_interruptible() rather than adb_read() for stdin.
508 D("stdin_read_thread_loop(): pre unix_read_interruptible(fdi=%d,...)", args->stdin_fd);
509 int r = unix_read_interruptible(args->stdin_fd, buffer_ptr,
510 buffer_size);
Elliott Hughesa8265792015-11-03 11:18:40 -0800511 if (r == -1 && errno == EINTR) {
512 send_window_size_change(args->stdin_fd, args->protocol);
513 continue;
514 }
Spencer Low55441402015-11-07 17:34:39 -0800515 D("stdin_read_thread_loop(): post unix_read_interruptible(fdi=%d,...)", args->stdin_fd);
David Pursell3fe11f62015-10-06 15:30:03 -0700516 if (r <= 0) {
517 // Only devices using the shell protocol know to close subprocess
518 // stdin. For older devices we want to just leave the connection
519 // open, otherwise an unpredictable amount of return data could
520 // be lost due to the FD closing before all data has been received.
521 if (args->protocol) {
522 args->protocol->Write(ShellProtocol::kIdCloseStdin, 0);
523 }
524 break;
525 }
Elliott Hughes4cf6f102015-11-04 13:36:32 -0800526 // If we made stdin raw, check input for escape sequences. In
David Pursell3fe11f62015-10-06 15:30:03 -0700527 // this situation signals like Ctrl+C are sent remotely rather than
528 // interpreted locally so this provides an emergency out if the remote
529 // process starts ignoring the signal. SSH also does this, see the
530 // "escape characters" section on the ssh man page for more info.
Elliott Hughes4cf6f102015-11-04 13:36:32 -0800531 if (args->raw_stdin && args->escape_char != '\0') {
532 char ch = buffer_ptr[0];
533 if (ch == args->escape_char) {
534 if (state == kStartOfLine) {
535 state = kInEscape;
536 // Swallow the escape character.
537 continue;
538 } else {
539 state = kMidFlow;
540 }
541 } else {
542 if (state == kInEscape) {
543 if (ch == '.') {
544 fprintf(stderr,"\r\n[ disconnected ]\r\n");
Elliott Hughesa8265792015-11-03 11:18:40 -0800545 stdin_raw_restore();
David Pursell3fe11f62015-10-06 15:30:03 -0700546 exit(0);
Elliott Hughes4cf6f102015-11-04 13:36:32 -0800547 } else {
548 // We swallowed an escape character that wasn't part of
549 // a valid escape sequence; time to cough it up.
550 buffer_ptr[0] = args->escape_char;
551 buffer_ptr[1] = ch;
552 ++r;
David Pursell3fe11f62015-10-06 15:30:03 -0700553 }
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -0800554 }
Elliott Hughes4cf6f102015-11-04 13:36:32 -0800555 state = (ch == '\n' || ch == '\r') ? kStartOfLine : kMidFlow;
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -0800556 }
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -0800557 }
David Pursell8a5a5aa2015-09-08 17:17:02 -0700558 if (args->protocol) {
559 if (!args->protocol->Write(ShellProtocol::kIdStdin, r)) {
560 break;
561 }
562 } else {
563 if (!WriteFdExactly(args->write_fd, buffer_ptr, r)) {
564 break;
565 }
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -0800566 }
567 }
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -0800568}
569
David Pursell3fe11f62015-10-06 15:30:03 -0700570// Returns a shell service string with the indicated arguments and command.
571static std::string ShellServiceString(bool use_shell_protocol,
572 const std::string& type_arg,
573 const std::string& command) {
574 std::vector<std::string> args;
575 if (use_shell_protocol) {
576 args.push_back(kShellServiceArgShellProtocol);
Elliott Hughes401847e2015-11-18 12:45:48 -0800577
578 const char* terminal_type = getenv("TERM");
579 if (terminal_type != nullptr) {
580 args.push_back(std::string("TERM=") + terminal_type);
581 }
David Pursell3fe11f62015-10-06 15:30:03 -0700582 }
583 if (!type_arg.empty()) {
584 args.push_back(type_arg);
585 }
586
587 // Shell service string can look like: shell[,arg1,arg2,...]:[command].
588 return android::base::StringPrintf("shell%s%s:%s",
589 args.empty() ? "" : ",",
590 android::base::Join(args, ',').c_str(),
591 command.c_str());
592}
593
594// Connects to a shell on the device and read/writes data.
595//
596// Note: currently this function doesn't properly clean up resources; the
597// FD connected to the adb server is never closed and the stdin read thread
598// may never exit.
599//
600// On success returns the remote exit code if |use_shell_protocol| is true,
601// 0 otherwise. On failure returns 1.
602static int RemoteShell(bool use_shell_protocol, const std::string& type_arg,
Elliott Hughes4cf6f102015-11-04 13:36:32 -0800603 char escape_char,
David Pursell3fe11f62015-10-06 15:30:03 -0700604 const std::string& command) {
605 std::string service_string = ShellServiceString(use_shell_protocol,
606 type_arg, command);
607
608 // Make local stdin raw if the device allocates a PTY, which happens if:
609 // 1. We are explicitly asking for a PTY shell, or
610 // 2. We don't specify shell type and are starting an interactive session.
611 bool raw_stdin = (type_arg == kShellServiceArgPty ||
612 (type_arg.empty() && command.empty()));
613
Elliott Hughes04a98c22015-04-29 08:35:59 -0700614 std::string error;
David Pursella07dbad2015-09-22 10:43:08 -0700615 int fd = adb_connect(service_string, &error);
Elliott Hughes04a98c22015-04-29 08:35:59 -0700616 if (fd < 0) {
617 fprintf(stderr,"error: %s\n", error.c_str());
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -0800618 return 1;
619 }
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -0800620
David Pursell8a5a5aa2015-09-08 17:17:02 -0700621 StdinReadArgs* args = new StdinReadArgs;
622 if (!args) {
623 LOG(ERROR) << "couldn't allocate StdinReadArgs object";
Elliott Hughesd0269c92015-04-21 19:39:52 -0700624 return 1;
625 }
David Pursell3fe11f62015-10-06 15:30:03 -0700626 args->stdin_fd = STDIN_FILENO;
David Pursell8a5a5aa2015-09-08 17:17:02 -0700627 args->write_fd = fd;
David Pursell3fe11f62015-10-06 15:30:03 -0700628 args->raw_stdin = raw_stdin;
Elliott Hughes4cf6f102015-11-04 13:36:32 -0800629 args->escape_char = escape_char;
David Pursell8a5a5aa2015-09-08 17:17:02 -0700630 if (use_shell_protocol) {
631 args->protocol.reset(new ShellProtocol(args->write_fd));
632 }
Elliott Hughesd0269c92015-04-21 19:39:52 -0700633
Elliott Hughesa8265792015-11-03 11:18:40 -0800634 if (raw_stdin) stdin_raw_init();
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -0800635
Elliott Hughesa8265792015-11-03 11:18:40 -0800636#if !defined(_WIN32)
637 // Ensure our process is notified if the local window size changes.
638 // We use sigaction(2) to ensure that the SA_RESTART flag is not set,
639 // because the whole reason we're sending signals is to unblock the read(2)!
640 // That also means we don't need to do anything in the signal handler:
641 // the side effect of delivering the signal is all we need.
642 struct sigaction sa;
643 memset(&sa, 0, sizeof(sa));
644 sa.sa_handler = [](int) {};
645 sa.sa_flags = 0;
646 sigaction(SIGWINCH, &sa, nullptr);
647
648 // Now block SIGWINCH in this thread (the main thread) and all threads spawned
649 // from it. The stdin read thread will unblock this signal to ensure that it's
650 // the thread that receives the signal.
651 sigset_t mask;
652 sigemptyset(&mask);
653 sigaddset(&mask, SIGWINCH);
654 pthread_sigmask(SIG_BLOCK, &mask, nullptr);
655#endif
656
657 // TODO: combine read_and_dump with stdin_read_thread to make life simpler?
Josh Gao0f3312a2017-04-12 17:00:49 -0700658 std::thread(stdin_read_thread_loop, args).detach();
659 int exit_code = read_and_dump(fd, use_shell_protocol);
Elliott Hughesf2517142015-05-05 13:41:21 -0700660
Elliott Hughesa8265792015-11-03 11:18:40 -0800661 // TODO: properly exit stdin_read_thread_loop and close |fd|.
David Pursell3fe11f62015-10-06 15:30:03 -0700662
Elliott Hughesa8265792015-11-03 11:18:40 -0800663 // TODO: we should probably install signal handlers for this.
664 // TODO: can we use atexit? even on Windows?
665 if (raw_stdin) stdin_raw_restore();
David Pursell3fe11f62015-10-06 15:30:03 -0700666
David Pursell8a5a5aa2015-09-08 17:17:02 -0700667 return exit_code;
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -0800668}
669
Josh Gao91d53b52016-01-31 19:12:26 -0800670static int adb_shell(int argc, const char** argv) {
David Pursell9650d862016-01-21 19:56:50 -0800671 FeatureSet features;
Josh Gao91d53b52016-01-31 19:12:26 -0800672 std::string error;
Josh Gao91d53b52016-01-31 19:12:26 -0800673 if (!adb_get_feature_set(&features, &error)) {
674 fprintf(stderr, "error: %s\n", error.c_str());
David Pursell9650d862016-01-21 19:56:50 -0800675 return 1;
676 }
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -0800677
Elliott Hughes02e33782016-10-19 14:47:11 -0700678 enum PtyAllocationMode { kPtyAuto, kPtyNo, kPtyYes, kPtyDefinitely };
679
680 // Defaults.
681 char escape_char = '~'; // -e
682 bool use_shell_protocol = CanUseFeature(features, kFeatureShell2); // -x
683 PtyAllocationMode tty = use_shell_protocol ? kPtyAuto : kPtyDefinitely; // -t/-T
Elliott Hughesda945812015-04-29 12:28:13 -0700684
Elliott Hughesa8265792015-11-03 11:18:40 -0800685 // Parse shell-specific command-line options.
Elliott Hughes02e33782016-10-19 14:47:11 -0700686 argv[0] = "adb shell"; // So getopt(3) error messages start "adb shell".
687 optind = 1; // argv[0] is always "shell", so set `optind` appropriately.
688 int opt;
689 while ((opt = getopt(argc, const_cast<char**>(argv), "+e:ntTx")) != -1) {
690 switch (opt) {
691 case 'e':
692 if (!(strlen(optarg) == 1 || strcmp(optarg, "none") == 0)) {
693 fprintf(stderr, "error: -e requires a single-character argument or 'none'\n");
694 return 1;
695 }
696 escape_char = (strcmp(optarg, "none") == 0) ? 0 : optarg[0];
697 break;
698 case 'n':
699 close_stdin();
700 break;
701 case 'x':
702 // This option basically asks for historical behavior, so set options that
703 // correspond to the historical defaults. This is slightly weird in that -Tx
704 // is fine (because we'll undo the -T) but -xT isn't, but that does seem to
705 // be our least worst choice...
706 use_shell_protocol = false;
707 tty = kPtyDefinitely;
708 escape_char = '~';
709 break;
710 case 't':
711 // Like ssh, -t arguments are cumulative so that multiple -t's
712 // are needed to force a PTY.
713 tty = (tty >= kPtyYes) ? kPtyDefinitely : kPtyYes;
714 break;
715 case 'T':
716 tty = kPtyNo;
717 break;
718 default:
719 // getopt(3) already printed an error message for us.
Elliott Hughes4cf6f102015-11-04 13:36:32 -0800720 return 1;
Elliott Hughesa8265792015-11-03 11:18:40 -0800721 }
Elliott Hughesda945812015-04-29 12:28:13 -0700722 }
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -0800723
Elliott Hughes02e33782016-10-19 14:47:11 -0700724 bool is_interactive = (optind == argc);
David Pursell182dc322016-01-27 16:07:52 -0800725
Elliott Hughes02e33782016-10-19 14:47:11 -0700726 std::string shell_type_arg = kShellServiceArgPty;
727 if (tty == kPtyNo) {
728 shell_type_arg = kShellServiceArgRaw;
729 } else if (tty == kPtyAuto) {
730 // If stdin isn't a TTY, default to a raw shell; this lets
731 // things like `adb shell < my_script.sh` work as expected.
732 // Non-interactive shells should also not have a pty.
733 if (!unix_isatty(STDIN_FILENO) || !is_interactive) {
Elliott Hughesa8265792015-11-03 11:18:40 -0800734 shell_type_arg = kShellServiceArgRaw;
Elliott Hughes02e33782016-10-19 14:47:11 -0700735 }
736 } else if (tty == kPtyYes) {
737 // A single -t arg isn't enough to override implicit -T.
738 if (!unix_isatty(STDIN_FILENO)) {
739 fprintf(stderr,
740 "Remote PTY will not be allocated because stdin is not a terminal.\n"
741 "Use multiple -t options to force remote PTY allocation.\n");
742 shell_type_arg = kShellServiceArgRaw;
743 }
744 }
745
746 D("shell -e 0x%x t=%d use_shell_protocol=%s shell_type_arg=%s\n",
747 escape_char, tty,
748 use_shell_protocol ? "true" : "false",
749 (shell_type_arg == kShellServiceArgPty) ? "pty" : "raw");
750
751 // Raw mode is only supported when talking to a new device *and* using the shell protocol.
752 if (!use_shell_protocol) {
753 if (shell_type_arg != kShellServiceArgPty) {
754 fprintf(stderr, "error: %s only supports allocating a pty\n",
755 !CanUseFeature(features, kFeatureShell2) ? "device" : "-x");
756 return 1;
Elliott Hughesa8265792015-11-03 11:18:40 -0800757 } else {
Elliott Hughes02e33782016-10-19 14:47:11 -0700758 // If we're not using the shell protocol, the type argument must be empty.
759 shell_type_arg = "";
Elliott Hughesa8265792015-11-03 11:18:40 -0800760 }
David Purselle570b982015-09-14 15:33:50 -0700761 }
Elliott Hughesa8265792015-11-03 11:18:40 -0800762
763 std::string command;
Elliott Hughes02e33782016-10-19 14:47:11 -0700764 if (optind < argc) {
Elliott Hughesa8265792015-11-03 11:18:40 -0800765 // We don't escape here, just like ssh(1). http://b/20564385.
Elliott Hughes02e33782016-10-19 14:47:11 -0700766 command = android::base::Join(std::vector<const char*>(argv + optind, argv + argc), ' ');
Elliott Hughesa8265792015-11-03 11:18:40 -0800767 }
768
Elliott Hughes4cf6f102015-11-04 13:36:32 -0800769 return RemoteShell(use_shell_protocol, shell_type_arg, escape_char, command);
David Purselle570b982015-09-14 15:33:50 -0700770}
771
Elliott Hughes96038eb2017-03-21 17:14:18 -0700772static int adb_download_buffer(const char* service, const char* filename) {
773 std::string content;
774 if (!android::base::ReadFileToString(filename, &content)) {
775 fprintf(stderr, "error: couldn't read %s: %s\n", filename, strerror(errno));
776 return -1;
777 }
778
779 const uint8_t* data = reinterpret_cast<const uint8_t*>(content.data());
780 unsigned sz = content.size();
781
Elliott Hughes04a98c22015-04-29 08:35:59 -0700782 std::string error;
Elliott Hughesda945812015-04-29 12:28:13 -0700783 int fd = adb_connect(android::base::StringPrintf("%s:%d", service, sz), &error);
Elliott Hughes04a98c22015-04-29 08:35:59 -0700784 if (fd < 0) {
785 fprintf(stderr,"error: %s\n", error.c_str());
Doug Zongker6b217ed2012-01-09 14:54:53 -0800786 return -1;
787 }
788
789 int opt = CHUNK_SIZE;
Spencer Low31aafa62015-01-25 14:40:16 -0800790 opt = adb_setsockopt(fd, SOL_SOCKET, SO_SNDBUF, (const void *) &opt, sizeof(opt));
Doug Zongker6b217ed2012-01-09 14:54:53 -0800791
Elliott Hughesda945812015-04-29 12:28:13 -0700792 unsigned total = sz;
Dan Albertf30d73c2015-02-25 17:51:28 -0800793 const uint8_t* ptr = reinterpret_cast<const uint8_t*>(data);
Doug Zongker6b217ed2012-01-09 14:54:53 -0800794
Elliott Hughes96038eb2017-03-21 17:14:18 -0700795 const char* x = strrchr(service, ':');
796 if (x) service = x + 1;
Doug Zongker6b217ed2012-01-09 14:54:53 -0800797
Elliott Hughesda945812015-04-29 12:28:13 -0700798 while (sz > 0) {
Doug Zongker6b217ed2012-01-09 14:54:53 -0800799 unsigned xfer = (sz > CHUNK_SIZE) ? CHUNK_SIZE : sz;
Elliott Hughes04a98c22015-04-29 08:35:59 -0700800 if (!WriteFdExactly(fd, ptr, xfer)) {
801 std::string error;
802 adb_status(fd, &error);
803 fprintf(stderr,"* failed to write data '%s' *\n", error.c_str());
Spencer Lowcc4a4b12015-10-14 17:32:44 -0700804 adb_close(fd);
Doug Zongker6b217ed2012-01-09 14:54:53 -0800805 return -1;
806 }
807 sz -= xfer;
808 ptr += xfer;
Elliott Hughes96038eb2017-03-21 17:14:18 -0700809 printf("sending: '%s' %4d%% \r", filename, (int)(100LL - ((100LL * sz) / (total))));
810 fflush(stdout);
Doug Zongker6b217ed2012-01-09 14:54:53 -0800811 }
Elliott Hughes96038eb2017-03-21 17:14:18 -0700812 printf("\n");
Doug Zongker6b217ed2012-01-09 14:54:53 -0800813
Elliott Hughes88b4c852015-04-30 17:32:03 -0700814 if (!adb_status(fd, &error)) {
815 fprintf(stderr,"* error response '%s' *\n", error.c_str());
Spencer Lowcc4a4b12015-10-14 17:32:44 -0700816 adb_close(fd);
Doug Zongker6b217ed2012-01-09 14:54:53 -0800817 return -1;
818 }
819
820 adb_close(fd);
821 return 0;
822}
823
Doug Zongkerbcad29f2014-06-26 15:35:36 -0700824#define SIDELOAD_HOST_BLOCK_SIZE (CHUNK_SIZE)
825
826/*
827 * The sideload-host protocol serves the data in a file (given on the
828 * command line) to the client, using a simple protocol:
829 *
830 * - The connect message includes the total number of bytes in the
831 * file and a block size chosen by us.
832 *
833 * - The other side sends the desired block number as eight decimal
834 * digits (eg "00000023" for block 23). Blocks are numbered from
835 * zero.
836 *
837 * - We send back the data of the requested block. The last block is
838 * likely to be partial; when the last block is requested we only
839 * send the part of the block that exists, it's not padded up to the
840 * block size.
841 *
842 * - When the other side sends "DONEDONE" instead of a block number,
843 * we hang up.
844 */
Elliott Hughes96038eb2017-03-21 17:14:18 -0700845static int adb_sideload_host(const char* filename) {
846 fprintf(stderr, "opening '%s'...\n", filename);
847 struct stat sb;
848 if (stat(filename, &sb) == -1) {
849 fprintf(stderr, "failed to stat file %s: %s\n", filename, strerror(errno));
850 return -1;
851 }
852 unique_fd package_fd(adb_open(filename, O_RDONLY));
853 if (package_fd == -1) {
854 fprintf(stderr, "failed to open file %s: %s\n", filename, strerror(errno));
Doug Zongkerbcad29f2014-06-26 15:35:36 -0700855 return -1;
856 }
857
Elliott Hughes74d8e612016-06-15 14:45:34 -0700858 fprintf(stderr, "connecting...\n");
Elliott Hughes96038eb2017-03-21 17:14:18 -0700859 std::string service = android::base::StringPrintf(
860 "sideload-host:%d:%d", static_cast<int>(sb.st_size), SIDELOAD_HOST_BLOCK_SIZE);
Elliott Hughes04a98c22015-04-29 08:35:59 -0700861 std::string error;
Elliott Hughes96038eb2017-03-21 17:14:18 -0700862 unique_fd device_fd(adb_connect(service, &error));
863 if (device_fd < 0) {
864 // Try falling back to the older (<= K) sideload method. Maybe this
Doug Zongkerbcad29f2014-06-26 15:35:36 -0700865 // is an older device that doesn't support sideload-host.
Elliott Hughes74d8e612016-06-15 14:45:34 -0700866 fprintf(stderr, "falling back to older sideload method...\n");
Elliott Hughes96038eb2017-03-21 17:14:18 -0700867 return adb_download_buffer("sideload", filename);
Doug Zongkerbcad29f2014-06-26 15:35:36 -0700868 }
869
Elliott Hughese0a6e2a2016-05-26 22:43:19 -0700870 int opt = SIDELOAD_HOST_BLOCK_SIZE;
Elliott Hughes96038eb2017-03-21 17:14:18 -0700871 adb_setsockopt(device_fd, SOL_SOCKET, SO_SNDBUF, &opt, sizeof(opt));
872
873 char buf[SIDELOAD_HOST_BLOCK_SIZE];
Doug Zongkerbcad29f2014-06-26 15:35:36 -0700874
Elliott Hughese0a6e2a2016-05-26 22:43:19 -0700875 size_t xfer = 0;
876 int last_percent = -1;
Elliott Hughes7cf35752015-04-17 17:03:59 -0700877 while (true) {
Elliott Hughes96038eb2017-03-21 17:14:18 -0700878 if (!ReadFdExactly(device_fd, buf, 8)) {
Elliott Hughes04a98c22015-04-29 08:35:59 -0700879 fprintf(stderr, "* failed to read command: %s\n", strerror(errno));
Elliott Hughese0a6e2a2016-05-26 22:43:19 -0700880 return -1;
Doug Zongkerbcad29f2014-06-26 15:35:36 -0700881 }
Elliott Hughesda945812015-04-29 12:28:13 -0700882 buf[8] = '\0';
Doug Zongkerbcad29f2014-06-26 15:35:36 -0700883
Elliott Hughesda945812015-04-29 12:28:13 -0700884 if (strcmp("DONEDONE", buf) == 0) {
Elliott Hughese0a6e2a2016-05-26 22:43:19 -0700885 printf("\rTotal xfer: %.2fx%*s\n",
Elliott Hughes96038eb2017-03-21 17:14:18 -0700886 static_cast<double>(xfer) / (sb.st_size ? sb.st_size : 1),
887 static_cast<int>(strlen(filename) + 10), "");
Elliott Hughese0a6e2a2016-05-26 22:43:19 -0700888 return 0;
Doug Zongkerbcad29f2014-06-26 15:35:36 -0700889 }
890
Doug Zongkerbcad29f2014-06-26 15:35:36 -0700891 int block = strtol(buf, NULL, 10);
892
893 size_t offset = block * SIDELOAD_HOST_BLOCK_SIZE;
Elliott Hughes96038eb2017-03-21 17:14:18 -0700894 if (offset >= static_cast<size_t>(sb.st_size)) {
Elliott Hughes04a98c22015-04-29 08:35:59 -0700895 fprintf(stderr, "* attempt to read block %d past end\n", block);
Elliott Hughese0a6e2a2016-05-26 22:43:19 -0700896 return -1;
Doug Zongkerbcad29f2014-06-26 15:35:36 -0700897 }
Elliott Hughes96038eb2017-03-21 17:14:18 -0700898
Doug Zongkerbcad29f2014-06-26 15:35:36 -0700899 size_t to_write = SIDELOAD_HOST_BLOCK_SIZE;
Elliott Hughes96038eb2017-03-21 17:14:18 -0700900 if ((offset + SIDELOAD_HOST_BLOCK_SIZE) > static_cast<size_t>(sb.st_size)) {
901 to_write = sb.st_size - offset;
Doug Zongkerbcad29f2014-06-26 15:35:36 -0700902 }
903
Elliott Hughes96038eb2017-03-21 17:14:18 -0700904 if (adb_lseek(package_fd, offset, SEEK_SET) != static_cast<int>(offset)) {
905 fprintf(stderr, "* failed to seek to package block: %s\n", strerror(errno));
906 return -1;
907 }
908 if (!ReadFdExactly(package_fd, buf, to_write)) {
909 fprintf(stderr, "* failed to read package block: %s\n", strerror(errno));
910 return -1;
911 }
912
913 if (!WriteFdExactly(device_fd, buf, to_write)) {
914 adb_status(device_fd, &error);
Elliott Hughes04a98c22015-04-29 08:35:59 -0700915 fprintf(stderr,"* failed to write data '%s' *\n", error.c_str());
Elliott Hughese0a6e2a2016-05-26 22:43:19 -0700916 return -1;
Doug Zongkerbcad29f2014-06-26 15:35:36 -0700917 }
918 xfer += to_write;
919
920 // For normal OTA packages, we expect to transfer every byte
921 // twice, plus a bit of overhead (one read during
922 // verification, one read of each byte for installation, plus
923 // extra access to things like the zip central directory).
924 // This estimate of the completion becomes 100% when we've
925 // transferred ~2.13 (=100/47) times the package size.
Elliott Hughes96038eb2017-03-21 17:14:18 -0700926 int percent = static_cast<int>(xfer * 47LL / (sb.st_size ? sb.st_size : 1));
Doug Zongkerbcad29f2014-06-26 15:35:36 -0700927 if (percent != last_percent) {
Elliott Hughes96038eb2017-03-21 17:14:18 -0700928 printf("\rserving: '%s' (~%d%%) ", filename, percent);
Doug Zongkerbcad29f2014-06-26 15:35:36 -0700929 fflush(stdout);
930 last_percent = percent;
931 }
932 }
Doug Zongkerbcad29f2014-06-26 15:35:36 -0700933}
934
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -0800935/**
936 * Run ppp in "notty" mode against a resource listed as the first parameter
937 * eg:
938 *
939 * ppp dev:/dev/omap_csmi_tty0 <ppp options>
940 *
941 */
Elliott Hughes38104452015-04-17 13:57:15 -0700942static int ppp(int argc, const char** argv) {
Yabin Cui2fa43212014-11-11 09:24:11 -0800943#if defined(_WIN32)
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -0800944 fprintf(stderr, "error: adb %s not implemented on Win32\n", argv[0]);
945 return -1;
946#else
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -0800947 if (argc < 2) {
948 fprintf(stderr, "usage: adb %s <adb service name> [ppp opts]\n",
949 argv[0]);
950
951 return 1;
952 }
953
Dan Albertf30d73c2015-02-25 17:51:28 -0800954 const char* adb_service_name = argv[1];
Elliott Hughes04a98c22015-04-29 08:35:59 -0700955 std::string error;
956 int fd = adb_connect(adb_service_name, &error);
957 if (fd < 0) {
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -0800958 fprintf(stderr,"Error: Could not open adb service: %s. Error: %s\n",
Elliott Hughes04a98c22015-04-29 08:35:59 -0700959 adb_service_name, error.c_str());
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -0800960 return 1;
961 }
962
Elliott Hughes04a98c22015-04-29 08:35:59 -0700963 pid_t pid = fork();
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -0800964
965 if (pid < 0) {
966 perror("from fork()");
967 return 1;
968 } else if (pid == 0) {
969 int err;
970 int i;
971 const char **ppp_args;
972
973 // copy args
974 ppp_args = (const char **) alloca(sizeof(char *) * argc + 1);
975 ppp_args[0] = "pppd";
976 for (i = 2 ; i < argc ; i++) {
977 //argv[2] and beyond become ppp_args[1] and beyond
978 ppp_args[i - 1] = argv[i];
979 }
980 ppp_args[i-1] = NULL;
981
982 // child side
983
984 dup2(fd, STDIN_FILENO);
985 dup2(fd, STDOUT_FILENO);
986 adb_close(STDERR_FILENO);
987 adb_close(fd);
988
989 err = execvp("pppd", (char * const *)ppp_args);
990
991 if (err < 0) {
992 perror("execing pppd");
993 }
994 exit(-1);
995 } else {
996 // parent side
997
998 adb_close(fd);
999 return 0;
1000 }
Yabin Cui2fa43212014-11-11 09:24:11 -08001001#endif /* !defined(_WIN32) */
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -08001002}
1003
Josh Gao63cede32016-04-13 12:14:16 -07001004static bool wait_for_device(const char* service, TransportType t, const char* serial) {
1005 std::vector<std::string> components = android::base::Split(service, "-");
1006 if (components.size() < 3 || components.size() > 4) {
Leo Sartre6cd9bc32015-11-27 18:56:48 +01001007 fprintf(stderr, "adb: couldn't parse 'wait-for' command: %s\n", service);
1008 return false;
1009 }
1010
Elliott Hugheseaabdd62015-05-04 19:29:32 -07001011 // Was the caller vague about what they'd like us to wait for?
1012 // If so, check they weren't more specific in their choice of transport type.
Josh Gao63cede32016-04-13 12:14:16 -07001013 if (components.size() == 3) {
1014 auto it = components.begin() + 2;
Elliott Hugheseaabdd62015-05-04 19:29:32 -07001015 if (t == kTransportUsb) {
Josh Gao63cede32016-04-13 12:14:16 -07001016 components.insert(it, "usb");
Elliott Hugheseaabdd62015-05-04 19:29:32 -07001017 } else if (t == kTransportLocal) {
Josh Gao63cede32016-04-13 12:14:16 -07001018 components.insert(it, "local");
Elliott Hugheseaabdd62015-05-04 19:29:32 -07001019 } else {
Josh Gao63cede32016-04-13 12:14:16 -07001020 components.insert(it, "any");
Elliott Hugheseaabdd62015-05-04 19:29:32 -07001021 }
Josh Gao63cede32016-04-13 12:14:16 -07001022 } else if (components[2] != "any" && components[2] != "local" && components[2] != "usb") {
1023 fprintf(stderr, "adb: unknown type %s; expected 'any', 'local', or 'usb'\n",
1024 components[2].c_str());
Leo Sartre6cd9bc32015-11-27 18:56:48 +01001025 return false;
1026 }
1027
Josh Gao071328d2016-04-13 12:18:58 -07001028 if (components[3] != "any" && components[3] != "bootloader" && components[3] != "device" &&
1029 components[3] != "recovery" && components[3] != "sideload") {
Josh Gao63cede32016-04-13 12:14:16 -07001030 fprintf(stderr,
1031 "adb: unknown state %s; "
Josh Gao071328d2016-04-13 12:18:58 -07001032 "expected 'any', 'bootloader', 'device', 'recovery', or 'sideload'\n",
Josh Gao63cede32016-04-13 12:14:16 -07001033 components[3].c_str());
1034 return false;
1035 }
1036
1037 std::string cmd = format_host_command(android::base::Join(components, "-").c_str(), t, serial);
Elliott Hughesd98ca8a2015-05-29 17:55:19 -07001038 return adb_command(cmd);
Elliott Hugheseaabdd62015-05-04 19:29:32 -07001039}
1040
Josh Gaod1d03392016-03-04 15:16:18 -08001041static bool adb_root(const char* command) {
1042 std::string error;
Josh Gaod1d03392016-03-04 15:16:18 -08001043
Elliott Hughese0a6e2a2016-05-26 22:43:19 -07001044 unique_fd fd(adb_connect(android::base::StringPrintf("%s:", command), &error));
1045 if (fd < 0) {
Josh Gaod1d03392016-03-04 15:16:18 -08001046 fprintf(stderr, "adb: unable to connect for %s: %s\n", command, error.c_str());
1047 return false;
1048 }
1049
1050 // Figure out whether we actually did anything.
1051 char buf[256];
1052 char* cur = buf;
1053 ssize_t bytes_left = sizeof(buf);
1054 while (bytes_left > 0) {
Elliott Hughese0a6e2a2016-05-26 22:43:19 -07001055 ssize_t bytes_read = adb_read(fd, cur, bytes_left);
Josh Gaod1d03392016-03-04 15:16:18 -08001056 if (bytes_read == 0) {
1057 break;
1058 } else if (bytes_read < 0) {
1059 fprintf(stderr, "adb: error while reading for %s: %s\n", command, strerror(errno));
1060 return false;
1061 }
1062 cur += bytes_read;
1063 bytes_left -= bytes_read;
1064 }
1065
1066 if (bytes_left == 0) {
1067 fprintf(stderr, "adb: unexpected output length for %s\n", command);
1068 return false;
1069 }
1070
1071 fflush(stdout);
1072 WriteFdExactly(STDOUT_FILENO, buf, sizeof(buf) - bytes_left);
1073 if (cur != buf && strstr(buf, "restarting") == nullptr) {
1074 return true;
1075 }
1076
Josh Gaod3d9cbf2016-06-16 14:00:09 -07001077 // Give adbd some time to kill itself and come back up.
1078 // We can't use wait-for-device because devices (e.g. adb over network) might not come back.
Josh Gao70267e42016-11-15 18:55:47 -08001079 std::this_thread::sleep_for(3s);
Josh Gaod3d9cbf2016-06-16 14:00:09 -07001080 return true;
Josh Gaod1d03392016-03-04 15:16:18 -08001081}
1082
Felipe Leme042c3512016-07-19 17:07:22 -07001083int send_shell_command(TransportType transport_type, const char* serial, const std::string& command,
Felipe Leme60192aa2016-07-26 12:14:39 -07001084 bool disable_shell_protocol, StandardStreamsCallbackInterface* callback) {
Elliott Hughes170b5682015-04-17 10:59:34 -07001085 int fd;
David Pursell9650d862016-01-21 19:56:50 -08001086 bool use_shell_protocol = false;
1087
Elliott Hughes170b5682015-04-17 10:59:34 -07001088 while (true) {
David Pursell9650d862016-01-21 19:56:50 -08001089 bool attempt_connection = true;
1090
Felipe Leme60192aa2016-07-26 12:14:39 -07001091 // Use shell protocol if it's supported and the caller doesn't explicitly
1092 // disable it.
David Pursell9650d862016-01-21 19:56:50 -08001093 if (!disable_shell_protocol) {
1094 FeatureSet features;
Josh Gao91d53b52016-01-31 19:12:26 -08001095 std::string error;
1096 if (adb_get_feature_set(&features, &error)) {
David Pursell9650d862016-01-21 19:56:50 -08001097 use_shell_protocol = CanUseFeature(features, kFeatureShell2);
1098 } else {
1099 // Device was unreachable.
1100 attempt_connection = false;
1101 }
Elliott Hughes04a98c22015-04-29 08:35:59 -07001102 }
David Pursell9650d862016-01-21 19:56:50 -08001103
1104 if (attempt_connection) {
1105 std::string error;
1106 std::string service_string = ShellServiceString(use_shell_protocol, "", command);
1107
1108 fd = adb_connect(service_string, &error);
1109 if (fd >= 0) {
1110 break;
1111 }
1112 }
1113
Felipe Leme60192aa2016-07-26 12:14:39 -07001114 fprintf(stderr, "- waiting for device -\n");
Josh Gao6a7e5732016-02-24 15:16:17 -08001115 if (!wait_for_device("wait-for-device", transport_type, serial)) {
1116 return 1;
1117 }
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -08001118 }
1119
Felipe Leme60192aa2016-07-26 12:14:39 -07001120 int exit_code = read_and_dump(fd, use_shell_protocol, callback);
David Purselle570b982015-09-14 15:33:50 -07001121
1122 if (adb_close(fd) < 0) {
1123 PLOG(ERROR) << "failure closing FD " << fd;
Elliott Hughes170b5682015-04-17 10:59:34 -07001124 }
David Purselle570b982015-09-14 15:33:50 -07001125
1126 return exit_code;
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -08001127}
1128
Elliott Hughes3aec2ba2015-05-05 13:10:43 -07001129static int logcat(TransportType transport, const char* serial, int argc, const char** argv) {
Elliott Hughes170b5682015-04-17 10:59:34 -07001130 char* log_tags = getenv("ANDROID_LOG_TAGS");
1131 std::string quoted = escape_arg(log_tags == nullptr ? "" : log_tags);
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -08001132
David Pursell22fc5e92015-09-30 13:35:42 -07001133 std::string cmd = "export ANDROID_LOG_TAGS=\"" + quoted + "\"; exec logcat";
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -08001134
Jeff Sharkey824d1062014-06-10 11:31:24 -07001135 if (!strcmp(argv[0], "longcat")) {
Elliott Hughes170b5682015-04-17 10:59:34 -07001136 cmd += " -v long";
Christopher Tate7b9b5162011-11-30 13:00:33 -08001137 }
1138
Elliott Hughese4b64792015-04-17 20:11:08 -07001139 --argc;
1140 ++argv;
Elliott Hughes170b5682015-04-17 10:59:34 -07001141 while (argc-- > 0) {
Elliott Hughese4b64792015-04-17 20:11:08 -07001142 cmd += " " + escape_arg(*argv++);
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -08001143 }
1144
David Pursell22fc5e92015-09-30 13:35:42 -07001145 // No need for shell protocol with logcat, always disable for simplicity.
1146 return send_shell_command(transport, serial, cmd, true);
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -08001147}
1148
Christopher Tatee0e9f562016-07-06 13:22:22 -07001149static void write_zeros(int bytes, int fd) {
1150 int old_stdin_mode = -1;
1151 int old_stdout_mode = -1;
1152 char* buf = (char*) calloc(1, bytes);
1153 if (buf == nullptr) fatal("couldn't allocate buffer for write_zeros");
1154
1155 D("write_zeros(%d) -> %d", bytes, fd);
1156
1157 stdinout_raw_prologue(-1, fd, old_stdin_mode, old_stdout_mode);
1158
1159 if (fd == STDOUT_FILENO) {
1160 fwrite(buf, 1, bytes, stdout);
1161 fflush(stdout);
1162 } else {
1163 adb_write(fd, buf, bytes);
1164 }
1165
1166 stdinout_raw_prologue(-1, fd, old_stdin_mode, old_stdout_mode);
1167
1168 D("write_zeros() finished");
1169 free(buf);
1170}
1171
Dan Albertf30d73c2015-02-25 17:51:28 -08001172static int backup(int argc, const char** argv) {
Elliott Hughes1c1f7dc2015-08-21 20:31:31 -07001173 const char* filename = "backup.ab";
Christopher Tate73779122011-04-21 12:53:28 -07001174
Christopher Tatefba22972011-06-01 17:56:23 -07001175 /* find, extract, and use any -f argument */
Elliott Hughese4b64792015-04-17 20:11:08 -07001176 for (int i = 1; i < argc; i++) {
Christopher Tatefba22972011-06-01 17:56:23 -07001177 if (!strcmp("-f", argv[i])) {
1178 if (i == argc-1) {
Elliott Hughes9406f7e2015-11-13 11:04:10 -08001179 fprintf(stderr, "adb: backup -f passed with no filename.\n");
1180 return EXIT_FAILURE;
Christopher Tatefba22972011-06-01 17:56:23 -07001181 }
1182 filename = argv[i+1];
Elliott Hughese4b64792015-04-17 20:11:08 -07001183 for (int j = i+2; j <= argc; ) {
Christopher Tatefba22972011-06-01 17:56:23 -07001184 argv[i++] = argv[j++];
1185 }
1186 argc -= 2;
1187 argv[argc] = NULL;
1188 }
Christopher Tate73779122011-04-21 12:53:28 -07001189 }
1190
Elliott Hughes9406f7e2015-11-13 11:04:10 -08001191 // Bare "adb backup" or "adb backup -f filename" are not valid invocations ---
1192 // a list of packages is required.
1193 if (argc < 2) {
1194 fprintf(stderr, "adb: backup either needs a list of packages or -all/-shared.\n");
1195 return EXIT_FAILURE;
1196 }
Christopher Tatecf4f16a2011-08-22 17:12:08 -07001197
Christopher Tate1e9f2392011-12-08 19:04:34 -08001198 adb_unlink(filename);
Elliott Hughese4b64792015-04-17 20:11:08 -07001199 int outFd = adb_creat(filename, 0640);
Christopher Tate73779122011-04-21 12:53:28 -07001200 if (outFd < 0) {
Elliott Hughes9406f7e2015-11-13 11:04:10 -08001201 fprintf(stderr, "adb: backup unable to create file '%s': %s\n", filename, strerror(errno));
1202 return EXIT_FAILURE;
Christopher Tate73779122011-04-21 12:53:28 -07001203 }
1204
Elliott Hughese4b64792015-04-17 20:11:08 -07001205 std::string cmd = "backup:";
1206 --argc;
1207 ++argv;
1208 while (argc-- > 0) {
1209 cmd += " " + escape_arg(*argv++);
Christopher Tate73779122011-04-21 12:53:28 -07001210 }
1211
Yabin Cui815ad882015-09-02 17:44:28 -07001212 D("backup. filename=%s cmd=%s", filename, cmd.c_str());
Elliott Hughes04a98c22015-04-29 08:35:59 -07001213 std::string error;
Elliott Hughesda945812015-04-29 12:28:13 -07001214 int fd = adb_connect(cmd, &error);
Christopher Tate73779122011-04-21 12:53:28 -07001215 if (fd < 0) {
Elliott Hughes04a98c22015-04-29 08:35:59 -07001216 fprintf(stderr, "adb: unable to connect for backup: %s\n", error.c_str());
Christopher Tate73779122011-04-21 12:53:28 -07001217 adb_close(outFd);
Elliott Hughes9406f7e2015-11-13 11:04:10 -08001218 return EXIT_FAILURE;
Christopher Tate73779122011-04-21 12:53:28 -07001219 }
1220
Elliott Hughes9406f7e2015-11-13 11:04:10 -08001221 printf("Now unlock your device and confirm the backup operation...\n");
1222 fflush(stdout);
1223
Christopher Tate73779122011-04-21 12:53:28 -07001224 copy_to_file(fd, outFd);
1225
1226 adb_close(fd);
1227 adb_close(outFd);
Elliott Hughes9406f7e2015-11-13 11:04:10 -08001228 return EXIT_SUCCESS;
Christopher Tate73779122011-04-21 12:53:28 -07001229}
1230
Dan Albertf30d73c2015-02-25 17:51:28 -08001231static int restore(int argc, const char** argv) {
Elliott Hughes97e74bb2017-02-06 16:20:30 -08001232 if (argc != 2) return usage("restore requires an argument");
Christopher Tatecf5379b2011-05-17 15:52:54 -07001233
Elliott Hughes04a98c22015-04-29 08:35:59 -07001234 const char* filename = argv[1];
1235 int tarFd = adb_open(filename, O_RDONLY);
Christopher Tatecf5379b2011-05-17 15:52:54 -07001236 if (tarFd < 0) {
Elliott Hughes04a98c22015-04-29 08:35:59 -07001237 fprintf(stderr, "adb: unable to open file %s: %s\n", filename, strerror(errno));
Christopher Tatecf5379b2011-05-17 15:52:54 -07001238 return -1;
1239 }
1240
Elliott Hughes04a98c22015-04-29 08:35:59 -07001241 std::string error;
1242 int fd = adb_connect("restore:", &error);
Christopher Tatecf5379b2011-05-17 15:52:54 -07001243 if (fd < 0) {
Elliott Hughes04a98c22015-04-29 08:35:59 -07001244 fprintf(stderr, "adb: unable to connect for restore: %s\n", error.c_str());
Christopher Tatecf5379b2011-05-17 15:52:54 -07001245 adb_close(tarFd);
1246 return -1;
1247 }
1248
Christopher Tate9c829102012-01-06 15:43:03 -08001249 printf("Now unlock your device and confirm the restore operation.\n");
Christopher Tatecf5379b2011-05-17 15:52:54 -07001250 copy_to_file(tarFd, fd);
1251
Christopher Tatee0e9f562016-07-06 13:22:22 -07001252 // Provide an in-band EOD marker in case the archive file is malformed
1253 write_zeros(512*2, fd);
1254
Josh Gao95230e82016-03-04 15:51:03 -08001255 // Wait until the other side finishes, or it'll get sent SIGHUP.
1256 copy_to_file(fd, STDOUT_FILENO);
1257
Christopher Tatecf5379b2011-05-17 15:52:54 -07001258 adb_close(fd);
1259 adb_close(tarFd);
1260 return 0;
1261}
1262
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -08001263/* <hint> may be:
1264 * - A simple product name
1265 * e.g., "sooner"
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -08001266 * - A relative path from the CWD to the ANDROID_PRODUCT_OUT dir
1267 * e.g., "out/target/product/sooner"
1268 * - An absolute path to the PRODUCT_OUT dir
1269 * e.g., "/src/device/out/target/product/sooner"
1270 *
1271 * Given <hint>, try to construct an absolute path to the
1272 * ANDROID_PRODUCT_OUT dir.
1273 */
Elliott Hughesd189cfb2015-07-30 17:42:01 -07001274static std::string find_product_out_path(const std::string& hint) {
1275 if (hint.empty()) {
Elliott Hughes38104452015-04-17 13:57:15 -07001276 return "";
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -08001277 }
1278
Elliott Hughes38104452015-04-17 13:57:15 -07001279 // If it's already absolute, don't bother doing any work.
Elliott Hughesd189cfb2015-07-30 17:42:01 -07001280 if (adb_is_absolute_host_path(hint.c_str())) {
Elliott Hughes38104452015-04-17 13:57:15 -07001281 return hint;
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -08001282 }
1283
Chih-Hung Hsieh90b40f62016-07-27 16:25:51 -07001284 // If any of the OS_PATH_SEPARATORS is found, assume it's a relative path;
Elliott Hughes38104452015-04-17 13:57:15 -07001285 // make it absolute.
Chih-Hung Hsieh90b40f62016-07-27 16:25:51 -07001286 // NOLINT: Do not complain if OS_PATH_SEPARATORS has only one character.
1287 if (hint.find_first_of(OS_PATH_SEPARATORS) != std::string::npos) { // NOLINT
Elliott Hughes7cf35752015-04-17 17:03:59 -07001288 std::string cwd;
1289 if (!getcwd(&cwd)) {
Felipe Lemee4893a22016-07-29 17:57:00 -07001290 perror("adb: getcwd failed");
Elliott Hughes38104452015-04-17 13:57:15 -07001291 return "";
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -08001292 }
Elliott Hughesd189cfb2015-07-30 17:42:01 -07001293 return android::base::StringPrintf("%s%c%s", cwd.c_str(), OS_PATH_SEPARATOR, hint.c_str());
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -08001294 }
1295
Elliott Hughes38104452015-04-17 13:57:15 -07001296 // It's a string without any slashes. Try to do something with it.
1297 //
1298 // Try to find the root of the build tree, and build a PRODUCT_OUT
1299 // path from there.
Elliott Hughes7cf35752015-04-17 17:03:59 -07001300 char* top = getenv("ANDROID_BUILD_TOP");
Elliott Hughes38104452015-04-17 13:57:15 -07001301 if (top == nullptr) {
Elliott Hughes7cf35752015-04-17 17:03:59 -07001302 fprintf(stderr, "adb: ANDROID_BUILD_TOP not set!\n");
Elliott Hughes38104452015-04-17 13:57:15 -07001303 return "";
1304 }
Elliott Hughes7cf35752015-04-17 17:03:59 -07001305
1306 std::string path = top;
Elliott Hughes38104452015-04-17 13:57:15 -07001307 path += OS_PATH_SEPARATOR_STR;
1308 path += "out";
1309 path += OS_PATH_SEPARATOR_STR;
1310 path += "target";
1311 path += OS_PATH_SEPARATOR_STR;
1312 path += "product";
1313 path += OS_PATH_SEPARATOR_STR;
1314 path += hint;
1315 if (!directory_exists(path)) {
1316 fprintf(stderr, "adb: Couldn't find a product dir based on -p %s; "
Elliott Hughesd189cfb2015-07-30 17:42:01 -07001317 "\"%s\" doesn't exist\n", hint.c_str(), path.c_str());
Elliott Hughes7cf35752015-04-17 17:03:59 -07001318 return "";
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -08001319 }
Elliott Hughes38104452015-04-17 13:57:15 -07001320 return path;
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -08001321}
1322
Josh Gao5d093b22015-10-30 16:57:19 -07001323static void parse_push_pull_args(const char** arg, int narg,
1324 std::vector<const char*>* srcs,
1325 const char** dst, bool* copy_attrs) {
1326 *copy_attrs = false;
Mark Lindner9f9d1452014-03-11 17:55:59 -07001327
Josh Gao5d093b22015-10-30 16:57:19 -07001328 srcs->clear();
1329 bool ignore_flags = false;
Lajos Molnar4e23e3c2013-04-19 12:41:09 -07001330 while (narg > 0) {
Josh Gao5d093b22015-10-30 16:57:19 -07001331 if (ignore_flags || *arg[0] != '-') {
1332 srcs->push_back(*arg);
Lajos Molnar4e23e3c2013-04-19 12:41:09 -07001333 } else {
Josh Gao5d093b22015-10-30 16:57:19 -07001334 if (!strcmp(*arg, "-p")) {
1335 // Silently ignore for backwards compatibility.
1336 } else if (!strcmp(*arg, "-a")) {
1337 *copy_attrs = true;
1338 } else if (!strcmp(*arg, "--")) {
1339 ignore_flags = true;
1340 } else {
1341 fprintf(stderr, "adb: unrecognized option '%s'\n", *arg);
1342 exit(1);
1343 }
Lajos Molnar4e23e3c2013-04-19 12:41:09 -07001344 }
Mark Lindner9f9d1452014-03-11 17:55:59 -07001345 ++arg;
1346 --narg;
1347 }
1348
Josh Gao5d093b22015-10-30 16:57:19 -07001349 if (srcs->size() > 1) {
1350 *dst = srcs->back();
1351 srcs->pop_back();
Mark Lindner9f9d1452014-03-11 17:55:59 -07001352 }
1353}
1354
Elliott Hughesda945812015-04-29 12:28:13 -07001355static int adb_connect_command(const std::string& command) {
Elliott Hughes04a98c22015-04-29 08:35:59 -07001356 std::string error;
1357 int fd = adb_connect(command, &error);
Elliott Hughesdabb9742015-05-07 23:37:40 -07001358 if (fd < 0) {
1359 fprintf(stderr, "error: %s\n", error.c_str());
1360 return 1;
Tao Bao0db67642015-03-29 11:22:34 -07001361 }
Elliott Hughesdabb9742015-05-07 23:37:40 -07001362 read_and_dump(fd);
1363 adb_close(fd);
1364 return 0;
Tao Bao0db67642015-03-29 11:22:34 -07001365}
1366
Elliott Hughesda945812015-04-29 12:28:13 -07001367static int adb_query_command(const std::string& command) {
1368 std::string result;
1369 std::string error;
1370 if (!adb_query(command, &result, &error)) {
1371 fprintf(stderr, "error: %s\n", error.c_str());
1372 return 1;
1373 }
1374 printf("%s\n", result.c_str());
1375 return 0;
1376}
1377
Spencer Lowe98825e2015-09-07 16:20:13 -07001378// Disallow stdin, stdout, and stderr.
1379static bool _is_valid_ack_reply_fd(const int ack_reply_fd) {
1380#ifdef _WIN32
1381 const HANDLE ack_reply_handle = cast_int_to_handle(ack_reply_fd);
1382 return (GetStdHandle(STD_INPUT_HANDLE) != ack_reply_handle) &&
1383 (GetStdHandle(STD_OUTPUT_HANDLE) != ack_reply_handle) &&
1384 (GetStdHandle(STD_ERROR_HANDLE) != ack_reply_handle);
1385#else
1386 return ack_reply_fd > 2;
1387#endif
1388}
1389
Todd Kennedy8c5cf622016-07-20 16:22:37 -07001390static bool _use_legacy_install() {
1391 FeatureSet features;
1392 std::string error;
1393 if (!adb_get_feature_set(&features, &error)) {
1394 fprintf(stderr, "error: %s\n", error.c_str());
1395 return true;
1396 }
1397 return !CanUseFeature(features, kFeatureCmd);
1398}
1399
Elliott Hughes02e33782016-10-19 14:47:11 -07001400int adb_commandline(int argc, const char** argv) {
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -08001401 int no_daemon = 0;
1402 int is_daemon = 0;
David 'Digit' Turner6826db62011-01-31 14:23:56 +01001403 int is_server = 0;
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -08001404 int r;
Elliott Hughes3aec2ba2015-05-05 13:10:43 -07001405 TransportType transport_type = kTransportAny;
Siva Velusamya55dbd82015-08-07 10:10:29 -07001406 int ack_reply_fd = -1;
Siva Velusamya55dbd82015-08-07 10:10:29 -07001407
Elliott Hughes4919c172015-11-18 18:07:48 -08001408#if !defined(_WIN32)
1409 // We'd rather have EPIPE than SIGPIPE.
1410 signal(SIGPIPE, SIG_IGN);
1411#endif
1412
Elliott Hughes38104452015-04-17 13:57:15 -07001413 // If defined, this should be an absolute path to
1414 // the directory containing all of the various system images
1415 // for a particular product. If not defined, and the adb
1416 // command requires this information, then the user must
1417 // specify the path using "-p".
1418 char* ANDROID_PRODUCT_OUT = getenv("ANDROID_PRODUCT_OUT");
1419 if (ANDROID_PRODUCT_OUT != nullptr) {
1420 gProductOutPath = ANDROID_PRODUCT_OUT;
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -08001421 }
1422 // TODO: also try TARGET_PRODUCT/TARGET_DEVICE as a hint
1423
Josh Gaobb4f8602016-08-25 16:00:22 -07001424 const char* server_host_str = nullptr;
1425 const char* server_port_str = nullptr;
1426 const char* server_socket_str = nullptr;
Stefan Hilzinger92ca4fa2010-04-19 12:21:12 +01001427
Elliott Hughes67943d12015-10-07 14:55:10 -07001428 // We need to check for -d and -e before we look at $ANDROID_SERIAL.
1429 const char* serial = nullptr;
1430
Riley Andrews03b4b372014-12-05 17:37:24 -08001431 while (argc > 0) {
1432 if (!strcmp(argv[0],"server")) {
David 'Digit' Turner6826db62011-01-31 14:23:56 +01001433 is_server = 1;
Riley Andrews03b4b372014-12-05 17:37:24 -08001434 } else if (!strcmp(argv[0],"nodaemon")) {
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -08001435 no_daemon = 1;
1436 } else if (!strcmp(argv[0], "fork-server")) {
1437 /* this is a special flag used only when the ADB client launches the ADB Server */
1438 is_daemon = 1;
Siva Velusamya55dbd82015-08-07 10:10:29 -07001439 } else if (!strcmp(argv[0], "--reply-fd")) {
Elliott Hughes97e74bb2017-02-06 16:20:30 -08001440 if (argc < 2) return usage("--reply-fd requires an argument");
Siva Velusamya55dbd82015-08-07 10:10:29 -07001441 const char* reply_fd_str = argv[1];
1442 argc--;
1443 argv++;
1444 ack_reply_fd = strtol(reply_fd_str, nullptr, 10);
Spencer Lowe98825e2015-09-07 16:20:13 -07001445 if (!_is_valid_ack_reply_fd(ack_reply_fd)) {
Siva Velusamya55dbd82015-08-07 10:10:29 -07001446 fprintf(stderr, "adb: invalid reply fd \"%s\"\n", reply_fd_str);
Elliott Hughes97e74bb2017-02-06 16:20:30 -08001447 return 1;
Siva Velusamya55dbd82015-08-07 10:10:29 -07001448 }
Riley Andrews03b4b372014-12-05 17:37:24 -08001449 } else if (!strncmp(argv[0], "-p", 2)) {
Elliott Hughes13376832015-07-31 13:18:22 -07001450 const char* product = nullptr;
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -08001451 if (argv[0][2] == '\0') {
Elliott Hughes97e74bb2017-02-06 16:20:30 -08001452 if (argc < 2) return usage("-p requires an argument");
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -08001453 product = argv[1];
1454 argc--;
1455 argv++;
1456 } else {
Vairavan Srinivasanadc39402012-08-04 16:40:50 -07001457 product = argv[0] + 2;
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -08001458 }
Elliott Hughes13376832015-07-31 13:18:22 -07001459 gProductOutPath = find_product_out_path(product);
Elliott Hughes38104452015-04-17 13:57:15 -07001460 if (gProductOutPath.empty()) {
1461 fprintf(stderr, "adb: could not resolve \"-p %s\"\n", product);
Elliott Hughes97e74bb2017-02-06 16:20:30 -08001462 return 1;
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -08001463 }
1464 } else if (argv[0][0]=='-' && argv[0][1]=='s') {
1465 if (isdigit(argv[0][2])) {
1466 serial = argv[0] + 2;
1467 } else {
Elliott Hughes97e74bb2017-02-06 16:20:30 -08001468 if (argc < 2 || argv[0][2] != '\0') return usage("-s requires an argument");
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -08001469 serial = argv[1];
1470 argc--;
1471 argv++;
1472 }
1473 } else if (!strcmp(argv[0],"-d")) {
Elliott Hughes3aec2ba2015-05-05 13:10:43 -07001474 transport_type = kTransportUsb;
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -08001475 } else if (!strcmp(argv[0],"-e")) {
Elliott Hughes3aec2ba2015-05-05 13:10:43 -07001476 transport_type = kTransportLocal;
Matt Gumbel411775c2012-11-14 10:16:17 -08001477 } else if (!strcmp(argv[0],"-a")) {
1478 gListenAll = 1;
Riley Andrews03b4b372014-12-05 17:37:24 -08001479 } else if (!strncmp(argv[0], "-H", 2)) {
Matt Gumbel411775c2012-11-14 10:16:17 -08001480 if (argv[0][2] == '\0') {
Elliott Hughes97e74bb2017-02-06 16:20:30 -08001481 if (argc < 2) return usage("-H requires an argument");
Josh Gaobb4f8602016-08-25 16:00:22 -07001482 server_host_str = argv[1];
Matt Gumbel411775c2012-11-14 10:16:17 -08001483 argc--;
1484 argv++;
1485 } else {
Josh Gaobb4f8602016-08-25 16:00:22 -07001486 server_host_str = argv[0] + 2;
Matt Gumbel411775c2012-11-14 10:16:17 -08001487 }
Riley Andrews03b4b372014-12-05 17:37:24 -08001488 } else if (!strncmp(argv[0], "-P", 2)) {
Matt Gumbel411775c2012-11-14 10:16:17 -08001489 if (argv[0][2] == '\0') {
Elliott Hughes97e74bb2017-02-06 16:20:30 -08001490 if (argc < 2) return usage("-P requires an argument");
Matt Gumbel411775c2012-11-14 10:16:17 -08001491 server_port_str = argv[1];
1492 argc--;
1493 argv++;
1494 } else {
1495 server_port_str = argv[0] + 2;
1496 }
Josh Gaobb4f8602016-08-25 16:00:22 -07001497 } else if (!strcmp(argv[0], "-L")) {
Elliott Hughes97e74bb2017-02-06 16:20:30 -08001498 if (argc < 2) return usage("-L requires an argument");
Josh Gaobb4f8602016-08-25 16:00:22 -07001499 server_socket_str = argv[1];
1500 argc--;
1501 argv++;
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -08001502 } else {
Josh Gaobb4f8602016-08-25 16:00:22 -07001503 /* out of recognized modifiers and flags */
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -08001504 break;
1505 }
1506 argc--;
1507 argv++;
1508 }
1509
Josh Gaobb4f8602016-08-25 16:00:22 -07001510 if ((server_host_str || server_port_str) && server_socket_str) {
1511 fprintf(stderr, "adb: -L is incompatible with -H or -P\n");
1512 exit(1);
1513 }
1514
1515 // If -L, -H, or -P are specified, ignore environment variables.
1516 // Otherwise, prefer ADB_SERVER_SOCKET over ANDROID_ADB_SERVER_ADDRESS/PORT.
Tao Wucaedcb52016-09-16 13:01:24 -07001517 if (!server_host_str && !server_port_str && !server_socket_str) {
1518 server_socket_str = getenv("ADB_SERVER_SOCKET");
Josh Gaobb4f8602016-08-25 16:00:22 -07001519 }
1520
1521 if (!server_socket_str) {
1522 // tcp:1234 and tcp:localhost:1234 are different with -a, so don't default to localhost
1523 server_host_str = server_host_str ? server_host_str : getenv("ANDROID_ADB_SERVER_ADDRESS");
1524
Tao Wucaedcb52016-09-16 13:01:24 -07001525 int server_port = DEFAULT_ADB_PORT;
Josh Gaobb4f8602016-08-25 16:00:22 -07001526 server_port_str = server_port_str ? server_port_str : getenv("ANDROID_ADB_SERVER_PORT");
Tao Wucaedcb52016-09-16 13:01:24 -07001527 if (server_port_str && strlen(server_port_str) > 0) {
1528 if (!android::base::ParseInt(server_port_str, &server_port, 1, 65535)) {
1529 fprintf(stderr,
1530 "adb: Env var ANDROID_ADB_SERVER_PORT must be a positive"
1531 " number less than 65535. Got \"%s\"\n",
1532 server_port_str);
1533 exit(1);
1534 }
1535 }
Josh Gaobb4f8602016-08-25 16:00:22 -07001536
1537 int rc;
1538 char* temp;
1539 if (server_host_str) {
Tao Wucaedcb52016-09-16 13:01:24 -07001540 rc = asprintf(&temp, "tcp:%s:%d", server_host_str, server_port);
Josh Gaobb4f8602016-08-25 16:00:22 -07001541 } else {
Tao Wucaedcb52016-09-16 13:01:24 -07001542 rc = asprintf(&temp, "tcp:%d", server_port);
Josh Gaobb4f8602016-08-25 16:00:22 -07001543 }
1544 if (rc < 0) {
1545 fatal("failed to allocate server socket specification");
1546 }
1547 server_socket_str = temp;
1548 }
1549
1550 adb_set_socket_spec(server_socket_str);
1551
Elliott Hughes67943d12015-10-07 14:55:10 -07001552 // If none of -d, -e, or -s were specified, try $ANDROID_SERIAL.
1553 if (transport_type == kTransportAny && serial == nullptr) {
1554 serial = getenv("ANDROID_SERIAL");
1555 }
1556
Elliott Hughes3aec2ba2015-05-05 13:10:43 -07001557 adb_set_transport(transport_type, serial);
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -08001558
David 'Digit' Turner6826db62011-01-31 14:23:56 +01001559 if (is_server) {
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -08001560 if (no_daemon || is_daemon) {
Spencer Lowb28812f2015-08-08 15:07:07 -07001561 if (is_daemon && (ack_reply_fd == -1)) {
Siva Velusamya55dbd82015-08-07 10:10:29 -07001562 fprintf(stderr, "reply fd for adb server to client communication not specified.\n");
Elliott Hughes97e74bb2017-02-06 16:20:30 -08001563 return 1;
Siva Velusamya55dbd82015-08-07 10:10:29 -07001564 }
Josh Gaobb4f8602016-08-25 16:00:22 -07001565 r = adb_server_main(is_daemon, server_socket_str, ack_reply_fd);
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -08001566 } else {
Josh Gaobb4f8602016-08-25 16:00:22 -07001567 r = launch_server(server_socket_str);
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -08001568 }
Riley Andrews03b4b372014-12-05 17:37:24 -08001569 if (r) {
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -08001570 fprintf(stderr,"* could not start server *\n");
1571 }
1572 return r;
1573 }
1574
Riley Andrews03b4b372014-12-05 17:37:24 -08001575 if (argc == 0) {
Elliott Hughes97e74bb2017-02-06 16:20:30 -08001576 help();
1577 return 1;
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -08001578 }
1579
Riley Andrewsfacb92d2014-12-05 17:32:46 -08001580 /* handle wait-for-* prefix */
1581 if (!strncmp(argv[0], "wait-for-", strlen("wait-for-"))) {
Dan Albertf30d73c2015-02-25 17:51:28 -08001582 const char* service = argv[0];
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -08001583
Elliott Hughes3aec2ba2015-05-05 13:10:43 -07001584 if (!wait_for_device(service, transport_type, serial)) {
Riley Andrewsfacb92d2014-12-05 17:32:46 -08001585 return 1;
1586 }
1587
Elliott Hugheseaabdd62015-05-04 19:29:32 -07001588 // Allow a command to be run after wait-for-device,
1589 // e.g. 'adb wait-for-device shell'.
Riley Andrewsfacb92d2014-12-05 17:32:46 -08001590 if (argc == 1) {
1591 return 0;
1592 }
1593
1594 /* Fall through */
1595 argc--;
1596 argv++;
1597 }
1598
1599 /* adb_connect() commands */
Riley Andrews03b4b372014-12-05 17:37:24 -08001600 if (!strcmp(argv[0], "devices")) {
Dan Albertf30d73c2015-02-25 17:51:28 -08001601 const char *listopt;
Elliott Hughesda945812015-04-29 12:28:13 -07001602 if (argc < 2) {
Scott Anderson6dfaf4b2012-04-20 11:21:14 -07001603 listopt = "";
Elliott Hughesda945812015-04-29 12:28:13 -07001604 } else if (argc == 2 && !strcmp(argv[1], "-l")) {
Scott Anderson6dfaf4b2012-04-20 11:21:14 -07001605 listopt = argv[1];
Elliott Hughesda945812015-04-29 12:28:13 -07001606 } else {
Scott Anderson6dfaf4b2012-04-20 11:21:14 -07001607 fprintf(stderr, "Usage: adb devices [-l]\n");
1608 return 1;
1609 }
Elliott Hughesda945812015-04-29 12:28:13 -07001610
1611 std::string query = android::base::StringPrintf("host:%s%s", argv[0], listopt);
1612 printf("List of devices attached\n");
1613 return adb_query_command(query);
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -08001614 }
Riley Andrewsfacb92d2014-12-05 17:32:46 -08001615 else if (!strcmp(argv[0], "connect")) {
Mike Lockwood26b88e32009-08-24 15:58:40 -07001616 if (argc != 2) {
Mike Lockwood01c2c302010-05-24 10:44:35 -04001617 fprintf(stderr, "Usage: adb connect <host>[:<port>]\n");
Mike Lockwood26b88e32009-08-24 15:58:40 -07001618 return 1;
1619 }
Elliott Hughesda945812015-04-29 12:28:13 -07001620
1621 std::string query = android::base::StringPrintf("host:connect:%s", argv[1]);
1622 return adb_query_command(query);
Mike Lockwood01c2c302010-05-24 10:44:35 -04001623 }
Riley Andrewsfacb92d2014-12-05 17:32:46 -08001624 else if (!strcmp(argv[0], "disconnect")) {
Mike Lockwood01c2c302010-05-24 10:44:35 -04001625 if (argc > 2) {
1626 fprintf(stderr, "Usage: adb disconnect [<host>[:<port>]]\n");
1627 return 1;
1628 }
Elliott Hughesda945812015-04-29 12:28:13 -07001629
1630 std::string query = android::base::StringPrintf("host:disconnect:%s",
1631 (argc == 2) ? argv[1] : "");
1632 return adb_query_command(query);
Mike Lockwood26b88e32009-08-24 15:58:40 -07001633 }
Riley Andrewsfacb92d2014-12-05 17:32:46 -08001634 else if (!strcmp(argv[0], "emu")) {
Spencer Low7dc759f2015-05-06 16:13:42 -07001635 return adb_send_emulator_command(argc, argv, serial);
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -08001636 }
Elliott Hughesa8265792015-11-03 11:18:40 -08001637 else if (!strcmp(argv[0], "shell")) {
Josh Gao91d53b52016-01-31 19:12:26 -08001638 return adb_shell(argc, argv);
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -08001639 }
Riley Andrewsfacb92d2014-12-05 17:32:46 -08001640 else if (!strcmp(argv[0], "exec-in") || !strcmp(argv[0], "exec-out")) {
Jeff Sharkeyc52ec1a2014-05-26 18:30:43 -07001641 int exec_in = !strcmp(argv[0], "exec-in");
Jeff Sharkeyc52ec1a2014-05-26 18:30:43 -07001642
Zach Riggle328870b2016-04-14 17:18:04 -04001643 if (argc < 2) {
1644 fprintf(stderr, "Usage: adb %s command\n", argv[0]);
1645 return 1;
1646 }
1647
Elliott Hughes170b5682015-04-17 10:59:34 -07001648 std::string cmd = "exec:";
1649 cmd += argv[1];
Jeff Sharkeyc52ec1a2014-05-26 18:30:43 -07001650 argc -= 2;
1651 argv += 2;
1652 while (argc-- > 0) {
Elliott Hughese4b64792015-04-17 20:11:08 -07001653 cmd += " " + escape_arg(*argv++);
Jeff Sharkeyc52ec1a2014-05-26 18:30:43 -07001654 }
1655
Elliott Hughes04a98c22015-04-29 08:35:59 -07001656 std::string error;
Elliott Hughesda945812015-04-29 12:28:13 -07001657 int fd = adb_connect(cmd, &error);
Jeff Sharkeyc52ec1a2014-05-26 18:30:43 -07001658 if (fd < 0) {
Elliott Hughes04a98c22015-04-29 08:35:59 -07001659 fprintf(stderr, "error: %s\n", error.c_str());
Jeff Sharkeyc52ec1a2014-05-26 18:30:43 -07001660 return -1;
1661 }
1662
1663 if (exec_in) {
1664 copy_to_file(STDIN_FILENO, fd);
1665 } else {
1666 copy_to_file(fd, STDOUT_FILENO);
1667 }
1668
1669 adb_close(fd);
1670 return 0;
1671 }
Riley Andrewsfacb92d2014-12-05 17:32:46 -08001672 else if (!strcmp(argv[0], "kill-server")) {
Elliott Hughes04a98c22015-04-29 08:35:59 -07001673 std::string error;
1674 int fd = _adb_connect("host:kill", &error);
Spencer Low85ee64b2015-08-11 17:05:02 -07001675 if (fd == -2) {
1676 // Failed to make network connection to server. Don't output the
1677 // network error since that is expected.
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -08001678 fprintf(stderr,"* server not running *\n");
Spencer Low85ee64b2015-08-11 17:05:02 -07001679 // Successful exit code because the server is already "killed".
1680 return 0;
1681 } else if (fd == -1) {
1682 // Some other error.
1683 fprintf(stderr, "error: %s\n", error.c_str());
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -08001684 return 1;
Spencer Low85ee64b2015-08-11 17:05:02 -07001685 } else {
1686 // Successfully connected, kill command sent, okay status came back.
1687 // Server should exit() in a moment, if not already.
Spencer Lowcc4a4b12015-10-14 17:32:44 -07001688 ReadOrderlyShutdown(fd);
Spencer Low85ee64b2015-08-11 17:05:02 -07001689 adb_close(fd);
1690 return 0;
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -08001691 }
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -08001692 }
Riley Andrewsfacb92d2014-12-05 17:32:46 -08001693 else if (!strcmp(argv[0], "sideload")) {
Elliott Hughes97e74bb2017-02-06 16:20:30 -08001694 if (argc != 2) return usage("sideload requires an argument");
Doug Zongkerbcad29f2014-06-26 15:35:36 -07001695 if (adb_sideload_host(argv[1])) {
Doug Zongker6b217ed2012-01-09 14:54:53 -08001696 return 1;
1697 } else {
1698 return 0;
1699 }
1700 }
Elliott Hughesd94e8ba2015-07-21 16:13:40 -07001701 else if (!strcmp(argv[0], "tcpip") && argc > 1) {
1702 return adb_connect_command(android::base::StringPrintf("tcpip:%s", argv[1]));
1703 }
Riley Andrewsfacb92d2014-12-05 17:32:46 -08001704 else if (!strcmp(argv[0], "remount") ||
1705 !strcmp(argv[0], "reboot") ||
1706 !strcmp(argv[0], "reboot-bootloader") ||
Riley Andrewsfacb92d2014-12-05 17:32:46 -08001707 !strcmp(argv[0], "usb") ||
Riley Andrewsfacb92d2014-12-05 17:32:46 -08001708 !strcmp(argv[0], "disable-verity") ||
1709 !strcmp(argv[0], "enable-verity")) {
Elliott Hughesdabb9742015-05-07 23:37:40 -07001710 std::string command;
Tao Bao0db67642015-03-29 11:22:34 -07001711 if (!strcmp(argv[0], "reboot-bootloader")) {
Elliott Hughesdabb9742015-05-07 23:37:40 -07001712 command = "reboot:bootloader";
Tao Bao0db67642015-03-29 11:22:34 -07001713 } else if (argc > 1) {
Elliott Hughesdabb9742015-05-07 23:37:40 -07001714 command = android::base::StringPrintf("%s:%s", argv[0], argv[1]);
Tao Bao0db67642015-03-29 11:22:34 -07001715 } else {
Elliott Hughesdabb9742015-05-07 23:37:40 -07001716 command = android::base::StringPrintf("%s:", argv[0]);
The Android Open Source Project9c753402009-03-13 13:04:37 -07001717 }
Tao Bao0db67642015-03-29 11:22:34 -07001718 return adb_connect_command(command);
Josh Gaod1d03392016-03-04 15:16:18 -08001719 } else if (!strcmp(argv[0], "root") || !strcmp(argv[0], "unroot")) {
1720 return adb_root(argv[0]) ? 0 : 1;
1721 } else if (!strcmp(argv[0], "bugreport")) {
Felipe Leme042c3512016-07-19 17:07:22 -07001722 Bugreport bugreport;
1723 return bugreport.DoIt(transport_type, serial, argc, argv);
Felipe Lemeb6447032016-04-01 17:43:27 -07001724 } else if (!strcmp(argv[0], "forward") || !strcmp(argv[0], "reverse")) {
Elliott Hughesd98ca8a2015-05-29 17:55:19 -07001725 bool reverse = !strcmp(argv[0], "reverse");
1726 ++argv;
1727 --argc;
Elliott Hughes97e74bb2017-02-06 16:20:30 -08001728 if (argc < 1) return usage("%s requires an argument", argv[0]);
David 'Digit' Turner6c489802012-11-14 15:01:55 +01001729
1730 // Determine the <host-prefix> for this command.
Elliott Hughesd98ca8a2015-05-29 17:55:19 -07001731 std::string host_prefix;
David 'Digit' Turner963a4492013-03-21 21:07:42 +01001732 if (reverse) {
Elliott Hughesd98ca8a2015-05-29 17:55:19 -07001733 host_prefix = "reverse";
David 'Digit' Turner6c489802012-11-14 15:01:55 +01001734 } else {
David 'Digit' Turner963a4492013-03-21 21:07:42 +01001735 if (serial) {
Elliott Hughesd98ca8a2015-05-29 17:55:19 -07001736 host_prefix = android::base::StringPrintf("host-serial:%s", serial);
Elliott Hughes3aec2ba2015-05-05 13:10:43 -07001737 } else if (transport_type == kTransportUsb) {
Elliott Hughesd98ca8a2015-05-29 17:55:19 -07001738 host_prefix = "host-usb";
Elliott Hughes3aec2ba2015-05-05 13:10:43 -07001739 } else if (transport_type == kTransportLocal) {
Elliott Hughesd98ca8a2015-05-29 17:55:19 -07001740 host_prefix = "host-local";
David 'Digit' Turner963a4492013-03-21 21:07:42 +01001741 } else {
Elliott Hughesd98ca8a2015-05-29 17:55:19 -07001742 host_prefix = "host";
David 'Digit' Turner963a4492013-03-21 21:07:42 +01001743 }
David 'Digit' Turner6c489802012-11-14 15:01:55 +01001744 }
1745
David Pursell19d0c232016-04-07 11:25:48 -07001746 std::string cmd, error;
Elliott Hughesd98ca8a2015-05-29 17:55:19 -07001747 if (strcmp(argv[0], "--list") == 0) {
Elliott Hughes97e74bb2017-02-06 16:20:30 -08001748 if (argc != 1) return usage("--list doesn't take any arguments");
Elliott Hughesd98ca8a2015-05-29 17:55:19 -07001749 return adb_query_command(host_prefix + ":list-forward");
1750 } else if (strcmp(argv[0], "--remove-all") == 0) {
Elliott Hughes97e74bb2017-02-06 16:20:30 -08001751 if (argc != 1) return usage("--remove-all doesn't take any arguments");
Elliott Hughesd98ca8a2015-05-29 17:55:19 -07001752 cmd = host_prefix + ":killforward-all";
1753 } else if (strcmp(argv[0], "--remove") == 0) {
1754 // forward --remove <local>
Elliott Hughes97e74bb2017-02-06 16:20:30 -08001755 if (argc != 2) return usage("--remove requires an argument");
Elliott Hughesd98ca8a2015-05-29 17:55:19 -07001756 cmd = host_prefix + ":killforward:" + argv[1];
1757 } else if (strcmp(argv[0], "--no-rebind") == 0) {
1758 // forward --no-rebind <local> <remote>
Elliott Hughes97e74bb2017-02-06 16:20:30 -08001759 if (argc != 3) return usage("--no-rebind takes two arguments");
David Pursell19d0c232016-04-07 11:25:48 -07001760 if (forward_targets_are_valid(argv[1], argv[2], &error)) {
1761 cmd = host_prefix + ":forward:norebind:" + argv[1] + ";" + argv[2];
1762 }
Elliott Hughesd98ca8a2015-05-29 17:55:19 -07001763 } else {
1764 // forward <local> <remote>
Elliott Hughes97e74bb2017-02-06 16:20:30 -08001765 if (argc != 2) return usage("forward takes two arguments");
David Pursell19d0c232016-04-07 11:25:48 -07001766 if (forward_targets_are_valid(argv[0], argv[1], &error)) {
1767 cmd = host_prefix + ":forward:" + argv[0] + ";" + argv[1];
1768 }
David 'Digit' Turner6c489802012-11-14 15:01:55 +01001769 }
1770
David Pursell19d0c232016-04-07 11:25:48 -07001771 if (!error.empty()) {
1772 fprintf(stderr, "error: %s\n", error.c_str());
1773 return 1;
1774 }
1775
1776 int fd = adb_connect(cmd, &error);
1777 if (fd < 0 || !adb_status(fd, &error)) {
1778 adb_close(fd);
1779 fprintf(stderr, "error: %s\n", error.c_str());
1780 return 1;
1781 }
1782
1783 // Server or device may optionally return a resolved TCP port number.
1784 std::string resolved_port;
1785 if (ReadProtocolString(fd, &resolved_port, &error) && !resolved_port.empty()) {
1786 printf("%s\n", resolved_port.c_str());
1787 }
1788
1789 ReadOrderlyShutdown(fd);
1790 return 0;
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -08001791 }
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -08001792 /* do_sync_*() commands */
Riley Andrewsfacb92d2014-12-05 17:32:46 -08001793 else if (!strcmp(argv[0], "ls")) {
Elliott Hughes97e74bb2017-02-06 16:20:30 -08001794 if (argc != 2) return usage("ls requires an argument");
Elliott Hughesb628cb12015-08-03 10:38:08 -07001795 return do_sync_ls(argv[1]) ? 0 : 1;
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -08001796 }
Riley Andrewsfacb92d2014-12-05 17:32:46 -08001797 else if (!strcmp(argv[0], "push")) {
Josh Gao5d093b22015-10-30 16:57:19 -07001798 bool copy_attrs = false;
1799 std::vector<const char*> srcs;
1800 const char* dst = nullptr;
Mark Lindner9f9d1452014-03-11 17:55:59 -07001801
Josh Gao5d093b22015-10-30 16:57:19 -07001802 parse_push_pull_args(&argv[1], argc - 1, &srcs, &dst, &copy_attrs);
Elliott Hughes97e74bb2017-02-06 16:20:30 -08001803 if (srcs.empty() || !dst) return usage("push requires an argument");
Josh Gao5d093b22015-10-30 16:57:19 -07001804 return do_sync_push(srcs, dst) ? 0 : 1;
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -08001805 }
Riley Andrewsfacb92d2014-12-05 17:32:46 -08001806 else if (!strcmp(argv[0], "pull")) {
Josh Gao5d093b22015-10-30 16:57:19 -07001807 bool copy_attrs = false;
1808 std::vector<const char*> srcs;
1809 const char* dst = ".";
Mark Lindner9f9d1452014-03-11 17:55:59 -07001810
Josh Gao5d093b22015-10-30 16:57:19 -07001811 parse_push_pull_args(&argv[1], argc - 1, &srcs, &dst, &copy_attrs);
Elliott Hughes97e74bb2017-02-06 16:20:30 -08001812 if (srcs.empty()) return usage("pull requires an argument");
Josh Gao5d093b22015-10-30 16:57:19 -07001813 return do_sync_pull(srcs, dst, copy_attrs) ? 0 : 1;
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -08001814 }
Riley Andrewsfacb92d2014-12-05 17:32:46 -08001815 else if (!strcmp(argv[0], "install")) {
Elliott Hughes97e74bb2017-02-06 16:20:30 -08001816 if (argc < 2) return usage("install requires an argument");
Todd Kennedy8c5cf622016-07-20 16:22:37 -07001817 if (_use_legacy_install()) {
1818 return install_app_legacy(transport_type, serial, argc, argv);
David Pursell9650d862016-01-21 19:56:50 -08001819 }
Todd Kennedy8c5cf622016-07-20 16:22:37 -07001820 return install_app(transport_type, serial, argc, argv);
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -08001821 }
Riley Andrewsfacb92d2014-12-05 17:32:46 -08001822 else if (!strcmp(argv[0], "install-multiple")) {
Elliott Hughes97e74bb2017-02-06 16:20:30 -08001823 if (argc < 2) return usage("install-multiple requires an argument");
Elliott Hughes3aec2ba2015-05-05 13:10:43 -07001824 return install_multiple_app(transport_type, serial, argc, argv);
Jeff Sharkey0e0d2512014-06-09 17:30:57 -07001825 }
Riley Andrewsfacb92d2014-12-05 17:32:46 -08001826 else if (!strcmp(argv[0], "uninstall")) {
Elliott Hughes97e74bb2017-02-06 16:20:30 -08001827 if (argc < 2) return usage("uninstall requires an argument");
Todd Kennedy8c5cf622016-07-20 16:22:37 -07001828 if (_use_legacy_install()) {
1829 return uninstall_app_legacy(transport_type, serial, argc, argv);
David Pursell9650d862016-01-21 19:56:50 -08001830 }
Todd Kennedy8c5cf622016-07-20 16:22:37 -07001831 return uninstall_app(transport_type, serial, argc, argv);
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -08001832 }
Riley Andrewsfacb92d2014-12-05 17:32:46 -08001833 else if (!strcmp(argv[0], "sync")) {
Elliott Hughesc5a12b22015-04-21 10:17:07 -07001834 std::string src;
Elliott Hughes38104452015-04-17 13:57:15 -07001835 bool list_only = false;
Riley Andrews03b4b372014-12-05 17:37:24 -08001836 if (argc < 2) {
Elliott Hughes38104452015-04-17 13:57:15 -07001837 // No local path was specified.
Elliott Hughesc5a12b22015-04-21 10:17:07 -07001838 src = "";
Anthony Newnamdd2db142010-02-22 08:36:49 -06001839 } else if (argc >= 2 && strcmp(argv[1], "-l") == 0) {
Elliott Hughesc5a12b22015-04-21 10:17:07 -07001840 list_only = true;
Anthony Newnamdd2db142010-02-22 08:36:49 -06001841 if (argc == 3) {
Elliott Hughesc5a12b22015-04-21 10:17:07 -07001842 src = argv[2];
Anthony Newnamdd2db142010-02-22 08:36:49 -06001843 } else {
Elliott Hughesc5a12b22015-04-21 10:17:07 -07001844 src = "";
Anthony Newnamdd2db142010-02-22 08:36:49 -06001845 }
Riley Andrews03b4b372014-12-05 17:37:24 -08001846 } else if (argc == 2) {
Elliott Hughes38104452015-04-17 13:57:15 -07001847 // A local path or "android"/"data" arg was specified.
Elliott Hughesc5a12b22015-04-21 10:17:07 -07001848 src = argv[1];
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -08001849 } else {
Elliott Hughes97e74bb2017-02-06 16:20:30 -08001850 return usage("usage: adb sync [-l] [PARTITION]");
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -08001851 }
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -08001852
Elliott Hughesc5a12b22015-04-21 10:17:07 -07001853 if (src != "" &&
1854 src != "system" && src != "data" && src != "vendor" && src != "oem") {
Elliott Hughes97e74bb2017-02-06 16:20:30 -08001855 return usage("don't know how to sync %s partition", src.c_str());
Elliott Hughes38104452015-04-17 13:57:15 -07001856 }
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -08001857
Elliott Hughes38104452015-04-17 13:57:15 -07001858 std::string system_src_path = product_file("system");
1859 std::string data_src_path = product_file("data");
1860 std::string vendor_src_path = product_file("vendor");
1861 std::string oem_src_path = product_file("oem");
Elliott Hughes38104452015-04-17 13:57:15 -07001862
Elliott Hughesb628cb12015-08-03 10:38:08 -07001863 bool okay = true;
1864 if (okay && (src.empty() || src == "system")) {
1865 okay = do_sync_sync(system_src_path, "/system", list_only);
Elliott Hughes38104452015-04-17 13:57:15 -07001866 }
Elliott Hughesb628cb12015-08-03 10:38:08 -07001867 if (okay && (src.empty() || src == "vendor") && directory_exists(vendor_src_path)) {
1868 okay = do_sync_sync(vendor_src_path, "/vendor", list_only);
Elliott Hughes38104452015-04-17 13:57:15 -07001869 }
Elliott Hughesb628cb12015-08-03 10:38:08 -07001870 if (okay && (src.empty() || src == "oem") && directory_exists(oem_src_path)) {
1871 okay = do_sync_sync(oem_src_path, "/oem", list_only);
Elliott Hughes38104452015-04-17 13:57:15 -07001872 }
Elliott Hughesb628cb12015-08-03 10:38:08 -07001873 if (okay && (src.empty() || src == "data")) {
1874 okay = do_sync_sync(data_src_path, "/data", list_only);
Elliott Hughes38104452015-04-17 13:57:15 -07001875 }
Elliott Hughesb628cb12015-08-03 10:38:08 -07001876 return okay ? 0 : 1;
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -08001877 }
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -08001878 /* passthrough commands */
Riley Andrewsfacb92d2014-12-05 17:32:46 -08001879 else if (!strcmp(argv[0],"get-state") ||
Scott Anderson6dfaf4b2012-04-20 11:21:14 -07001880 !strcmp(argv[0],"get-serialno") ||
1881 !strcmp(argv[0],"get-devpath"))
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -08001882 {
Elliott Hughes3aec2ba2015-05-05 13:10:43 -07001883 return adb_query_command(format_host_command(argv[0], transport_type, serial));
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -08001884 }
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -08001885 /* other commands */
Riley Andrewsfacb92d2014-12-05 17:32:46 -08001886 else if (!strcmp(argv[0],"logcat") || !strcmp(argv[0],"lolcat") || !strcmp(argv[0],"longcat")) {
Elliott Hughes3aec2ba2015-05-05 13:10:43 -07001887 return logcat(transport_type, serial, argc, argv);
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -08001888 }
Riley Andrewsfacb92d2014-12-05 17:32:46 -08001889 else if (!strcmp(argv[0],"ppp")) {
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -08001890 return ppp(argc, argv);
1891 }
Riley Andrewsfacb92d2014-12-05 17:32:46 -08001892 else if (!strcmp(argv[0], "start-server")) {
Elliott Hughes04a98c22015-04-29 08:35:59 -07001893 std::string error;
Spencer Low85ee64b2015-08-11 17:05:02 -07001894 const int result = adb_connect("host:start-server", &error);
1895 if (result < 0) {
1896 fprintf(stderr, "error: %s\n", error.c_str());
1897 }
1898 return result;
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -08001899 }
Riley Andrewsfacb92d2014-12-05 17:32:46 -08001900 else if (!strcmp(argv[0], "backup")) {
Christopher Tate73779122011-04-21 12:53:28 -07001901 return backup(argc, argv);
1902 }
Riley Andrewsfacb92d2014-12-05 17:32:46 -08001903 else if (!strcmp(argv[0], "restore")) {
Christopher Tatecf5379b2011-05-17 15:52:54 -07001904 return restore(argc, argv);
1905 }
Riley Andrewsfacb92d2014-12-05 17:32:46 -08001906 else if (!strcmp(argv[0], "keygen")) {
Elliott Hughes97e74bb2017-02-06 16:20:30 -08001907 if (argc != 2) return usage("keygen requires an argument");
Yabin Cui19bec5b2015-09-22 15:52:57 -07001908 // Always print key generation information for keygen command.
1909 adb_trace_enable(AUTH);
Nick Kralevich6183c962014-11-13 15:17:29 -08001910 return adb_auth_keygen(argv[1]);
1911 }
Riley Andrewsfacb92d2014-12-05 17:32:46 -08001912 else if (!strcmp(argv[0], "jdwp")) {
Tao Bao0db67642015-03-29 11:22:34 -07001913 return adb_connect_command("jdwp");
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -08001914 }
Josh Gao39d01bb2016-05-13 18:18:23 -07001915 else if (!strcmp(argv[0], "track-jdwp")) {
1916 return adb_connect_command("track-jdwp");
1917 }
1918 else if (!strcmp(argv[0], "track-devices")) {
1919 return adb_connect_command("host:track-devices");
1920 }
1921
1922
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -08001923 /* "adb /?" is a common idiom under Windows */
Elliott Hughes97e74bb2017-02-06 16:20:30 -08001924 else if (!strcmp(argv[0], "--help") || !strcmp(argv[0], "help") || !strcmp(argv[0], "/?")) {
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -08001925 help();
1926 return 0;
1927 }
Elliott Hughes97e74bb2017-02-06 16:20:30 -08001928 else if (!strcmp(argv[0], "--version") || !strcmp(argv[0], "version")) {
Elliott Hughesb9f01642015-08-12 08:32:10 -07001929 fprintf(stdout, "%s", adb_version().c_str());
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -08001930 return 0;
Josh Gao210b63f2017-02-22 17:07:01 -08001931 } else if (!strcmp(argv[0], "features")) {
David Pursella07dbad2015-09-22 10:43:08 -07001932 // Only list the features common to both the adb client and the device.
David Pursell9650d862016-01-21 19:56:50 -08001933 FeatureSet features;
Josh Gao91d53b52016-01-31 19:12:26 -08001934 std::string error;
1935 if (!adb_get_feature_set(&features, &error)) {
1936 fprintf(stderr, "error: %s\n", error.c_str());
David Pursell9650d862016-01-21 19:56:50 -08001937 return 1;
1938 }
1939
David Pursella07dbad2015-09-22 10:43:08 -07001940 for (const std::string& name : features) {
David Pursell22fc5e92015-09-30 13:35:42 -07001941 if (CanUseFeature(features, name)) {
David Pursella07dbad2015-09-22 10:43:08 -07001942 printf("%s\n", name.c_str());
1943 }
1944 }
1945 return 0;
Josh Gao210b63f2017-02-22 17:07:01 -08001946 } else if (!strcmp(argv[0], "host-features")) {
1947 return adb_query_command("host:host-features");
Yabin Cuid78ed222016-04-05 13:50:44 -07001948 } else if (!strcmp(argv[0], "reconnect")) {
1949 if (argc == 1) {
1950 return adb_query_command("host:reconnect");
Josh Gao4e562502016-10-27 14:01:08 -07001951 } else if (argc == 2) {
1952 if (!strcmp(argv[1], "device")) {
1953 std::string err;
1954 adb_connect("reconnect", &err);
1955 return 0;
1956 } else if (!strcmp(argv[1], "offline")) {
1957 std::string err;
1958 return adb_query_command("host:reconnect-offline");
1959 } else {
Elliott Hughes97e74bb2017-02-06 16:20:30 -08001960 return usage("usage: adb reconnect [device|offline]");
Josh Gao4e562502016-10-27 14:01:08 -07001961 }
Yabin Cuid78ed222016-04-05 13:50:44 -07001962 }
Dan Albert996c12e2015-05-20 18:58:41 -07001963 }
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -08001964
Elliott Hughes97e74bb2017-02-06 16:20:30 -08001965 usage("unknown command %s", argv[0]);
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -08001966 return 1;
1967}
1968
Todd Kennedy1e2f7dc2015-11-03 16:53:08 -08001969static int uninstall_app(TransportType transport, const char* serial, int argc, const char** argv) {
1970 // 'adb uninstall' takes the same arguments as 'cmd package uninstall' on device
1971 std::string cmd = "cmd package";
Elliott Hughes170b5682015-04-17 10:59:34 -07001972 while (argc-- > 0) {
Todd Kennedy1e2f7dc2015-11-03 16:53:08 -08001973 // deny the '-k' option until the remaining data/cache can be removed with adb/UI
1974 if (strcmp(*argv, "-k") == 0) {
1975 printf(
1976 "The -k option uninstalls the application while retaining the data/cache.\n"
1977 "At the moment, there is no way to remove the remaining data.\n"
1978 "You will have to reinstall the application with the same signature, and fully uninstall it.\n"
1979 "If you truly wish to continue, execute 'adb shell cmd package uninstall -k'.\n");
1980 return EXIT_FAILURE;
1981 }
Elliott Hughese4b64792015-04-17 20:11:08 -07001982 cmd += " " + escape_arg(*argv++);
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -08001983 }
1984
David Pursell22fc5e92015-09-30 13:35:42 -07001985 return send_shell_command(transport, serial, cmd, false);
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -08001986}
1987
Elliott Hughes3aec2ba2015-05-05 13:10:43 -07001988static int install_app(TransportType transport, const char* serial, int argc, const char** argv) {
Todd Kennedy1e2f7dc2015-11-03 16:53:08 -08001989 // The last argument must be the APK file
1990 const char* file = argv[argc - 1];
Elliott Hughes976bd832016-10-24 18:29:21 -07001991 if (!android::base::EndsWithIgnoreCase(file, ".apk")) {
1992 fprintf(stderr, "Filename doesn't end .apk: %s\n", file);
1993 return EXIT_FAILURE;
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -08001994 }
1995
Elliott Hughes976bd832016-10-24 18:29:21 -07001996 struct stat sb;
1997 if (stat(file, &sb) == -1) {
1998 fprintf(stderr, "Failed to stat %s: %s\n", file, strerror(errno));
1999 return 1;
Kenny Root3802c992011-08-05 11:19:45 -07002000 }
2001
Todd Kennedy1e2f7dc2015-11-03 16:53:08 -08002002 int localFd = adb_open(file, O_RDONLY);
2003 if (localFd < 0) {
2004 fprintf(stderr, "Failed to open %s: %s\n", file, strerror(errno));
2005 return 1;
2006 }
Kenny Root3802c992011-08-05 11:19:45 -07002007
Todd Kennedy1e2f7dc2015-11-03 16:53:08 -08002008 std::string error;
2009 std::string cmd = "exec:cmd package";
2010
2011 // don't copy the APK name, but, copy the rest of the arguments as-is
2012 while (argc-- > 1) {
2013 cmd += " " + escape_arg(std::string(*argv++));
2014 }
2015
2016 // add size parameter [required for streaming installs]
2017 // do last to override any user specified value
2018 cmd += " " + android::base::StringPrintf("-S %" PRIu64, static_cast<uint64_t>(sb.st_size));
2019
2020 int remoteFd = adb_connect(cmd, &error);
2021 if (remoteFd < 0) {
2022 fprintf(stderr, "Connect error for write: %s\n", error.c_str());
2023 adb_close(localFd);
2024 return 1;
2025 }
2026
2027 char buf[BUFSIZ];
2028 copy_to_file(localFd, remoteFd);
2029 read_status_line(remoteFd, buf, sizeof(buf));
2030
2031 adb_close(localFd);
2032 adb_close(remoteFd);
2033
2034 if (strncmp("Success", buf, 7)) {
Elliott Hughesf493da82015-12-17 14:04:38 -08002035 fprintf(stderr, "Failed to install %s: %s", file, buf);
Todd Kennedy1e2f7dc2015-11-03 16:53:08 -08002036 return 1;
2037 }
2038 fputs(buf, stderr);
2039 return 0;
Jeff Sharkey0e0d2512014-06-09 17:30:57 -07002040}
2041
Elliott Hughes3aec2ba2015-05-05 13:10:43 -07002042static int install_multiple_app(TransportType transport, const char* serial, int argc,
Elliott Hughes38104452015-04-17 13:57:15 -07002043 const char** argv)
Jeff Sharkey0e0d2512014-06-09 17:30:57 -07002044{
Jeff Sharkey0e0d2512014-06-09 17:30:57 -07002045 // Find all APK arguments starting at end.
2046 // All other arguments passed through verbatim.
2047 int first_apk = -1;
Elliott Hughes976bd832016-10-24 18:29:21 -07002048 uint64_t total_size = 0;
2049 for (int i = argc - 1; i >= 0; i--) {
Dan Albertf30d73c2015-02-25 17:51:28 -08002050 const char* file = argv[i];
Jeff Sharkey0e0d2512014-06-09 17:30:57 -07002051
Elliott Hughes976bd832016-10-24 18:29:21 -07002052 if (android::base::EndsWithIgnoreCase(file, ".apk")) {
2053 struct stat sb;
2054 if (stat(file, &sb) != -1) total_size += sb.st_size;
Jeff Sharkey0e0d2512014-06-09 17:30:57 -07002055 first_apk = i;
2056 } else {
2057 break;
2058 }
Kenny Root3802c992011-08-05 11:19:45 -07002059 }
2060
Jeff Sharkey0e0d2512014-06-09 17:30:57 -07002061 if (first_apk == -1) {
Elliott Hughes976bd832016-10-24 18:29:21 -07002062 fprintf(stderr, "No APK file on command line\n");
Jeff Sharkey0e0d2512014-06-09 17:30:57 -07002063 return 1;
2064 }
Kenny Root3802c992011-08-05 11:19:45 -07002065
Todd Kennedy8c5cf622016-07-20 16:22:37 -07002066 std::string install_cmd;
2067 if (_use_legacy_install()) {
2068 install_cmd = "exec:pm";
2069 } else {
2070 install_cmd = "exec:cmd package";
2071 }
2072
2073 std::string cmd = android::base::StringPrintf("%s install-create -S %" PRIu64, install_cmd.c_str(), total_size);
Elliott Hughes976bd832016-10-24 18:29:21 -07002074 for (int i = 1; i < first_apk; i++) {
Elliott Hughese4b64792015-04-17 20:11:08 -07002075 cmd += " " + escape_arg(argv[i]);
Jeff Sharkey0e0d2512014-06-09 17:30:57 -07002076 }
2077
2078 // Create install session
Elliott Hughes04a98c22015-04-29 08:35:59 -07002079 std::string error;
Elliott Hughesda945812015-04-29 12:28:13 -07002080 int fd = adb_connect(cmd, &error);
Jeff Sharkey0e0d2512014-06-09 17:30:57 -07002081 if (fd < 0) {
Elliott Hughes04a98c22015-04-29 08:35:59 -07002082 fprintf(stderr, "Connect error for create: %s\n", error.c_str());
Todd Kennedy1e2f7dc2015-11-03 16:53:08 -08002083 return EXIT_FAILURE;
Jeff Sharkey0e0d2512014-06-09 17:30:57 -07002084 }
Elliott Hughes170b5682015-04-17 10:59:34 -07002085 char buf[BUFSIZ];
Jeff Sharkey0e0d2512014-06-09 17:30:57 -07002086 read_status_line(fd, buf, sizeof(buf));
2087 adb_close(fd);
2088
2089 int session_id = -1;
2090 if (!strncmp("Success", buf, 7)) {
2091 char* start = strrchr(buf, '[');
2092 char* end = strrchr(buf, ']');
2093 if (start && end) {
2094 *end = '\0';
2095 session_id = strtol(start + 1, NULL, 10);
2096 }
2097 }
2098 if (session_id < 0) {
2099 fprintf(stderr, "Failed to create session\n");
Christopher Tate29721da2014-07-14 16:45:13 -07002100 fputs(buf, stderr);
Todd Kennedy1e2f7dc2015-11-03 16:53:08 -08002101 return EXIT_FAILURE;
Jeff Sharkey0e0d2512014-06-09 17:30:57 -07002102 }
2103
2104 // Valid session, now stream the APKs
2105 int success = 1;
Elliott Hughes976bd832016-10-24 18:29:21 -07002106 for (int i = first_apk; i < argc; i++) {
Dan Albertf30d73c2015-02-25 17:51:28 -08002107 const char* file = argv[i];
Elliott Hughes976bd832016-10-24 18:29:21 -07002108 struct stat sb;
Jeff Sharkey0e0d2512014-06-09 17:30:57 -07002109 if (stat(file, &sb) == -1) {
Elliott Hughes976bd832016-10-24 18:29:21 -07002110 fprintf(stderr, "Failed to stat %s: %s\n", file, strerror(errno));
Jeff Sharkey0e0d2512014-06-09 17:30:57 -07002111 success = 0;
2112 goto finalize_session;
2113 }
2114
Elliott Hughesd1a5b2b2015-04-17 14:07:52 -07002115 std::string cmd = android::base::StringPrintf(
Todd Kennedy8c5cf622016-07-20 16:22:37 -07002116 "%s install-write -S %" PRIu64 " %d %d_%s -",
Colin Crosse6794072017-02-23 21:23:05 -08002117 install_cmd.c_str(), static_cast<uint64_t>(sb.st_size), session_id, i,
2118 android::base::Basename(file).c_str());
Jeff Sharkey0e0d2512014-06-09 17:30:57 -07002119
2120 int localFd = adb_open(file, O_RDONLY);
2121 if (localFd < 0) {
Elliott Hughes04a98c22015-04-29 08:35:59 -07002122 fprintf(stderr, "Failed to open %s: %s\n", file, strerror(errno));
Jeff Sharkey0e0d2512014-06-09 17:30:57 -07002123 success = 0;
2124 goto finalize_session;
2125 }
2126
Elliott Hughes04a98c22015-04-29 08:35:59 -07002127 std::string error;
Elliott Hughesda945812015-04-29 12:28:13 -07002128 int remoteFd = adb_connect(cmd, &error);
Jeff Sharkey0e0d2512014-06-09 17:30:57 -07002129 if (remoteFd < 0) {
Elliott Hughes04a98c22015-04-29 08:35:59 -07002130 fprintf(stderr, "Connect error for write: %s\n", error.c_str());
Jeff Sharkey0e0d2512014-06-09 17:30:57 -07002131 adb_close(localFd);
2132 success = 0;
2133 goto finalize_session;
2134 }
2135
2136 copy_to_file(localFd, remoteFd);
2137 read_status_line(remoteFd, buf, sizeof(buf));
2138
2139 adb_close(localFd);
2140 adb_close(remoteFd);
2141
2142 if (strncmp("Success", buf, 7)) {
2143 fprintf(stderr, "Failed to write %s\n", file);
Christopher Tate29721da2014-07-14 16:45:13 -07002144 fputs(buf, stderr);
Jeff Sharkey0e0d2512014-06-09 17:30:57 -07002145 success = 0;
2146 goto finalize_session;
2147 }
2148 }
2149
2150finalize_session:
Jeff Sharkey01f6fbf2014-07-25 09:58:25 -07002151 // Commit session if we streamed everything okay; otherwise abandon
Elliott Hughesda945812015-04-29 12:28:13 -07002152 std::string service =
Todd Kennedy8c5cf622016-07-20 16:22:37 -07002153 android::base::StringPrintf("%s install-%s %d",
2154 install_cmd.c_str(), success ? "commit" : "abandon", session_id);
Elliott Hughesda945812015-04-29 12:28:13 -07002155 fd = adb_connect(service, &error);
Jeff Sharkey0e0d2512014-06-09 17:30:57 -07002156 if (fd < 0) {
Elliott Hughes04a98c22015-04-29 08:35:59 -07002157 fprintf(stderr, "Connect error for finalize: %s\n", error.c_str());
Todd Kennedy1e2f7dc2015-11-03 16:53:08 -08002158 return EXIT_FAILURE;
Jeff Sharkey0e0d2512014-06-09 17:30:57 -07002159 }
2160 read_status_line(fd, buf, sizeof(buf));
2161 adb_close(fd);
2162
2163 if (!strncmp("Success", buf, 7)) {
Christopher Tate29721da2014-07-14 16:45:13 -07002164 fputs(buf, stderr);
Jeff Sharkey0e0d2512014-06-09 17:30:57 -07002165 return 0;
2166 } else {
2167 fprintf(stderr, "Failed to finalize session\n");
Christopher Tate29721da2014-07-14 16:45:13 -07002168 fputs(buf, stderr);
Todd Kennedy1e2f7dc2015-11-03 16:53:08 -08002169 return EXIT_FAILURE;
Jeff Sharkey0e0d2512014-06-09 17:30:57 -07002170 }
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -08002171}
Todd Kennedy1e2f7dc2015-11-03 16:53:08 -08002172
2173static int pm_command(TransportType transport, const char* serial, int argc, const char** argv) {
2174 std::string cmd = "pm";
2175
2176 while (argc-- > 0) {
2177 cmd += " " + escape_arg(*argv++);
2178 }
2179
2180 return send_shell_command(transport, serial, cmd, false);
2181}
2182
2183static int uninstall_app_legacy(TransportType transport, const char* serial, int argc, const char** argv) {
2184 /* if the user choose the -k option, we refuse to do it until devices are
2185 out with the option to uninstall the remaining data somehow (adb/ui) */
2186 int i;
2187 for (i = 1; i < argc; i++) {
2188 if (!strcmp(argv[i], "-k")) {
2189 printf(
2190 "The -k option uninstalls the application while retaining the data/cache.\n"
2191 "At the moment, there is no way to remove the remaining data.\n"
2192 "You will have to reinstall the application with the same signature, and fully uninstall it.\n"
2193 "If you truly wish to continue, execute 'adb shell pm uninstall -k'\n.");
2194 return EXIT_FAILURE;
2195 }
2196 }
2197
2198 /* 'adb uninstall' takes the same arguments as 'pm uninstall' on device */
2199 return pm_command(transport, serial, argc, argv);
2200}
2201
2202static int delete_file(TransportType transport, const char* serial, const std::string& filename) {
2203 std::string cmd = "rm -f " + escape_arg(filename);
2204 return send_shell_command(transport, serial, cmd, false);
2205}
2206
2207static int install_app_legacy(TransportType transport, const char* serial, int argc, const char** argv) {
2208 static const char *const DATA_DEST = "/data/local/tmp/%s";
2209 static const char *const SD_DEST = "/sdcard/tmp/%s";
2210 const char* where = DATA_DEST;
Todd Kennedy1e2f7dc2015-11-03 16:53:08 -08002211
Elliott Hughes976bd832016-10-24 18:29:21 -07002212 for (int i = 1; i < argc; i++) {
Todd Kennedy1e2f7dc2015-11-03 16:53:08 -08002213 if (!strcmp(argv[i], "-s")) {
2214 where = SD_DEST;
2215 }
2216 }
2217
2218 // Find last APK argument.
2219 // All other arguments passed through verbatim.
2220 int last_apk = -1;
Elliott Hughes976bd832016-10-24 18:29:21 -07002221 for (int i = argc - 1; i >= 0; i--) {
2222 if (android::base::EndsWithIgnoreCase(argv[i], ".apk")) {
Todd Kennedy1e2f7dc2015-11-03 16:53:08 -08002223 last_apk = i;
2224 break;
2225 }
2226 }
2227
2228 if (last_apk == -1) {
Elliott Hughes976bd832016-10-24 18:29:21 -07002229 fprintf(stderr, "No APK file on command line\n");
Todd Kennedy1e2f7dc2015-11-03 16:53:08 -08002230 return EXIT_FAILURE;
2231 }
2232
2233 int result = -1;
2234 std::vector<const char*> apk_file = {argv[last_apk]};
2235 std::string apk_dest = android::base::StringPrintf(
Colin Crosse6794072017-02-23 21:23:05 -08002236 where, android::base::Basename(argv[last_apk]).c_str());
Todd Kennedy1e2f7dc2015-11-03 16:53:08 -08002237 if (!do_sync_push(apk_file, apk_dest.c_str())) goto cleanup_apk;
2238 argv[last_apk] = apk_dest.c_str(); /* destination name, not source location */
2239 result = pm_command(transport, serial, argc, argv);
2240
2241cleanup_apk:
2242 delete_file(transport, serial, apk_dest);
2243 return result;
2244}