blob: cef5f39cef1945aa228809d8f1fb2748901670f2 [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 Hughesaceb9c02015-05-04 19:29:32 -070050static int install_app(transport_type t, const char* serial, int argc, const char** argv);
51static int install_multiple_app(transport_type t, const char* serial, int argc, const char** argv);
52static int uninstall_app(transport_type 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 Hughes02418b32015-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 Lockwoodcbbe79a2010-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 Lockwoodcbbe79a2010-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 " (see 'adb help all')\n"
114 " adb shell - run remote shell interactively\n"
115 " adb shell <command> - run remote shell command\n"
116 " adb emu <command> - run emulator console command\n"
117 " adb logcat [ <filter-spec> ] - View device log\n"
David 'Digit' Turner0d82fbf2012-11-14 15:01:55 +0100118 " adb forward --list - list all forward socket connections.\n"
119 " the format is a list of lines with the following format:\n"
120 " <serial> \" \" <local> \" \" <remote> \"\\n\"\n"
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800121 " adb forward <local> <remote> - forward socket connections\n"
122 " forward specs are one of: \n"
123 " tcp:<port>\n"
124 " localabstract:<unix domain socket name>\n"
125 " localreserved:<unix domain socket name>\n"
126 " localfilesystem:<unix domain socket name>\n"
127 " dev:<character device name>\n"
128 " jdwp:<process pid> (remote only)\n"
David 'Digit' Turner0d82fbf2012-11-14 15:01:55 +0100129 " adb forward --no-rebind <local> <remote>\n"
130 " - same as 'adb forward <local> <remote>' but fails\n"
131 " if <local> is already forwarded\n"
132 " adb forward --remove <local> - remove a specific forward socket connection\n"
133 " adb forward --remove-all - remove all forward socket connections\n"
David 'Digit' Turner25258692013-03-21 21:07:42 +0100134 " adb reverse --list - list all reverse socket connections from device\n"
135 " adb reverse <remote> <local> - reverse socket connections\n"
136 " reverse specs are one of:\n"
137 " tcp:<port>\n"
138 " localabstract:<unix domain socket name>\n"
139 " localreserved:<unix domain socket name>\n"
140 " localfilesystem:<unix domain socket name>\n"
141 " adb reverse --norebind <remote> <local>\n"
142 " - same as 'adb reverse <remote> <local>' but fails\n"
143 " if <remote> is already reversed.\n"
144 " adb reverse --remove <remote>\n"
145 " - remove a specific reversed socket connection\n"
146 " adb reverse --remove-all - remove all reversed socket connections from device\n"
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800147 " adb jdwp - list PIDs of processes hosting a JDWP transport\n"
Jeff Sharkey960df972014-06-09 17:30:57 -0700148 " adb install [-lrtsd] <file>\n"
149 " adb install-multiple [-lrtsdp] <file...>\n"
Anonymous Coward4474ac42012-04-24 10:43:41 -0700150 " - push this package file to the device and install it\n"
Jeff Sharkey960df972014-06-09 17:30:57 -0700151 " (-l: forward lock application)\n"
152 " (-r: replace existing application)\n"
153 " (-t: allow test packages)\n"
154 " (-s: install application on sdcard)\n"
155 " (-d: allow version code downgrade)\n"
156 " (-p: partial application install)\n"
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800157 " adb uninstall [-k] <package> - remove this app package from the device\n"
158 " ('-k' means keep the data and cache directories)\n"
159 " adb bugreport - return all information from the device\n"
160 " that should be included in a bug report.\n"
161 "\n"
Christopher Tate0c06eb52013-03-06 16:40:52 -0800162 " adb backup [-f <file>] [-apk|-noapk] [-obb|-noobb] [-shared|-noshared] [-all] [-system|-nosystem] [<packages...>]\n"
Christopher Tate56885092011-10-03 18:27:01 -0700163 " - write an archive of the device's data to <file>.\n"
164 " If no -f option is supplied then the data is written\n"
165 " to \"backup.ab\" in the current directory.\n"
Christopher Tated2f54152011-04-21 12:53:28 -0700166 " (-apk|-noapk enable/disable backup of the .apks themselves\n"
Christopher Tatede034ec2011-08-09 17:05:29 -0700167 " in the archive; the default is noapk.)\n"
Christopher Tate0c06eb52013-03-06 16:40:52 -0800168 " (-obb|-noobb enable/disable backup of any installed apk expansion\n"
169 " (aka .obb) files associated with each application; the default\n"
170 " is noobb.)\n"
Christopher Tated2f54152011-04-21 12:53:28 -0700171 " (-shared|-noshared enable/disable backup of the device's\n"
172 " shared storage / SD card contents; the default is noshared.)\n"
173 " (-all means to back up all installed applications)\n"
Christopher Tate56885092011-10-03 18:27:01 -0700174 " (-system|-nosystem toggles whether -all automatically includes\n"
175 " system applications; the default is to include system apps)\n"
Christopher Tated2f54152011-04-21 12:53:28 -0700176 " (<packages...> is the list of applications to be backed up. If\n"
177 " the -all or -shared flags are passed, then the package\n"
Christopher Tate56885092011-10-03 18:27:01 -0700178 " list is optional. Applications explicitly given on the\n"
179 " command line will be included even if -nosystem would\n"
180 " ordinarily cause them to be omitted.)\n"
Christopher Tated2f54152011-04-21 12:53:28 -0700181 "\n"
Christopher Tatede034ec2011-08-09 17:05:29 -0700182 " adb restore <file> - restore device contents from the <file> backup archive\n"
Christopher Tate702967a2011-05-17 15:52:54 -0700183 "\n"
Paul Lawrence982089d2014-12-03 15:31:57 -0800184 " adb disable-verity - disable dm-verity checking on USERDEBUG builds\n"
185 " adb enable-verity - re-enable dm-verity checking on USERDEBUG builds\n"
Nick Kralevichbea3f9c2014-11-13 15:17:29 -0800186 " adb keygen <file> - generate adb public/private key. The private key is stored in <file>,\n"
187 " and the public key is stored in <file>.pub. Any existing files\n"
188 " are overwritten.\n"
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800189 " adb help - show this help message\n"
190 " adb version - show version num\n"
191 "\n"
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800192 "scripting:\n"
193 " adb wait-for-device - block until device is online\n"
194 " adb start-server - ensure that there is a server running\n"
195 " adb kill-server - kill the server if it is running\n"
196 " adb get-state - prints: offline | bootloader | device\n"
197 " adb get-serialno - prints: <serial-number>\n"
Scott Andersone109d262012-04-20 11:21:14 -0700198 " adb get-devpath - prints: <device-path>\n"
Elliott Hughesec7a6672015-03-16 21:58:32 +0000199 " adb remount - remounts the /system, /vendor (if present) and /oem (if present) partitions on the device read-write\n"
Tao Bao175b7bb2015-03-29 11:22:34 -0700200 " adb reboot [bootloader|recovery]\n"
201 " - reboots the device, optionally into the bootloader or recovery program.\n"
202 " adb reboot sideload - reboots the device into the sideload mode in recovery program (adb root required).\n"
203 " adb reboot sideload-auto-reboot\n"
204 " - reboots into the sideload mode, then reboots automatically after the sideload regardless of the result.\n"
Romain Guy311add42009-12-14 14:42:17 -0800205 " adb reboot-bootloader - reboots the device into the bootloader\n"
Mike Lockwoodff196702009-08-24 15:58:40 -0700206 " adb root - restarts the adbd daemon with root permissions\n"
Dan Pasanen98858812014-10-06 12:57:20 -0500207 " adb unroot - restarts the adbd daemon without root permissions\n"
Romain Guy311add42009-12-14 14:42:17 -0800208 " adb usb - restarts the adbd daemon listening on USB\n"
Paul Lawrenceec900bb2014-10-09 14:22:49 +0000209 " adb tcpip <port> - restarts the adbd daemon listening on TCP on the specified port\n"
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"
224 "environmental variables:\n"
225 " 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 Hughes207ddb22015-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 Hughes207ddb22015-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 Hughes207ddb22015-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;
Christopher Tated2f54152011-04-21 12:53:28 -0700305
306 D("copy_to_file(%d -> %d)\n", inFd, outFd);
Yabin Cuid325e862014-11-17 14:48:25 -0800307
Jeff Sharkey5d9d4342014-05-26 18:30:43 -0700308 if (inFd == STDIN_FILENO) {
309 stdin_raw_init(STDIN_FILENO);
310 }
Yabin Cuid325e862014-11-17 14:48:25 -0800311
Elliott Hughesa7090b92015-04-17 17:03:59 -0700312 while (true) {
Jeff Sharkey5d9d4342014-05-26 18:30:43 -0700313 if (inFd == STDIN_FILENO) {
314 len = unix_read(inFd, buf, BUFSIZE);
315 } else {
316 len = adb_read(inFd, buf, BUFSIZE);
317 }
Christopher Tated2f54152011-04-21 12:53:28 -0700318 if (len == 0) {
Christopher Tate5b811fa2011-06-10 11:38:37 -0700319 D("copy_to_file() : read 0 bytes; exiting\n");
Christopher Tated2f54152011-04-21 12:53:28 -0700320 break;
321 }
322 if (len < 0) {
Christopher Tate5b811fa2011-06-10 11:38:37 -0700323 if (errno == EINTR) {
324 D("copy_to_file() : EINTR, retrying\n");
325 continue;
326 }
Christopher Tated2f54152011-04-21 12:53:28 -0700327 D("copy_to_file() : error %d\n", errno);
328 break;
329 }
Jeff Sharkey5d9d4342014-05-26 18:30:43 -0700330 if (outFd == STDOUT_FILENO) {
331 fwrite(buf, 1, len, stdout);
332 fflush(stdout);
333 } else {
334 adb_write(outFd, buf, len);
335 }
Christopher Tatec9cd3b92011-06-01 17:56:23 -0700336 total += len;
Christopher Tated2f54152011-04-21 12:53:28 -0700337 }
Yabin Cuid325e862014-11-17 14:48:25 -0800338
Jeff Sharkey5d9d4342014-05-26 18:30:43 -0700339 if (inFd == STDIN_FILENO) {
340 stdin_raw_restore(STDIN_FILENO);
341 }
Yabin Cuid325e862014-11-17 14:48:25 -0800342
Christopher Tatec9cd3b92011-06-01 17:56:23 -0700343 D("copy_to_file() finished after %lu bytes\n", total);
Christopher Tate5b811fa2011-06-10 11:38:37 -0700344 free(buf);
Christopher Tated2f54152011-04-21 12:53:28 -0700345}
346
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800347static void *stdin_read_thread(void *x)
348{
349 int fd, fdi;
350 unsigned char buf[1024];
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800351 int r, n;
352 int state = 0;
353
354 int *fds = (int*) x;
355 fd = fds[0];
356 fdi = fds[1];
357 free(fds);
358
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800359 for(;;) {
360 /* fdi is really the client's stdin, so use read, not adb_read here */
JP Abgrall408fa572011-03-16 15:57:42 -0700361 D("stdin_read_thread(): pre unix_read(fdi=%d,...)\n", fdi);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800362 r = unix_read(fdi, buf, 1024);
JP Abgrall408fa572011-03-16 15:57:42 -0700363 D("stdin_read_thread(): post unix_read(fdi=%d,...)\n", fdi);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800364 if(r == 0) break;
365 if(r < 0) {
366 if(errno == EINTR) continue;
367 break;
368 }
Mike Lockwood67d53582010-05-25 13:40:15 -0400369 for(n = 0; n < r; n++){
370 switch(buf[n]) {
371 case '\n':
372 state = 1;
373 break;
374 case '\r':
375 state = 1;
376 break;
377 case '~':
378 if(state == 1) state++;
379 break;
380 case '.':
381 if(state == 2) {
382 fprintf(stderr,"\n* disconnect *\n");
Mike Lockwood67d53582010-05-25 13:40:15 -0400383 stdin_raw_restore(fdi);
Mike Lockwood67d53582010-05-25 13:40:15 -0400384 exit(0);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800385 }
Mike Lockwood67d53582010-05-25 13:40:15 -0400386 default:
387 state = 0;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800388 }
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800389 }
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800390 r = adb_write(fd, buf, r);
391 if(r <= 0) {
392 break;
393 }
394 }
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800395 return 0;
396}
397
Elliott Hughes58305772015-04-17 13:57:15 -0700398static int interactive_shell() {
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800399 adb_thread_t thr;
Elliott Hughes71aeb792015-04-29 08:35:59 -0700400 int fdi;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800401
Elliott Hughes71aeb792015-04-29 08:35:59 -0700402 std::string error;
403 int fd = adb_connect("shell:", &error);
404 if (fd < 0) {
405 fprintf(stderr,"error: %s\n", error.c_str());
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800406 return 1;
407 }
408 fdi = 0; //dup(0);
409
Dan Albertbac34742015-02-25 17:51:28 -0800410 int* fds = reinterpret_cast<int*>(malloc(sizeof(int) * 2));
Elliott Hughesdc3b4592015-04-21 19:39:52 -0700411 if (fds == nullptr) {
412 fprintf(stderr, "couldn't allocate fds array: %s\n", strerror(errno));
413 return 1;
414 }
415
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800416 fds[0] = fd;
417 fds[1] = fdi;
418
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800419 stdin_raw_init(fdi);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800420 adb_thread_create(&thr, stdin_read_thread, fds);
421 read_and_dump(fd);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800422 stdin_raw_restore(fdi);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800423 return 0;
424}
425
426
Elliott Hughesf1a58f82015-04-29 12:28:13 -0700427static std::string format_host_command(const char* command, transport_type type, const char* serial) {
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800428 if (serial) {
Elliott Hughesf1a58f82015-04-29 12:28:13 -0700429 return android::base::StringPrintf("host-serial:%s:%s", serial, command);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800430 }
Elliott Hughesf1a58f82015-04-29 12:28:13 -0700431
432 const char* prefix = "host";
433 if (type == kTransportUsb) {
434 prefix = "host-usb";
435 } else if (type == kTransportLocal) {
436 prefix = "host-local";
437 }
438 return android::base::StringPrintf("%s:%s", prefix, command);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800439}
440
Elliott Hughesf1a58f82015-04-29 12:28:13 -0700441static int adb_download_buffer(const char *service, const char *fn, const void* data, unsigned sz,
Elliott Hughes71aeb792015-04-29 08:35:59 -0700442 bool show_progress)
Doug Zongker447f0612012-01-09 14:54:53 -0800443{
Elliott Hughes71aeb792015-04-29 08:35:59 -0700444 std::string error;
Elliott Hughesf1a58f82015-04-29 12:28:13 -0700445 int fd = adb_connect(android::base::StringPrintf("%s:%d", service, sz), &error);
Elliott Hughes71aeb792015-04-29 08:35:59 -0700446 if (fd < 0) {
447 fprintf(stderr,"error: %s\n", error.c_str());
Doug Zongker447f0612012-01-09 14:54:53 -0800448 return -1;
449 }
450
451 int opt = CHUNK_SIZE;
Spencer Lowf055c192015-01-25 14:40:16 -0800452 opt = adb_setsockopt(fd, SOL_SOCKET, SO_SNDBUF, (const void *) &opt, sizeof(opt));
Doug Zongker447f0612012-01-09 14:54:53 -0800453
Elliott Hughesf1a58f82015-04-29 12:28:13 -0700454 unsigned total = sz;
Dan Albertbac34742015-02-25 17:51:28 -0800455 const uint8_t* ptr = reinterpret_cast<const uint8_t*>(data);
Doug Zongker447f0612012-01-09 14:54:53 -0800456
Elliott Hughes71aeb792015-04-29 08:35:59 -0700457 if (show_progress) {
Doug Zongker447f0612012-01-09 14:54:53 -0800458 char *x = strrchr(service, ':');
459 if(x) service = x + 1;
460 }
461
Elliott Hughesf1a58f82015-04-29 12:28:13 -0700462 while (sz > 0) {
Doug Zongker447f0612012-01-09 14:54:53 -0800463 unsigned xfer = (sz > CHUNK_SIZE) ? CHUNK_SIZE : sz;
Elliott Hughes71aeb792015-04-29 08:35:59 -0700464 if (!WriteFdExactly(fd, ptr, xfer)) {
465 std::string error;
466 adb_status(fd, &error);
467 fprintf(stderr,"* failed to write data '%s' *\n", error.c_str());
Doug Zongker447f0612012-01-09 14:54:53 -0800468 return -1;
469 }
470 sz -= xfer;
471 ptr += xfer;
Elliott Hughes71aeb792015-04-29 08:35:59 -0700472 if (show_progress) {
Magnus Eriksson86ae6d52013-03-05 07:37:32 +0100473 printf("sending: '%s' %4d%% \r", fn, (int)(100LL - ((100LL * sz) / (total))));
Doug Zongker447f0612012-01-09 14:54:53 -0800474 fflush(stdout);
475 }
476 }
Elliott Hughes71aeb792015-04-29 08:35:59 -0700477 if (show_progress) {
Doug Zongker447f0612012-01-09 14:54:53 -0800478 printf("\n");
479 }
480
Elliott Hughes92af7332015-04-30 17:32:03 -0700481 if (!adb_status(fd, &error)) {
482 fprintf(stderr,"* error response '%s' *\n", error.c_str());
Doug Zongker447f0612012-01-09 14:54:53 -0800483 return -1;
484 }
485
486 adb_close(fd);
487 return 0;
488}
489
Doug Zongker71fe5842014-06-26 15:35:36 -0700490#define SIDELOAD_HOST_BLOCK_SIZE (CHUNK_SIZE)
491
492/*
493 * The sideload-host protocol serves the data in a file (given on the
494 * command line) to the client, using a simple protocol:
495 *
496 * - The connect message includes the total number of bytes in the
497 * file and a block size chosen by us.
498 *
499 * - The other side sends the desired block number as eight decimal
500 * digits (eg "00000023" for block 23). Blocks are numbered from
501 * zero.
502 *
503 * - We send back the data of the requested block. The last block is
504 * likely to be partial; when the last block is requested we only
505 * send the part of the block that exists, it's not padded up to the
506 * block size.
507 *
508 * - When the other side sends "DONEDONE" instead of a block number,
509 * we hang up.
510 */
Elliott Hughes58305772015-04-17 13:57:15 -0700511static int adb_sideload_host(const char* fn) {
Doug Zongker71fe5842014-06-26 15:35:36 -0700512 unsigned sz;
513 size_t xfer = 0;
514 int status;
Dan Albertbac34742015-02-25 17:51:28 -0800515 int last_percent = -1;
516 int opt = SIDELOAD_HOST_BLOCK_SIZE;
Doug Zongker71fe5842014-06-26 15:35:36 -0700517
518 printf("loading: '%s'", fn);
519 fflush(stdout);
Dan Albertbac34742015-02-25 17:51:28 -0800520 uint8_t* data = reinterpret_cast<uint8_t*>(load_file(fn, &sz));
Doug Zongker71fe5842014-06-26 15:35:36 -0700521 if (data == 0) {
522 printf("\n");
523 fprintf(stderr, "* cannot read '%s' *\n", fn);
524 return -1;
525 }
526
Elliott Hughesf1a58f82015-04-29 12:28:13 -0700527 std::string service =
528 android::base::StringPrintf("sideload-host:%d:%d", sz, SIDELOAD_HOST_BLOCK_SIZE);
Elliott Hughes71aeb792015-04-29 08:35:59 -0700529 std::string error;
Elliott Hughesf1a58f82015-04-29 12:28:13 -0700530 int fd = adb_connect(service, &error);
Doug Zongker71fe5842014-06-26 15:35:36 -0700531 if (fd < 0) {
532 // Try falling back to the older sideload method. Maybe this
533 // is an older device that doesn't support sideload-host.
534 printf("\n");
Elliott Hughes71aeb792015-04-29 08:35:59 -0700535 status = adb_download_buffer("sideload", fn, data, sz, true);
Doug Zongker71fe5842014-06-26 15:35:36 -0700536 goto done;
537 }
538
Spencer Lowf055c192015-01-25 14:40:16 -0800539 opt = adb_setsockopt(fd, SOL_SOCKET, SO_SNDBUF, (const void *) &opt, sizeof(opt));
Doug Zongker71fe5842014-06-26 15:35:36 -0700540
Elliott Hughesa7090b92015-04-17 17:03:59 -0700541 while (true) {
Elliott Hughesf1a58f82015-04-29 12:28:13 -0700542 char buf[9];
Dan Albertcc731cc2015-02-24 21:26:58 -0800543 if (!ReadFdExactly(fd, buf, 8)) {
Elliott Hughes71aeb792015-04-29 08:35:59 -0700544 fprintf(stderr, "* failed to read command: %s\n", strerror(errno));
Doug Zongker71fe5842014-06-26 15:35:36 -0700545 status = -1;
546 goto done;
547 }
Elliott Hughesf1a58f82015-04-29 12:28:13 -0700548 buf[8] = '\0';
Doug Zongker71fe5842014-06-26 15:35:36 -0700549
Elliott Hughesf1a58f82015-04-29 12:28:13 -0700550 if (strcmp("DONEDONE", buf) == 0) {
Doug Zongker71fe5842014-06-26 15:35:36 -0700551 status = 0;
552 break;
553 }
554
Doug Zongker71fe5842014-06-26 15:35:36 -0700555 int block = strtol(buf, NULL, 10);
556
557 size_t offset = block * SIDELOAD_HOST_BLOCK_SIZE;
558 if (offset >= sz) {
Elliott Hughes71aeb792015-04-29 08:35:59 -0700559 fprintf(stderr, "* attempt to read block %d past end\n", block);
Doug Zongker71fe5842014-06-26 15:35:36 -0700560 status = -1;
561 goto done;
562 }
563 uint8_t* start = data + offset;
564 size_t offset_end = offset + SIDELOAD_HOST_BLOCK_SIZE;
565 size_t to_write = SIDELOAD_HOST_BLOCK_SIZE;
566 if (offset_end > sz) {
567 to_write = sz - offset;
568 }
569
Dan Albertcc731cc2015-02-24 21:26:58 -0800570 if(!WriteFdExactly(fd, start, to_write)) {
Elliott Hughes71aeb792015-04-29 08:35:59 -0700571 adb_status(fd, &error);
572 fprintf(stderr,"* failed to write data '%s' *\n", error.c_str());
Doug Zongker71fe5842014-06-26 15:35:36 -0700573 status = -1;
574 goto done;
575 }
576 xfer += to_write;
577
578 // For normal OTA packages, we expect to transfer every byte
579 // twice, plus a bit of overhead (one read during
580 // verification, one read of each byte for installation, plus
581 // extra access to things like the zip central directory).
582 // This estimate of the completion becomes 100% when we've
583 // transferred ~2.13 (=100/47) times the package size.
584 int percent = (int)(xfer * 47LL / (sz ? sz : 1));
585 if (percent != last_percent) {
586 printf("\rserving: '%s' (~%d%%) ", fn, percent);
587 fflush(stdout);
588 last_percent = percent;
589 }
590 }
591
Colin Cross6d6a8982014-07-07 14:12:41 -0700592 printf("\rTotal xfer: %.2fx%*s\n", (double)xfer / (sz ? sz : 1), (int)strlen(fn)+10, "");
Doug Zongker71fe5842014-06-26 15:35:36 -0700593
594 done:
595 if (fd >= 0) adb_close(fd);
596 free(data);
597 return status;
598}
599
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800600/**
601 * Run ppp in "notty" mode against a resource listed as the first parameter
602 * eg:
603 *
604 * ppp dev:/dev/omap_csmi_tty0 <ppp options>
605 *
606 */
Elliott Hughes58305772015-04-17 13:57:15 -0700607static int ppp(int argc, const char** argv) {
Yabin Cuie77b6a02014-11-11 09:24:11 -0800608#if defined(_WIN32)
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800609 fprintf(stderr, "error: adb %s not implemented on Win32\n", argv[0]);
610 return -1;
611#else
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800612 if (argc < 2) {
613 fprintf(stderr, "usage: adb %s <adb service name> [ppp opts]\n",
614 argv[0]);
615
616 return 1;
617 }
618
Dan Albertbac34742015-02-25 17:51:28 -0800619 const char* adb_service_name = argv[1];
Elliott Hughes71aeb792015-04-29 08:35:59 -0700620 std::string error;
621 int fd = adb_connect(adb_service_name, &error);
622 if (fd < 0) {
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800623 fprintf(stderr,"Error: Could not open adb service: %s. Error: %s\n",
Elliott Hughes71aeb792015-04-29 08:35:59 -0700624 adb_service_name, error.c_str());
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800625 return 1;
626 }
627
Elliott Hughes71aeb792015-04-29 08:35:59 -0700628 pid_t pid = fork();
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800629
630 if (pid < 0) {
631 perror("from fork()");
632 return 1;
633 } else if (pid == 0) {
634 int err;
635 int i;
636 const char **ppp_args;
637
638 // copy args
639 ppp_args = (const char **) alloca(sizeof(char *) * argc + 1);
640 ppp_args[0] = "pppd";
641 for (i = 2 ; i < argc ; i++) {
642 //argv[2] and beyond become ppp_args[1] and beyond
643 ppp_args[i - 1] = argv[i];
644 }
645 ppp_args[i-1] = NULL;
646
647 // child side
648
649 dup2(fd, STDIN_FILENO);
650 dup2(fd, STDOUT_FILENO);
651 adb_close(STDERR_FILENO);
652 adb_close(fd);
653
654 err = execvp("pppd", (char * const *)ppp_args);
655
656 if (err < 0) {
657 perror("execing pppd");
658 }
659 exit(-1);
660 } else {
661 // parent side
662
663 adb_close(fd);
664 return 0;
665 }
Yabin Cuie77b6a02014-11-11 09:24:11 -0800666#endif /* !defined(_WIN32) */
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800667}
668
Elliott Hughesaceb9c02015-05-04 19:29:32 -0700669static bool wait_for_device(const char* service, transport_type t, const char* serial) {
670 // Was the caller vague about what they'd like us to wait for?
671 // If so, check they weren't more specific in their choice of transport type.
672 if (strcmp(service, "wait-for-device") == 0) {
673 if (t == kTransportUsb) {
674 service = "wait-for-usb";
675 } else if (t == kTransportLocal) {
676 service = "wait-for-local";
677 } else {
678 service = "wait-for-any";
679 }
680 }
681
682 std::string cmd = format_host_command(service, t, serial);
683 std::string error;
684 if (adb_command(cmd, &error)) {
685 D("failure: %s *\n", error.c_str());
686 fprintf(stderr,"error: %s\n", error.c_str());
687 return false;
688 }
689
690 return true;
691}
692
693static int send_shell_command(transport_type transport_type, const char* serial,
Elliott Hughes2baae3a2015-04-17 10:59:34 -0700694 const std::string& command) {
695 int fd;
696 while (true) {
Elliott Hughes71aeb792015-04-29 08:35:59 -0700697 std::string error;
Elliott Hughesf1a58f82015-04-29 12:28:13 -0700698 fd = adb_connect(command, &error);
Elliott Hughes71aeb792015-04-29 08:35:59 -0700699 if (fd >= 0) {
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800700 break;
Elliott Hughes71aeb792015-04-29 08:35:59 -0700701 }
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800702 fprintf(stderr,"- waiting for device -\n");
703 adb_sleep_ms(1000);
Elliott Hughesaceb9c02015-05-04 19:29:32 -0700704 wait_for_device("wait-for-device", transport_type, serial);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800705 }
706
707 read_and_dump(fd);
Elliott Hughes2baae3a2015-04-17 10:59:34 -0700708 int rc = adb_close(fd);
709 if (rc) {
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800710 perror("close");
Elliott Hughes2baae3a2015-04-17 10:59:34 -0700711 }
712 return rc;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800713}
714
Elliott Hughes2baae3a2015-04-17 10:59:34 -0700715static int logcat(transport_type transport, const char* serial, int argc, const char** argv) {
716 char* log_tags = getenv("ANDROID_LOG_TAGS");
717 std::string quoted = escape_arg(log_tags == nullptr ? "" : log_tags);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800718
Elliott Hughes2baae3a2015-04-17 10:59:34 -0700719 std::string cmd = "shell:export ANDROID_LOG_TAGS=\"" + quoted + "\"; exec logcat";
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800720
Jeff Sharkeyfd546e82014-06-10 11:31:24 -0700721 if (!strcmp(argv[0], "longcat")) {
Elliott Hughes2baae3a2015-04-17 10:59:34 -0700722 cmd += " -v long";
Christopher Tatedb0a8802011-11-30 13:00:33 -0800723 }
724
Elliott Hughes6c34bba2015-04-17 20:11:08 -0700725 --argc;
726 ++argv;
Elliott Hughes2baae3a2015-04-17 10:59:34 -0700727 while (argc-- > 0) {
Elliott Hughes6c34bba2015-04-17 20:11:08 -0700728 cmd += " " + escape_arg(*argv++);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800729 }
730
Elliott Hughes15551472015-04-21 17:58:55 -0700731 return send_shell_command(transport, serial, cmd);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800732}
733
Mark Salyzyn60299df2014-04-30 09:10:31 -0700734static int mkdirs(const char *path)
Christopher Tateb1dfffe2011-12-08 19:04:34 -0800735{
736 int ret;
Mark Salyzyn60299df2014-04-30 09:10:31 -0700737 char *x = (char *)path + 1;
Christopher Tateb1dfffe2011-12-08 19:04:34 -0800738
739 for(;;) {
740 x = adb_dirstart(x);
741 if(x == 0) return 0;
742 *x = 0;
743 ret = adb_mkdir(path, 0775);
744 *x = OS_PATH_SEPARATOR;
745 if((ret < 0) && (errno != EEXIST)) {
746 return ret;
747 }
748 x++;
749 }
750 return 0;
751}
752
Dan Albertbac34742015-02-25 17:51:28 -0800753static int backup(int argc, const char** argv) {
Elliott Hughes6c34bba2015-04-17 20:11:08 -0700754 const char* filename = "./backup.ab";
Christopher Tated2f54152011-04-21 12:53:28 -0700755
Christopher Tatec9cd3b92011-06-01 17:56:23 -0700756 /* find, extract, and use any -f argument */
Elliott Hughes6c34bba2015-04-17 20:11:08 -0700757 for (int i = 1; i < argc; i++) {
Christopher Tatec9cd3b92011-06-01 17:56:23 -0700758 if (!strcmp("-f", argv[i])) {
759 if (i == argc-1) {
760 fprintf(stderr, "adb: -f passed with no filename\n");
761 return usage();
762 }
763 filename = argv[i+1];
Elliott Hughes6c34bba2015-04-17 20:11:08 -0700764 for (int j = i+2; j <= argc; ) {
Christopher Tatec9cd3b92011-06-01 17:56:23 -0700765 argv[i++] = argv[j++];
766 }
767 argc -= 2;
768 argv[argc] = NULL;
769 }
Christopher Tated2f54152011-04-21 12:53:28 -0700770 }
771
Christopher Tatebb86bc52011-08-22 17:12:08 -0700772 /* bare "adb backup" or "adb backup -f filename" are not valid invocations */
773 if (argc < 2) return usage();
774
Christopher Tateb1dfffe2011-12-08 19:04:34 -0800775 adb_unlink(filename);
Mark Salyzyn60299df2014-04-30 09:10:31 -0700776 mkdirs(filename);
Elliott Hughes6c34bba2015-04-17 20:11:08 -0700777 int outFd = adb_creat(filename, 0640);
Christopher Tated2f54152011-04-21 12:53:28 -0700778 if (outFd < 0) {
779 fprintf(stderr, "adb: unable to open file %s\n", filename);
780 return -1;
781 }
782
Elliott Hughes6c34bba2015-04-17 20:11:08 -0700783 std::string cmd = "backup:";
784 --argc;
785 ++argv;
786 while (argc-- > 0) {
787 cmd += " " + escape_arg(*argv++);
Christopher Tated2f54152011-04-21 12:53:28 -0700788 }
789
Elliott Hughes6c34bba2015-04-17 20:11:08 -0700790 D("backup. filename=%s cmd=%s\n", filename, cmd.c_str());
Elliott Hughes71aeb792015-04-29 08:35:59 -0700791 std::string error;
Elliott Hughesf1a58f82015-04-29 12:28:13 -0700792 int fd = adb_connect(cmd, &error);
Christopher Tated2f54152011-04-21 12:53:28 -0700793 if (fd < 0) {
Elliott Hughes71aeb792015-04-29 08:35:59 -0700794 fprintf(stderr, "adb: unable to connect for backup: %s\n", error.c_str());
Christopher Tated2f54152011-04-21 12:53:28 -0700795 adb_close(outFd);
796 return -1;
797 }
798
Christopher Tatebffa4ca2012-01-06 15:43:03 -0800799 printf("Now unlock your device and confirm the backup operation.\n");
Christopher Tated2f54152011-04-21 12:53:28 -0700800 copy_to_file(fd, outFd);
801
802 adb_close(fd);
803 adb_close(outFd);
804 return 0;
805}
806
Dan Albertbac34742015-02-25 17:51:28 -0800807static int restore(int argc, const char** argv) {
Christopher Tate702967a2011-05-17 15:52:54 -0700808 if (argc != 2) return usage();
809
Elliott Hughes71aeb792015-04-29 08:35:59 -0700810 const char* filename = argv[1];
811 int tarFd = adb_open(filename, O_RDONLY);
Christopher Tate702967a2011-05-17 15:52:54 -0700812 if (tarFd < 0) {
Elliott Hughes71aeb792015-04-29 08:35:59 -0700813 fprintf(stderr, "adb: unable to open file %s: %s\n", filename, strerror(errno));
Christopher Tate702967a2011-05-17 15:52:54 -0700814 return -1;
815 }
816
Elliott Hughes71aeb792015-04-29 08:35:59 -0700817 std::string error;
818 int fd = adb_connect("restore:", &error);
Christopher Tate702967a2011-05-17 15:52:54 -0700819 if (fd < 0) {
Elliott Hughes71aeb792015-04-29 08:35:59 -0700820 fprintf(stderr, "adb: unable to connect for restore: %s\n", error.c_str());
Christopher Tate702967a2011-05-17 15:52:54 -0700821 adb_close(tarFd);
822 return -1;
823 }
824
Christopher Tatebffa4ca2012-01-06 15:43:03 -0800825 printf("Now unlock your device and confirm the restore operation.\n");
Christopher Tate702967a2011-05-17 15:52:54 -0700826 copy_to_file(tarFd, fd);
827
828 adb_close(fd);
829 adb_close(tarFd);
830 return 0;
831}
832
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800833/* <hint> may be:
834 * - A simple product name
835 * e.g., "sooner"
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800836 * - A relative path from the CWD to the ANDROID_PRODUCT_OUT dir
837 * e.g., "out/target/product/sooner"
838 * - An absolute path to the PRODUCT_OUT dir
839 * e.g., "/src/device/out/target/product/sooner"
840 *
841 * Given <hint>, try to construct an absolute path to the
842 * ANDROID_PRODUCT_OUT dir.
843 */
Elliott Hughes58305772015-04-17 13:57:15 -0700844static std::string find_product_out_path(const char* hint) {
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800845 if (hint == NULL || hint[0] == '\0') {
Elliott Hughes58305772015-04-17 13:57:15 -0700846 return "";
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800847 }
848
Elliott Hughes58305772015-04-17 13:57:15 -0700849 // If it's already absolute, don't bother doing any work.
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800850 if (adb_is_absolute_host_path(hint)) {
Elliott Hughes58305772015-04-17 13:57:15 -0700851 return hint;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800852 }
853
Elliott Hughes58305772015-04-17 13:57:15 -0700854 // If there are any slashes in it, assume it's a relative path;
855 // make it absolute.
Elliott Hughesa7090b92015-04-17 17:03:59 -0700856 if (adb_dirstart(hint) != nullptr) {
857 std::string cwd;
858 if (!getcwd(&cwd)) {
859 fprintf(stderr, "adb: getcwd failed: %s\n", strerror(errno));
Elliott Hughes58305772015-04-17 13:57:15 -0700860 return "";
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800861 }
Elliott Hughesa7090b92015-04-17 17:03:59 -0700862 return android::base::StringPrintf("%s%s%s", cwd.c_str(), OS_PATH_SEPARATOR_STR, hint);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800863 }
864
Elliott Hughes58305772015-04-17 13:57:15 -0700865 // It's a string without any slashes. Try to do something with it.
866 //
867 // Try to find the root of the build tree, and build a PRODUCT_OUT
868 // path from there.
Elliott Hughesa7090b92015-04-17 17:03:59 -0700869 char* top = getenv("ANDROID_BUILD_TOP");
Elliott Hughes58305772015-04-17 13:57:15 -0700870 if (top == nullptr) {
Elliott Hughesa7090b92015-04-17 17:03:59 -0700871 fprintf(stderr, "adb: ANDROID_BUILD_TOP not set!\n");
Elliott Hughes58305772015-04-17 13:57:15 -0700872 return "";
873 }
Elliott Hughesa7090b92015-04-17 17:03:59 -0700874
875 std::string path = top;
Elliott Hughes58305772015-04-17 13:57:15 -0700876 path += OS_PATH_SEPARATOR_STR;
877 path += "out";
878 path += OS_PATH_SEPARATOR_STR;
879 path += "target";
880 path += OS_PATH_SEPARATOR_STR;
881 path += "product";
882 path += OS_PATH_SEPARATOR_STR;
883 path += hint;
884 if (!directory_exists(path)) {
885 fprintf(stderr, "adb: Couldn't find a product dir based on -p %s; "
886 "\"%s\" doesn't exist\n", hint, path.c_str());
Elliott Hughesa7090b92015-04-17 17:03:59 -0700887 return "";
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800888 }
Elliott Hughes58305772015-04-17 13:57:15 -0700889 return path;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800890}
891
Dan Albertbac34742015-02-25 17:51:28 -0800892static void parse_push_pull_args(const char **arg, int narg, char const **path1,
893 char const **path2, int *show_progress,
894 int *copy_attrs) {
Mark Lindner76f2a932014-03-11 17:55:59 -0700895 *show_progress = 0;
Lajos Molnarde8ff4a2013-04-19 12:41:09 -0700896 *copy_attrs = 0;
Mark Lindner76f2a932014-03-11 17:55:59 -0700897
Lajos Molnarde8ff4a2013-04-19 12:41:09 -0700898 while (narg > 0) {
899 if (!strcmp(*arg, "-p")) {
900 *show_progress = 1;
901 } else if (!strcmp(*arg, "-a")) {
902 *copy_attrs = 1;
903 } else {
904 break;
905 }
Mark Lindner76f2a932014-03-11 17:55:59 -0700906 ++arg;
907 --narg;
908 }
909
910 if (narg > 0) {
911 *path1 = *arg;
912 ++arg;
913 --narg;
914 }
915
916 if (narg > 0) {
917 *path2 = *arg;
918 }
919}
920
Elliott Hughesf1a58f82015-04-29 12:28:13 -0700921static int adb_connect_command(const std::string& command) {
Elliott Hughes71aeb792015-04-29 08:35:59 -0700922 std::string error;
923 int fd = adb_connect(command, &error);
Elliott Hughes207ddb22015-05-07 23:37:40 -0700924 if (fd < 0) {
925 fprintf(stderr, "error: %s\n", error.c_str());
926 return 1;
Tao Bao175b7bb2015-03-29 11:22:34 -0700927 }
Elliott Hughes207ddb22015-05-07 23:37:40 -0700928 read_and_dump(fd);
929 adb_close(fd);
930 return 0;
Tao Bao175b7bb2015-03-29 11:22:34 -0700931}
932
Elliott Hughesf1a58f82015-04-29 12:28:13 -0700933static int adb_query_command(const std::string& command) {
934 std::string result;
935 std::string error;
936 if (!adb_query(command, &result, &error)) {
937 fprintf(stderr, "error: %s\n", error.c_str());
938 return 1;
939 }
940 printf("%s\n", result.c_str());
941 return 0;
942}
943
Elliott Hughese1a55002015-05-01 17:04:38 -0700944int adb_commandline(int argc, const char **argv) {
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800945 int no_daemon = 0;
946 int is_daemon = 0;
David 'Digit' Turner305b4b02011-01-31 14:23:56 +0100947 int is_server = 0;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800948 int persist = 0;
949 int r;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800950 transport_type ttype = kTransportAny;
Dan Albertbac34742015-02-25 17:51:28 -0800951 const char* serial = NULL;
952 const char* server_port_str = NULL;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800953
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
Nick Pellydb449262009-05-07 12:48:03 -0700965 serial = getenv("ANDROID_SERIAL");
966
Stefan Hilzingera84a42e2010-04-19 12:21:12 +0100967 /* Validate and assign the server port */
968 server_port_str = getenv("ANDROID_ADB_SERVER_PORT");
969 int server_port = DEFAULT_ADB_PORT;
970 if (server_port_str && strlen(server_port_str) > 0) {
971 server_port = (int) strtol(server_port_str, NULL, 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,
Matt Gumbeld7b33082012-11-14 10:16:17 -0800974 "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 +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;
Riley Andrews98f58e82014-12-05 17:37:24 -0800989 } else if (!strcmp(argv[0],"persist")) {
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800990 persist = 1;
Riley Andrews98f58e82014-12-05 17:37:24 -0800991 } else if (!strncmp(argv[0], "-p", 2)) {
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800992 const char *product = NULL;
993 if (argv[0][2] == '\0') {
994 if (argc < 2) return usage();
995 product = argv[1];
996 argc--;
997 argv++;
998 } else {
Vairavan Srinivasan81273232012-08-04 16:40:50 -0700999 product = argv[0] + 2;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001000 }
1001 gProductOutPath = find_product_out_path(product);
Elliott Hughes58305772015-04-17 13:57:15 -07001002 if (gProductOutPath.empty()) {
1003 fprintf(stderr, "adb: could not resolve \"-p %s\"\n", product);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001004 return usage();
1005 }
1006 } else if (argv[0][0]=='-' && argv[0][1]=='s') {
1007 if (isdigit(argv[0][2])) {
1008 serial = argv[0] + 2;
1009 } else {
Riley Andrews98f58e82014-12-05 17:37:24 -08001010 if (argc < 2 || argv[0][2] != '\0') return usage();
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001011 serial = argv[1];
1012 argc--;
1013 argv++;
1014 }
1015 } else if (!strcmp(argv[0],"-d")) {
1016 ttype = kTransportUsb;
1017 } else if (!strcmp(argv[0],"-e")) {
1018 ttype = kTransportLocal;
Matt Gumbeld7b33082012-11-14 10:16:17 -08001019 } else if (!strcmp(argv[0],"-a")) {
1020 gListenAll = 1;
Riley Andrews98f58e82014-12-05 17:37:24 -08001021 } else if (!strncmp(argv[0], "-H", 2)) {
Matt Gumbeld7b33082012-11-14 10:16:17 -08001022 const char *hostname = NULL;
1023 if (argv[0][2] == '\0') {
1024 if (argc < 2) return usage();
1025 hostname = argv[1];
1026 argc--;
1027 argv++;
1028 } else {
1029 hostname = argv[0] + 2;
1030 }
1031 adb_set_tcp_name(hostname);
1032
Riley Andrews98f58e82014-12-05 17:37:24 -08001033 } else if (!strncmp(argv[0], "-P", 2)) {
Matt Gumbeld7b33082012-11-14 10:16:17 -08001034 if (argv[0][2] == '\0') {
1035 if (argc < 2) return usage();
1036 server_port_str = argv[1];
1037 argc--;
1038 argv++;
1039 } else {
1040 server_port_str = argv[0] + 2;
1041 }
1042 if (strlen(server_port_str) > 0) {
1043 server_port = (int) strtol(server_port_str, NULL, 0);
1044 if (server_port <= 0 || server_port > 65535) {
1045 fprintf(stderr,
1046 "adb: port number must be a positive number less than 65536. Got \"%s\"\n",
1047 server_port_str);
1048 return usage();
1049 }
1050 } else {
1051 fprintf(stderr,
1052 "adb: port number must be a positive number less than 65536. Got empty string.\n");
1053 return usage();
1054 }
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001055 } else {
1056 /* out of recognized modifiers and flags */
1057 break;
1058 }
1059 argc--;
1060 argv++;
1061 }
1062
1063 adb_set_transport(ttype, serial);
Stefan Hilzingera84a42e2010-04-19 12:21:12 +01001064 adb_set_tcp_specifics(server_port);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001065
David 'Digit' Turner305b4b02011-01-31 14:23:56 +01001066 if (is_server) {
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001067 if (no_daemon || is_daemon) {
Stefan Hilzingera84a42e2010-04-19 12:21:12 +01001068 r = adb_main(is_daemon, server_port);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001069 } else {
Stefan Hilzingera84a42e2010-04-19 12:21:12 +01001070 r = launch_server(server_port);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001071 }
Riley Andrews98f58e82014-12-05 17:37:24 -08001072 if (r) {
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001073 fprintf(stderr,"* could not start server *\n");
1074 }
1075 return r;
1076 }
1077
Riley Andrews98f58e82014-12-05 17:37:24 -08001078 if (argc == 0) {
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001079 return usage();
1080 }
1081
Riley Andrewsc8514c82014-12-05 17:32:46 -08001082 /* handle wait-for-* prefix */
1083 if (!strncmp(argv[0], "wait-for-", strlen("wait-for-"))) {
Dan Albertbac34742015-02-25 17:51:28 -08001084 const char* service = argv[0];
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001085
Elliott Hughesaceb9c02015-05-04 19:29:32 -07001086 if (!wait_for_device(service, ttype, serial)) {
Riley Andrewsc8514c82014-12-05 17:32:46 -08001087 return 1;
1088 }
1089
Elliott Hughesaceb9c02015-05-04 19:29:32 -07001090 // Allow a command to be run after wait-for-device,
1091 // e.g. 'adb wait-for-device shell'.
Riley Andrewsc8514c82014-12-05 17:32:46 -08001092 if (argc == 1) {
1093 return 0;
1094 }
1095
1096 /* Fall through */
1097 argc--;
1098 argv++;
1099 }
1100
1101 /* adb_connect() commands */
Riley Andrews98f58e82014-12-05 17:37:24 -08001102 if (!strcmp(argv[0], "devices")) {
Dan Albertbac34742015-02-25 17:51:28 -08001103 const char *listopt;
Elliott Hughesf1a58f82015-04-29 12:28:13 -07001104 if (argc < 2) {
Scott Andersone109d262012-04-20 11:21:14 -07001105 listopt = "";
Elliott Hughesf1a58f82015-04-29 12:28:13 -07001106 } else if (argc == 2 && !strcmp(argv[1], "-l")) {
Scott Andersone109d262012-04-20 11:21:14 -07001107 listopt = argv[1];
Elliott Hughesf1a58f82015-04-29 12:28:13 -07001108 } else {
Scott Andersone109d262012-04-20 11:21:14 -07001109 fprintf(stderr, "Usage: adb devices [-l]\n");
1110 return 1;
1111 }
Elliott Hughesf1a58f82015-04-29 12:28:13 -07001112
1113 std::string query = android::base::StringPrintf("host:%s%s", argv[0], listopt);
1114 printf("List of devices attached\n");
1115 return adb_query_command(query);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001116 }
Riley Andrewsc8514c82014-12-05 17:32:46 -08001117 else if (!strcmp(argv[0], "connect")) {
Mike Lockwoodff196702009-08-24 15:58:40 -07001118 if (argc != 2) {
Mike Lockwoodcbbe79a2010-05-24 10:44:35 -04001119 fprintf(stderr, "Usage: adb connect <host>[:<port>]\n");
Mike Lockwoodff196702009-08-24 15:58:40 -07001120 return 1;
1121 }
Elliott Hughesf1a58f82015-04-29 12:28:13 -07001122
1123 std::string query = android::base::StringPrintf("host:connect:%s", argv[1]);
1124 return adb_query_command(query);
Mike Lockwoodcbbe79a2010-05-24 10:44:35 -04001125 }
Riley Andrewsc8514c82014-12-05 17:32:46 -08001126 else if (!strcmp(argv[0], "disconnect")) {
Mike Lockwoodcbbe79a2010-05-24 10:44:35 -04001127 if (argc > 2) {
1128 fprintf(stderr, "Usage: adb disconnect [<host>[:<port>]]\n");
1129 return 1;
1130 }
Elliott Hughesf1a58f82015-04-29 12:28:13 -07001131
1132 std::string query = android::base::StringPrintf("host:disconnect:%s",
1133 (argc == 2) ? argv[1] : "");
1134 return adb_query_command(query);
Mike Lockwoodff196702009-08-24 15:58:40 -07001135 }
Riley Andrewsc8514c82014-12-05 17:32:46 -08001136 else if (!strcmp(argv[0], "emu")) {
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001137 return adb_send_emulator_command(argc, argv);
1138 }
Riley Andrewsc8514c82014-12-05 17:32:46 -08001139 else if (!strcmp(argv[0], "shell") || !strcmp(argv[0], "hell")) {
Daniel Sandlerff91ab82010-08-19 01:10:18 -04001140 char h = (argv[0][0] == 'h');
1141
1142 if (h) {
1143 printf("\x1b[41;33m");
1144 fflush(stdout);
1145 }
1146
Riley Andrews98f58e82014-12-05 17:37:24 -08001147 if (argc < 2) {
JP Abgrall408fa572011-03-16 15:57:42 -07001148 D("starting interactive shell\n");
Daniel Sandlerff91ab82010-08-19 01:10:18 -04001149 r = interactive_shell();
1150 if (h) {
1151 printf("\x1b[0m");
1152 fflush(stdout);
1153 }
1154 return r;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001155 }
1156
Elliott Hughes2baae3a2015-04-17 10:59:34 -07001157 std::string cmd = "shell:";
Elliott Hughesaceb9c02015-05-04 19:29:32 -07001158 --argc;
1159 ++argv;
Jeff Sharkey5d9d4342014-05-26 18:30:43 -07001160 while (argc-- > 0) {
Elliott Hughesaceb9c02015-05-04 19:29:32 -07001161 // We don't escape here, just like ssh(1). http://b/20564385.
1162 cmd += *argv++;
1163 if (*argv) cmd += " ";
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001164 }
1165
Elliott Hughes2baae3a2015-04-17 10:59:34 -07001166 while (true) {
1167 D("interactive shell loop. cmd=%s\n", cmd.c_str());
Elliott Hughes71aeb792015-04-29 08:35:59 -07001168 std::string error;
Elliott Hughesf1a58f82015-04-29 12:28:13 -07001169 int fd = adb_connect(cmd, &error);
Elliott Hughes2baae3a2015-04-17 10:59:34 -07001170 int r;
Riley Andrews98f58e82014-12-05 17:37:24 -08001171 if (fd >= 0) {
JP Abgrall408fa572011-03-16 15:57:42 -07001172 D("about to read_and_dump(fd=%d)\n", fd);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001173 read_and_dump(fd);
JP Abgrall408fa572011-03-16 15:57:42 -07001174 D("read_and_dump() done.\n");
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001175 adb_close(fd);
1176 r = 0;
1177 } else {
Elliott Hughes71aeb792015-04-29 08:35:59 -07001178 fprintf(stderr,"error: %s\n", error.c_str());
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001179 r = -1;
1180 }
1181
Riley Andrews98f58e82014-12-05 17:37:24 -08001182 if (persist) {
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001183 fprintf(stderr,"\n- waiting for device -\n");
1184 adb_sleep_ms(1000);
Elliott Hughesaceb9c02015-05-04 19:29:32 -07001185 wait_for_device("wait-for-device", ttype, serial);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001186 } else {
Daniel Sandlerff91ab82010-08-19 01:10:18 -04001187 if (h) {
1188 printf("\x1b[0m");
1189 fflush(stdout);
1190 }
JP Abgrall408fa572011-03-16 15:57:42 -07001191 D("interactive shell loop. return r=%d\n", r);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001192 return r;
1193 }
1194 }
1195 }
Riley Andrewsc8514c82014-12-05 17:32:46 -08001196 else if (!strcmp(argv[0], "exec-in") || !strcmp(argv[0], "exec-out")) {
Jeff Sharkey5d9d4342014-05-26 18:30:43 -07001197 int exec_in = !strcmp(argv[0], "exec-in");
Jeff Sharkey5d9d4342014-05-26 18:30:43 -07001198
Elliott Hughes2baae3a2015-04-17 10:59:34 -07001199 std::string cmd = "exec:";
1200 cmd += argv[1];
Jeff Sharkey5d9d4342014-05-26 18:30:43 -07001201 argc -= 2;
1202 argv += 2;
1203 while (argc-- > 0) {
Elliott Hughes6c34bba2015-04-17 20:11:08 -07001204 cmd += " " + escape_arg(*argv++);
Jeff Sharkey5d9d4342014-05-26 18:30:43 -07001205 }
1206
Elliott Hughes71aeb792015-04-29 08:35:59 -07001207 std::string error;
Elliott Hughesf1a58f82015-04-29 12:28:13 -07001208 int fd = adb_connect(cmd, &error);
Jeff Sharkey5d9d4342014-05-26 18:30:43 -07001209 if (fd < 0) {
Elliott Hughes71aeb792015-04-29 08:35:59 -07001210 fprintf(stderr, "error: %s\n", error.c_str());
Jeff Sharkey5d9d4342014-05-26 18:30:43 -07001211 return -1;
1212 }
1213
1214 if (exec_in) {
1215 copy_to_file(STDIN_FILENO, fd);
1216 } else {
1217 copy_to_file(fd, STDOUT_FILENO);
1218 }
1219
1220 adb_close(fd);
1221 return 0;
1222 }
Riley Andrewsc8514c82014-12-05 17:32:46 -08001223 else if (!strcmp(argv[0], "kill-server")) {
Elliott Hughes71aeb792015-04-29 08:35:59 -07001224 std::string error;
1225 int fd = _adb_connect("host:kill", &error);
Riley Andrews98f58e82014-12-05 17:37:24 -08001226 if (fd == -1) {
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001227 fprintf(stderr,"* server not running *\n");
1228 return 1;
1229 }
1230 return 0;
1231 }
Riley Andrewsc8514c82014-12-05 17:32:46 -08001232 else if (!strcmp(argv[0], "sideload")) {
1233 if (argc != 2) return usage();
Doug Zongker71fe5842014-06-26 15:35:36 -07001234 if (adb_sideload_host(argv[1])) {
Doug Zongker447f0612012-01-09 14:54:53 -08001235 return 1;
1236 } else {
1237 return 0;
1238 }
1239 }
Riley Andrewsc8514c82014-12-05 17:32:46 -08001240 else if (!strcmp(argv[0], "remount") ||
1241 !strcmp(argv[0], "reboot") ||
1242 !strcmp(argv[0], "reboot-bootloader") ||
1243 !strcmp(argv[0], "tcpip") ||
1244 !strcmp(argv[0], "usb") ||
1245 !strcmp(argv[0], "root") ||
Dan Pasanen98858812014-10-06 12:57:20 -05001246 !strcmp(argv[0], "unroot") ||
Riley Andrewsc8514c82014-12-05 17:32:46 -08001247 !strcmp(argv[0], "disable-verity") ||
1248 !strcmp(argv[0], "enable-verity")) {
Elliott Hughes207ddb22015-05-07 23:37:40 -07001249 std::string command;
Tao Bao175b7bb2015-03-29 11:22:34 -07001250 if (!strcmp(argv[0], "reboot-bootloader")) {
Elliott Hughes207ddb22015-05-07 23:37:40 -07001251 command = "reboot:bootloader";
Tao Bao175b7bb2015-03-29 11:22:34 -07001252 } else if (argc > 1) {
Elliott Hughes207ddb22015-05-07 23:37:40 -07001253 command = android::base::StringPrintf("%s:%s", argv[0], argv[1]);
Tao Bao175b7bb2015-03-29 11:22:34 -07001254 } else {
Elliott Hughes207ddb22015-05-07 23:37:40 -07001255 command = android::base::StringPrintf("%s:", argv[0]);
The Android Open Source Projecte037fd72009-03-13 13:04:37 -07001256 }
Tao Bao175b7bb2015-03-29 11:22:34 -07001257 return adb_connect_command(command);
The Android Open Source Projecte037fd72009-03-13 13:04:37 -07001258 }
Riley Andrewsc8514c82014-12-05 17:32:46 -08001259 else if (!strcmp(argv[0], "bugreport")) {
Dan Egnorc130ea72010-01-20 13:50:36 -08001260 if (argc != 1) return usage();
Elliott Hughesaceb9c02015-05-04 19:29:32 -07001261 return send_shell_command(ttype, serial, "shell:bugreport");
Mike Lockwoodf56d1b52009-09-03 14:54:58 -04001262 }
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001263 /* adb_command() wrapper commands */
Riley Andrewsc8514c82014-12-05 17:32:46 -08001264 else if (!strcmp(argv[0], "forward") || !strcmp(argv[0], "reverse")) {
Elliott Hughese1a55002015-05-01 17:04:38 -07001265 std::string cmd;
David 'Digit' Turner0d82fbf2012-11-14 15:01:55 +01001266 char host_prefix[64];
David 'Digit' Turner25258692013-03-21 21:07:42 +01001267 char reverse = (char) !strcmp(argv[0], "reverse");
David 'Digit' Turner0d82fbf2012-11-14 15:01:55 +01001268 char remove = 0;
1269 char remove_all = 0;
1270 char list = 0;
1271 char no_rebind = 0;
1272
1273 // Parse options here.
1274 while (argc > 1 && argv[1][0] == '-') {
1275 if (!strcmp(argv[1], "--list"))
1276 list = 1;
1277 else if (!strcmp(argv[1], "--remove"))
1278 remove = 1;
1279 else if (!strcmp(argv[1], "--remove-all"))
1280 remove_all = 1;
1281 else if (!strcmp(argv[1], "--no-rebind"))
1282 no_rebind = 1;
1283 else {
1284 return usage();
1285 }
1286 argc--;
1287 argv++;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001288 }
David 'Digit' Turner0d82fbf2012-11-14 15:01:55 +01001289
1290 // Ensure we can only use one option at a time.
1291 if (list + remove + remove_all + no_rebind > 1) {
1292 return usage();
1293 }
1294
1295 // Determine the <host-prefix> for this command.
David 'Digit' Turner25258692013-03-21 21:07:42 +01001296 if (reverse) {
1297 snprintf(host_prefix, sizeof host_prefix, "reverse");
David 'Digit' Turner0d82fbf2012-11-14 15:01:55 +01001298 } else {
David 'Digit' Turner25258692013-03-21 21:07:42 +01001299 if (serial) {
1300 snprintf(host_prefix, sizeof host_prefix, "host-serial:%s",
1301 serial);
1302 } else if (ttype == kTransportUsb) {
1303 snprintf(host_prefix, sizeof host_prefix, "host-usb");
1304 } else if (ttype == kTransportLocal) {
1305 snprintf(host_prefix, sizeof host_prefix, "host-local");
1306 } else {
1307 snprintf(host_prefix, sizeof host_prefix, "host");
1308 }
David 'Digit' Turner0d82fbf2012-11-14 15:01:55 +01001309 }
1310
1311 // Implement forward --list
1312 if (list) {
Elliott Hughesf1a58f82015-04-29 12:28:13 -07001313 if (argc != 1) {
David 'Digit' Turner0d82fbf2012-11-14 15:01:55 +01001314 return usage();
David 'Digit' Turner0d82fbf2012-11-14 15:01:55 +01001315 }
Elliott Hughesf1a58f82015-04-29 12:28:13 -07001316
1317 std::string query = android::base::StringPrintf("%s:list-forward", host_prefix);
1318 return adb_query_command(query);
David 'Digit' Turner0d82fbf2012-11-14 15:01:55 +01001319 }
1320
1321 // Implement forward --remove-all
1322 else if (remove_all) {
Elliott Hughese1a55002015-05-01 17:04:38 -07001323 if (argc != 1) return usage();
1324 cmd = android::base::StringPrintf("%s:killforward-all", host_prefix);
David 'Digit' Turner0d82fbf2012-11-14 15:01:55 +01001325 }
1326
1327 // Implement forward --remove <local>
1328 else if (remove) {
Elliott Hughese1a55002015-05-01 17:04:38 -07001329 if (argc != 2) return usage();
1330 cmd = android::base::StringPrintf("%s:killforward:%s", host_prefix, argv[1]);
David 'Digit' Turner0d82fbf2012-11-14 15:01:55 +01001331 }
1332 // Or implement one of:
1333 // forward <local> <remote>
1334 // forward --no-rebind <local> <remote>
Elliott Hughese1a55002015-05-01 17:04:38 -07001335 else {
1336 if (argc != 3) return usage();
1337 const char* command = no_rebind ? "forward:norebind" : "forward";
1338 cmd = android::base::StringPrintf("%s:%s:%s;%s", host_prefix, command, argv[1], argv[2]);
David 'Digit' Turner0d82fbf2012-11-14 15:01:55 +01001339 }
1340
Elliott Hughes71aeb792015-04-29 08:35:59 -07001341 std::string error;
Elliott Hughese1a55002015-05-01 17:04:38 -07001342 if (adb_command(cmd, &error)) {
1343 fprintf(stderr, "error: %s\n", error.c_str());
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001344 return 1;
1345 }
1346 return 0;
1347 }
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001348 /* do_sync_*() commands */
Riley Andrewsc8514c82014-12-05 17:32:46 -08001349 else if (!strcmp(argv[0], "ls")) {
1350 if (argc != 2) return usage();
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001351 return do_sync_ls(argv[1]);
1352 }
Riley Andrewsc8514c82014-12-05 17:32:46 -08001353 else if (!strcmp(argv[0], "push")) {
Mark Lindner76f2a932014-03-11 17:55:59 -07001354 int show_progress = 0;
Lajos Molnarde8ff4a2013-04-19 12:41:09 -07001355 int copy_attrs = 0; // unused
Mark Lindner76f2a932014-03-11 17:55:59 -07001356 const char* lpath = NULL, *rpath = NULL;
1357
Lajos Molnarde8ff4a2013-04-19 12:41:09 -07001358 parse_push_pull_args(&argv[1], argc - 1, &lpath, &rpath, &show_progress, &copy_attrs);
Mark Lindner76f2a932014-03-11 17:55:59 -07001359
1360 if ((lpath != NULL) && (rpath != NULL)) {
Jeff Sharkey960df972014-06-09 17:30:57 -07001361 return do_sync_push(lpath, rpath, show_progress);
Mark Lindner76f2a932014-03-11 17:55:59 -07001362 }
1363
1364 return usage();
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001365 }
Riley Andrewsc8514c82014-12-05 17:32:46 -08001366 else if (!strcmp(argv[0], "pull")) {
Mark Lindner76f2a932014-03-11 17:55:59 -07001367 int show_progress = 0;
Lajos Molnarde8ff4a2013-04-19 12:41:09 -07001368 int copy_attrs = 0;
Mark Lindner76f2a932014-03-11 17:55:59 -07001369 const char* rpath = NULL, *lpath = ".";
1370
Lajos Molnarde8ff4a2013-04-19 12:41:09 -07001371 parse_push_pull_args(&argv[1], argc - 1, &rpath, &lpath, &show_progress, &copy_attrs);
Mark Lindner76f2a932014-03-11 17:55:59 -07001372
1373 if (rpath != NULL) {
Lajos Molnarde8ff4a2013-04-19 12:41:09 -07001374 return do_sync_pull(rpath, lpath, show_progress, copy_attrs);
Joe Onorato00c0eea2010-01-05 13:42:25 -08001375 }
Mark Lindner76f2a932014-03-11 17:55:59 -07001376
1377 return usage();
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001378 }
Riley Andrewsc8514c82014-12-05 17:32:46 -08001379 else if (!strcmp(argv[0], "install")) {
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001380 if (argc < 2) return usage();
1381 return install_app(ttype, serial, argc, argv);
1382 }
Riley Andrewsc8514c82014-12-05 17:32:46 -08001383 else if (!strcmp(argv[0], "install-multiple")) {
Jeff Sharkey960df972014-06-09 17:30:57 -07001384 if (argc < 2) return usage();
1385 return install_multiple_app(ttype, serial, argc, argv);
1386 }
Riley Andrewsc8514c82014-12-05 17:32:46 -08001387 else if (!strcmp(argv[0], "uninstall")) {
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001388 if (argc < 2) return usage();
1389 return uninstall_app(ttype, serial, argc, argv);
1390 }
Riley Andrewsc8514c82014-12-05 17:32:46 -08001391 else if (!strcmp(argv[0], "sync")) {
Elliott Hughesd236d072015-04-21 10:17:07 -07001392 std::string src;
Elliott Hughes58305772015-04-17 13:57:15 -07001393 bool list_only = false;
Riley Andrews98f58e82014-12-05 17:37:24 -08001394 if (argc < 2) {
Elliott Hughes58305772015-04-17 13:57:15 -07001395 // No local path was specified.
Elliott Hughesd236d072015-04-21 10:17:07 -07001396 src = "";
Anthony Newnam705c9442010-02-22 08:36:49 -06001397 } else if (argc >= 2 && strcmp(argv[1], "-l") == 0) {
Elliott Hughesd236d072015-04-21 10:17:07 -07001398 list_only = true;
Anthony Newnam705c9442010-02-22 08:36:49 -06001399 if (argc == 3) {
Elliott Hughesd236d072015-04-21 10:17:07 -07001400 src = argv[2];
Anthony Newnam705c9442010-02-22 08:36:49 -06001401 } else {
Elliott Hughesd236d072015-04-21 10:17:07 -07001402 src = "";
Anthony Newnam705c9442010-02-22 08:36:49 -06001403 }
Riley Andrews98f58e82014-12-05 17:37:24 -08001404 } else if (argc == 2) {
Elliott Hughes58305772015-04-17 13:57:15 -07001405 // A local path or "android"/"data" arg was specified.
Elliott Hughesd236d072015-04-21 10:17:07 -07001406 src = argv[1];
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001407 } else {
1408 return usage();
1409 }
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001410
Elliott Hughesd236d072015-04-21 10:17:07 -07001411 if (src != "" &&
1412 src != "system" && src != "data" && src != "vendor" && src != "oem") {
Elliott Hughes58305772015-04-17 13:57:15 -07001413 return usage();
1414 }
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001415
Elliott Hughes58305772015-04-17 13:57:15 -07001416 std::string system_src_path = product_file("system");
1417 std::string data_src_path = product_file("data");
1418 std::string vendor_src_path = product_file("vendor");
1419 std::string oem_src_path = product_file("oem");
Elliott Hughes58305772015-04-17 13:57:15 -07001420
1421 int rc = 0;
Elliott Hughesd236d072015-04-21 10:17:07 -07001422 if (rc == 0 && (src.empty() || src == "system")) {
1423 rc = do_sync_sync(system_src_path, "/system", list_only);
Elliott Hughes58305772015-04-17 13:57:15 -07001424 }
Elliott Hughesd236d072015-04-21 10:17:07 -07001425 if (rc == 0 && (src.empty() || src == "vendor") && directory_exists(vendor_src_path)) {
1426 rc = do_sync_sync(vendor_src_path, "/vendor", list_only);
Elliott Hughes58305772015-04-17 13:57:15 -07001427 }
Elliott Hughesd236d072015-04-21 10:17:07 -07001428 if (rc == 0 && (src.empty() || src == "oem") && directory_exists(oem_src_path)) {
1429 rc = do_sync_sync(oem_src_path, "/oem", list_only);
Elliott Hughes58305772015-04-17 13:57:15 -07001430 }
Elliott Hughesd236d072015-04-21 10:17:07 -07001431 if (rc == 0 && (src.empty() || src == "data")) {
1432 rc = do_sync_sync(data_src_path, "/data", list_only);
Elliott Hughes58305772015-04-17 13:57:15 -07001433 }
1434 return rc;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001435 }
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001436 /* passthrough commands */
Riley Andrewsc8514c82014-12-05 17:32:46 -08001437 else if (!strcmp(argv[0],"get-state") ||
Scott Andersone109d262012-04-20 11:21:14 -07001438 !strcmp(argv[0],"get-serialno") ||
1439 !strcmp(argv[0],"get-devpath"))
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001440 {
Elliott Hughesf1a58f82015-04-29 12:28:13 -07001441 return adb_query_command(format_host_command(argv[0], ttype, serial));
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001442 }
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001443 /* other commands */
Riley Andrewsc8514c82014-12-05 17:32:46 -08001444 else if (!strcmp(argv[0],"logcat") || !strcmp(argv[0],"lolcat") || !strcmp(argv[0],"longcat")) {
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001445 return logcat(ttype, serial, argc, argv);
1446 }
Riley Andrewsc8514c82014-12-05 17:32:46 -08001447 else if (!strcmp(argv[0],"ppp")) {
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001448 return ppp(argc, argv);
1449 }
Riley Andrewsc8514c82014-12-05 17:32:46 -08001450 else if (!strcmp(argv[0], "start-server")) {
Elliott Hughes71aeb792015-04-29 08:35:59 -07001451 std::string error;
1452 return adb_connect("host:start-server", &error);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001453 }
Riley Andrewsc8514c82014-12-05 17:32:46 -08001454 else if (!strcmp(argv[0], "backup")) {
Christopher Tated2f54152011-04-21 12:53:28 -07001455 return backup(argc, argv);
1456 }
Riley Andrewsc8514c82014-12-05 17:32:46 -08001457 else if (!strcmp(argv[0], "restore")) {
Christopher Tate702967a2011-05-17 15:52:54 -07001458 return restore(argc, argv);
1459 }
Riley Andrewsc8514c82014-12-05 17:32:46 -08001460 else if (!strcmp(argv[0], "keygen")) {
Nick Kralevichbea3f9c2014-11-13 15:17:29 -08001461 if (argc < 2) return usage();
1462 return adb_auth_keygen(argv[1]);
1463 }
Riley Andrewsc8514c82014-12-05 17:32:46 -08001464 else if (!strcmp(argv[0], "jdwp")) {
Tao Bao175b7bb2015-03-29 11:22:34 -07001465 return adb_connect_command("jdwp");
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001466 }
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001467 /* "adb /?" is a common idiom under Windows */
Riley Andrewsc8514c82014-12-05 17:32:46 -08001468 else if (!strcmp(argv[0], "help") || !strcmp(argv[0], "/?")) {
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001469 help();
1470 return 0;
1471 }
Riley Andrewsc8514c82014-12-05 17:32:46 -08001472 else if (!strcmp(argv[0], "version")) {
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001473 version(stdout);
1474 return 0;
1475 }
1476
1477 usage();
1478 return 1;
1479}
1480
Dan Albertbac34742015-02-25 17:51:28 -08001481static int pm_command(transport_type transport, const char* serial,
1482 int argc, const char** argv)
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001483{
Elliott Hughes2baae3a2015-04-17 10:59:34 -07001484 std::string cmd = "shell:pm";
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001485
Elliott Hughes2baae3a2015-04-17 10:59:34 -07001486 while (argc-- > 0) {
Elliott Hughes6c34bba2015-04-17 20:11:08 -07001487 cmd += " " + escape_arg(*argv++);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001488 }
1489
Elliott Hughes15551472015-04-21 17:58:55 -07001490 return send_shell_command(transport, serial, cmd);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001491}
1492
Elliott Hughes58305772015-04-17 13:57:15 -07001493static int uninstall_app(transport_type transport, const char* serial, int argc,
1494 const char** argv)
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001495{
1496 /* if the user choose the -k option, we refuse to do it until devices are
1497 out with the option to uninstall the remaining data somehow (adb/ui) */
1498 if (argc == 3 && strcmp(argv[1], "-k") == 0)
1499 {
1500 printf(
1501 "The -k option uninstalls the application while retaining the data/cache.\n"
1502 "At the moment, there is no way to remove the remaining data.\n"
1503 "You will have to reinstall the application with the same signature, and fully uninstall it.\n"
1504 "If you truly wish to continue, execute 'adb shell pm uninstall -k %s'\n", argv[2]);
1505 return -1;
1506 }
1507
1508 /* 'adb uninstall' takes the same arguments as 'pm uninstall' on device */
1509 return pm_command(transport, serial, argc, argv);
1510}
1511
Dan Albertbac34742015-02-25 17:51:28 -08001512static int delete_file(transport_type transport, const char* serial, char* filename)
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001513{
Elliott Hughes2baae3a2015-04-17 10:59:34 -07001514 std::string cmd = "shell:rm -f " + escape_arg(filename);
Elliott Hughes15551472015-04-21 17:58:55 -07001515 return send_shell_command(transport, serial, cmd);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001516}
1517
Kenny Root597ea5b2011-08-05 11:19:45 -07001518static const char* get_basename(const char* filename)
1519{
1520 const char* basename = adb_dirstop(filename);
1521 if (basename) {
1522 basename++;
1523 return basename;
1524 } else {
1525 return filename;
1526 }
1527}
1528
Elliott Hughes58305772015-04-17 13:57:15 -07001529static int install_app(transport_type transport, const char* serial, int argc,
1530 const char** argv)
Kenny Root597ea5b2011-08-05 11:19:45 -07001531{
1532 static const char *const DATA_DEST = "/data/local/tmp/%s";
1533 static const char *const SD_DEST = "/sdcard/tmp/%s";
1534 const char* where = DATA_DEST;
Kenny Root597ea5b2011-08-05 11:19:45 -07001535 int i;
Jeff Sharkey960df972014-06-09 17:30:57 -07001536 struct stat sb;
Kenny Root597ea5b2011-08-05 11:19:45 -07001537
1538 for (i = 1; i < argc; i++) {
Jeff Sharkey960df972014-06-09 17:30:57 -07001539 if (!strcmp(argv[i], "-s")) {
Kenny Root597ea5b2011-08-05 11:19:45 -07001540 where = SD_DEST;
1541 }
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001542 }
1543
Jeff Sharkey960df972014-06-09 17:30:57 -07001544 // Find last APK argument.
1545 // All other arguments passed through verbatim.
1546 int last_apk = -1;
1547 for (i = argc - 1; i >= 0; i--) {
Dan Albertbac34742015-02-25 17:51:28 -08001548 const char* file = argv[i];
Jeff Sharkey960df972014-06-09 17:30:57 -07001549 char* dot = strrchr(file, '.');
1550 if (dot && !strcasecmp(dot, ".apk")) {
1551 if (stat(file, &sb) == -1 || !S_ISREG(sb.st_mode)) {
1552 fprintf(stderr, "Invalid APK file: %s\n", file);
1553 return -1;
1554 }
1555
1556 last_apk = i;
1557 break;
1558 }
Kenny Root597ea5b2011-08-05 11:19:45 -07001559 }
1560
Jeff Sharkey960df972014-06-09 17:30:57 -07001561 if (last_apk == -1) {
1562 fprintf(stderr, "Missing APK file\n");
1563 return -1;
Kenny Root597ea5b2011-08-05 11:19:45 -07001564 }
1565
Dan Albertbac34742015-02-25 17:51:28 -08001566 const char* apk_file = argv[last_apk];
Jeff Sharkey960df972014-06-09 17:30:57 -07001567 char apk_dest[PATH_MAX];
Kenny Root597ea5b2011-08-05 11:19:45 -07001568 snprintf(apk_dest, sizeof apk_dest, where, get_basename(apk_file));
Jeff Sharkey960df972014-06-09 17:30:57 -07001569 int err = do_sync_push(apk_file, apk_dest, 0 /* no show progress */);
Kenny Root597ea5b2011-08-05 11:19:45 -07001570 if (err) {
Kenny Root60733e92012-03-26 16:14:02 -07001571 goto cleanup_apk;
Kenny Root597ea5b2011-08-05 11:19:45 -07001572 } else {
Jeff Sharkey960df972014-06-09 17:30:57 -07001573 argv[last_apk] = apk_dest; /* destination name, not source location */
Kenny Root597ea5b2011-08-05 11:19:45 -07001574 }
1575
Elliott Hughes15551472015-04-21 17:58:55 -07001576 err = pm_command(transport, serial, argc, argv);
Kenny Root597ea5b2011-08-05 11:19:45 -07001577
Kenny Root60733e92012-03-26 16:14:02 -07001578cleanup_apk:
Jeff Sharkey960df972014-06-09 17:30:57 -07001579 delete_file(transport, serial, apk_dest);
1580 return err;
1581}
1582
Elliott Hughes58305772015-04-17 13:57:15 -07001583static int install_multiple_app(transport_type transport, const char* serial, int argc,
1584 const char** argv)
Jeff Sharkey960df972014-06-09 17:30:57 -07001585{
Jeff Sharkey960df972014-06-09 17:30:57 -07001586 int i;
1587 struct stat sb;
Elliott Hughes2940ccf2015-04-17 14:07:52 -07001588 uint64_t total_size = 0;
Jeff Sharkey960df972014-06-09 17:30:57 -07001589
1590 // Find all APK arguments starting at end.
1591 // All other arguments passed through verbatim.
1592 int first_apk = -1;
1593 for (i = argc - 1; i >= 0; i--) {
Dan Albertbac34742015-02-25 17:51:28 -08001594 const char* file = argv[i];
Jeff Sharkey960df972014-06-09 17:30:57 -07001595 char* dot = strrchr(file, '.');
1596 if (dot && !strcasecmp(dot, ".apk")) {
1597 if (stat(file, &sb) == -1 || !S_ISREG(sb.st_mode)) {
1598 fprintf(stderr, "Invalid APK file: %s\n", file);
1599 return -1;
1600 }
1601
1602 total_size += sb.st_size;
1603 first_apk = i;
1604 } else {
1605 break;
1606 }
Kenny Root597ea5b2011-08-05 11:19:45 -07001607 }
1608
Jeff Sharkey960df972014-06-09 17:30:57 -07001609 if (first_apk == -1) {
1610 fprintf(stderr, "Missing APK file\n");
1611 return 1;
1612 }
Kenny Root597ea5b2011-08-05 11:19:45 -07001613
Elliott Hughes53daee62015-04-19 13:17:01 -07001614#if defined(_WIN32) // Remove when we're using clang for Win32.
1615 std::string cmd = android::base::StringPrintf("exec:pm install-create -S %u", (unsigned) total_size);
1616#else
Elliott Hughes2940ccf2015-04-17 14:07:52 -07001617 std::string cmd = android::base::StringPrintf("exec:pm install-create -S %" PRIu64, total_size);
Elliott Hughes53daee62015-04-19 13:17:01 -07001618#endif
Jeff Sharkey960df972014-06-09 17:30:57 -07001619 for (i = 1; i < first_apk; i++) {
Elliott Hughes6c34bba2015-04-17 20:11:08 -07001620 cmd += " " + escape_arg(argv[i]);
Jeff Sharkey960df972014-06-09 17:30:57 -07001621 }
1622
1623 // Create install session
Elliott Hughes71aeb792015-04-29 08:35:59 -07001624 std::string error;
Elliott Hughesf1a58f82015-04-29 12:28:13 -07001625 int fd = adb_connect(cmd, &error);
Jeff Sharkey960df972014-06-09 17:30:57 -07001626 if (fd < 0) {
Elliott Hughes71aeb792015-04-29 08:35:59 -07001627 fprintf(stderr, "Connect error for create: %s\n", error.c_str());
Jeff Sharkey960df972014-06-09 17:30:57 -07001628 return -1;
1629 }
Elliott Hughes2baae3a2015-04-17 10:59:34 -07001630 char buf[BUFSIZ];
Jeff Sharkey960df972014-06-09 17:30:57 -07001631 read_status_line(fd, buf, sizeof(buf));
1632 adb_close(fd);
1633
1634 int session_id = -1;
1635 if (!strncmp("Success", buf, 7)) {
1636 char* start = strrchr(buf, '[');
1637 char* end = strrchr(buf, ']');
1638 if (start && end) {
1639 *end = '\0';
1640 session_id = strtol(start + 1, NULL, 10);
1641 }
1642 }
1643 if (session_id < 0) {
1644 fprintf(stderr, "Failed to create session\n");
Christopher Tate71bbc672014-07-14 16:45:13 -07001645 fputs(buf, stderr);
Jeff Sharkey960df972014-06-09 17:30:57 -07001646 return -1;
1647 }
1648
1649 // Valid session, now stream the APKs
1650 int success = 1;
1651 for (i = first_apk; i < argc; i++) {
Dan Albertbac34742015-02-25 17:51:28 -08001652 const char* file = argv[i];
Jeff Sharkey960df972014-06-09 17:30:57 -07001653 if (stat(file, &sb) == -1) {
1654 fprintf(stderr, "Failed to stat %s\n", file);
1655 success = 0;
1656 goto finalize_session;
1657 }
1658
Elliott Hughes53daee62015-04-19 13:17:01 -07001659#if defined(_WIN32) // Remove when we're using clang for Win32.
1660 std::string cmd = android::base::StringPrintf(
1661 "exec:pm install-write -S %u %d %d_%s -",
1662 (unsigned) sb.st_size, session_id, i, get_basename(file));
1663#else
Elliott Hughes2940ccf2015-04-17 14:07:52 -07001664 std::string cmd = android::base::StringPrintf(
1665 "exec:pm install-write -S %" PRIu64 " %d %d_%s -",
1666 static_cast<uint64_t>(sb.st_size), session_id, i, get_basename(file));
Elliott Hughes53daee62015-04-19 13:17:01 -07001667#endif
Jeff Sharkey960df972014-06-09 17:30:57 -07001668
1669 int localFd = adb_open(file, O_RDONLY);
1670 if (localFd < 0) {
Elliott Hughes71aeb792015-04-29 08:35:59 -07001671 fprintf(stderr, "Failed to open %s: %s\n", file, strerror(errno));
Jeff Sharkey960df972014-06-09 17:30:57 -07001672 success = 0;
1673 goto finalize_session;
1674 }
1675
Elliott Hughes71aeb792015-04-29 08:35:59 -07001676 std::string error;
Elliott Hughesf1a58f82015-04-29 12:28:13 -07001677 int remoteFd = adb_connect(cmd, &error);
Jeff Sharkey960df972014-06-09 17:30:57 -07001678 if (remoteFd < 0) {
Elliott Hughes71aeb792015-04-29 08:35:59 -07001679 fprintf(stderr, "Connect error for write: %s\n", error.c_str());
Jeff Sharkey960df972014-06-09 17:30:57 -07001680 adb_close(localFd);
1681 success = 0;
1682 goto finalize_session;
1683 }
1684
1685 copy_to_file(localFd, remoteFd);
1686 read_status_line(remoteFd, buf, sizeof(buf));
1687
1688 adb_close(localFd);
1689 adb_close(remoteFd);
1690
1691 if (strncmp("Success", buf, 7)) {
1692 fprintf(stderr, "Failed to write %s\n", file);
Christopher Tate71bbc672014-07-14 16:45:13 -07001693 fputs(buf, stderr);
Jeff Sharkey960df972014-06-09 17:30:57 -07001694 success = 0;
1695 goto finalize_session;
1696 }
1697 }
1698
1699finalize_session:
Jeff Sharkeyac77e1f2014-07-25 09:58:25 -07001700 // Commit session if we streamed everything okay; otherwise abandon
Elliott Hughesf1a58f82015-04-29 12:28:13 -07001701 std::string service =
1702 android::base::StringPrintf("exec:pm install-%s %d",
1703 success ? "commit" : "abandon", session_id);
1704 fd = adb_connect(service, &error);
Jeff Sharkey960df972014-06-09 17:30:57 -07001705 if (fd < 0) {
Elliott Hughes71aeb792015-04-29 08:35:59 -07001706 fprintf(stderr, "Connect error for finalize: %s\n", error.c_str());
Jeff Sharkey960df972014-06-09 17:30:57 -07001707 return -1;
1708 }
1709 read_status_line(fd, buf, sizeof(buf));
1710 adb_close(fd);
1711
1712 if (!strncmp("Success", buf, 7)) {
Christopher Tate71bbc672014-07-14 16:45:13 -07001713 fputs(buf, stderr);
Jeff Sharkey960df972014-06-09 17:30:57 -07001714 return 0;
1715 } else {
1716 fprintf(stderr, "Failed to finalize session\n");
Christopher Tate71bbc672014-07-14 16:45:13 -07001717 fputs(buf, stderr);
Jeff Sharkey960df972014-06-09 17:30:57 -07001718 return -1;
1719 }
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001720}