blob: f8a5d1317e68ca3e58efdeff5a58729829f24140 [file] [log] [blame]
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001/*
2 * Copyright (C) 2007 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
Yabin Cuiaed3c612015-09-22 15:52:57 -070017#define TRACE_TAG ADB
Dan Albert33134262015-03-19 15:21:08 -070018
19#include "sysdeps.h"
20
Dan Albert76649012015-02-24 15:51:19 -080021#include <assert.h>
22#include <ctype.h>
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -080023#include <errno.h>
Elliott Hughes2940ccf2015-04-17 14:07:52 -070024#include <inttypes.h>
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -080025#include <limits.h>
26#include <stdarg.h>
Dan Albert76649012015-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 Projectdd7bc332009-03-03 19:32:55 -080031#include <sys/stat.h>
Dan Albert76649012015-02-24 15:51:19 -080032#include <sys/types.h>
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -080033
David Pursell606835a2015-09-08 17:17:02 -070034#include <memory>
Elliott Hughes2baae3a2015-04-17 10:59:34 -070035#include <string>
Josh Gao05786772015-10-30 16:57:19 -070036#include <vector>
Elliott Hughes2baae3a2015-04-17 10:59:34 -070037
Elliott Hughese8b663f2016-05-26 22:43:19 -070038#include <android-base/file.h>
Elliott Hughes4f713192015-12-04 22:00:26 -080039#include <android-base/logging.h>
40#include <android-base/stringprintf.h>
41#include <android-base/strings.h>
Elliott Hughes2baae3a2015-04-17 10:59:34 -070042
Yabin Cuid325e862014-11-17 14:48:25 -080043#if !defined(_WIN32)
Josh Gao8dcdb572015-10-23 15:03:31 -070044#include <signal.h>
Elliott Hughes0fbf9612015-11-04 13:07:47 -080045#include <sys/ioctl.h>
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -080046#include <termios.h>
Dan Albert76649012015-02-24 15:51:19 -080047#include <unistd.h>
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -080048#endif
49
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -080050#include "adb.h"
Nick Kralevichbea3f9c2014-11-13 15:17:29 -080051#include "adb_auth.h"
Dan Albertcc731cc2015-02-24 21:26:58 -080052#include "adb_client.h"
53#include "adb_io.h"
Elliott Hughes58305772015-04-17 13:57:15 -070054#include "adb_utils.h"
Felipe Leme218e1ff2016-07-19 17:07:22 -070055#include "bugreport.h"
56#include "commandline.h"
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -080057#include "file_sync_service.h"
David Pursell70ef7b42015-09-30 13:35:42 -070058#include "services.h"
David Pursell606835a2015-09-08 17:17:02 -070059#include "shell_service.h"
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -080060
Elliott Hughes3bd73c12015-05-05 13:10:43 -070061static int install_app(TransportType t, const char* serial, int argc, const char** argv);
62static int install_multiple_app(TransportType t, const char* serial, int argc, const char** argv);
63static int uninstall_app(TransportType t, const char* serial, int argc, const char** argv);
Todd Kennedy6fa848a2015-11-03 16:53:08 -080064static int install_app_legacy(TransportType t, const char* serial, int argc, const char** argv);
65static int uninstall_app_legacy(TransportType t, const char* serial, int argc, const char** argv);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -080066
Josh Gaob7b1edf2015-11-11 17:56:12 -080067static auto& gProductOutPath = *new std::string();
Matt Gumbeld7b33082012-11-14 10:16:17 -080068extern int gListenAll;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -080069
Felipe Lemed1885422016-07-26 12:14:39 -070070DefaultStandardStreamsCallback DEFAULT_STANDARD_STREAMS_CALLBACK(nullptr, nullptr);
71
Elliott Hughes58305772015-04-17 13:57:15 -070072static std::string product_file(const char *extra) {
73 if (gProductOutPath.empty()) {
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -080074 fprintf(stderr, "adb: Product directory not specified; "
75 "use -p or define ANDROID_PRODUCT_OUT\n");
76 exit(1);
77 }
78
Elliott Hughes58305772015-04-17 13:57:15 -070079 return android::base::StringPrintf("%s%s%s",
80 gProductOutPath.c_str(), OS_PATH_SEPARATOR_STR, extra);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -080081}
82
Elliott Hughes58305772015-04-17 13:57:15 -070083static void help() {
Elliott Hughes42ae2602015-08-12 08:32:10 -070084 fprintf(stderr, "%s\n", adb_version().c_str());
Felipe Lemef8d9e4e2016-07-29 17:57:00 -070085 // clang-format off
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -080086 fprintf(stderr,
Matt Gumbeld7b33082012-11-14 10:16:17 -080087 " -a - directs adb to listen on all interfaces for a connection\n"
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -080088 " -d - directs command to the only connected USB device\n"
89 " returns an error if more than one USB device is present.\n"
90 " -e - directs command to the only running emulator.\n"
91 " returns an error if more than one emulator is running.\n"
Scott Andersone109d262012-04-20 11:21:14 -070092 " -s <specific device> - directs command to the device or emulator with the given\n"
Scott Anderson2ca3e6b2012-05-30 18:11:27 -070093 " serial number or qualifier. Overrides ANDROID_SERIAL\n"
Elliott Hughes31dbed72009-10-07 15:38:53 -070094 " environment variable.\n"
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -080095 " -p <product name or path> - simple product name like 'sooner', or\n"
96 " a relative/absolute path to a product\n"
97 " out directory like 'out/target/product/sooner'.\n"
98 " If -p is not specified, the ANDROID_PRODUCT_OUT\n"
99 " environment variable is used, which must\n"
100 " be an absolute path.\n"
Matt Gumbeld7b33082012-11-14 10:16:17 -0800101 " -H - Name of adb server host (default: localhost)\n"
102 " -P - Port of adb server (default: 5037)\n"
Scott Andersone109d262012-04-20 11:21:14 -0700103 " devices [-l] - list all connected devices\n"
Scott Anderson2ca3e6b2012-05-30 18:11:27 -0700104 " ('-l' will also list device qualifiers)\n"
Mike Lockwoodcbbe79a2010-05-24 10:44:35 -0400105 " connect <host>[:<port>] - connect to a device via TCP/IP\n"
106 " Port 5555 is used by default if no port number is specified.\n"
107 " disconnect [<host>[:<port>]] - disconnect from a TCP/IP device.\n"
108 " Port 5555 is used by default if no port number is specified.\n"
Bernhard Reutner-Fischer6715a432011-04-26 12:46:05 +0200109 " Using this command with no additional arguments\n"
Mike Lockwoodcbbe79a2010-05-24 10:44:35 -0400110 " will disconnect from all connected TCP/IP devices.\n"
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800111 "\n"
112 "device commands:\n"
Josh Gao05786772015-10-30 16:57:19 -0700113 " adb push <local>... <remote>\n"
114 " - copy files/dirs to device\n"
115 " adb pull [-a] <remote>... <local>\n"
116 " - copy files/dirs from device\n"
117 " (-a preserves file timestamp and mode)\n"
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800118 " adb sync [ <directory> ] - copy host->device only if changed\n"
Anthony Newnam705c9442010-02-22 08:36:49 -0600119 " (-l means list but don't copy)\n"
Josh Gao7d586072015-11-20 15:37:31 -0800120 " adb shell [-e escape] [-n] [-Tt] [-x] [command]\n"
Elliott Hughes0e42c2a2015-11-10 10:54:44 -0800121 " - run remote shell command (interactive shell if no command given)\n"
122 " (-e: choose escape character, or \"none\"; default '~')\n"
Josh Gao7d586072015-11-20 15:37:31 -0800123 " (-n: don't read from stdin)\n"
Elliott Hughes0e42c2a2015-11-10 10:54:44 -0800124 " (-T: disable PTY allocation)\n"
125 " (-t: force PTY allocation)\n"
126 " (-x: disable remote exit codes and stdout/stderr separation)\n"
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800127 " adb emu <command> - run emulator console command\n"
128 " adb logcat [ <filter-spec> ] - View device log\n"
David 'Digit' Turner0d82fbf2012-11-14 15:01:55 +0100129 " adb forward --list - list all forward socket connections.\n"
130 " the format is a list of lines with the following format:\n"
131 " <serial> \" \" <local> \" \" <remote> \"\\n\"\n"
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800132 " adb forward <local> <remote> - forward socket connections\n"
133 " forward specs are one of: \n"
David Purselleaae97e2016-04-07 11:25:48 -0700134 " tcp:<port> (<local> may be \"tcp:0\" to pick any open port)\n"
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800135 " localabstract:<unix domain socket name>\n"
136 " localreserved:<unix domain socket name>\n"
137 " localfilesystem:<unix domain socket name>\n"
138 " dev:<character device name>\n"
139 " jdwp:<process pid> (remote only)\n"
David 'Digit' Turner0d82fbf2012-11-14 15:01:55 +0100140 " adb forward --no-rebind <local> <remote>\n"
141 " - same as 'adb forward <local> <remote>' but fails\n"
142 " if <local> is already forwarded\n"
143 " adb forward --remove <local> - remove a specific forward socket connection\n"
144 " adb forward --remove-all - remove all forward socket connections\n"
David 'Digit' Turner25258692013-03-21 21:07:42 +0100145 " adb reverse --list - list all reverse socket connections from device\n"
146 " adb reverse <remote> <local> - reverse socket connections\n"
147 " reverse specs are one of:\n"
David Purselleaae97e2016-04-07 11:25:48 -0700148 " tcp:<port> (<remote> may be \"tcp:0\" to pick any open port)\n"
David 'Digit' Turner25258692013-03-21 21:07:42 +0100149 " localabstract:<unix domain socket name>\n"
150 " localreserved:<unix domain socket name>\n"
151 " localfilesystem:<unix domain socket name>\n"
Spencer Low587ea202015-11-02 17:34:49 -0800152 " adb reverse --no-rebind <remote> <local>\n"
David 'Digit' Turner25258692013-03-21 21:07:42 +0100153 " - same as 'adb reverse <remote> <local>' but fails\n"
154 " if <remote> is already reversed.\n"
155 " adb reverse --remove <remote>\n"
156 " - remove a specific reversed socket connection\n"
157 " adb reverse --remove-all - remove all reversed socket connections from device\n"
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800158 " adb jdwp - list PIDs of processes hosting a JDWP transport\n"
Lorenzo Colitti0b3baac2015-05-28 12:03:44 +0900159 " adb install [-lrtsdg] <file>\n"
Svetoslav23d84072015-06-01 16:02:50 -0700160 " - push this package file to the device and install it\n"
161 " (-l: forward lock application)\n"
162 " (-r: replace existing application)\n"
163 " (-t: allow test packages)\n"
164 " (-s: install application on sdcard)\n"
Alex Klyubin85ed9752016-02-24 16:07:47 -0800165 " (-d: allow version code downgrade (debuggable packages only))\n"
Svetoslav23d84072015-06-01 16:02:50 -0700166 " (-g: grant all runtime permissions)\n"
Lorenzo Colitti0b3baac2015-05-28 12:03:44 +0900167 " adb install-multiple [-lrtsdpg] <file...>\n"
Anonymous Coward4474ac42012-04-24 10:43:41 -0700168 " - push this package file to the device and install it\n"
Jeff Sharkey960df972014-06-09 17:30:57 -0700169 " (-l: forward lock application)\n"
170 " (-r: replace existing application)\n"
171 " (-t: allow test packages)\n"
172 " (-s: install application on sdcard)\n"
Alex Klyubin85ed9752016-02-24 16:07:47 -0800173 " (-d: allow version code downgrade (debuggable packages only))\n"
Jeff Sharkey960df972014-06-09 17:30:57 -0700174 " (-p: partial application install)\n"
Lorenzo Colitti0b3baac2015-05-28 12:03:44 +0900175 " (-g: grant all runtime permissions)\n"
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800176 " adb uninstall [-k] <package> - remove this app package from the device\n"
177 " ('-k' means keep the data and cache directories)\n"
Felipe Lemef8d9e4e2016-07-29 17:57:00 -0700178 " adb bugreport [<path>] - return all information from the device that should be included in a zipped bug report.\n"
179 " If <path> is a file, the bug report will be saved as that file.\n"
180 " If <path> is a directory, the bug report will be saved in that directory with the name provided by the device.\n"
181 " If <path> is omitted, the bug report will be saved in the current directory with the name provided by the device.\n"
182 " NOTE: if the device does not support zipped bug reports, the bug report will be output on stdout.\n"
Christopher Tate0c06eb52013-03-06 16:40:52 -0800183 " adb backup [-f <file>] [-apk|-noapk] [-obb|-noobb] [-shared|-noshared] [-all] [-system|-nosystem] [<packages...>]\n"
Christopher Tate56885092011-10-03 18:27:01 -0700184 " - write an archive of the device's data to <file>.\n"
185 " If no -f option is supplied then the data is written\n"
186 " to \"backup.ab\" in the current directory.\n"
Christopher Tated2f54152011-04-21 12:53:28 -0700187 " (-apk|-noapk enable/disable backup of the .apks themselves\n"
Christopher Tatede034ec2011-08-09 17:05:29 -0700188 " in the archive; the default is noapk.)\n"
Christopher Tate0c06eb52013-03-06 16:40:52 -0800189 " (-obb|-noobb enable/disable backup of any installed apk expansion\n"
190 " (aka .obb) files associated with each application; the default\n"
191 " is noobb.)\n"
Christopher Tated2f54152011-04-21 12:53:28 -0700192 " (-shared|-noshared enable/disable backup of the device's\n"
193 " shared storage / SD card contents; the default is noshared.)\n"
194 " (-all means to back up all installed applications)\n"
Christopher Tate56885092011-10-03 18:27:01 -0700195 " (-system|-nosystem toggles whether -all automatically includes\n"
196 " system applications; the default is to include system apps)\n"
Christopher Tated2f54152011-04-21 12:53:28 -0700197 " (<packages...> is the list of applications to be backed up. If\n"
198 " the -all or -shared flags are passed, then the package\n"
Christopher Tate56885092011-10-03 18:27:01 -0700199 " list is optional. Applications explicitly given on the\n"
200 " command line will be included even if -nosystem would\n"
201 " ordinarily cause them to be omitted.)\n"
Christopher Tated2f54152011-04-21 12:53:28 -0700202 "\n"
Christopher Tatede034ec2011-08-09 17:05:29 -0700203 " adb restore <file> - restore device contents from the <file> backup archive\n"
Christopher Tate702967a2011-05-17 15:52:54 -0700204 "\n"
Paul Lawrence982089d2014-12-03 15:31:57 -0800205 " adb disable-verity - disable dm-verity checking on USERDEBUG builds\n"
206 " adb enable-verity - re-enable dm-verity checking on USERDEBUG builds\n"
Nick Kralevichbea3f9c2014-11-13 15:17:29 -0800207 " adb keygen <file> - generate adb public/private key. The private key is stored in <file>,\n"
208 " and the public key is stored in <file>.pub. Any existing files\n"
209 " are overwritten.\n"
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800210 " adb help - show this help message\n"
211 " adb version - show version num\n"
212 "\n"
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800213 "scripting:\n"
Leo Sartre1fbc9db2015-11-27 18:56:48 +0100214 " adb wait-for[-<transport>]-<state>\n"
215 " - wait for device to be in the given state:\n"
216 " device, recovery, sideload, or bootloader\n"
217 " Transport is: usb, local or any [default=any]\n"
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800218 " adb start-server - ensure that there is a server running\n"
219 " adb kill-server - kill the server if it is running\n"
220 " adb get-state - prints: offline | bootloader | device\n"
221 " adb get-serialno - prints: <serial-number>\n"
Scott Andersone109d262012-04-20 11:21:14 -0700222 " adb get-devpath - prints: <device-path>\n"
Elliott Hughesec7a6672015-03-16 21:58:32 +0000223 " adb remount - remounts the /system, /vendor (if present) and /oem (if present) partitions on the device read-write\n"
Tao Bao175b7bb2015-03-29 11:22:34 -0700224 " adb reboot [bootloader|recovery]\n"
225 " - reboots the device, optionally into the bootloader or recovery program.\n"
226 " adb reboot sideload - reboots the device into the sideload mode in recovery program (adb root required).\n"
227 " adb reboot sideload-auto-reboot\n"
228 " - reboots into the sideload mode, then reboots automatically after the sideload regardless of the result.\n"
Elliott Hughes7e067cf2015-06-12 14:26:29 -0700229 " adb sideload <file> - sideloads the given package\n"
Mike Lockwoodff196702009-08-24 15:58:40 -0700230 " adb root - restarts the adbd daemon with root permissions\n"
Dan Pasanen98858812014-10-06 12:57:20 -0500231 " adb unroot - restarts the adbd daemon without root permissions\n"
Romain Guy311add42009-12-14 14:42:17 -0800232 " adb usb - restarts the adbd daemon listening on USB\n"
Paul Lawrenceec900bb2014-10-09 14:22:49 +0000233 " adb tcpip <port> - restarts the adbd daemon listening on TCP on the specified port\n"
Elliott Hughes7e067cf2015-06-12 14:26:29 -0700234 "\n"
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800235 "networking:\n"
236 " adb ppp <tty> [parameters] - Run PPP over USB.\n"
Kenny Rootc9891992009-06-08 14:40:30 -0500237 " Note: you should not automatically start a PPP connection.\n"
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800238 " <tty> refers to the tty for PPP stream. Eg. dev:/dev/omap_csmi_tty1\n"
239 " [parameters] - Eg. defaultroute debug dump local notty usepeerdns\n"
240 "\n"
241 "adb sync notes: adb sync [ <directory> ]\n"
242 " <localdir> can be interpreted in several ways:\n"
243 "\n"
Elliott Hughesec7a6672015-03-16 21:58:32 +0000244 " - If <directory> is not specified, /system, /vendor (if present), /oem (if present) and /data partitions will be updated.\n"
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800245 "\n"
Elliott Hughesec7a6672015-03-16 21:58:32 +0000246 " - If it is \"system\", \"vendor\", \"oem\" or \"data\", only the corresponding partition\n"
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800247 " is updated.\n"
Timcd643152010-02-16 20:18:29 +0000248 "\n"
Yabin Cui1f4ec192016-04-05 13:50:44 -0700249 "internal debugging:\n"
250 " adb reconnect Kick current connection from host side and make it reconnect.\n"
251 " adb reconnect device Kick current connection from device side and make it reconnect.\n"
Elliott Hughes7e067cf2015-06-12 14:26:29 -0700252 "environment variables:\n"
Timcd643152010-02-16 20:18:29 +0000253 " ADB_TRACE - Print debug information. A comma separated list of the following values\n"
254 " 1 or all, adb, sockets, packets, rwx, usb, sync, sysdeps, transport, jdwp\n"
255 " ANDROID_SERIAL - The serial number to connect to. -s takes priority over this if given.\n"
Felipe Lemef8d9e4e2016-07-29 17:57:00 -0700256 " ANDROID_LOG_TAGS - When used with the logcat option, only these debug tags are printed.\n");
257 // clang-format on
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800258}
259
Felipe Leme218e1ff2016-07-19 17:07:22 -0700260int usage() {
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800261 help();
262 return 1;
263}
264
Yabin Cuid325e862014-11-17 14:48:25 -0800265#if defined(_WIN32)
266
Elliott Hughesa2f2e562015-04-16 16:47:02 -0700267// Implemented in sysdeps_win32.cpp.
Elliott Hughesc15b17f2015-11-03 11:18:40 -0800268void stdin_raw_init();
269void stdin_raw_restore();
Yabin Cuid325e862014-11-17 14:48:25 -0800270
271#else
Alistair Buxtondfa09fd2013-03-01 22:16:41 +0100272static termios g_saved_terminal_state;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800273
Elliott Hughesc15b17f2015-11-03 11:18:40 -0800274static void stdin_raw_init() {
275 if (tcgetattr(STDIN_FILENO, &g_saved_terminal_state)) return;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800276
Alistair Buxtondfa09fd2013-03-01 22:16:41 +0100277 termios tio;
Elliott Hughesc15b17f2015-11-03 11:18:40 -0800278 if (tcgetattr(STDIN_FILENO, &tio)) return;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800279
Alistair Buxtondfa09fd2013-03-01 22:16:41 +0100280 cfmakeraw(&tio);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800281
Alistair Buxtondfa09fd2013-03-01 22:16:41 +0100282 // No timeout but request at least one character per read.
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800283 tio.c_cc[VTIME] = 0;
284 tio.c_cc[VMIN] = 1;
285
Elliott Hughesc15b17f2015-11-03 11:18:40 -0800286 tcsetattr(STDIN_FILENO, TCSAFLUSH, &tio);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800287}
288
Elliott Hughesc15b17f2015-11-03 11:18:40 -0800289static void stdin_raw_restore() {
290 tcsetattr(STDIN_FILENO, TCSAFLUSH, &g_saved_terminal_state);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800291}
292#endif
293
David Pursell606835a2015-09-08 17:17:02 -0700294// Reads from |fd| and prints received data. If |use_shell_protocol| is true
295// this expects that incoming data will use the shell protocol, in which case
296// stdout/stderr are routed independently and the remote exit code will be
297// returned.
Felipe Lemed1885422016-07-26 12:14:39 -0700298// if |callback| is non-null, stdout/stderr output will be handled by it.
299int read_and_dump(int fd, bool use_shell_protocol = false,
300 StandardStreamsCallbackInterface* callback = &DEFAULT_STANDARD_STREAMS_CALLBACK) {
David Pursell606835a2015-09-08 17:17:02 -0700301 int exit_code = 0;
Felipe Lemed1dd1252016-06-06 16:05:36 -0700302 if (fd < 0) return exit_code;
303
David Pursell606835a2015-09-08 17:17:02 -0700304 std::unique_ptr<ShellProtocol> protocol;
305 int length = 0;
David Pursell606835a2015-09-08 17:17:02 -0700306
307 char raw_buffer[BUFSIZ];
308 char* buffer_ptr = raw_buffer;
309 if (use_shell_protocol) {
310 protocol.reset(new ShellProtocol(fd));
311 if (!protocol) {
312 LOG(ERROR) << "failed to allocate memory for ShellProtocol object";
313 return 1;
314 }
315 buffer_ptr = protocol->data();
316 }
317
Felipe Lemed1dd1252016-06-06 16:05:36 -0700318 while (true) {
David Pursell606835a2015-09-08 17:17:02 -0700319 if (use_shell_protocol) {
320 if (!protocol->Read()) {
321 break;
322 }
Felipe Lemed1885422016-07-26 12:14:39 -0700323 length = protocol->data_length();
David Pursell606835a2015-09-08 17:17:02 -0700324 switch (protocol->id()) {
325 case ShellProtocol::kIdStdout:
Felipe Lemed1885422016-07-26 12:14:39 -0700326 callback->OnStdout(buffer_ptr, length);
David Pursell606835a2015-09-08 17:17:02 -0700327 break;
328 case ShellProtocol::kIdStderr:
Felipe Lemed1885422016-07-26 12:14:39 -0700329 callback->OnStderr(buffer_ptr, length);
David Pursell606835a2015-09-08 17:17:02 -0700330 break;
331 case ShellProtocol::kIdExit:
332 exit_code = protocol->data()[0];
333 continue;
334 default:
335 continue;
336 }
337 length = protocol->data_length();
338 } else {
339 D("read_and_dump(): pre adb_read(fd=%d)", fd);
340 length = adb_read(fd, raw_buffer, sizeof(raw_buffer));
341 D("read_and_dump(): post adb_read(fd=%d): length=%d", fd, length);
342 if (length <= 0) {
343 break;
344 }
Felipe Lemed1885422016-07-26 12:14:39 -0700345 callback->OnStdout(buffer_ptr, length);
Felipe Leme44a42672016-04-01 17:43:27 -0700346 }
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800347 }
David Pursell606835a2015-09-08 17:17:02 -0700348
Felipe Lemed1885422016-07-26 12:14:39 -0700349 return callback->Done(exit_code);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800350}
351
Jeff Sharkey960df972014-06-09 17:30:57 -0700352static void read_status_line(int fd, char* buf, size_t count)
353{
354 count--;
355 while (count > 0) {
356 int len = adb_read(fd, buf, count);
Elliott Hughes8fcd8bc2015-08-25 10:59:45 -0700357 if (len <= 0) {
Jeff Sharkey960df972014-06-09 17:30:57 -0700358 break;
359 }
360
361 buf += len;
362 count -= len;
363 }
364 *buf = '\0';
365}
366
Christopher Tated2f54152011-04-21 12:53:28 -0700367static void copy_to_file(int inFd, int outFd) {
Christopher Tate5b811fa2011-06-10 11:38:37 -0700368 const size_t BUFSIZE = 32 * 1024;
369 char* buf = (char*) malloc(BUFSIZE);
Elliott Hughesdc3b4592015-04-21 19:39:52 -0700370 if (buf == nullptr) fatal("couldn't allocate buffer for copy_to_file");
Christopher Tated2f54152011-04-21 12:53:28 -0700371 int len;
Christopher Tatec9cd3b92011-06-01 17:56:23 -0700372 long total = 0;
Spencer Lowb7dfb792015-05-22 16:48:31 -0700373#ifdef _WIN32
374 int old_stdin_mode = -1;
375 int old_stdout_mode = -1;
376#endif
Christopher Tated2f54152011-04-21 12:53:28 -0700377
Yabin Cui7a3f8d62015-09-02 17:44:28 -0700378 D("copy_to_file(%d -> %d)", inFd, outFd);
Yabin Cuid325e862014-11-17 14:48:25 -0800379
Jeff Sharkey5d9d4342014-05-26 18:30:43 -0700380 if (inFd == STDIN_FILENO) {
Elliott Hughesc15b17f2015-11-03 11:18:40 -0800381 stdin_raw_init();
Spencer Lowb7dfb792015-05-22 16:48:31 -0700382#ifdef _WIN32
383 old_stdin_mode = _setmode(STDIN_FILENO, _O_BINARY);
384 if (old_stdin_mode == -1) {
385 fatal_errno("could not set stdin to binary");
386 }
387#endif
Jeff Sharkey5d9d4342014-05-26 18:30:43 -0700388 }
Yabin Cuid325e862014-11-17 14:48:25 -0800389
Spencer Lowb7dfb792015-05-22 16:48:31 -0700390#ifdef _WIN32
391 if (outFd == STDOUT_FILENO) {
392 old_stdout_mode = _setmode(STDOUT_FILENO, _O_BINARY);
393 if (old_stdout_mode == -1) {
394 fatal_errno("could not set stdout to binary");
395 }
396 }
397#endif
398
Elliott Hughesa7090b92015-04-17 17:03:59 -0700399 while (true) {
Jeff Sharkey5d9d4342014-05-26 18:30:43 -0700400 if (inFd == STDIN_FILENO) {
401 len = unix_read(inFd, buf, BUFSIZE);
402 } else {
403 len = adb_read(inFd, buf, BUFSIZE);
404 }
Christopher Tated2f54152011-04-21 12:53:28 -0700405 if (len == 0) {
Yabin Cui7a3f8d62015-09-02 17:44:28 -0700406 D("copy_to_file() : read 0 bytes; exiting");
Christopher Tated2f54152011-04-21 12:53:28 -0700407 break;
408 }
409 if (len < 0) {
Yabin Cui7a3f8d62015-09-02 17:44:28 -0700410 D("copy_to_file(): read failed: %s", strerror(errno));
Christopher Tated2f54152011-04-21 12:53:28 -0700411 break;
412 }
Jeff Sharkey5d9d4342014-05-26 18:30:43 -0700413 if (outFd == STDOUT_FILENO) {
414 fwrite(buf, 1, len, stdout);
415 fflush(stdout);
416 } else {
417 adb_write(outFd, buf, len);
418 }
Christopher Tatec9cd3b92011-06-01 17:56:23 -0700419 total += len;
Christopher Tated2f54152011-04-21 12:53:28 -0700420 }
Yabin Cuid325e862014-11-17 14:48:25 -0800421
Jeff Sharkey5d9d4342014-05-26 18:30:43 -0700422 if (inFd == STDIN_FILENO) {
Elliott Hughesc15b17f2015-11-03 11:18:40 -0800423 stdin_raw_restore();
Spencer Lowb7dfb792015-05-22 16:48:31 -0700424#ifdef _WIN32
425 if (_setmode(STDIN_FILENO, old_stdin_mode) == -1) {
426 fatal_errno("could not restore stdin mode");
427 }
428#endif
Jeff Sharkey5d9d4342014-05-26 18:30:43 -0700429 }
Yabin Cuid325e862014-11-17 14:48:25 -0800430
Spencer Lowb7dfb792015-05-22 16:48:31 -0700431#ifdef _WIN32
432 if (outFd == STDOUT_FILENO) {
433 if (_setmode(STDOUT_FILENO, old_stdout_mode) == -1) {
434 fatal_errno("could not restore stdout mode");
435 }
436 }
437#endif
438
Yabin Cui7a3f8d62015-09-02 17:44:28 -0700439 D("copy_to_file() finished after %lu bytes", total);
Christopher Tate5b811fa2011-06-10 11:38:37 -0700440 free(buf);
Christopher Tated2f54152011-04-21 12:53:28 -0700441}
442
Elliott Hughesc15b17f2015-11-03 11:18:40 -0800443static void send_window_size_change(int fd, std::unique_ptr<ShellProtocol>& shell) {
Elliott Hughesc15b17f2015-11-03 11:18:40 -0800444 // Old devices can't handle window size changes.
445 if (shell == nullptr) return;
446
Spencer Low2e02dc62015-11-07 17:34:39 -0800447#if defined(_WIN32)
448 struct winsize {
449 unsigned short ws_row;
450 unsigned short ws_col;
451 unsigned short ws_xpixel;
452 unsigned short ws_ypixel;
453 };
454#endif
455
Elliott Hughesc15b17f2015-11-03 11:18:40 -0800456 winsize ws;
Spencer Low2e02dc62015-11-07 17:34:39 -0800457
458#if defined(_WIN32)
459 // If stdout is redirected to a non-console, we won't be able to get the
460 // console size, but that makes sense.
461 const intptr_t intptr_handle = _get_osfhandle(STDOUT_FILENO);
462 if (intptr_handle == -1) return;
463
464 const HANDLE handle = reinterpret_cast<const HANDLE>(intptr_handle);
465
466 CONSOLE_SCREEN_BUFFER_INFO info;
467 memset(&info, 0, sizeof(info));
468 if (!GetConsoleScreenBufferInfo(handle, &info)) return;
469
470 memset(&ws, 0, sizeof(ws));
471 // The number of visible rows, excluding offscreen scroll-back rows which are in info.dwSize.Y.
472 ws.ws_row = info.srWindow.Bottom - info.srWindow.Top + 1;
473 // If the user has disabled "Wrap text output on resize", they can make the screen buffer wider
474 // than the window, in which case we should use the width of the buffer.
475 ws.ws_col = info.dwSize.X;
476#else
Elliott Hughesc15b17f2015-11-03 11:18:40 -0800477 if (ioctl(fd, TIOCGWINSZ, &ws) == -1) return;
Spencer Low2e02dc62015-11-07 17:34:39 -0800478#endif
Elliott Hughesc15b17f2015-11-03 11:18:40 -0800479
480 // Send the new window size as human-readable ASCII for debugging convenience.
481 size_t l = snprintf(shell->data(), shell->data_capacity(), "%dx%d,%dx%d",
482 ws.ws_row, ws.ws_col, ws.ws_xpixel, ws.ws_ypixel);
483 shell->Write(ShellProtocol::kIdWindowSizeChange, l + 1);
Elliott Hughesc15b17f2015-11-03 11:18:40 -0800484}
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800485
David Pursell606835a2015-09-08 17:17:02 -0700486// Used to pass multiple values to the stdin read thread.
487struct StdinReadArgs {
488 int stdin_fd, write_fd;
David Pursell1ed57f02015-10-06 15:30:03 -0700489 bool raw_stdin;
David Pursell606835a2015-09-08 17:17:02 -0700490 std::unique_ptr<ShellProtocol> protocol;
Elliott Hughes28416d62015-11-04 13:36:32 -0800491 char escape_char;
David Pursell606835a2015-09-08 17:17:02 -0700492};
493
David Pursell606835a2015-09-08 17:17:02 -0700494// Loops to read from stdin and push the data to the given FD.
495// The argument should be a pointer to a StdinReadArgs object. This function
496// will take ownership of the object and delete it when finished.
Josh Gaod9db09c2016-02-12 14:31:15 -0800497static void stdin_read_thread_loop(void* x) {
David Pursell606835a2015-09-08 17:17:02 -0700498 std::unique_ptr<StdinReadArgs> args(reinterpret_cast<StdinReadArgs*>(x));
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800499
Elliott Hughesc15b17f2015-11-03 11:18:40 -0800500#if !defined(_WIN32)
501 // Mask SIGTTIN in case we're in a backgrounded process.
Josh Gao8dcdb572015-10-23 15:03:31 -0700502 sigset_t sigset;
503 sigemptyset(&sigset);
504 sigaddset(&sigset, SIGTTIN);
505 pthread_sigmask(SIG_BLOCK, &sigset, nullptr);
506#endif
507
Spencer Low2e02dc62015-11-07 17:34:39 -0800508#if defined(_WIN32)
509 // _get_interesting_input_record_uncached() causes unix_read_interruptible()
510 // to return -1 with errno == EINTR if the window size changes.
511#else
Elliott Hughesc15b17f2015-11-03 11:18:40 -0800512 // Unblock SIGWINCH for this thread, so our read(2) below will be
513 // interrupted if the window size changes.
514 sigset_t mask;
515 sigemptyset(&mask);
516 sigaddset(&mask, SIGWINCH);
517 pthread_sigmask(SIG_UNBLOCK, &mask, nullptr);
518#endif
519
520 // Set up the initial window size.
521 send_window_size_change(args->stdin_fd, args->protocol);
522
Elliott Hughes28416d62015-11-04 13:36:32 -0800523 char raw_buffer[BUFSIZ];
David Pursell606835a2015-09-08 17:17:02 -0700524 char* buffer_ptr = raw_buffer;
525 size_t buffer_size = sizeof(raw_buffer);
Elliott Hughesc15b17f2015-11-03 11:18:40 -0800526 if (args->protocol != nullptr) {
David Pursell606835a2015-09-08 17:17:02 -0700527 buffer_ptr = args->protocol->data();
528 buffer_size = args->protocol->data_capacity();
529 }
530
Elliott Hughes28416d62015-11-04 13:36:32 -0800531 // If we need to parse escape sequences, make life easy.
532 if (args->raw_stdin && args->escape_char != '\0') {
533 buffer_size = 1;
534 }
535
536 enum EscapeState { kMidFlow, kStartOfLine, kInEscape };
537 EscapeState state = kStartOfLine;
538
Elliott Hughesaa245492015-08-03 10:38:08 -0700539 while (true) {
Spencer Low2e02dc62015-11-07 17:34:39 -0800540 // Use unix_read_interruptible() rather than adb_read() for stdin.
541 D("stdin_read_thread_loop(): pre unix_read_interruptible(fdi=%d,...)", args->stdin_fd);
542 int r = unix_read_interruptible(args->stdin_fd, buffer_ptr,
543 buffer_size);
Elliott Hughesc15b17f2015-11-03 11:18:40 -0800544 if (r == -1 && errno == EINTR) {
545 send_window_size_change(args->stdin_fd, args->protocol);
546 continue;
547 }
Spencer Low2e02dc62015-11-07 17:34:39 -0800548 D("stdin_read_thread_loop(): post unix_read_interruptible(fdi=%d,...)", args->stdin_fd);
David Pursell1ed57f02015-10-06 15:30:03 -0700549 if (r <= 0) {
550 // Only devices using the shell protocol know to close subprocess
551 // stdin. For older devices we want to just leave the connection
552 // open, otherwise an unpredictable amount of return data could
553 // be lost due to the FD closing before all data has been received.
554 if (args->protocol) {
555 args->protocol->Write(ShellProtocol::kIdCloseStdin, 0);
556 }
557 break;
558 }
Elliott Hughes28416d62015-11-04 13:36:32 -0800559 // If we made stdin raw, check input for escape sequences. In
David Pursell1ed57f02015-10-06 15:30:03 -0700560 // this situation signals like Ctrl+C are sent remotely rather than
561 // interpreted locally so this provides an emergency out if the remote
562 // process starts ignoring the signal. SSH also does this, see the
563 // "escape characters" section on the ssh man page for more info.
Elliott Hughes28416d62015-11-04 13:36:32 -0800564 if (args->raw_stdin && args->escape_char != '\0') {
565 char ch = buffer_ptr[0];
566 if (ch == args->escape_char) {
567 if (state == kStartOfLine) {
568 state = kInEscape;
569 // Swallow the escape character.
570 continue;
571 } else {
572 state = kMidFlow;
573 }
574 } else {
575 if (state == kInEscape) {
576 if (ch == '.') {
577 fprintf(stderr,"\r\n[ disconnected ]\r\n");
Elliott Hughesc15b17f2015-11-03 11:18:40 -0800578 stdin_raw_restore();
David Pursell1ed57f02015-10-06 15:30:03 -0700579 exit(0);
Elliott Hughes28416d62015-11-04 13:36:32 -0800580 } else {
581 // We swallowed an escape character that wasn't part of
582 // a valid escape sequence; time to cough it up.
583 buffer_ptr[0] = args->escape_char;
584 buffer_ptr[1] = ch;
585 ++r;
David Pursell1ed57f02015-10-06 15:30:03 -0700586 }
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800587 }
Elliott Hughes28416d62015-11-04 13:36:32 -0800588 state = (ch == '\n' || ch == '\r') ? kStartOfLine : kMidFlow;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800589 }
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800590 }
David Pursell606835a2015-09-08 17:17:02 -0700591 if (args->protocol) {
592 if (!args->protocol->Write(ShellProtocol::kIdStdin, r)) {
593 break;
594 }
595 } else {
596 if (!WriteFdExactly(args->write_fd, buffer_ptr, r)) {
597 break;
598 }
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800599 }
600 }
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800601}
602
David Pursell1ed57f02015-10-06 15:30:03 -0700603// Returns a shell service string with the indicated arguments and command.
604static std::string ShellServiceString(bool use_shell_protocol,
605 const std::string& type_arg,
606 const std::string& command) {
607 std::vector<std::string> args;
608 if (use_shell_protocol) {
609 args.push_back(kShellServiceArgShellProtocol);
Elliott Hughesc2252df2015-11-18 12:45:48 -0800610
611 const char* terminal_type = getenv("TERM");
612 if (terminal_type != nullptr) {
613 args.push_back(std::string("TERM=") + terminal_type);
614 }
David Pursell1ed57f02015-10-06 15:30:03 -0700615 }
616 if (!type_arg.empty()) {
617 args.push_back(type_arg);
618 }
619
620 // Shell service string can look like: shell[,arg1,arg2,...]:[command].
621 return android::base::StringPrintf("shell%s%s:%s",
622 args.empty() ? "" : ",",
623 android::base::Join(args, ',').c_str(),
624 command.c_str());
625}
626
627// Connects to a shell on the device and read/writes data.
628//
629// Note: currently this function doesn't properly clean up resources; the
630// FD connected to the adb server is never closed and the stdin read thread
631// may never exit.
632//
633// On success returns the remote exit code if |use_shell_protocol| is true,
634// 0 otherwise. On failure returns 1.
635static int RemoteShell(bool use_shell_protocol, const std::string& type_arg,
Elliott Hughes28416d62015-11-04 13:36:32 -0800636 char escape_char,
David Pursell1ed57f02015-10-06 15:30:03 -0700637 const std::string& command) {
638 std::string service_string = ShellServiceString(use_shell_protocol,
639 type_arg, command);
640
641 // Make local stdin raw if the device allocates a PTY, which happens if:
642 // 1. We are explicitly asking for a PTY shell, or
643 // 2. We don't specify shell type and are starting an interactive session.
644 bool raw_stdin = (type_arg == kShellServiceArgPty ||
645 (type_arg.empty() && command.empty()));
646
Elliott Hughes078f0fc2015-04-29 08:35:59 -0700647 std::string error;
David Pursell4e2fd362015-09-22 10:43:08 -0700648 int fd = adb_connect(service_string, &error);
Elliott Hughes078f0fc2015-04-29 08:35:59 -0700649 if (fd < 0) {
650 fprintf(stderr,"error: %s\n", error.c_str());
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800651 return 1;
652 }
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800653
David Pursell606835a2015-09-08 17:17:02 -0700654 StdinReadArgs* args = new StdinReadArgs;
655 if (!args) {
656 LOG(ERROR) << "couldn't allocate StdinReadArgs object";
Elliott Hughesdc3b4592015-04-21 19:39:52 -0700657 return 1;
658 }
David Pursell1ed57f02015-10-06 15:30:03 -0700659 args->stdin_fd = STDIN_FILENO;
David Pursell606835a2015-09-08 17:17:02 -0700660 args->write_fd = fd;
David Pursell1ed57f02015-10-06 15:30:03 -0700661 args->raw_stdin = raw_stdin;
Elliott Hughes28416d62015-11-04 13:36:32 -0800662 args->escape_char = escape_char;
David Pursell606835a2015-09-08 17:17:02 -0700663 if (use_shell_protocol) {
664 args->protocol.reset(new ShellProtocol(args->write_fd));
665 }
Elliott Hughesdc3b4592015-04-21 19:39:52 -0700666
Elliott Hughesc15b17f2015-11-03 11:18:40 -0800667 if (raw_stdin) stdin_raw_init();
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800668
Elliott Hughesc15b17f2015-11-03 11:18:40 -0800669#if !defined(_WIN32)
670 // Ensure our process is notified if the local window size changes.
671 // We use sigaction(2) to ensure that the SA_RESTART flag is not set,
672 // because the whole reason we're sending signals is to unblock the read(2)!
673 // That also means we don't need to do anything in the signal handler:
674 // the side effect of delivering the signal is all we need.
675 struct sigaction sa;
676 memset(&sa, 0, sizeof(sa));
677 sa.sa_handler = [](int) {};
678 sa.sa_flags = 0;
679 sigaction(SIGWINCH, &sa, nullptr);
680
681 // Now block SIGWINCH in this thread (the main thread) and all threads spawned
682 // from it. The stdin read thread will unblock this signal to ensure that it's
683 // the thread that receives the signal.
684 sigset_t mask;
685 sigemptyset(&mask);
686 sigaddset(&mask, SIGWINCH);
687 pthread_sigmask(SIG_BLOCK, &mask, nullptr);
688#endif
689
690 // TODO: combine read_and_dump with stdin_read_thread to make life simpler?
691 int exit_code = 1;
692 if (!adb_thread_create(stdin_read_thread_loop, args)) {
David Pursell606835a2015-09-08 17:17:02 -0700693 PLOG(ERROR) << "error starting stdin read thread";
David Pursell606835a2015-09-08 17:17:02 -0700694 delete args;
695 } else {
696 exit_code = read_and_dump(fd, use_shell_protocol);
697 }
Elliott Hughes9b0f3542015-05-05 13:41:21 -0700698
Elliott Hughesc15b17f2015-11-03 11:18:40 -0800699 // TODO: properly exit stdin_read_thread_loop and close |fd|.
David Pursell1ed57f02015-10-06 15:30:03 -0700700
Elliott Hughesc15b17f2015-11-03 11:18:40 -0800701 // TODO: we should probably install signal handlers for this.
702 // TODO: can we use atexit? even on Windows?
703 if (raw_stdin) stdin_raw_restore();
David Pursell1ed57f02015-10-06 15:30:03 -0700704
David Pursell606835a2015-09-08 17:17:02 -0700705 return exit_code;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800706}
707
Josh Gaof3f6a1d2016-01-31 19:12:26 -0800708static int adb_shell(int argc, const char** argv) {
David Pursell0aacbbe2016-01-21 19:56:50 -0800709 FeatureSet features;
Josh Gaof3f6a1d2016-01-31 19:12:26 -0800710 std::string error;
711
712 if (!adb_get_feature_set(&features, &error)) {
713 fprintf(stderr, "error: %s\n", error.c_str());
David Pursell0aacbbe2016-01-21 19:56:50 -0800714 return 1;
715 }
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800716
Elliott Hughesc15b17f2015-11-03 11:18:40 -0800717 bool use_shell_protocol = CanUseFeature(features, kFeatureShell2);
718 if (!use_shell_protocol) {
719 D("shell protocol not supported, using raw data transfer");
720 } else {
721 D("using shell protocol");
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800722 }
Elliott Hughes6452a892015-04-29 12:28:13 -0700723
Elliott Hughesc15b17f2015-11-03 11:18:40 -0800724 // Parse shell-specific command-line options.
725 // argv[0] is always "shell".
726 --argc;
727 ++argv;
728 int t_arg_count = 0;
Elliott Hughes28416d62015-11-04 13:36:32 -0800729 char escape_char = '~';
Elliott Hughesc15b17f2015-11-03 11:18:40 -0800730 while (argc) {
Elliott Hughes28416d62015-11-04 13:36:32 -0800731 if (!strcmp(argv[0], "-e")) {
732 if (argc < 2 || !(strlen(argv[1]) == 1 || strcmp(argv[1], "none") == 0)) {
733 fprintf(stderr, "error: -e requires a single-character argument or 'none'\n");
734 return 1;
735 }
736 escape_char = (strcmp(argv[1], "none") == 0) ? 0 : argv[1][0];
737 argc -= 2;
738 argv += 2;
739 } else if (!strcmp(argv[0], "-T") || !strcmp(argv[0], "-t")) {
Elliott Hughesc15b17f2015-11-03 11:18:40 -0800740 // Like ssh, -t arguments are cumulative so that multiple -t's
741 // are needed to force a PTY.
742 if (argv[0][1] == 't') {
743 ++t_arg_count;
744 } else {
745 t_arg_count = -1;
746 }
747 --argc;
748 ++argv;
749 } else if (!strcmp(argv[0], "-x")) {
750 use_shell_protocol = false;
751 --argc;
752 ++argv;
Josh Gao7d586072015-11-20 15:37:31 -0800753 } else if (!strcmp(argv[0], "-n")) {
754 close_stdin();
755
756 --argc;
757 ++argv;
Elliott Hughesc15b17f2015-11-03 11:18:40 -0800758 } else {
759 break;
760 }
Elliott Hughes6452a892015-04-29 12:28:13 -0700761 }
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800762
David Pursell57dd5ae2016-01-27 16:07:52 -0800763 // Legacy shell protocol requires a remote PTY to close the subprocess properly which creates
764 // some weird interactions with -tT.
765 if (!use_shell_protocol && t_arg_count != 0) {
766 if (!CanUseFeature(features, kFeatureShell2)) {
767 fprintf(stderr, "error: target doesn't support PTY args -Tt\n");
768 } else {
769 fprintf(stderr, "error: PTY args -Tt cannot be used with -x\n");
770 }
771 return 1;
772 }
773
Elliott Hughesc15b17f2015-11-03 11:18:40 -0800774 std::string shell_type_arg;
775 if (CanUseFeature(features, kFeatureShell2)) {
776 if (t_arg_count < 0) {
777 shell_type_arg = kShellServiceArgRaw;
778 } else if (t_arg_count == 0) {
779 // If stdin isn't a TTY, default to a raw shell; this lets
780 // things like `adb shell < my_script.sh` work as expected.
781 // Otherwise leave |shell_type_arg| blank which uses PTY for
782 // interactive shells and raw for non-interactive.
783 if (!unix_isatty(STDIN_FILENO)) {
784 shell_type_arg = kShellServiceArgRaw;
785 }
786 } else if (t_arg_count == 1) {
787 // A single -t arg isn't enough to override implicit -T.
788 if (!unix_isatty(STDIN_FILENO)) {
789 fprintf(stderr,
790 "Remote PTY will not be allocated because stdin is not a terminal.\n"
791 "Use multiple -t options to force remote PTY allocation.\n");
792 shell_type_arg = kShellServiceArgRaw;
793 } else {
794 shell_type_arg = kShellServiceArgPty;
795 }
796 } else {
797 shell_type_arg = kShellServiceArgPty;
798 }
David Pursell71c83122015-09-14 15:33:50 -0700799 }
Elliott Hughesc15b17f2015-11-03 11:18:40 -0800800
801 std::string command;
802 if (argc) {
803 // We don't escape here, just like ssh(1). http://b/20564385.
804 command = android::base::Join(std::vector<const char*>(argv, argv + argc), ' ');
805 }
806
Elliott Hughes28416d62015-11-04 13:36:32 -0800807 return RemoteShell(use_shell_protocol, shell_type_arg, escape_char, command);
David Pursell71c83122015-09-14 15:33:50 -0700808}
809
Elliott Hughes6452a892015-04-29 12:28:13 -0700810static int adb_download_buffer(const char *service, const char *fn, const void* data, unsigned sz,
Elliott Hughes078f0fc2015-04-29 08:35:59 -0700811 bool show_progress)
Doug Zongker447f0612012-01-09 14:54:53 -0800812{
Elliott Hughes078f0fc2015-04-29 08:35:59 -0700813 std::string error;
Elliott Hughes6452a892015-04-29 12:28:13 -0700814 int fd = adb_connect(android::base::StringPrintf("%s:%d", service, sz), &error);
Elliott Hughes078f0fc2015-04-29 08:35:59 -0700815 if (fd < 0) {
816 fprintf(stderr,"error: %s\n", error.c_str());
Doug Zongker447f0612012-01-09 14:54:53 -0800817 return -1;
818 }
819
820 int opt = CHUNK_SIZE;
Spencer Lowf055c192015-01-25 14:40:16 -0800821 opt = adb_setsockopt(fd, SOL_SOCKET, SO_SNDBUF, (const void *) &opt, sizeof(opt));
Doug Zongker447f0612012-01-09 14:54:53 -0800822
Elliott Hughes6452a892015-04-29 12:28:13 -0700823 unsigned total = sz;
Dan Albertbac34742015-02-25 17:51:28 -0800824 const uint8_t* ptr = reinterpret_cast<const uint8_t*>(data);
Doug Zongker447f0612012-01-09 14:54:53 -0800825
Elliott Hughes078f0fc2015-04-29 08:35:59 -0700826 if (show_progress) {
Elliott Hughes3e7048c2015-07-27 21:21:39 -0700827 const char* x = strrchr(service, ':');
828 if (x) service = x + 1;
Doug Zongker447f0612012-01-09 14:54:53 -0800829 }
830
Elliott Hughes6452a892015-04-29 12:28:13 -0700831 while (sz > 0) {
Doug Zongker447f0612012-01-09 14:54:53 -0800832 unsigned xfer = (sz > CHUNK_SIZE) ? CHUNK_SIZE : sz;
Elliott Hughes078f0fc2015-04-29 08:35:59 -0700833 if (!WriteFdExactly(fd, ptr, xfer)) {
834 std::string error;
835 adb_status(fd, &error);
836 fprintf(stderr,"* failed to write data '%s' *\n", error.c_str());
Spencer Low351ecd12015-10-14 17:32:44 -0700837 adb_close(fd);
Doug Zongker447f0612012-01-09 14:54:53 -0800838 return -1;
839 }
840 sz -= xfer;
841 ptr += xfer;
Elliott Hughes078f0fc2015-04-29 08:35:59 -0700842 if (show_progress) {
Magnus Eriksson86ae6d52013-03-05 07:37:32 +0100843 printf("sending: '%s' %4d%% \r", fn, (int)(100LL - ((100LL * sz) / (total))));
Doug Zongker447f0612012-01-09 14:54:53 -0800844 fflush(stdout);
845 }
846 }
Elliott Hughes078f0fc2015-04-29 08:35:59 -0700847 if (show_progress) {
Doug Zongker447f0612012-01-09 14:54:53 -0800848 printf("\n");
849 }
850
Elliott Hughese67f1f82015-04-30 17:32:03 -0700851 if (!adb_status(fd, &error)) {
852 fprintf(stderr,"* error response '%s' *\n", error.c_str());
Spencer Low351ecd12015-10-14 17:32:44 -0700853 adb_close(fd);
Doug Zongker447f0612012-01-09 14:54:53 -0800854 return -1;
855 }
856
857 adb_close(fd);
858 return 0;
859}
860
Doug Zongker71fe5842014-06-26 15:35:36 -0700861#define SIDELOAD_HOST_BLOCK_SIZE (CHUNK_SIZE)
862
863/*
864 * The sideload-host protocol serves the data in a file (given on the
865 * command line) to the client, using a simple protocol:
866 *
867 * - The connect message includes the total number of bytes in the
868 * file and a block size chosen by us.
869 *
870 * - The other side sends the desired block number as eight decimal
871 * digits (eg "00000023" for block 23). Blocks are numbered from
872 * zero.
873 *
874 * - We send back the data of the requested block. The last block is
875 * likely to be partial; when the last block is requested we only
876 * send the part of the block that exists, it's not padded up to the
877 * block size.
878 *
879 * - When the other side sends "DONEDONE" instead of a block number,
880 * we hang up.
881 */
Elliott Hughes58305772015-04-17 13:57:15 -0700882static int adb_sideload_host(const char* fn) {
Elliott Hughes14415142016-06-15 14:45:34 -0700883 fprintf(stderr, "loading: '%s'...\n", fn);
Elliott Hughese8b663f2016-05-26 22:43:19 -0700884
885 std::string content;
886 if (!android::base::ReadFileToString(fn, &content)) {
Elliott Hughes14415142016-06-15 14:45:34 -0700887 fprintf(stderr, "failed: %s\n", strerror(errno));
Doug Zongker71fe5842014-06-26 15:35:36 -0700888 return -1;
889 }
890
Elliott Hughese8b663f2016-05-26 22:43:19 -0700891 const uint8_t* data = reinterpret_cast<const uint8_t*>(content.data());
892 unsigned sz = content.size();
893
Elliott Hughes14415142016-06-15 14:45:34 -0700894 fprintf(stderr, "connecting...\n");
Elliott Hughes6452a892015-04-29 12:28:13 -0700895 std::string service =
896 android::base::StringPrintf("sideload-host:%d:%d", sz, SIDELOAD_HOST_BLOCK_SIZE);
Elliott Hughes078f0fc2015-04-29 08:35:59 -0700897 std::string error;
Elliott Hughese8b663f2016-05-26 22:43:19 -0700898 unique_fd fd(adb_connect(service, &error));
Elliott Hughes356fd362016-06-13 15:01:13 -0700899 if (fd < 0) {
Doug Zongker71fe5842014-06-26 15:35:36 -0700900 // Try falling back to the older sideload method. Maybe this
901 // is an older device that doesn't support sideload-host.
Elliott Hughes14415142016-06-15 14:45:34 -0700902 fprintf(stderr, "falling back to older sideload method...\n");
Elliott Hughese8b663f2016-05-26 22:43:19 -0700903 return adb_download_buffer("sideload", fn, data, sz, true);
Doug Zongker71fe5842014-06-26 15:35:36 -0700904 }
905
Elliott Hughese8b663f2016-05-26 22:43:19 -0700906 int opt = SIDELOAD_HOST_BLOCK_SIZE;
907 adb_setsockopt(fd, SOL_SOCKET, SO_SNDBUF, &opt, sizeof(opt));
Doug Zongker71fe5842014-06-26 15:35:36 -0700908
Elliott Hughese8b663f2016-05-26 22:43:19 -0700909 size_t xfer = 0;
910 int last_percent = -1;
Elliott Hughesa7090b92015-04-17 17:03:59 -0700911 while (true) {
Elliott Hughes6452a892015-04-29 12:28:13 -0700912 char buf[9];
Dan Albertcc731cc2015-02-24 21:26:58 -0800913 if (!ReadFdExactly(fd, buf, 8)) {
Elliott Hughes078f0fc2015-04-29 08:35:59 -0700914 fprintf(stderr, "* failed to read command: %s\n", strerror(errno));
Elliott Hughese8b663f2016-05-26 22:43:19 -0700915 return -1;
Doug Zongker71fe5842014-06-26 15:35:36 -0700916 }
Elliott Hughes6452a892015-04-29 12:28:13 -0700917 buf[8] = '\0';
Doug Zongker71fe5842014-06-26 15:35:36 -0700918
Elliott Hughes6452a892015-04-29 12:28:13 -0700919 if (strcmp("DONEDONE", buf) == 0) {
Elliott Hughese8b663f2016-05-26 22:43:19 -0700920 printf("\rTotal xfer: %.2fx%*s\n",
921 (double)xfer / (sz ? sz : 1), (int)strlen(fn)+10, "");
922 return 0;
Doug Zongker71fe5842014-06-26 15:35:36 -0700923 }
924
Doug Zongker71fe5842014-06-26 15:35:36 -0700925 int block = strtol(buf, NULL, 10);
926
927 size_t offset = block * SIDELOAD_HOST_BLOCK_SIZE;
928 if (offset >= sz) {
Elliott Hughes078f0fc2015-04-29 08:35:59 -0700929 fprintf(stderr, "* attempt to read block %d past end\n", block);
Elliott Hughese8b663f2016-05-26 22:43:19 -0700930 return -1;
Doug Zongker71fe5842014-06-26 15:35:36 -0700931 }
Elliott Hughese8b663f2016-05-26 22:43:19 -0700932 const uint8_t* start = data + offset;
Doug Zongker71fe5842014-06-26 15:35:36 -0700933 size_t offset_end = offset + SIDELOAD_HOST_BLOCK_SIZE;
934 size_t to_write = SIDELOAD_HOST_BLOCK_SIZE;
935 if (offset_end > sz) {
936 to_write = sz - offset;
937 }
938
Elliott Hughese8b663f2016-05-26 22:43:19 -0700939 if (!WriteFdExactly(fd, start, to_write)) {
Elliott Hughes078f0fc2015-04-29 08:35:59 -0700940 adb_status(fd, &error);
941 fprintf(stderr,"* failed to write data '%s' *\n", error.c_str());
Elliott Hughese8b663f2016-05-26 22:43:19 -0700942 return -1;
Doug Zongker71fe5842014-06-26 15:35:36 -0700943 }
944 xfer += to_write;
945
946 // For normal OTA packages, we expect to transfer every byte
947 // twice, plus a bit of overhead (one read during
948 // verification, one read of each byte for installation, plus
949 // extra access to things like the zip central directory).
950 // This estimate of the completion becomes 100% when we've
951 // transferred ~2.13 (=100/47) times the package size.
952 int percent = (int)(xfer * 47LL / (sz ? sz : 1));
953 if (percent != last_percent) {
954 printf("\rserving: '%s' (~%d%%) ", fn, percent);
955 fflush(stdout);
956 last_percent = percent;
957 }
958 }
Doug Zongker71fe5842014-06-26 15:35:36 -0700959}
960
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800961/**
962 * Run ppp in "notty" mode against a resource listed as the first parameter
963 * eg:
964 *
965 * ppp dev:/dev/omap_csmi_tty0 <ppp options>
966 *
967 */
Elliott Hughes58305772015-04-17 13:57:15 -0700968static int ppp(int argc, const char** argv) {
Yabin Cuie77b6a02014-11-11 09:24:11 -0800969#if defined(_WIN32)
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800970 fprintf(stderr, "error: adb %s not implemented on Win32\n", argv[0]);
971 return -1;
972#else
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800973 if (argc < 2) {
974 fprintf(stderr, "usage: adb %s <adb service name> [ppp opts]\n",
975 argv[0]);
976
977 return 1;
978 }
979
Dan Albertbac34742015-02-25 17:51:28 -0800980 const char* adb_service_name = argv[1];
Elliott Hughes078f0fc2015-04-29 08:35:59 -0700981 std::string error;
982 int fd = adb_connect(adb_service_name, &error);
983 if (fd < 0) {
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800984 fprintf(stderr,"Error: Could not open adb service: %s. Error: %s\n",
Elliott Hughes078f0fc2015-04-29 08:35:59 -0700985 adb_service_name, error.c_str());
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800986 return 1;
987 }
988
Elliott Hughes078f0fc2015-04-29 08:35:59 -0700989 pid_t pid = fork();
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800990
991 if (pid < 0) {
992 perror("from fork()");
993 return 1;
994 } else if (pid == 0) {
995 int err;
996 int i;
997 const char **ppp_args;
998
999 // copy args
1000 ppp_args = (const char **) alloca(sizeof(char *) * argc + 1);
1001 ppp_args[0] = "pppd";
1002 for (i = 2 ; i < argc ; i++) {
1003 //argv[2] and beyond become ppp_args[1] and beyond
1004 ppp_args[i - 1] = argv[i];
1005 }
1006 ppp_args[i-1] = NULL;
1007
1008 // child side
1009
1010 dup2(fd, STDIN_FILENO);
1011 dup2(fd, STDOUT_FILENO);
1012 adb_close(STDERR_FILENO);
1013 adb_close(fd);
1014
1015 err = execvp("pppd", (char * const *)ppp_args);
1016
1017 if (err < 0) {
1018 perror("execing pppd");
1019 }
1020 exit(-1);
1021 } else {
1022 // parent side
1023
1024 adb_close(fd);
1025 return 0;
1026 }
Yabin Cuie77b6a02014-11-11 09:24:11 -08001027#endif /* !defined(_WIN32) */
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001028}
1029
Josh Gao08881e72016-04-13 12:14:16 -07001030static bool wait_for_device(const char* service, TransportType t, const char* serial) {
1031 std::vector<std::string> components = android::base::Split(service, "-");
1032 if (components.size() < 3 || components.size() > 4) {
Leo Sartre1fbc9db2015-11-27 18:56:48 +01001033 fprintf(stderr, "adb: couldn't parse 'wait-for' command: %s\n", service);
1034 return false;
1035 }
1036
Elliott Hughes2b101112015-05-04 19:29:32 -07001037 // Was the caller vague about what they'd like us to wait for?
1038 // If so, check they weren't more specific in their choice of transport type.
Josh Gao08881e72016-04-13 12:14:16 -07001039 if (components.size() == 3) {
1040 auto it = components.begin() + 2;
Elliott Hughes2b101112015-05-04 19:29:32 -07001041 if (t == kTransportUsb) {
Josh Gao08881e72016-04-13 12:14:16 -07001042 components.insert(it, "usb");
Elliott Hughes2b101112015-05-04 19:29:32 -07001043 } else if (t == kTransportLocal) {
Josh Gao08881e72016-04-13 12:14:16 -07001044 components.insert(it, "local");
Elliott Hughes2b101112015-05-04 19:29:32 -07001045 } else {
Josh Gao08881e72016-04-13 12:14:16 -07001046 components.insert(it, "any");
Elliott Hughes2b101112015-05-04 19:29:32 -07001047 }
Josh Gao08881e72016-04-13 12:14:16 -07001048 } else if (components[2] != "any" && components[2] != "local" && components[2] != "usb") {
1049 fprintf(stderr, "adb: unknown type %s; expected 'any', 'local', or 'usb'\n",
1050 components[2].c_str());
Leo Sartre1fbc9db2015-11-27 18:56:48 +01001051 return false;
1052 }
1053
Josh Gao86441c32016-04-13 12:18:58 -07001054 if (components[3] != "any" && components[3] != "bootloader" && components[3] != "device" &&
1055 components[3] != "recovery" && components[3] != "sideload") {
Josh Gao08881e72016-04-13 12:14:16 -07001056 fprintf(stderr,
1057 "adb: unknown state %s; "
Josh Gao86441c32016-04-13 12:18:58 -07001058 "expected 'any', 'bootloader', 'device', 'recovery', or 'sideload'\n",
Josh Gao08881e72016-04-13 12:14:16 -07001059 components[3].c_str());
1060 return false;
1061 }
1062
1063 std::string cmd = format_host_command(android::base::Join(components, "-").c_str(), t, serial);
Elliott Hughes424af022015-05-29 17:55:19 -07001064 return adb_command(cmd);
Elliott Hughes2b101112015-05-04 19:29:32 -07001065}
1066
Josh Gao06c73ae2016-03-04 15:16:18 -08001067static bool adb_root(const char* command) {
1068 std::string error;
Josh Gao06c73ae2016-03-04 15:16:18 -08001069
Elliott Hughese8b663f2016-05-26 22:43:19 -07001070 unique_fd fd(adb_connect(android::base::StringPrintf("%s:", command), &error));
1071 if (fd < 0) {
Josh Gao06c73ae2016-03-04 15:16:18 -08001072 fprintf(stderr, "adb: unable to connect for %s: %s\n", command, error.c_str());
1073 return false;
1074 }
1075
1076 // Figure out whether we actually did anything.
1077 char buf[256];
1078 char* cur = buf;
1079 ssize_t bytes_left = sizeof(buf);
1080 while (bytes_left > 0) {
Elliott Hughese8b663f2016-05-26 22:43:19 -07001081 ssize_t bytes_read = adb_read(fd, cur, bytes_left);
Josh Gao06c73ae2016-03-04 15:16:18 -08001082 if (bytes_read == 0) {
1083 break;
1084 } else if (bytes_read < 0) {
1085 fprintf(stderr, "adb: error while reading for %s: %s\n", command, strerror(errno));
1086 return false;
1087 }
1088 cur += bytes_read;
1089 bytes_left -= bytes_read;
1090 }
1091
1092 if (bytes_left == 0) {
1093 fprintf(stderr, "adb: unexpected output length for %s\n", command);
1094 return false;
1095 }
1096
1097 fflush(stdout);
1098 WriteFdExactly(STDOUT_FILENO, buf, sizeof(buf) - bytes_left);
1099 if (cur != buf && strstr(buf, "restarting") == nullptr) {
1100 return true;
1101 }
1102
Josh Gao05824732016-06-16 14:00:09 -07001103 // Give adbd some time to kill itself and come back up.
1104 // We can't use wait-for-device because devices (e.g. adb over network) might not come back.
1105 adb_sleep_ms(3000);
1106 return true;
Josh Gao06c73ae2016-03-04 15:16:18 -08001107}
1108
Felipe Leme218e1ff2016-07-19 17:07:22 -07001109int send_shell_command(TransportType transport_type, const char* serial, const std::string& command,
Felipe Lemed1885422016-07-26 12:14:39 -07001110 bool disable_shell_protocol, StandardStreamsCallbackInterface* callback) {
Elliott Hughes2baae3a2015-04-17 10:59:34 -07001111 int fd;
David Pursell0aacbbe2016-01-21 19:56:50 -08001112 bool use_shell_protocol = false;
1113
Elliott Hughes2baae3a2015-04-17 10:59:34 -07001114 while (true) {
David Pursell0aacbbe2016-01-21 19:56:50 -08001115 bool attempt_connection = true;
1116
Felipe Lemed1885422016-07-26 12:14:39 -07001117 // Use shell protocol if it's supported and the caller doesn't explicitly
1118 // disable it.
David Pursell0aacbbe2016-01-21 19:56:50 -08001119 if (!disable_shell_protocol) {
1120 FeatureSet features;
Josh Gaof3f6a1d2016-01-31 19:12:26 -08001121 std::string error;
1122 if (adb_get_feature_set(&features, &error)) {
David Pursell0aacbbe2016-01-21 19:56:50 -08001123 use_shell_protocol = CanUseFeature(features, kFeatureShell2);
1124 } else {
1125 // Device was unreachable.
1126 attempt_connection = false;
1127 }
Elliott Hughes078f0fc2015-04-29 08:35:59 -07001128 }
David Pursell0aacbbe2016-01-21 19:56:50 -08001129
1130 if (attempt_connection) {
1131 std::string error;
1132 std::string service_string = ShellServiceString(use_shell_protocol, "", command);
1133
1134 fd = adb_connect(service_string, &error);
1135 if (fd >= 0) {
1136 break;
1137 }
1138 }
1139
Felipe Lemed1885422016-07-26 12:14:39 -07001140 fprintf(stderr, "- waiting for device -\n");
Josh Gaob6117c42016-02-24 15:16:17 -08001141 if (!wait_for_device("wait-for-device", transport_type, serial)) {
1142 return 1;
1143 }
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001144 }
1145
Felipe Lemed1885422016-07-26 12:14:39 -07001146 int exit_code = read_and_dump(fd, use_shell_protocol, callback);
David Pursell71c83122015-09-14 15:33:50 -07001147
1148 if (adb_close(fd) < 0) {
1149 PLOG(ERROR) << "failure closing FD " << fd;
Elliott Hughes2baae3a2015-04-17 10:59:34 -07001150 }
David Pursell71c83122015-09-14 15:33:50 -07001151
1152 return exit_code;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001153}
1154
Elliott Hughes3bd73c12015-05-05 13:10:43 -07001155static int logcat(TransportType transport, const char* serial, int argc, const char** argv) {
Elliott Hughes2baae3a2015-04-17 10:59:34 -07001156 char* log_tags = getenv("ANDROID_LOG_TAGS");
1157 std::string quoted = escape_arg(log_tags == nullptr ? "" : log_tags);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001158
David Pursell70ef7b42015-09-30 13:35:42 -07001159 std::string cmd = "export ANDROID_LOG_TAGS=\"" + quoted + "\"; exec logcat";
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001160
Jeff Sharkeyfd546e82014-06-10 11:31:24 -07001161 if (!strcmp(argv[0], "longcat")) {
Elliott Hughes2baae3a2015-04-17 10:59:34 -07001162 cmd += " -v long";
Christopher Tatedb0a8802011-11-30 13:00:33 -08001163 }
1164
Elliott Hughes6c34bba2015-04-17 20:11:08 -07001165 --argc;
1166 ++argv;
Elliott Hughes2baae3a2015-04-17 10:59:34 -07001167 while (argc-- > 0) {
Elliott Hughes6c34bba2015-04-17 20:11:08 -07001168 cmd += " " + escape_arg(*argv++);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001169 }
1170
David Pursell70ef7b42015-09-30 13:35:42 -07001171 // No need for shell protocol with logcat, always disable for simplicity.
1172 return send_shell_command(transport, serial, cmd, true);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001173}
1174
Dan Albertbac34742015-02-25 17:51:28 -08001175static int backup(int argc, const char** argv) {
Elliott Hughes24f165f2015-08-21 20:31:31 -07001176 const char* filename = "backup.ab";
Christopher Tated2f54152011-04-21 12:53:28 -07001177
Christopher Tatec9cd3b92011-06-01 17:56:23 -07001178 /* find, extract, and use any -f argument */
Elliott Hughes6c34bba2015-04-17 20:11:08 -07001179 for (int i = 1; i < argc; i++) {
Christopher Tatec9cd3b92011-06-01 17:56:23 -07001180 if (!strcmp("-f", argv[i])) {
1181 if (i == argc-1) {
Elliott Hughes56e68132015-11-13 11:04:10 -08001182 fprintf(stderr, "adb: backup -f passed with no filename.\n");
1183 return EXIT_FAILURE;
Christopher Tatec9cd3b92011-06-01 17:56:23 -07001184 }
1185 filename = argv[i+1];
Elliott Hughes6c34bba2015-04-17 20:11:08 -07001186 for (int j = i+2; j <= argc; ) {
Christopher Tatec9cd3b92011-06-01 17:56:23 -07001187 argv[i++] = argv[j++];
1188 }
1189 argc -= 2;
1190 argv[argc] = NULL;
1191 }
Christopher Tated2f54152011-04-21 12:53:28 -07001192 }
1193
Elliott Hughes56e68132015-11-13 11:04:10 -08001194 // Bare "adb backup" or "adb backup -f filename" are not valid invocations ---
1195 // a list of packages is required.
1196 if (argc < 2) {
1197 fprintf(stderr, "adb: backup either needs a list of packages or -all/-shared.\n");
1198 return EXIT_FAILURE;
1199 }
Christopher Tatebb86bc52011-08-22 17:12:08 -07001200
Christopher Tateb1dfffe2011-12-08 19:04:34 -08001201 adb_unlink(filename);
Elliott Hughes6c34bba2015-04-17 20:11:08 -07001202 int outFd = adb_creat(filename, 0640);
Christopher Tated2f54152011-04-21 12:53:28 -07001203 if (outFd < 0) {
Elliott Hughes56e68132015-11-13 11:04:10 -08001204 fprintf(stderr, "adb: backup unable to create file '%s': %s\n", filename, strerror(errno));
1205 return EXIT_FAILURE;
Christopher Tated2f54152011-04-21 12:53:28 -07001206 }
1207
Elliott Hughes6c34bba2015-04-17 20:11:08 -07001208 std::string cmd = "backup:";
1209 --argc;
1210 ++argv;
1211 while (argc-- > 0) {
1212 cmd += " " + escape_arg(*argv++);
Christopher Tated2f54152011-04-21 12:53:28 -07001213 }
1214
Yabin Cui7a3f8d62015-09-02 17:44:28 -07001215 D("backup. filename=%s cmd=%s", filename, cmd.c_str());
Elliott Hughes078f0fc2015-04-29 08:35:59 -07001216 std::string error;
Elliott Hughes6452a892015-04-29 12:28:13 -07001217 int fd = adb_connect(cmd, &error);
Christopher Tated2f54152011-04-21 12:53:28 -07001218 if (fd < 0) {
Elliott Hughes078f0fc2015-04-29 08:35:59 -07001219 fprintf(stderr, "adb: unable to connect for backup: %s\n", error.c_str());
Christopher Tated2f54152011-04-21 12:53:28 -07001220 adb_close(outFd);
Elliott Hughes56e68132015-11-13 11:04:10 -08001221 return EXIT_FAILURE;
Christopher Tated2f54152011-04-21 12:53:28 -07001222 }
1223
Elliott Hughes56e68132015-11-13 11:04:10 -08001224 printf("Now unlock your device and confirm the backup operation...\n");
1225 fflush(stdout);
1226
Christopher Tated2f54152011-04-21 12:53:28 -07001227 copy_to_file(fd, outFd);
1228
1229 adb_close(fd);
1230 adb_close(outFd);
Elliott Hughes56e68132015-11-13 11:04:10 -08001231 return EXIT_SUCCESS;
Christopher Tated2f54152011-04-21 12:53:28 -07001232}
1233
Dan Albertbac34742015-02-25 17:51:28 -08001234static int restore(int argc, const char** argv) {
Christopher Tate702967a2011-05-17 15:52:54 -07001235 if (argc != 2) return usage();
1236
Elliott Hughes078f0fc2015-04-29 08:35:59 -07001237 const char* filename = argv[1];
1238 int tarFd = adb_open(filename, O_RDONLY);
Christopher Tate702967a2011-05-17 15:52:54 -07001239 if (tarFd < 0) {
Elliott Hughes078f0fc2015-04-29 08:35:59 -07001240 fprintf(stderr, "adb: unable to open file %s: %s\n", filename, strerror(errno));
Christopher Tate702967a2011-05-17 15:52:54 -07001241 return -1;
1242 }
1243
Elliott Hughes078f0fc2015-04-29 08:35:59 -07001244 std::string error;
1245 int fd = adb_connect("restore:", &error);
Christopher Tate702967a2011-05-17 15:52:54 -07001246 if (fd < 0) {
Elliott Hughes078f0fc2015-04-29 08:35:59 -07001247 fprintf(stderr, "adb: unable to connect for restore: %s\n", error.c_str());
Christopher Tate702967a2011-05-17 15:52:54 -07001248 adb_close(tarFd);
1249 return -1;
1250 }
1251
Christopher Tatebffa4ca2012-01-06 15:43:03 -08001252 printf("Now unlock your device and confirm the restore operation.\n");
Christopher Tate702967a2011-05-17 15:52:54 -07001253 copy_to_file(tarFd, fd);
1254
Josh Gao5767d0d2016-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 Tate702967a2011-05-17 15:52:54 -07001258 adb_close(fd);
1259 adb_close(tarFd);
1260 return 0;
1261}
1262
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001263/* <hint> may be:
1264 * - A simple product name
1265 * e.g., "sooner"
The Android Open Source Projectdd7bc332009-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 Hughes5c742702015-07-30 17:42:01 -07001274static std::string find_product_out_path(const std::string& hint) {
1275 if (hint.empty()) {
Elliott Hughes58305772015-04-17 13:57:15 -07001276 return "";
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001277 }
1278
Elliott Hughes58305772015-04-17 13:57:15 -07001279 // If it's already absolute, don't bother doing any work.
Elliott Hughes5c742702015-07-30 17:42:01 -07001280 if (adb_is_absolute_host_path(hint.c_str())) {
Elliott Hughes58305772015-04-17 13:57:15 -07001281 return hint;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001282 }
1283
Chih-Hung Hsieh8f7b9e32016-07-27 16:25:51 -07001284 // If any of the OS_PATH_SEPARATORS is found, assume it's a relative path;
Elliott Hughes58305772015-04-17 13:57:15 -07001285 // make it absolute.
Chih-Hung Hsieh8f7b9e32016-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 Hughesa7090b92015-04-17 17:03:59 -07001288 std::string cwd;
1289 if (!getcwd(&cwd)) {
Felipe Lemef8d9e4e2016-07-29 17:57:00 -07001290 perror("adb: getcwd failed");
Elliott Hughes58305772015-04-17 13:57:15 -07001291 return "";
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001292 }
Elliott Hughes5c742702015-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 Projectdd7bc332009-03-03 19:32:55 -08001294 }
1295
Elliott Hughes58305772015-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 Hughesa7090b92015-04-17 17:03:59 -07001300 char* top = getenv("ANDROID_BUILD_TOP");
Elliott Hughes58305772015-04-17 13:57:15 -07001301 if (top == nullptr) {
Elliott Hughesa7090b92015-04-17 17:03:59 -07001302 fprintf(stderr, "adb: ANDROID_BUILD_TOP not set!\n");
Elliott Hughes58305772015-04-17 13:57:15 -07001303 return "";
1304 }
Elliott Hughesa7090b92015-04-17 17:03:59 -07001305
1306 std::string path = top;
Elliott Hughes58305772015-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 Hughes5c742702015-07-30 17:42:01 -07001317 "\"%s\" doesn't exist\n", hint.c_str(), path.c_str());
Elliott Hughesa7090b92015-04-17 17:03:59 -07001318 return "";
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001319 }
Elliott Hughes58305772015-04-17 13:57:15 -07001320 return path;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001321}
1322
Josh Gao05786772015-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 Lindner76f2a932014-03-11 17:55:59 -07001327
Josh Gao05786772015-10-30 16:57:19 -07001328 srcs->clear();
1329 bool ignore_flags = false;
Lajos Molnarde8ff4a2013-04-19 12:41:09 -07001330 while (narg > 0) {
Josh Gao05786772015-10-30 16:57:19 -07001331 if (ignore_flags || *arg[0] != '-') {
1332 srcs->push_back(*arg);
Lajos Molnarde8ff4a2013-04-19 12:41:09 -07001333 } else {
Josh Gao05786772015-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 Molnarde8ff4a2013-04-19 12:41:09 -07001344 }
Mark Lindner76f2a932014-03-11 17:55:59 -07001345 ++arg;
1346 --narg;
1347 }
1348
Josh Gao05786772015-10-30 16:57:19 -07001349 if (srcs->size() > 1) {
1350 *dst = srcs->back();
1351 srcs->pop_back();
Mark Lindner76f2a932014-03-11 17:55:59 -07001352 }
1353}
1354
Elliott Hughes6452a892015-04-29 12:28:13 -07001355static int adb_connect_command(const std::string& command) {
Elliott Hughes078f0fc2015-04-29 08:35:59 -07001356 std::string error;
1357 int fd = adb_connect(command, &error);
Elliott Hughes5677c232015-05-07 23:37:40 -07001358 if (fd < 0) {
1359 fprintf(stderr, "error: %s\n", error.c_str());
1360 return 1;
Tao Bao175b7bb2015-03-29 11:22:34 -07001361 }
Elliott Hughes5677c232015-05-07 23:37:40 -07001362 read_and_dump(fd);
1363 adb_close(fd);
1364 return 0;
Tao Bao175b7bb2015-03-29 11:22:34 -07001365}
1366
Elliott Hughes6452a892015-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 Lowa13df302015-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 Kennedy7549a462016-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 Hughesab52c182015-05-01 17:04:38 -07001400int adb_commandline(int argc, const char **argv) {
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001401 int no_daemon = 0;
1402 int is_daemon = 0;
David 'Digit' Turner305b4b02011-01-31 14:23:56 +01001403 int is_server = 0;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001404 int r;
Elliott Hughes3bd73c12015-05-05 13:10:43 -07001405 TransportType transport_type = kTransportAny;
Siva Velusamy9f2d1a92015-08-07 10:10:29 -07001406 int ack_reply_fd = -1;
Siva Velusamy9f2d1a92015-08-07 10:10:29 -07001407
Elliott Hughes65433da2015-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 Hughes58305772015-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 Projectdd7bc332009-03-03 19:32:55 -08001421 }
1422 // TODO: also try TARGET_PRODUCT/TARGET_DEVICE as a hint
1423
Stefan Hilzingera84a42e2010-04-19 12:21:12 +01001424 /* Validate and assign the server port */
Elliott Hughes3bd73c12015-05-05 13:10:43 -07001425 const char* server_port_str = getenv("ANDROID_ADB_SERVER_PORT");
Stefan Hilzingera84a42e2010-04-19 12:21:12 +01001426 int server_port = DEFAULT_ADB_PORT;
1427 if (server_port_str && strlen(server_port_str) > 0) {
Siva Velusamy9f2d1a92015-08-07 10:10:29 -07001428 server_port = strtol(server_port_str, nullptr, 0);
Matt Gumbeld7b33082012-11-14 10:16:17 -08001429 if (server_port <= 0 || server_port > 65535) {
Stefan Hilzingera84a42e2010-04-19 12:21:12 +01001430 fprintf(stderr,
Spencer Lowf18fc082015-08-11 17:05:02 -07001431 "adb: Env var ANDROID_ADB_SERVER_PORT must be a positive number less than 65536. Got \"%s\"\n",
Stefan Hilzingera84a42e2010-04-19 12:21:12 +01001432 server_port_str);
1433 return usage();
1434 }
1435 }
1436
Elliott Hughes8d28e192015-10-07 14:55:10 -07001437 // We need to check for -d and -e before we look at $ANDROID_SERIAL.
1438 const char* serial = nullptr;
1439
Riley Andrews98f58e82014-12-05 17:37:24 -08001440 while (argc > 0) {
1441 if (!strcmp(argv[0],"server")) {
David 'Digit' Turner305b4b02011-01-31 14:23:56 +01001442 is_server = 1;
Riley Andrews98f58e82014-12-05 17:37:24 -08001443 } else if (!strcmp(argv[0],"nodaemon")) {
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001444 no_daemon = 1;
1445 } else if (!strcmp(argv[0], "fork-server")) {
1446 /* this is a special flag used only when the ADB client launches the ADB Server */
1447 is_daemon = 1;
Siva Velusamy9f2d1a92015-08-07 10:10:29 -07001448 } else if (!strcmp(argv[0], "--reply-fd")) {
1449 if (argc < 2) return usage();
1450 const char* reply_fd_str = argv[1];
1451 argc--;
1452 argv++;
1453 ack_reply_fd = strtol(reply_fd_str, nullptr, 10);
Spencer Lowa13df302015-09-07 16:20:13 -07001454 if (!_is_valid_ack_reply_fd(ack_reply_fd)) {
Siva Velusamy9f2d1a92015-08-07 10:10:29 -07001455 fprintf(stderr, "adb: invalid reply fd \"%s\"\n", reply_fd_str);
1456 return usage();
1457 }
Riley Andrews98f58e82014-12-05 17:37:24 -08001458 } else if (!strncmp(argv[0], "-p", 2)) {
Elliott Hughes048b27c2015-07-31 13:18:22 -07001459 const char* product = nullptr;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001460 if (argv[0][2] == '\0') {
1461 if (argc < 2) return usage();
1462 product = argv[1];
1463 argc--;
1464 argv++;
1465 } else {
Vairavan Srinivasan81273232012-08-04 16:40:50 -07001466 product = argv[0] + 2;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001467 }
Elliott Hughes048b27c2015-07-31 13:18:22 -07001468 gProductOutPath = find_product_out_path(product);
Elliott Hughes58305772015-04-17 13:57:15 -07001469 if (gProductOutPath.empty()) {
1470 fprintf(stderr, "adb: could not resolve \"-p %s\"\n", product);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001471 return usage();
1472 }
1473 } else if (argv[0][0]=='-' && argv[0][1]=='s') {
1474 if (isdigit(argv[0][2])) {
1475 serial = argv[0] + 2;
1476 } else {
Riley Andrews98f58e82014-12-05 17:37:24 -08001477 if (argc < 2 || argv[0][2] != '\0') return usage();
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001478 serial = argv[1];
1479 argc--;
1480 argv++;
1481 }
1482 } else if (!strcmp(argv[0],"-d")) {
Elliott Hughes3bd73c12015-05-05 13:10:43 -07001483 transport_type = kTransportUsb;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001484 } else if (!strcmp(argv[0],"-e")) {
Elliott Hughes3bd73c12015-05-05 13:10:43 -07001485 transport_type = kTransportLocal;
Matt Gumbeld7b33082012-11-14 10:16:17 -08001486 } else if (!strcmp(argv[0],"-a")) {
1487 gListenAll = 1;
Riley Andrews98f58e82014-12-05 17:37:24 -08001488 } else if (!strncmp(argv[0], "-H", 2)) {
Matt Gumbeld7b33082012-11-14 10:16:17 -08001489 const char *hostname = NULL;
1490 if (argv[0][2] == '\0') {
1491 if (argc < 2) return usage();
1492 hostname = argv[1];
1493 argc--;
1494 argv++;
1495 } else {
1496 hostname = argv[0] + 2;
1497 }
1498 adb_set_tcp_name(hostname);
1499
Riley Andrews98f58e82014-12-05 17:37:24 -08001500 } else if (!strncmp(argv[0], "-P", 2)) {
Matt Gumbeld7b33082012-11-14 10:16:17 -08001501 if (argv[0][2] == '\0') {
1502 if (argc < 2) return usage();
1503 server_port_str = argv[1];
1504 argc--;
1505 argv++;
1506 } else {
1507 server_port_str = argv[0] + 2;
1508 }
1509 if (strlen(server_port_str) > 0) {
1510 server_port = (int) strtol(server_port_str, NULL, 0);
1511 if (server_port <= 0 || server_port > 65535) {
1512 fprintf(stderr,
1513 "adb: port number must be a positive number less than 65536. Got \"%s\"\n",
1514 server_port_str);
1515 return usage();
1516 }
1517 } else {
1518 fprintf(stderr,
1519 "adb: port number must be a positive number less than 65536. Got empty string.\n");
1520 return usage();
1521 }
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001522 } else {
1523 /* out of recognized modifiers and flags */
1524 break;
1525 }
1526 argc--;
1527 argv++;
1528 }
1529
Elliott Hughes8d28e192015-10-07 14:55:10 -07001530 // If none of -d, -e, or -s were specified, try $ANDROID_SERIAL.
1531 if (transport_type == kTransportAny && serial == nullptr) {
1532 serial = getenv("ANDROID_SERIAL");
1533 }
1534
Elliott Hughes3bd73c12015-05-05 13:10:43 -07001535 adb_set_transport(transport_type, serial);
Stefan Hilzingera84a42e2010-04-19 12:21:12 +01001536 adb_set_tcp_specifics(server_port);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001537
David 'Digit' Turner305b4b02011-01-31 14:23:56 +01001538 if (is_server) {
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001539 if (no_daemon || is_daemon) {
Spencer Low5c398d22015-08-08 15:07:07 -07001540 if (is_daemon && (ack_reply_fd == -1)) {
Siva Velusamy9f2d1a92015-08-07 10:10:29 -07001541 fprintf(stderr, "reply fd for adb server to client communication not specified.\n");
1542 return usage();
1543 }
Elliott Hughes65433da2015-11-18 18:07:48 -08001544 r = adb_server_main(is_daemon, server_port, ack_reply_fd);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001545 } else {
Stefan Hilzingera84a42e2010-04-19 12:21:12 +01001546 r = launch_server(server_port);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001547 }
Riley Andrews98f58e82014-12-05 17:37:24 -08001548 if (r) {
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001549 fprintf(stderr,"* could not start server *\n");
1550 }
1551 return r;
1552 }
1553
Riley Andrews98f58e82014-12-05 17:37:24 -08001554 if (argc == 0) {
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001555 return usage();
1556 }
1557
Riley Andrewsc8514c82014-12-05 17:32:46 -08001558 /* handle wait-for-* prefix */
1559 if (!strncmp(argv[0], "wait-for-", strlen("wait-for-"))) {
Dan Albertbac34742015-02-25 17:51:28 -08001560 const char* service = argv[0];
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001561
Elliott Hughes3bd73c12015-05-05 13:10:43 -07001562 if (!wait_for_device(service, transport_type, serial)) {
Riley Andrewsc8514c82014-12-05 17:32:46 -08001563 return 1;
1564 }
1565
Elliott Hughes2b101112015-05-04 19:29:32 -07001566 // Allow a command to be run after wait-for-device,
1567 // e.g. 'adb wait-for-device shell'.
Riley Andrewsc8514c82014-12-05 17:32:46 -08001568 if (argc == 1) {
1569 return 0;
1570 }
1571
1572 /* Fall through */
1573 argc--;
1574 argv++;
1575 }
1576
1577 /* adb_connect() commands */
Riley Andrews98f58e82014-12-05 17:37:24 -08001578 if (!strcmp(argv[0], "devices")) {
Dan Albertbac34742015-02-25 17:51:28 -08001579 const char *listopt;
Elliott Hughes6452a892015-04-29 12:28:13 -07001580 if (argc < 2) {
Scott Andersone109d262012-04-20 11:21:14 -07001581 listopt = "";
Elliott Hughes6452a892015-04-29 12:28:13 -07001582 } else if (argc == 2 && !strcmp(argv[1], "-l")) {
Scott Andersone109d262012-04-20 11:21:14 -07001583 listopt = argv[1];
Elliott Hughes6452a892015-04-29 12:28:13 -07001584 } else {
Scott Andersone109d262012-04-20 11:21:14 -07001585 fprintf(stderr, "Usage: adb devices [-l]\n");
1586 return 1;
1587 }
Elliott Hughes6452a892015-04-29 12:28:13 -07001588
1589 std::string query = android::base::StringPrintf("host:%s%s", argv[0], listopt);
1590 printf("List of devices attached\n");
1591 return adb_query_command(query);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001592 }
Riley Andrewsc8514c82014-12-05 17:32:46 -08001593 else if (!strcmp(argv[0], "connect")) {
Mike Lockwoodff196702009-08-24 15:58:40 -07001594 if (argc != 2) {
Mike Lockwoodcbbe79a2010-05-24 10:44:35 -04001595 fprintf(stderr, "Usage: adb connect <host>[:<port>]\n");
Mike Lockwoodff196702009-08-24 15:58:40 -07001596 return 1;
1597 }
Elliott Hughes6452a892015-04-29 12:28:13 -07001598
1599 std::string query = android::base::StringPrintf("host:connect:%s", argv[1]);
1600 return adb_query_command(query);
Mike Lockwoodcbbe79a2010-05-24 10:44:35 -04001601 }
Riley Andrewsc8514c82014-12-05 17:32:46 -08001602 else if (!strcmp(argv[0], "disconnect")) {
Mike Lockwoodcbbe79a2010-05-24 10:44:35 -04001603 if (argc > 2) {
1604 fprintf(stderr, "Usage: adb disconnect [<host>[:<port>]]\n");
1605 return 1;
1606 }
Elliott Hughes6452a892015-04-29 12:28:13 -07001607
1608 std::string query = android::base::StringPrintf("host:disconnect:%s",
1609 (argc == 2) ? argv[1] : "");
1610 return adb_query_command(query);
Mike Lockwoodff196702009-08-24 15:58:40 -07001611 }
Riley Andrewsc8514c82014-12-05 17:32:46 -08001612 else if (!strcmp(argv[0], "emu")) {
Spencer Low142ec752015-05-06 16:13:42 -07001613 return adb_send_emulator_command(argc, argv, serial);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001614 }
Elliott Hughesc15b17f2015-11-03 11:18:40 -08001615 else if (!strcmp(argv[0], "shell")) {
Josh Gaof3f6a1d2016-01-31 19:12:26 -08001616 return adb_shell(argc, argv);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001617 }
Riley Andrewsc8514c82014-12-05 17:32:46 -08001618 else if (!strcmp(argv[0], "exec-in") || !strcmp(argv[0], "exec-out")) {
Jeff Sharkey5d9d4342014-05-26 18:30:43 -07001619 int exec_in = !strcmp(argv[0], "exec-in");
Jeff Sharkey5d9d4342014-05-26 18:30:43 -07001620
Zach Riggleccafc792016-04-14 17:18:04 -04001621 if (argc < 2) {
1622 fprintf(stderr, "Usage: adb %s command\n", argv[0]);
1623 return 1;
1624 }
1625
Elliott Hughes2baae3a2015-04-17 10:59:34 -07001626 std::string cmd = "exec:";
1627 cmd += argv[1];
Jeff Sharkey5d9d4342014-05-26 18:30:43 -07001628 argc -= 2;
1629 argv += 2;
1630 while (argc-- > 0) {
Elliott Hughes6c34bba2015-04-17 20:11:08 -07001631 cmd += " " + escape_arg(*argv++);
Jeff Sharkey5d9d4342014-05-26 18:30:43 -07001632 }
1633
Elliott Hughes078f0fc2015-04-29 08:35:59 -07001634 std::string error;
Elliott Hughes6452a892015-04-29 12:28:13 -07001635 int fd = adb_connect(cmd, &error);
Jeff Sharkey5d9d4342014-05-26 18:30:43 -07001636 if (fd < 0) {
Elliott Hughes078f0fc2015-04-29 08:35:59 -07001637 fprintf(stderr, "error: %s\n", error.c_str());
Jeff Sharkey5d9d4342014-05-26 18:30:43 -07001638 return -1;
1639 }
1640
1641 if (exec_in) {
1642 copy_to_file(STDIN_FILENO, fd);
1643 } else {
1644 copy_to_file(fd, STDOUT_FILENO);
1645 }
1646
1647 adb_close(fd);
1648 return 0;
1649 }
Riley Andrewsc8514c82014-12-05 17:32:46 -08001650 else if (!strcmp(argv[0], "kill-server")) {
Elliott Hughes078f0fc2015-04-29 08:35:59 -07001651 std::string error;
1652 int fd = _adb_connect("host:kill", &error);
Spencer Lowf18fc082015-08-11 17:05:02 -07001653 if (fd == -2) {
1654 // Failed to make network connection to server. Don't output the
1655 // network error since that is expected.
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001656 fprintf(stderr,"* server not running *\n");
Spencer Lowf18fc082015-08-11 17:05:02 -07001657 // Successful exit code because the server is already "killed".
1658 return 0;
1659 } else if (fd == -1) {
1660 // Some other error.
1661 fprintf(stderr, "error: %s\n", error.c_str());
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001662 return 1;
Spencer Lowf18fc082015-08-11 17:05:02 -07001663 } else {
1664 // Successfully connected, kill command sent, okay status came back.
1665 // Server should exit() in a moment, if not already.
Spencer Low351ecd12015-10-14 17:32:44 -07001666 ReadOrderlyShutdown(fd);
Spencer Lowf18fc082015-08-11 17:05:02 -07001667 adb_close(fd);
1668 return 0;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001669 }
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001670 }
Riley Andrewsc8514c82014-12-05 17:32:46 -08001671 else if (!strcmp(argv[0], "sideload")) {
1672 if (argc != 2) return usage();
Doug Zongker71fe5842014-06-26 15:35:36 -07001673 if (adb_sideload_host(argv[1])) {
Doug Zongker447f0612012-01-09 14:54:53 -08001674 return 1;
1675 } else {
1676 return 0;
1677 }
1678 }
Elliott Hughes19d80b82015-07-21 16:13:40 -07001679 else if (!strcmp(argv[0], "tcpip") && argc > 1) {
1680 return adb_connect_command(android::base::StringPrintf("tcpip:%s", argv[1]));
1681 }
Riley Andrewsc8514c82014-12-05 17:32:46 -08001682 else if (!strcmp(argv[0], "remount") ||
1683 !strcmp(argv[0], "reboot") ||
1684 !strcmp(argv[0], "reboot-bootloader") ||
Riley Andrewsc8514c82014-12-05 17:32:46 -08001685 !strcmp(argv[0], "usb") ||
Riley Andrewsc8514c82014-12-05 17:32:46 -08001686 !strcmp(argv[0], "disable-verity") ||
1687 !strcmp(argv[0], "enable-verity")) {
Elliott Hughes5677c232015-05-07 23:37:40 -07001688 std::string command;
Tao Bao175b7bb2015-03-29 11:22:34 -07001689 if (!strcmp(argv[0], "reboot-bootloader")) {
Elliott Hughes5677c232015-05-07 23:37:40 -07001690 command = "reboot:bootloader";
Tao Bao175b7bb2015-03-29 11:22:34 -07001691 } else if (argc > 1) {
Elliott Hughes5677c232015-05-07 23:37:40 -07001692 command = android::base::StringPrintf("%s:%s", argv[0], argv[1]);
Tao Bao175b7bb2015-03-29 11:22:34 -07001693 } else {
Elliott Hughes5677c232015-05-07 23:37:40 -07001694 command = android::base::StringPrintf("%s:", argv[0]);
The Android Open Source Projecte037fd72009-03-13 13:04:37 -07001695 }
Tao Bao175b7bb2015-03-29 11:22:34 -07001696 return adb_connect_command(command);
Josh Gao06c73ae2016-03-04 15:16:18 -08001697 } else if (!strcmp(argv[0], "root") || !strcmp(argv[0], "unroot")) {
1698 return adb_root(argv[0]) ? 0 : 1;
1699 } else if (!strcmp(argv[0], "bugreport")) {
Felipe Leme218e1ff2016-07-19 17:07:22 -07001700 Bugreport bugreport;
1701 return bugreport.DoIt(transport_type, serial, argc, argv);
Felipe Leme44a42672016-04-01 17:43:27 -07001702 } else if (!strcmp(argv[0], "forward") || !strcmp(argv[0], "reverse")) {
Elliott Hughes424af022015-05-29 17:55:19 -07001703 bool reverse = !strcmp(argv[0], "reverse");
1704 ++argv;
1705 --argc;
1706 if (argc < 1) return usage();
David 'Digit' Turner0d82fbf2012-11-14 15:01:55 +01001707
1708 // Determine the <host-prefix> for this command.
Elliott Hughes424af022015-05-29 17:55:19 -07001709 std::string host_prefix;
David 'Digit' Turner25258692013-03-21 21:07:42 +01001710 if (reverse) {
Elliott Hughes424af022015-05-29 17:55:19 -07001711 host_prefix = "reverse";
David 'Digit' Turner0d82fbf2012-11-14 15:01:55 +01001712 } else {
David 'Digit' Turner25258692013-03-21 21:07:42 +01001713 if (serial) {
Elliott Hughes424af022015-05-29 17:55:19 -07001714 host_prefix = android::base::StringPrintf("host-serial:%s", serial);
Elliott Hughes3bd73c12015-05-05 13:10:43 -07001715 } else if (transport_type == kTransportUsb) {
Elliott Hughes424af022015-05-29 17:55:19 -07001716 host_prefix = "host-usb";
Elliott Hughes3bd73c12015-05-05 13:10:43 -07001717 } else if (transport_type == kTransportLocal) {
Elliott Hughes424af022015-05-29 17:55:19 -07001718 host_prefix = "host-local";
David 'Digit' Turner25258692013-03-21 21:07:42 +01001719 } else {
Elliott Hughes424af022015-05-29 17:55:19 -07001720 host_prefix = "host";
David 'Digit' Turner25258692013-03-21 21:07:42 +01001721 }
David 'Digit' Turner0d82fbf2012-11-14 15:01:55 +01001722 }
1723
David Purselleaae97e2016-04-07 11:25:48 -07001724 std::string cmd, error;
Elliott Hughes424af022015-05-29 17:55:19 -07001725 if (strcmp(argv[0], "--list") == 0) {
Elliott Hughesab52c182015-05-01 17:04:38 -07001726 if (argc != 1) return usage();
Elliott Hughes424af022015-05-29 17:55:19 -07001727 return adb_query_command(host_prefix + ":list-forward");
1728 } else if (strcmp(argv[0], "--remove-all") == 0) {
1729 if (argc != 1) return usage();
1730 cmd = host_prefix + ":killforward-all";
1731 } else if (strcmp(argv[0], "--remove") == 0) {
1732 // forward --remove <local>
Elliott Hughesab52c182015-05-01 17:04:38 -07001733 if (argc != 2) return usage();
Elliott Hughes424af022015-05-29 17:55:19 -07001734 cmd = host_prefix + ":killforward:" + argv[1];
1735 } else if (strcmp(argv[0], "--no-rebind") == 0) {
1736 // forward --no-rebind <local> <remote>
Elliott Hughesab52c182015-05-01 17:04:38 -07001737 if (argc != 3) return usage();
David Purselleaae97e2016-04-07 11:25:48 -07001738 if (forward_targets_are_valid(argv[1], argv[2], &error)) {
1739 cmd = host_prefix + ":forward:norebind:" + argv[1] + ";" + argv[2];
1740 }
Elliott Hughes424af022015-05-29 17:55:19 -07001741 } else {
1742 // forward <local> <remote>
1743 if (argc != 2) return usage();
David Purselleaae97e2016-04-07 11:25:48 -07001744 if (forward_targets_are_valid(argv[0], argv[1], &error)) {
1745 cmd = host_prefix + ":forward:" + argv[0] + ";" + argv[1];
1746 }
David 'Digit' Turner0d82fbf2012-11-14 15:01:55 +01001747 }
1748
David Purselleaae97e2016-04-07 11:25:48 -07001749 if (!error.empty()) {
1750 fprintf(stderr, "error: %s\n", error.c_str());
1751 return 1;
1752 }
1753
1754 int fd = adb_connect(cmd, &error);
1755 if (fd < 0 || !adb_status(fd, &error)) {
1756 adb_close(fd);
1757 fprintf(stderr, "error: %s\n", error.c_str());
1758 return 1;
1759 }
1760
1761 // Server or device may optionally return a resolved TCP port number.
1762 std::string resolved_port;
1763 if (ReadProtocolString(fd, &resolved_port, &error) && !resolved_port.empty()) {
1764 printf("%s\n", resolved_port.c_str());
1765 }
1766
1767 ReadOrderlyShutdown(fd);
1768 return 0;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001769 }
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001770 /* do_sync_*() commands */
Riley Andrewsc8514c82014-12-05 17:32:46 -08001771 else if (!strcmp(argv[0], "ls")) {
1772 if (argc != 2) return usage();
Elliott Hughesaa245492015-08-03 10:38:08 -07001773 return do_sync_ls(argv[1]) ? 0 : 1;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001774 }
Riley Andrewsc8514c82014-12-05 17:32:46 -08001775 else if (!strcmp(argv[0], "push")) {
Josh Gao05786772015-10-30 16:57:19 -07001776 bool copy_attrs = false;
1777 std::vector<const char*> srcs;
1778 const char* dst = nullptr;
Mark Lindner76f2a932014-03-11 17:55:59 -07001779
Josh Gao05786772015-10-30 16:57:19 -07001780 parse_push_pull_args(&argv[1], argc - 1, &srcs, &dst, &copy_attrs);
1781 if (srcs.empty() || !dst) return usage();
1782 return do_sync_push(srcs, dst) ? 0 : 1;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001783 }
Riley Andrewsc8514c82014-12-05 17:32:46 -08001784 else if (!strcmp(argv[0], "pull")) {
Josh Gao05786772015-10-30 16:57:19 -07001785 bool copy_attrs = false;
1786 std::vector<const char*> srcs;
1787 const char* dst = ".";
Mark Lindner76f2a932014-03-11 17:55:59 -07001788
Josh Gao05786772015-10-30 16:57:19 -07001789 parse_push_pull_args(&argv[1], argc - 1, &srcs, &dst, &copy_attrs);
1790 if (srcs.empty()) return usage();
1791 return do_sync_pull(srcs, dst, copy_attrs) ? 0 : 1;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001792 }
Riley Andrewsc8514c82014-12-05 17:32:46 -08001793 else if (!strcmp(argv[0], "install")) {
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001794 if (argc < 2) return usage();
Todd Kennedy7549a462016-07-20 16:22:37 -07001795 if (_use_legacy_install()) {
1796 return install_app_legacy(transport_type, serial, argc, argv);
David Pursell0aacbbe2016-01-21 19:56:50 -08001797 }
Todd Kennedy7549a462016-07-20 16:22:37 -07001798 return install_app(transport_type, serial, argc, argv);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001799 }
Riley Andrewsc8514c82014-12-05 17:32:46 -08001800 else if (!strcmp(argv[0], "install-multiple")) {
Jeff Sharkey960df972014-06-09 17:30:57 -07001801 if (argc < 2) return usage();
Elliott Hughes3bd73c12015-05-05 13:10:43 -07001802 return install_multiple_app(transport_type, serial, argc, argv);
Jeff Sharkey960df972014-06-09 17:30:57 -07001803 }
Riley Andrewsc8514c82014-12-05 17:32:46 -08001804 else if (!strcmp(argv[0], "uninstall")) {
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001805 if (argc < 2) return usage();
Todd Kennedy7549a462016-07-20 16:22:37 -07001806 if (_use_legacy_install()) {
1807 return uninstall_app_legacy(transport_type, serial, argc, argv);
David Pursell0aacbbe2016-01-21 19:56:50 -08001808 }
Todd Kennedy7549a462016-07-20 16:22:37 -07001809 return uninstall_app(transport_type, serial, argc, argv);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001810 }
Riley Andrewsc8514c82014-12-05 17:32:46 -08001811 else if (!strcmp(argv[0], "sync")) {
Elliott Hughesd236d072015-04-21 10:17:07 -07001812 std::string src;
Elliott Hughes58305772015-04-17 13:57:15 -07001813 bool list_only = false;
Riley Andrews98f58e82014-12-05 17:37:24 -08001814 if (argc < 2) {
Elliott Hughes58305772015-04-17 13:57:15 -07001815 // No local path was specified.
Elliott Hughesd236d072015-04-21 10:17:07 -07001816 src = "";
Anthony Newnam705c9442010-02-22 08:36:49 -06001817 } else if (argc >= 2 && strcmp(argv[1], "-l") == 0) {
Elliott Hughesd236d072015-04-21 10:17:07 -07001818 list_only = true;
Anthony Newnam705c9442010-02-22 08:36:49 -06001819 if (argc == 3) {
Elliott Hughesd236d072015-04-21 10:17:07 -07001820 src = argv[2];
Anthony Newnam705c9442010-02-22 08:36:49 -06001821 } else {
Elliott Hughesd236d072015-04-21 10:17:07 -07001822 src = "";
Anthony Newnam705c9442010-02-22 08:36:49 -06001823 }
Riley Andrews98f58e82014-12-05 17:37:24 -08001824 } else if (argc == 2) {
Elliott Hughes58305772015-04-17 13:57:15 -07001825 // A local path or "android"/"data" arg was specified.
Elliott Hughesd236d072015-04-21 10:17:07 -07001826 src = argv[1];
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001827 } else {
1828 return usage();
1829 }
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001830
Elliott Hughesd236d072015-04-21 10:17:07 -07001831 if (src != "" &&
1832 src != "system" && src != "data" && src != "vendor" && src != "oem") {
Elliott Hughes58305772015-04-17 13:57:15 -07001833 return usage();
1834 }
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001835
Elliott Hughes58305772015-04-17 13:57:15 -07001836 std::string system_src_path = product_file("system");
1837 std::string data_src_path = product_file("data");
1838 std::string vendor_src_path = product_file("vendor");
1839 std::string oem_src_path = product_file("oem");
Elliott Hughes58305772015-04-17 13:57:15 -07001840
Elliott Hughesaa245492015-08-03 10:38:08 -07001841 bool okay = true;
1842 if (okay && (src.empty() || src == "system")) {
1843 okay = do_sync_sync(system_src_path, "/system", list_only);
Elliott Hughes58305772015-04-17 13:57:15 -07001844 }
Elliott Hughesaa245492015-08-03 10:38:08 -07001845 if (okay && (src.empty() || src == "vendor") && directory_exists(vendor_src_path)) {
1846 okay = do_sync_sync(vendor_src_path, "/vendor", list_only);
Elliott Hughes58305772015-04-17 13:57:15 -07001847 }
Elliott Hughesaa245492015-08-03 10:38:08 -07001848 if (okay && (src.empty() || src == "oem") && directory_exists(oem_src_path)) {
1849 okay = do_sync_sync(oem_src_path, "/oem", list_only);
Elliott Hughes58305772015-04-17 13:57:15 -07001850 }
Elliott Hughesaa245492015-08-03 10:38:08 -07001851 if (okay && (src.empty() || src == "data")) {
1852 okay = do_sync_sync(data_src_path, "/data", list_only);
Elliott Hughes58305772015-04-17 13:57:15 -07001853 }
Elliott Hughesaa245492015-08-03 10:38:08 -07001854 return okay ? 0 : 1;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001855 }
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001856 /* passthrough commands */
Riley Andrewsc8514c82014-12-05 17:32:46 -08001857 else if (!strcmp(argv[0],"get-state") ||
Scott Andersone109d262012-04-20 11:21:14 -07001858 !strcmp(argv[0],"get-serialno") ||
1859 !strcmp(argv[0],"get-devpath"))
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001860 {
Elliott Hughes3bd73c12015-05-05 13:10:43 -07001861 return adb_query_command(format_host_command(argv[0], transport_type, serial));
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001862 }
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001863 /* other commands */
Riley Andrewsc8514c82014-12-05 17:32:46 -08001864 else if (!strcmp(argv[0],"logcat") || !strcmp(argv[0],"lolcat") || !strcmp(argv[0],"longcat")) {
Elliott Hughes3bd73c12015-05-05 13:10:43 -07001865 return logcat(transport_type, serial, argc, argv);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001866 }
Riley Andrewsc8514c82014-12-05 17:32:46 -08001867 else if (!strcmp(argv[0],"ppp")) {
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001868 return ppp(argc, argv);
1869 }
Riley Andrewsc8514c82014-12-05 17:32:46 -08001870 else if (!strcmp(argv[0], "start-server")) {
Elliott Hughes078f0fc2015-04-29 08:35:59 -07001871 std::string error;
Spencer Lowf18fc082015-08-11 17:05:02 -07001872 const int result = adb_connect("host:start-server", &error);
1873 if (result < 0) {
1874 fprintf(stderr, "error: %s\n", error.c_str());
1875 }
1876 return result;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001877 }
Riley Andrewsc8514c82014-12-05 17:32:46 -08001878 else if (!strcmp(argv[0], "backup")) {
Christopher Tated2f54152011-04-21 12:53:28 -07001879 return backup(argc, argv);
1880 }
Riley Andrewsc8514c82014-12-05 17:32:46 -08001881 else if (!strcmp(argv[0], "restore")) {
Christopher Tate702967a2011-05-17 15:52:54 -07001882 return restore(argc, argv);
1883 }
Riley Andrewsc8514c82014-12-05 17:32:46 -08001884 else if (!strcmp(argv[0], "keygen")) {
Nick Kralevichbea3f9c2014-11-13 15:17:29 -08001885 if (argc < 2) return usage();
Yabin Cuiaed3c612015-09-22 15:52:57 -07001886 // Always print key generation information for keygen command.
1887 adb_trace_enable(AUTH);
Nick Kralevichbea3f9c2014-11-13 15:17:29 -08001888 return adb_auth_keygen(argv[1]);
1889 }
Riley Andrewsc8514c82014-12-05 17:32:46 -08001890 else if (!strcmp(argv[0], "jdwp")) {
Tao Bao175b7bb2015-03-29 11:22:34 -07001891 return adb_connect_command("jdwp");
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001892 }
Josh Gaob463baf2016-05-13 18:18:23 -07001893 else if (!strcmp(argv[0], "track-jdwp")) {
1894 return adb_connect_command("track-jdwp");
1895 }
1896 else if (!strcmp(argv[0], "track-devices")) {
1897 return adb_connect_command("host:track-devices");
1898 }
1899
1900
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001901 /* "adb /?" is a common idiom under Windows */
Riley Andrewsc8514c82014-12-05 17:32:46 -08001902 else if (!strcmp(argv[0], "help") || !strcmp(argv[0], "/?")) {
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001903 help();
1904 return 0;
1905 }
Riley Andrewsc8514c82014-12-05 17:32:46 -08001906 else if (!strcmp(argv[0], "version")) {
Elliott Hughes42ae2602015-08-12 08:32:10 -07001907 fprintf(stdout, "%s", adb_version().c_str());
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001908 return 0;
1909 }
Dan Albert90d4b732015-05-20 18:58:41 -07001910 else if (!strcmp(argv[0], "features")) {
David Pursell4e2fd362015-09-22 10:43:08 -07001911 // Only list the features common to both the adb client and the device.
David Pursell0aacbbe2016-01-21 19:56:50 -08001912 FeatureSet features;
Josh Gaof3f6a1d2016-01-31 19:12:26 -08001913 std::string error;
1914 if (!adb_get_feature_set(&features, &error)) {
1915 fprintf(stderr, "error: %s\n", error.c_str());
David Pursell0aacbbe2016-01-21 19:56:50 -08001916 return 1;
1917 }
1918
David Pursell4e2fd362015-09-22 10:43:08 -07001919 for (const std::string& name : features) {
David Pursell70ef7b42015-09-30 13:35:42 -07001920 if (CanUseFeature(features, name)) {
David Pursell4e2fd362015-09-22 10:43:08 -07001921 printf("%s\n", name.c_str());
1922 }
1923 }
1924 return 0;
Yabin Cui1f4ec192016-04-05 13:50:44 -07001925 } else if (!strcmp(argv[0], "reconnect")) {
1926 if (argc == 1) {
1927 return adb_query_command("host:reconnect");
1928 } else if (argc == 2 && !strcmp(argv[1], "device")) {
1929 std::string err;
1930 adb_connect("reconnect", &err);
1931 return 0;
1932 }
Dan Albert90d4b732015-05-20 18:58:41 -07001933 }
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001934
1935 usage();
1936 return 1;
1937}
1938
Todd Kennedy6fa848a2015-11-03 16:53:08 -08001939static int uninstall_app(TransportType transport, const char* serial, int argc, const char** argv) {
1940 // 'adb uninstall' takes the same arguments as 'cmd package uninstall' on device
1941 std::string cmd = "cmd package";
Elliott Hughes2baae3a2015-04-17 10:59:34 -07001942 while (argc-- > 0) {
Todd Kennedy6fa848a2015-11-03 16:53:08 -08001943 // deny the '-k' option until the remaining data/cache can be removed with adb/UI
1944 if (strcmp(*argv, "-k") == 0) {
1945 printf(
1946 "The -k option uninstalls the application while retaining the data/cache.\n"
1947 "At the moment, there is no way to remove the remaining data.\n"
1948 "You will have to reinstall the application with the same signature, and fully uninstall it.\n"
1949 "If you truly wish to continue, execute 'adb shell cmd package uninstall -k'.\n");
1950 return EXIT_FAILURE;
1951 }
Elliott Hughes6c34bba2015-04-17 20:11:08 -07001952 cmd += " " + escape_arg(*argv++);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001953 }
1954
David Pursell70ef7b42015-09-30 13:35:42 -07001955 return send_shell_command(transport, serial, cmd, false);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001956}
1957
Elliott Hughes3bd73c12015-05-05 13:10:43 -07001958static int install_app(TransportType transport, const char* serial, int argc, const char** argv) {
Todd Kennedy6fa848a2015-11-03 16:53:08 -08001959 // The last argument must be the APK file
1960 const char* file = argv[argc - 1];
1961 const char* dot = strrchr(file, '.');
1962 bool found_apk = false;
Jeff Sharkey960df972014-06-09 17:30:57 -07001963 struct stat sb;
Todd Kennedy6fa848a2015-11-03 16:53:08 -08001964 if (dot && !strcasecmp(dot, ".apk")) {
1965 if (stat(file, &sb) == -1 || !S_ISREG(sb.st_mode)) {
1966 fprintf(stderr, "Invalid APK file: %s\n", file);
1967 return EXIT_FAILURE;
Kenny Root597ea5b2011-08-05 11:19:45 -07001968 }
Todd Kennedy6fa848a2015-11-03 16:53:08 -08001969 found_apk = true;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001970 }
1971
Todd Kennedy6fa848a2015-11-03 16:53:08 -08001972 if (!found_apk) {
Jeff Sharkey960df972014-06-09 17:30:57 -07001973 fprintf(stderr, "Missing APK file\n");
Todd Kennedy6fa848a2015-11-03 16:53:08 -08001974 return EXIT_FAILURE;
Kenny Root597ea5b2011-08-05 11:19:45 -07001975 }
1976
Todd Kennedy6fa848a2015-11-03 16:53:08 -08001977 int localFd = adb_open(file, O_RDONLY);
1978 if (localFd < 0) {
1979 fprintf(stderr, "Failed to open %s: %s\n", file, strerror(errno));
1980 return 1;
1981 }
Kenny Root597ea5b2011-08-05 11:19:45 -07001982
Todd Kennedy6fa848a2015-11-03 16:53:08 -08001983 std::string error;
1984 std::string cmd = "exec:cmd package";
1985
1986 // don't copy the APK name, but, copy the rest of the arguments as-is
1987 while (argc-- > 1) {
1988 cmd += " " + escape_arg(std::string(*argv++));
1989 }
1990
1991 // add size parameter [required for streaming installs]
1992 // do last to override any user specified value
1993 cmd += " " + android::base::StringPrintf("-S %" PRIu64, static_cast<uint64_t>(sb.st_size));
1994
1995 int remoteFd = adb_connect(cmd, &error);
1996 if (remoteFd < 0) {
1997 fprintf(stderr, "Connect error for write: %s\n", error.c_str());
1998 adb_close(localFd);
1999 return 1;
2000 }
2001
2002 char buf[BUFSIZ];
2003 copy_to_file(localFd, remoteFd);
2004 read_status_line(remoteFd, buf, sizeof(buf));
2005
2006 adb_close(localFd);
2007 adb_close(remoteFd);
2008
2009 if (strncmp("Success", buf, 7)) {
Elliott Hughesfe018852015-12-17 14:04:38 -08002010 fprintf(stderr, "Failed to install %s: %s", file, buf);
Todd Kennedy6fa848a2015-11-03 16:53:08 -08002011 return 1;
2012 }
2013 fputs(buf, stderr);
2014 return 0;
Jeff Sharkey960df972014-06-09 17:30:57 -07002015}
2016
Elliott Hughes3bd73c12015-05-05 13:10:43 -07002017static int install_multiple_app(TransportType transport, const char* serial, int argc,
Elliott Hughes58305772015-04-17 13:57:15 -07002018 const char** argv)
Jeff Sharkey960df972014-06-09 17:30:57 -07002019{
Jeff Sharkey960df972014-06-09 17:30:57 -07002020 int i;
2021 struct stat sb;
Elliott Hughes2940ccf2015-04-17 14:07:52 -07002022 uint64_t total_size = 0;
Jeff Sharkey960df972014-06-09 17:30:57 -07002023 // Find all APK arguments starting at end.
2024 // All other arguments passed through verbatim.
2025 int first_apk = -1;
2026 for (i = argc - 1; i >= 0; i--) {
Dan Albertbac34742015-02-25 17:51:28 -08002027 const char* file = argv[i];
Elliott Hughes3e7048c2015-07-27 21:21:39 -07002028 const char* dot = strrchr(file, '.');
Jeff Sharkey960df972014-06-09 17:30:57 -07002029 if (dot && !strcasecmp(dot, ".apk")) {
2030 if (stat(file, &sb) == -1 || !S_ISREG(sb.st_mode)) {
2031 fprintf(stderr, "Invalid APK file: %s\n", file);
Todd Kennedy6fa848a2015-11-03 16:53:08 -08002032 return EXIT_FAILURE;
Jeff Sharkey960df972014-06-09 17:30:57 -07002033 }
2034
2035 total_size += sb.st_size;
2036 first_apk = i;
2037 } else {
2038 break;
2039 }
Kenny Root597ea5b2011-08-05 11:19:45 -07002040 }
2041
Jeff Sharkey960df972014-06-09 17:30:57 -07002042 if (first_apk == -1) {
2043 fprintf(stderr, "Missing APK file\n");
2044 return 1;
2045 }
Kenny Root597ea5b2011-08-05 11:19:45 -07002046
Todd Kennedy7549a462016-07-20 16:22:37 -07002047 std::string install_cmd;
2048 if (_use_legacy_install()) {
2049 install_cmd = "exec:pm";
2050 } else {
2051 install_cmd = "exec:cmd package";
2052 }
2053
2054 std::string cmd = android::base::StringPrintf("%s install-create -S %" PRIu64, install_cmd.c_str(), total_size);
Jeff Sharkey960df972014-06-09 17:30:57 -07002055 for (i = 1; i < first_apk; i++) {
Elliott Hughes6c34bba2015-04-17 20:11:08 -07002056 cmd += " " + escape_arg(argv[i]);
Jeff Sharkey960df972014-06-09 17:30:57 -07002057 }
2058
2059 // Create install session
Elliott Hughes078f0fc2015-04-29 08:35:59 -07002060 std::string error;
Elliott Hughes6452a892015-04-29 12:28:13 -07002061 int fd = adb_connect(cmd, &error);
Jeff Sharkey960df972014-06-09 17:30:57 -07002062 if (fd < 0) {
Elliott Hughes078f0fc2015-04-29 08:35:59 -07002063 fprintf(stderr, "Connect error for create: %s\n", error.c_str());
Todd Kennedy6fa848a2015-11-03 16:53:08 -08002064 return EXIT_FAILURE;
Jeff Sharkey960df972014-06-09 17:30:57 -07002065 }
Elliott Hughes2baae3a2015-04-17 10:59:34 -07002066 char buf[BUFSIZ];
Jeff Sharkey960df972014-06-09 17:30:57 -07002067 read_status_line(fd, buf, sizeof(buf));
2068 adb_close(fd);
2069
2070 int session_id = -1;
2071 if (!strncmp("Success", buf, 7)) {
2072 char* start = strrchr(buf, '[');
2073 char* end = strrchr(buf, ']');
2074 if (start && end) {
2075 *end = '\0';
2076 session_id = strtol(start + 1, NULL, 10);
2077 }
2078 }
2079 if (session_id < 0) {
2080 fprintf(stderr, "Failed to create session\n");
Christopher Tate71bbc672014-07-14 16:45:13 -07002081 fputs(buf, stderr);
Todd Kennedy6fa848a2015-11-03 16:53:08 -08002082 return EXIT_FAILURE;
Jeff Sharkey960df972014-06-09 17:30:57 -07002083 }
2084
2085 // Valid session, now stream the APKs
2086 int success = 1;
2087 for (i = first_apk; i < argc; i++) {
Dan Albertbac34742015-02-25 17:51:28 -08002088 const char* file = argv[i];
Jeff Sharkey960df972014-06-09 17:30:57 -07002089 if (stat(file, &sb) == -1) {
2090 fprintf(stderr, "Failed to stat %s\n", file);
2091 success = 0;
2092 goto finalize_session;
2093 }
2094
Elliott Hughes2940ccf2015-04-17 14:07:52 -07002095 std::string cmd = android::base::StringPrintf(
Todd Kennedy7549a462016-07-20 16:22:37 -07002096 "%s install-write -S %" PRIu64 " %d %d_%s -",
2097 install_cmd.c_str(), static_cast<uint64_t>(sb.st_size), session_id, i, adb_basename(file).c_str());
Jeff Sharkey960df972014-06-09 17:30:57 -07002098
2099 int localFd = adb_open(file, O_RDONLY);
2100 if (localFd < 0) {
Elliott Hughes078f0fc2015-04-29 08:35:59 -07002101 fprintf(stderr, "Failed to open %s: %s\n", file, strerror(errno));
Jeff Sharkey960df972014-06-09 17:30:57 -07002102 success = 0;
2103 goto finalize_session;
2104 }
2105
Elliott Hughes078f0fc2015-04-29 08:35:59 -07002106 std::string error;
Elliott Hughes6452a892015-04-29 12:28:13 -07002107 int remoteFd = adb_connect(cmd, &error);
Jeff Sharkey960df972014-06-09 17:30:57 -07002108 if (remoteFd < 0) {
Elliott Hughes078f0fc2015-04-29 08:35:59 -07002109 fprintf(stderr, "Connect error for write: %s\n", error.c_str());
Jeff Sharkey960df972014-06-09 17:30:57 -07002110 adb_close(localFd);
2111 success = 0;
2112 goto finalize_session;
2113 }
2114
2115 copy_to_file(localFd, remoteFd);
2116 read_status_line(remoteFd, buf, sizeof(buf));
2117
2118 adb_close(localFd);
2119 adb_close(remoteFd);
2120
2121 if (strncmp("Success", buf, 7)) {
2122 fprintf(stderr, "Failed to write %s\n", file);
Christopher Tate71bbc672014-07-14 16:45:13 -07002123 fputs(buf, stderr);
Jeff Sharkey960df972014-06-09 17:30:57 -07002124 success = 0;
2125 goto finalize_session;
2126 }
2127 }
2128
2129finalize_session:
Jeff Sharkeyac77e1f2014-07-25 09:58:25 -07002130 // Commit session if we streamed everything okay; otherwise abandon
Elliott Hughes6452a892015-04-29 12:28:13 -07002131 std::string service =
Todd Kennedy7549a462016-07-20 16:22:37 -07002132 android::base::StringPrintf("%s install-%s %d",
2133 install_cmd.c_str(), success ? "commit" : "abandon", session_id);
Elliott Hughes6452a892015-04-29 12:28:13 -07002134 fd = adb_connect(service, &error);
Jeff Sharkey960df972014-06-09 17:30:57 -07002135 if (fd < 0) {
Elliott Hughes078f0fc2015-04-29 08:35:59 -07002136 fprintf(stderr, "Connect error for finalize: %s\n", error.c_str());
Todd Kennedy6fa848a2015-11-03 16:53:08 -08002137 return EXIT_FAILURE;
Jeff Sharkey960df972014-06-09 17:30:57 -07002138 }
2139 read_status_line(fd, buf, sizeof(buf));
2140 adb_close(fd);
2141
2142 if (!strncmp("Success", buf, 7)) {
Christopher Tate71bbc672014-07-14 16:45:13 -07002143 fputs(buf, stderr);
Jeff Sharkey960df972014-06-09 17:30:57 -07002144 return 0;
2145 } else {
2146 fprintf(stderr, "Failed to finalize session\n");
Christopher Tate71bbc672014-07-14 16:45:13 -07002147 fputs(buf, stderr);
Todd Kennedy6fa848a2015-11-03 16:53:08 -08002148 return EXIT_FAILURE;
Jeff Sharkey960df972014-06-09 17:30:57 -07002149 }
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08002150}
Todd Kennedy6fa848a2015-11-03 16:53:08 -08002151
2152static int pm_command(TransportType transport, const char* serial, int argc, const char** argv) {
2153 std::string cmd = "pm";
2154
2155 while (argc-- > 0) {
2156 cmd += " " + escape_arg(*argv++);
2157 }
2158
2159 return send_shell_command(transport, serial, cmd, false);
2160}
2161
2162static int uninstall_app_legacy(TransportType transport, const char* serial, int argc, const char** argv) {
2163 /* if the user choose the -k option, we refuse to do it until devices are
2164 out with the option to uninstall the remaining data somehow (adb/ui) */
2165 int i;
2166 for (i = 1; i < argc; i++) {
2167 if (!strcmp(argv[i], "-k")) {
2168 printf(
2169 "The -k option uninstalls the application while retaining the data/cache.\n"
2170 "At the moment, there is no way to remove the remaining data.\n"
2171 "You will have to reinstall the application with the same signature, and fully uninstall it.\n"
2172 "If you truly wish to continue, execute 'adb shell pm uninstall -k'\n.");
2173 return EXIT_FAILURE;
2174 }
2175 }
2176
2177 /* 'adb uninstall' takes the same arguments as 'pm uninstall' on device */
2178 return pm_command(transport, serial, argc, argv);
2179}
2180
2181static int delete_file(TransportType transport, const char* serial, const std::string& filename) {
2182 std::string cmd = "rm -f " + escape_arg(filename);
2183 return send_shell_command(transport, serial, cmd, false);
2184}
2185
2186static int install_app_legacy(TransportType transport, const char* serial, int argc, const char** argv) {
2187 static const char *const DATA_DEST = "/data/local/tmp/%s";
2188 static const char *const SD_DEST = "/sdcard/tmp/%s";
2189 const char* where = DATA_DEST;
2190 int i;
2191 struct stat sb;
2192
2193 for (i = 1; i < argc; i++) {
2194 if (!strcmp(argv[i], "-s")) {
2195 where = SD_DEST;
2196 }
2197 }
2198
2199 // Find last APK argument.
2200 // All other arguments passed through verbatim.
2201 int last_apk = -1;
2202 for (i = argc - 1; i >= 0; i--) {
2203 const char* file = argv[i];
2204 const char* dot = strrchr(file, '.');
2205 if (dot && !strcasecmp(dot, ".apk")) {
2206 if (stat(file, &sb) == -1 || !S_ISREG(sb.st_mode)) {
2207 fprintf(stderr, "Invalid APK file: %s\n", file);
2208 return EXIT_FAILURE;
2209 }
2210
2211 last_apk = i;
2212 break;
2213 }
2214 }
2215
2216 if (last_apk == -1) {
2217 fprintf(stderr, "Missing APK file\n");
2218 return EXIT_FAILURE;
2219 }
2220
2221 int result = -1;
2222 std::vector<const char*> apk_file = {argv[last_apk]};
2223 std::string apk_dest = android::base::StringPrintf(
2224 where, adb_basename(argv[last_apk]).c_str());
2225 if (!do_sync_push(apk_file, apk_dest.c_str())) goto cleanup_apk;
2226 argv[last_apk] = apk_dest.c_str(); /* destination name, not source location */
2227 result = pm_command(transport, serial, argc, argv);
2228
2229cleanup_apk:
2230 delete_file(transport, serial, apk_dest);
2231 return result;
2232}