blob: 4ca5c5a53f75cc7cbd660b34f43b8c0d74811e1b [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
Dan Albert33134262015-03-19 15:21:08 -070017#define TRACE_TAG TRACE_ADB
18
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
Elliott Hughes2baae3a2015-04-17 10:59:34 -070034#include <string>
35
36#include <base/stringprintf.h>
37
Yabin Cuid325e862014-11-17 14:48:25 -080038#if !defined(_WIN32)
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -080039#include <termios.h>
Dan Albert76649012015-02-24 15:51:19 -080040#include <unistd.h>
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -080041#endif
42
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -080043#include "adb.h"
Nick Kralevichbea3f9c2014-11-13 15:17:29 -080044#include "adb_auth.h"
Dan Albertcc731cc2015-02-24 21:26:58 -080045#include "adb_client.h"
46#include "adb_io.h"
Elliott Hughes58305772015-04-17 13:57:15 -070047#include "adb_utils.h"
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -080048#include "file_sync_service.h"
49
Elliott Hughes3bd73c12015-05-05 13:10:43 -070050static int install_app(TransportType t, const char* serial, int argc, const char** argv);
51static int install_multiple_app(TransportType t, const char* serial, int argc, const char** argv);
52static int uninstall_app(TransportType t, const char* serial, int argc, const char** argv);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -080053
Elliott Hughes58305772015-04-17 13:57:15 -070054static std::string gProductOutPath;
Matt Gumbeld7b33082012-11-14 10:16:17 -080055extern int gListenAll;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -080056
Elliott Hughes58305772015-04-17 13:57:15 -070057static std::string product_file(const char *extra) {
58 if (gProductOutPath.empty()) {
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -080059 fprintf(stderr, "adb: Product directory not specified; "
60 "use -p or define ANDROID_PRODUCT_OUT\n");
61 exit(1);
62 }
63
Elliott Hughes58305772015-04-17 13:57:15 -070064 return android::base::StringPrintf("%s%s%s",
65 gProductOutPath.c_str(), OS_PATH_SEPARATOR_STR, extra);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -080066}
67
Elliott Hughes58305772015-04-17 13:57:15 -070068static void help() {
Elliott Hughes42ae2602015-08-12 08:32:10 -070069 fprintf(stderr, "%s\n", adb_version().c_str());
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -080070 fprintf(stderr,
Matt Gumbeld7b33082012-11-14 10:16:17 -080071 " -a - directs adb to listen on all interfaces for a connection\n"
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -080072 " -d - directs command to the only connected USB device\n"
73 " returns an error if more than one USB device is present.\n"
74 " -e - directs command to the only running emulator.\n"
75 " returns an error if more than one emulator is running.\n"
Scott Andersone109d262012-04-20 11:21:14 -070076 " -s <specific device> - directs command to the device or emulator with the given\n"
Scott Anderson2ca3e6b2012-05-30 18:11:27 -070077 " serial number or qualifier. Overrides ANDROID_SERIAL\n"
Elliott Hughes31dbed72009-10-07 15:38:53 -070078 " environment variable.\n"
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -080079 " -p <product name or path> - simple product name like 'sooner', or\n"
80 " a relative/absolute path to a product\n"
81 " out directory like 'out/target/product/sooner'.\n"
82 " If -p is not specified, the ANDROID_PRODUCT_OUT\n"
83 " environment variable is used, which must\n"
84 " be an absolute path.\n"
Matt Gumbeld7b33082012-11-14 10:16:17 -080085 " -H - Name of adb server host (default: localhost)\n"
86 " -P - Port of adb server (default: 5037)\n"
Scott Andersone109d262012-04-20 11:21:14 -070087 " devices [-l] - list all connected devices\n"
Scott Anderson2ca3e6b2012-05-30 18:11:27 -070088 " ('-l' will also list device qualifiers)\n"
Mike Lockwoodcbbe79a2010-05-24 10:44:35 -040089 " connect <host>[:<port>] - connect to a device via TCP/IP\n"
90 " Port 5555 is used by default if no port number is specified.\n"
91 " disconnect [<host>[:<port>]] - disconnect from a TCP/IP device.\n"
92 " Port 5555 is used by default if no port number is specified.\n"
Bernhard Reutner-Fischer6715a432011-04-26 12:46:05 +020093 " Using this command with no additional arguments\n"
Mike Lockwoodcbbe79a2010-05-24 10:44:35 -040094 " will disconnect from all connected TCP/IP devices.\n"
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -080095 "\n"
96 "device commands:\n"
Mark Lindner76f2a932014-03-11 17:55:59 -070097 " adb push [-p] <local> <remote>\n"
98 " - copy file/dir to device\n"
99 " ('-p' to display the transfer progress)\n"
Lajos Molnarde8ff4a2013-04-19 12:41:09 -0700100 " adb pull [-p] [-a] <remote> [<local>]\n"
Mark Lindner76f2a932014-03-11 17:55:59 -0700101 " - copy file/dir from device\n"
102 " ('-p' to display the transfer progress)\n"
Lajos Molnarde8ff4a2013-04-19 12:41:09 -0700103 " ('-a' means copy timestamp and mode)\n"
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800104 " adb sync [ <directory> ] - copy host->device only if changed\n"
Anthony Newnam705c9442010-02-22 08:36:49 -0600105 " (-l means list but don't copy)\n"
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800106 " adb shell - run remote shell interactively\n"
107 " adb shell <command> - run remote shell command\n"
108 " adb emu <command> - run emulator console command\n"
109 " adb logcat [ <filter-spec> ] - View device log\n"
David 'Digit' Turner0d82fbf2012-11-14 15:01:55 +0100110 " adb forward --list - list all forward socket connections.\n"
111 " the format is a list of lines with the following format:\n"
112 " <serial> \" \" <local> \" \" <remote> \"\\n\"\n"
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800113 " adb forward <local> <remote> - forward socket connections\n"
114 " forward specs are one of: \n"
115 " tcp:<port>\n"
116 " localabstract:<unix domain socket name>\n"
117 " localreserved:<unix domain socket name>\n"
118 " localfilesystem:<unix domain socket name>\n"
119 " dev:<character device name>\n"
120 " jdwp:<process pid> (remote only)\n"
David 'Digit' Turner0d82fbf2012-11-14 15:01:55 +0100121 " adb forward --no-rebind <local> <remote>\n"
122 " - same as 'adb forward <local> <remote>' but fails\n"
123 " if <local> is already forwarded\n"
124 " adb forward --remove <local> - remove a specific forward socket connection\n"
125 " adb forward --remove-all - remove all forward socket connections\n"
David 'Digit' Turner25258692013-03-21 21:07:42 +0100126 " adb reverse --list - list all reverse socket connections from device\n"
127 " adb reverse <remote> <local> - reverse socket connections\n"
128 " reverse specs are one of:\n"
129 " tcp:<port>\n"
130 " localabstract:<unix domain socket name>\n"
131 " localreserved:<unix domain socket name>\n"
132 " localfilesystem:<unix domain socket name>\n"
133 " adb reverse --norebind <remote> <local>\n"
134 " - same as 'adb reverse <remote> <local>' but fails\n"
135 " if <remote> is already reversed.\n"
136 " adb reverse --remove <remote>\n"
137 " - remove a specific reversed socket connection\n"
138 " adb reverse --remove-all - remove all reversed socket connections from device\n"
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800139 " adb jdwp - list PIDs of processes hosting a JDWP transport\n"
Lorenzo Colitti0b3baac2015-05-28 12:03:44 +0900140 " adb install [-lrtsdg] <file>\n"
Svetoslav23d84072015-06-01 16:02:50 -0700141 " - push this package file to the device and install it\n"
142 " (-l: forward lock application)\n"
143 " (-r: replace existing application)\n"
144 " (-t: allow test packages)\n"
145 " (-s: install application on sdcard)\n"
146 " (-d: allow version code downgrade)\n"
147 " (-g: grant all runtime permissions)\n"
Lorenzo Colitti0b3baac2015-05-28 12:03:44 +0900148 " adb install-multiple [-lrtsdpg] <file...>\n"
Anonymous Coward4474ac42012-04-24 10:43:41 -0700149 " - push this package file to the device and install it\n"
Jeff Sharkey960df972014-06-09 17:30:57 -0700150 " (-l: forward lock application)\n"
151 " (-r: replace existing application)\n"
152 " (-t: allow test packages)\n"
153 " (-s: install application on sdcard)\n"
154 " (-d: allow version code downgrade)\n"
155 " (-p: partial application install)\n"
Lorenzo Colitti0b3baac2015-05-28 12:03:44 +0900156 " (-g: grant all runtime permissions)\n"
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800157 " adb uninstall [-k] <package> - remove this app package from the device\n"
158 " ('-k' means keep the data and cache directories)\n"
159 " adb bugreport - return all information from the device\n"
160 " that should be included in a bug report.\n"
161 "\n"
Christopher Tate0c06eb52013-03-06 16:40:52 -0800162 " adb backup [-f <file>] [-apk|-noapk] [-obb|-noobb] [-shared|-noshared] [-all] [-system|-nosystem] [<packages...>]\n"
Christopher Tate56885092011-10-03 18:27:01 -0700163 " - write an archive of the device's data to <file>.\n"
164 " If no -f option is supplied then the data is written\n"
165 " to \"backup.ab\" in the current directory.\n"
Christopher Tated2f54152011-04-21 12:53:28 -0700166 " (-apk|-noapk enable/disable backup of the .apks themselves\n"
Christopher Tatede034ec2011-08-09 17:05:29 -0700167 " in the archive; the default is noapk.)\n"
Christopher Tate0c06eb52013-03-06 16:40:52 -0800168 " (-obb|-noobb enable/disable backup of any installed apk expansion\n"
169 " (aka .obb) files associated with each application; the default\n"
170 " is noobb.)\n"
Christopher Tated2f54152011-04-21 12:53:28 -0700171 " (-shared|-noshared enable/disable backup of the device's\n"
172 " shared storage / SD card contents; the default is noshared.)\n"
173 " (-all means to back up all installed applications)\n"
Christopher Tate56885092011-10-03 18:27:01 -0700174 " (-system|-nosystem toggles whether -all automatically includes\n"
175 " system applications; the default is to include system apps)\n"
Christopher Tated2f54152011-04-21 12:53:28 -0700176 " (<packages...> is the list of applications to be backed up. If\n"
177 " the -all or -shared flags are passed, then the package\n"
Christopher Tate56885092011-10-03 18:27:01 -0700178 " list is optional. Applications explicitly given on the\n"
179 " command line will be included even if -nosystem would\n"
180 " ordinarily cause them to be omitted.)\n"
Christopher Tated2f54152011-04-21 12:53:28 -0700181 "\n"
Christopher Tatede034ec2011-08-09 17:05:29 -0700182 " adb restore <file> - restore device contents from the <file> backup archive\n"
Christopher Tate702967a2011-05-17 15:52:54 -0700183 "\n"
Paul Lawrence982089d2014-12-03 15:31:57 -0800184 " adb disable-verity - disable dm-verity checking on USERDEBUG builds\n"
185 " adb enable-verity - re-enable dm-verity checking on USERDEBUG builds\n"
Nick Kralevichbea3f9c2014-11-13 15:17:29 -0800186 " adb keygen <file> - generate adb public/private key. The private key is stored in <file>,\n"
187 " and the public key is stored in <file>.pub. Any existing files\n"
188 " are overwritten.\n"
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800189 " adb help - show this help message\n"
190 " adb version - show version num\n"
191 "\n"
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800192 "scripting:\n"
193 " adb wait-for-device - block until device is online\n"
194 " adb start-server - ensure that there is a server running\n"
195 " adb kill-server - kill the server if it is running\n"
196 " adb get-state - prints: offline | bootloader | device\n"
197 " adb get-serialno - prints: <serial-number>\n"
Scott Andersone109d262012-04-20 11:21:14 -0700198 " adb get-devpath - prints: <device-path>\n"
Elliott Hughesec7a6672015-03-16 21:58:32 +0000199 " 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 -0700200 " adb reboot [bootloader|recovery]\n"
201 " - reboots the device, optionally into the bootloader or recovery program.\n"
202 " adb reboot sideload - reboots the device into the sideload mode in recovery program (adb root required).\n"
203 " adb reboot sideload-auto-reboot\n"
204 " - reboots into the sideload mode, then reboots automatically after the sideload regardless of the result.\n"
Elliott Hughes7e067cf2015-06-12 14:26:29 -0700205 " adb sideload <file> - sideloads the given package\n"
Mike Lockwoodff196702009-08-24 15:58:40 -0700206 " adb root - restarts the adbd daemon with root permissions\n"
Dan Pasanen98858812014-10-06 12:57:20 -0500207 " adb unroot - restarts the adbd daemon without root permissions\n"
Romain Guy311add42009-12-14 14:42:17 -0800208 " adb usb - restarts the adbd daemon listening on USB\n"
Paul Lawrenceec900bb2014-10-09 14:22:49 +0000209 " adb tcpip <port> - restarts the adbd daemon listening on TCP on the specified port\n"
Elliott Hughes7e067cf2015-06-12 14:26:29 -0700210 "\n"
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800211 "networking:\n"
212 " adb ppp <tty> [parameters] - Run PPP over USB.\n"
Kenny Rootc9891992009-06-08 14:40:30 -0500213 " Note: you should not automatically start a PPP connection.\n"
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800214 " <tty> refers to the tty for PPP stream. Eg. dev:/dev/omap_csmi_tty1\n"
215 " [parameters] - Eg. defaultroute debug dump local notty usepeerdns\n"
216 "\n"
217 "adb sync notes: adb sync [ <directory> ]\n"
218 " <localdir> can be interpreted in several ways:\n"
219 "\n"
Elliott Hughesec7a6672015-03-16 21:58:32 +0000220 " - 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 -0800221 "\n"
Elliott Hughesec7a6672015-03-16 21:58:32 +0000222 " - If it is \"system\", \"vendor\", \"oem\" or \"data\", only the corresponding partition\n"
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800223 " is updated.\n"
Timcd643152010-02-16 20:18:29 +0000224 "\n"
Elliott Hughes7e067cf2015-06-12 14:26:29 -0700225 "environment variables:\n"
Timcd643152010-02-16 20:18:29 +0000226 " ADB_TRACE - Print debug information. A comma separated list of the following values\n"
227 " 1 or all, adb, sockets, packets, rwx, usb, sync, sysdeps, transport, jdwp\n"
228 " ANDROID_SERIAL - The serial number to connect to. -s takes priority over this if given.\n"
229 " ANDROID_LOG_TAGS - When used with the logcat option, only these debug tags are printed.\n"
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800230 );
231}
232
Elliott Hughes58305772015-04-17 13:57:15 -0700233static int usage() {
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800234 help();
235 return 1;
236}
237
Yabin Cuid325e862014-11-17 14:48:25 -0800238#if defined(_WIN32)
239
Elliott Hughesa2f2e562015-04-16 16:47:02 -0700240// Implemented in sysdeps_win32.cpp.
Spencer Low50184062015-03-01 15:06:21 -0800241void stdin_raw_init(int fd);
242void stdin_raw_restore(int fd);
Yabin Cuid325e862014-11-17 14:48:25 -0800243
244#else
Alistair Buxtondfa09fd2013-03-01 22:16:41 +0100245static termios g_saved_terminal_state;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800246
Alistair Buxtondfa09fd2013-03-01 22:16:41 +0100247static void stdin_raw_init(int fd) {
248 if (tcgetattr(fd, &g_saved_terminal_state)) return;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800249
Alistair Buxtondfa09fd2013-03-01 22:16:41 +0100250 termios tio;
251 if (tcgetattr(fd, &tio)) return;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800252
Alistair Buxtondfa09fd2013-03-01 22:16:41 +0100253 cfmakeraw(&tio);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800254
Alistair Buxtondfa09fd2013-03-01 22:16:41 +0100255 // No timeout but request at least one character per read.
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800256 tio.c_cc[VTIME] = 0;
257 tio.c_cc[VMIN] = 1;
258
Alistair Buxtondfa09fd2013-03-01 22:16:41 +0100259 tcsetattr(fd, TCSAFLUSH, &tio);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800260}
261
Alistair Buxtondfa09fd2013-03-01 22:16:41 +0100262static void stdin_raw_restore(int fd) {
263 tcsetattr(fd, TCSAFLUSH, &g_saved_terminal_state);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800264}
265#endif
266
Elliott Hughes5677c232015-05-07 23:37:40 -0700267static void read_and_dump(int fd) {
268 while (fd >= 0) {
JP Abgrall408fa572011-03-16 15:57:42 -0700269 D("read_and_dump(): pre adb_read(fd=%d)\n", fd);
Elliott Hughes5677c232015-05-07 23:37:40 -0700270 char buf[BUFSIZ];
271 int len = adb_read(fd, buf, sizeof(buf));
JP Abgrall408fa572011-03-16 15:57:42 -0700272 D("read_and_dump(): post adb_read(fd=%d): len=%d\n", fd, len);
Elliott Hughes5677c232015-05-07 23:37:40 -0700273 if (len <= 0) {
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800274 break;
275 }
276
Mike Lockwooddd6b36e2009-09-22 01:18:40 -0400277 fwrite(buf, 1, len, stdout);
278 fflush(stdout);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800279 }
280}
281
Jeff Sharkey960df972014-06-09 17:30:57 -0700282static void read_status_line(int fd, char* buf, size_t count)
283{
284 count--;
285 while (count > 0) {
286 int len = adb_read(fd, buf, count);
Elliott Hughes8fcd8bc2015-08-25 10:59:45 -0700287 if (len <= 0) {
Jeff Sharkey960df972014-06-09 17:30:57 -0700288 break;
289 }
290
291 buf += len;
292 count -= len;
293 }
294 *buf = '\0';
295}
296
Christopher Tated2f54152011-04-21 12:53:28 -0700297static void copy_to_file(int inFd, int outFd) {
Christopher Tate5b811fa2011-06-10 11:38:37 -0700298 const size_t BUFSIZE = 32 * 1024;
299 char* buf = (char*) malloc(BUFSIZE);
Elliott Hughesdc3b4592015-04-21 19:39:52 -0700300 if (buf == nullptr) fatal("couldn't allocate buffer for copy_to_file");
Christopher Tated2f54152011-04-21 12:53:28 -0700301 int len;
Christopher Tatec9cd3b92011-06-01 17:56:23 -0700302 long total = 0;
Spencer Lowb7dfb792015-05-22 16:48:31 -0700303#ifdef _WIN32
304 int old_stdin_mode = -1;
305 int old_stdout_mode = -1;
306#endif
Christopher Tated2f54152011-04-21 12:53:28 -0700307
308 D("copy_to_file(%d -> %d)\n", inFd, outFd);
Yabin Cuid325e862014-11-17 14:48:25 -0800309
Jeff Sharkey5d9d4342014-05-26 18:30:43 -0700310 if (inFd == STDIN_FILENO) {
311 stdin_raw_init(STDIN_FILENO);
Spencer Lowb7dfb792015-05-22 16:48:31 -0700312#ifdef _WIN32
313 old_stdin_mode = _setmode(STDIN_FILENO, _O_BINARY);
314 if (old_stdin_mode == -1) {
315 fatal_errno("could not set stdin to binary");
316 }
317#endif
Jeff Sharkey5d9d4342014-05-26 18:30:43 -0700318 }
Yabin Cuid325e862014-11-17 14:48:25 -0800319
Spencer Lowb7dfb792015-05-22 16:48:31 -0700320#ifdef _WIN32
321 if (outFd == STDOUT_FILENO) {
322 old_stdout_mode = _setmode(STDOUT_FILENO, _O_BINARY);
323 if (old_stdout_mode == -1) {
324 fatal_errno("could not set stdout to binary");
325 }
326 }
327#endif
328
Elliott Hughesa7090b92015-04-17 17:03:59 -0700329 while (true) {
Jeff Sharkey5d9d4342014-05-26 18:30:43 -0700330 if (inFd == STDIN_FILENO) {
331 len = unix_read(inFd, buf, BUFSIZE);
332 } else {
333 len = adb_read(inFd, buf, BUFSIZE);
334 }
Christopher Tated2f54152011-04-21 12:53:28 -0700335 if (len == 0) {
Christopher Tate5b811fa2011-06-10 11:38:37 -0700336 D("copy_to_file() : read 0 bytes; exiting\n");
Christopher Tated2f54152011-04-21 12:53:28 -0700337 break;
338 }
339 if (len < 0) {
Elliott Hughes8fcd8bc2015-08-25 10:59:45 -0700340 D("copy_to_file(): read failed: %s\n", strerror(errno));
Christopher Tated2f54152011-04-21 12:53:28 -0700341 break;
342 }
Jeff Sharkey5d9d4342014-05-26 18:30:43 -0700343 if (outFd == STDOUT_FILENO) {
344 fwrite(buf, 1, len, stdout);
345 fflush(stdout);
346 } else {
347 adb_write(outFd, buf, len);
348 }
Christopher Tatec9cd3b92011-06-01 17:56:23 -0700349 total += len;
Christopher Tated2f54152011-04-21 12:53:28 -0700350 }
Yabin Cuid325e862014-11-17 14:48:25 -0800351
Jeff Sharkey5d9d4342014-05-26 18:30:43 -0700352 if (inFd == STDIN_FILENO) {
353 stdin_raw_restore(STDIN_FILENO);
Spencer Lowb7dfb792015-05-22 16:48:31 -0700354#ifdef _WIN32
355 if (_setmode(STDIN_FILENO, old_stdin_mode) == -1) {
356 fatal_errno("could not restore stdin mode");
357 }
358#endif
Jeff Sharkey5d9d4342014-05-26 18:30:43 -0700359 }
Yabin Cuid325e862014-11-17 14:48:25 -0800360
Spencer Lowb7dfb792015-05-22 16:48:31 -0700361#ifdef _WIN32
362 if (outFd == STDOUT_FILENO) {
363 if (_setmode(STDOUT_FILENO, old_stdout_mode) == -1) {
364 fatal_errno("could not restore stdout mode");
365 }
366 }
367#endif
368
Christopher Tatec9cd3b92011-06-01 17:56:23 -0700369 D("copy_to_file() finished after %lu bytes\n", total);
Christopher Tate5b811fa2011-06-10 11:38:37 -0700370 free(buf);
Christopher Tated2f54152011-04-21 12:53:28 -0700371}
372
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800373static void *stdin_read_thread(void *x)
374{
375 int fd, fdi;
376 unsigned char buf[1024];
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800377 int r, n;
378 int state = 0;
379
380 int *fds = (int*) x;
381 fd = fds[0];
382 fdi = fds[1];
383 free(fds);
384
Siva Velusamy49ee7cf2015-08-28 16:37:29 -0700385 adb_thread_setname("stdin reader");
386
Elliott Hughesaa245492015-08-03 10:38:08 -0700387 while (true) {
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800388 /* fdi is really the client's stdin, so use read, not adb_read here */
JP Abgrall408fa572011-03-16 15:57:42 -0700389 D("stdin_read_thread(): pre unix_read(fdi=%d,...)\n", fdi);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800390 r = unix_read(fdi, buf, 1024);
JP Abgrall408fa572011-03-16 15:57:42 -0700391 D("stdin_read_thread(): post unix_read(fdi=%d,...)\n", fdi);
Elliott Hughes8fcd8bc2015-08-25 10:59:45 -0700392 if (r <= 0) break;
393 for (n = 0; n < r; n++){
Mike Lockwood67d53582010-05-25 13:40:15 -0400394 switch(buf[n]) {
395 case '\n':
396 state = 1;
397 break;
398 case '\r':
399 state = 1;
400 break;
401 case '~':
402 if(state == 1) state++;
403 break;
404 case '.':
405 if(state == 2) {
406 fprintf(stderr,"\n* disconnect *\n");
Mike Lockwood67d53582010-05-25 13:40:15 -0400407 stdin_raw_restore(fdi);
Mike Lockwood67d53582010-05-25 13:40:15 -0400408 exit(0);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800409 }
Mike Lockwood67d53582010-05-25 13:40:15 -0400410 default:
411 state = 0;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800412 }
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800413 }
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800414 r = adb_write(fd, buf, r);
415 if(r <= 0) {
416 break;
417 }
418 }
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800419 return 0;
420}
421
Elliott Hughes58305772015-04-17 13:57:15 -0700422static int interactive_shell() {
Elliott Hughes078f0fc2015-04-29 08:35:59 -0700423 int fdi;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800424
Elliott Hughes078f0fc2015-04-29 08:35:59 -0700425 std::string error;
426 int fd = adb_connect("shell:", &error);
427 if (fd < 0) {
428 fprintf(stderr,"error: %s\n", error.c_str());
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800429 return 1;
430 }
431 fdi = 0; //dup(0);
432
Dan Albertbac34742015-02-25 17:51:28 -0800433 int* fds = reinterpret_cast<int*>(malloc(sizeof(int) * 2));
Elliott Hughesdc3b4592015-04-21 19:39:52 -0700434 if (fds == nullptr) {
435 fprintf(stderr, "couldn't allocate fds array: %s\n", strerror(errno));
436 return 1;
437 }
438
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800439 fds[0] = fd;
440 fds[1] = fdi;
441
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800442 stdin_raw_init(fdi);
Elliott Hughes9b0f3542015-05-05 13:41:21 -0700443
444 adb_thread_create(stdin_read_thread, fds);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800445 read_and_dump(fd);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800446 stdin_raw_restore(fdi);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800447 return 0;
448}
449
450
Elliott Hughes3bd73c12015-05-05 13:10:43 -0700451static std::string format_host_command(const char* command, TransportType type, const char* serial) {
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800452 if (serial) {
Elliott Hughes6452a892015-04-29 12:28:13 -0700453 return android::base::StringPrintf("host-serial:%s:%s", serial, command);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800454 }
Elliott Hughes6452a892015-04-29 12:28:13 -0700455
456 const char* prefix = "host";
457 if (type == kTransportUsb) {
458 prefix = "host-usb";
459 } else if (type == kTransportLocal) {
460 prefix = "host-local";
461 }
462 return android::base::StringPrintf("%s:%s", prefix, command);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800463}
464
Elliott Hughes6452a892015-04-29 12:28:13 -0700465static int adb_download_buffer(const char *service, const char *fn, const void* data, unsigned sz,
Elliott Hughes078f0fc2015-04-29 08:35:59 -0700466 bool show_progress)
Doug Zongker447f0612012-01-09 14:54:53 -0800467{
Elliott Hughes078f0fc2015-04-29 08:35:59 -0700468 std::string error;
Elliott Hughes6452a892015-04-29 12:28:13 -0700469 int fd = adb_connect(android::base::StringPrintf("%s:%d", service, sz), &error);
Elliott Hughes078f0fc2015-04-29 08:35:59 -0700470 if (fd < 0) {
471 fprintf(stderr,"error: %s\n", error.c_str());
Doug Zongker447f0612012-01-09 14:54:53 -0800472 return -1;
473 }
474
475 int opt = CHUNK_SIZE;
Spencer Lowf055c192015-01-25 14:40:16 -0800476 opt = adb_setsockopt(fd, SOL_SOCKET, SO_SNDBUF, (const void *) &opt, sizeof(opt));
Doug Zongker447f0612012-01-09 14:54:53 -0800477
Elliott Hughes6452a892015-04-29 12:28:13 -0700478 unsigned total = sz;
Dan Albertbac34742015-02-25 17:51:28 -0800479 const uint8_t* ptr = reinterpret_cast<const uint8_t*>(data);
Doug Zongker447f0612012-01-09 14:54:53 -0800480
Elliott Hughes078f0fc2015-04-29 08:35:59 -0700481 if (show_progress) {
Elliott Hughes3e7048c2015-07-27 21:21:39 -0700482 const char* x = strrchr(service, ':');
483 if (x) service = x + 1;
Doug Zongker447f0612012-01-09 14:54:53 -0800484 }
485
Elliott Hughes6452a892015-04-29 12:28:13 -0700486 while (sz > 0) {
Doug Zongker447f0612012-01-09 14:54:53 -0800487 unsigned xfer = (sz > CHUNK_SIZE) ? CHUNK_SIZE : sz;
Elliott Hughes078f0fc2015-04-29 08:35:59 -0700488 if (!WriteFdExactly(fd, ptr, xfer)) {
489 std::string error;
490 adb_status(fd, &error);
491 fprintf(stderr,"* failed to write data '%s' *\n", error.c_str());
Doug Zongker447f0612012-01-09 14:54:53 -0800492 return -1;
493 }
494 sz -= xfer;
495 ptr += xfer;
Elliott Hughes078f0fc2015-04-29 08:35:59 -0700496 if (show_progress) {
Magnus Eriksson86ae6d52013-03-05 07:37:32 +0100497 printf("sending: '%s' %4d%% \r", fn, (int)(100LL - ((100LL * sz) / (total))));
Doug Zongker447f0612012-01-09 14:54:53 -0800498 fflush(stdout);
499 }
500 }
Elliott Hughes078f0fc2015-04-29 08:35:59 -0700501 if (show_progress) {
Doug Zongker447f0612012-01-09 14:54:53 -0800502 printf("\n");
503 }
504
Elliott Hughese67f1f82015-04-30 17:32:03 -0700505 if (!adb_status(fd, &error)) {
506 fprintf(stderr,"* error response '%s' *\n", error.c_str());
Doug Zongker447f0612012-01-09 14:54:53 -0800507 return -1;
508 }
509
510 adb_close(fd);
511 return 0;
512}
513
Doug Zongker71fe5842014-06-26 15:35:36 -0700514#define SIDELOAD_HOST_BLOCK_SIZE (CHUNK_SIZE)
515
516/*
517 * The sideload-host protocol serves the data in a file (given on the
518 * command line) to the client, using a simple protocol:
519 *
520 * - The connect message includes the total number of bytes in the
521 * file and a block size chosen by us.
522 *
523 * - The other side sends the desired block number as eight decimal
524 * digits (eg "00000023" for block 23). Blocks are numbered from
525 * zero.
526 *
527 * - We send back the data of the requested block. The last block is
528 * likely to be partial; when the last block is requested we only
529 * send the part of the block that exists, it's not padded up to the
530 * block size.
531 *
532 * - When the other side sends "DONEDONE" instead of a block number,
533 * we hang up.
534 */
Elliott Hughes58305772015-04-17 13:57:15 -0700535static int adb_sideload_host(const char* fn) {
Doug Zongker71fe5842014-06-26 15:35:36 -0700536 unsigned sz;
537 size_t xfer = 0;
538 int status;
Dan Albertbac34742015-02-25 17:51:28 -0800539 int last_percent = -1;
540 int opt = SIDELOAD_HOST_BLOCK_SIZE;
Doug Zongker71fe5842014-06-26 15:35:36 -0700541
542 printf("loading: '%s'", fn);
543 fflush(stdout);
Dan Albertbac34742015-02-25 17:51:28 -0800544 uint8_t* data = reinterpret_cast<uint8_t*>(load_file(fn, &sz));
Doug Zongker71fe5842014-06-26 15:35:36 -0700545 if (data == 0) {
546 printf("\n");
547 fprintf(stderr, "* cannot read '%s' *\n", fn);
548 return -1;
549 }
550
Elliott Hughes6452a892015-04-29 12:28:13 -0700551 std::string service =
552 android::base::StringPrintf("sideload-host:%d:%d", sz, SIDELOAD_HOST_BLOCK_SIZE);
Elliott Hughes078f0fc2015-04-29 08:35:59 -0700553 std::string error;
Elliott Hughes6452a892015-04-29 12:28:13 -0700554 int fd = adb_connect(service, &error);
Doug Zongker71fe5842014-06-26 15:35:36 -0700555 if (fd < 0) {
556 // Try falling back to the older sideload method. Maybe this
557 // is an older device that doesn't support sideload-host.
558 printf("\n");
Elliott Hughes078f0fc2015-04-29 08:35:59 -0700559 status = adb_download_buffer("sideload", fn, data, sz, true);
Doug Zongker71fe5842014-06-26 15:35:36 -0700560 goto done;
561 }
562
Spencer Lowf055c192015-01-25 14:40:16 -0800563 opt = adb_setsockopt(fd, SOL_SOCKET, SO_SNDBUF, (const void *) &opt, sizeof(opt));
Doug Zongker71fe5842014-06-26 15:35:36 -0700564
Elliott Hughesa7090b92015-04-17 17:03:59 -0700565 while (true) {
Elliott Hughes6452a892015-04-29 12:28:13 -0700566 char buf[9];
Dan Albertcc731cc2015-02-24 21:26:58 -0800567 if (!ReadFdExactly(fd, buf, 8)) {
Elliott Hughes078f0fc2015-04-29 08:35:59 -0700568 fprintf(stderr, "* failed to read command: %s\n", strerror(errno));
Doug Zongker71fe5842014-06-26 15:35:36 -0700569 status = -1;
570 goto done;
571 }
Elliott Hughes6452a892015-04-29 12:28:13 -0700572 buf[8] = '\0';
Doug Zongker71fe5842014-06-26 15:35:36 -0700573
Elliott Hughes6452a892015-04-29 12:28:13 -0700574 if (strcmp("DONEDONE", buf) == 0) {
Doug Zongker71fe5842014-06-26 15:35:36 -0700575 status = 0;
576 break;
577 }
578
Doug Zongker71fe5842014-06-26 15:35:36 -0700579 int block = strtol(buf, NULL, 10);
580
581 size_t offset = block * SIDELOAD_HOST_BLOCK_SIZE;
582 if (offset >= sz) {
Elliott Hughes078f0fc2015-04-29 08:35:59 -0700583 fprintf(stderr, "* attempt to read block %d past end\n", block);
Doug Zongker71fe5842014-06-26 15:35:36 -0700584 status = -1;
585 goto done;
586 }
587 uint8_t* start = data + offset;
588 size_t offset_end = offset + SIDELOAD_HOST_BLOCK_SIZE;
589 size_t to_write = SIDELOAD_HOST_BLOCK_SIZE;
590 if (offset_end > sz) {
591 to_write = sz - offset;
592 }
593
Dan Albertcc731cc2015-02-24 21:26:58 -0800594 if(!WriteFdExactly(fd, start, to_write)) {
Elliott Hughes078f0fc2015-04-29 08:35:59 -0700595 adb_status(fd, &error);
596 fprintf(stderr,"* failed to write data '%s' *\n", error.c_str());
Doug Zongker71fe5842014-06-26 15:35:36 -0700597 status = -1;
598 goto done;
599 }
600 xfer += to_write;
601
602 // For normal OTA packages, we expect to transfer every byte
603 // twice, plus a bit of overhead (one read during
604 // verification, one read of each byte for installation, plus
605 // extra access to things like the zip central directory).
606 // This estimate of the completion becomes 100% when we've
607 // transferred ~2.13 (=100/47) times the package size.
608 int percent = (int)(xfer * 47LL / (sz ? sz : 1));
609 if (percent != last_percent) {
610 printf("\rserving: '%s' (~%d%%) ", fn, percent);
611 fflush(stdout);
612 last_percent = percent;
613 }
614 }
615
Colin Cross6d6a8982014-07-07 14:12:41 -0700616 printf("\rTotal xfer: %.2fx%*s\n", (double)xfer / (sz ? sz : 1), (int)strlen(fn)+10, "");
Doug Zongker71fe5842014-06-26 15:35:36 -0700617
618 done:
619 if (fd >= 0) adb_close(fd);
620 free(data);
621 return status;
622}
623
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800624/**
625 * Run ppp in "notty" mode against a resource listed as the first parameter
626 * eg:
627 *
628 * ppp dev:/dev/omap_csmi_tty0 <ppp options>
629 *
630 */
Elliott Hughes58305772015-04-17 13:57:15 -0700631static int ppp(int argc, const char** argv) {
Yabin Cuie77b6a02014-11-11 09:24:11 -0800632#if defined(_WIN32)
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800633 fprintf(stderr, "error: adb %s not implemented on Win32\n", argv[0]);
634 return -1;
635#else
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800636 if (argc < 2) {
637 fprintf(stderr, "usage: adb %s <adb service name> [ppp opts]\n",
638 argv[0]);
639
640 return 1;
641 }
642
Dan Albertbac34742015-02-25 17:51:28 -0800643 const char* adb_service_name = argv[1];
Elliott Hughes078f0fc2015-04-29 08:35:59 -0700644 std::string error;
645 int fd = adb_connect(adb_service_name, &error);
646 if (fd < 0) {
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800647 fprintf(stderr,"Error: Could not open adb service: %s. Error: %s\n",
Elliott Hughes078f0fc2015-04-29 08:35:59 -0700648 adb_service_name, error.c_str());
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800649 return 1;
650 }
651
Elliott Hughes078f0fc2015-04-29 08:35:59 -0700652 pid_t pid = fork();
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800653
654 if (pid < 0) {
655 perror("from fork()");
656 return 1;
657 } else if (pid == 0) {
658 int err;
659 int i;
660 const char **ppp_args;
661
662 // copy args
663 ppp_args = (const char **) alloca(sizeof(char *) * argc + 1);
664 ppp_args[0] = "pppd";
665 for (i = 2 ; i < argc ; i++) {
666 //argv[2] and beyond become ppp_args[1] and beyond
667 ppp_args[i - 1] = argv[i];
668 }
669 ppp_args[i-1] = NULL;
670
671 // child side
672
673 dup2(fd, STDIN_FILENO);
674 dup2(fd, STDOUT_FILENO);
675 adb_close(STDERR_FILENO);
676 adb_close(fd);
677
678 err = execvp("pppd", (char * const *)ppp_args);
679
680 if (err < 0) {
681 perror("execing pppd");
682 }
683 exit(-1);
684 } else {
685 // parent side
686
687 adb_close(fd);
688 return 0;
689 }
Yabin Cuie77b6a02014-11-11 09:24:11 -0800690#endif /* !defined(_WIN32) */
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800691}
692
Elliott Hughes3bd73c12015-05-05 13:10:43 -0700693static bool wait_for_device(const char* service, TransportType t, const char* serial) {
Elliott Hughes2b101112015-05-04 19:29:32 -0700694 // Was the caller vague about what they'd like us to wait for?
695 // If so, check they weren't more specific in their choice of transport type.
696 if (strcmp(service, "wait-for-device") == 0) {
697 if (t == kTransportUsb) {
698 service = "wait-for-usb";
699 } else if (t == kTransportLocal) {
700 service = "wait-for-local";
701 } else {
702 service = "wait-for-any";
703 }
704 }
705
706 std::string cmd = format_host_command(service, t, serial);
Elliott Hughes424af022015-05-29 17:55:19 -0700707 return adb_command(cmd);
Elliott Hughes2b101112015-05-04 19:29:32 -0700708}
709
Elliott Hughes3bd73c12015-05-05 13:10:43 -0700710static int send_shell_command(TransportType transport_type, const char* serial,
Elliott Hughes2baae3a2015-04-17 10:59:34 -0700711 const std::string& command) {
712 int fd;
713 while (true) {
Elliott Hughes078f0fc2015-04-29 08:35:59 -0700714 std::string error;
Elliott Hughes6452a892015-04-29 12:28:13 -0700715 fd = adb_connect(command, &error);
Elliott Hughes078f0fc2015-04-29 08:35:59 -0700716 if (fd >= 0) {
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800717 break;
Elliott Hughes078f0fc2015-04-29 08:35:59 -0700718 }
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800719 fprintf(stderr,"- waiting for device -\n");
720 adb_sleep_ms(1000);
Elliott Hughes2b101112015-05-04 19:29:32 -0700721 wait_for_device("wait-for-device", transport_type, serial);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800722 }
723
724 read_and_dump(fd);
Elliott Hughes2baae3a2015-04-17 10:59:34 -0700725 int rc = adb_close(fd);
726 if (rc) {
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800727 perror("close");
Elliott Hughes2baae3a2015-04-17 10:59:34 -0700728 }
729 return rc;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800730}
731
Elliott Hughes3bd73c12015-05-05 13:10:43 -0700732static int logcat(TransportType transport, const char* serial, int argc, const char** argv) {
Elliott Hughes2baae3a2015-04-17 10:59:34 -0700733 char* log_tags = getenv("ANDROID_LOG_TAGS");
734 std::string quoted = escape_arg(log_tags == nullptr ? "" : log_tags);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800735
Elliott Hughes2baae3a2015-04-17 10:59:34 -0700736 std::string cmd = "shell:export ANDROID_LOG_TAGS=\"" + quoted + "\"; exec logcat";
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800737
Jeff Sharkeyfd546e82014-06-10 11:31:24 -0700738 if (!strcmp(argv[0], "longcat")) {
Elliott Hughes2baae3a2015-04-17 10:59:34 -0700739 cmd += " -v long";
Christopher Tatedb0a8802011-11-30 13:00:33 -0800740 }
741
Elliott Hughes6c34bba2015-04-17 20:11:08 -0700742 --argc;
743 ++argv;
Elliott Hughes2baae3a2015-04-17 10:59:34 -0700744 while (argc-- > 0) {
Elliott Hughes6c34bba2015-04-17 20:11:08 -0700745 cmd += " " + escape_arg(*argv++);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800746 }
747
Elliott Hughes15551472015-04-21 17:58:55 -0700748 return send_shell_command(transport, serial, cmd);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800749}
750
Dan Albertbac34742015-02-25 17:51:28 -0800751static int backup(int argc, const char** argv) {
Elliott Hughes6c34bba2015-04-17 20:11:08 -0700752 const char* filename = "./backup.ab";
Christopher Tated2f54152011-04-21 12:53:28 -0700753
Christopher Tatec9cd3b92011-06-01 17:56:23 -0700754 /* find, extract, and use any -f argument */
Elliott Hughes6c34bba2015-04-17 20:11:08 -0700755 for (int i = 1; i < argc; i++) {
Christopher Tatec9cd3b92011-06-01 17:56:23 -0700756 if (!strcmp("-f", argv[i])) {
757 if (i == argc-1) {
758 fprintf(stderr, "adb: -f passed with no filename\n");
759 return usage();
760 }
761 filename = argv[i+1];
Elliott Hughes6c34bba2015-04-17 20:11:08 -0700762 for (int j = i+2; j <= argc; ) {
Christopher Tatec9cd3b92011-06-01 17:56:23 -0700763 argv[i++] = argv[j++];
764 }
765 argc -= 2;
766 argv[argc] = NULL;
767 }
Christopher Tated2f54152011-04-21 12:53:28 -0700768 }
769
Christopher Tatebb86bc52011-08-22 17:12:08 -0700770 /* bare "adb backup" or "adb backup -f filename" are not valid invocations */
771 if (argc < 2) return usage();
772
Christopher Tateb1dfffe2011-12-08 19:04:34 -0800773 adb_unlink(filename);
Mark Salyzyn60299df2014-04-30 09:10:31 -0700774 mkdirs(filename);
Elliott Hughes6c34bba2015-04-17 20:11:08 -0700775 int outFd = adb_creat(filename, 0640);
Christopher Tated2f54152011-04-21 12:53:28 -0700776 if (outFd < 0) {
777 fprintf(stderr, "adb: unable to open file %s\n", filename);
778 return -1;
779 }
780
Elliott Hughes6c34bba2015-04-17 20:11:08 -0700781 std::string cmd = "backup:";
782 --argc;
783 ++argv;
784 while (argc-- > 0) {
785 cmd += " " + escape_arg(*argv++);
Christopher Tated2f54152011-04-21 12:53:28 -0700786 }
787
Elliott Hughes6c34bba2015-04-17 20:11:08 -0700788 D("backup. filename=%s cmd=%s\n", filename, cmd.c_str());
Elliott Hughes078f0fc2015-04-29 08:35:59 -0700789 std::string error;
Elliott Hughes6452a892015-04-29 12:28:13 -0700790 int fd = adb_connect(cmd, &error);
Christopher Tated2f54152011-04-21 12:53:28 -0700791 if (fd < 0) {
Elliott Hughes078f0fc2015-04-29 08:35:59 -0700792 fprintf(stderr, "adb: unable to connect for backup: %s\n", error.c_str());
Christopher Tated2f54152011-04-21 12:53:28 -0700793 adb_close(outFd);
794 return -1;
795 }
796
Christopher Tatebffa4ca2012-01-06 15:43:03 -0800797 printf("Now unlock your device and confirm the backup operation.\n");
Christopher Tated2f54152011-04-21 12:53:28 -0700798 copy_to_file(fd, outFd);
799
800 adb_close(fd);
801 adb_close(outFd);
802 return 0;
803}
804
Dan Albertbac34742015-02-25 17:51:28 -0800805static int restore(int argc, const char** argv) {
Christopher Tate702967a2011-05-17 15:52:54 -0700806 if (argc != 2) return usage();
807
Elliott Hughes078f0fc2015-04-29 08:35:59 -0700808 const char* filename = argv[1];
809 int tarFd = adb_open(filename, O_RDONLY);
Christopher Tate702967a2011-05-17 15:52:54 -0700810 if (tarFd < 0) {
Elliott Hughes078f0fc2015-04-29 08:35:59 -0700811 fprintf(stderr, "adb: unable to open file %s: %s\n", filename, strerror(errno));
Christopher Tate702967a2011-05-17 15:52:54 -0700812 return -1;
813 }
814
Elliott Hughes078f0fc2015-04-29 08:35:59 -0700815 std::string error;
816 int fd = adb_connect("restore:", &error);
Christopher Tate702967a2011-05-17 15:52:54 -0700817 if (fd < 0) {
Elliott Hughes078f0fc2015-04-29 08:35:59 -0700818 fprintf(stderr, "adb: unable to connect for restore: %s\n", error.c_str());
Christopher Tate702967a2011-05-17 15:52:54 -0700819 adb_close(tarFd);
820 return -1;
821 }
822
Christopher Tatebffa4ca2012-01-06 15:43:03 -0800823 printf("Now unlock your device and confirm the restore operation.\n");
Christopher Tate702967a2011-05-17 15:52:54 -0700824 copy_to_file(tarFd, fd);
825
826 adb_close(fd);
827 adb_close(tarFd);
828 return 0;
829}
830
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800831/* <hint> may be:
832 * - A simple product name
833 * e.g., "sooner"
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800834 * - A relative path from the CWD to the ANDROID_PRODUCT_OUT dir
835 * e.g., "out/target/product/sooner"
836 * - An absolute path to the PRODUCT_OUT dir
837 * e.g., "/src/device/out/target/product/sooner"
838 *
839 * Given <hint>, try to construct an absolute path to the
840 * ANDROID_PRODUCT_OUT dir.
841 */
Elliott Hughes5c742702015-07-30 17:42:01 -0700842static std::string find_product_out_path(const std::string& hint) {
843 if (hint.empty()) {
Elliott Hughes58305772015-04-17 13:57:15 -0700844 return "";
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800845 }
846
Elliott Hughes58305772015-04-17 13:57:15 -0700847 // If it's already absolute, don't bother doing any work.
Elliott Hughes5c742702015-07-30 17:42:01 -0700848 if (adb_is_absolute_host_path(hint.c_str())) {
Elliott Hughes58305772015-04-17 13:57:15 -0700849 return hint;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800850 }
851
Elliott Hughes58305772015-04-17 13:57:15 -0700852 // If there are any slashes in it, assume it's a relative path;
853 // make it absolute.
Elliott Hughes5c742702015-07-30 17:42:01 -0700854 if (hint.find_first_of(OS_PATH_SEPARATORS) != std::string::npos) {
Elliott Hughesa7090b92015-04-17 17:03:59 -0700855 std::string cwd;
856 if (!getcwd(&cwd)) {
857 fprintf(stderr, "adb: getcwd failed: %s\n", strerror(errno));
Elliott Hughes58305772015-04-17 13:57:15 -0700858 return "";
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800859 }
Elliott Hughes5c742702015-07-30 17:42:01 -0700860 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 -0800861 }
862
Elliott Hughes58305772015-04-17 13:57:15 -0700863 // It's a string without any slashes. Try to do something with it.
864 //
865 // Try to find the root of the build tree, and build a PRODUCT_OUT
866 // path from there.
Elliott Hughesa7090b92015-04-17 17:03:59 -0700867 char* top = getenv("ANDROID_BUILD_TOP");
Elliott Hughes58305772015-04-17 13:57:15 -0700868 if (top == nullptr) {
Elliott Hughesa7090b92015-04-17 17:03:59 -0700869 fprintf(stderr, "adb: ANDROID_BUILD_TOP not set!\n");
Elliott Hughes58305772015-04-17 13:57:15 -0700870 return "";
871 }
Elliott Hughesa7090b92015-04-17 17:03:59 -0700872
873 std::string path = top;
Elliott Hughes58305772015-04-17 13:57:15 -0700874 path += OS_PATH_SEPARATOR_STR;
875 path += "out";
876 path += OS_PATH_SEPARATOR_STR;
877 path += "target";
878 path += OS_PATH_SEPARATOR_STR;
879 path += "product";
880 path += OS_PATH_SEPARATOR_STR;
881 path += hint;
882 if (!directory_exists(path)) {
883 fprintf(stderr, "adb: Couldn't find a product dir based on -p %s; "
Elliott Hughes5c742702015-07-30 17:42:01 -0700884 "\"%s\" doesn't exist\n", hint.c_str(), path.c_str());
Elliott Hughesa7090b92015-04-17 17:03:59 -0700885 return "";
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800886 }
Elliott Hughes58305772015-04-17 13:57:15 -0700887 return path;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800888}
889
Dan Albertbac34742015-02-25 17:51:28 -0800890static void parse_push_pull_args(const char **arg, int narg, char const **path1,
Elliott Hughesaa245492015-08-03 10:38:08 -0700891 char const **path2, bool* show_progress,
Dan Albertbac34742015-02-25 17:51:28 -0800892 int *copy_attrs) {
Elliott Hughesaa245492015-08-03 10:38:08 -0700893 *show_progress = false;
Lajos Molnarde8ff4a2013-04-19 12:41:09 -0700894 *copy_attrs = 0;
Mark Lindner76f2a932014-03-11 17:55:59 -0700895
Lajos Molnarde8ff4a2013-04-19 12:41:09 -0700896 while (narg > 0) {
897 if (!strcmp(*arg, "-p")) {
Elliott Hughesaa245492015-08-03 10:38:08 -0700898 *show_progress = true;
Lajos Molnarde8ff4a2013-04-19 12:41:09 -0700899 } else if (!strcmp(*arg, "-a")) {
900 *copy_attrs = 1;
901 } else {
902 break;
903 }
Mark Lindner76f2a932014-03-11 17:55:59 -0700904 ++arg;
905 --narg;
906 }
907
908 if (narg > 0) {
909 *path1 = *arg;
910 ++arg;
911 --narg;
912 }
913
914 if (narg > 0) {
915 *path2 = *arg;
916 }
917}
918
Elliott Hughes6452a892015-04-29 12:28:13 -0700919static int adb_connect_command(const std::string& command) {
Elliott Hughes078f0fc2015-04-29 08:35:59 -0700920 std::string error;
921 int fd = adb_connect(command, &error);
Elliott Hughes5677c232015-05-07 23:37:40 -0700922 if (fd < 0) {
923 fprintf(stderr, "error: %s\n", error.c_str());
924 return 1;
Tao Bao175b7bb2015-03-29 11:22:34 -0700925 }
Elliott Hughes5677c232015-05-07 23:37:40 -0700926 read_and_dump(fd);
927 adb_close(fd);
928 return 0;
Tao Bao175b7bb2015-03-29 11:22:34 -0700929}
930
Elliott Hughes6452a892015-04-29 12:28:13 -0700931static int adb_query_command(const std::string& command) {
932 std::string result;
933 std::string error;
934 if (!adb_query(command, &result, &error)) {
935 fprintf(stderr, "error: %s\n", error.c_str());
936 return 1;
937 }
938 printf("%s\n", result.c_str());
939 return 0;
940}
941
Elliott Hughesab52c182015-05-01 17:04:38 -0700942int adb_commandline(int argc, const char **argv) {
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800943 int no_daemon = 0;
944 int is_daemon = 0;
David 'Digit' Turner305b4b02011-01-31 14:23:56 +0100945 int is_server = 0;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800946 int r;
Elliott Hughes3bd73c12015-05-05 13:10:43 -0700947 TransportType transport_type = kTransportAny;
Siva Velusamy9f2d1a92015-08-07 10:10:29 -0700948 int ack_reply_fd = -1;
Siva Velusamy9f2d1a92015-08-07 10:10:29 -0700949
Elliott Hughes58305772015-04-17 13:57:15 -0700950 // If defined, this should be an absolute path to
951 // the directory containing all of the various system images
952 // for a particular product. If not defined, and the adb
953 // command requires this information, then the user must
954 // specify the path using "-p".
955 char* ANDROID_PRODUCT_OUT = getenv("ANDROID_PRODUCT_OUT");
956 if (ANDROID_PRODUCT_OUT != nullptr) {
957 gProductOutPath = ANDROID_PRODUCT_OUT;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800958 }
959 // TODO: also try TARGET_PRODUCT/TARGET_DEVICE as a hint
960
Elliott Hughes3bd73c12015-05-05 13:10:43 -0700961 const char* serial = getenv("ANDROID_SERIAL");
Nick Pellydb449262009-05-07 12:48:03 -0700962
Stefan Hilzingera84a42e2010-04-19 12:21:12 +0100963 /* Validate and assign the server port */
Elliott Hughes3bd73c12015-05-05 13:10:43 -0700964 const char* server_port_str = getenv("ANDROID_ADB_SERVER_PORT");
Stefan Hilzingera84a42e2010-04-19 12:21:12 +0100965 int server_port = DEFAULT_ADB_PORT;
966 if (server_port_str && strlen(server_port_str) > 0) {
Siva Velusamy9f2d1a92015-08-07 10:10:29 -0700967 server_port = strtol(server_port_str, nullptr, 0);
Matt Gumbeld7b33082012-11-14 10:16:17 -0800968 if (server_port <= 0 || server_port > 65535) {
Stefan Hilzingera84a42e2010-04-19 12:21:12 +0100969 fprintf(stderr,
Spencer Lowf18fc082015-08-11 17:05:02 -0700970 "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 +0100971 server_port_str);
972 return usage();
973 }
974 }
975
976 /* modifiers and flags */
Riley Andrews98f58e82014-12-05 17:37:24 -0800977 while (argc > 0) {
978 if (!strcmp(argv[0],"server")) {
David 'Digit' Turner305b4b02011-01-31 14:23:56 +0100979 is_server = 1;
Riley Andrews98f58e82014-12-05 17:37:24 -0800980 } else if (!strcmp(argv[0],"nodaemon")) {
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800981 no_daemon = 1;
982 } else if (!strcmp(argv[0], "fork-server")) {
983 /* this is a special flag used only when the ADB client launches the ADB Server */
984 is_daemon = 1;
Siva Velusamy9f2d1a92015-08-07 10:10:29 -0700985 } else if (!strcmp(argv[0], "--reply-fd")) {
986 if (argc < 2) return usage();
987 const char* reply_fd_str = argv[1];
988 argc--;
989 argv++;
990 ack_reply_fd = strtol(reply_fd_str, nullptr, 10);
Spencer Low5c398d22015-08-08 15:07:07 -0700991#ifdef _WIN32
992 const HANDLE ack_reply_handle = cast_int_to_handle(ack_reply_fd);
993 if ((GetStdHandle(STD_INPUT_HANDLE) == ack_reply_handle) ||
994 (GetStdHandle(STD_OUTPUT_HANDLE) == ack_reply_handle) ||
995 (GetStdHandle(STD_ERROR_HANDLE) == ack_reply_handle)) {
996#else
Siva Velusamy9f2d1a92015-08-07 10:10:29 -0700997 if (ack_reply_fd <= 2) { // Disallow stdin, stdout, and stderr.
Spencer Low5c398d22015-08-08 15:07:07 -0700998#endif
Siva Velusamy9f2d1a92015-08-07 10:10:29 -0700999 fprintf(stderr, "adb: invalid reply fd \"%s\"\n", reply_fd_str);
1000 return usage();
1001 }
Riley Andrews98f58e82014-12-05 17:37:24 -08001002 } else if (!strncmp(argv[0], "-p", 2)) {
Elliott Hughes048b27c2015-07-31 13:18:22 -07001003 const char* product = nullptr;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001004 if (argv[0][2] == '\0') {
1005 if (argc < 2) return usage();
1006 product = argv[1];
1007 argc--;
1008 argv++;
1009 } else {
Vairavan Srinivasan81273232012-08-04 16:40:50 -07001010 product = argv[0] + 2;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001011 }
Elliott Hughes048b27c2015-07-31 13:18:22 -07001012 gProductOutPath = find_product_out_path(product);
Elliott Hughes58305772015-04-17 13:57:15 -07001013 if (gProductOutPath.empty()) {
1014 fprintf(stderr, "adb: could not resolve \"-p %s\"\n", product);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001015 return usage();
1016 }
1017 } else if (argv[0][0]=='-' && argv[0][1]=='s') {
1018 if (isdigit(argv[0][2])) {
1019 serial = argv[0] + 2;
1020 } else {
Riley Andrews98f58e82014-12-05 17:37:24 -08001021 if (argc < 2 || argv[0][2] != '\0') return usage();
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001022 serial = argv[1];
1023 argc--;
1024 argv++;
1025 }
1026 } else if (!strcmp(argv[0],"-d")) {
Elliott Hughes3bd73c12015-05-05 13:10:43 -07001027 transport_type = kTransportUsb;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001028 } else if (!strcmp(argv[0],"-e")) {
Elliott Hughes3bd73c12015-05-05 13:10:43 -07001029 transport_type = kTransportLocal;
Matt Gumbeld7b33082012-11-14 10:16:17 -08001030 } else if (!strcmp(argv[0],"-a")) {
1031 gListenAll = 1;
Riley Andrews98f58e82014-12-05 17:37:24 -08001032 } else if (!strncmp(argv[0], "-H", 2)) {
Matt Gumbeld7b33082012-11-14 10:16:17 -08001033 const char *hostname = NULL;
1034 if (argv[0][2] == '\0') {
1035 if (argc < 2) return usage();
1036 hostname = argv[1];
1037 argc--;
1038 argv++;
1039 } else {
1040 hostname = argv[0] + 2;
1041 }
1042 adb_set_tcp_name(hostname);
1043
Riley Andrews98f58e82014-12-05 17:37:24 -08001044 } else if (!strncmp(argv[0], "-P", 2)) {
Matt Gumbeld7b33082012-11-14 10:16:17 -08001045 if (argv[0][2] == '\0') {
1046 if (argc < 2) return usage();
1047 server_port_str = argv[1];
1048 argc--;
1049 argv++;
1050 } else {
1051 server_port_str = argv[0] + 2;
1052 }
1053 if (strlen(server_port_str) > 0) {
1054 server_port = (int) strtol(server_port_str, NULL, 0);
1055 if (server_port <= 0 || server_port > 65535) {
1056 fprintf(stderr,
1057 "adb: port number must be a positive number less than 65536. Got \"%s\"\n",
1058 server_port_str);
1059 return usage();
1060 }
1061 } else {
1062 fprintf(stderr,
1063 "adb: port number must be a positive number less than 65536. Got empty string.\n");
1064 return usage();
1065 }
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001066 } else {
1067 /* out of recognized modifiers and flags */
1068 break;
1069 }
1070 argc--;
1071 argv++;
1072 }
1073
Elliott Hughes3bd73c12015-05-05 13:10:43 -07001074 adb_set_transport(transport_type, serial);
Stefan Hilzingera84a42e2010-04-19 12:21:12 +01001075 adb_set_tcp_specifics(server_port);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001076
David 'Digit' Turner305b4b02011-01-31 14:23:56 +01001077 if (is_server) {
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001078 if (no_daemon || is_daemon) {
Spencer Low5c398d22015-08-08 15:07:07 -07001079 if (is_daemon && (ack_reply_fd == -1)) {
Siva Velusamy9f2d1a92015-08-07 10:10:29 -07001080 fprintf(stderr, "reply fd for adb server to client communication not specified.\n");
1081 return usage();
1082 }
1083 r = adb_main(is_daemon, server_port, ack_reply_fd);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001084 } else {
Stefan Hilzingera84a42e2010-04-19 12:21:12 +01001085 r = launch_server(server_port);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001086 }
Riley Andrews98f58e82014-12-05 17:37:24 -08001087 if (r) {
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001088 fprintf(stderr,"* could not start server *\n");
1089 }
1090 return r;
1091 }
1092
Riley Andrews98f58e82014-12-05 17:37:24 -08001093 if (argc == 0) {
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001094 return usage();
1095 }
1096
Riley Andrewsc8514c82014-12-05 17:32:46 -08001097 /* handle wait-for-* prefix */
1098 if (!strncmp(argv[0], "wait-for-", strlen("wait-for-"))) {
Dan Albertbac34742015-02-25 17:51:28 -08001099 const char* service = argv[0];
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001100
Elliott Hughes3bd73c12015-05-05 13:10:43 -07001101 if (!wait_for_device(service, transport_type, serial)) {
Riley Andrewsc8514c82014-12-05 17:32:46 -08001102 return 1;
1103 }
1104
Elliott Hughes2b101112015-05-04 19:29:32 -07001105 // Allow a command to be run after wait-for-device,
1106 // e.g. 'adb wait-for-device shell'.
Riley Andrewsc8514c82014-12-05 17:32:46 -08001107 if (argc == 1) {
1108 return 0;
1109 }
1110
1111 /* Fall through */
1112 argc--;
1113 argv++;
1114 }
1115
1116 /* adb_connect() commands */
Riley Andrews98f58e82014-12-05 17:37:24 -08001117 if (!strcmp(argv[0], "devices")) {
Dan Albertbac34742015-02-25 17:51:28 -08001118 const char *listopt;
Elliott Hughes6452a892015-04-29 12:28:13 -07001119 if (argc < 2) {
Scott Andersone109d262012-04-20 11:21:14 -07001120 listopt = "";
Elliott Hughes6452a892015-04-29 12:28:13 -07001121 } else if (argc == 2 && !strcmp(argv[1], "-l")) {
Scott Andersone109d262012-04-20 11:21:14 -07001122 listopt = argv[1];
Elliott Hughes6452a892015-04-29 12:28:13 -07001123 } else {
Scott Andersone109d262012-04-20 11:21:14 -07001124 fprintf(stderr, "Usage: adb devices [-l]\n");
1125 return 1;
1126 }
Elliott Hughes6452a892015-04-29 12:28:13 -07001127
1128 std::string query = android::base::StringPrintf("host:%s%s", argv[0], listopt);
1129 printf("List of devices attached\n");
1130 return adb_query_command(query);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001131 }
Riley Andrewsc8514c82014-12-05 17:32:46 -08001132 else if (!strcmp(argv[0], "connect")) {
Mike Lockwoodff196702009-08-24 15:58:40 -07001133 if (argc != 2) {
Mike Lockwoodcbbe79a2010-05-24 10:44:35 -04001134 fprintf(stderr, "Usage: adb connect <host>[:<port>]\n");
Mike Lockwoodff196702009-08-24 15:58:40 -07001135 return 1;
1136 }
Elliott Hughes6452a892015-04-29 12:28:13 -07001137
1138 std::string query = android::base::StringPrintf("host:connect:%s", argv[1]);
1139 return adb_query_command(query);
Mike Lockwoodcbbe79a2010-05-24 10:44:35 -04001140 }
Riley Andrewsc8514c82014-12-05 17:32:46 -08001141 else if (!strcmp(argv[0], "disconnect")) {
Mike Lockwoodcbbe79a2010-05-24 10:44:35 -04001142 if (argc > 2) {
1143 fprintf(stderr, "Usage: adb disconnect [<host>[:<port>]]\n");
1144 return 1;
1145 }
Elliott Hughes6452a892015-04-29 12:28:13 -07001146
1147 std::string query = android::base::StringPrintf("host:disconnect:%s",
1148 (argc == 2) ? argv[1] : "");
1149 return adb_query_command(query);
Mike Lockwoodff196702009-08-24 15:58:40 -07001150 }
Riley Andrewsc8514c82014-12-05 17:32:46 -08001151 else if (!strcmp(argv[0], "emu")) {
Spencer Low142ec752015-05-06 16:13:42 -07001152 return adb_send_emulator_command(argc, argv, serial);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001153 }
Riley Andrewsc8514c82014-12-05 17:32:46 -08001154 else if (!strcmp(argv[0], "shell") || !strcmp(argv[0], "hell")) {
Daniel Sandlerff91ab82010-08-19 01:10:18 -04001155 char h = (argv[0][0] == 'h');
1156
1157 if (h) {
1158 printf("\x1b[41;33m");
1159 fflush(stdout);
1160 }
1161
Riley Andrews98f58e82014-12-05 17:37:24 -08001162 if (argc < 2) {
JP Abgrall408fa572011-03-16 15:57:42 -07001163 D("starting interactive shell\n");
Daniel Sandlerff91ab82010-08-19 01:10:18 -04001164 r = interactive_shell();
1165 if (h) {
1166 printf("\x1b[0m");
1167 fflush(stdout);
1168 }
1169 return r;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001170 }
1171
Elliott Hughes2baae3a2015-04-17 10:59:34 -07001172 std::string cmd = "shell:";
Elliott Hughes2b101112015-05-04 19:29:32 -07001173 --argc;
1174 ++argv;
Jeff Sharkey5d9d4342014-05-26 18:30:43 -07001175 while (argc-- > 0) {
Elliott Hughes2b101112015-05-04 19:29:32 -07001176 // We don't escape here, just like ssh(1). http://b/20564385.
1177 cmd += *argv++;
1178 if (*argv) cmd += " ";
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001179 }
1180
Elliott Hughes2baae3a2015-04-17 10:59:34 -07001181 while (true) {
1182 D("interactive shell loop. cmd=%s\n", cmd.c_str());
Elliott Hughes078f0fc2015-04-29 08:35:59 -07001183 std::string error;
Elliott Hughes6452a892015-04-29 12:28:13 -07001184 int fd = adb_connect(cmd, &error);
Elliott Hughes2baae3a2015-04-17 10:59:34 -07001185 int r;
Riley Andrews98f58e82014-12-05 17:37:24 -08001186 if (fd >= 0) {
JP Abgrall408fa572011-03-16 15:57:42 -07001187 D("about to read_and_dump(fd=%d)\n", fd);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001188 read_and_dump(fd);
JP Abgrall408fa572011-03-16 15:57:42 -07001189 D("read_and_dump() done.\n");
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001190 adb_close(fd);
1191 r = 0;
1192 } else {
Elliott Hughes078f0fc2015-04-29 08:35:59 -07001193 fprintf(stderr,"error: %s\n", error.c_str());
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001194 r = -1;
1195 }
1196
Elliott Hughes32687be2015-05-05 12:50:26 -07001197 if (h) {
1198 printf("\x1b[0m");
1199 fflush(stdout);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001200 }
Elliott Hughes32687be2015-05-05 12:50:26 -07001201 D("interactive shell loop. return r=%d\n", r);
1202 return r;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001203 }
1204 }
Riley Andrewsc8514c82014-12-05 17:32:46 -08001205 else if (!strcmp(argv[0], "exec-in") || !strcmp(argv[0], "exec-out")) {
Jeff Sharkey5d9d4342014-05-26 18:30:43 -07001206 int exec_in = !strcmp(argv[0], "exec-in");
Jeff Sharkey5d9d4342014-05-26 18:30:43 -07001207
Elliott Hughes2baae3a2015-04-17 10:59:34 -07001208 std::string cmd = "exec:";
1209 cmd += argv[1];
Jeff Sharkey5d9d4342014-05-26 18:30:43 -07001210 argc -= 2;
1211 argv += 2;
1212 while (argc-- > 0) {
Elliott Hughes6c34bba2015-04-17 20:11:08 -07001213 cmd += " " + escape_arg(*argv++);
Jeff Sharkey5d9d4342014-05-26 18:30:43 -07001214 }
1215
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);
Jeff Sharkey5d9d4342014-05-26 18:30:43 -07001218 if (fd < 0) {
Elliott Hughes078f0fc2015-04-29 08:35:59 -07001219 fprintf(stderr, "error: %s\n", error.c_str());
Jeff Sharkey5d9d4342014-05-26 18:30:43 -07001220 return -1;
1221 }
1222
1223 if (exec_in) {
1224 copy_to_file(STDIN_FILENO, fd);
1225 } else {
1226 copy_to_file(fd, STDOUT_FILENO);
1227 }
1228
1229 adb_close(fd);
1230 return 0;
1231 }
Riley Andrewsc8514c82014-12-05 17:32:46 -08001232 else if (!strcmp(argv[0], "kill-server")) {
Elliott Hughes078f0fc2015-04-29 08:35:59 -07001233 std::string error;
1234 int fd = _adb_connect("host:kill", &error);
Spencer Lowf18fc082015-08-11 17:05:02 -07001235 if (fd == -2) {
1236 // Failed to make network connection to server. Don't output the
1237 // network error since that is expected.
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001238 fprintf(stderr,"* server not running *\n");
Spencer Lowf18fc082015-08-11 17:05:02 -07001239 // Successful exit code because the server is already "killed".
1240 return 0;
1241 } else if (fd == -1) {
1242 // Some other error.
1243 fprintf(stderr, "error: %s\n", error.c_str());
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001244 return 1;
Spencer Lowf18fc082015-08-11 17:05:02 -07001245 } else {
1246 // Successfully connected, kill command sent, okay status came back.
1247 // Server should exit() in a moment, if not already.
1248 adb_close(fd);
1249 return 0;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001250 }
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001251 }
Riley Andrewsc8514c82014-12-05 17:32:46 -08001252 else if (!strcmp(argv[0], "sideload")) {
1253 if (argc != 2) return usage();
Doug Zongker71fe5842014-06-26 15:35:36 -07001254 if (adb_sideload_host(argv[1])) {
Doug Zongker447f0612012-01-09 14:54:53 -08001255 return 1;
1256 } else {
1257 return 0;
1258 }
1259 }
Elliott Hughes19d80b82015-07-21 16:13:40 -07001260 else if (!strcmp(argv[0], "tcpip") && argc > 1) {
1261 return adb_connect_command(android::base::StringPrintf("tcpip:%s", argv[1]));
1262 }
Riley Andrewsc8514c82014-12-05 17:32:46 -08001263 else if (!strcmp(argv[0], "remount") ||
1264 !strcmp(argv[0], "reboot") ||
1265 !strcmp(argv[0], "reboot-bootloader") ||
Riley Andrewsc8514c82014-12-05 17:32:46 -08001266 !strcmp(argv[0], "usb") ||
1267 !strcmp(argv[0], "root") ||
Dan Pasanen98858812014-10-06 12:57:20 -05001268 !strcmp(argv[0], "unroot") ||
Riley Andrewsc8514c82014-12-05 17:32:46 -08001269 !strcmp(argv[0], "disable-verity") ||
1270 !strcmp(argv[0], "enable-verity")) {
Elliott Hughes5677c232015-05-07 23:37:40 -07001271 std::string command;
Tao Bao175b7bb2015-03-29 11:22:34 -07001272 if (!strcmp(argv[0], "reboot-bootloader")) {
Elliott Hughes5677c232015-05-07 23:37:40 -07001273 command = "reboot:bootloader";
Tao Bao175b7bb2015-03-29 11:22:34 -07001274 } else if (argc > 1) {
Elliott Hughes5677c232015-05-07 23:37:40 -07001275 command = android::base::StringPrintf("%s:%s", argv[0], argv[1]);
Tao Bao175b7bb2015-03-29 11:22:34 -07001276 } else {
Elliott Hughes5677c232015-05-07 23:37:40 -07001277 command = android::base::StringPrintf("%s:", argv[0]);
The Android Open Source Projecte037fd72009-03-13 13:04:37 -07001278 }
Tao Bao175b7bb2015-03-29 11:22:34 -07001279 return adb_connect_command(command);
The Android Open Source Projecte037fd72009-03-13 13:04:37 -07001280 }
Riley Andrewsc8514c82014-12-05 17:32:46 -08001281 else if (!strcmp(argv[0], "bugreport")) {
Dan Egnorc130ea72010-01-20 13:50:36 -08001282 if (argc != 1) return usage();
Elliott Hughes3bd73c12015-05-05 13:10:43 -07001283 return send_shell_command(transport_type, serial, "shell:bugreport");
Mike Lockwoodf56d1b52009-09-03 14:54:58 -04001284 }
Riley Andrewsc8514c82014-12-05 17:32:46 -08001285 else if (!strcmp(argv[0], "forward") || !strcmp(argv[0], "reverse")) {
Elliott Hughes424af022015-05-29 17:55:19 -07001286 bool reverse = !strcmp(argv[0], "reverse");
1287 ++argv;
1288 --argc;
1289 if (argc < 1) return usage();
David 'Digit' Turner0d82fbf2012-11-14 15:01:55 +01001290
1291 // Determine the <host-prefix> for this command.
Elliott Hughes424af022015-05-29 17:55:19 -07001292 std::string host_prefix;
David 'Digit' Turner25258692013-03-21 21:07:42 +01001293 if (reverse) {
Elliott Hughes424af022015-05-29 17:55:19 -07001294 host_prefix = "reverse";
David 'Digit' Turner0d82fbf2012-11-14 15:01:55 +01001295 } else {
David 'Digit' Turner25258692013-03-21 21:07:42 +01001296 if (serial) {
Elliott Hughes424af022015-05-29 17:55:19 -07001297 host_prefix = android::base::StringPrintf("host-serial:%s", serial);
Elliott Hughes3bd73c12015-05-05 13:10:43 -07001298 } else if (transport_type == kTransportUsb) {
Elliott Hughes424af022015-05-29 17:55:19 -07001299 host_prefix = "host-usb";
Elliott Hughes3bd73c12015-05-05 13:10:43 -07001300 } else if (transport_type == kTransportLocal) {
Elliott Hughes424af022015-05-29 17:55:19 -07001301 host_prefix = "host-local";
David 'Digit' Turner25258692013-03-21 21:07:42 +01001302 } else {
Elliott Hughes424af022015-05-29 17:55:19 -07001303 host_prefix = "host";
David 'Digit' Turner25258692013-03-21 21:07:42 +01001304 }
David 'Digit' Turner0d82fbf2012-11-14 15:01:55 +01001305 }
1306
Elliott Hughes424af022015-05-29 17:55:19 -07001307 std::string cmd;
1308 if (strcmp(argv[0], "--list") == 0) {
Elliott Hughesab52c182015-05-01 17:04:38 -07001309 if (argc != 1) return usage();
Elliott Hughes424af022015-05-29 17:55:19 -07001310 return adb_query_command(host_prefix + ":list-forward");
1311 } else if (strcmp(argv[0], "--remove-all") == 0) {
1312 if (argc != 1) return usage();
1313 cmd = host_prefix + ":killforward-all";
1314 } else if (strcmp(argv[0], "--remove") == 0) {
1315 // forward --remove <local>
Elliott Hughesab52c182015-05-01 17:04:38 -07001316 if (argc != 2) return usage();
Elliott Hughes424af022015-05-29 17:55:19 -07001317 cmd = host_prefix + ":killforward:" + argv[1];
1318 } else if (strcmp(argv[0], "--no-rebind") == 0) {
1319 // forward --no-rebind <local> <remote>
Elliott Hughesab52c182015-05-01 17:04:38 -07001320 if (argc != 3) return usage();
Elliott Hughes424af022015-05-29 17:55:19 -07001321 cmd = host_prefix + ":forward:norebind:" + argv[1] + ";" + argv[2];
1322 } else {
1323 // forward <local> <remote>
1324 if (argc != 2) return usage();
1325 cmd = host_prefix + ":forward:" + argv[0] + ";" + argv[1];
David 'Digit' Turner0d82fbf2012-11-14 15:01:55 +01001326 }
1327
Elliott Hughes424af022015-05-29 17:55:19 -07001328 return adb_command(cmd) ? 0 : 1;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001329 }
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001330 /* do_sync_*() commands */
Riley Andrewsc8514c82014-12-05 17:32:46 -08001331 else if (!strcmp(argv[0], "ls")) {
1332 if (argc != 2) return usage();
Elliott Hughesaa245492015-08-03 10:38:08 -07001333 return do_sync_ls(argv[1]) ? 0 : 1;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001334 }
Riley Andrewsc8514c82014-12-05 17:32:46 -08001335 else if (!strcmp(argv[0], "push")) {
Elliott Hughesaa245492015-08-03 10:38:08 -07001336 bool show_progress = false;
1337 int copy_attrs = 0;
Mark Lindner76f2a932014-03-11 17:55:59 -07001338 const char* lpath = NULL, *rpath = NULL;
1339
Lajos Molnarde8ff4a2013-04-19 12:41:09 -07001340 parse_push_pull_args(&argv[1], argc - 1, &lpath, &rpath, &show_progress, &copy_attrs);
Elliott Hughesaa245492015-08-03 10:38:08 -07001341 if (!lpath || !rpath || copy_attrs != 0) return usage();
1342 return do_sync_push(lpath, rpath, show_progress) ? 0 : 1;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001343 }
Riley Andrewsc8514c82014-12-05 17:32:46 -08001344 else if (!strcmp(argv[0], "pull")) {
Elliott Hughesaa245492015-08-03 10:38:08 -07001345 bool show_progress = false;
Lajos Molnarde8ff4a2013-04-19 12:41:09 -07001346 int copy_attrs = 0;
Mark Lindner76f2a932014-03-11 17:55:59 -07001347 const char* rpath = NULL, *lpath = ".";
1348
Lajos Molnarde8ff4a2013-04-19 12:41:09 -07001349 parse_push_pull_args(&argv[1], argc - 1, &rpath, &lpath, &show_progress, &copy_attrs);
Elliott Hughesaa245492015-08-03 10:38:08 -07001350 if (!rpath) return usage();
1351 return do_sync_pull(rpath, lpath, show_progress, copy_attrs) ? 0 : 1;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001352 }
Riley Andrewsc8514c82014-12-05 17:32:46 -08001353 else if (!strcmp(argv[0], "install")) {
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001354 if (argc < 2) return usage();
Elliott Hughes3bd73c12015-05-05 13:10:43 -07001355 return install_app(transport_type, serial, argc, argv);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001356 }
Riley Andrewsc8514c82014-12-05 17:32:46 -08001357 else if (!strcmp(argv[0], "install-multiple")) {
Jeff Sharkey960df972014-06-09 17:30:57 -07001358 if (argc < 2) return usage();
Elliott Hughes3bd73c12015-05-05 13:10:43 -07001359 return install_multiple_app(transport_type, serial, argc, argv);
Jeff Sharkey960df972014-06-09 17:30:57 -07001360 }
Riley Andrewsc8514c82014-12-05 17:32:46 -08001361 else if (!strcmp(argv[0], "uninstall")) {
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001362 if (argc < 2) return usage();
Elliott Hughes3bd73c12015-05-05 13:10:43 -07001363 return uninstall_app(transport_type, serial, argc, argv);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001364 }
Riley Andrewsc8514c82014-12-05 17:32:46 -08001365 else if (!strcmp(argv[0], "sync")) {
Elliott Hughesd236d072015-04-21 10:17:07 -07001366 std::string src;
Elliott Hughes58305772015-04-17 13:57:15 -07001367 bool list_only = false;
Riley Andrews98f58e82014-12-05 17:37:24 -08001368 if (argc < 2) {
Elliott Hughes58305772015-04-17 13:57:15 -07001369 // No local path was specified.
Elliott Hughesd236d072015-04-21 10:17:07 -07001370 src = "";
Anthony Newnam705c9442010-02-22 08:36:49 -06001371 } else if (argc >= 2 && strcmp(argv[1], "-l") == 0) {
Elliott Hughesd236d072015-04-21 10:17:07 -07001372 list_only = true;
Anthony Newnam705c9442010-02-22 08:36:49 -06001373 if (argc == 3) {
Elliott Hughesd236d072015-04-21 10:17:07 -07001374 src = argv[2];
Anthony Newnam705c9442010-02-22 08:36:49 -06001375 } else {
Elliott Hughesd236d072015-04-21 10:17:07 -07001376 src = "";
Anthony Newnam705c9442010-02-22 08:36:49 -06001377 }
Riley Andrews98f58e82014-12-05 17:37:24 -08001378 } else if (argc == 2) {
Elliott Hughes58305772015-04-17 13:57:15 -07001379 // A local path or "android"/"data" arg was specified.
Elliott Hughesd236d072015-04-21 10:17:07 -07001380 src = argv[1];
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001381 } else {
1382 return usage();
1383 }
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001384
Elliott Hughesd236d072015-04-21 10:17:07 -07001385 if (src != "" &&
1386 src != "system" && src != "data" && src != "vendor" && src != "oem") {
Elliott Hughes58305772015-04-17 13:57:15 -07001387 return usage();
1388 }
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001389
Elliott Hughes58305772015-04-17 13:57:15 -07001390 std::string system_src_path = product_file("system");
1391 std::string data_src_path = product_file("data");
1392 std::string vendor_src_path = product_file("vendor");
1393 std::string oem_src_path = product_file("oem");
Elliott Hughes58305772015-04-17 13:57:15 -07001394
Elliott Hughesaa245492015-08-03 10:38:08 -07001395 bool okay = true;
1396 if (okay && (src.empty() || src == "system")) {
1397 okay = do_sync_sync(system_src_path, "/system", list_only);
Elliott Hughes58305772015-04-17 13:57:15 -07001398 }
Elliott Hughesaa245492015-08-03 10:38:08 -07001399 if (okay && (src.empty() || src == "vendor") && directory_exists(vendor_src_path)) {
1400 okay = do_sync_sync(vendor_src_path, "/vendor", list_only);
Elliott Hughes58305772015-04-17 13:57:15 -07001401 }
Elliott Hughesaa245492015-08-03 10:38:08 -07001402 if (okay && (src.empty() || src == "oem") && directory_exists(oem_src_path)) {
1403 okay = do_sync_sync(oem_src_path, "/oem", list_only);
Elliott Hughes58305772015-04-17 13:57:15 -07001404 }
Elliott Hughesaa245492015-08-03 10:38:08 -07001405 if (okay && (src.empty() || src == "data")) {
1406 okay = do_sync_sync(data_src_path, "/data", list_only);
Elliott Hughes58305772015-04-17 13:57:15 -07001407 }
Elliott Hughesaa245492015-08-03 10:38:08 -07001408 return okay ? 0 : 1;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001409 }
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001410 /* passthrough commands */
Riley Andrewsc8514c82014-12-05 17:32:46 -08001411 else if (!strcmp(argv[0],"get-state") ||
Scott Andersone109d262012-04-20 11:21:14 -07001412 !strcmp(argv[0],"get-serialno") ||
1413 !strcmp(argv[0],"get-devpath"))
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001414 {
Elliott Hughes3bd73c12015-05-05 13:10:43 -07001415 return adb_query_command(format_host_command(argv[0], transport_type, serial));
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001416 }
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001417 /* other commands */
Riley Andrewsc8514c82014-12-05 17:32:46 -08001418 else if (!strcmp(argv[0],"logcat") || !strcmp(argv[0],"lolcat") || !strcmp(argv[0],"longcat")) {
Elliott Hughes3bd73c12015-05-05 13:10:43 -07001419 return logcat(transport_type, serial, argc, argv);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001420 }
Riley Andrewsc8514c82014-12-05 17:32:46 -08001421 else if (!strcmp(argv[0],"ppp")) {
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001422 return ppp(argc, argv);
1423 }
Riley Andrewsc8514c82014-12-05 17:32:46 -08001424 else if (!strcmp(argv[0], "start-server")) {
Elliott Hughes078f0fc2015-04-29 08:35:59 -07001425 std::string error;
Spencer Lowf18fc082015-08-11 17:05:02 -07001426 const int result = adb_connect("host:start-server", &error);
1427 if (result < 0) {
1428 fprintf(stderr, "error: %s\n", error.c_str());
1429 }
1430 return result;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001431 }
Riley Andrewsc8514c82014-12-05 17:32:46 -08001432 else if (!strcmp(argv[0], "backup")) {
Christopher Tated2f54152011-04-21 12:53:28 -07001433 return backup(argc, argv);
1434 }
Riley Andrewsc8514c82014-12-05 17:32:46 -08001435 else if (!strcmp(argv[0], "restore")) {
Christopher Tate702967a2011-05-17 15:52:54 -07001436 return restore(argc, argv);
1437 }
Riley Andrewsc8514c82014-12-05 17:32:46 -08001438 else if (!strcmp(argv[0], "keygen")) {
Nick Kralevichbea3f9c2014-11-13 15:17:29 -08001439 if (argc < 2) return usage();
1440 return adb_auth_keygen(argv[1]);
1441 }
Riley Andrewsc8514c82014-12-05 17:32:46 -08001442 else if (!strcmp(argv[0], "jdwp")) {
Tao Bao175b7bb2015-03-29 11:22:34 -07001443 return adb_connect_command("jdwp");
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001444 }
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001445 /* "adb /?" is a common idiom under Windows */
Riley Andrewsc8514c82014-12-05 17:32:46 -08001446 else if (!strcmp(argv[0], "help") || !strcmp(argv[0], "/?")) {
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001447 help();
1448 return 0;
1449 }
Riley Andrewsc8514c82014-12-05 17:32:46 -08001450 else if (!strcmp(argv[0], "version")) {
Elliott Hughes42ae2602015-08-12 08:32:10 -07001451 fprintf(stdout, "%s", adb_version().c_str());
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001452 return 0;
1453 }
Dan Albert90d4b732015-05-20 18:58:41 -07001454 else if (!strcmp(argv[0], "features")) {
1455 return adb_query_command("host:features");
1456 }
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001457
1458 usage();
1459 return 1;
1460}
1461
Elliott Hughes3bd73c12015-05-05 13:10:43 -07001462static int pm_command(TransportType transport, const char* serial, int argc, const char** argv) {
Elliott Hughes2baae3a2015-04-17 10:59:34 -07001463 std::string cmd = "shell:pm";
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001464
Elliott Hughes2baae3a2015-04-17 10:59:34 -07001465 while (argc-- > 0) {
Elliott Hughes6c34bba2015-04-17 20:11:08 -07001466 cmd += " " + escape_arg(*argv++);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001467 }
1468
Elliott Hughes15551472015-04-21 17:58:55 -07001469 return send_shell_command(transport, serial, cmd);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001470}
1471
Elliott Hughes3bd73c12015-05-05 13:10:43 -07001472static int uninstall_app(TransportType transport, const char* serial, int argc, const char** argv) {
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001473 /* if the user choose the -k option, we refuse to do it until devices are
1474 out with the option to uninstall the remaining data somehow (adb/ui) */
1475 if (argc == 3 && strcmp(argv[1], "-k") == 0)
1476 {
1477 printf(
1478 "The -k option uninstalls the application while retaining the data/cache.\n"
1479 "At the moment, there is no way to remove the remaining data.\n"
1480 "You will have to reinstall the application with the same signature, and fully uninstall it.\n"
1481 "If you truly wish to continue, execute 'adb shell pm uninstall -k %s'\n", argv[2]);
1482 return -1;
1483 }
1484
1485 /* 'adb uninstall' takes the same arguments as 'pm uninstall' on device */
1486 return pm_command(transport, serial, argc, argv);
1487}
1488
Elliott Hughes5c742702015-07-30 17:42:01 -07001489static int delete_file(TransportType transport, const char* serial, const std::string& filename) {
Elliott Hughes2baae3a2015-04-17 10:59:34 -07001490 std::string cmd = "shell:rm -f " + escape_arg(filename);
Elliott Hughes15551472015-04-21 17:58:55 -07001491 return send_shell_command(transport, serial, cmd);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001492}
1493
Elliott Hughes3bd73c12015-05-05 13:10:43 -07001494static int install_app(TransportType transport, const char* serial, int argc, const char** argv) {
Dan Albert286bb6d2015-07-09 20:35:09 +00001495 static const char *const DATA_DEST = "/data/local/tmp/%s";
1496 static const char *const SD_DEST = "/sdcard/tmp/%s";
Kenny Root597ea5b2011-08-05 11:19:45 -07001497 const char* where = DATA_DEST;
Kenny Root597ea5b2011-08-05 11:19:45 -07001498 int i;
Jeff Sharkey960df972014-06-09 17:30:57 -07001499 struct stat sb;
Kenny Root597ea5b2011-08-05 11:19:45 -07001500
1501 for (i = 1; i < argc; i++) {
Jeff Sharkey960df972014-06-09 17:30:57 -07001502 if (!strcmp(argv[i], "-s")) {
Kenny Root597ea5b2011-08-05 11:19:45 -07001503 where = SD_DEST;
1504 }
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001505 }
1506
Jeff Sharkey960df972014-06-09 17:30:57 -07001507 // Find last APK argument.
1508 // All other arguments passed through verbatim.
1509 int last_apk = -1;
1510 for (i = argc - 1; i >= 0; i--) {
Dan Albertbac34742015-02-25 17:51:28 -08001511 const char* file = argv[i];
Elliott Hughes3e7048c2015-07-27 21:21:39 -07001512 const char* dot = strrchr(file, '.');
Jeff Sharkey960df972014-06-09 17:30:57 -07001513 if (dot && !strcasecmp(dot, ".apk")) {
1514 if (stat(file, &sb) == -1 || !S_ISREG(sb.st_mode)) {
1515 fprintf(stderr, "Invalid APK file: %s\n", file);
1516 return -1;
1517 }
1518
1519 last_apk = i;
1520 break;
1521 }
Kenny Root597ea5b2011-08-05 11:19:45 -07001522 }
1523
Jeff Sharkey960df972014-06-09 17:30:57 -07001524 if (last_apk == -1) {
1525 fprintf(stderr, "Missing APK file\n");
1526 return -1;
Kenny Root597ea5b2011-08-05 11:19:45 -07001527 }
1528
Elliott Hughesaa245492015-08-03 10:38:08 -07001529 int result = -1;
Dan Albertbac34742015-02-25 17:51:28 -08001530 const char* apk_file = argv[last_apk];
Elliott Hughes5c742702015-07-30 17:42:01 -07001531 std::string apk_dest = android::base::StringPrintf(where, adb_basename(apk_file).c_str());
Elliott Hughesaa245492015-08-03 10:38:08 -07001532 if (!do_sync_push(apk_file, apk_dest.c_str(), false)) goto cleanup_apk;
1533 argv[last_apk] = apk_dest.c_str(); /* destination name, not source location */
1534 result = pm_command(transport, serial, argc, argv);
Kenny Root597ea5b2011-08-05 11:19:45 -07001535
Kenny Root60733e92012-03-26 16:14:02 -07001536cleanup_apk:
Dan Albert286bb6d2015-07-09 20:35:09 +00001537 delete_file(transport, serial, apk_dest);
Elliott Hughesaa245492015-08-03 10:38:08 -07001538 return result;
Jeff Sharkey960df972014-06-09 17:30:57 -07001539}
1540
Elliott Hughes3bd73c12015-05-05 13:10:43 -07001541static int install_multiple_app(TransportType transport, const char* serial, int argc,
Elliott Hughes58305772015-04-17 13:57:15 -07001542 const char** argv)
Jeff Sharkey960df972014-06-09 17:30:57 -07001543{
Jeff Sharkey960df972014-06-09 17:30:57 -07001544 int i;
1545 struct stat sb;
Elliott Hughes2940ccf2015-04-17 14:07:52 -07001546 uint64_t total_size = 0;
Jeff Sharkey960df972014-06-09 17:30:57 -07001547
1548 // Find all APK arguments starting at end.
1549 // All other arguments passed through verbatim.
1550 int first_apk = -1;
1551 for (i = argc - 1; i >= 0; i--) {
Dan Albertbac34742015-02-25 17:51:28 -08001552 const char* file = argv[i];
Elliott Hughes3e7048c2015-07-27 21:21:39 -07001553 const char* dot = strrchr(file, '.');
Jeff Sharkey960df972014-06-09 17:30:57 -07001554 if (dot && !strcasecmp(dot, ".apk")) {
1555 if (stat(file, &sb) == -1 || !S_ISREG(sb.st_mode)) {
1556 fprintf(stderr, "Invalid APK file: %s\n", file);
1557 return -1;
1558 }
1559
1560 total_size += sb.st_size;
1561 first_apk = i;
1562 } else {
1563 break;
1564 }
Kenny Root597ea5b2011-08-05 11:19:45 -07001565 }
1566
Jeff Sharkey960df972014-06-09 17:30:57 -07001567 if (first_apk == -1) {
1568 fprintf(stderr, "Missing APK file\n");
1569 return 1;
1570 }
Kenny Root597ea5b2011-08-05 11:19:45 -07001571
Elliott Hughes2940ccf2015-04-17 14:07:52 -07001572 std::string cmd = android::base::StringPrintf("exec:pm install-create -S %" PRIu64, total_size);
Jeff Sharkey960df972014-06-09 17:30:57 -07001573 for (i = 1; i < first_apk; i++) {
Elliott Hughes6c34bba2015-04-17 20:11:08 -07001574 cmd += " " + escape_arg(argv[i]);
Jeff Sharkey960df972014-06-09 17:30:57 -07001575 }
1576
1577 // Create install session
Elliott Hughes078f0fc2015-04-29 08:35:59 -07001578 std::string error;
Elliott Hughes6452a892015-04-29 12:28:13 -07001579 int fd = adb_connect(cmd, &error);
Jeff Sharkey960df972014-06-09 17:30:57 -07001580 if (fd < 0) {
Elliott Hughes078f0fc2015-04-29 08:35:59 -07001581 fprintf(stderr, "Connect error for create: %s\n", error.c_str());
Jeff Sharkey960df972014-06-09 17:30:57 -07001582 return -1;
1583 }
Elliott Hughes2baae3a2015-04-17 10:59:34 -07001584 char buf[BUFSIZ];
Jeff Sharkey960df972014-06-09 17:30:57 -07001585 read_status_line(fd, buf, sizeof(buf));
1586 adb_close(fd);
1587
1588 int session_id = -1;
1589 if (!strncmp("Success", buf, 7)) {
1590 char* start = strrchr(buf, '[');
1591 char* end = strrchr(buf, ']');
1592 if (start && end) {
1593 *end = '\0';
1594 session_id = strtol(start + 1, NULL, 10);
1595 }
1596 }
1597 if (session_id < 0) {
1598 fprintf(stderr, "Failed to create session\n");
Christopher Tate71bbc672014-07-14 16:45:13 -07001599 fputs(buf, stderr);
Jeff Sharkey960df972014-06-09 17:30:57 -07001600 return -1;
1601 }
1602
1603 // Valid session, now stream the APKs
1604 int success = 1;
1605 for (i = first_apk; i < argc; i++) {
Dan Albertbac34742015-02-25 17:51:28 -08001606 const char* file = argv[i];
Jeff Sharkey960df972014-06-09 17:30:57 -07001607 if (stat(file, &sb) == -1) {
1608 fprintf(stderr, "Failed to stat %s\n", file);
1609 success = 0;
1610 goto finalize_session;
1611 }
1612
Elliott Hughes2940ccf2015-04-17 14:07:52 -07001613 std::string cmd = android::base::StringPrintf(
1614 "exec:pm install-write -S %" PRIu64 " %d %d_%s -",
Elliott Hughes5c742702015-07-30 17:42:01 -07001615 static_cast<uint64_t>(sb.st_size), session_id, i, adb_basename(file).c_str());
Jeff Sharkey960df972014-06-09 17:30:57 -07001616
1617 int localFd = adb_open(file, O_RDONLY);
1618 if (localFd < 0) {
Elliott Hughes078f0fc2015-04-29 08:35:59 -07001619 fprintf(stderr, "Failed to open %s: %s\n", file, strerror(errno));
Jeff Sharkey960df972014-06-09 17:30:57 -07001620 success = 0;
1621 goto finalize_session;
1622 }
1623
Elliott Hughes078f0fc2015-04-29 08:35:59 -07001624 std::string error;
Elliott Hughes6452a892015-04-29 12:28:13 -07001625 int remoteFd = adb_connect(cmd, &error);
Jeff Sharkey960df972014-06-09 17:30:57 -07001626 if (remoteFd < 0) {
Elliott Hughes078f0fc2015-04-29 08:35:59 -07001627 fprintf(stderr, "Connect error for write: %s\n", error.c_str());
Jeff Sharkey960df972014-06-09 17:30:57 -07001628 adb_close(localFd);
1629 success = 0;
1630 goto finalize_session;
1631 }
1632
1633 copy_to_file(localFd, remoteFd);
1634 read_status_line(remoteFd, buf, sizeof(buf));
1635
1636 adb_close(localFd);
1637 adb_close(remoteFd);
1638
1639 if (strncmp("Success", buf, 7)) {
1640 fprintf(stderr, "Failed to write %s\n", file);
Christopher Tate71bbc672014-07-14 16:45:13 -07001641 fputs(buf, stderr);
Jeff Sharkey960df972014-06-09 17:30:57 -07001642 success = 0;
1643 goto finalize_session;
1644 }
1645 }
1646
1647finalize_session:
Jeff Sharkeyac77e1f2014-07-25 09:58:25 -07001648 // Commit session if we streamed everything okay; otherwise abandon
Elliott Hughes6452a892015-04-29 12:28:13 -07001649 std::string service =
1650 android::base::StringPrintf("exec:pm install-%s %d",
1651 success ? "commit" : "abandon", session_id);
1652 fd = adb_connect(service, &error);
Jeff Sharkey960df972014-06-09 17:30:57 -07001653 if (fd < 0) {
Elliott Hughes078f0fc2015-04-29 08:35:59 -07001654 fprintf(stderr, "Connect error for finalize: %s\n", error.c_str());
Jeff Sharkey960df972014-06-09 17:30:57 -07001655 return -1;
1656 }
1657 read_status_line(fd, buf, sizeof(buf));
1658 adb_close(fd);
1659
1660 if (!strncmp("Success", buf, 7)) {
Christopher Tate71bbc672014-07-14 16:45:13 -07001661 fputs(buf, stderr);
Jeff Sharkey960df972014-06-09 17:30:57 -07001662 return 0;
1663 } else {
1664 fprintf(stderr, "Failed to finalize session\n");
Christopher Tate71bbc672014-07-14 16:45:13 -07001665 fputs(buf, stderr);
Jeff Sharkey960df972014-06-09 17:30:57 -07001666 return -1;
1667 }
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001668}