blob: 1e1690edc8a040fc40a8747099329cd19e56fdfc [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 version(FILE* out) {
Elliott Hughesf3bbfa62015-05-07 21:56:31 -070069 fprintf(out, "Android Debug Bridge version %d.%d.%d\nRevision %s\n",
70 ADB_VERSION_MAJOR, ADB_VERSION_MINOR, ADB_SERVER_VERSION, ADB_REVISION);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -080071}
72
Elliott Hughes58305772015-04-17 13:57:15 -070073static void help() {
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -080074 version(stderr);
75
76 fprintf(stderr,
77 "\n"
Matt Gumbeld7b33082012-11-14 10:16:17 -080078 " -a - directs adb to listen on all interfaces for a connection\n"
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -080079 " -d - directs command to the only connected USB device\n"
80 " returns an error if more than one USB device is present.\n"
81 " -e - directs command to the only running emulator.\n"
82 " returns an error if more than one emulator is running.\n"
Scott Andersone109d262012-04-20 11:21:14 -070083 " -s <specific device> - directs command to the device or emulator with the given\n"
Scott Anderson2ca3e6b2012-05-30 18:11:27 -070084 " serial number or qualifier. Overrides ANDROID_SERIAL\n"
Elliott Hughes31dbed72009-10-07 15:38:53 -070085 " environment variable.\n"
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -080086 " -p <product name or path> - simple product name like 'sooner', or\n"
87 " a relative/absolute path to a product\n"
88 " out directory like 'out/target/product/sooner'.\n"
89 " If -p is not specified, the ANDROID_PRODUCT_OUT\n"
90 " environment variable is used, which must\n"
91 " be an absolute path.\n"
Matt Gumbeld7b33082012-11-14 10:16:17 -080092 " -H - Name of adb server host (default: localhost)\n"
93 " -P - Port of adb server (default: 5037)\n"
Scott Andersone109d262012-04-20 11:21:14 -070094 " devices [-l] - list all connected devices\n"
Scott Anderson2ca3e6b2012-05-30 18:11:27 -070095 " ('-l' will also list device qualifiers)\n"
Mike Lockwoodcbbe79ad2010-05-24 10:44:35 -040096 " connect <host>[:<port>] - connect to a device via TCP/IP\n"
97 " Port 5555 is used by default if no port number is specified.\n"
98 " disconnect [<host>[:<port>]] - disconnect from a TCP/IP device.\n"
99 " Port 5555 is used by default if no port number is specified.\n"
Bernhard Reutner-Fischer6715a432011-04-26 12:46:05 +0200100 " Using this command with no additional arguments\n"
Mike Lockwoodcbbe79ad2010-05-24 10:44:35 -0400101 " will disconnect from all connected TCP/IP devices.\n"
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800102 "\n"
103 "device commands:\n"
Mark Lindner76f2a932014-03-11 17:55:59 -0700104 " adb push [-p] <local> <remote>\n"
105 " - copy file/dir to device\n"
106 " ('-p' to display the transfer progress)\n"
Lajos Molnarde8ff4a2013-04-19 12:41:09 -0700107 " adb pull [-p] [-a] <remote> [<local>]\n"
Mark Lindner76f2a932014-03-11 17:55:59 -0700108 " - copy file/dir from device\n"
109 " ('-p' to display the transfer progress)\n"
Lajos Molnarde8ff4a2013-04-19 12:41:09 -0700110 " ('-a' means copy timestamp and mode)\n"
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800111 " adb sync [ <directory> ] - copy host->device only if changed\n"
Anthony Newnam705c9442010-02-22 08:36:49 -0600112 " (-l means list but don't copy)\n"
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800113 " adb shell - run remote shell interactively\n"
114 " adb shell <command> - run remote shell command\n"
115 " adb emu <command> - run emulator console command\n"
116 " adb logcat [ <filter-spec> ] - View device log\n"
David 'Digit' Turner0d82fbf2012-11-14 15:01:55 +0100117 " adb forward --list - list all forward socket connections.\n"
118 " the format is a list of lines with the following format:\n"
119 " <serial> \" \" <local> \" \" <remote> \"\\n\"\n"
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800120 " adb forward <local> <remote> - forward socket connections\n"
121 " forward specs are one of: \n"
122 " tcp:<port>\n"
123 " localabstract:<unix domain socket name>\n"
124 " localreserved:<unix domain socket name>\n"
125 " localfilesystem:<unix domain socket name>\n"
126 " dev:<character device name>\n"
127 " jdwp:<process pid> (remote only)\n"
David 'Digit' Turner0d82fbf2012-11-14 15:01:55 +0100128 " adb forward --no-rebind <local> <remote>\n"
129 " - same as 'adb forward <local> <remote>' but fails\n"
130 " if <local> is already forwarded\n"
131 " adb forward --remove <local> - remove a specific forward socket connection\n"
132 " adb forward --remove-all - remove all forward socket connections\n"
David 'Digit' Turner25258692013-03-21 21:07:42 +0100133 " adb reverse --list - list all reverse socket connections from device\n"
134 " adb reverse <remote> <local> - reverse socket connections\n"
135 " reverse specs are one of:\n"
136 " tcp:<port>\n"
137 " localabstract:<unix domain socket name>\n"
138 " localreserved:<unix domain socket name>\n"
139 " localfilesystem:<unix domain socket name>\n"
140 " adb reverse --norebind <remote> <local>\n"
141 " - same as 'adb reverse <remote> <local>' but fails\n"
142 " if <remote> is already reversed.\n"
143 " adb reverse --remove <remote>\n"
144 " - remove a specific reversed socket connection\n"
145 " adb reverse --remove-all - remove all reversed socket connections from device\n"
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800146 " adb jdwp - list PIDs of processes hosting a JDWP transport\n"
Jeff Sharkey960df972014-06-09 17:30:57 -0700147 " adb install [-lrtsd] <file>\n"
148 " adb install-multiple [-lrtsdp] <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"
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800156 " adb uninstall [-k] <package> - remove this app package from the device\n"
157 " ('-k' means keep the data and cache directories)\n"
158 " adb bugreport - return all information from the device\n"
159 " that should be included in a bug report.\n"
160 "\n"
Christopher Tate0c06eb52013-03-06 16:40:52 -0800161 " adb backup [-f <file>] [-apk|-noapk] [-obb|-noobb] [-shared|-noshared] [-all] [-system|-nosystem] [<packages...>]\n"
Christopher Tate56885092011-10-03 18:27:01 -0700162 " - write an archive of the device's data to <file>.\n"
163 " If no -f option is supplied then the data is written\n"
164 " to \"backup.ab\" in the current directory.\n"
Christopher Tated2f54152011-04-21 12:53:28 -0700165 " (-apk|-noapk enable/disable backup of the .apks themselves\n"
Christopher Tatede034ec2011-08-09 17:05:29 -0700166 " in the archive; the default is noapk.)\n"
Christopher Tate0c06eb52013-03-06 16:40:52 -0800167 " (-obb|-noobb enable/disable backup of any installed apk expansion\n"
168 " (aka .obb) files associated with each application; the default\n"
169 " is noobb.)\n"
Christopher Tated2f54152011-04-21 12:53:28 -0700170 " (-shared|-noshared enable/disable backup of the device's\n"
171 " shared storage / SD card contents; the default is noshared.)\n"
172 " (-all means to back up all installed applications)\n"
Christopher Tate56885092011-10-03 18:27:01 -0700173 " (-system|-nosystem toggles whether -all automatically includes\n"
174 " system applications; the default is to include system apps)\n"
Christopher Tated2f54152011-04-21 12:53:28 -0700175 " (<packages...> is the list of applications to be backed up. If\n"
176 " the -all or -shared flags are passed, then the package\n"
Christopher Tate56885092011-10-03 18:27:01 -0700177 " list is optional. Applications explicitly given on the\n"
178 " command line will be included even if -nosystem would\n"
179 " ordinarily cause them to be omitted.)\n"
Christopher Tated2f54152011-04-21 12:53:28 -0700180 "\n"
Christopher Tatede034ec2011-08-09 17:05:29 -0700181 " adb restore <file> - restore device contents from the <file> backup archive\n"
Christopher Tate702967a2011-05-17 15:52:54 -0700182 "\n"
Paul Lawrence982089d2014-12-03 15:31:57 -0800183 " adb disable-verity - disable dm-verity checking on USERDEBUG builds\n"
184 " adb enable-verity - re-enable dm-verity checking on USERDEBUG builds\n"
Nick Kralevichbea3f9c2014-11-13 15:17:29 -0800185 " adb keygen <file> - generate adb public/private key. The private key is stored in <file>,\n"
186 " and the public key is stored in <file>.pub. Any existing files\n"
187 " are overwritten.\n"
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800188 " adb help - show this help message\n"
189 " adb version - show version num\n"
190 "\n"
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800191 "scripting:\n"
192 " adb wait-for-device - block until device is online\n"
193 " adb start-server - ensure that there is a server running\n"
194 " adb kill-server - kill the server if it is running\n"
195 " adb get-state - prints: offline | bootloader | device\n"
196 " adb get-serialno - prints: <serial-number>\n"
Scott Andersone109d262012-04-20 11:21:14 -0700197 " adb get-devpath - prints: <device-path>\n"
Elliott Hughesec7a6672015-03-16 21:58:32 +0000198 " 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 -0700199 " adb reboot [bootloader|recovery]\n"
200 " - reboots the device, optionally into the bootloader or recovery program.\n"
201 " adb reboot sideload - reboots the device into the sideload mode in recovery program (adb root required).\n"
202 " adb reboot sideload-auto-reboot\n"
203 " - reboots into the sideload mode, then reboots automatically after the sideload regardless of the result.\n"
Elliott Hughes7e067cf2015-06-12 14:26:29 -0700204 " adb sideload <file> - sideloads the given package\n"
Mike Lockwoodff196702009-08-24 15:58:40 -0700205 " adb root - restarts the adbd daemon with root permissions\n"
Dan Pasanen98858812014-10-06 12:57:20 -0500206 " adb unroot - restarts the adbd daemon without root permissions\n"
Romain Guy311add42009-12-14 14:42:17 -0800207 " adb usb - restarts the adbd daemon listening on USB\n"
Paul Lawrenceec900bb2014-10-09 14:22:49 +0000208 " adb tcpip <port> - restarts the adbd daemon listening on TCP on the specified port\n"
Elliott Hughes7e067cf2015-06-12 14:26:29 -0700209 "\n"
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800210 "networking:\n"
211 " adb ppp <tty> [parameters] - Run PPP over USB.\n"
Kenny Rootc9891992009-06-08 14:40:30 -0500212 " Note: you should not automatically start a PPP connection.\n"
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800213 " <tty> refers to the tty for PPP stream. Eg. dev:/dev/omap_csmi_tty1\n"
214 " [parameters] - Eg. defaultroute debug dump local notty usepeerdns\n"
215 "\n"
216 "adb sync notes: adb sync [ <directory> ]\n"
217 " <localdir> can be interpreted in several ways:\n"
218 "\n"
Elliott Hughesec7a6672015-03-16 21:58:32 +0000219 " - 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 -0800220 "\n"
Elliott Hughesec7a6672015-03-16 21:58:32 +0000221 " - If it is \"system\", \"vendor\", \"oem\" or \"data\", only the corresponding partition\n"
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800222 " is updated.\n"
Timcd643152010-02-16 20:18:29 +0000223 "\n"
Elliott Hughes7e067cf2015-06-12 14:26:29 -0700224 "environment variables:\n"
Timcd643152010-02-16 20:18:29 +0000225 " ADB_TRACE - Print debug information. A comma separated list of the following values\n"
226 " 1 or all, adb, sockets, packets, rwx, usb, sync, sysdeps, transport, jdwp\n"
227 " ANDROID_SERIAL - The serial number to connect to. -s takes priority over this if given.\n"
228 " 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 -0800229 );
230}
231
Elliott Hughes58305772015-04-17 13:57:15 -0700232static int usage() {
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800233 help();
234 return 1;
235}
236
Yabin Cuid325e862014-11-17 14:48:25 -0800237#if defined(_WIN32)
238
Elliott Hughesa2f2e562015-04-16 16:47:02 -0700239// Implemented in sysdeps_win32.cpp.
Spencer Low50184062015-03-01 15:06:21 -0800240void stdin_raw_init(int fd);
241void stdin_raw_restore(int fd);
Yabin Cuid325e862014-11-17 14:48:25 -0800242
243#else
Alistair Buxtondfa09fd2013-03-01 22:16:41 +0100244static termios g_saved_terminal_state;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800245
Alistair Buxtondfa09fd2013-03-01 22:16:41 +0100246static void stdin_raw_init(int fd) {
247 if (tcgetattr(fd, &g_saved_terminal_state)) return;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800248
Alistair Buxtondfa09fd2013-03-01 22:16:41 +0100249 termios tio;
250 if (tcgetattr(fd, &tio)) return;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800251
Alistair Buxtondfa09fd2013-03-01 22:16:41 +0100252 cfmakeraw(&tio);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800253
Alistair Buxtondfa09fd2013-03-01 22:16:41 +0100254 // No timeout but request at least one character per read.
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800255 tio.c_cc[VTIME] = 0;
256 tio.c_cc[VMIN] = 1;
257
Alistair Buxtondfa09fd2013-03-01 22:16:41 +0100258 tcsetattr(fd, TCSAFLUSH, &tio);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800259}
260
Alistair Buxtondfa09fd2013-03-01 22:16:41 +0100261static void stdin_raw_restore(int fd) {
262 tcsetattr(fd, TCSAFLUSH, &g_saved_terminal_state);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800263}
264#endif
265
Elliott Hughes5677c232015-05-07 23:37:40 -0700266static void read_and_dump(int fd) {
267 while (fd >= 0) {
JP Abgrall408fa572011-03-16 15:57:42 -0700268 D("read_and_dump(): pre adb_read(fd=%d)\n", fd);
Elliott Hughes5677c232015-05-07 23:37:40 -0700269 char buf[BUFSIZ];
270 int len = adb_read(fd, buf, sizeof(buf));
JP Abgrall408fa572011-03-16 15:57:42 -0700271 D("read_and_dump(): post adb_read(fd=%d): len=%d\n", fd, len);
Elliott Hughes5677c232015-05-07 23:37:40 -0700272 if (len <= 0) {
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800273 break;
274 }
275
Mike Lockwooddd6b36e2009-09-22 01:18:40 -0400276 fwrite(buf, 1, len, stdout);
277 fflush(stdout);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800278 }
279}
280
Jeff Sharkey960df972014-06-09 17:30:57 -0700281static void read_status_line(int fd, char* buf, size_t count)
282{
283 count--;
284 while (count > 0) {
285 int len = adb_read(fd, buf, count);
286 if (len == 0) {
287 break;
288 } else if (len < 0) {
289 if (errno == EINTR) continue;
290 break;
291 }
292
293 buf += len;
294 count -= len;
295 }
296 *buf = '\0';
297}
298
Christopher Tated2f54152011-04-21 12:53:28 -0700299static void copy_to_file(int inFd, int outFd) {
Christopher Tate5b811fa2011-06-10 11:38:37 -0700300 const size_t BUFSIZE = 32 * 1024;
301 char* buf = (char*) malloc(BUFSIZE);
Elliott Hughesdc3b4592015-04-21 19:39:52 -0700302 if (buf == nullptr) fatal("couldn't allocate buffer for copy_to_file");
Christopher Tated2f54152011-04-21 12:53:28 -0700303 int len;
Christopher Tatec9cd3b92011-06-01 17:56:23 -0700304 long total = 0;
Spencer Lowb7dfb792015-05-22 16:48:31 -0700305#ifdef _WIN32
306 int old_stdin_mode = -1;
307 int old_stdout_mode = -1;
308#endif
Christopher Tated2f54152011-04-21 12:53:28 -0700309
310 D("copy_to_file(%d -> %d)\n", inFd, outFd);
Yabin Cuid325e862014-11-17 14:48:25 -0800311
Jeff Sharkey5d9d4342014-05-26 18:30:43 -0700312 if (inFd == STDIN_FILENO) {
313 stdin_raw_init(STDIN_FILENO);
Spencer Lowb7dfb792015-05-22 16:48:31 -0700314#ifdef _WIN32
315 old_stdin_mode = _setmode(STDIN_FILENO, _O_BINARY);
316 if (old_stdin_mode == -1) {
317 fatal_errno("could not set stdin to binary");
318 }
319#endif
Jeff Sharkey5d9d4342014-05-26 18:30:43 -0700320 }
Yabin Cuid325e862014-11-17 14:48:25 -0800321
Spencer Lowb7dfb792015-05-22 16:48:31 -0700322#ifdef _WIN32
323 if (outFd == STDOUT_FILENO) {
324 old_stdout_mode = _setmode(STDOUT_FILENO, _O_BINARY);
325 if (old_stdout_mode == -1) {
326 fatal_errno("could not set stdout to binary");
327 }
328 }
329#endif
330
Elliott Hughesa7090b92015-04-17 17:03:59 -0700331 while (true) {
Jeff Sharkey5d9d4342014-05-26 18:30:43 -0700332 if (inFd == STDIN_FILENO) {
333 len = unix_read(inFd, buf, BUFSIZE);
334 } else {
335 len = adb_read(inFd, buf, BUFSIZE);
336 }
Christopher Tated2f54152011-04-21 12:53:28 -0700337 if (len == 0) {
Christopher Tate5b811fa2011-06-10 11:38:37 -0700338 D("copy_to_file() : read 0 bytes; exiting\n");
Christopher Tated2f54152011-04-21 12:53:28 -0700339 break;
340 }
341 if (len < 0) {
Christopher Tate5b811fa2011-06-10 11:38:37 -0700342 if (errno == EINTR) {
343 D("copy_to_file() : EINTR, retrying\n");
344 continue;
345 }
Christopher Tated2f54152011-04-21 12:53:28 -0700346 D("copy_to_file() : error %d\n", errno);
347 break;
348 }
Jeff Sharkey5d9d4342014-05-26 18:30:43 -0700349 if (outFd == STDOUT_FILENO) {
350 fwrite(buf, 1, len, stdout);
351 fflush(stdout);
352 } else {
353 adb_write(outFd, buf, len);
354 }
Christopher Tatec9cd3b92011-06-01 17:56:23 -0700355 total += len;
Christopher Tated2f54152011-04-21 12:53:28 -0700356 }
Yabin Cuid325e862014-11-17 14:48:25 -0800357
Jeff Sharkey5d9d4342014-05-26 18:30:43 -0700358 if (inFd == STDIN_FILENO) {
359 stdin_raw_restore(STDIN_FILENO);
Spencer Lowb7dfb792015-05-22 16:48:31 -0700360#ifdef _WIN32
361 if (_setmode(STDIN_FILENO, old_stdin_mode) == -1) {
362 fatal_errno("could not restore stdin mode");
363 }
364#endif
Jeff Sharkey5d9d4342014-05-26 18:30:43 -0700365 }
Yabin Cuid325e862014-11-17 14:48:25 -0800366
Spencer Lowb7dfb792015-05-22 16:48:31 -0700367#ifdef _WIN32
368 if (outFd == STDOUT_FILENO) {
369 if (_setmode(STDOUT_FILENO, old_stdout_mode) == -1) {
370 fatal_errno("could not restore stdout mode");
371 }
372 }
373#endif
374
Christopher Tatec9cd3b92011-06-01 17:56:23 -0700375 D("copy_to_file() finished after %lu bytes\n", total);
Christopher Tate5b811fa2011-06-10 11:38:37 -0700376 free(buf);
Christopher Tated2f54152011-04-21 12:53:28 -0700377}
378
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800379static void *stdin_read_thread(void *x)
380{
381 int fd, fdi;
382 unsigned char buf[1024];
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800383 int r, n;
384 int state = 0;
385
386 int *fds = (int*) x;
387 fd = fds[0];
388 fdi = fds[1];
389 free(fds);
390
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800391 for(;;) {
392 /* fdi is really the client's stdin, so use read, not adb_read here */
JP Abgrall408fa572011-03-16 15:57:42 -0700393 D("stdin_read_thread(): pre unix_read(fdi=%d,...)\n", fdi);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800394 r = unix_read(fdi, buf, 1024);
JP Abgrall408fa572011-03-16 15:57:42 -0700395 D("stdin_read_thread(): post unix_read(fdi=%d,...)\n", fdi);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800396 if(r == 0) break;
397 if(r < 0) {
398 if(errno == EINTR) continue;
399 break;
400 }
Mike Lockwood67d53582010-05-25 13:40:15 -0400401 for(n = 0; n < r; n++){
402 switch(buf[n]) {
403 case '\n':
404 state = 1;
405 break;
406 case '\r':
407 state = 1;
408 break;
409 case '~':
410 if(state == 1) state++;
411 break;
412 case '.':
413 if(state == 2) {
414 fprintf(stderr,"\n* disconnect *\n");
Mike Lockwood67d53582010-05-25 13:40:15 -0400415 stdin_raw_restore(fdi);
Mike Lockwood67d53582010-05-25 13:40:15 -0400416 exit(0);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800417 }
Mike Lockwood67d53582010-05-25 13:40:15 -0400418 default:
419 state = 0;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800420 }
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800421 }
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800422 r = adb_write(fd, buf, r);
423 if(r <= 0) {
424 break;
425 }
426 }
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800427 return 0;
428}
429
Elliott Hughes58305772015-04-17 13:57:15 -0700430static int interactive_shell() {
Elliott Hughes078f0fc2015-04-29 08:35:59 -0700431 int fdi;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800432
Elliott Hughes078f0fc2015-04-29 08:35:59 -0700433 std::string error;
434 int fd = adb_connect("shell:", &error);
435 if (fd < 0) {
436 fprintf(stderr,"error: %s\n", error.c_str());
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800437 return 1;
438 }
439 fdi = 0; //dup(0);
440
Dan Albertbac34742015-02-25 17:51:28 -0800441 int* fds = reinterpret_cast<int*>(malloc(sizeof(int) * 2));
Elliott Hughesdc3b4592015-04-21 19:39:52 -0700442 if (fds == nullptr) {
443 fprintf(stderr, "couldn't allocate fds array: %s\n", strerror(errno));
444 return 1;
445 }
446
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800447 fds[0] = fd;
448 fds[1] = fdi;
449
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800450 stdin_raw_init(fdi);
Elliott Hughes9b0f3542015-05-05 13:41:21 -0700451
452 adb_thread_create(stdin_read_thread, fds);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800453 read_and_dump(fd);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800454 stdin_raw_restore(fdi);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800455 return 0;
456}
457
458
Elliott Hughes3bd73c12015-05-05 13:10:43 -0700459static std::string format_host_command(const char* command, TransportType type, const char* serial) {
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800460 if (serial) {
Elliott Hughes6452a892015-04-29 12:28:13 -0700461 return android::base::StringPrintf("host-serial:%s:%s", serial, command);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800462 }
Elliott Hughes6452a892015-04-29 12:28:13 -0700463
464 const char* prefix = "host";
465 if (type == kTransportUsb) {
466 prefix = "host-usb";
467 } else if (type == kTransportLocal) {
468 prefix = "host-local";
469 }
470 return android::base::StringPrintf("%s:%s", prefix, command);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800471}
472
Elliott Hughes6452a892015-04-29 12:28:13 -0700473static int adb_download_buffer(const char *service, const char *fn, const void* data, unsigned sz,
Elliott Hughes078f0fc2015-04-29 08:35:59 -0700474 bool show_progress)
Doug Zongker447f0612012-01-09 14:54:53 -0800475{
Elliott Hughes078f0fc2015-04-29 08:35:59 -0700476 std::string error;
Elliott Hughes6452a892015-04-29 12:28:13 -0700477 int fd = adb_connect(android::base::StringPrintf("%s:%d", service, sz), &error);
Elliott Hughes078f0fc2015-04-29 08:35:59 -0700478 if (fd < 0) {
479 fprintf(stderr,"error: %s\n", error.c_str());
Doug Zongker447f0612012-01-09 14:54:53 -0800480 return -1;
481 }
482
483 int opt = CHUNK_SIZE;
Spencer Lowf055c192015-01-25 14:40:16 -0800484 opt = adb_setsockopt(fd, SOL_SOCKET, SO_SNDBUF, (const void *) &opt, sizeof(opt));
Doug Zongker447f0612012-01-09 14:54:53 -0800485
Elliott Hughes6452a892015-04-29 12:28:13 -0700486 unsigned total = sz;
Dan Albertbac34742015-02-25 17:51:28 -0800487 const uint8_t* ptr = reinterpret_cast<const uint8_t*>(data);
Doug Zongker447f0612012-01-09 14:54:53 -0800488
Elliott Hughes078f0fc2015-04-29 08:35:59 -0700489 if (show_progress) {
Elliott Hughes3e7048c2015-07-27 21:21:39 -0700490 const char* x = strrchr(service, ':');
491 if (x) service = x + 1;
Doug Zongker447f0612012-01-09 14:54:53 -0800492 }
493
Elliott Hughes6452a892015-04-29 12:28:13 -0700494 while (sz > 0) {
Doug Zongker447f0612012-01-09 14:54:53 -0800495 unsigned xfer = (sz > CHUNK_SIZE) ? CHUNK_SIZE : sz;
Elliott Hughes078f0fc2015-04-29 08:35:59 -0700496 if (!WriteFdExactly(fd, ptr, xfer)) {
497 std::string error;
498 adb_status(fd, &error);
499 fprintf(stderr,"* failed to write data '%s' *\n", error.c_str());
Doug Zongker447f0612012-01-09 14:54:53 -0800500 return -1;
501 }
502 sz -= xfer;
503 ptr += xfer;
Elliott Hughes078f0fc2015-04-29 08:35:59 -0700504 if (show_progress) {
Magnus Eriksson86ae6d52013-03-05 07:37:32 +0100505 printf("sending: '%s' %4d%% \r", fn, (int)(100LL - ((100LL * sz) / (total))));
Doug Zongker447f0612012-01-09 14:54:53 -0800506 fflush(stdout);
507 }
508 }
Elliott Hughes078f0fc2015-04-29 08:35:59 -0700509 if (show_progress) {
Doug Zongker447f0612012-01-09 14:54:53 -0800510 printf("\n");
511 }
512
Elliott Hughese67f1f82015-04-30 17:32:03 -0700513 if (!adb_status(fd, &error)) {
514 fprintf(stderr,"* error response '%s' *\n", error.c_str());
Doug Zongker447f0612012-01-09 14:54:53 -0800515 return -1;
516 }
517
518 adb_close(fd);
519 return 0;
520}
521
Doug Zongker71fe5842014-06-26 15:35:36 -0700522#define SIDELOAD_HOST_BLOCK_SIZE (CHUNK_SIZE)
523
524/*
525 * The sideload-host protocol serves the data in a file (given on the
526 * command line) to the client, using a simple protocol:
527 *
528 * - The connect message includes the total number of bytes in the
529 * file and a block size chosen by us.
530 *
531 * - The other side sends the desired block number as eight decimal
532 * digits (eg "00000023" for block 23). Blocks are numbered from
533 * zero.
534 *
535 * - We send back the data of the requested block. The last block is
536 * likely to be partial; when the last block is requested we only
537 * send the part of the block that exists, it's not padded up to the
538 * block size.
539 *
540 * - When the other side sends "DONEDONE" instead of a block number,
541 * we hang up.
542 */
Elliott Hughes58305772015-04-17 13:57:15 -0700543static int adb_sideload_host(const char* fn) {
Doug Zongker71fe5842014-06-26 15:35:36 -0700544 unsigned sz;
545 size_t xfer = 0;
546 int status;
Dan Albertbac34742015-02-25 17:51:28 -0800547 int last_percent = -1;
548 int opt = SIDELOAD_HOST_BLOCK_SIZE;
Doug Zongker71fe5842014-06-26 15:35:36 -0700549
550 printf("loading: '%s'", fn);
551 fflush(stdout);
Dan Albertbac34742015-02-25 17:51:28 -0800552 uint8_t* data = reinterpret_cast<uint8_t*>(load_file(fn, &sz));
Doug Zongker71fe5842014-06-26 15:35:36 -0700553 if (data == 0) {
554 printf("\n");
555 fprintf(stderr, "* cannot read '%s' *\n", fn);
556 return -1;
557 }
558
Elliott Hughes6452a892015-04-29 12:28:13 -0700559 std::string service =
560 android::base::StringPrintf("sideload-host:%d:%d", sz, SIDELOAD_HOST_BLOCK_SIZE);
Elliott Hughes078f0fc2015-04-29 08:35:59 -0700561 std::string error;
Elliott Hughes6452a892015-04-29 12:28:13 -0700562 int fd = adb_connect(service, &error);
Doug Zongker71fe5842014-06-26 15:35:36 -0700563 if (fd < 0) {
564 // Try falling back to the older sideload method. Maybe this
565 // is an older device that doesn't support sideload-host.
566 printf("\n");
Elliott Hughes078f0fc2015-04-29 08:35:59 -0700567 status = adb_download_buffer("sideload", fn, data, sz, true);
Doug Zongker71fe5842014-06-26 15:35:36 -0700568 goto done;
569 }
570
Spencer Lowf055c192015-01-25 14:40:16 -0800571 opt = adb_setsockopt(fd, SOL_SOCKET, SO_SNDBUF, (const void *) &opt, sizeof(opt));
Doug Zongker71fe5842014-06-26 15:35:36 -0700572
Elliott Hughesa7090b92015-04-17 17:03:59 -0700573 while (true) {
Elliott Hughes6452a892015-04-29 12:28:13 -0700574 char buf[9];
Dan Albertcc731cc2015-02-24 21:26:58 -0800575 if (!ReadFdExactly(fd, buf, 8)) {
Elliott Hughes078f0fc2015-04-29 08:35:59 -0700576 fprintf(stderr, "* failed to read command: %s\n", strerror(errno));
Doug Zongker71fe5842014-06-26 15:35:36 -0700577 status = -1;
578 goto done;
579 }
Elliott Hughes6452a892015-04-29 12:28:13 -0700580 buf[8] = '\0';
Doug Zongker71fe5842014-06-26 15:35:36 -0700581
Elliott Hughes6452a892015-04-29 12:28:13 -0700582 if (strcmp("DONEDONE", buf) == 0) {
Doug Zongker71fe5842014-06-26 15:35:36 -0700583 status = 0;
584 break;
585 }
586
Doug Zongker71fe5842014-06-26 15:35:36 -0700587 int block = strtol(buf, NULL, 10);
588
589 size_t offset = block * SIDELOAD_HOST_BLOCK_SIZE;
590 if (offset >= sz) {
Elliott Hughes078f0fc2015-04-29 08:35:59 -0700591 fprintf(stderr, "* attempt to read block %d past end\n", block);
Doug Zongker71fe5842014-06-26 15:35:36 -0700592 status = -1;
593 goto done;
594 }
595 uint8_t* start = data + offset;
596 size_t offset_end = offset + SIDELOAD_HOST_BLOCK_SIZE;
597 size_t to_write = SIDELOAD_HOST_BLOCK_SIZE;
598 if (offset_end > sz) {
599 to_write = sz - offset;
600 }
601
Dan Albertcc731cc2015-02-24 21:26:58 -0800602 if(!WriteFdExactly(fd, start, to_write)) {
Elliott Hughes078f0fc2015-04-29 08:35:59 -0700603 adb_status(fd, &error);
604 fprintf(stderr,"* failed to write data '%s' *\n", error.c_str());
Doug Zongker71fe5842014-06-26 15:35:36 -0700605 status = -1;
606 goto done;
607 }
608 xfer += to_write;
609
610 // For normal OTA packages, we expect to transfer every byte
611 // twice, plus a bit of overhead (one read during
612 // verification, one read of each byte for installation, plus
613 // extra access to things like the zip central directory).
614 // This estimate of the completion becomes 100% when we've
615 // transferred ~2.13 (=100/47) times the package size.
616 int percent = (int)(xfer * 47LL / (sz ? sz : 1));
617 if (percent != last_percent) {
618 printf("\rserving: '%s' (~%d%%) ", fn, percent);
619 fflush(stdout);
620 last_percent = percent;
621 }
622 }
623
Colin Cross6d6a8982014-07-07 14:12:41 -0700624 printf("\rTotal xfer: %.2fx%*s\n", (double)xfer / (sz ? sz : 1), (int)strlen(fn)+10, "");
Doug Zongker71fe5842014-06-26 15:35:36 -0700625
626 done:
627 if (fd >= 0) adb_close(fd);
628 free(data);
629 return status;
630}
631
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800632/**
633 * Run ppp in "notty" mode against a resource listed as the first parameter
634 * eg:
635 *
636 * ppp dev:/dev/omap_csmi_tty0 <ppp options>
637 *
638 */
Elliott Hughes58305772015-04-17 13:57:15 -0700639static int ppp(int argc, const char** argv) {
Yabin Cuie77b6a02014-11-11 09:24:11 -0800640#if defined(_WIN32)
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800641 fprintf(stderr, "error: adb %s not implemented on Win32\n", argv[0]);
642 return -1;
643#else
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800644 if (argc < 2) {
645 fprintf(stderr, "usage: adb %s <adb service name> [ppp opts]\n",
646 argv[0]);
647
648 return 1;
649 }
650
Dan Albertbac34742015-02-25 17:51:28 -0800651 const char* adb_service_name = argv[1];
Elliott Hughes078f0fc2015-04-29 08:35:59 -0700652 std::string error;
653 int fd = adb_connect(adb_service_name, &error);
654 if (fd < 0) {
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800655 fprintf(stderr,"Error: Could not open adb service: %s. Error: %s\n",
Elliott Hughes078f0fc2015-04-29 08:35:59 -0700656 adb_service_name, error.c_str());
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800657 return 1;
658 }
659
Elliott Hughes078f0fc2015-04-29 08:35:59 -0700660 pid_t pid = fork();
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800661
662 if (pid < 0) {
663 perror("from fork()");
664 return 1;
665 } else if (pid == 0) {
666 int err;
667 int i;
668 const char **ppp_args;
669
670 // copy args
671 ppp_args = (const char **) alloca(sizeof(char *) * argc + 1);
672 ppp_args[0] = "pppd";
673 for (i = 2 ; i < argc ; i++) {
674 //argv[2] and beyond become ppp_args[1] and beyond
675 ppp_args[i - 1] = argv[i];
676 }
677 ppp_args[i-1] = NULL;
678
679 // child side
680
681 dup2(fd, STDIN_FILENO);
682 dup2(fd, STDOUT_FILENO);
683 adb_close(STDERR_FILENO);
684 adb_close(fd);
685
686 err = execvp("pppd", (char * const *)ppp_args);
687
688 if (err < 0) {
689 perror("execing pppd");
690 }
691 exit(-1);
692 } else {
693 // parent side
694
695 adb_close(fd);
696 return 0;
697 }
Yabin Cuie77b6a02014-11-11 09:24:11 -0800698#endif /* !defined(_WIN32) */
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800699}
700
Elliott Hughes3bd73c12015-05-05 13:10:43 -0700701static bool wait_for_device(const char* service, TransportType t, const char* serial) {
Elliott Hughes2b101112015-05-04 19:29:32 -0700702 // Was the caller vague about what they'd like us to wait for?
703 // If so, check they weren't more specific in their choice of transport type.
704 if (strcmp(service, "wait-for-device") == 0) {
705 if (t == kTransportUsb) {
706 service = "wait-for-usb";
707 } else if (t == kTransportLocal) {
708 service = "wait-for-local";
709 } else {
710 service = "wait-for-any";
711 }
712 }
713
714 std::string cmd = format_host_command(service, t, serial);
Elliott Hughes424af022015-05-29 17:55:19 -0700715 return adb_command(cmd);
Elliott Hughes2b101112015-05-04 19:29:32 -0700716}
717
Elliott Hughes3bd73c12015-05-05 13:10:43 -0700718static int send_shell_command(TransportType transport_type, const char* serial,
Elliott Hughes2baae3a2015-04-17 10:59:34 -0700719 const std::string& command) {
720 int fd;
721 while (true) {
Elliott Hughes078f0fc2015-04-29 08:35:59 -0700722 std::string error;
Elliott Hughes6452a892015-04-29 12:28:13 -0700723 fd = adb_connect(command, &error);
Elliott Hughes078f0fc2015-04-29 08:35:59 -0700724 if (fd >= 0) {
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800725 break;
Elliott Hughes078f0fc2015-04-29 08:35:59 -0700726 }
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800727 fprintf(stderr,"- waiting for device -\n");
728 adb_sleep_ms(1000);
Elliott Hughes2b101112015-05-04 19:29:32 -0700729 wait_for_device("wait-for-device", transport_type, serial);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800730 }
731
732 read_and_dump(fd);
Elliott Hughes2baae3a2015-04-17 10:59:34 -0700733 int rc = adb_close(fd);
734 if (rc) {
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800735 perror("close");
Elliott Hughes2baae3a2015-04-17 10:59:34 -0700736 }
737 return rc;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800738}
739
Elliott Hughes3bd73c12015-05-05 13:10:43 -0700740static int logcat(TransportType transport, const char* serial, int argc, const char** argv) {
Elliott Hughes2baae3a2015-04-17 10:59:34 -0700741 char* log_tags = getenv("ANDROID_LOG_TAGS");
742 std::string quoted = escape_arg(log_tags == nullptr ? "" : log_tags);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800743
Elliott Hughes2baae3a2015-04-17 10:59:34 -0700744 std::string cmd = "shell:export ANDROID_LOG_TAGS=\"" + quoted + "\"; exec logcat";
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800745
Jeff Sharkeyfd546e82014-06-10 11:31:24 -0700746 if (!strcmp(argv[0], "longcat")) {
Elliott Hughes2baae3a2015-04-17 10:59:34 -0700747 cmd += " -v long";
Christopher Tatedb0a8802011-11-30 13:00:33 -0800748 }
749
Elliott Hughes6c34bba2015-04-17 20:11:08 -0700750 --argc;
751 ++argv;
Elliott Hughes2baae3a2015-04-17 10:59:34 -0700752 while (argc-- > 0) {
Elliott Hughes6c34bba2015-04-17 20:11:08 -0700753 cmd += " " + escape_arg(*argv++);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800754 }
755
Elliott Hughes15551472015-04-21 17:58:55 -0700756 return send_shell_command(transport, serial, cmd);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800757}
758
Dan Albertbac34742015-02-25 17:51:28 -0800759static int backup(int argc, const char** argv) {
Elliott Hughes6c34bba2015-04-17 20:11:08 -0700760 const char* filename = "./backup.ab";
Christopher Tated2f54152011-04-21 12:53:28 -0700761
Christopher Tatec9cd3b92011-06-01 17:56:23 -0700762 /* find, extract, and use any -f argument */
Elliott Hughes6c34bba2015-04-17 20:11:08 -0700763 for (int i = 1; i < argc; i++) {
Christopher Tatec9cd3b92011-06-01 17:56:23 -0700764 if (!strcmp("-f", argv[i])) {
765 if (i == argc-1) {
766 fprintf(stderr, "adb: -f passed with no filename\n");
767 return usage();
768 }
769 filename = argv[i+1];
Elliott Hughes6c34bba2015-04-17 20:11:08 -0700770 for (int j = i+2; j <= argc; ) {
Christopher Tatec9cd3b92011-06-01 17:56:23 -0700771 argv[i++] = argv[j++];
772 }
773 argc -= 2;
774 argv[argc] = NULL;
775 }
Christopher Tated2f54152011-04-21 12:53:28 -0700776 }
777
Christopher Tatebb86bc52011-08-22 17:12:08 -0700778 /* bare "adb backup" or "adb backup -f filename" are not valid invocations */
779 if (argc < 2) return usage();
780
Christopher Tateb1dfffe2011-12-08 19:04:34 -0800781 adb_unlink(filename);
Mark Salyzyn60299df2014-04-30 09:10:31 -0700782 mkdirs(filename);
Elliott Hughes6c34bba2015-04-17 20:11:08 -0700783 int outFd = adb_creat(filename, 0640);
Christopher Tated2f54152011-04-21 12:53:28 -0700784 if (outFd < 0) {
785 fprintf(stderr, "adb: unable to open file %s\n", filename);
786 return -1;
787 }
788
Elliott Hughes6c34bba2015-04-17 20:11:08 -0700789 std::string cmd = "backup:";
790 --argc;
791 ++argv;
792 while (argc-- > 0) {
793 cmd += " " + escape_arg(*argv++);
Christopher Tated2f54152011-04-21 12:53:28 -0700794 }
795
Elliott Hughes6c34bba2015-04-17 20:11:08 -0700796 D("backup. filename=%s cmd=%s\n", filename, cmd.c_str());
Elliott Hughes078f0fc2015-04-29 08:35:59 -0700797 std::string error;
Elliott Hughes6452a892015-04-29 12:28:13 -0700798 int fd = adb_connect(cmd, &error);
Christopher Tated2f54152011-04-21 12:53:28 -0700799 if (fd < 0) {
Elliott Hughes078f0fc2015-04-29 08:35:59 -0700800 fprintf(stderr, "adb: unable to connect for backup: %s\n", error.c_str());
Christopher Tated2f54152011-04-21 12:53:28 -0700801 adb_close(outFd);
802 return -1;
803 }
804
Christopher Tatebffa4ca2012-01-06 15:43:03 -0800805 printf("Now unlock your device and confirm the backup operation.\n");
Christopher Tated2f54152011-04-21 12:53:28 -0700806 copy_to_file(fd, outFd);
807
808 adb_close(fd);
809 adb_close(outFd);
810 return 0;
811}
812
Dan Albertbac34742015-02-25 17:51:28 -0800813static int restore(int argc, const char** argv) {
Christopher Tate702967a2011-05-17 15:52:54 -0700814 if (argc != 2) return usage();
815
Elliott Hughes078f0fc2015-04-29 08:35:59 -0700816 const char* filename = argv[1];
817 int tarFd = adb_open(filename, O_RDONLY);
Christopher Tate702967a2011-05-17 15:52:54 -0700818 if (tarFd < 0) {
Elliott Hughes078f0fc2015-04-29 08:35:59 -0700819 fprintf(stderr, "adb: unable to open file %s: %s\n", filename, strerror(errno));
Christopher Tate702967a2011-05-17 15:52:54 -0700820 return -1;
821 }
822
Elliott Hughes078f0fc2015-04-29 08:35:59 -0700823 std::string error;
824 int fd = adb_connect("restore:", &error);
Christopher Tate702967a2011-05-17 15:52:54 -0700825 if (fd < 0) {
Elliott Hughes078f0fc2015-04-29 08:35:59 -0700826 fprintf(stderr, "adb: unable to connect for restore: %s\n", error.c_str());
Christopher Tate702967a2011-05-17 15:52:54 -0700827 adb_close(tarFd);
828 return -1;
829 }
830
Christopher Tatebffa4ca2012-01-06 15:43:03 -0800831 printf("Now unlock your device and confirm the restore operation.\n");
Christopher Tate702967a2011-05-17 15:52:54 -0700832 copy_to_file(tarFd, fd);
833
834 adb_close(fd);
835 adb_close(tarFd);
836 return 0;
837}
838
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800839/* <hint> may be:
840 * - A simple product name
841 * e.g., "sooner"
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800842 * - A relative path from the CWD to the ANDROID_PRODUCT_OUT dir
843 * e.g., "out/target/product/sooner"
844 * - An absolute path to the PRODUCT_OUT dir
845 * e.g., "/src/device/out/target/product/sooner"
846 *
847 * Given <hint>, try to construct an absolute path to the
848 * ANDROID_PRODUCT_OUT dir.
849 */
Elliott Hughes5c742702015-07-30 17:42:01 -0700850static std::string find_product_out_path(const std::string& hint) {
851 if (hint.empty()) {
Elliott Hughes58305772015-04-17 13:57:15 -0700852 return "";
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800853 }
854
Elliott Hughes58305772015-04-17 13:57:15 -0700855 // If it's already absolute, don't bother doing any work.
Elliott Hughes5c742702015-07-30 17:42:01 -0700856 if (adb_is_absolute_host_path(hint.c_str())) {
Elliott Hughes58305772015-04-17 13:57:15 -0700857 return hint;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800858 }
859
Elliott Hughes58305772015-04-17 13:57:15 -0700860 // If there are any slashes in it, assume it's a relative path;
861 // make it absolute.
Elliott Hughes5c742702015-07-30 17:42:01 -0700862 if (hint.find_first_of(OS_PATH_SEPARATORS) != std::string::npos) {
Elliott Hughesa7090b92015-04-17 17:03:59 -0700863 std::string cwd;
864 if (!getcwd(&cwd)) {
865 fprintf(stderr, "adb: getcwd failed: %s\n", strerror(errno));
Elliott Hughes58305772015-04-17 13:57:15 -0700866 return "";
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800867 }
Elliott Hughes5c742702015-07-30 17:42:01 -0700868 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 -0800869 }
870
Elliott Hughes58305772015-04-17 13:57:15 -0700871 // It's a string without any slashes. Try to do something with it.
872 //
873 // Try to find the root of the build tree, and build a PRODUCT_OUT
874 // path from there.
Elliott Hughesa7090b92015-04-17 17:03:59 -0700875 char* top = getenv("ANDROID_BUILD_TOP");
Elliott Hughes58305772015-04-17 13:57:15 -0700876 if (top == nullptr) {
Elliott Hughesa7090b92015-04-17 17:03:59 -0700877 fprintf(stderr, "adb: ANDROID_BUILD_TOP not set!\n");
Elliott Hughes58305772015-04-17 13:57:15 -0700878 return "";
879 }
Elliott Hughesa7090b92015-04-17 17:03:59 -0700880
881 std::string path = top;
Elliott Hughes58305772015-04-17 13:57:15 -0700882 path += OS_PATH_SEPARATOR_STR;
883 path += "out";
884 path += OS_PATH_SEPARATOR_STR;
885 path += "target";
886 path += OS_PATH_SEPARATOR_STR;
887 path += "product";
888 path += OS_PATH_SEPARATOR_STR;
889 path += hint;
890 if (!directory_exists(path)) {
891 fprintf(stderr, "adb: Couldn't find a product dir based on -p %s; "
Elliott Hughes5c742702015-07-30 17:42:01 -0700892 "\"%s\" doesn't exist\n", hint.c_str(), path.c_str());
Elliott Hughesa7090b92015-04-17 17:03:59 -0700893 return "";
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800894 }
Elliott Hughes58305772015-04-17 13:57:15 -0700895 return path;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800896}
897
Dan Albertbac34742015-02-25 17:51:28 -0800898static void parse_push_pull_args(const char **arg, int narg, char const **path1,
899 char const **path2, int *show_progress,
900 int *copy_attrs) {
Mark Lindner76f2a932014-03-11 17:55:59 -0700901 *show_progress = 0;
Lajos Molnarde8ff4a2013-04-19 12:41:09 -0700902 *copy_attrs = 0;
Mark Lindner76f2a932014-03-11 17:55:59 -0700903
Lajos Molnarde8ff4a2013-04-19 12:41:09 -0700904 while (narg > 0) {
905 if (!strcmp(*arg, "-p")) {
906 *show_progress = 1;
907 } else if (!strcmp(*arg, "-a")) {
908 *copy_attrs = 1;
909 } else {
910 break;
911 }
Mark Lindner76f2a932014-03-11 17:55:59 -0700912 ++arg;
913 --narg;
914 }
915
916 if (narg > 0) {
917 *path1 = *arg;
918 ++arg;
919 --narg;
920 }
921
922 if (narg > 0) {
923 *path2 = *arg;
924 }
925}
926
Elliott Hughes6452a892015-04-29 12:28:13 -0700927static int adb_connect_command(const std::string& command) {
Elliott Hughes078f0fc2015-04-29 08:35:59 -0700928 std::string error;
929 int fd = adb_connect(command, &error);
Elliott Hughes5677c232015-05-07 23:37:40 -0700930 if (fd < 0) {
931 fprintf(stderr, "error: %s\n", error.c_str());
932 return 1;
Tao Bao175b7bb2015-03-29 11:22:34 -0700933 }
Elliott Hughes5677c232015-05-07 23:37:40 -0700934 read_and_dump(fd);
935 adb_close(fd);
936 return 0;
Tao Bao175b7bb2015-03-29 11:22:34 -0700937}
938
Elliott Hughes6452a892015-04-29 12:28:13 -0700939static int adb_query_command(const std::string& command) {
940 std::string result;
941 std::string error;
942 if (!adb_query(command, &result, &error)) {
943 fprintf(stderr, "error: %s\n", error.c_str());
944 return 1;
945 }
946 printf("%s\n", result.c_str());
947 return 0;
948}
949
Elliott Hughesab52c182015-05-01 17:04:38 -0700950int adb_commandline(int argc, const char **argv) {
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800951 int no_daemon = 0;
952 int is_daemon = 0;
David 'Digit' Turner305b4b02011-01-31 14:23:56 +0100953 int is_server = 0;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800954 int r;
Elliott Hughes3bd73c12015-05-05 13:10:43 -0700955 TransportType transport_type = kTransportAny;
Siva Velusamy9f2d1a92015-08-07 10:10:29 -0700956 int ack_reply_fd = -1;
Siva Velusamy9f2d1a92015-08-07 10:10:29 -0700957
Elliott Hughes58305772015-04-17 13:57:15 -0700958 // If defined, this should be an absolute path to
959 // the directory containing all of the various system images
960 // for a particular product. If not defined, and the adb
961 // command requires this information, then the user must
962 // specify the path using "-p".
963 char* ANDROID_PRODUCT_OUT = getenv("ANDROID_PRODUCT_OUT");
964 if (ANDROID_PRODUCT_OUT != nullptr) {
965 gProductOutPath = ANDROID_PRODUCT_OUT;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800966 }
967 // TODO: also try TARGET_PRODUCT/TARGET_DEVICE as a hint
968
Elliott Hughes3bd73c12015-05-05 13:10:43 -0700969 const char* serial = getenv("ANDROID_SERIAL");
Nick Pellydb449262009-05-07 12:48:03 -0700970
Stefan Hilzingera84a42e2010-04-19 12:21:12 +0100971 /* Validate and assign the server port */
Elliott Hughes3bd73c12015-05-05 13:10:43 -0700972 const char* server_port_str = getenv("ANDROID_ADB_SERVER_PORT");
Stefan Hilzingera84a42e2010-04-19 12:21:12 +0100973 int server_port = DEFAULT_ADB_PORT;
974 if (server_port_str && strlen(server_port_str) > 0) {
Siva Velusamy9f2d1a92015-08-07 10:10:29 -0700975 server_port = strtol(server_port_str, nullptr, 0);
Matt Gumbeld7b33082012-11-14 10:16:17 -0800976 if (server_port <= 0 || server_port > 65535) {
Stefan Hilzingera84a42e2010-04-19 12:21:12 +0100977 fprintf(stderr,
Matt Gumbeld7b33082012-11-14 10:16:17 -0800978 "adb: Env var ANDROID_ADB_SERVER_PORT must be a positive number less than 65535. Got \"%s\"\n",
Stefan Hilzingera84a42e2010-04-19 12:21:12 +0100979 server_port_str);
980 return usage();
981 }
982 }
983
984 /* modifiers and flags */
Riley Andrews98f58e82014-12-05 17:37:24 -0800985 while (argc > 0) {
986 if (!strcmp(argv[0],"server")) {
David 'Digit' Turner305b4b02011-01-31 14:23:56 +0100987 is_server = 1;
Riley Andrews98f58e82014-12-05 17:37:24 -0800988 } else if (!strcmp(argv[0],"nodaemon")) {
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800989 no_daemon = 1;
990 } else if (!strcmp(argv[0], "fork-server")) {
991 /* this is a special flag used only when the ADB client launches the ADB Server */
992 is_daemon = 1;
Siva Velusamy9f2d1a92015-08-07 10:10:29 -0700993 } else if (!strcmp(argv[0], "--reply-fd")) {
994 if (argc < 2) return usage();
995 const char* reply_fd_str = argv[1];
996 argc--;
997 argv++;
998 ack_reply_fd = strtol(reply_fd_str, nullptr, 10);
Spencer Low5c398d22015-08-08 15:07:07 -0700999#ifdef _WIN32
1000 const HANDLE ack_reply_handle = cast_int_to_handle(ack_reply_fd);
1001 if ((GetStdHandle(STD_INPUT_HANDLE) == ack_reply_handle) ||
1002 (GetStdHandle(STD_OUTPUT_HANDLE) == ack_reply_handle) ||
1003 (GetStdHandle(STD_ERROR_HANDLE) == ack_reply_handle)) {
1004#else
Siva Velusamy9f2d1a92015-08-07 10:10:29 -07001005 if (ack_reply_fd <= 2) { // Disallow stdin, stdout, and stderr.
Spencer Low5c398d22015-08-08 15:07:07 -07001006#endif
Siva Velusamy9f2d1a92015-08-07 10:10:29 -07001007 fprintf(stderr, "adb: invalid reply fd \"%s\"\n", reply_fd_str);
1008 return usage();
1009 }
Riley Andrews98f58e82014-12-05 17:37:24 -08001010 } else if (!strncmp(argv[0], "-p", 2)) {
Elliott Hughes048b27c2015-07-31 13:18:22 -07001011 const char* product = nullptr;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001012 if (argv[0][2] == '\0') {
1013 if (argc < 2) return usage();
1014 product = argv[1];
1015 argc--;
1016 argv++;
1017 } else {
Vairavan Srinivasan81273232012-08-04 16:40:50 -07001018 product = argv[0] + 2;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001019 }
Elliott Hughes048b27c2015-07-31 13:18:22 -07001020 gProductOutPath = find_product_out_path(product);
Elliott Hughes58305772015-04-17 13:57:15 -07001021 if (gProductOutPath.empty()) {
1022 fprintf(stderr, "adb: could not resolve \"-p %s\"\n", product);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001023 return usage();
1024 }
1025 } else if (argv[0][0]=='-' && argv[0][1]=='s') {
1026 if (isdigit(argv[0][2])) {
1027 serial = argv[0] + 2;
1028 } else {
Riley Andrews98f58e82014-12-05 17:37:24 -08001029 if (argc < 2 || argv[0][2] != '\0') return usage();
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001030 serial = argv[1];
1031 argc--;
1032 argv++;
1033 }
1034 } else if (!strcmp(argv[0],"-d")) {
Elliott Hughes3bd73c12015-05-05 13:10:43 -07001035 transport_type = kTransportUsb;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001036 } else if (!strcmp(argv[0],"-e")) {
Elliott Hughes3bd73c12015-05-05 13:10:43 -07001037 transport_type = kTransportLocal;
Matt Gumbeld7b33082012-11-14 10:16:17 -08001038 } else if (!strcmp(argv[0],"-a")) {
1039 gListenAll = 1;
Riley Andrews98f58e82014-12-05 17:37:24 -08001040 } else if (!strncmp(argv[0], "-H", 2)) {
Matt Gumbeld7b33082012-11-14 10:16:17 -08001041 const char *hostname = NULL;
1042 if (argv[0][2] == '\0') {
1043 if (argc < 2) return usage();
1044 hostname = argv[1];
1045 argc--;
1046 argv++;
1047 } else {
1048 hostname = argv[0] + 2;
1049 }
1050 adb_set_tcp_name(hostname);
1051
Riley Andrews98f58e82014-12-05 17:37:24 -08001052 } else if (!strncmp(argv[0], "-P", 2)) {
Matt Gumbeld7b33082012-11-14 10:16:17 -08001053 if (argv[0][2] == '\0') {
1054 if (argc < 2) return usage();
1055 server_port_str = argv[1];
1056 argc--;
1057 argv++;
1058 } else {
1059 server_port_str = argv[0] + 2;
1060 }
1061 if (strlen(server_port_str) > 0) {
1062 server_port = (int) strtol(server_port_str, NULL, 0);
1063 if (server_port <= 0 || server_port > 65535) {
1064 fprintf(stderr,
1065 "adb: port number must be a positive number less than 65536. Got \"%s\"\n",
1066 server_port_str);
1067 return usage();
1068 }
1069 } else {
1070 fprintf(stderr,
1071 "adb: port number must be a positive number less than 65536. Got empty string.\n");
1072 return usage();
1073 }
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001074 } else {
1075 /* out of recognized modifiers and flags */
1076 break;
1077 }
1078 argc--;
1079 argv++;
1080 }
1081
Elliott Hughes3bd73c12015-05-05 13:10:43 -07001082 adb_set_transport(transport_type, serial);
Stefan Hilzingera84a42e2010-04-19 12:21:12 +01001083 adb_set_tcp_specifics(server_port);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001084
David 'Digit' Turner305b4b02011-01-31 14:23:56 +01001085 if (is_server) {
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001086 if (no_daemon || is_daemon) {
Spencer Low5c398d22015-08-08 15:07:07 -07001087 if (is_daemon && (ack_reply_fd == -1)) {
Siva Velusamy9f2d1a92015-08-07 10:10:29 -07001088 fprintf(stderr, "reply fd for adb server to client communication not specified.\n");
1089 return usage();
1090 }
1091 r = adb_main(is_daemon, server_port, ack_reply_fd);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001092 } else {
Stefan Hilzingera84a42e2010-04-19 12:21:12 +01001093 r = launch_server(server_port);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001094 }
Riley Andrews98f58e82014-12-05 17:37:24 -08001095 if (r) {
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001096 fprintf(stderr,"* could not start server *\n");
1097 }
1098 return r;
1099 }
1100
Riley Andrews98f58e82014-12-05 17:37:24 -08001101 if (argc == 0) {
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001102 return usage();
1103 }
1104
Riley Andrewsc8514c82014-12-05 17:32:46 -08001105 /* handle wait-for-* prefix */
1106 if (!strncmp(argv[0], "wait-for-", strlen("wait-for-"))) {
Dan Albertbac34742015-02-25 17:51:28 -08001107 const char* service = argv[0];
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001108
Elliott Hughes3bd73c12015-05-05 13:10:43 -07001109 if (!wait_for_device(service, transport_type, serial)) {
Riley Andrewsc8514c82014-12-05 17:32:46 -08001110 return 1;
1111 }
1112
Elliott Hughes2b101112015-05-04 19:29:32 -07001113 // Allow a command to be run after wait-for-device,
1114 // e.g. 'adb wait-for-device shell'.
Riley Andrewsc8514c82014-12-05 17:32:46 -08001115 if (argc == 1) {
1116 return 0;
1117 }
1118
1119 /* Fall through */
1120 argc--;
1121 argv++;
1122 }
1123
1124 /* adb_connect() commands */
Riley Andrews98f58e82014-12-05 17:37:24 -08001125 if (!strcmp(argv[0], "devices")) {
Dan Albertbac34742015-02-25 17:51:28 -08001126 const char *listopt;
Elliott Hughes6452a892015-04-29 12:28:13 -07001127 if (argc < 2) {
Scott Andersone109d262012-04-20 11:21:14 -07001128 listopt = "";
Elliott Hughes6452a892015-04-29 12:28:13 -07001129 } else if (argc == 2 && !strcmp(argv[1], "-l")) {
Scott Andersone109d262012-04-20 11:21:14 -07001130 listopt = argv[1];
Elliott Hughes6452a892015-04-29 12:28:13 -07001131 } else {
Scott Andersone109d262012-04-20 11:21:14 -07001132 fprintf(stderr, "Usage: adb devices [-l]\n");
1133 return 1;
1134 }
Elliott Hughes6452a892015-04-29 12:28:13 -07001135
1136 std::string query = android::base::StringPrintf("host:%s%s", argv[0], listopt);
1137 printf("List of devices attached\n");
1138 return adb_query_command(query);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001139 }
Riley Andrewsc8514c82014-12-05 17:32:46 -08001140 else if (!strcmp(argv[0], "connect")) {
Mike Lockwoodff196702009-08-24 15:58:40 -07001141 if (argc != 2) {
Mike Lockwoodcbbe79ad2010-05-24 10:44:35 -04001142 fprintf(stderr, "Usage: adb connect <host>[:<port>]\n");
Mike Lockwoodff196702009-08-24 15:58:40 -07001143 return 1;
1144 }
Elliott Hughes6452a892015-04-29 12:28:13 -07001145
1146 std::string query = android::base::StringPrintf("host:connect:%s", argv[1]);
1147 return adb_query_command(query);
Mike Lockwoodcbbe79ad2010-05-24 10:44:35 -04001148 }
Riley Andrewsc8514c82014-12-05 17:32:46 -08001149 else if (!strcmp(argv[0], "disconnect")) {
Mike Lockwoodcbbe79ad2010-05-24 10:44:35 -04001150 if (argc > 2) {
1151 fprintf(stderr, "Usage: adb disconnect [<host>[:<port>]]\n");
1152 return 1;
1153 }
Elliott Hughes6452a892015-04-29 12:28:13 -07001154
1155 std::string query = android::base::StringPrintf("host:disconnect:%s",
1156 (argc == 2) ? argv[1] : "");
1157 return adb_query_command(query);
Mike Lockwoodff196702009-08-24 15:58:40 -07001158 }
Riley Andrewsc8514c82014-12-05 17:32:46 -08001159 else if (!strcmp(argv[0], "emu")) {
Spencer Low142ec752015-05-06 16:13:42 -07001160 return adb_send_emulator_command(argc, argv, serial);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001161 }
Riley Andrewsc8514c82014-12-05 17:32:46 -08001162 else if (!strcmp(argv[0], "shell") || !strcmp(argv[0], "hell")) {
Daniel Sandlerff91ab82010-08-19 01:10:18 -04001163 char h = (argv[0][0] == 'h');
1164
1165 if (h) {
1166 printf("\x1b[41;33m");
1167 fflush(stdout);
1168 }
1169
Riley Andrews98f58e82014-12-05 17:37:24 -08001170 if (argc < 2) {
JP Abgrall408fa572011-03-16 15:57:42 -07001171 D("starting interactive shell\n");
Daniel Sandlerff91ab82010-08-19 01:10:18 -04001172 r = interactive_shell();
1173 if (h) {
1174 printf("\x1b[0m");
1175 fflush(stdout);
1176 }
1177 return r;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001178 }
1179
Elliott Hughes2baae3a2015-04-17 10:59:34 -07001180 std::string cmd = "shell:";
Elliott Hughes2b101112015-05-04 19:29:32 -07001181 --argc;
1182 ++argv;
Jeff Sharkey5d9d4342014-05-26 18:30:43 -07001183 while (argc-- > 0) {
Elliott Hughes2b101112015-05-04 19:29:32 -07001184 // We don't escape here, just like ssh(1). http://b/20564385.
1185 cmd += *argv++;
1186 if (*argv) cmd += " ";
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001187 }
1188
Elliott Hughes2baae3a2015-04-17 10:59:34 -07001189 while (true) {
1190 D("interactive shell loop. cmd=%s\n", cmd.c_str());
Elliott Hughes078f0fc2015-04-29 08:35:59 -07001191 std::string error;
Elliott Hughes6452a892015-04-29 12:28:13 -07001192 int fd = adb_connect(cmd, &error);
Elliott Hughes2baae3a2015-04-17 10:59:34 -07001193 int r;
Riley Andrews98f58e82014-12-05 17:37:24 -08001194 if (fd >= 0) {
JP Abgrall408fa572011-03-16 15:57:42 -07001195 D("about to read_and_dump(fd=%d)\n", fd);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001196 read_and_dump(fd);
JP Abgrall408fa572011-03-16 15:57:42 -07001197 D("read_and_dump() done.\n");
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001198 adb_close(fd);
1199 r = 0;
1200 } else {
Elliott Hughes078f0fc2015-04-29 08:35:59 -07001201 fprintf(stderr,"error: %s\n", error.c_str());
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001202 r = -1;
1203 }
1204
Elliott Hughes32687be2015-05-05 12:50:26 -07001205 if (h) {
1206 printf("\x1b[0m");
1207 fflush(stdout);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001208 }
Elliott Hughes32687be2015-05-05 12:50:26 -07001209 D("interactive shell loop. return r=%d\n", r);
1210 return r;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001211 }
1212 }
Riley Andrewsc8514c82014-12-05 17:32:46 -08001213 else if (!strcmp(argv[0], "exec-in") || !strcmp(argv[0], "exec-out")) {
Jeff Sharkey5d9d4342014-05-26 18:30:43 -07001214 int exec_in = !strcmp(argv[0], "exec-in");
Jeff Sharkey5d9d4342014-05-26 18:30:43 -07001215
Elliott Hughes2baae3a2015-04-17 10:59:34 -07001216 std::string cmd = "exec:";
1217 cmd += argv[1];
Jeff Sharkey5d9d4342014-05-26 18:30:43 -07001218 argc -= 2;
1219 argv += 2;
1220 while (argc-- > 0) {
Elliott Hughes6c34bba2015-04-17 20:11:08 -07001221 cmd += " " + escape_arg(*argv++);
Jeff Sharkey5d9d4342014-05-26 18:30:43 -07001222 }
1223
Elliott Hughes078f0fc2015-04-29 08:35:59 -07001224 std::string error;
Elliott Hughes6452a892015-04-29 12:28:13 -07001225 int fd = adb_connect(cmd, &error);
Jeff Sharkey5d9d4342014-05-26 18:30:43 -07001226 if (fd < 0) {
Elliott Hughes078f0fc2015-04-29 08:35:59 -07001227 fprintf(stderr, "error: %s\n", error.c_str());
Jeff Sharkey5d9d4342014-05-26 18:30:43 -07001228 return -1;
1229 }
1230
1231 if (exec_in) {
1232 copy_to_file(STDIN_FILENO, fd);
1233 } else {
1234 copy_to_file(fd, STDOUT_FILENO);
1235 }
1236
1237 adb_close(fd);
1238 return 0;
1239 }
Riley Andrewsc8514c82014-12-05 17:32:46 -08001240 else if (!strcmp(argv[0], "kill-server")) {
Elliott Hughes078f0fc2015-04-29 08:35:59 -07001241 std::string error;
1242 int fd = _adb_connect("host:kill", &error);
Riley Andrews98f58e82014-12-05 17:37:24 -08001243 if (fd == -1) {
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001244 fprintf(stderr,"* server not running *\n");
1245 return 1;
1246 }
1247 return 0;
1248 }
Riley Andrewsc8514c82014-12-05 17:32:46 -08001249 else if (!strcmp(argv[0], "sideload")) {
1250 if (argc != 2) return usage();
Doug Zongker71fe5842014-06-26 15:35:36 -07001251 if (adb_sideload_host(argv[1])) {
Doug Zongker447f0612012-01-09 14:54:53 -08001252 return 1;
1253 } else {
1254 return 0;
1255 }
1256 }
Elliott Hughes19d80b82015-07-21 16:13:40 -07001257 else if (!strcmp(argv[0], "tcpip") && argc > 1) {
1258 return adb_connect_command(android::base::StringPrintf("tcpip:%s", argv[1]));
1259 }
Riley Andrewsc8514c82014-12-05 17:32:46 -08001260 else if (!strcmp(argv[0], "remount") ||
1261 !strcmp(argv[0], "reboot") ||
1262 !strcmp(argv[0], "reboot-bootloader") ||
Riley Andrewsc8514c82014-12-05 17:32:46 -08001263 !strcmp(argv[0], "usb") ||
1264 !strcmp(argv[0], "root") ||
Dan Pasanen98858812014-10-06 12:57:20 -05001265 !strcmp(argv[0], "unroot") ||
Riley Andrewsc8514c82014-12-05 17:32:46 -08001266 !strcmp(argv[0], "disable-verity") ||
1267 !strcmp(argv[0], "enable-verity")) {
Elliott Hughes5677c232015-05-07 23:37:40 -07001268 std::string command;
Tao Bao175b7bb2015-03-29 11:22:34 -07001269 if (!strcmp(argv[0], "reboot-bootloader")) {
Elliott Hughes5677c232015-05-07 23:37:40 -07001270 command = "reboot:bootloader";
Tao Bao175b7bb2015-03-29 11:22:34 -07001271 } else if (argc > 1) {
Elliott Hughes5677c232015-05-07 23:37:40 -07001272 command = android::base::StringPrintf("%s:%s", argv[0], argv[1]);
Tao Bao175b7bb2015-03-29 11:22:34 -07001273 } else {
Elliott Hughes5677c232015-05-07 23:37:40 -07001274 command = android::base::StringPrintf("%s:", argv[0]);
The Android Open Source Projecte037fd72009-03-13 13:04:37 -07001275 }
Tao Bao175b7bb2015-03-29 11:22:34 -07001276 return adb_connect_command(command);
The Android Open Source Projecte037fd72009-03-13 13:04:37 -07001277 }
Riley Andrewsc8514c82014-12-05 17:32:46 -08001278 else if (!strcmp(argv[0], "bugreport")) {
Dan Egnorc130ea72010-01-20 13:50:36 -08001279 if (argc != 1) return usage();
Elliott Hughes3bd73c12015-05-05 13:10:43 -07001280 return send_shell_command(transport_type, serial, "shell:bugreport");
Mike Lockwoodf56d1b52009-09-03 14:54:58 -04001281 }
Riley Andrewsc8514c82014-12-05 17:32:46 -08001282 else if (!strcmp(argv[0], "forward") || !strcmp(argv[0], "reverse")) {
Elliott Hughes424af022015-05-29 17:55:19 -07001283 bool reverse = !strcmp(argv[0], "reverse");
1284 ++argv;
1285 --argc;
1286 if (argc < 1) return usage();
David 'Digit' Turner0d82fbf2012-11-14 15:01:55 +01001287
1288 // Determine the <host-prefix> for this command.
Elliott Hughes424af022015-05-29 17:55:19 -07001289 std::string host_prefix;
David 'Digit' Turner25258692013-03-21 21:07:42 +01001290 if (reverse) {
Elliott Hughes424af022015-05-29 17:55:19 -07001291 host_prefix = "reverse";
David 'Digit' Turner0d82fbf2012-11-14 15:01:55 +01001292 } else {
David 'Digit' Turner25258692013-03-21 21:07:42 +01001293 if (serial) {
Elliott Hughes424af022015-05-29 17:55:19 -07001294 host_prefix = android::base::StringPrintf("host-serial:%s", serial);
Elliott Hughes3bd73c12015-05-05 13:10:43 -07001295 } else if (transport_type == kTransportUsb) {
Elliott Hughes424af022015-05-29 17:55:19 -07001296 host_prefix = "host-usb";
Elliott Hughes3bd73c12015-05-05 13:10:43 -07001297 } else if (transport_type == kTransportLocal) {
Elliott Hughes424af022015-05-29 17:55:19 -07001298 host_prefix = "host-local";
David 'Digit' Turner25258692013-03-21 21:07:42 +01001299 } else {
Elliott Hughes424af022015-05-29 17:55:19 -07001300 host_prefix = "host";
David 'Digit' Turner25258692013-03-21 21:07:42 +01001301 }
David 'Digit' Turner0d82fbf2012-11-14 15:01:55 +01001302 }
1303
Elliott Hughes424af022015-05-29 17:55:19 -07001304 std::string cmd;
1305 if (strcmp(argv[0], "--list") == 0) {
Elliott Hughesab52c182015-05-01 17:04:38 -07001306 if (argc != 1) return usage();
Elliott Hughes424af022015-05-29 17:55:19 -07001307 return adb_query_command(host_prefix + ":list-forward");
1308 } else if (strcmp(argv[0], "--remove-all") == 0) {
1309 if (argc != 1) return usage();
1310 cmd = host_prefix + ":killforward-all";
1311 } else if (strcmp(argv[0], "--remove") == 0) {
1312 // forward --remove <local>
Elliott Hughesab52c182015-05-01 17:04:38 -07001313 if (argc != 2) return usage();
Elliott Hughes424af022015-05-29 17:55:19 -07001314 cmd = host_prefix + ":killforward:" + argv[1];
1315 } else if (strcmp(argv[0], "--no-rebind") == 0) {
1316 // forward --no-rebind <local> <remote>
Elliott Hughesab52c182015-05-01 17:04:38 -07001317 if (argc != 3) return usage();
Elliott Hughes424af022015-05-29 17:55:19 -07001318 cmd = host_prefix + ":forward:norebind:" + argv[1] + ";" + argv[2];
1319 } else {
1320 // forward <local> <remote>
1321 if (argc != 2) return usage();
1322 cmd = host_prefix + ":forward:" + argv[0] + ";" + argv[1];
David 'Digit' Turner0d82fbf2012-11-14 15:01:55 +01001323 }
1324
Elliott Hughes424af022015-05-29 17:55:19 -07001325 return adb_command(cmd) ? 0 : 1;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001326 }
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001327 /* do_sync_*() commands */
Riley Andrewsc8514c82014-12-05 17:32:46 -08001328 else if (!strcmp(argv[0], "ls")) {
1329 if (argc != 2) return usage();
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001330 return do_sync_ls(argv[1]);
1331 }
Riley Andrewsc8514c82014-12-05 17:32:46 -08001332 else if (!strcmp(argv[0], "push")) {
Mark Lindner76f2a932014-03-11 17:55:59 -07001333 int show_progress = 0;
Lajos Molnarde8ff4a2013-04-19 12:41:09 -07001334 int copy_attrs = 0; // unused
Mark Lindner76f2a932014-03-11 17:55:59 -07001335 const char* lpath = NULL, *rpath = NULL;
1336
Lajos Molnarde8ff4a2013-04-19 12:41:09 -07001337 parse_push_pull_args(&argv[1], argc - 1, &lpath, &rpath, &show_progress, &copy_attrs);
Mark Lindner76f2a932014-03-11 17:55:59 -07001338
1339 if ((lpath != NULL) && (rpath != NULL)) {
Jeff Sharkey960df972014-06-09 17:30:57 -07001340 return do_sync_push(lpath, rpath, show_progress);
Mark Lindner76f2a932014-03-11 17:55:59 -07001341 }
1342
1343 return usage();
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001344 }
Riley Andrewsc8514c82014-12-05 17:32:46 -08001345 else if (!strcmp(argv[0], "pull")) {
Mark Lindner76f2a932014-03-11 17:55:59 -07001346 int show_progress = 0;
Lajos Molnarde8ff4a2013-04-19 12:41:09 -07001347 int copy_attrs = 0;
Mark Lindner76f2a932014-03-11 17:55:59 -07001348 const char* rpath = NULL, *lpath = ".";
1349
Lajos Molnarde8ff4a2013-04-19 12:41:09 -07001350 parse_push_pull_args(&argv[1], argc - 1, &rpath, &lpath, &show_progress, &copy_attrs);
Mark Lindner76f2a932014-03-11 17:55:59 -07001351
1352 if (rpath != NULL) {
Lajos Molnarde8ff4a2013-04-19 12:41:09 -07001353 return do_sync_pull(rpath, lpath, show_progress, copy_attrs);
Joe Onorato00c0eea2010-01-05 13:42:25 -08001354 }
Mark Lindner76f2a932014-03-11 17:55:59 -07001355
1356 return usage();
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001357 }
Riley Andrewsc8514c82014-12-05 17:32:46 -08001358 else if (!strcmp(argv[0], "install")) {
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001359 if (argc < 2) return usage();
Elliott Hughes3bd73c12015-05-05 13:10:43 -07001360 return install_app(transport_type, serial, argc, argv);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001361 }
Riley Andrewsc8514c82014-12-05 17:32:46 -08001362 else if (!strcmp(argv[0], "install-multiple")) {
Jeff Sharkey960df972014-06-09 17:30:57 -07001363 if (argc < 2) return usage();
Elliott Hughes3bd73c12015-05-05 13:10:43 -07001364 return install_multiple_app(transport_type, serial, argc, argv);
Jeff Sharkey960df972014-06-09 17:30:57 -07001365 }
Riley Andrewsc8514c82014-12-05 17:32:46 -08001366 else if (!strcmp(argv[0], "uninstall")) {
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001367 if (argc < 2) return usage();
Elliott Hughes3bd73c12015-05-05 13:10:43 -07001368 return uninstall_app(transport_type, serial, argc, argv);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001369 }
Riley Andrewsc8514c82014-12-05 17:32:46 -08001370 else if (!strcmp(argv[0], "sync")) {
Elliott Hughesd236d072015-04-21 10:17:07 -07001371 std::string src;
Elliott Hughes58305772015-04-17 13:57:15 -07001372 bool list_only = false;
Riley Andrews98f58e82014-12-05 17:37:24 -08001373 if (argc < 2) {
Elliott Hughes58305772015-04-17 13:57:15 -07001374 // No local path was specified.
Elliott Hughesd236d072015-04-21 10:17:07 -07001375 src = "";
Anthony Newnam705c9442010-02-22 08:36:49 -06001376 } else if (argc >= 2 && strcmp(argv[1], "-l") == 0) {
Elliott Hughesd236d072015-04-21 10:17:07 -07001377 list_only = true;
Anthony Newnam705c9442010-02-22 08:36:49 -06001378 if (argc == 3) {
Elliott Hughesd236d072015-04-21 10:17:07 -07001379 src = argv[2];
Anthony Newnam705c9442010-02-22 08:36:49 -06001380 } else {
Elliott Hughesd236d072015-04-21 10:17:07 -07001381 src = "";
Anthony Newnam705c9442010-02-22 08:36:49 -06001382 }
Riley Andrews98f58e82014-12-05 17:37:24 -08001383 } else if (argc == 2) {
Elliott Hughes58305772015-04-17 13:57:15 -07001384 // A local path or "android"/"data" arg was specified.
Elliott Hughesd236d072015-04-21 10:17:07 -07001385 src = argv[1];
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001386 } else {
1387 return usage();
1388 }
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001389
Elliott Hughesd236d072015-04-21 10:17:07 -07001390 if (src != "" &&
1391 src != "system" && src != "data" && src != "vendor" && src != "oem") {
Elliott Hughes58305772015-04-17 13:57:15 -07001392 return usage();
1393 }
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001394
Elliott Hughes58305772015-04-17 13:57:15 -07001395 std::string system_src_path = product_file("system");
1396 std::string data_src_path = product_file("data");
1397 std::string vendor_src_path = product_file("vendor");
1398 std::string oem_src_path = product_file("oem");
Elliott Hughes58305772015-04-17 13:57:15 -07001399
1400 int rc = 0;
Elliott Hughesd236d072015-04-21 10:17:07 -07001401 if (rc == 0 && (src.empty() || src == "system")) {
1402 rc = do_sync_sync(system_src_path, "/system", list_only);
Elliott Hughes58305772015-04-17 13:57:15 -07001403 }
Elliott Hughesd236d072015-04-21 10:17:07 -07001404 if (rc == 0 && (src.empty() || src == "vendor") && directory_exists(vendor_src_path)) {
1405 rc = do_sync_sync(vendor_src_path, "/vendor", list_only);
Elliott Hughes58305772015-04-17 13:57:15 -07001406 }
Elliott Hughesd236d072015-04-21 10:17:07 -07001407 if (rc == 0 && (src.empty() || src == "oem") && directory_exists(oem_src_path)) {
1408 rc = do_sync_sync(oem_src_path, "/oem", list_only);
Elliott Hughes58305772015-04-17 13:57:15 -07001409 }
Elliott Hughesd236d072015-04-21 10:17:07 -07001410 if (rc == 0 && (src.empty() || src == "data")) {
1411 rc = do_sync_sync(data_src_path, "/data", list_only);
Elliott Hughes58305772015-04-17 13:57:15 -07001412 }
1413 return rc;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001414 }
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001415 /* passthrough commands */
Riley Andrewsc8514c82014-12-05 17:32:46 -08001416 else if (!strcmp(argv[0],"get-state") ||
Scott Andersone109d262012-04-20 11:21:14 -07001417 !strcmp(argv[0],"get-serialno") ||
1418 !strcmp(argv[0],"get-devpath"))
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001419 {
Elliott Hughes3bd73c12015-05-05 13:10:43 -07001420 return adb_query_command(format_host_command(argv[0], transport_type, serial));
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001421 }
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001422 /* other commands */
Riley Andrewsc8514c82014-12-05 17:32:46 -08001423 else if (!strcmp(argv[0],"logcat") || !strcmp(argv[0],"lolcat") || !strcmp(argv[0],"longcat")) {
Elliott Hughes3bd73c12015-05-05 13:10:43 -07001424 return logcat(transport_type, serial, argc, argv);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001425 }
Riley Andrewsc8514c82014-12-05 17:32:46 -08001426 else if (!strcmp(argv[0],"ppp")) {
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001427 return ppp(argc, argv);
1428 }
Riley Andrewsc8514c82014-12-05 17:32:46 -08001429 else if (!strcmp(argv[0], "start-server")) {
Elliott Hughes078f0fc2015-04-29 08:35:59 -07001430 std::string error;
1431 return adb_connect("host:start-server", &error);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001432 }
Riley Andrewsc8514c82014-12-05 17:32:46 -08001433 else if (!strcmp(argv[0], "backup")) {
Christopher Tated2f54152011-04-21 12:53:28 -07001434 return backup(argc, argv);
1435 }
Riley Andrewsc8514c82014-12-05 17:32:46 -08001436 else if (!strcmp(argv[0], "restore")) {
Christopher Tate702967a2011-05-17 15:52:54 -07001437 return restore(argc, argv);
1438 }
Riley Andrewsc8514c82014-12-05 17:32:46 -08001439 else if (!strcmp(argv[0], "keygen")) {
Nick Kralevichbea3f9c2014-11-13 15:17:29 -08001440 if (argc < 2) return usage();
1441 return adb_auth_keygen(argv[1]);
1442 }
Riley Andrewsc8514c82014-12-05 17:32:46 -08001443 else if (!strcmp(argv[0], "jdwp")) {
Tao Bao175b7bb2015-03-29 11:22:34 -07001444 return adb_connect_command("jdwp");
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001445 }
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001446 /* "adb /?" is a common idiom under Windows */
Riley Andrewsc8514c82014-12-05 17:32:46 -08001447 else if (!strcmp(argv[0], "help") || !strcmp(argv[0], "/?")) {
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001448 help();
1449 return 0;
1450 }
Riley Andrewsc8514c82014-12-05 17:32:46 -08001451 else if (!strcmp(argv[0], "version")) {
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001452 version(stdout);
1453 return 0;
1454 }
1455
1456 usage();
1457 return 1;
1458}
1459
Elliott Hughes3bd73c12015-05-05 13:10:43 -07001460static int pm_command(TransportType transport, const char* serial, int argc, const char** argv) {
Elliott Hughes2baae3a2015-04-17 10:59:34 -07001461 std::string cmd = "shell:pm";
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001462
Elliott Hughes2baae3a2015-04-17 10:59:34 -07001463 while (argc-- > 0) {
Elliott Hughes6c34bba2015-04-17 20:11:08 -07001464 cmd += " " + escape_arg(*argv++);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001465 }
1466
Elliott Hughes15551472015-04-21 17:58:55 -07001467 return send_shell_command(transport, serial, cmd);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001468}
1469
Elliott Hughes3bd73c12015-05-05 13:10:43 -07001470static int uninstall_app(TransportType transport, const char* serial, int argc, const char** argv) {
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001471 /* if the user choose the -k option, we refuse to do it until devices are
1472 out with the option to uninstall the remaining data somehow (adb/ui) */
1473 if (argc == 3 && strcmp(argv[1], "-k") == 0)
1474 {
1475 printf(
1476 "The -k option uninstalls the application while retaining the data/cache.\n"
1477 "At the moment, there is no way to remove the remaining data.\n"
1478 "You will have to reinstall the application with the same signature, and fully uninstall it.\n"
1479 "If you truly wish to continue, execute 'adb shell pm uninstall -k %s'\n", argv[2]);
1480 return -1;
1481 }
1482
1483 /* 'adb uninstall' takes the same arguments as 'pm uninstall' on device */
1484 return pm_command(transport, serial, argc, argv);
1485}
1486
Elliott Hughes5c742702015-07-30 17:42:01 -07001487static int delete_file(TransportType transport, const char* serial, const std::string& filename) {
Elliott Hughes2baae3a2015-04-17 10:59:34 -07001488 std::string cmd = "shell:rm -f " + escape_arg(filename);
Elliott Hughes15551472015-04-21 17:58:55 -07001489 return send_shell_command(transport, serial, cmd);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001490}
1491
Elliott Hughes3bd73c12015-05-05 13:10:43 -07001492static int install_app(TransportType transport, const char* serial, int argc, const char** argv) {
Dan Albert286bb6d2015-07-09 20:35:09 +00001493 static const char *const DATA_DEST = "/data/local/tmp/%s";
1494 static const char *const SD_DEST = "/sdcard/tmp/%s";
Kenny Root597ea5b2011-08-05 11:19:45 -07001495 const char* where = DATA_DEST;
Kenny Root597ea5b2011-08-05 11:19:45 -07001496 int i;
Jeff Sharkey960df972014-06-09 17:30:57 -07001497 struct stat sb;
Kenny Root597ea5b2011-08-05 11:19:45 -07001498
1499 for (i = 1; i < argc; i++) {
Jeff Sharkey960df972014-06-09 17:30:57 -07001500 if (!strcmp(argv[i], "-s")) {
Kenny Root597ea5b2011-08-05 11:19:45 -07001501 where = SD_DEST;
1502 }
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001503 }
1504
Jeff Sharkey960df972014-06-09 17:30:57 -07001505 // Find last APK argument.
1506 // All other arguments passed through verbatim.
1507 int last_apk = -1;
1508 for (i = argc - 1; i >= 0; i--) {
Dan Albertbac34742015-02-25 17:51:28 -08001509 const char* file = argv[i];
Elliott Hughes3e7048c2015-07-27 21:21:39 -07001510 const char* dot = strrchr(file, '.');
Jeff Sharkey960df972014-06-09 17:30:57 -07001511 if (dot && !strcasecmp(dot, ".apk")) {
1512 if (stat(file, &sb) == -1 || !S_ISREG(sb.st_mode)) {
1513 fprintf(stderr, "Invalid APK file: %s\n", file);
1514 return -1;
1515 }
1516
1517 last_apk = i;
1518 break;
1519 }
Kenny Root597ea5b2011-08-05 11:19:45 -07001520 }
1521
Jeff Sharkey960df972014-06-09 17:30:57 -07001522 if (last_apk == -1) {
1523 fprintf(stderr, "Missing APK file\n");
1524 return -1;
Kenny Root597ea5b2011-08-05 11:19:45 -07001525 }
1526
Dan Albertbac34742015-02-25 17:51:28 -08001527 const char* apk_file = argv[last_apk];
Elliott Hughes5c742702015-07-30 17:42:01 -07001528 std::string apk_dest = android::base::StringPrintf(where, adb_basename(apk_file).c_str());
1529 int err = do_sync_push(apk_file, apk_dest.c_str(), 0 /* no show progress */);
Kenny Root597ea5b2011-08-05 11:19:45 -07001530 if (err) {
Kenny Root60733e92012-03-26 16:14:02 -07001531 goto cleanup_apk;
Kenny Root597ea5b2011-08-05 11:19:45 -07001532 } else {
Elliott Hughes5c742702015-07-30 17:42:01 -07001533 argv[last_apk] = apk_dest.c_str(); /* destination name, not source location */
Kenny Root597ea5b2011-08-05 11:19:45 -07001534 }
1535
Elliott Hughes15551472015-04-21 17:58:55 -07001536 err = pm_command(transport, serial, argc, argv);
Kenny Root597ea5b2011-08-05 11:19:45 -07001537
Kenny Root60733e92012-03-26 16:14:02 -07001538cleanup_apk:
Dan Albert286bb6d2015-07-09 20:35:09 +00001539 delete_file(transport, serial, apk_dest);
Jeff Sharkey960df972014-06-09 17:30:57 -07001540 return err;
1541}
1542
Elliott Hughes3bd73c12015-05-05 13:10:43 -07001543static int install_multiple_app(TransportType transport, const char* serial, int argc,
Elliott Hughes58305772015-04-17 13:57:15 -07001544 const char** argv)
Jeff Sharkey960df972014-06-09 17:30:57 -07001545{
Jeff Sharkey960df972014-06-09 17:30:57 -07001546 int i;
1547 struct stat sb;
Elliott Hughes2940ccf2015-04-17 14:07:52 -07001548 uint64_t total_size = 0;
Jeff Sharkey960df972014-06-09 17:30:57 -07001549
1550 // Find all APK arguments starting at end.
1551 // All other arguments passed through verbatim.
1552 int first_apk = -1;
1553 for (i = argc - 1; i >= 0; i--) {
Dan Albertbac34742015-02-25 17:51:28 -08001554 const char* file = argv[i];
Elliott Hughes3e7048c2015-07-27 21:21:39 -07001555 const char* dot = strrchr(file, '.');
Jeff Sharkey960df972014-06-09 17:30:57 -07001556 if (dot && !strcasecmp(dot, ".apk")) {
1557 if (stat(file, &sb) == -1 || !S_ISREG(sb.st_mode)) {
1558 fprintf(stderr, "Invalid APK file: %s\n", file);
1559 return -1;
1560 }
1561
1562 total_size += sb.st_size;
1563 first_apk = i;
1564 } else {
1565 break;
1566 }
Kenny Root597ea5b2011-08-05 11:19:45 -07001567 }
1568
Jeff Sharkey960df972014-06-09 17:30:57 -07001569 if (first_apk == -1) {
1570 fprintf(stderr, "Missing APK file\n");
1571 return 1;
1572 }
Kenny Root597ea5b2011-08-05 11:19:45 -07001573
Elliott Hughes2940ccf2015-04-17 14:07:52 -07001574 std::string cmd = android::base::StringPrintf("exec:pm install-create -S %" PRIu64, total_size);
Jeff Sharkey960df972014-06-09 17:30:57 -07001575 for (i = 1; i < first_apk; i++) {
Elliott Hughes6c34bba2015-04-17 20:11:08 -07001576 cmd += " " + escape_arg(argv[i]);
Jeff Sharkey960df972014-06-09 17:30:57 -07001577 }
1578
1579 // Create install session
Elliott Hughes078f0fc2015-04-29 08:35:59 -07001580 std::string error;
Elliott Hughes6452a892015-04-29 12:28:13 -07001581 int fd = adb_connect(cmd, &error);
Jeff Sharkey960df972014-06-09 17:30:57 -07001582 if (fd < 0) {
Elliott Hughes078f0fc2015-04-29 08:35:59 -07001583 fprintf(stderr, "Connect error for create: %s\n", error.c_str());
Jeff Sharkey960df972014-06-09 17:30:57 -07001584 return -1;
1585 }
Elliott Hughes2baae3a2015-04-17 10:59:34 -07001586 char buf[BUFSIZ];
Jeff Sharkey960df972014-06-09 17:30:57 -07001587 read_status_line(fd, buf, sizeof(buf));
1588 adb_close(fd);
1589
1590 int session_id = -1;
1591 if (!strncmp("Success", buf, 7)) {
1592 char* start = strrchr(buf, '[');
1593 char* end = strrchr(buf, ']');
1594 if (start && end) {
1595 *end = '\0';
1596 session_id = strtol(start + 1, NULL, 10);
1597 }
1598 }
1599 if (session_id < 0) {
1600 fprintf(stderr, "Failed to create session\n");
Christopher Tate71bbc672014-07-14 16:45:13 -07001601 fputs(buf, stderr);
Jeff Sharkey960df972014-06-09 17:30:57 -07001602 return -1;
1603 }
1604
1605 // Valid session, now stream the APKs
1606 int success = 1;
1607 for (i = first_apk; i < argc; i++) {
Dan Albertbac34742015-02-25 17:51:28 -08001608 const char* file = argv[i];
Jeff Sharkey960df972014-06-09 17:30:57 -07001609 if (stat(file, &sb) == -1) {
1610 fprintf(stderr, "Failed to stat %s\n", file);
1611 success = 0;
1612 goto finalize_session;
1613 }
1614
Elliott Hughes2940ccf2015-04-17 14:07:52 -07001615 std::string cmd = android::base::StringPrintf(
1616 "exec:pm install-write -S %" PRIu64 " %d %d_%s -",
Elliott Hughes5c742702015-07-30 17:42:01 -07001617 static_cast<uint64_t>(sb.st_size), session_id, i, adb_basename(file).c_str());
Jeff Sharkey960df972014-06-09 17:30:57 -07001618
1619 int localFd = adb_open(file, O_RDONLY);
1620 if (localFd < 0) {
Elliott Hughes078f0fc2015-04-29 08:35:59 -07001621 fprintf(stderr, "Failed to open %s: %s\n", file, strerror(errno));
Jeff Sharkey960df972014-06-09 17:30:57 -07001622 success = 0;
1623 goto finalize_session;
1624 }
1625
Elliott Hughes078f0fc2015-04-29 08:35:59 -07001626 std::string error;
Elliott Hughes6452a892015-04-29 12:28:13 -07001627 int remoteFd = adb_connect(cmd, &error);
Jeff Sharkey960df972014-06-09 17:30:57 -07001628 if (remoteFd < 0) {
Elliott Hughes078f0fc2015-04-29 08:35:59 -07001629 fprintf(stderr, "Connect error for write: %s\n", error.c_str());
Jeff Sharkey960df972014-06-09 17:30:57 -07001630 adb_close(localFd);
1631 success = 0;
1632 goto finalize_session;
1633 }
1634
1635 copy_to_file(localFd, remoteFd);
1636 read_status_line(remoteFd, buf, sizeof(buf));
1637
1638 adb_close(localFd);
1639 adb_close(remoteFd);
1640
1641 if (strncmp("Success", buf, 7)) {
1642 fprintf(stderr, "Failed to write %s\n", file);
Christopher Tate71bbc672014-07-14 16:45:13 -07001643 fputs(buf, stderr);
Jeff Sharkey960df972014-06-09 17:30:57 -07001644 success = 0;
1645 goto finalize_session;
1646 }
1647 }
1648
1649finalize_session:
Jeff Sharkeyac77e1f2014-07-25 09:58:25 -07001650 // Commit session if we streamed everything okay; otherwise abandon
Elliott Hughes6452a892015-04-29 12:28:13 -07001651 std::string service =
1652 android::base::StringPrintf("exec:pm install-%s %d",
1653 success ? "commit" : "abandon", session_id);
1654 fd = adb_connect(service, &error);
Jeff Sharkey960df972014-06-09 17:30:57 -07001655 if (fd < 0) {
Elliott Hughes078f0fc2015-04-29 08:35:59 -07001656 fprintf(stderr, "Connect error for finalize: %s\n", error.c_str());
Jeff Sharkey960df972014-06-09 17:30:57 -07001657 return -1;
1658 }
1659 read_status_line(fd, buf, sizeof(buf));
1660 adb_close(fd);
1661
1662 if (!strncmp("Success", buf, 7)) {
Christopher Tate71bbc672014-07-14 16:45:13 -07001663 fputs(buf, stderr);
Jeff Sharkey960df972014-06-09 17:30:57 -07001664 return 0;
1665 } else {
1666 fprintf(stderr, "Failed to finalize session\n");
Christopher Tate71bbc672014-07-14 16:45:13 -07001667 fputs(buf, stderr);
Jeff Sharkey960df972014-06-09 17:30:57 -07001668 return -1;
1669 }
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001670}