blob: 8d50f465af9b510d18095bb72badfd77c10b53f6 [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"
Jeff Sharkey960df972014-06-09 17:30:57 -0700140 " adb install [-lrtsd] <file>\n"
141 " adb install-multiple [-lrtsdp] <file...>\n"
Anonymous Coward4474ac42012-04-24 10:43:41 -0700142 " - push this package file to the device and install it\n"
Jeff Sharkey960df972014-06-09 17:30:57 -0700143 " (-l: forward lock application)\n"
144 " (-r: replace existing application)\n"
145 " (-t: allow test packages)\n"
146 " (-s: install application on sdcard)\n"
147 " (-d: allow version code downgrade)\n"
148 " (-p: partial application install)\n"
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800149 " adb uninstall [-k] <package> - remove this app package from the device\n"
150 " ('-k' means keep the data and cache directories)\n"
151 " adb bugreport - return all information from the device\n"
152 " that should be included in a bug report.\n"
153 "\n"
Christopher Tate0c06eb52013-03-06 16:40:52 -0800154 " adb backup [-f <file>] [-apk|-noapk] [-obb|-noobb] [-shared|-noshared] [-all] [-system|-nosystem] [<packages...>]\n"
Christopher Tate56885092011-10-03 18:27:01 -0700155 " - write an archive of the device's data to <file>.\n"
156 " If no -f option is supplied then the data is written\n"
157 " to \"backup.ab\" in the current directory.\n"
Christopher Tated2f54152011-04-21 12:53:28 -0700158 " (-apk|-noapk enable/disable backup of the .apks themselves\n"
Christopher Tatede034ec2011-08-09 17:05:29 -0700159 " in the archive; the default is noapk.)\n"
Christopher Tate0c06eb52013-03-06 16:40:52 -0800160 " (-obb|-noobb enable/disable backup of any installed apk expansion\n"
161 " (aka .obb) files associated with each application; the default\n"
162 " is noobb.)\n"
Christopher Tated2f54152011-04-21 12:53:28 -0700163 " (-shared|-noshared enable/disable backup of the device's\n"
164 " shared storage / SD card contents; the default is noshared.)\n"
165 " (-all means to back up all installed applications)\n"
Christopher Tate56885092011-10-03 18:27:01 -0700166 " (-system|-nosystem toggles whether -all automatically includes\n"
167 " system applications; the default is to include system apps)\n"
Christopher Tated2f54152011-04-21 12:53:28 -0700168 " (<packages...> is the list of applications to be backed up. If\n"
169 " the -all or -shared flags are passed, then the package\n"
Christopher Tate56885092011-10-03 18:27:01 -0700170 " list is optional. Applications explicitly given on the\n"
171 " command line will be included even if -nosystem would\n"
172 " ordinarily cause them to be omitted.)\n"
Christopher Tated2f54152011-04-21 12:53:28 -0700173 "\n"
Christopher Tatede034ec2011-08-09 17:05:29 -0700174 " adb restore <file> - restore device contents from the <file> backup archive\n"
Christopher Tate702967a2011-05-17 15:52:54 -0700175 "\n"
Paul Lawrence982089d2014-12-03 15:31:57 -0800176 " adb disable-verity - disable dm-verity checking on USERDEBUG builds\n"
177 " adb enable-verity - re-enable dm-verity checking on USERDEBUG builds\n"
Nick Kralevichbea3f9c2014-11-13 15:17:29 -0800178 " adb keygen <file> - generate adb public/private key. The private key is stored in <file>,\n"
179 " and the public key is stored in <file>.pub. Any existing files\n"
180 " are overwritten.\n"
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800181 " adb help - show this help message\n"
182 " adb version - show version num\n"
183 "\n"
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800184 "scripting:\n"
185 " adb wait-for-device - block until device is online\n"
186 " adb start-server - ensure that there is a server running\n"
187 " adb kill-server - kill the server if it is running\n"
188 " adb get-state - prints: offline | bootloader | device\n"
189 " adb get-serialno - prints: <serial-number>\n"
Scott Andersone109d262012-04-20 11:21:14 -0700190 " adb get-devpath - prints: <device-path>\n"
Elliott Hughesec7a6672015-03-16 21:58:32 +0000191 " 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 -0700192 " adb reboot [bootloader|recovery]\n"
193 " - reboots the device, optionally into the bootloader or recovery program.\n"
194 " adb reboot sideload - reboots the device into the sideload mode in recovery program (adb root required).\n"
195 " adb reboot sideload-auto-reboot\n"
196 " - reboots into the sideload mode, then reboots automatically after the sideload regardless of the result.\n"
Elliott Hughes7e067cf2015-06-12 14:26:29 -0700197 " adb sideload <file> - sideloads the given package\n"
Mike Lockwoodff196702009-08-24 15:58:40 -0700198 " adb root - restarts the adbd daemon with root permissions\n"
Dan Pasanen98858812014-10-06 12:57:20 -0500199 " adb unroot - restarts the adbd daemon without root permissions\n"
Romain Guy311add42009-12-14 14:42:17 -0800200 " adb usb - restarts the adbd daemon listening on USB\n"
Paul Lawrenceec900bb2014-10-09 14:22:49 +0000201 " adb tcpip <port> - restarts the adbd daemon listening on TCP on the specified port\n"
Elliott Hughes7e067cf2015-06-12 14:26:29 -0700202 "\n"
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800203 "networking:\n"
204 " adb ppp <tty> [parameters] - Run PPP over USB.\n"
Kenny Rootc9891992009-06-08 14:40:30 -0500205 " Note: you should not automatically start a PPP connection.\n"
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800206 " <tty> refers to the tty for PPP stream. Eg. dev:/dev/omap_csmi_tty1\n"
207 " [parameters] - Eg. defaultroute debug dump local notty usepeerdns\n"
208 "\n"
209 "adb sync notes: adb sync [ <directory> ]\n"
210 " <localdir> can be interpreted in several ways:\n"
211 "\n"
Elliott Hughesec7a6672015-03-16 21:58:32 +0000212 " - 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 -0800213 "\n"
Elliott Hughesec7a6672015-03-16 21:58:32 +0000214 " - If it is \"system\", \"vendor\", \"oem\" or \"data\", only the corresponding partition\n"
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800215 " is updated.\n"
Timcd643152010-02-16 20:18:29 +0000216 "\n"
Elliott Hughes7e067cf2015-06-12 14:26:29 -0700217 "environment variables:\n"
Timcd643152010-02-16 20:18:29 +0000218 " ADB_TRACE - Print debug information. A comma separated list of the following values\n"
219 " 1 or all, adb, sockets, packets, rwx, usb, sync, sysdeps, transport, jdwp\n"
220 " ANDROID_SERIAL - The serial number to connect to. -s takes priority over this if given.\n"
221 " 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 -0800222 );
223}
224
Elliott Hughes58305772015-04-17 13:57:15 -0700225static int usage() {
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800226 help();
227 return 1;
228}
229
Yabin Cuid325e862014-11-17 14:48:25 -0800230#if defined(_WIN32)
231
Elliott Hughesa2f2e562015-04-16 16:47:02 -0700232// Implemented in sysdeps_win32.cpp.
Spencer Low50184062015-03-01 15:06:21 -0800233void stdin_raw_init(int fd);
234void stdin_raw_restore(int fd);
Yabin Cuid325e862014-11-17 14:48:25 -0800235
236#else
Alistair Buxtondfa09fd2013-03-01 22:16:41 +0100237static termios g_saved_terminal_state;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800238
Alistair Buxtondfa09fd2013-03-01 22:16:41 +0100239static void stdin_raw_init(int fd) {
240 if (tcgetattr(fd, &g_saved_terminal_state)) return;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800241
Alistair Buxtondfa09fd2013-03-01 22:16:41 +0100242 termios tio;
243 if (tcgetattr(fd, &tio)) return;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800244
Alistair Buxtondfa09fd2013-03-01 22:16:41 +0100245 cfmakeraw(&tio);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800246
Alistair Buxtondfa09fd2013-03-01 22:16:41 +0100247 // No timeout but request at least one character per read.
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800248 tio.c_cc[VTIME] = 0;
249 tio.c_cc[VMIN] = 1;
250
Alistair Buxtondfa09fd2013-03-01 22:16:41 +0100251 tcsetattr(fd, TCSAFLUSH, &tio);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800252}
253
Alistair Buxtondfa09fd2013-03-01 22:16:41 +0100254static void stdin_raw_restore(int fd) {
255 tcsetattr(fd, TCSAFLUSH, &g_saved_terminal_state);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800256}
257#endif
258
Elliott Hughes5677c232015-05-07 23:37:40 -0700259static void read_and_dump(int fd) {
260 while (fd >= 0) {
Yabin Cui7a3f8d62015-09-02 17:44:28 -0700261 D("read_and_dump(): pre adb_read(fd=%d)", fd);
Elliott Hughes5677c232015-05-07 23:37:40 -0700262 char buf[BUFSIZ];
263 int len = adb_read(fd, buf, sizeof(buf));
Yabin Cui7a3f8d62015-09-02 17:44:28 -0700264 D("read_and_dump(): post adb_read(fd=%d): len=%d", fd, len);
Elliott Hughes5677c232015-05-07 23:37:40 -0700265 if (len <= 0) {
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800266 break;
267 }
268
Mike Lockwooddd6b36e2009-09-22 01:18:40 -0400269 fwrite(buf, 1, len, stdout);
270 fflush(stdout);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800271 }
272}
273
Jeff Sharkey960df972014-06-09 17:30:57 -0700274static void read_status_line(int fd, char* buf, size_t count)
275{
276 count--;
277 while (count > 0) {
278 int len = adb_read(fd, buf, count);
Elliott Hughes8fcd8bc2015-08-25 10:59:45 -0700279 if (len <= 0) {
Jeff Sharkey960df972014-06-09 17:30:57 -0700280 break;
281 }
282
283 buf += len;
284 count -= len;
285 }
286 *buf = '\0';
287}
288
Christopher Tated2f54152011-04-21 12:53:28 -0700289static void copy_to_file(int inFd, int outFd) {
Christopher Tate5b811fa2011-06-10 11:38:37 -0700290 const size_t BUFSIZE = 32 * 1024;
291 char* buf = (char*) malloc(BUFSIZE);
Elliott Hughesdc3b4592015-04-21 19:39:52 -0700292 if (buf == nullptr) fatal("couldn't allocate buffer for copy_to_file");
Christopher Tated2f54152011-04-21 12:53:28 -0700293 int len;
Christopher Tatec9cd3b92011-06-01 17:56:23 -0700294 long total = 0;
Spencer Lowb7dfb792015-05-22 16:48:31 -0700295#ifdef _WIN32
296 int old_stdin_mode = -1;
297 int old_stdout_mode = -1;
298#endif
Christopher Tated2f54152011-04-21 12:53:28 -0700299
Yabin Cui7a3f8d62015-09-02 17:44:28 -0700300 D("copy_to_file(%d -> %d)", inFd, outFd);
Yabin Cuid325e862014-11-17 14:48:25 -0800301
Jeff Sharkey5d9d4342014-05-26 18:30:43 -0700302 if (inFd == STDIN_FILENO) {
303 stdin_raw_init(STDIN_FILENO);
Spencer Lowb7dfb792015-05-22 16:48:31 -0700304#ifdef _WIN32
305 old_stdin_mode = _setmode(STDIN_FILENO, _O_BINARY);
306 if (old_stdin_mode == -1) {
307 fatal_errno("could not set stdin to binary");
308 }
309#endif
Jeff Sharkey5d9d4342014-05-26 18:30:43 -0700310 }
Yabin Cuid325e862014-11-17 14:48:25 -0800311
Spencer Lowb7dfb792015-05-22 16:48:31 -0700312#ifdef _WIN32
313 if (outFd == STDOUT_FILENO) {
314 old_stdout_mode = _setmode(STDOUT_FILENO, _O_BINARY);
315 if (old_stdout_mode == -1) {
316 fatal_errno("could not set stdout to binary");
317 }
318 }
319#endif
320
Elliott Hughesa7090b92015-04-17 17:03:59 -0700321 while (true) {
Jeff Sharkey5d9d4342014-05-26 18:30:43 -0700322 if (inFd == STDIN_FILENO) {
323 len = unix_read(inFd, buf, BUFSIZE);
324 } else {
325 len = adb_read(inFd, buf, BUFSIZE);
326 }
Christopher Tated2f54152011-04-21 12:53:28 -0700327 if (len == 0) {
Yabin Cui7a3f8d62015-09-02 17:44:28 -0700328 D("copy_to_file() : read 0 bytes; exiting");
Christopher Tated2f54152011-04-21 12:53:28 -0700329 break;
330 }
331 if (len < 0) {
Yabin Cui7a3f8d62015-09-02 17:44:28 -0700332 D("copy_to_file(): read failed: %s", strerror(errno));
Christopher Tated2f54152011-04-21 12:53:28 -0700333 break;
334 }
Jeff Sharkey5d9d4342014-05-26 18:30:43 -0700335 if (outFd == STDOUT_FILENO) {
336 fwrite(buf, 1, len, stdout);
337 fflush(stdout);
338 } else {
339 adb_write(outFd, buf, len);
340 }
Christopher Tatec9cd3b92011-06-01 17:56:23 -0700341 total += len;
Christopher Tated2f54152011-04-21 12:53:28 -0700342 }
Yabin Cuid325e862014-11-17 14:48:25 -0800343
Jeff Sharkey5d9d4342014-05-26 18:30:43 -0700344 if (inFd == STDIN_FILENO) {
345 stdin_raw_restore(STDIN_FILENO);
Spencer Lowb7dfb792015-05-22 16:48:31 -0700346#ifdef _WIN32
347 if (_setmode(STDIN_FILENO, old_stdin_mode) == -1) {
348 fatal_errno("could not restore stdin mode");
349 }
350#endif
Jeff Sharkey5d9d4342014-05-26 18:30:43 -0700351 }
Yabin Cuid325e862014-11-17 14:48:25 -0800352
Spencer Lowb7dfb792015-05-22 16:48:31 -0700353#ifdef _WIN32
354 if (outFd == STDOUT_FILENO) {
355 if (_setmode(STDOUT_FILENO, old_stdout_mode) == -1) {
356 fatal_errno("could not restore stdout mode");
357 }
358 }
359#endif
360
Yabin Cui7a3f8d62015-09-02 17:44:28 -0700361 D("copy_to_file() finished after %lu bytes", total);
Christopher Tate5b811fa2011-06-10 11:38:37 -0700362 free(buf);
Christopher Tated2f54152011-04-21 12:53:28 -0700363}
364
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800365static void *stdin_read_thread(void *x)
366{
367 int fd, fdi;
368 unsigned char buf[1024];
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800369 int r, n;
370 int state = 0;
371
372 int *fds = (int*) x;
373 fd = fds[0];
374 fdi = fds[1];
375 free(fds);
376
Siva Velusamy49ee7cf2015-08-28 16:37:29 -0700377 adb_thread_setname("stdin reader");
378
Elliott Hughesaa245492015-08-03 10:38:08 -0700379 while (true) {
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800380 /* fdi is really the client's stdin, so use read, not adb_read here */
Yabin Cui7a3f8d62015-09-02 17:44:28 -0700381 D("stdin_read_thread(): pre unix_read(fdi=%d,...)", fdi);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800382 r = unix_read(fdi, buf, 1024);
Yabin Cui7a3f8d62015-09-02 17:44:28 -0700383 D("stdin_read_thread(): post unix_read(fdi=%d,...)", fdi);
Elliott Hughes8fcd8bc2015-08-25 10:59:45 -0700384 if (r <= 0) break;
385 for (n = 0; n < r; n++){
Mike Lockwood67d53582010-05-25 13:40:15 -0400386 switch(buf[n]) {
387 case '\n':
388 state = 1;
389 break;
390 case '\r':
391 state = 1;
392 break;
393 case '~':
394 if(state == 1) state++;
395 break;
396 case '.':
397 if(state == 2) {
398 fprintf(stderr,"\n* disconnect *\n");
Mike Lockwood67d53582010-05-25 13:40:15 -0400399 stdin_raw_restore(fdi);
Mike Lockwood67d53582010-05-25 13:40:15 -0400400 exit(0);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800401 }
Mike Lockwood67d53582010-05-25 13:40:15 -0400402 default:
403 state = 0;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800404 }
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800405 }
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800406 r = adb_write(fd, buf, r);
407 if(r <= 0) {
408 break;
409 }
410 }
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800411 return 0;
412}
413
Elliott Hughes58305772015-04-17 13:57:15 -0700414static int interactive_shell() {
Elliott Hughes078f0fc2015-04-29 08:35:59 -0700415 int fdi;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800416
Elliott Hughes078f0fc2015-04-29 08:35:59 -0700417 std::string error;
418 int fd = adb_connect("shell:", &error);
419 if (fd < 0) {
420 fprintf(stderr,"error: %s\n", error.c_str());
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800421 return 1;
422 }
423 fdi = 0; //dup(0);
424
Dan Albertbac34742015-02-25 17:51:28 -0800425 int* fds = reinterpret_cast<int*>(malloc(sizeof(int) * 2));
Elliott Hughesdc3b4592015-04-21 19:39:52 -0700426 if (fds == nullptr) {
427 fprintf(stderr, "couldn't allocate fds array: %s\n", strerror(errno));
428 return 1;
429 }
430
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800431 fds[0] = fd;
432 fds[1] = fdi;
433
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800434 stdin_raw_init(fdi);
Elliott Hughes9b0f3542015-05-05 13:41:21 -0700435
436 adb_thread_create(stdin_read_thread, fds);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800437 read_and_dump(fd);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800438 stdin_raw_restore(fdi);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800439 return 0;
440}
441
442
Elliott Hughes3bd73c12015-05-05 13:10:43 -0700443static std::string format_host_command(const char* command, TransportType type, const char* serial) {
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800444 if (serial) {
Elliott Hughes6452a892015-04-29 12:28:13 -0700445 return android::base::StringPrintf("host-serial:%s:%s", serial, command);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800446 }
Elliott Hughes6452a892015-04-29 12:28:13 -0700447
448 const char* prefix = "host";
449 if (type == kTransportUsb) {
450 prefix = "host-usb";
451 } else if (type == kTransportLocal) {
452 prefix = "host-local";
453 }
454 return android::base::StringPrintf("%s:%s", prefix, command);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800455}
456
Elliott Hughes6452a892015-04-29 12:28:13 -0700457static int adb_download_buffer(const char *service, const char *fn, const void* data, unsigned sz,
Elliott Hughes078f0fc2015-04-29 08:35:59 -0700458 bool show_progress)
Doug Zongker447f0612012-01-09 14:54:53 -0800459{
Elliott Hughes078f0fc2015-04-29 08:35:59 -0700460 std::string error;
Elliott Hughes6452a892015-04-29 12:28:13 -0700461 int fd = adb_connect(android::base::StringPrintf("%s:%d", service, sz), &error);
Elliott Hughes078f0fc2015-04-29 08:35:59 -0700462 if (fd < 0) {
463 fprintf(stderr,"error: %s\n", error.c_str());
Doug Zongker447f0612012-01-09 14:54:53 -0800464 return -1;
465 }
466
467 int opt = CHUNK_SIZE;
Spencer Lowf055c192015-01-25 14:40:16 -0800468 opt = adb_setsockopt(fd, SOL_SOCKET, SO_SNDBUF, (const void *) &opt, sizeof(opt));
Doug Zongker447f0612012-01-09 14:54:53 -0800469
Elliott Hughes6452a892015-04-29 12:28:13 -0700470 unsigned total = sz;
Dan Albertbac34742015-02-25 17:51:28 -0800471 const uint8_t* ptr = reinterpret_cast<const uint8_t*>(data);
Doug Zongker447f0612012-01-09 14:54:53 -0800472
Elliott Hughes078f0fc2015-04-29 08:35:59 -0700473 if (show_progress) {
Elliott Hughes3e7048c2015-07-27 21:21:39 -0700474 const char* x = strrchr(service, ':');
475 if (x) service = x + 1;
Doug Zongker447f0612012-01-09 14:54:53 -0800476 }
477
Elliott Hughes6452a892015-04-29 12:28:13 -0700478 while (sz > 0) {
Doug Zongker447f0612012-01-09 14:54:53 -0800479 unsigned xfer = (sz > CHUNK_SIZE) ? CHUNK_SIZE : sz;
Elliott Hughes078f0fc2015-04-29 08:35:59 -0700480 if (!WriteFdExactly(fd, ptr, xfer)) {
481 std::string error;
482 adb_status(fd, &error);
483 fprintf(stderr,"* failed to write data '%s' *\n", error.c_str());
Doug Zongker447f0612012-01-09 14:54:53 -0800484 return -1;
485 }
486 sz -= xfer;
487 ptr += xfer;
Elliott Hughes078f0fc2015-04-29 08:35:59 -0700488 if (show_progress) {
Magnus Eriksson86ae6d52013-03-05 07:37:32 +0100489 printf("sending: '%s' %4d%% \r", fn, (int)(100LL - ((100LL * sz) / (total))));
Doug Zongker447f0612012-01-09 14:54:53 -0800490 fflush(stdout);
491 }
492 }
Elliott Hughes078f0fc2015-04-29 08:35:59 -0700493 if (show_progress) {
Doug Zongker447f0612012-01-09 14:54:53 -0800494 printf("\n");
495 }
496
Elliott Hughese67f1f82015-04-30 17:32:03 -0700497 if (!adb_status(fd, &error)) {
498 fprintf(stderr,"* error response '%s' *\n", error.c_str());
Doug Zongker447f0612012-01-09 14:54:53 -0800499 return -1;
500 }
501
502 adb_close(fd);
503 return 0;
504}
505
Doug Zongker71fe5842014-06-26 15:35:36 -0700506#define SIDELOAD_HOST_BLOCK_SIZE (CHUNK_SIZE)
507
508/*
509 * The sideload-host protocol serves the data in a file (given on the
510 * command line) to the client, using a simple protocol:
511 *
512 * - The connect message includes the total number of bytes in the
513 * file and a block size chosen by us.
514 *
515 * - The other side sends the desired block number as eight decimal
516 * digits (eg "00000023" for block 23). Blocks are numbered from
517 * zero.
518 *
519 * - We send back the data of the requested block. The last block is
520 * likely to be partial; when the last block is requested we only
521 * send the part of the block that exists, it's not padded up to the
522 * block size.
523 *
524 * - When the other side sends "DONEDONE" instead of a block number,
525 * we hang up.
526 */
Elliott Hughes58305772015-04-17 13:57:15 -0700527static int adb_sideload_host(const char* fn) {
Doug Zongker71fe5842014-06-26 15:35:36 -0700528 unsigned sz;
529 size_t xfer = 0;
530 int status;
Dan Albertbac34742015-02-25 17:51:28 -0800531 int last_percent = -1;
532 int opt = SIDELOAD_HOST_BLOCK_SIZE;
Doug Zongker71fe5842014-06-26 15:35:36 -0700533
534 printf("loading: '%s'", fn);
535 fflush(stdout);
Dan Albertbac34742015-02-25 17:51:28 -0800536 uint8_t* data = reinterpret_cast<uint8_t*>(load_file(fn, &sz));
Doug Zongker71fe5842014-06-26 15:35:36 -0700537 if (data == 0) {
538 printf("\n");
539 fprintf(stderr, "* cannot read '%s' *\n", fn);
540 return -1;
541 }
542
Elliott Hughes6452a892015-04-29 12:28:13 -0700543 std::string service =
544 android::base::StringPrintf("sideload-host:%d:%d", sz, SIDELOAD_HOST_BLOCK_SIZE);
Elliott Hughes078f0fc2015-04-29 08:35:59 -0700545 std::string error;
Elliott Hughes6452a892015-04-29 12:28:13 -0700546 int fd = adb_connect(service, &error);
Doug Zongker71fe5842014-06-26 15:35:36 -0700547 if (fd < 0) {
548 // Try falling back to the older sideload method. Maybe this
549 // is an older device that doesn't support sideload-host.
550 printf("\n");
Elliott Hughes078f0fc2015-04-29 08:35:59 -0700551 status = adb_download_buffer("sideload", fn, data, sz, true);
Doug Zongker71fe5842014-06-26 15:35:36 -0700552 goto done;
553 }
554
Spencer Lowf055c192015-01-25 14:40:16 -0800555 opt = adb_setsockopt(fd, SOL_SOCKET, SO_SNDBUF, (const void *) &opt, sizeof(opt));
Doug Zongker71fe5842014-06-26 15:35:36 -0700556
Elliott Hughesa7090b92015-04-17 17:03:59 -0700557 while (true) {
Elliott Hughes6452a892015-04-29 12:28:13 -0700558 char buf[9];
Dan Albertcc731cc2015-02-24 21:26:58 -0800559 if (!ReadFdExactly(fd, buf, 8)) {
Elliott Hughes078f0fc2015-04-29 08:35:59 -0700560 fprintf(stderr, "* failed to read command: %s\n", strerror(errno));
Doug Zongker71fe5842014-06-26 15:35:36 -0700561 status = -1;
562 goto done;
563 }
Elliott Hughes6452a892015-04-29 12:28:13 -0700564 buf[8] = '\0';
Doug Zongker71fe5842014-06-26 15:35:36 -0700565
Elliott Hughes6452a892015-04-29 12:28:13 -0700566 if (strcmp("DONEDONE", buf) == 0) {
Doug Zongker71fe5842014-06-26 15:35:36 -0700567 status = 0;
568 break;
569 }
570
Doug Zongker71fe5842014-06-26 15:35:36 -0700571 int block = strtol(buf, NULL, 10);
572
573 size_t offset = block * SIDELOAD_HOST_BLOCK_SIZE;
574 if (offset >= sz) {
Elliott Hughes078f0fc2015-04-29 08:35:59 -0700575 fprintf(stderr, "* attempt to read block %d past end\n", block);
Doug Zongker71fe5842014-06-26 15:35:36 -0700576 status = -1;
577 goto done;
578 }
579 uint8_t* start = data + offset;
580 size_t offset_end = offset + SIDELOAD_HOST_BLOCK_SIZE;
581 size_t to_write = SIDELOAD_HOST_BLOCK_SIZE;
582 if (offset_end > sz) {
583 to_write = sz - offset;
584 }
585
Dan Albertcc731cc2015-02-24 21:26:58 -0800586 if(!WriteFdExactly(fd, start, to_write)) {
Elliott Hughes078f0fc2015-04-29 08:35:59 -0700587 adb_status(fd, &error);
588 fprintf(stderr,"* failed to write data '%s' *\n", error.c_str());
Doug Zongker71fe5842014-06-26 15:35:36 -0700589 status = -1;
590 goto done;
591 }
592 xfer += to_write;
593
594 // For normal OTA packages, we expect to transfer every byte
595 // twice, plus a bit of overhead (one read during
596 // verification, one read of each byte for installation, plus
597 // extra access to things like the zip central directory).
598 // This estimate of the completion becomes 100% when we've
599 // transferred ~2.13 (=100/47) times the package size.
600 int percent = (int)(xfer * 47LL / (sz ? sz : 1));
601 if (percent != last_percent) {
602 printf("\rserving: '%s' (~%d%%) ", fn, percent);
603 fflush(stdout);
604 last_percent = percent;
605 }
606 }
607
Colin Cross6d6a8982014-07-07 14:12:41 -0700608 printf("\rTotal xfer: %.2fx%*s\n", (double)xfer / (sz ? sz : 1), (int)strlen(fn)+10, "");
Doug Zongker71fe5842014-06-26 15:35:36 -0700609
610 done:
611 if (fd >= 0) adb_close(fd);
612 free(data);
613 return status;
614}
615
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800616/**
617 * Run ppp in "notty" mode against a resource listed as the first parameter
618 * eg:
619 *
620 * ppp dev:/dev/omap_csmi_tty0 <ppp options>
621 *
622 */
Elliott Hughes58305772015-04-17 13:57:15 -0700623static int ppp(int argc, const char** argv) {
Yabin Cuie77b6a02014-11-11 09:24:11 -0800624#if defined(_WIN32)
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800625 fprintf(stderr, "error: adb %s not implemented on Win32\n", argv[0]);
626 return -1;
627#else
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800628 if (argc < 2) {
629 fprintf(stderr, "usage: adb %s <adb service name> [ppp opts]\n",
630 argv[0]);
631
632 return 1;
633 }
634
Dan Albertbac34742015-02-25 17:51:28 -0800635 const char* adb_service_name = argv[1];
Elliott Hughes078f0fc2015-04-29 08:35:59 -0700636 std::string error;
637 int fd = adb_connect(adb_service_name, &error);
638 if (fd < 0) {
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800639 fprintf(stderr,"Error: Could not open adb service: %s. Error: %s\n",
Elliott Hughes078f0fc2015-04-29 08:35:59 -0700640 adb_service_name, error.c_str());
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800641 return 1;
642 }
643
Elliott Hughes078f0fc2015-04-29 08:35:59 -0700644 pid_t pid = fork();
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800645
646 if (pid < 0) {
647 perror("from fork()");
648 return 1;
649 } else if (pid == 0) {
650 int err;
651 int i;
652 const char **ppp_args;
653
654 // copy args
655 ppp_args = (const char **) alloca(sizeof(char *) * argc + 1);
656 ppp_args[0] = "pppd";
657 for (i = 2 ; i < argc ; i++) {
658 //argv[2] and beyond become ppp_args[1] and beyond
659 ppp_args[i - 1] = argv[i];
660 }
661 ppp_args[i-1] = NULL;
662
663 // child side
664
665 dup2(fd, STDIN_FILENO);
666 dup2(fd, STDOUT_FILENO);
667 adb_close(STDERR_FILENO);
668 adb_close(fd);
669
670 err = execvp("pppd", (char * const *)ppp_args);
671
672 if (err < 0) {
673 perror("execing pppd");
674 }
675 exit(-1);
676 } else {
677 // parent side
678
679 adb_close(fd);
680 return 0;
681 }
Yabin Cuie77b6a02014-11-11 09:24:11 -0800682#endif /* !defined(_WIN32) */
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800683}
684
Elliott Hughes3bd73c12015-05-05 13:10:43 -0700685static bool wait_for_device(const char* service, TransportType t, const char* serial) {
Elliott Hughes2b101112015-05-04 19:29:32 -0700686 // Was the caller vague about what they'd like us to wait for?
687 // If so, check they weren't more specific in their choice of transport type.
688 if (strcmp(service, "wait-for-device") == 0) {
689 if (t == kTransportUsb) {
690 service = "wait-for-usb";
691 } else if (t == kTransportLocal) {
692 service = "wait-for-local";
693 } else {
694 service = "wait-for-any";
695 }
696 }
697
698 std::string cmd = format_host_command(service, t, serial);
Elliott Hughes424af022015-05-29 17:55:19 -0700699 return adb_command(cmd);
Elliott Hughes2b101112015-05-04 19:29:32 -0700700}
701
Elliott Hughes3bd73c12015-05-05 13:10:43 -0700702static int send_shell_command(TransportType transport_type, const char* serial,
Elliott Hughes2baae3a2015-04-17 10:59:34 -0700703 const std::string& command) {
704 int fd;
705 while (true) {
Elliott Hughes078f0fc2015-04-29 08:35:59 -0700706 std::string error;
Elliott Hughes6452a892015-04-29 12:28:13 -0700707 fd = adb_connect(command, &error);
Elliott Hughes078f0fc2015-04-29 08:35:59 -0700708 if (fd >= 0) {
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800709 break;
Elliott Hughes078f0fc2015-04-29 08:35:59 -0700710 }
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800711 fprintf(stderr,"- waiting for device -\n");
712 adb_sleep_ms(1000);
Elliott Hughes2b101112015-05-04 19:29:32 -0700713 wait_for_device("wait-for-device", transport_type, serial);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800714 }
715
716 read_and_dump(fd);
Elliott Hughes2baae3a2015-04-17 10:59:34 -0700717 int rc = adb_close(fd);
718 if (rc) {
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800719 perror("close");
Elliott Hughes2baae3a2015-04-17 10:59:34 -0700720 }
721 return rc;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800722}
723
Elliott Hughes3bd73c12015-05-05 13:10:43 -0700724static int logcat(TransportType transport, const char* serial, int argc, const char** argv) {
Elliott Hughes2baae3a2015-04-17 10:59:34 -0700725 char* log_tags = getenv("ANDROID_LOG_TAGS");
726 std::string quoted = escape_arg(log_tags == nullptr ? "" : log_tags);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800727
Elliott Hughes2baae3a2015-04-17 10:59:34 -0700728 std::string cmd = "shell:export ANDROID_LOG_TAGS=\"" + quoted + "\"; exec logcat";
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800729
Jeff Sharkeyfd546e82014-06-10 11:31:24 -0700730 if (!strcmp(argv[0], "longcat")) {
Elliott Hughes2baae3a2015-04-17 10:59:34 -0700731 cmd += " -v long";
Christopher Tatedb0a8802011-11-30 13:00:33 -0800732 }
733
Elliott Hughes6c34bba2015-04-17 20:11:08 -0700734 --argc;
735 ++argv;
Elliott Hughes2baae3a2015-04-17 10:59:34 -0700736 while (argc-- > 0) {
Elliott Hughes6c34bba2015-04-17 20:11:08 -0700737 cmd += " " + escape_arg(*argv++);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800738 }
739
Elliott Hughes15551472015-04-21 17:58:55 -0700740 return send_shell_command(transport, serial, cmd);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800741}
742
Dan Albertbac34742015-02-25 17:51:28 -0800743static int backup(int argc, const char** argv) {
Elliott Hughes6c34bba2015-04-17 20:11:08 -0700744 const char* filename = "./backup.ab";
Christopher Tated2f54152011-04-21 12:53:28 -0700745
Christopher Tatec9cd3b92011-06-01 17:56:23 -0700746 /* find, extract, and use any -f argument */
Elliott Hughes6c34bba2015-04-17 20:11:08 -0700747 for (int i = 1; i < argc; i++) {
Christopher Tatec9cd3b92011-06-01 17:56:23 -0700748 if (!strcmp("-f", argv[i])) {
749 if (i == argc-1) {
750 fprintf(stderr, "adb: -f passed with no filename\n");
751 return usage();
752 }
753 filename = argv[i+1];
Elliott Hughes6c34bba2015-04-17 20:11:08 -0700754 for (int j = i+2; j <= argc; ) {
Christopher Tatec9cd3b92011-06-01 17:56:23 -0700755 argv[i++] = argv[j++];
756 }
757 argc -= 2;
758 argv[argc] = NULL;
759 }
Christopher Tated2f54152011-04-21 12:53:28 -0700760 }
761
Christopher Tatebb86bc52011-08-22 17:12:08 -0700762 /* bare "adb backup" or "adb backup -f filename" are not valid invocations */
763 if (argc < 2) return usage();
764
Christopher Tateb1dfffe2011-12-08 19:04:34 -0800765 adb_unlink(filename);
Mark Salyzyn60299df2014-04-30 09:10:31 -0700766 mkdirs(filename);
Elliott Hughes6c34bba2015-04-17 20:11:08 -0700767 int outFd = adb_creat(filename, 0640);
Christopher Tated2f54152011-04-21 12:53:28 -0700768 if (outFd < 0) {
769 fprintf(stderr, "adb: unable to open file %s\n", filename);
770 return -1;
771 }
772
Elliott Hughes6c34bba2015-04-17 20:11:08 -0700773 std::string cmd = "backup:";
774 --argc;
775 ++argv;
776 while (argc-- > 0) {
777 cmd += " " + escape_arg(*argv++);
Christopher Tated2f54152011-04-21 12:53:28 -0700778 }
779
Yabin Cui7a3f8d62015-09-02 17:44:28 -0700780 D("backup. filename=%s cmd=%s", filename, cmd.c_str());
Elliott Hughes078f0fc2015-04-29 08:35:59 -0700781 std::string error;
Elliott Hughes6452a892015-04-29 12:28:13 -0700782 int fd = adb_connect(cmd, &error);
Christopher Tated2f54152011-04-21 12:53:28 -0700783 if (fd < 0) {
Elliott Hughes078f0fc2015-04-29 08:35:59 -0700784 fprintf(stderr, "adb: unable to connect for backup: %s\n", error.c_str());
Christopher Tated2f54152011-04-21 12:53:28 -0700785 adb_close(outFd);
786 return -1;
787 }
788
Christopher Tatebffa4ca2012-01-06 15:43:03 -0800789 printf("Now unlock your device and confirm the backup operation.\n");
Christopher Tated2f54152011-04-21 12:53:28 -0700790 copy_to_file(fd, outFd);
791
792 adb_close(fd);
793 adb_close(outFd);
794 return 0;
795}
796
Dan Albertbac34742015-02-25 17:51:28 -0800797static int restore(int argc, const char** argv) {
Christopher Tate702967a2011-05-17 15:52:54 -0700798 if (argc != 2) return usage();
799
Elliott Hughes078f0fc2015-04-29 08:35:59 -0700800 const char* filename = argv[1];
801 int tarFd = adb_open(filename, O_RDONLY);
Christopher Tate702967a2011-05-17 15:52:54 -0700802 if (tarFd < 0) {
Elliott Hughes078f0fc2015-04-29 08:35:59 -0700803 fprintf(stderr, "adb: unable to open file %s: %s\n", filename, strerror(errno));
Christopher Tate702967a2011-05-17 15:52:54 -0700804 return -1;
805 }
806
Elliott Hughes078f0fc2015-04-29 08:35:59 -0700807 std::string error;
808 int fd = adb_connect("restore:", &error);
Christopher Tate702967a2011-05-17 15:52:54 -0700809 if (fd < 0) {
Elliott Hughes078f0fc2015-04-29 08:35:59 -0700810 fprintf(stderr, "adb: unable to connect for restore: %s\n", error.c_str());
Christopher Tate702967a2011-05-17 15:52:54 -0700811 adb_close(tarFd);
812 return -1;
813 }
814
Christopher Tatebffa4ca2012-01-06 15:43:03 -0800815 printf("Now unlock your device and confirm the restore operation.\n");
Christopher Tate702967a2011-05-17 15:52:54 -0700816 copy_to_file(tarFd, fd);
817
818 adb_close(fd);
819 adb_close(tarFd);
820 return 0;
821}
822
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800823/* <hint> may be:
824 * - A simple product name
825 * e.g., "sooner"
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800826 * - A relative path from the CWD to the ANDROID_PRODUCT_OUT dir
827 * e.g., "out/target/product/sooner"
828 * - An absolute path to the PRODUCT_OUT dir
829 * e.g., "/src/device/out/target/product/sooner"
830 *
831 * Given <hint>, try to construct an absolute path to the
832 * ANDROID_PRODUCT_OUT dir.
833 */
Elliott Hughes5c742702015-07-30 17:42:01 -0700834static std::string find_product_out_path(const std::string& hint) {
835 if (hint.empty()) {
Elliott Hughes58305772015-04-17 13:57:15 -0700836 return "";
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800837 }
838
Elliott Hughes58305772015-04-17 13:57:15 -0700839 // If it's already absolute, don't bother doing any work.
Elliott Hughes5c742702015-07-30 17:42:01 -0700840 if (adb_is_absolute_host_path(hint.c_str())) {
Elliott Hughes58305772015-04-17 13:57:15 -0700841 return hint;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800842 }
843
Elliott Hughes58305772015-04-17 13:57:15 -0700844 // If there are any slashes in it, assume it's a relative path;
845 // make it absolute.
Elliott Hughes5c742702015-07-30 17:42:01 -0700846 if (hint.find_first_of(OS_PATH_SEPARATORS) != std::string::npos) {
Elliott Hughesa7090b92015-04-17 17:03:59 -0700847 std::string cwd;
848 if (!getcwd(&cwd)) {
849 fprintf(stderr, "adb: getcwd failed: %s\n", strerror(errno));
Elliott Hughes58305772015-04-17 13:57:15 -0700850 return "";
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800851 }
Elliott Hughes5c742702015-07-30 17:42:01 -0700852 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 -0800853 }
854
Elliott Hughes58305772015-04-17 13:57:15 -0700855 // It's a string without any slashes. Try to do something with it.
856 //
857 // Try to find the root of the build tree, and build a PRODUCT_OUT
858 // path from there.
Elliott Hughesa7090b92015-04-17 17:03:59 -0700859 char* top = getenv("ANDROID_BUILD_TOP");
Elliott Hughes58305772015-04-17 13:57:15 -0700860 if (top == nullptr) {
Elliott Hughesa7090b92015-04-17 17:03:59 -0700861 fprintf(stderr, "adb: ANDROID_BUILD_TOP not set!\n");
Elliott Hughes58305772015-04-17 13:57:15 -0700862 return "";
863 }
Elliott Hughesa7090b92015-04-17 17:03:59 -0700864
865 std::string path = top;
Elliott Hughes58305772015-04-17 13:57:15 -0700866 path += OS_PATH_SEPARATOR_STR;
867 path += "out";
868 path += OS_PATH_SEPARATOR_STR;
869 path += "target";
870 path += OS_PATH_SEPARATOR_STR;
871 path += "product";
872 path += OS_PATH_SEPARATOR_STR;
873 path += hint;
874 if (!directory_exists(path)) {
875 fprintf(stderr, "adb: Couldn't find a product dir based on -p %s; "
Elliott Hughes5c742702015-07-30 17:42:01 -0700876 "\"%s\" doesn't exist\n", hint.c_str(), path.c_str());
Elliott Hughesa7090b92015-04-17 17:03:59 -0700877 return "";
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800878 }
Elliott Hughes58305772015-04-17 13:57:15 -0700879 return path;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800880}
881
Dan Albertbac34742015-02-25 17:51:28 -0800882static void parse_push_pull_args(const char **arg, int narg, char const **path1,
Elliott Hughesaa245492015-08-03 10:38:08 -0700883 char const **path2, bool* show_progress,
Dan Albertbac34742015-02-25 17:51:28 -0800884 int *copy_attrs) {
Elliott Hughesaa245492015-08-03 10:38:08 -0700885 *show_progress = false;
Lajos Molnarde8ff4a2013-04-19 12:41:09 -0700886 *copy_attrs = 0;
Mark Lindner76f2a932014-03-11 17:55:59 -0700887
Lajos Molnarde8ff4a2013-04-19 12:41:09 -0700888 while (narg > 0) {
889 if (!strcmp(*arg, "-p")) {
Elliott Hughesaa245492015-08-03 10:38:08 -0700890 *show_progress = true;
Lajos Molnarde8ff4a2013-04-19 12:41:09 -0700891 } else if (!strcmp(*arg, "-a")) {
892 *copy_attrs = 1;
893 } else {
894 break;
895 }
Mark Lindner76f2a932014-03-11 17:55:59 -0700896 ++arg;
897 --narg;
898 }
899
900 if (narg > 0) {
901 *path1 = *arg;
902 ++arg;
903 --narg;
904 }
905
906 if (narg > 0) {
907 *path2 = *arg;
908 }
909}
910
Elliott Hughes6452a892015-04-29 12:28:13 -0700911static int adb_connect_command(const std::string& command) {
Elliott Hughes078f0fc2015-04-29 08:35:59 -0700912 std::string error;
913 int fd = adb_connect(command, &error);
Elliott Hughes5677c232015-05-07 23:37:40 -0700914 if (fd < 0) {
915 fprintf(stderr, "error: %s\n", error.c_str());
916 return 1;
Tao Bao175b7bb2015-03-29 11:22:34 -0700917 }
Elliott Hughes5677c232015-05-07 23:37:40 -0700918 read_and_dump(fd);
919 adb_close(fd);
920 return 0;
Tao Bao175b7bb2015-03-29 11:22:34 -0700921}
922
Elliott Hughes6452a892015-04-29 12:28:13 -0700923static int adb_query_command(const std::string& command) {
924 std::string result;
925 std::string error;
926 if (!adb_query(command, &result, &error)) {
927 fprintf(stderr, "error: %s\n", error.c_str());
928 return 1;
929 }
930 printf("%s\n", result.c_str());
931 return 0;
932}
933
Spencer Lowa13df302015-09-07 16:20:13 -0700934// Disallow stdin, stdout, and stderr.
935static bool _is_valid_ack_reply_fd(const int ack_reply_fd) {
936#ifdef _WIN32
937 const HANDLE ack_reply_handle = cast_int_to_handle(ack_reply_fd);
938 return (GetStdHandle(STD_INPUT_HANDLE) != ack_reply_handle) &&
939 (GetStdHandle(STD_OUTPUT_HANDLE) != ack_reply_handle) &&
940 (GetStdHandle(STD_ERROR_HANDLE) != ack_reply_handle);
941#else
942 return ack_reply_fd > 2;
943#endif
944}
945
Elliott Hughesab52c182015-05-01 17:04:38 -0700946int adb_commandline(int argc, const char **argv) {
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800947 int no_daemon = 0;
948 int is_daemon = 0;
David 'Digit' Turner305b4b02011-01-31 14:23:56 +0100949 int is_server = 0;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800950 int r;
Elliott Hughes3bd73c12015-05-05 13:10:43 -0700951 TransportType transport_type = kTransportAny;
Siva Velusamy9f2d1a92015-08-07 10:10:29 -0700952 int ack_reply_fd = -1;
Siva Velusamy9f2d1a92015-08-07 10:10:29 -0700953
Elliott Hughes58305772015-04-17 13:57:15 -0700954 // If defined, this should be an absolute path to
955 // the directory containing all of the various system images
956 // for a particular product. If not defined, and the adb
957 // command requires this information, then the user must
958 // specify the path using "-p".
959 char* ANDROID_PRODUCT_OUT = getenv("ANDROID_PRODUCT_OUT");
960 if (ANDROID_PRODUCT_OUT != nullptr) {
961 gProductOutPath = ANDROID_PRODUCT_OUT;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800962 }
963 // TODO: also try TARGET_PRODUCT/TARGET_DEVICE as a hint
964
Elliott Hughes3bd73c12015-05-05 13:10:43 -0700965 const char* serial = getenv("ANDROID_SERIAL");
Nick Pellydb449262009-05-07 12:48:03 -0700966
Stefan Hilzingera84a42e2010-04-19 12:21:12 +0100967 /* Validate and assign the server port */
Elliott Hughes3bd73c12015-05-05 13:10:43 -0700968 const char* server_port_str = getenv("ANDROID_ADB_SERVER_PORT");
Stefan Hilzingera84a42e2010-04-19 12:21:12 +0100969 int server_port = DEFAULT_ADB_PORT;
970 if (server_port_str && strlen(server_port_str) > 0) {
Siva Velusamy9f2d1a92015-08-07 10:10:29 -0700971 server_port = strtol(server_port_str, nullptr, 0);
Matt Gumbeld7b33082012-11-14 10:16:17 -0800972 if (server_port <= 0 || server_port > 65535) {
Stefan Hilzingera84a42e2010-04-19 12:21:12 +0100973 fprintf(stderr,
Spencer Lowf18fc082015-08-11 17:05:02 -0700974 "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 +0100975 server_port_str);
976 return usage();
977 }
978 }
979
980 /* modifiers and flags */
Riley Andrews98f58e82014-12-05 17:37:24 -0800981 while (argc > 0) {
982 if (!strcmp(argv[0],"server")) {
David 'Digit' Turner305b4b02011-01-31 14:23:56 +0100983 is_server = 1;
Riley Andrews98f58e82014-12-05 17:37:24 -0800984 } else if (!strcmp(argv[0],"nodaemon")) {
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800985 no_daemon = 1;
986 } else if (!strcmp(argv[0], "fork-server")) {
987 /* this is a special flag used only when the ADB client launches the ADB Server */
988 is_daemon = 1;
Siva Velusamy9f2d1a92015-08-07 10:10:29 -0700989 } else if (!strcmp(argv[0], "--reply-fd")) {
990 if (argc < 2) return usage();
991 const char* reply_fd_str = argv[1];
992 argc--;
993 argv++;
994 ack_reply_fd = strtol(reply_fd_str, nullptr, 10);
Spencer Lowa13df302015-09-07 16:20:13 -0700995 if (!_is_valid_ack_reply_fd(ack_reply_fd)) {
Siva Velusamy9f2d1a92015-08-07 10:10:29 -0700996 fprintf(stderr, "adb: invalid reply fd \"%s\"\n", reply_fd_str);
997 return usage();
998 }
Riley Andrews98f58e82014-12-05 17:37:24 -0800999 } else if (!strncmp(argv[0], "-p", 2)) {
Elliott Hughes048b27c2015-07-31 13:18:22 -07001000 const char* product = nullptr;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001001 if (argv[0][2] == '\0') {
1002 if (argc < 2) return usage();
1003 product = argv[1];
1004 argc--;
1005 argv++;
1006 } else {
Vairavan Srinivasan81273232012-08-04 16:40:50 -07001007 product = argv[0] + 2;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001008 }
Elliott Hughes048b27c2015-07-31 13:18:22 -07001009 gProductOutPath = find_product_out_path(product);
Elliott Hughes58305772015-04-17 13:57:15 -07001010 if (gProductOutPath.empty()) {
1011 fprintf(stderr, "adb: could not resolve \"-p %s\"\n", product);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001012 return usage();
1013 }
1014 } else if (argv[0][0]=='-' && argv[0][1]=='s') {
1015 if (isdigit(argv[0][2])) {
1016 serial = argv[0] + 2;
1017 } else {
Riley Andrews98f58e82014-12-05 17:37:24 -08001018 if (argc < 2 || argv[0][2] != '\0') return usage();
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001019 serial = argv[1];
1020 argc--;
1021 argv++;
1022 }
1023 } else if (!strcmp(argv[0],"-d")) {
Elliott Hughes3bd73c12015-05-05 13:10:43 -07001024 transport_type = kTransportUsb;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001025 } else if (!strcmp(argv[0],"-e")) {
Elliott Hughes3bd73c12015-05-05 13:10:43 -07001026 transport_type = kTransportLocal;
Matt Gumbeld7b33082012-11-14 10:16:17 -08001027 } else if (!strcmp(argv[0],"-a")) {
1028 gListenAll = 1;
Riley Andrews98f58e82014-12-05 17:37:24 -08001029 } else if (!strncmp(argv[0], "-H", 2)) {
Matt Gumbeld7b33082012-11-14 10:16:17 -08001030 const char *hostname = NULL;
1031 if (argv[0][2] == '\0') {
1032 if (argc < 2) return usage();
1033 hostname = argv[1];
1034 argc--;
1035 argv++;
1036 } else {
1037 hostname = argv[0] + 2;
1038 }
1039 adb_set_tcp_name(hostname);
1040
Riley Andrews98f58e82014-12-05 17:37:24 -08001041 } else if (!strncmp(argv[0], "-P", 2)) {
Matt Gumbeld7b33082012-11-14 10:16:17 -08001042 if (argv[0][2] == '\0') {
1043 if (argc < 2) return usage();
1044 server_port_str = argv[1];
1045 argc--;
1046 argv++;
1047 } else {
1048 server_port_str = argv[0] + 2;
1049 }
1050 if (strlen(server_port_str) > 0) {
1051 server_port = (int) strtol(server_port_str, NULL, 0);
1052 if (server_port <= 0 || server_port > 65535) {
1053 fprintf(stderr,
1054 "adb: port number must be a positive number less than 65536. Got \"%s\"\n",
1055 server_port_str);
1056 return usage();
1057 }
1058 } else {
1059 fprintf(stderr,
1060 "adb: port number must be a positive number less than 65536. Got empty string.\n");
1061 return usage();
1062 }
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001063 } else {
1064 /* out of recognized modifiers and flags */
1065 break;
1066 }
1067 argc--;
1068 argv++;
1069 }
1070
Elliott Hughes3bd73c12015-05-05 13:10:43 -07001071 adb_set_transport(transport_type, serial);
Stefan Hilzingera84a42e2010-04-19 12:21:12 +01001072 adb_set_tcp_specifics(server_port);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001073
David 'Digit' Turner305b4b02011-01-31 14:23:56 +01001074 if (is_server) {
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001075 if (no_daemon || is_daemon) {
Spencer Low5c398d22015-08-08 15:07:07 -07001076 if (is_daemon && (ack_reply_fd == -1)) {
Siva Velusamy9f2d1a92015-08-07 10:10:29 -07001077 fprintf(stderr, "reply fd for adb server to client communication not specified.\n");
1078 return usage();
1079 }
1080 r = adb_main(is_daemon, server_port, ack_reply_fd);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001081 } else {
Stefan Hilzingera84a42e2010-04-19 12:21:12 +01001082 r = launch_server(server_port);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001083 }
Riley Andrews98f58e82014-12-05 17:37:24 -08001084 if (r) {
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001085 fprintf(stderr,"* could not start server *\n");
1086 }
1087 return r;
1088 }
1089
Riley Andrews98f58e82014-12-05 17:37:24 -08001090 if (argc == 0) {
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001091 return usage();
1092 }
1093
Riley Andrewsc8514c82014-12-05 17:32:46 -08001094 /* handle wait-for-* prefix */
1095 if (!strncmp(argv[0], "wait-for-", strlen("wait-for-"))) {
Dan Albertbac34742015-02-25 17:51:28 -08001096 const char* service = argv[0];
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001097
Elliott Hughes3bd73c12015-05-05 13:10:43 -07001098 if (!wait_for_device(service, transport_type, serial)) {
Riley Andrewsc8514c82014-12-05 17:32:46 -08001099 return 1;
1100 }
1101
Elliott Hughes2b101112015-05-04 19:29:32 -07001102 // Allow a command to be run after wait-for-device,
1103 // e.g. 'adb wait-for-device shell'.
Riley Andrewsc8514c82014-12-05 17:32:46 -08001104 if (argc == 1) {
1105 return 0;
1106 }
1107
1108 /* Fall through */
1109 argc--;
1110 argv++;
1111 }
1112
1113 /* adb_connect() commands */
Riley Andrews98f58e82014-12-05 17:37:24 -08001114 if (!strcmp(argv[0], "devices")) {
Dan Albertbac34742015-02-25 17:51:28 -08001115 const char *listopt;
Elliott Hughes6452a892015-04-29 12:28:13 -07001116 if (argc < 2) {
Scott Andersone109d262012-04-20 11:21:14 -07001117 listopt = "";
Elliott Hughes6452a892015-04-29 12:28:13 -07001118 } else if (argc == 2 && !strcmp(argv[1], "-l")) {
Scott Andersone109d262012-04-20 11:21:14 -07001119 listopt = argv[1];
Elliott Hughes6452a892015-04-29 12:28:13 -07001120 } else {
Scott Andersone109d262012-04-20 11:21:14 -07001121 fprintf(stderr, "Usage: adb devices [-l]\n");
1122 return 1;
1123 }
Elliott Hughes6452a892015-04-29 12:28:13 -07001124
1125 std::string query = android::base::StringPrintf("host:%s%s", argv[0], listopt);
1126 printf("List of devices attached\n");
1127 return adb_query_command(query);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001128 }
Riley Andrewsc8514c82014-12-05 17:32:46 -08001129 else if (!strcmp(argv[0], "connect")) {
Mike Lockwoodff196702009-08-24 15:58:40 -07001130 if (argc != 2) {
Mike Lockwoodcbbe79a2010-05-24 10:44:35 -04001131 fprintf(stderr, "Usage: adb connect <host>[:<port>]\n");
Mike Lockwoodff196702009-08-24 15:58:40 -07001132 return 1;
1133 }
Elliott Hughes6452a892015-04-29 12:28:13 -07001134
1135 std::string query = android::base::StringPrintf("host:connect:%s", argv[1]);
1136 return adb_query_command(query);
Mike Lockwoodcbbe79a2010-05-24 10:44:35 -04001137 }
Riley Andrewsc8514c82014-12-05 17:32:46 -08001138 else if (!strcmp(argv[0], "disconnect")) {
Mike Lockwoodcbbe79a2010-05-24 10:44:35 -04001139 if (argc > 2) {
1140 fprintf(stderr, "Usage: adb disconnect [<host>[:<port>]]\n");
1141 return 1;
1142 }
Elliott Hughes6452a892015-04-29 12:28:13 -07001143
1144 std::string query = android::base::StringPrintf("host:disconnect:%s",
1145 (argc == 2) ? argv[1] : "");
1146 return adb_query_command(query);
Mike Lockwoodff196702009-08-24 15:58:40 -07001147 }
Riley Andrewsc8514c82014-12-05 17:32:46 -08001148 else if (!strcmp(argv[0], "emu")) {
Spencer Low142ec752015-05-06 16:13:42 -07001149 return adb_send_emulator_command(argc, argv, serial);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001150 }
Riley Andrewsc8514c82014-12-05 17:32:46 -08001151 else if (!strcmp(argv[0], "shell") || !strcmp(argv[0], "hell")) {
Daniel Sandlerff91ab82010-08-19 01:10:18 -04001152 char h = (argv[0][0] == 'h');
1153
1154 if (h) {
1155 printf("\x1b[41;33m");
1156 fflush(stdout);
1157 }
1158
Riley Andrews98f58e82014-12-05 17:37:24 -08001159 if (argc < 2) {
Yabin Cui7a3f8d62015-09-02 17:44:28 -07001160 D("starting interactive shell");
Daniel Sandlerff91ab82010-08-19 01:10:18 -04001161 r = interactive_shell();
1162 if (h) {
1163 printf("\x1b[0m");
1164 fflush(stdout);
1165 }
1166 return r;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001167 }
1168
Elliott Hughes2baae3a2015-04-17 10:59:34 -07001169 std::string cmd = "shell:";
Elliott Hughes2b101112015-05-04 19:29:32 -07001170 --argc;
1171 ++argv;
Jeff Sharkey5d9d4342014-05-26 18:30:43 -07001172 while (argc-- > 0) {
Elliott Hughes2b101112015-05-04 19:29:32 -07001173 // We don't escape here, just like ssh(1). http://b/20564385.
1174 cmd += *argv++;
1175 if (*argv) cmd += " ";
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001176 }
1177
Elliott Hughes2baae3a2015-04-17 10:59:34 -07001178 while (true) {
Yabin Cui7a3f8d62015-09-02 17:44:28 -07001179 D("interactive shell loop. cmd=%s", cmd.c_str());
Elliott Hughes078f0fc2015-04-29 08:35:59 -07001180 std::string error;
Elliott Hughes6452a892015-04-29 12:28:13 -07001181 int fd = adb_connect(cmd, &error);
Elliott Hughes2baae3a2015-04-17 10:59:34 -07001182 int r;
Riley Andrews98f58e82014-12-05 17:37:24 -08001183 if (fd >= 0) {
Yabin Cui7a3f8d62015-09-02 17:44:28 -07001184 D("about to read_and_dump(fd=%d)", fd);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001185 read_and_dump(fd);
Yabin Cui7a3f8d62015-09-02 17:44:28 -07001186 D("read_and_dump() done.");
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001187 adb_close(fd);
1188 r = 0;
1189 } else {
Elliott Hughes078f0fc2015-04-29 08:35:59 -07001190 fprintf(stderr,"error: %s\n", error.c_str());
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001191 r = -1;
1192 }
1193
Elliott Hughes32687be2015-05-05 12:50:26 -07001194 if (h) {
1195 printf("\x1b[0m");
1196 fflush(stdout);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001197 }
Yabin Cui7a3f8d62015-09-02 17:44:28 -07001198 D("interactive shell loop. return r=%d", r);
Elliott Hughes32687be2015-05-05 12:50:26 -07001199 return r;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001200 }
1201 }
Riley Andrewsc8514c82014-12-05 17:32:46 -08001202 else if (!strcmp(argv[0], "exec-in") || !strcmp(argv[0], "exec-out")) {
Jeff Sharkey5d9d4342014-05-26 18:30:43 -07001203 int exec_in = !strcmp(argv[0], "exec-in");
Jeff Sharkey5d9d4342014-05-26 18:30:43 -07001204
Elliott Hughes2baae3a2015-04-17 10:59:34 -07001205 std::string cmd = "exec:";
1206 cmd += argv[1];
Jeff Sharkey5d9d4342014-05-26 18:30:43 -07001207 argc -= 2;
1208 argv += 2;
1209 while (argc-- > 0) {
Elliott Hughes6c34bba2015-04-17 20:11:08 -07001210 cmd += " " + escape_arg(*argv++);
Jeff Sharkey5d9d4342014-05-26 18:30:43 -07001211 }
1212
Elliott Hughes078f0fc2015-04-29 08:35:59 -07001213 std::string error;
Elliott Hughes6452a892015-04-29 12:28:13 -07001214 int fd = adb_connect(cmd, &error);
Jeff Sharkey5d9d4342014-05-26 18:30:43 -07001215 if (fd < 0) {
Elliott Hughes078f0fc2015-04-29 08:35:59 -07001216 fprintf(stderr, "error: %s\n", error.c_str());
Jeff Sharkey5d9d4342014-05-26 18:30:43 -07001217 return -1;
1218 }
1219
1220 if (exec_in) {
1221 copy_to_file(STDIN_FILENO, fd);
1222 } else {
1223 copy_to_file(fd, STDOUT_FILENO);
1224 }
1225
1226 adb_close(fd);
1227 return 0;
1228 }
Riley Andrewsc8514c82014-12-05 17:32:46 -08001229 else if (!strcmp(argv[0], "kill-server")) {
Elliott Hughes078f0fc2015-04-29 08:35:59 -07001230 std::string error;
1231 int fd = _adb_connect("host:kill", &error);
Spencer Lowf18fc082015-08-11 17:05:02 -07001232 if (fd == -2) {
1233 // Failed to make network connection to server. Don't output the
1234 // network error since that is expected.
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001235 fprintf(stderr,"* server not running *\n");
Spencer Lowf18fc082015-08-11 17:05:02 -07001236 // Successful exit code because the server is already "killed".
1237 return 0;
1238 } else if (fd == -1) {
1239 // Some other error.
1240 fprintf(stderr, "error: %s\n", error.c_str());
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001241 return 1;
Spencer Lowf18fc082015-08-11 17:05:02 -07001242 } else {
1243 // Successfully connected, kill command sent, okay status came back.
1244 // Server should exit() in a moment, if not already.
1245 adb_close(fd);
1246 return 0;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001247 }
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001248 }
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();
Elliott Hughesaa245492015-08-03 10:38:08 -07001330 return do_sync_ls(argv[1]) ? 0 : 1;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001331 }
Riley Andrewsc8514c82014-12-05 17:32:46 -08001332 else if (!strcmp(argv[0], "push")) {
Elliott Hughesaa245492015-08-03 10:38:08 -07001333 bool show_progress = false;
1334 int copy_attrs = 0;
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);
Elliott Hughesaa245492015-08-03 10:38:08 -07001338 if (!lpath || !rpath || copy_attrs != 0) return usage();
1339 return do_sync_push(lpath, rpath, show_progress) ? 0 : 1;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001340 }
Riley Andrewsc8514c82014-12-05 17:32:46 -08001341 else if (!strcmp(argv[0], "pull")) {
Elliott Hughesaa245492015-08-03 10:38:08 -07001342 bool show_progress = false;
Lajos Molnarde8ff4a2013-04-19 12:41:09 -07001343 int copy_attrs = 0;
Mark Lindner76f2a932014-03-11 17:55:59 -07001344 const char* rpath = NULL, *lpath = ".";
1345
Lajos Molnarde8ff4a2013-04-19 12:41:09 -07001346 parse_push_pull_args(&argv[1], argc - 1, &rpath, &lpath, &show_progress, &copy_attrs);
Elliott Hughesaa245492015-08-03 10:38:08 -07001347 if (!rpath) return usage();
1348 return do_sync_pull(rpath, lpath, show_progress, copy_attrs) ? 0 : 1;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001349 }
Riley Andrewsc8514c82014-12-05 17:32:46 -08001350 else if (!strcmp(argv[0], "install")) {
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001351 if (argc < 2) return usage();
Elliott Hughes3bd73c12015-05-05 13:10:43 -07001352 return install_app(transport_type, serial, argc, argv);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001353 }
Riley Andrewsc8514c82014-12-05 17:32:46 -08001354 else if (!strcmp(argv[0], "install-multiple")) {
Jeff Sharkey960df972014-06-09 17:30:57 -07001355 if (argc < 2) return usage();
Elliott Hughes3bd73c12015-05-05 13:10:43 -07001356 return install_multiple_app(transport_type, serial, argc, argv);
Jeff Sharkey960df972014-06-09 17:30:57 -07001357 }
Riley Andrewsc8514c82014-12-05 17:32:46 -08001358 else if (!strcmp(argv[0], "uninstall")) {
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 uninstall_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], "sync")) {
Elliott Hughesd236d072015-04-21 10:17:07 -07001363 std::string src;
Elliott Hughes58305772015-04-17 13:57:15 -07001364 bool list_only = false;
Riley Andrews98f58e82014-12-05 17:37:24 -08001365 if (argc < 2) {
Elliott Hughes58305772015-04-17 13:57:15 -07001366 // No local path was specified.
Elliott Hughesd236d072015-04-21 10:17:07 -07001367 src = "";
Anthony Newnam705c9442010-02-22 08:36:49 -06001368 } else if (argc >= 2 && strcmp(argv[1], "-l") == 0) {
Elliott Hughesd236d072015-04-21 10:17:07 -07001369 list_only = true;
Anthony Newnam705c9442010-02-22 08:36:49 -06001370 if (argc == 3) {
Elliott Hughesd236d072015-04-21 10:17:07 -07001371 src = argv[2];
Anthony Newnam705c9442010-02-22 08:36:49 -06001372 } else {
Elliott Hughesd236d072015-04-21 10:17:07 -07001373 src = "";
Anthony Newnam705c9442010-02-22 08:36:49 -06001374 }
Riley Andrews98f58e82014-12-05 17:37:24 -08001375 } else if (argc == 2) {
Elliott Hughes58305772015-04-17 13:57:15 -07001376 // A local path or "android"/"data" arg was specified.
Elliott Hughesd236d072015-04-21 10:17:07 -07001377 src = argv[1];
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001378 } else {
1379 return usage();
1380 }
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001381
Elliott Hughesd236d072015-04-21 10:17:07 -07001382 if (src != "" &&
1383 src != "system" && src != "data" && src != "vendor" && src != "oem") {
Elliott Hughes58305772015-04-17 13:57:15 -07001384 return usage();
1385 }
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001386
Elliott Hughes58305772015-04-17 13:57:15 -07001387 std::string system_src_path = product_file("system");
1388 std::string data_src_path = product_file("data");
1389 std::string vendor_src_path = product_file("vendor");
1390 std::string oem_src_path = product_file("oem");
Elliott Hughes58305772015-04-17 13:57:15 -07001391
Elliott Hughesaa245492015-08-03 10:38:08 -07001392 bool okay = true;
1393 if (okay && (src.empty() || src == "system")) {
1394 okay = do_sync_sync(system_src_path, "/system", list_only);
Elliott Hughes58305772015-04-17 13:57:15 -07001395 }
Elliott Hughesaa245492015-08-03 10:38:08 -07001396 if (okay && (src.empty() || src == "vendor") && directory_exists(vendor_src_path)) {
1397 okay = do_sync_sync(vendor_src_path, "/vendor", list_only);
Elliott Hughes58305772015-04-17 13:57:15 -07001398 }
Elliott Hughesaa245492015-08-03 10:38:08 -07001399 if (okay && (src.empty() || src == "oem") && directory_exists(oem_src_path)) {
1400 okay = do_sync_sync(oem_src_path, "/oem", list_only);
Elliott Hughes58305772015-04-17 13:57:15 -07001401 }
Elliott Hughesaa245492015-08-03 10:38:08 -07001402 if (okay && (src.empty() || src == "data")) {
1403 okay = do_sync_sync(data_src_path, "/data", list_only);
Elliott Hughes58305772015-04-17 13:57:15 -07001404 }
Elliott Hughesaa245492015-08-03 10:38:08 -07001405 return okay ? 0 : 1;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001406 }
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001407 /* passthrough commands */
Riley Andrewsc8514c82014-12-05 17:32:46 -08001408 else if (!strcmp(argv[0],"get-state") ||
Scott Andersone109d262012-04-20 11:21:14 -07001409 !strcmp(argv[0],"get-serialno") ||
1410 !strcmp(argv[0],"get-devpath"))
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001411 {
Elliott Hughes3bd73c12015-05-05 13:10:43 -07001412 return adb_query_command(format_host_command(argv[0], transport_type, serial));
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001413 }
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001414 /* other commands */
Riley Andrewsc8514c82014-12-05 17:32:46 -08001415 else if (!strcmp(argv[0],"logcat") || !strcmp(argv[0],"lolcat") || !strcmp(argv[0],"longcat")) {
Elliott Hughes3bd73c12015-05-05 13:10:43 -07001416 return logcat(transport_type, serial, argc, argv);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001417 }
Riley Andrewsc8514c82014-12-05 17:32:46 -08001418 else if (!strcmp(argv[0],"ppp")) {
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001419 return ppp(argc, argv);
1420 }
Riley Andrewsc8514c82014-12-05 17:32:46 -08001421 else if (!strcmp(argv[0], "start-server")) {
Elliott Hughes078f0fc2015-04-29 08:35:59 -07001422 std::string error;
Spencer Lowf18fc082015-08-11 17:05:02 -07001423 const int result = adb_connect("host:start-server", &error);
1424 if (result < 0) {
1425 fprintf(stderr, "error: %s\n", error.c_str());
1426 }
1427 return result;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001428 }
Riley Andrewsc8514c82014-12-05 17:32:46 -08001429 else if (!strcmp(argv[0], "backup")) {
Christopher Tated2f54152011-04-21 12:53:28 -07001430 return backup(argc, argv);
1431 }
Riley Andrewsc8514c82014-12-05 17:32:46 -08001432 else if (!strcmp(argv[0], "restore")) {
Christopher Tate702967a2011-05-17 15:52:54 -07001433 return restore(argc, argv);
1434 }
Riley Andrewsc8514c82014-12-05 17:32:46 -08001435 else if (!strcmp(argv[0], "keygen")) {
Nick Kralevichbea3f9c2014-11-13 15:17:29 -08001436 if (argc < 2) return usage();
1437 return adb_auth_keygen(argv[1]);
1438 }
Riley Andrewsc8514c82014-12-05 17:32:46 -08001439 else if (!strcmp(argv[0], "jdwp")) {
Tao Bao175b7bb2015-03-29 11:22:34 -07001440 return adb_connect_command("jdwp");
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001441 }
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001442 /* "adb /?" is a common idiom under Windows */
Riley Andrewsc8514c82014-12-05 17:32:46 -08001443 else if (!strcmp(argv[0], "help") || !strcmp(argv[0], "/?")) {
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001444 help();
1445 return 0;
1446 }
Riley Andrewsc8514c82014-12-05 17:32:46 -08001447 else if (!strcmp(argv[0], "version")) {
Elliott Hughes42ae2602015-08-12 08:32:10 -07001448 fprintf(stdout, "%s", adb_version().c_str());
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001449 return 0;
1450 }
Dan Albert90d4b732015-05-20 18:58:41 -07001451 else if (!strcmp(argv[0], "features")) {
David Pursell880be432015-09-04 16:40:30 -07001452 return adb_query_command(format_host_command("features", transport_type, serial));
Dan Albert90d4b732015-05-20 18:58:41 -07001453 }
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001454
1455 usage();
1456 return 1;
1457}
1458
Elliott Hughes3bd73c12015-05-05 13:10:43 -07001459static int pm_command(TransportType transport, const char* serial, int argc, const char** argv) {
Elliott Hughes2baae3a2015-04-17 10:59:34 -07001460 std::string cmd = "shell:pm";
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001461
Elliott Hughes2baae3a2015-04-17 10:59:34 -07001462 while (argc-- > 0) {
Elliott Hughes6c34bba2015-04-17 20:11:08 -07001463 cmd += " " + escape_arg(*argv++);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001464 }
1465
Elliott Hughes15551472015-04-21 17:58:55 -07001466 return send_shell_command(transport, serial, cmd);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001467}
1468
Elliott Hughes3bd73c12015-05-05 13:10:43 -07001469static int uninstall_app(TransportType transport, const char* serial, int argc, const char** argv) {
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001470 /* if the user choose the -k option, we refuse to do it until devices are
1471 out with the option to uninstall the remaining data somehow (adb/ui) */
1472 if (argc == 3 && strcmp(argv[1], "-k") == 0)
1473 {
1474 printf(
1475 "The -k option uninstalls the application while retaining the data/cache.\n"
1476 "At the moment, there is no way to remove the remaining data.\n"
1477 "You will have to reinstall the application with the same signature, and fully uninstall it.\n"
1478 "If you truly wish to continue, execute 'adb shell pm uninstall -k %s'\n", argv[2]);
1479 return -1;
1480 }
1481
1482 /* 'adb uninstall' takes the same arguments as 'pm uninstall' on device */
1483 return pm_command(transport, serial, argc, argv);
1484}
1485
Elliott Hughes5c742702015-07-30 17:42:01 -07001486static int delete_file(TransportType transport, const char* serial, const std::string& filename) {
Elliott Hughes2baae3a2015-04-17 10:59:34 -07001487 std::string cmd = "shell:rm -f " + escape_arg(filename);
Elliott Hughes15551472015-04-21 17:58:55 -07001488 return send_shell_command(transport, serial, cmd);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001489}
1490
Elliott Hughes3bd73c12015-05-05 13:10:43 -07001491static int install_app(TransportType transport, const char* serial, int argc, const char** argv) {
Dan Albert286bb6d2015-07-09 20:35:09 +00001492 static const char *const DATA_DEST = "/data/local/tmp/%s";
1493 static const char *const SD_DEST = "/sdcard/tmp/%s";
Kenny Root597ea5b2011-08-05 11:19:45 -07001494 const char* where = DATA_DEST;
Kenny Root597ea5b2011-08-05 11:19:45 -07001495 int i;
Jeff Sharkey960df972014-06-09 17:30:57 -07001496 struct stat sb;
Kenny Root597ea5b2011-08-05 11:19:45 -07001497
1498 for (i = 1; i < argc; i++) {
Jeff Sharkey960df972014-06-09 17:30:57 -07001499 if (!strcmp(argv[i], "-s")) {
Kenny Root597ea5b2011-08-05 11:19:45 -07001500 where = SD_DEST;
1501 }
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001502 }
1503
Jeff Sharkey960df972014-06-09 17:30:57 -07001504 // Find last APK argument.
1505 // All other arguments passed through verbatim.
1506 int last_apk = -1;
1507 for (i = argc - 1; i >= 0; i--) {
Dan Albertbac34742015-02-25 17:51:28 -08001508 const char* file = argv[i];
Elliott Hughes3e7048c2015-07-27 21:21:39 -07001509 const char* dot = strrchr(file, '.');
Jeff Sharkey960df972014-06-09 17:30:57 -07001510 if (dot && !strcasecmp(dot, ".apk")) {
1511 if (stat(file, &sb) == -1 || !S_ISREG(sb.st_mode)) {
1512 fprintf(stderr, "Invalid APK file: %s\n", file);
1513 return -1;
1514 }
1515
1516 last_apk = i;
1517 break;
1518 }
Kenny Root597ea5b2011-08-05 11:19:45 -07001519 }
1520
Jeff Sharkey960df972014-06-09 17:30:57 -07001521 if (last_apk == -1) {
1522 fprintf(stderr, "Missing APK file\n");
1523 return -1;
Kenny Root597ea5b2011-08-05 11:19:45 -07001524 }
1525
Elliott Hughesaa245492015-08-03 10:38:08 -07001526 int result = -1;
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());
Elliott Hughesaa245492015-08-03 10:38:08 -07001529 if (!do_sync_push(apk_file, apk_dest.c_str(), false)) goto cleanup_apk;
1530 argv[last_apk] = apk_dest.c_str(); /* destination name, not source location */
1531 result = pm_command(transport, serial, argc, argv);
Kenny Root597ea5b2011-08-05 11:19:45 -07001532
Kenny Root60733e92012-03-26 16:14:02 -07001533cleanup_apk:
Dan Albert286bb6d2015-07-09 20:35:09 +00001534 delete_file(transport, serial, apk_dest);
Elliott Hughesaa245492015-08-03 10:38:08 -07001535 return result;
Jeff Sharkey960df972014-06-09 17:30:57 -07001536}
1537
Elliott Hughes3bd73c12015-05-05 13:10:43 -07001538static int install_multiple_app(TransportType transport, const char* serial, int argc,
Elliott Hughes58305772015-04-17 13:57:15 -07001539 const char** argv)
Jeff Sharkey960df972014-06-09 17:30:57 -07001540{
Jeff Sharkey960df972014-06-09 17:30:57 -07001541 int i;
1542 struct stat sb;
Elliott Hughes2940ccf2015-04-17 14:07:52 -07001543 uint64_t total_size = 0;
Jeff Sharkey960df972014-06-09 17:30:57 -07001544
1545 // Find all APK arguments starting at end.
1546 // All other arguments passed through verbatim.
1547 int first_apk = -1;
1548 for (i = argc - 1; i >= 0; i--) {
Dan Albertbac34742015-02-25 17:51:28 -08001549 const char* file = argv[i];
Elliott Hughes3e7048c2015-07-27 21:21:39 -07001550 const char* dot = strrchr(file, '.');
Jeff Sharkey960df972014-06-09 17:30:57 -07001551 if (dot && !strcasecmp(dot, ".apk")) {
1552 if (stat(file, &sb) == -1 || !S_ISREG(sb.st_mode)) {
1553 fprintf(stderr, "Invalid APK file: %s\n", file);
1554 return -1;
1555 }
1556
1557 total_size += sb.st_size;
1558 first_apk = i;
1559 } else {
1560 break;
1561 }
Kenny Root597ea5b2011-08-05 11:19:45 -07001562 }
1563
Jeff Sharkey960df972014-06-09 17:30:57 -07001564 if (first_apk == -1) {
1565 fprintf(stderr, "Missing APK file\n");
1566 return 1;
1567 }
Kenny Root597ea5b2011-08-05 11:19:45 -07001568
Elliott Hughes2940ccf2015-04-17 14:07:52 -07001569 std::string cmd = android::base::StringPrintf("exec:pm install-create -S %" PRIu64, total_size);
Jeff Sharkey960df972014-06-09 17:30:57 -07001570 for (i = 1; i < first_apk; i++) {
Elliott Hughes6c34bba2015-04-17 20:11:08 -07001571 cmd += " " + escape_arg(argv[i]);
Jeff Sharkey960df972014-06-09 17:30:57 -07001572 }
1573
1574 // Create install session
Elliott Hughes078f0fc2015-04-29 08:35:59 -07001575 std::string error;
Elliott Hughes6452a892015-04-29 12:28:13 -07001576 int fd = adb_connect(cmd, &error);
Jeff Sharkey960df972014-06-09 17:30:57 -07001577 if (fd < 0) {
Elliott Hughes078f0fc2015-04-29 08:35:59 -07001578 fprintf(stderr, "Connect error for create: %s\n", error.c_str());
Jeff Sharkey960df972014-06-09 17:30:57 -07001579 return -1;
1580 }
Elliott Hughes2baae3a2015-04-17 10:59:34 -07001581 char buf[BUFSIZ];
Jeff Sharkey960df972014-06-09 17:30:57 -07001582 read_status_line(fd, buf, sizeof(buf));
1583 adb_close(fd);
1584
1585 int session_id = -1;
1586 if (!strncmp("Success", buf, 7)) {
1587 char* start = strrchr(buf, '[');
1588 char* end = strrchr(buf, ']');
1589 if (start && end) {
1590 *end = '\0';
1591 session_id = strtol(start + 1, NULL, 10);
1592 }
1593 }
1594 if (session_id < 0) {
1595 fprintf(stderr, "Failed to create session\n");
Christopher Tate71bbc672014-07-14 16:45:13 -07001596 fputs(buf, stderr);
Jeff Sharkey960df972014-06-09 17:30:57 -07001597 return -1;
1598 }
1599
1600 // Valid session, now stream the APKs
1601 int success = 1;
1602 for (i = first_apk; i < argc; i++) {
Dan Albertbac34742015-02-25 17:51:28 -08001603 const char* file = argv[i];
Jeff Sharkey960df972014-06-09 17:30:57 -07001604 if (stat(file, &sb) == -1) {
1605 fprintf(stderr, "Failed to stat %s\n", file);
1606 success = 0;
1607 goto finalize_session;
1608 }
1609
Elliott Hughes2940ccf2015-04-17 14:07:52 -07001610 std::string cmd = android::base::StringPrintf(
1611 "exec:pm install-write -S %" PRIu64 " %d %d_%s -",
Elliott Hughes5c742702015-07-30 17:42:01 -07001612 static_cast<uint64_t>(sb.st_size), session_id, i, adb_basename(file).c_str());
Jeff Sharkey960df972014-06-09 17:30:57 -07001613
1614 int localFd = adb_open(file, O_RDONLY);
1615 if (localFd < 0) {
Elliott Hughes078f0fc2015-04-29 08:35:59 -07001616 fprintf(stderr, "Failed to open %s: %s\n", file, strerror(errno));
Jeff Sharkey960df972014-06-09 17:30:57 -07001617 success = 0;
1618 goto finalize_session;
1619 }
1620
Elliott Hughes078f0fc2015-04-29 08:35:59 -07001621 std::string error;
Elliott Hughes6452a892015-04-29 12:28:13 -07001622 int remoteFd = adb_connect(cmd, &error);
Jeff Sharkey960df972014-06-09 17:30:57 -07001623 if (remoteFd < 0) {
Elliott Hughes078f0fc2015-04-29 08:35:59 -07001624 fprintf(stderr, "Connect error for write: %s\n", error.c_str());
Jeff Sharkey960df972014-06-09 17:30:57 -07001625 adb_close(localFd);
1626 success = 0;
1627 goto finalize_session;
1628 }
1629
1630 copy_to_file(localFd, remoteFd);
1631 read_status_line(remoteFd, buf, sizeof(buf));
1632
1633 adb_close(localFd);
1634 adb_close(remoteFd);
1635
1636 if (strncmp("Success", buf, 7)) {
1637 fprintf(stderr, "Failed to write %s\n", file);
Christopher Tate71bbc672014-07-14 16:45:13 -07001638 fputs(buf, stderr);
Jeff Sharkey960df972014-06-09 17:30:57 -07001639 success = 0;
1640 goto finalize_session;
1641 }
1642 }
1643
1644finalize_session:
Jeff Sharkeyac77e1f2014-07-25 09:58:25 -07001645 // Commit session if we streamed everything okay; otherwise abandon
Elliott Hughes6452a892015-04-29 12:28:13 -07001646 std::string service =
1647 android::base::StringPrintf("exec:pm install-%s %d",
1648 success ? "commit" : "abandon", session_id);
1649 fd = adb_connect(service, &error);
Jeff Sharkey960df972014-06-09 17:30:57 -07001650 if (fd < 0) {
Elliott Hughes078f0fc2015-04-29 08:35:59 -07001651 fprintf(stderr, "Connect error for finalize: %s\n", error.c_str());
Jeff Sharkey960df972014-06-09 17:30:57 -07001652 return -1;
1653 }
1654 read_status_line(fd, buf, sizeof(buf));
1655 adb_close(fd);
1656
1657 if (!strncmp("Success", buf, 7)) {
Christopher Tate71bbc672014-07-14 16:45:13 -07001658 fputs(buf, stderr);
Jeff Sharkey960df972014-06-09 17:30:57 -07001659 return 0;
1660 } else {
1661 fprintf(stderr, "Failed to finalize session\n");
Christopher Tate71bbc672014-07-14 16:45:13 -07001662 fputs(buf, stderr);
Jeff Sharkey960df972014-06-09 17:30:57 -07001663 return -1;
1664 }
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001665}