blob: 9ced70aef5fe8e82b2be8993512b08fdc24e4b5a [file] [log] [blame]
The Android Open Source Project9ca14dc2009-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 Albertdb6fe642015-03-19 15:21:08 -070017#define TRACE_TAG TRACE_ADB
18
19#include "sysdeps.h"
20
Dan Albertb302d122015-02-24 15:51:19 -080021#include <assert.h>
22#include <ctype.h>
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -080023#include <errno.h>
Elliott Hughesd1a5b2b2015-04-17 14:07:52 -070024#include <inttypes.h>
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -080025#include <limits.h>
26#include <stdarg.h>
Dan Albertb302d122015-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 Project9ca14dc2009-03-03 19:32:55 -080031#include <sys/stat.h>
Dan Albertb302d122015-02-24 15:51:19 -080032#include <sys/types.h>
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -080033
Elliott Hughes170b5682015-04-17 10:59:34 -070034#include <string>
35
36#include <base/stringprintf.h>
37
Yabin Cui6704a3c2014-11-17 14:48:25 -080038#if !defined(_WIN32)
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -080039#include <termios.h>
Dan Albertb302d122015-02-24 15:51:19 -080040#include <unistd.h>
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -080041#endif
42
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -080043#include "adb.h"
Nick Kralevich6183c962014-11-13 15:17:29 -080044#include "adb_auth.h"
Dan Albert66a91b02015-02-24 21:26:58 -080045#include "adb_client.h"
46#include "adb_io.h"
Elliott Hughes38104452015-04-17 13:57:15 -070047#include "adb_utils.h"
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -080048#include "file_sync_service.h"
49
Elliott Hughes3aec2ba2015-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 Project9ca14dc2009-03-03 19:32:55 -080053
Elliott Hughes38104452015-04-17 13:57:15 -070054static std::string gProductOutPath;
Matt Gumbel411775c2012-11-14 10:16:17 -080055extern int gListenAll;
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -080056
Elliott Hughes38104452015-04-17 13:57:15 -070057static std::string product_file(const char *extra) {
58 if (gProductOutPath.empty()) {
The Android Open Source Project9ca14dc2009-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 Hughes38104452015-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 Project9ca14dc2009-03-03 19:32:55 -080066}
67
Elliott Hughes38104452015-04-17 13:57:15 -070068static void version(FILE* out) {
Elliott Hughes918dcdc2015-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 Project9ca14dc2009-03-03 19:32:55 -080071}
72
Elliott Hughes38104452015-04-17 13:57:15 -070073static void help() {
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -080074 version(stderr);
75
76 fprintf(stderr,
77 "\n"
Matt Gumbel411775c2012-11-14 10:16:17 -080078 " -a - directs adb to listen on all interfaces for a connection\n"
The Android Open Source Project9ca14dc2009-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 Anderson6dfaf4b2012-04-20 11:21:14 -070083 " -s <specific device> - directs command to the device or emulator with the given\n"
Scott Anderson27042382012-05-30 18:11:27 -070084 " serial number or qualifier. Overrides ANDROID_SERIAL\n"
Elliott Hughesec424ad2009-10-07 15:38:53 -070085 " environment variable.\n"
The Android Open Source Project9ca14dc2009-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 Gumbel411775c2012-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 Anderson6dfaf4b2012-04-20 11:21:14 -070094 " devices [-l] - list all connected devices\n"
Scott Anderson27042382012-05-30 18:11:27 -070095 " ('-l' will also list device qualifiers)\n"
Mike Lockwood01c2c302010-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-Fischerc3e82b82011-04-26 12:46:05 +0200100 " Using this command with no additional arguments\n"
Mike Lockwood01c2c302010-05-24 10:44:35 -0400101 " will disconnect from all connected TCP/IP devices.\n"
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -0800102 "\n"
103 "device commands:\n"
Mark Lindner9f9d1452014-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 Molnar4e23e3c2013-04-19 12:41:09 -0700107 " adb pull [-p] [-a] <remote> [<local>]\n"
Mark Lindner9f9d1452014-03-11 17:55:59 -0700108 " - copy file/dir from device\n"
109 " ('-p' to display the transfer progress)\n"
Lajos Molnar4e23e3c2013-04-19 12:41:09 -0700110 " ('-a' means copy timestamp and mode)\n"
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -0800111 " adb sync [ <directory> ] - copy host->device only if changed\n"
Anthony Newnamdd2db142010-02-22 08:36:49 -0600112 " (-l means list but don't copy)\n"
The Android Open Source Project9ca14dc2009-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' Turner6c489802012-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 Project9ca14dc2009-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' Turner6c489802012-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' Turner963a4492013-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 Project9ca14dc2009-03-03 19:32:55 -0800147 " adb jdwp - list PIDs of processes hosting a JDWP transport\n"
Jeff Sharkey0e0d2512014-06-09 17:30:57 -0700148 " adb install [-lrtsd] <file>\n"
149 " adb install-multiple [-lrtsdp] <file...>\n"
Anonymous Coward5fe7ec22012-04-24 10:43:41 -0700150 " - push this package file to the device and install it\n"
Jeff Sharkey0e0d2512014-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 Project9ca14dc2009-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 Tate6f2937c2013-03-06 16:40:52 -0800162 " adb backup [-f <file>] [-apk|-noapk] [-obb|-noobb] [-shared|-noshared] [-all] [-system|-nosystem] [<packages...>]\n"
Christopher Tate1cbb6df2011-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 Tate73779122011-04-21 12:53:28 -0700166 " (-apk|-noapk enable/disable backup of the .apks themselves\n"
Christopher Tate24b56162011-08-09 17:05:29 -0700167 " in the archive; the default is noapk.)\n"
Christopher Tate6f2937c2013-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 Tate73779122011-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 Tate1cbb6df2011-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 Tate73779122011-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 Tate1cbb6df2011-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 Tate73779122011-04-21 12:53:28 -0700181 "\n"
Christopher Tate24b56162011-08-09 17:05:29 -0700182 " adb restore <file> - restore device contents from the <file> backup archive\n"
Christopher Tatecf5379b2011-05-17 15:52:54 -0700183 "\n"
Paul Lawrence8ba2b022014-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 Kralevich6183c962014-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 Project9ca14dc2009-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 Project9ca14dc2009-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 Anderson6dfaf4b2012-04-20 11:21:14 -0700198 " adb get-devpath - prints: <device-path>\n"
Elliott Hughesdedf7672015-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 Bao0db67642015-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 Guyf925d912009-12-14 14:42:17 -0800205 " adb reboot-bootloader - reboots the device into the bootloader\n"
Mike Lockwood26b88e32009-08-24 15:58:40 -0700206 " adb root - restarts the adbd daemon with root permissions\n"
Dan Pasanenfb787d92014-10-06 12:57:20 -0500207 " adb unroot - restarts the adbd daemon without root permissions\n"
Romain Guyf925d912009-12-14 14:42:17 -0800208 " adb usb - restarts the adbd daemon listening on USB\n"
Paul Lawrence5f356482014-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 Project9ca14dc2009-03-03 19:32:55 -0800210 "networking:\n"
211 " adb ppp <tty> [parameters] - Run PPP over USB.\n"
Kenny Rootf8eb5782009-06-08 14:40:30 -0500212 " Note: you should not automatically start a PPP connection.\n"
The Android Open Source Project9ca14dc2009-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 Hughesdedf7672015-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 Project9ca14dc2009-03-03 19:32:55 -0800220 "\n"
Elliott Hughesdedf7672015-03-16 21:58:32 +0000221 " - If it is \"system\", \"vendor\", \"oem\" or \"data\", only the corresponding partition\n"
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -0800222 " is updated.\n"
Tim1b29ed32010-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 Project9ca14dc2009-03-03 19:32:55 -0800229 );
230}
231
Elliott Hughes38104452015-04-17 13:57:15 -0700232static int usage() {
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -0800233 help();
234 return 1;
235}
236
Yabin Cui6704a3c2014-11-17 14:48:25 -0800237#if defined(_WIN32)
238
Elliott Hughes6a096932015-04-16 16:47:02 -0700239// Implemented in sysdeps_win32.cpp.
Spencer Lowbeb61982015-03-01 15:06:21 -0800240void stdin_raw_init(int fd);
241void stdin_raw_restore(int fd);
Yabin Cui6704a3c2014-11-17 14:48:25 -0800242
243#else
Alistair Buxton7c5dcbb2013-03-01 22:16:41 +0100244static termios g_saved_terminal_state;
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -0800245
Alistair Buxton7c5dcbb2013-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 Project9ca14dc2009-03-03 19:32:55 -0800248
Alistair Buxton7c5dcbb2013-03-01 22:16:41 +0100249 termios tio;
250 if (tcgetattr(fd, &tio)) return;
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -0800251
Alistair Buxton7c5dcbb2013-03-01 22:16:41 +0100252 cfmakeraw(&tio);
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -0800253
Alistair Buxton7c5dcbb2013-03-01 22:16:41 +0100254 // No timeout but request at least one character per read.
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -0800255 tio.c_cc[VTIME] = 0;
256 tio.c_cc[VMIN] = 1;
257
Alistair Buxton7c5dcbb2013-03-01 22:16:41 +0100258 tcsetattr(fd, TCSAFLUSH, &tio);
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -0800259}
260
Alistair Buxton7c5dcbb2013-03-01 22:16:41 +0100261static void stdin_raw_restore(int fd) {
262 tcsetattr(fd, TCSAFLUSH, &g_saved_terminal_state);
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -0800263}
264#endif
265
266static void read_and_dump(int fd)
267{
268 char buf[4096];
269 int len;
270
271 while(fd >= 0) {
JP Abgrall2e5dd6e2011-03-16 15:57:42 -0700272 D("read_and_dump(): pre adb_read(fd=%d)\n", fd);
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -0800273 len = adb_read(fd, buf, 4096);
JP Abgrall2e5dd6e2011-03-16 15:57:42 -0700274 D("read_and_dump(): post adb_read(fd=%d): len=%d\n", fd, len);
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -0800275 if(len == 0) {
276 break;
277 }
278
279 if(len < 0) {
280 if(errno == EINTR) continue;
281 break;
282 }
Mike Lockwood597ea9a2009-09-22 01:18:40 -0400283 fwrite(buf, 1, len, stdout);
284 fflush(stdout);
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -0800285 }
286}
287
Jeff Sharkey0e0d2512014-06-09 17:30:57 -0700288static void read_status_line(int fd, char* buf, size_t count)
289{
290 count--;
291 while (count > 0) {
292 int len = adb_read(fd, buf, count);
293 if (len == 0) {
294 break;
295 } else if (len < 0) {
296 if (errno == EINTR) continue;
297 break;
298 }
299
300 buf += len;
301 count -= len;
302 }
303 *buf = '\0';
304}
305
Christopher Tate73779122011-04-21 12:53:28 -0700306static void copy_to_file(int inFd, int outFd) {
Christopher Tatea162e242011-06-10 11:38:37 -0700307 const size_t BUFSIZE = 32 * 1024;
308 char* buf = (char*) malloc(BUFSIZE);
Elliott Hughesd0269c92015-04-21 19:39:52 -0700309 if (buf == nullptr) fatal("couldn't allocate buffer for copy_to_file");
Christopher Tate73779122011-04-21 12:53:28 -0700310 int len;
Christopher Tatefba22972011-06-01 17:56:23 -0700311 long total = 0;
Christopher Tate73779122011-04-21 12:53:28 -0700312
313 D("copy_to_file(%d -> %d)\n", inFd, outFd);
Yabin Cui6704a3c2014-11-17 14:48:25 -0800314
Jeff Sharkeyc52ec1a2014-05-26 18:30:43 -0700315 if (inFd == STDIN_FILENO) {
316 stdin_raw_init(STDIN_FILENO);
317 }
Yabin Cui6704a3c2014-11-17 14:48:25 -0800318
Elliott Hughes7cf35752015-04-17 17:03:59 -0700319 while (true) {
Jeff Sharkeyc52ec1a2014-05-26 18:30:43 -0700320 if (inFd == STDIN_FILENO) {
321 len = unix_read(inFd, buf, BUFSIZE);
322 } else {
323 len = adb_read(inFd, buf, BUFSIZE);
324 }
Christopher Tate73779122011-04-21 12:53:28 -0700325 if (len == 0) {
Christopher Tatea162e242011-06-10 11:38:37 -0700326 D("copy_to_file() : read 0 bytes; exiting\n");
Christopher Tate73779122011-04-21 12:53:28 -0700327 break;
328 }
329 if (len < 0) {
Christopher Tatea162e242011-06-10 11:38:37 -0700330 if (errno == EINTR) {
331 D("copy_to_file() : EINTR, retrying\n");
332 continue;
333 }
Christopher Tate73779122011-04-21 12:53:28 -0700334 D("copy_to_file() : error %d\n", errno);
335 break;
336 }
Jeff Sharkeyc52ec1a2014-05-26 18:30:43 -0700337 if (outFd == STDOUT_FILENO) {
338 fwrite(buf, 1, len, stdout);
339 fflush(stdout);
340 } else {
341 adb_write(outFd, buf, len);
342 }
Christopher Tatefba22972011-06-01 17:56:23 -0700343 total += len;
Christopher Tate73779122011-04-21 12:53:28 -0700344 }
Yabin Cui6704a3c2014-11-17 14:48:25 -0800345
Jeff Sharkeyc52ec1a2014-05-26 18:30:43 -0700346 if (inFd == STDIN_FILENO) {
347 stdin_raw_restore(STDIN_FILENO);
348 }
Yabin Cui6704a3c2014-11-17 14:48:25 -0800349
Christopher Tatefba22972011-06-01 17:56:23 -0700350 D("copy_to_file() finished after %lu bytes\n", total);
Christopher Tatea162e242011-06-10 11:38:37 -0700351 free(buf);
Christopher Tate73779122011-04-21 12:53:28 -0700352}
353
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -0800354static void *stdin_read_thread(void *x)
355{
356 int fd, fdi;
357 unsigned char buf[1024];
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -0800358 int r, n;
359 int state = 0;
360
361 int *fds = (int*) x;
362 fd = fds[0];
363 fdi = fds[1];
364 free(fds);
365
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -0800366 for(;;) {
367 /* fdi is really the client's stdin, so use read, not adb_read here */
JP Abgrall2e5dd6e2011-03-16 15:57:42 -0700368 D("stdin_read_thread(): pre unix_read(fdi=%d,...)\n", fdi);
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -0800369 r = unix_read(fdi, buf, 1024);
JP Abgrall2e5dd6e2011-03-16 15:57:42 -0700370 D("stdin_read_thread(): post unix_read(fdi=%d,...)\n", fdi);
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -0800371 if(r == 0) break;
372 if(r < 0) {
373 if(errno == EINTR) continue;
374 break;
375 }
Mike Lockwood18ab0d62010-05-25 13:40:15 -0400376 for(n = 0; n < r; n++){
377 switch(buf[n]) {
378 case '\n':
379 state = 1;
380 break;
381 case '\r':
382 state = 1;
383 break;
384 case '~':
385 if(state == 1) state++;
386 break;
387 case '.':
388 if(state == 2) {
389 fprintf(stderr,"\n* disconnect *\n");
Mike Lockwood18ab0d62010-05-25 13:40:15 -0400390 stdin_raw_restore(fdi);
Mike Lockwood18ab0d62010-05-25 13:40:15 -0400391 exit(0);
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -0800392 }
Mike Lockwood18ab0d62010-05-25 13:40:15 -0400393 default:
394 state = 0;
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -0800395 }
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -0800396 }
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -0800397 r = adb_write(fd, buf, r);
398 if(r <= 0) {
399 break;
400 }
401 }
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -0800402 return 0;
403}
404
Elliott Hughes38104452015-04-17 13:57:15 -0700405static int interactive_shell() {
Elliott Hughes04a98c22015-04-29 08:35:59 -0700406 int fdi;
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -0800407
Elliott Hughes04a98c22015-04-29 08:35:59 -0700408 std::string error;
409 int fd = adb_connect("shell:", &error);
410 if (fd < 0) {
411 fprintf(stderr,"error: %s\n", error.c_str());
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -0800412 return 1;
413 }
414 fdi = 0; //dup(0);
415
Dan Albertf30d73c2015-02-25 17:51:28 -0800416 int* fds = reinterpret_cast<int*>(malloc(sizeof(int) * 2));
Elliott Hughesd0269c92015-04-21 19:39:52 -0700417 if (fds == nullptr) {
418 fprintf(stderr, "couldn't allocate fds array: %s\n", strerror(errno));
419 return 1;
420 }
421
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -0800422 fds[0] = fd;
423 fds[1] = fdi;
424
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -0800425 stdin_raw_init(fdi);
Elliott Hughesf2517142015-05-05 13:41:21 -0700426
427 adb_thread_create(stdin_read_thread, fds);
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -0800428 read_and_dump(fd);
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -0800429 stdin_raw_restore(fdi);
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -0800430 return 0;
431}
432
433
Elliott Hughes3aec2ba2015-05-05 13:10:43 -0700434static std::string format_host_command(const char* command, TransportType type, const char* serial) {
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -0800435 if (serial) {
Elliott Hughesda945812015-04-29 12:28:13 -0700436 return android::base::StringPrintf("host-serial:%s:%s", serial, command);
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -0800437 }
Elliott Hughesda945812015-04-29 12:28:13 -0700438
439 const char* prefix = "host";
440 if (type == kTransportUsb) {
441 prefix = "host-usb";
442 } else if (type == kTransportLocal) {
443 prefix = "host-local";
444 }
445 return android::base::StringPrintf("%s:%s", prefix, command);
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -0800446}
447
Elliott Hughesda945812015-04-29 12:28:13 -0700448static int adb_download_buffer(const char *service, const char *fn, const void* data, unsigned sz,
Elliott Hughes04a98c22015-04-29 08:35:59 -0700449 bool show_progress)
Doug Zongker6b217ed2012-01-09 14:54:53 -0800450{
Elliott Hughes04a98c22015-04-29 08:35:59 -0700451 std::string error;
Elliott Hughesda945812015-04-29 12:28:13 -0700452 int fd = adb_connect(android::base::StringPrintf("%s:%d", service, sz), &error);
Elliott Hughes04a98c22015-04-29 08:35:59 -0700453 if (fd < 0) {
454 fprintf(stderr,"error: %s\n", error.c_str());
Doug Zongker6b217ed2012-01-09 14:54:53 -0800455 return -1;
456 }
457
458 int opt = CHUNK_SIZE;
Spencer Low31aafa62015-01-25 14:40:16 -0800459 opt = adb_setsockopt(fd, SOL_SOCKET, SO_SNDBUF, (const void *) &opt, sizeof(opt));
Doug Zongker6b217ed2012-01-09 14:54:53 -0800460
Elliott Hughesda945812015-04-29 12:28:13 -0700461 unsigned total = sz;
Dan Albertf30d73c2015-02-25 17:51:28 -0800462 const uint8_t* ptr = reinterpret_cast<const uint8_t*>(data);
Doug Zongker6b217ed2012-01-09 14:54:53 -0800463
Elliott Hughes04a98c22015-04-29 08:35:59 -0700464 if (show_progress) {
Doug Zongker6b217ed2012-01-09 14:54:53 -0800465 char *x = strrchr(service, ':');
466 if(x) service = x + 1;
467 }
468
Elliott Hughesda945812015-04-29 12:28:13 -0700469 while (sz > 0) {
Doug Zongker6b217ed2012-01-09 14:54:53 -0800470 unsigned xfer = (sz > CHUNK_SIZE) ? CHUNK_SIZE : sz;
Elliott Hughes04a98c22015-04-29 08:35:59 -0700471 if (!WriteFdExactly(fd, ptr, xfer)) {
472 std::string error;
473 adb_status(fd, &error);
474 fprintf(stderr,"* failed to write data '%s' *\n", error.c_str());
Doug Zongker6b217ed2012-01-09 14:54:53 -0800475 return -1;
476 }
477 sz -= xfer;
478 ptr += xfer;
Elliott Hughes04a98c22015-04-29 08:35:59 -0700479 if (show_progress) {
Magnus Erikssoncb30cc62013-03-05 07:37:32 +0100480 printf("sending: '%s' %4d%% \r", fn, (int)(100LL - ((100LL * sz) / (total))));
Doug Zongker6b217ed2012-01-09 14:54:53 -0800481 fflush(stdout);
482 }
483 }
Elliott Hughes04a98c22015-04-29 08:35:59 -0700484 if (show_progress) {
Doug Zongker6b217ed2012-01-09 14:54:53 -0800485 printf("\n");
486 }
487
Elliott Hughes88b4c852015-04-30 17:32:03 -0700488 if (!adb_status(fd, &error)) {
489 fprintf(stderr,"* error response '%s' *\n", error.c_str());
Doug Zongker6b217ed2012-01-09 14:54:53 -0800490 return -1;
491 }
492
493 adb_close(fd);
494 return 0;
495}
496
Doug Zongkerbcad29f2014-06-26 15:35:36 -0700497#define SIDELOAD_HOST_BLOCK_SIZE (CHUNK_SIZE)
498
499/*
500 * The sideload-host protocol serves the data in a file (given on the
501 * command line) to the client, using a simple protocol:
502 *
503 * - The connect message includes the total number of bytes in the
504 * file and a block size chosen by us.
505 *
506 * - The other side sends the desired block number as eight decimal
507 * digits (eg "00000023" for block 23). Blocks are numbered from
508 * zero.
509 *
510 * - We send back the data of the requested block. The last block is
511 * likely to be partial; when the last block is requested we only
512 * send the part of the block that exists, it's not padded up to the
513 * block size.
514 *
515 * - When the other side sends "DONEDONE" instead of a block number,
516 * we hang up.
517 */
Elliott Hughes38104452015-04-17 13:57:15 -0700518static int adb_sideload_host(const char* fn) {
Doug Zongkerbcad29f2014-06-26 15:35:36 -0700519 unsigned sz;
520 size_t xfer = 0;
521 int status;
Dan Albertf30d73c2015-02-25 17:51:28 -0800522 int last_percent = -1;
523 int opt = SIDELOAD_HOST_BLOCK_SIZE;
Doug Zongkerbcad29f2014-06-26 15:35:36 -0700524
525 printf("loading: '%s'", fn);
526 fflush(stdout);
Dan Albertf30d73c2015-02-25 17:51:28 -0800527 uint8_t* data = reinterpret_cast<uint8_t*>(load_file(fn, &sz));
Doug Zongkerbcad29f2014-06-26 15:35:36 -0700528 if (data == 0) {
529 printf("\n");
530 fprintf(stderr, "* cannot read '%s' *\n", fn);
531 return -1;
532 }
533
Elliott Hughesda945812015-04-29 12:28:13 -0700534 std::string service =
535 android::base::StringPrintf("sideload-host:%d:%d", sz, SIDELOAD_HOST_BLOCK_SIZE);
Elliott Hughes04a98c22015-04-29 08:35:59 -0700536 std::string error;
Elliott Hughesda945812015-04-29 12:28:13 -0700537 int fd = adb_connect(service, &error);
Doug Zongkerbcad29f2014-06-26 15:35:36 -0700538 if (fd < 0) {
539 // Try falling back to the older sideload method. Maybe this
540 // is an older device that doesn't support sideload-host.
541 printf("\n");
Elliott Hughes04a98c22015-04-29 08:35:59 -0700542 status = adb_download_buffer("sideload", fn, data, sz, true);
Doug Zongkerbcad29f2014-06-26 15:35:36 -0700543 goto done;
544 }
545
Spencer Low31aafa62015-01-25 14:40:16 -0800546 opt = adb_setsockopt(fd, SOL_SOCKET, SO_SNDBUF, (const void *) &opt, sizeof(opt));
Doug Zongkerbcad29f2014-06-26 15:35:36 -0700547
Elliott Hughes7cf35752015-04-17 17:03:59 -0700548 while (true) {
Elliott Hughesda945812015-04-29 12:28:13 -0700549 char buf[9];
Dan Albert66a91b02015-02-24 21:26:58 -0800550 if (!ReadFdExactly(fd, buf, 8)) {
Elliott Hughes04a98c22015-04-29 08:35:59 -0700551 fprintf(stderr, "* failed to read command: %s\n", strerror(errno));
Doug Zongkerbcad29f2014-06-26 15:35:36 -0700552 status = -1;
553 goto done;
554 }
Elliott Hughesda945812015-04-29 12:28:13 -0700555 buf[8] = '\0';
Doug Zongkerbcad29f2014-06-26 15:35:36 -0700556
Elliott Hughesda945812015-04-29 12:28:13 -0700557 if (strcmp("DONEDONE", buf) == 0) {
Doug Zongkerbcad29f2014-06-26 15:35:36 -0700558 status = 0;
559 break;
560 }
561
Doug Zongkerbcad29f2014-06-26 15:35:36 -0700562 int block = strtol(buf, NULL, 10);
563
564 size_t offset = block * SIDELOAD_HOST_BLOCK_SIZE;
565 if (offset >= sz) {
Elliott Hughes04a98c22015-04-29 08:35:59 -0700566 fprintf(stderr, "* attempt to read block %d past end\n", block);
Doug Zongkerbcad29f2014-06-26 15:35:36 -0700567 status = -1;
568 goto done;
569 }
570 uint8_t* start = data + offset;
571 size_t offset_end = offset + SIDELOAD_HOST_BLOCK_SIZE;
572 size_t to_write = SIDELOAD_HOST_BLOCK_SIZE;
573 if (offset_end > sz) {
574 to_write = sz - offset;
575 }
576
Dan Albert66a91b02015-02-24 21:26:58 -0800577 if(!WriteFdExactly(fd, start, to_write)) {
Elliott Hughes04a98c22015-04-29 08:35:59 -0700578 adb_status(fd, &error);
579 fprintf(stderr,"* failed to write data '%s' *\n", error.c_str());
Doug Zongkerbcad29f2014-06-26 15:35:36 -0700580 status = -1;
581 goto done;
582 }
583 xfer += to_write;
584
585 // For normal OTA packages, we expect to transfer every byte
586 // twice, plus a bit of overhead (one read during
587 // verification, one read of each byte for installation, plus
588 // extra access to things like the zip central directory).
589 // This estimate of the completion becomes 100% when we've
590 // transferred ~2.13 (=100/47) times the package size.
591 int percent = (int)(xfer * 47LL / (sz ? sz : 1));
592 if (percent != last_percent) {
593 printf("\rserving: '%s' (~%d%%) ", fn, percent);
594 fflush(stdout);
595 last_percent = percent;
596 }
597 }
598
Colin Cross2328bea2014-07-07 14:12:41 -0700599 printf("\rTotal xfer: %.2fx%*s\n", (double)xfer / (sz ? sz : 1), (int)strlen(fn)+10, "");
Doug Zongkerbcad29f2014-06-26 15:35:36 -0700600
601 done:
602 if (fd >= 0) adb_close(fd);
603 free(data);
604 return status;
605}
606
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -0800607/**
608 * Run ppp in "notty" mode against a resource listed as the first parameter
609 * eg:
610 *
611 * ppp dev:/dev/omap_csmi_tty0 <ppp options>
612 *
613 */
Elliott Hughes38104452015-04-17 13:57:15 -0700614static int ppp(int argc, const char** argv) {
Yabin Cui2fa43212014-11-11 09:24:11 -0800615#if defined(_WIN32)
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -0800616 fprintf(stderr, "error: adb %s not implemented on Win32\n", argv[0]);
617 return -1;
618#else
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -0800619 if (argc < 2) {
620 fprintf(stderr, "usage: adb %s <adb service name> [ppp opts]\n",
621 argv[0]);
622
623 return 1;
624 }
625
Dan Albertf30d73c2015-02-25 17:51:28 -0800626 const char* adb_service_name = argv[1];
Elliott Hughes04a98c22015-04-29 08:35:59 -0700627 std::string error;
628 int fd = adb_connect(adb_service_name, &error);
629 if (fd < 0) {
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -0800630 fprintf(stderr,"Error: Could not open adb service: %s. Error: %s\n",
Elliott Hughes04a98c22015-04-29 08:35:59 -0700631 adb_service_name, error.c_str());
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -0800632 return 1;
633 }
634
Elliott Hughes04a98c22015-04-29 08:35:59 -0700635 pid_t pid = fork();
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -0800636
637 if (pid < 0) {
638 perror("from fork()");
639 return 1;
640 } else if (pid == 0) {
641 int err;
642 int i;
643 const char **ppp_args;
644
645 // copy args
646 ppp_args = (const char **) alloca(sizeof(char *) * argc + 1);
647 ppp_args[0] = "pppd";
648 for (i = 2 ; i < argc ; i++) {
649 //argv[2] and beyond become ppp_args[1] and beyond
650 ppp_args[i - 1] = argv[i];
651 }
652 ppp_args[i-1] = NULL;
653
654 // child side
655
656 dup2(fd, STDIN_FILENO);
657 dup2(fd, STDOUT_FILENO);
658 adb_close(STDERR_FILENO);
659 adb_close(fd);
660
661 err = execvp("pppd", (char * const *)ppp_args);
662
663 if (err < 0) {
664 perror("execing pppd");
665 }
666 exit(-1);
667 } else {
668 // parent side
669
670 adb_close(fd);
671 return 0;
672 }
Yabin Cui2fa43212014-11-11 09:24:11 -0800673#endif /* !defined(_WIN32) */
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -0800674}
675
Elliott Hughes3aec2ba2015-05-05 13:10:43 -0700676static bool wait_for_device(const char* service, TransportType t, const char* serial) {
Elliott Hugheseaabdd62015-05-04 19:29:32 -0700677 // Was the caller vague about what they'd like us to wait for?
678 // If so, check they weren't more specific in their choice of transport type.
679 if (strcmp(service, "wait-for-device") == 0) {
680 if (t == kTransportUsb) {
681 service = "wait-for-usb";
682 } else if (t == kTransportLocal) {
683 service = "wait-for-local";
684 } else {
685 service = "wait-for-any";
686 }
687 }
688
689 std::string cmd = format_host_command(service, t, serial);
690 std::string error;
691 if (adb_command(cmd, &error)) {
692 D("failure: %s *\n", error.c_str());
693 fprintf(stderr,"error: %s\n", error.c_str());
694 return false;
695 }
696
697 return true;
698}
699
Elliott Hughes3aec2ba2015-05-05 13:10:43 -0700700static int send_shell_command(TransportType transport_type, const char* serial,
Elliott Hughes170b5682015-04-17 10:59:34 -0700701 const std::string& command) {
702 int fd;
703 while (true) {
Elliott Hughes04a98c22015-04-29 08:35:59 -0700704 std::string error;
Elliott Hughesda945812015-04-29 12:28:13 -0700705 fd = adb_connect(command, &error);
Elliott Hughes04a98c22015-04-29 08:35:59 -0700706 if (fd >= 0) {
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -0800707 break;
Elliott Hughes04a98c22015-04-29 08:35:59 -0700708 }
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -0800709 fprintf(stderr,"- waiting for device -\n");
710 adb_sleep_ms(1000);
Elliott Hugheseaabdd62015-05-04 19:29:32 -0700711 wait_for_device("wait-for-device", transport_type, serial);
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -0800712 }
713
714 read_and_dump(fd);
Elliott Hughes170b5682015-04-17 10:59:34 -0700715 int rc = adb_close(fd);
716 if (rc) {
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -0800717 perror("close");
Elliott Hughes170b5682015-04-17 10:59:34 -0700718 }
719 return rc;
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -0800720}
721
Elliott Hughes3aec2ba2015-05-05 13:10:43 -0700722static int logcat(TransportType transport, const char* serial, int argc, const char** argv) {
Elliott Hughes170b5682015-04-17 10:59:34 -0700723 char* log_tags = getenv("ANDROID_LOG_TAGS");
724 std::string quoted = escape_arg(log_tags == nullptr ? "" : log_tags);
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -0800725
Elliott Hughes170b5682015-04-17 10:59:34 -0700726 std::string cmd = "shell:export ANDROID_LOG_TAGS=\"" + quoted + "\"; exec logcat";
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -0800727
Jeff Sharkey824d1062014-06-10 11:31:24 -0700728 if (!strcmp(argv[0], "longcat")) {
Elliott Hughes170b5682015-04-17 10:59:34 -0700729 cmd += " -v long";
Christopher Tate7b9b5162011-11-30 13:00:33 -0800730 }
731
Elliott Hughese4b64792015-04-17 20:11:08 -0700732 --argc;
733 ++argv;
Elliott Hughes170b5682015-04-17 10:59:34 -0700734 while (argc-- > 0) {
Elliott Hughese4b64792015-04-17 20:11:08 -0700735 cmd += " " + escape_arg(*argv++);
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -0800736 }
737
Elliott Hughes111a2222015-04-21 17:58:55 -0700738 return send_shell_command(transport, serial, cmd);
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -0800739}
740
Mark Salyzyn63e39f22014-04-30 09:10:31 -0700741static int mkdirs(const char *path)
Christopher Tate1e9f2392011-12-08 19:04:34 -0800742{
743 int ret;
Mark Salyzyn63e39f22014-04-30 09:10:31 -0700744 char *x = (char *)path + 1;
Christopher Tate1e9f2392011-12-08 19:04:34 -0800745
746 for(;;) {
747 x = adb_dirstart(x);
748 if(x == 0) return 0;
749 *x = 0;
750 ret = adb_mkdir(path, 0775);
751 *x = OS_PATH_SEPARATOR;
752 if((ret < 0) && (errno != EEXIST)) {
753 return ret;
754 }
755 x++;
756 }
757 return 0;
758}
759
Dan Albertf30d73c2015-02-25 17:51:28 -0800760static int backup(int argc, const char** argv) {
Elliott Hughese4b64792015-04-17 20:11:08 -0700761 const char* filename = "./backup.ab";
Christopher Tate73779122011-04-21 12:53:28 -0700762
Christopher Tatefba22972011-06-01 17:56:23 -0700763 /* find, extract, and use any -f argument */
Elliott Hughese4b64792015-04-17 20:11:08 -0700764 for (int i = 1; i < argc; i++) {
Christopher Tatefba22972011-06-01 17:56:23 -0700765 if (!strcmp("-f", argv[i])) {
766 if (i == argc-1) {
767 fprintf(stderr, "adb: -f passed with no filename\n");
768 return usage();
769 }
770 filename = argv[i+1];
Elliott Hughese4b64792015-04-17 20:11:08 -0700771 for (int j = i+2; j <= argc; ) {
Christopher Tatefba22972011-06-01 17:56:23 -0700772 argv[i++] = argv[j++];
773 }
774 argc -= 2;
775 argv[argc] = NULL;
776 }
Christopher Tate73779122011-04-21 12:53:28 -0700777 }
778
Christopher Tatecf4f16a2011-08-22 17:12:08 -0700779 /* bare "adb backup" or "adb backup -f filename" are not valid invocations */
780 if (argc < 2) return usage();
781
Christopher Tate1e9f2392011-12-08 19:04:34 -0800782 adb_unlink(filename);
Mark Salyzyn63e39f22014-04-30 09:10:31 -0700783 mkdirs(filename);
Elliott Hughese4b64792015-04-17 20:11:08 -0700784 int outFd = adb_creat(filename, 0640);
Christopher Tate73779122011-04-21 12:53:28 -0700785 if (outFd < 0) {
786 fprintf(stderr, "adb: unable to open file %s\n", filename);
787 return -1;
788 }
789
Elliott Hughese4b64792015-04-17 20:11:08 -0700790 std::string cmd = "backup:";
791 --argc;
792 ++argv;
793 while (argc-- > 0) {
794 cmd += " " + escape_arg(*argv++);
Christopher Tate73779122011-04-21 12:53:28 -0700795 }
796
Elliott Hughese4b64792015-04-17 20:11:08 -0700797 D("backup. filename=%s cmd=%s\n", filename, cmd.c_str());
Elliott Hughes04a98c22015-04-29 08:35:59 -0700798 std::string error;
Elliott Hughesda945812015-04-29 12:28:13 -0700799 int fd = adb_connect(cmd, &error);
Christopher Tate73779122011-04-21 12:53:28 -0700800 if (fd < 0) {
Elliott Hughes04a98c22015-04-29 08:35:59 -0700801 fprintf(stderr, "adb: unable to connect for backup: %s\n", error.c_str());
Christopher Tate73779122011-04-21 12:53:28 -0700802 adb_close(outFd);
803 return -1;
804 }
805
Christopher Tate9c829102012-01-06 15:43:03 -0800806 printf("Now unlock your device and confirm the backup operation.\n");
Christopher Tate73779122011-04-21 12:53:28 -0700807 copy_to_file(fd, outFd);
808
809 adb_close(fd);
810 adb_close(outFd);
811 return 0;
812}
813
Dan Albertf30d73c2015-02-25 17:51:28 -0800814static int restore(int argc, const char** argv) {
Christopher Tatecf5379b2011-05-17 15:52:54 -0700815 if (argc != 2) return usage();
816
Elliott Hughes04a98c22015-04-29 08:35:59 -0700817 const char* filename = argv[1];
818 int tarFd = adb_open(filename, O_RDONLY);
Christopher Tatecf5379b2011-05-17 15:52:54 -0700819 if (tarFd < 0) {
Elliott Hughes04a98c22015-04-29 08:35:59 -0700820 fprintf(stderr, "adb: unable to open file %s: %s\n", filename, strerror(errno));
Christopher Tatecf5379b2011-05-17 15:52:54 -0700821 return -1;
822 }
823
Elliott Hughes04a98c22015-04-29 08:35:59 -0700824 std::string error;
825 int fd = adb_connect("restore:", &error);
Christopher Tatecf5379b2011-05-17 15:52:54 -0700826 if (fd < 0) {
Elliott Hughes04a98c22015-04-29 08:35:59 -0700827 fprintf(stderr, "adb: unable to connect for restore: %s\n", error.c_str());
Christopher Tatecf5379b2011-05-17 15:52:54 -0700828 adb_close(tarFd);
829 return -1;
830 }
831
Christopher Tate9c829102012-01-06 15:43:03 -0800832 printf("Now unlock your device and confirm the restore operation.\n");
Christopher Tatecf5379b2011-05-17 15:52:54 -0700833 copy_to_file(tarFd, fd);
834
835 adb_close(fd);
836 adb_close(tarFd);
837 return 0;
838}
839
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -0800840/* <hint> may be:
841 * - A simple product name
842 * e.g., "sooner"
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -0800843 * - A relative path from the CWD to the ANDROID_PRODUCT_OUT dir
844 * e.g., "out/target/product/sooner"
845 * - An absolute path to the PRODUCT_OUT dir
846 * e.g., "/src/device/out/target/product/sooner"
847 *
848 * Given <hint>, try to construct an absolute path to the
849 * ANDROID_PRODUCT_OUT dir.
850 */
Elliott Hughes38104452015-04-17 13:57:15 -0700851static std::string find_product_out_path(const char* hint) {
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -0800852 if (hint == NULL || hint[0] == '\0') {
Elliott Hughes38104452015-04-17 13:57:15 -0700853 return "";
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -0800854 }
855
Elliott Hughes38104452015-04-17 13:57:15 -0700856 // If it's already absolute, don't bother doing any work.
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -0800857 if (adb_is_absolute_host_path(hint)) {
Elliott Hughes38104452015-04-17 13:57:15 -0700858 return hint;
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -0800859 }
860
Elliott Hughes38104452015-04-17 13:57:15 -0700861 // If there are any slashes in it, assume it's a relative path;
862 // make it absolute.
Elliott Hughes7cf35752015-04-17 17:03:59 -0700863 if (adb_dirstart(hint) != nullptr) {
864 std::string cwd;
865 if (!getcwd(&cwd)) {
866 fprintf(stderr, "adb: getcwd failed: %s\n", strerror(errno));
Elliott Hughes38104452015-04-17 13:57:15 -0700867 return "";
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -0800868 }
Elliott Hughes7cf35752015-04-17 17:03:59 -0700869 return android::base::StringPrintf("%s%s%s", cwd.c_str(), OS_PATH_SEPARATOR_STR, hint);
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -0800870 }
871
Elliott Hughes38104452015-04-17 13:57:15 -0700872 // It's a string without any slashes. Try to do something with it.
873 //
874 // Try to find the root of the build tree, and build a PRODUCT_OUT
875 // path from there.
Elliott Hughes7cf35752015-04-17 17:03:59 -0700876 char* top = getenv("ANDROID_BUILD_TOP");
Elliott Hughes38104452015-04-17 13:57:15 -0700877 if (top == nullptr) {
Elliott Hughes7cf35752015-04-17 17:03:59 -0700878 fprintf(stderr, "adb: ANDROID_BUILD_TOP not set!\n");
Elliott Hughes38104452015-04-17 13:57:15 -0700879 return "";
880 }
Elliott Hughes7cf35752015-04-17 17:03:59 -0700881
882 std::string path = top;
Elliott Hughes38104452015-04-17 13:57:15 -0700883 path += OS_PATH_SEPARATOR_STR;
884 path += "out";
885 path += OS_PATH_SEPARATOR_STR;
886 path += "target";
887 path += OS_PATH_SEPARATOR_STR;
888 path += "product";
889 path += OS_PATH_SEPARATOR_STR;
890 path += hint;
891 if (!directory_exists(path)) {
892 fprintf(stderr, "adb: Couldn't find a product dir based on -p %s; "
893 "\"%s\" doesn't exist\n", hint, path.c_str());
Elliott Hughes7cf35752015-04-17 17:03:59 -0700894 return "";
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -0800895 }
Elliott Hughes38104452015-04-17 13:57:15 -0700896 return path;
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -0800897}
898
Dan Albertf30d73c2015-02-25 17:51:28 -0800899static void parse_push_pull_args(const char **arg, int narg, char const **path1,
900 char const **path2, int *show_progress,
901 int *copy_attrs) {
Mark Lindner9f9d1452014-03-11 17:55:59 -0700902 *show_progress = 0;
Lajos Molnar4e23e3c2013-04-19 12:41:09 -0700903 *copy_attrs = 0;
Mark Lindner9f9d1452014-03-11 17:55:59 -0700904
Lajos Molnar4e23e3c2013-04-19 12:41:09 -0700905 while (narg > 0) {
906 if (!strcmp(*arg, "-p")) {
907 *show_progress = 1;
908 } else if (!strcmp(*arg, "-a")) {
909 *copy_attrs = 1;
910 } else {
911 break;
912 }
Mark Lindner9f9d1452014-03-11 17:55:59 -0700913 ++arg;
914 --narg;
915 }
916
917 if (narg > 0) {
918 *path1 = *arg;
919 ++arg;
920 --narg;
921 }
922
923 if (narg > 0) {
924 *path2 = *arg;
925 }
926}
927
Elliott Hughesda945812015-04-29 12:28:13 -0700928static int adb_connect_command(const std::string& command) {
Elliott Hughes04a98c22015-04-29 08:35:59 -0700929 std::string error;
930 int fd = adb_connect(command, &error);
Tao Bao0db67642015-03-29 11:22:34 -0700931 if (fd != -1) {
932 read_and_dump(fd);
933 adb_close(fd);
934 return 0;
935 }
Elliott Hughes04a98c22015-04-29 08:35:59 -0700936 fprintf(stderr, "Error: %s\n", error.c_str());
Tao Bao0db67642015-03-29 11:22:34 -0700937 return 1;
938}
939
Elliott Hughesda945812015-04-29 12:28:13 -0700940static int adb_query_command(const std::string& command) {
941 std::string result;
942 std::string error;
943 if (!adb_query(command, &result, &error)) {
944 fprintf(stderr, "error: %s\n", error.c_str());
945 return 1;
946 }
947 printf("%s\n", result.c_str());
948 return 0;
949}
950
Elliott Hughesfb596842015-05-01 17:04:38 -0700951int adb_commandline(int argc, const char **argv) {
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -0800952 int no_daemon = 0;
953 int is_daemon = 0;
David 'Digit' Turner6826db62011-01-31 14:23:56 +0100954 int is_server = 0;
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -0800955 int r;
Elliott Hughes3aec2ba2015-05-05 13:10:43 -0700956 TransportType transport_type = kTransportAny;
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -0800957
Elliott Hughes38104452015-04-17 13:57:15 -0700958 // If defined, this should be an absolute path to
959 // the directory containing all of the various system images
960 // for a particular product. If not defined, and the adb
961 // command requires this information, then the user must
962 // specify the path using "-p".
963 char* ANDROID_PRODUCT_OUT = getenv("ANDROID_PRODUCT_OUT");
964 if (ANDROID_PRODUCT_OUT != nullptr) {
965 gProductOutPath = ANDROID_PRODUCT_OUT;
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -0800966 }
967 // TODO: also try TARGET_PRODUCT/TARGET_DEVICE as a hint
968
Elliott Hughes3aec2ba2015-05-05 13:10:43 -0700969 const char* serial = getenv("ANDROID_SERIAL");
Nick Pellyaf2fe9b2009-05-07 12:48:03 -0700970
Stefan Hilzinger92ca4fa2010-04-19 12:21:12 +0100971 /* Validate and assign the server port */
Elliott Hughes3aec2ba2015-05-05 13:10:43 -0700972 const char* server_port_str = getenv("ANDROID_ADB_SERVER_PORT");
Stefan Hilzinger92ca4fa2010-04-19 12:21:12 +0100973 int server_port = DEFAULT_ADB_PORT;
974 if (server_port_str && strlen(server_port_str) > 0) {
975 server_port = (int) strtol(server_port_str, NULL, 0);
Matt Gumbel411775c2012-11-14 10:16:17 -0800976 if (server_port <= 0 || server_port > 65535) {
Stefan Hilzinger92ca4fa2010-04-19 12:21:12 +0100977 fprintf(stderr,
Matt Gumbel411775c2012-11-14 10:16:17 -0800978 "adb: Env var ANDROID_ADB_SERVER_PORT must be a positive number less than 65535. Got \"%s\"\n",
Stefan Hilzinger92ca4fa2010-04-19 12:21:12 +0100979 server_port_str);
980 return usage();
981 }
982 }
983
984 /* modifiers and flags */
Riley Andrews03b4b372014-12-05 17:37:24 -0800985 while (argc > 0) {
986 if (!strcmp(argv[0],"server")) {
David 'Digit' Turner6826db62011-01-31 14:23:56 +0100987 is_server = 1;
Riley Andrews03b4b372014-12-05 17:37:24 -0800988 } else if (!strcmp(argv[0],"nodaemon")) {
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -0800989 no_daemon = 1;
990 } else if (!strcmp(argv[0], "fork-server")) {
991 /* this is a special flag used only when the ADB client launches the ADB Server */
992 is_daemon = 1;
Riley Andrews03b4b372014-12-05 17:37:24 -0800993 } else if (!strncmp(argv[0], "-p", 2)) {
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -0800994 const char *product = NULL;
995 if (argv[0][2] == '\0') {
996 if (argc < 2) return usage();
997 product = argv[1];
998 argc--;
999 argv++;
1000 } else {
Vairavan Srinivasanadc39402012-08-04 16:40:50 -07001001 product = argv[0] + 2;
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -08001002 }
1003 gProductOutPath = find_product_out_path(product);
Elliott Hughes38104452015-04-17 13:57:15 -07001004 if (gProductOutPath.empty()) {
1005 fprintf(stderr, "adb: could not resolve \"-p %s\"\n", product);
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -08001006 return usage();
1007 }
1008 } else if (argv[0][0]=='-' && argv[0][1]=='s') {
1009 if (isdigit(argv[0][2])) {
1010 serial = argv[0] + 2;
1011 } else {
Riley Andrews03b4b372014-12-05 17:37:24 -08001012 if (argc < 2 || argv[0][2] != '\0') return usage();
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -08001013 serial = argv[1];
1014 argc--;
1015 argv++;
1016 }
1017 } else if (!strcmp(argv[0],"-d")) {
Elliott Hughes3aec2ba2015-05-05 13:10:43 -07001018 transport_type = kTransportUsb;
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -08001019 } else if (!strcmp(argv[0],"-e")) {
Elliott Hughes3aec2ba2015-05-05 13:10:43 -07001020 transport_type = kTransportLocal;
Matt Gumbel411775c2012-11-14 10:16:17 -08001021 } else if (!strcmp(argv[0],"-a")) {
1022 gListenAll = 1;
Riley Andrews03b4b372014-12-05 17:37:24 -08001023 } else if (!strncmp(argv[0], "-H", 2)) {
Matt Gumbel411775c2012-11-14 10:16:17 -08001024 const char *hostname = NULL;
1025 if (argv[0][2] == '\0') {
1026 if (argc < 2) return usage();
1027 hostname = argv[1];
1028 argc--;
1029 argv++;
1030 } else {
1031 hostname = argv[0] + 2;
1032 }
1033 adb_set_tcp_name(hostname);
1034
Riley Andrews03b4b372014-12-05 17:37:24 -08001035 } else if (!strncmp(argv[0], "-P", 2)) {
Matt Gumbel411775c2012-11-14 10:16:17 -08001036 if (argv[0][2] == '\0') {
1037 if (argc < 2) return usage();
1038 server_port_str = argv[1];
1039 argc--;
1040 argv++;
1041 } else {
1042 server_port_str = argv[0] + 2;
1043 }
1044 if (strlen(server_port_str) > 0) {
1045 server_port = (int) strtol(server_port_str, NULL, 0);
1046 if (server_port <= 0 || server_port > 65535) {
1047 fprintf(stderr,
1048 "adb: port number must be a positive number less than 65536. Got \"%s\"\n",
1049 server_port_str);
1050 return usage();
1051 }
1052 } else {
1053 fprintf(stderr,
1054 "adb: port number must be a positive number less than 65536. Got empty string.\n");
1055 return usage();
1056 }
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -08001057 } else {
1058 /* out of recognized modifiers and flags */
1059 break;
1060 }
1061 argc--;
1062 argv++;
1063 }
1064
Elliott Hughes3aec2ba2015-05-05 13:10:43 -07001065 adb_set_transport(transport_type, serial);
Stefan Hilzinger92ca4fa2010-04-19 12:21:12 +01001066 adb_set_tcp_specifics(server_port);
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -08001067
David 'Digit' Turner6826db62011-01-31 14:23:56 +01001068 if (is_server) {
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -08001069 if (no_daemon || is_daemon) {
Stefan Hilzinger92ca4fa2010-04-19 12:21:12 +01001070 r = adb_main(is_daemon, server_port);
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -08001071 } else {
Stefan Hilzinger92ca4fa2010-04-19 12:21:12 +01001072 r = launch_server(server_port);
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -08001073 }
Riley Andrews03b4b372014-12-05 17:37:24 -08001074 if (r) {
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -08001075 fprintf(stderr,"* could not start server *\n");
1076 }
1077 return r;
1078 }
1079
Riley Andrews03b4b372014-12-05 17:37:24 -08001080 if (argc == 0) {
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -08001081 return usage();
1082 }
1083
Riley Andrewsfacb92d2014-12-05 17:32:46 -08001084 /* handle wait-for-* prefix */
1085 if (!strncmp(argv[0], "wait-for-", strlen("wait-for-"))) {
Dan Albertf30d73c2015-02-25 17:51:28 -08001086 const char* service = argv[0];
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -08001087
Elliott Hughes3aec2ba2015-05-05 13:10:43 -07001088 if (!wait_for_device(service, transport_type, serial)) {
Riley Andrewsfacb92d2014-12-05 17:32:46 -08001089 return 1;
1090 }
1091
Elliott Hugheseaabdd62015-05-04 19:29:32 -07001092 // Allow a command to be run after wait-for-device,
1093 // e.g. 'adb wait-for-device shell'.
Riley Andrewsfacb92d2014-12-05 17:32:46 -08001094 if (argc == 1) {
1095 return 0;
1096 }
1097
1098 /* Fall through */
1099 argc--;
1100 argv++;
1101 }
1102
1103 /* adb_connect() commands */
Riley Andrews03b4b372014-12-05 17:37:24 -08001104 if (!strcmp(argv[0], "devices")) {
Dan Albertf30d73c2015-02-25 17:51:28 -08001105 const char *listopt;
Elliott Hughesda945812015-04-29 12:28:13 -07001106 if (argc < 2) {
Scott Anderson6dfaf4b2012-04-20 11:21:14 -07001107 listopt = "";
Elliott Hughesda945812015-04-29 12:28:13 -07001108 } else if (argc == 2 && !strcmp(argv[1], "-l")) {
Scott Anderson6dfaf4b2012-04-20 11:21:14 -07001109 listopt = argv[1];
Elliott Hughesda945812015-04-29 12:28:13 -07001110 } else {
Scott Anderson6dfaf4b2012-04-20 11:21:14 -07001111 fprintf(stderr, "Usage: adb devices [-l]\n");
1112 return 1;
1113 }
Elliott Hughesda945812015-04-29 12:28:13 -07001114
1115 std::string query = android::base::StringPrintf("host:%s%s", argv[0], listopt);
1116 printf("List of devices attached\n");
1117 return adb_query_command(query);
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -08001118 }
Riley Andrewsfacb92d2014-12-05 17:32:46 -08001119 else if (!strcmp(argv[0], "connect")) {
Mike Lockwood26b88e32009-08-24 15:58:40 -07001120 if (argc != 2) {
Mike Lockwood01c2c302010-05-24 10:44:35 -04001121 fprintf(stderr, "Usage: adb connect <host>[:<port>]\n");
Mike Lockwood26b88e32009-08-24 15:58:40 -07001122 return 1;
1123 }
Elliott Hughesda945812015-04-29 12:28:13 -07001124
1125 std::string query = android::base::StringPrintf("host:connect:%s", argv[1]);
1126 return adb_query_command(query);
Mike Lockwood01c2c302010-05-24 10:44:35 -04001127 }
Riley Andrewsfacb92d2014-12-05 17:32:46 -08001128 else if (!strcmp(argv[0], "disconnect")) {
Mike Lockwood01c2c302010-05-24 10:44:35 -04001129 if (argc > 2) {
1130 fprintf(stderr, "Usage: adb disconnect [<host>[:<port>]]\n");
1131 return 1;
1132 }
Elliott Hughesda945812015-04-29 12:28:13 -07001133
1134 std::string query = android::base::StringPrintf("host:disconnect:%s",
1135 (argc == 2) ? argv[1] : "");
1136 return adb_query_command(query);
Mike Lockwood26b88e32009-08-24 15:58:40 -07001137 }
Riley Andrewsfacb92d2014-12-05 17:32:46 -08001138 else if (!strcmp(argv[0], "emu")) {
Spencer Low7dc759f2015-05-06 16:13:42 -07001139 return adb_send_emulator_command(argc, argv, serial);
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -08001140 }
Riley Andrewsfacb92d2014-12-05 17:32:46 -08001141 else if (!strcmp(argv[0], "shell") || !strcmp(argv[0], "hell")) {
Daniel Sandlerd9bc2372010-08-19 01:10:18 -04001142 char h = (argv[0][0] == 'h');
1143
1144 if (h) {
1145 printf("\x1b[41;33m");
1146 fflush(stdout);
1147 }
1148
Riley Andrews03b4b372014-12-05 17:37:24 -08001149 if (argc < 2) {
JP Abgrall2e5dd6e2011-03-16 15:57:42 -07001150 D("starting interactive shell\n");
Daniel Sandlerd9bc2372010-08-19 01:10:18 -04001151 r = interactive_shell();
1152 if (h) {
1153 printf("\x1b[0m");
1154 fflush(stdout);
1155 }
1156 return r;
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -08001157 }
1158
Elliott Hughes170b5682015-04-17 10:59:34 -07001159 std::string cmd = "shell:";
Elliott Hugheseaabdd62015-05-04 19:29:32 -07001160 --argc;
1161 ++argv;
Jeff Sharkeyc52ec1a2014-05-26 18:30:43 -07001162 while (argc-- > 0) {
Elliott Hugheseaabdd62015-05-04 19:29:32 -07001163 // We don't escape here, just like ssh(1). http://b/20564385.
1164 cmd += *argv++;
1165 if (*argv) cmd += " ";
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -08001166 }
1167
Elliott Hughes170b5682015-04-17 10:59:34 -07001168 while (true) {
1169 D("interactive shell loop. cmd=%s\n", cmd.c_str());
Elliott Hughes04a98c22015-04-29 08:35:59 -07001170 std::string error;
Elliott Hughesda945812015-04-29 12:28:13 -07001171 int fd = adb_connect(cmd, &error);
Elliott Hughes170b5682015-04-17 10:59:34 -07001172 int r;
Riley Andrews03b4b372014-12-05 17:37:24 -08001173 if (fd >= 0) {
JP Abgrall2e5dd6e2011-03-16 15:57:42 -07001174 D("about to read_and_dump(fd=%d)\n", fd);
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -08001175 read_and_dump(fd);
JP Abgrall2e5dd6e2011-03-16 15:57:42 -07001176 D("read_and_dump() done.\n");
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -08001177 adb_close(fd);
1178 r = 0;
1179 } else {
Elliott Hughes04a98c22015-04-29 08:35:59 -07001180 fprintf(stderr,"error: %s\n", error.c_str());
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -08001181 r = -1;
1182 }
1183
Elliott Hughesc68e0e22015-05-05 12:50:26 -07001184 if (h) {
1185 printf("\x1b[0m");
1186 fflush(stdout);
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -08001187 }
Elliott Hughesc68e0e22015-05-05 12:50:26 -07001188 D("interactive shell loop. return r=%d\n", r);
1189 return r;
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -08001190 }
1191 }
Riley Andrewsfacb92d2014-12-05 17:32:46 -08001192 else if (!strcmp(argv[0], "exec-in") || !strcmp(argv[0], "exec-out")) {
Jeff Sharkeyc52ec1a2014-05-26 18:30:43 -07001193 int exec_in = !strcmp(argv[0], "exec-in");
Jeff Sharkeyc52ec1a2014-05-26 18:30:43 -07001194
Elliott Hughes170b5682015-04-17 10:59:34 -07001195 std::string cmd = "exec:";
1196 cmd += argv[1];
Jeff Sharkeyc52ec1a2014-05-26 18:30:43 -07001197 argc -= 2;
1198 argv += 2;
1199 while (argc-- > 0) {
Elliott Hughese4b64792015-04-17 20:11:08 -07001200 cmd += " " + escape_arg(*argv++);
Jeff Sharkeyc52ec1a2014-05-26 18:30:43 -07001201 }
1202
Elliott Hughes04a98c22015-04-29 08:35:59 -07001203 std::string error;
Elliott Hughesda945812015-04-29 12:28:13 -07001204 int fd = adb_connect(cmd, &error);
Jeff Sharkeyc52ec1a2014-05-26 18:30:43 -07001205 if (fd < 0) {
Elliott Hughes04a98c22015-04-29 08:35:59 -07001206 fprintf(stderr, "error: %s\n", error.c_str());
Jeff Sharkeyc52ec1a2014-05-26 18:30:43 -07001207 return -1;
1208 }
1209
1210 if (exec_in) {
1211 copy_to_file(STDIN_FILENO, fd);
1212 } else {
1213 copy_to_file(fd, STDOUT_FILENO);
1214 }
1215
1216 adb_close(fd);
1217 return 0;
1218 }
Riley Andrewsfacb92d2014-12-05 17:32:46 -08001219 else if (!strcmp(argv[0], "kill-server")) {
Elliott Hughes04a98c22015-04-29 08:35:59 -07001220 std::string error;
1221 int fd = _adb_connect("host:kill", &error);
Riley Andrews03b4b372014-12-05 17:37:24 -08001222 if (fd == -1) {
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -08001223 fprintf(stderr,"* server not running *\n");
1224 return 1;
1225 }
1226 return 0;
1227 }
Riley Andrewsfacb92d2014-12-05 17:32:46 -08001228 else if (!strcmp(argv[0], "sideload")) {
1229 if (argc != 2) return usage();
Doug Zongkerbcad29f2014-06-26 15:35:36 -07001230 if (adb_sideload_host(argv[1])) {
Doug Zongker6b217ed2012-01-09 14:54:53 -08001231 return 1;
1232 } else {
1233 return 0;
1234 }
1235 }
Riley Andrewsfacb92d2014-12-05 17:32:46 -08001236 else if (!strcmp(argv[0], "remount") ||
1237 !strcmp(argv[0], "reboot") ||
1238 !strcmp(argv[0], "reboot-bootloader") ||
1239 !strcmp(argv[0], "tcpip") ||
1240 !strcmp(argv[0], "usb") ||
1241 !strcmp(argv[0], "root") ||
Dan Pasanenfb787d92014-10-06 12:57:20 -05001242 !strcmp(argv[0], "unroot") ||
Riley Andrewsfacb92d2014-12-05 17:32:46 -08001243 !strcmp(argv[0], "disable-verity") ||
1244 !strcmp(argv[0], "enable-verity")) {
Mike Lockwood26b88e32009-08-24 15:58:40 -07001245 char command[100];
Tao Bao0db67642015-03-29 11:22:34 -07001246 if (!strcmp(argv[0], "reboot-bootloader")) {
Romain Guyf925d912009-12-14 14:42:17 -08001247 snprintf(command, sizeof(command), "reboot:bootloader");
Tao Bao0db67642015-03-29 11:22:34 -07001248 } else if (argc > 1) {
Mike Lockwood26b88e32009-08-24 15:58:40 -07001249 snprintf(command, sizeof(command), "%s:%s", argv[0], argv[1]);
Tao Bao0db67642015-03-29 11:22:34 -07001250 } else {
Mike Lockwood26b88e32009-08-24 15:58:40 -07001251 snprintf(command, sizeof(command), "%s:", argv[0]);
The Android Open Source Project9c753402009-03-13 13:04:37 -07001252 }
Tao Bao0db67642015-03-29 11:22:34 -07001253 return adb_connect_command(command);
The Android Open Source Project9c753402009-03-13 13:04:37 -07001254 }
Riley Andrewsfacb92d2014-12-05 17:32:46 -08001255 else if (!strcmp(argv[0], "bugreport")) {
Dan Egnor2857f312010-01-20 13:50:36 -08001256 if (argc != 1) return usage();
Elliott Hughes3aec2ba2015-05-05 13:10:43 -07001257 return send_shell_command(transport_type, serial, "shell:bugreport");
Mike Lockwood78589f32009-09-03 14:54:58 -04001258 }
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -08001259 /* adb_command() wrapper commands */
Riley Andrewsfacb92d2014-12-05 17:32:46 -08001260 else if (!strcmp(argv[0], "forward") || !strcmp(argv[0], "reverse")) {
Elliott Hughesfb596842015-05-01 17:04:38 -07001261 std::string cmd;
David 'Digit' Turner6c489802012-11-14 15:01:55 +01001262 char host_prefix[64];
David 'Digit' Turner963a4492013-03-21 21:07:42 +01001263 char reverse = (char) !strcmp(argv[0], "reverse");
David 'Digit' Turner6c489802012-11-14 15:01:55 +01001264 char remove = 0;
1265 char remove_all = 0;
1266 char list = 0;
1267 char no_rebind = 0;
1268
1269 // Parse options here.
1270 while (argc > 1 && argv[1][0] == '-') {
1271 if (!strcmp(argv[1], "--list"))
1272 list = 1;
1273 else if (!strcmp(argv[1], "--remove"))
1274 remove = 1;
1275 else if (!strcmp(argv[1], "--remove-all"))
1276 remove_all = 1;
1277 else if (!strcmp(argv[1], "--no-rebind"))
1278 no_rebind = 1;
1279 else {
1280 return usage();
1281 }
1282 argc--;
1283 argv++;
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -08001284 }
David 'Digit' Turner6c489802012-11-14 15:01:55 +01001285
1286 // Ensure we can only use one option at a time.
1287 if (list + remove + remove_all + no_rebind > 1) {
1288 return usage();
1289 }
1290
1291 // Determine the <host-prefix> for this command.
David 'Digit' Turner963a4492013-03-21 21:07:42 +01001292 if (reverse) {
1293 snprintf(host_prefix, sizeof host_prefix, "reverse");
David 'Digit' Turner6c489802012-11-14 15:01:55 +01001294 } else {
David 'Digit' Turner963a4492013-03-21 21:07:42 +01001295 if (serial) {
1296 snprintf(host_prefix, sizeof host_prefix, "host-serial:%s",
1297 serial);
Elliott Hughes3aec2ba2015-05-05 13:10:43 -07001298 } else if (transport_type == kTransportUsb) {
David 'Digit' Turner963a4492013-03-21 21:07:42 +01001299 snprintf(host_prefix, sizeof host_prefix, "host-usb");
Elliott Hughes3aec2ba2015-05-05 13:10:43 -07001300 } else if (transport_type == kTransportLocal) {
David 'Digit' Turner963a4492013-03-21 21:07:42 +01001301 snprintf(host_prefix, sizeof host_prefix, "host-local");
1302 } else {
1303 snprintf(host_prefix, sizeof host_prefix, "host");
1304 }
David 'Digit' Turner6c489802012-11-14 15:01:55 +01001305 }
1306
1307 // Implement forward --list
1308 if (list) {
Elliott Hughesda945812015-04-29 12:28:13 -07001309 if (argc != 1) {
David 'Digit' Turner6c489802012-11-14 15:01:55 +01001310 return usage();
David 'Digit' Turner6c489802012-11-14 15:01:55 +01001311 }
Elliott Hughesda945812015-04-29 12:28:13 -07001312
1313 std::string query = android::base::StringPrintf("%s:list-forward", host_prefix);
1314 return adb_query_command(query);
David 'Digit' Turner6c489802012-11-14 15:01:55 +01001315 }
1316
1317 // Implement forward --remove-all
1318 else if (remove_all) {
Elliott Hughesfb596842015-05-01 17:04:38 -07001319 if (argc != 1) return usage();
1320 cmd = android::base::StringPrintf("%s:killforward-all", host_prefix);
David 'Digit' Turner6c489802012-11-14 15:01:55 +01001321 }
1322
1323 // Implement forward --remove <local>
1324 else if (remove) {
Elliott Hughesfb596842015-05-01 17:04:38 -07001325 if (argc != 2) return usage();
1326 cmd = android::base::StringPrintf("%s:killforward:%s", host_prefix, argv[1]);
David 'Digit' Turner6c489802012-11-14 15:01:55 +01001327 }
1328 // Or implement one of:
1329 // forward <local> <remote>
1330 // forward --no-rebind <local> <remote>
Elliott Hughesfb596842015-05-01 17:04:38 -07001331 else {
1332 if (argc != 3) return usage();
1333 const char* command = no_rebind ? "forward:norebind" : "forward";
1334 cmd = android::base::StringPrintf("%s:%s:%s;%s", host_prefix, command, argv[1], argv[2]);
David 'Digit' Turner6c489802012-11-14 15:01:55 +01001335 }
1336
Elliott Hughes04a98c22015-04-29 08:35:59 -07001337 std::string error;
Elliott Hughesfb596842015-05-01 17:04:38 -07001338 if (adb_command(cmd, &error)) {
1339 fprintf(stderr, "error: %s\n", error.c_str());
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -08001340 return 1;
1341 }
1342 return 0;
1343 }
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -08001344 /* do_sync_*() commands */
Riley Andrewsfacb92d2014-12-05 17:32:46 -08001345 else if (!strcmp(argv[0], "ls")) {
1346 if (argc != 2) return usage();
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -08001347 return do_sync_ls(argv[1]);
1348 }
Riley Andrewsfacb92d2014-12-05 17:32:46 -08001349 else if (!strcmp(argv[0], "push")) {
Mark Lindner9f9d1452014-03-11 17:55:59 -07001350 int show_progress = 0;
Lajos Molnar4e23e3c2013-04-19 12:41:09 -07001351 int copy_attrs = 0; // unused
Mark Lindner9f9d1452014-03-11 17:55:59 -07001352 const char* lpath = NULL, *rpath = NULL;
1353
Lajos Molnar4e23e3c2013-04-19 12:41:09 -07001354 parse_push_pull_args(&argv[1], argc - 1, &lpath, &rpath, &show_progress, &copy_attrs);
Mark Lindner9f9d1452014-03-11 17:55:59 -07001355
1356 if ((lpath != NULL) && (rpath != NULL)) {
Jeff Sharkey0e0d2512014-06-09 17:30:57 -07001357 return do_sync_push(lpath, rpath, show_progress);
Mark Lindner9f9d1452014-03-11 17:55:59 -07001358 }
1359
1360 return usage();
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -08001361 }
Riley Andrewsfacb92d2014-12-05 17:32:46 -08001362 else if (!strcmp(argv[0], "pull")) {
Mark Lindner9f9d1452014-03-11 17:55:59 -07001363 int show_progress = 0;
Lajos Molnar4e23e3c2013-04-19 12:41:09 -07001364 int copy_attrs = 0;
Mark Lindner9f9d1452014-03-11 17:55:59 -07001365 const char* rpath = NULL, *lpath = ".";
1366
Lajos Molnar4e23e3c2013-04-19 12:41:09 -07001367 parse_push_pull_args(&argv[1], argc - 1, &rpath, &lpath, &show_progress, &copy_attrs);
Mark Lindner9f9d1452014-03-11 17:55:59 -07001368
1369 if (rpath != NULL) {
Lajos Molnar4e23e3c2013-04-19 12:41:09 -07001370 return do_sync_pull(rpath, lpath, show_progress, copy_attrs);
Joe Onorato23595b02010-01-05 13:42:25 -08001371 }
Mark Lindner9f9d1452014-03-11 17:55:59 -07001372
1373 return usage();
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -08001374 }
Riley Andrewsfacb92d2014-12-05 17:32:46 -08001375 else if (!strcmp(argv[0], "install")) {
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -08001376 if (argc < 2) return usage();
Elliott Hughes3aec2ba2015-05-05 13:10:43 -07001377 return install_app(transport_type, serial, argc, argv);
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -08001378 }
Riley Andrewsfacb92d2014-12-05 17:32:46 -08001379 else if (!strcmp(argv[0], "install-multiple")) {
Jeff Sharkey0e0d2512014-06-09 17:30:57 -07001380 if (argc < 2) return usage();
Elliott Hughes3aec2ba2015-05-05 13:10:43 -07001381 return install_multiple_app(transport_type, serial, argc, argv);
Jeff Sharkey0e0d2512014-06-09 17:30:57 -07001382 }
Riley Andrewsfacb92d2014-12-05 17:32:46 -08001383 else if (!strcmp(argv[0], "uninstall")) {
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -08001384 if (argc < 2) return usage();
Elliott Hughes3aec2ba2015-05-05 13:10:43 -07001385 return uninstall_app(transport_type, serial, argc, argv);
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -08001386 }
Riley Andrewsfacb92d2014-12-05 17:32:46 -08001387 else if (!strcmp(argv[0], "sync")) {
Elliott Hughesc5a12b22015-04-21 10:17:07 -07001388 std::string src;
Elliott Hughes38104452015-04-17 13:57:15 -07001389 bool list_only = false;
Riley Andrews03b4b372014-12-05 17:37:24 -08001390 if (argc < 2) {
Elliott Hughes38104452015-04-17 13:57:15 -07001391 // No local path was specified.
Elliott Hughesc5a12b22015-04-21 10:17:07 -07001392 src = "";
Anthony Newnamdd2db142010-02-22 08:36:49 -06001393 } else if (argc >= 2 && strcmp(argv[1], "-l") == 0) {
Elliott Hughesc5a12b22015-04-21 10:17:07 -07001394 list_only = true;
Anthony Newnamdd2db142010-02-22 08:36:49 -06001395 if (argc == 3) {
Elliott Hughesc5a12b22015-04-21 10:17:07 -07001396 src = argv[2];
Anthony Newnamdd2db142010-02-22 08:36:49 -06001397 } else {
Elliott Hughesc5a12b22015-04-21 10:17:07 -07001398 src = "";
Anthony Newnamdd2db142010-02-22 08:36:49 -06001399 }
Riley Andrews03b4b372014-12-05 17:37:24 -08001400 } else if (argc == 2) {
Elliott Hughes38104452015-04-17 13:57:15 -07001401 // A local path or "android"/"data" arg was specified.
Elliott Hughesc5a12b22015-04-21 10:17:07 -07001402 src = argv[1];
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -08001403 } else {
1404 return usage();
1405 }
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -08001406
Elliott Hughesc5a12b22015-04-21 10:17:07 -07001407 if (src != "" &&
1408 src != "system" && src != "data" && src != "vendor" && src != "oem") {
Elliott Hughes38104452015-04-17 13:57:15 -07001409 return usage();
1410 }
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -08001411
Elliott Hughes38104452015-04-17 13:57:15 -07001412 std::string system_src_path = product_file("system");
1413 std::string data_src_path = product_file("data");
1414 std::string vendor_src_path = product_file("vendor");
1415 std::string oem_src_path = product_file("oem");
Elliott Hughes38104452015-04-17 13:57:15 -07001416
1417 int rc = 0;
Elliott Hughesc5a12b22015-04-21 10:17:07 -07001418 if (rc == 0 && (src.empty() || src == "system")) {
1419 rc = do_sync_sync(system_src_path, "/system", list_only);
Elliott Hughes38104452015-04-17 13:57:15 -07001420 }
Elliott Hughesc5a12b22015-04-21 10:17:07 -07001421 if (rc == 0 && (src.empty() || src == "vendor") && directory_exists(vendor_src_path)) {
1422 rc = do_sync_sync(vendor_src_path, "/vendor", list_only);
Elliott Hughes38104452015-04-17 13:57:15 -07001423 }
Elliott Hughesc5a12b22015-04-21 10:17:07 -07001424 if (rc == 0 && (src.empty() || src == "oem") && directory_exists(oem_src_path)) {
1425 rc = do_sync_sync(oem_src_path, "/oem", list_only);
Elliott Hughes38104452015-04-17 13:57:15 -07001426 }
Elliott Hughesc5a12b22015-04-21 10:17:07 -07001427 if (rc == 0 && (src.empty() || src == "data")) {
1428 rc = do_sync_sync(data_src_path, "/data", list_only);
Elliott Hughes38104452015-04-17 13:57:15 -07001429 }
1430 return rc;
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -08001431 }
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -08001432 /* passthrough commands */
Riley Andrewsfacb92d2014-12-05 17:32:46 -08001433 else if (!strcmp(argv[0],"get-state") ||
Scott Anderson6dfaf4b2012-04-20 11:21:14 -07001434 !strcmp(argv[0],"get-serialno") ||
1435 !strcmp(argv[0],"get-devpath"))
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -08001436 {
Elliott Hughes3aec2ba2015-05-05 13:10:43 -07001437 return adb_query_command(format_host_command(argv[0], transport_type, serial));
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -08001438 }
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -08001439 /* other commands */
Riley Andrewsfacb92d2014-12-05 17:32:46 -08001440 else if (!strcmp(argv[0],"logcat") || !strcmp(argv[0],"lolcat") || !strcmp(argv[0],"longcat")) {
Elliott Hughes3aec2ba2015-05-05 13:10:43 -07001441 return logcat(transport_type, serial, argc, argv);
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -08001442 }
Riley Andrewsfacb92d2014-12-05 17:32:46 -08001443 else if (!strcmp(argv[0],"ppp")) {
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -08001444 return ppp(argc, argv);
1445 }
Riley Andrewsfacb92d2014-12-05 17:32:46 -08001446 else if (!strcmp(argv[0], "start-server")) {
Elliott Hughes04a98c22015-04-29 08:35:59 -07001447 std::string error;
1448 return adb_connect("host:start-server", &error);
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -08001449 }
Riley Andrewsfacb92d2014-12-05 17:32:46 -08001450 else if (!strcmp(argv[0], "backup")) {
Christopher Tate73779122011-04-21 12:53:28 -07001451 return backup(argc, argv);
1452 }
Riley Andrewsfacb92d2014-12-05 17:32:46 -08001453 else if (!strcmp(argv[0], "restore")) {
Christopher Tatecf5379b2011-05-17 15:52:54 -07001454 return restore(argc, argv);
1455 }
Riley Andrewsfacb92d2014-12-05 17:32:46 -08001456 else if (!strcmp(argv[0], "keygen")) {
Nick Kralevich6183c962014-11-13 15:17:29 -08001457 if (argc < 2) return usage();
1458 return adb_auth_keygen(argv[1]);
1459 }
Riley Andrewsfacb92d2014-12-05 17:32:46 -08001460 else if (!strcmp(argv[0], "jdwp")) {
Tao Bao0db67642015-03-29 11:22:34 -07001461 return adb_connect_command("jdwp");
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -08001462 }
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -08001463 /* "adb /?" is a common idiom under Windows */
Riley Andrewsfacb92d2014-12-05 17:32:46 -08001464 else if (!strcmp(argv[0], "help") || !strcmp(argv[0], "/?")) {
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -08001465 help();
1466 return 0;
1467 }
Riley Andrewsfacb92d2014-12-05 17:32:46 -08001468 else if (!strcmp(argv[0], "version")) {
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -08001469 version(stdout);
1470 return 0;
1471 }
1472
1473 usage();
1474 return 1;
1475}
1476
Elliott Hughes3aec2ba2015-05-05 13:10:43 -07001477static int pm_command(TransportType transport, const char* serial, int argc, const char** argv) {
Elliott Hughes170b5682015-04-17 10:59:34 -07001478 std::string cmd = "shell:pm";
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -08001479
Elliott Hughes170b5682015-04-17 10:59:34 -07001480 while (argc-- > 0) {
Elliott Hughese4b64792015-04-17 20:11:08 -07001481 cmd += " " + escape_arg(*argv++);
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -08001482 }
1483
Elliott Hughes111a2222015-04-21 17:58:55 -07001484 return send_shell_command(transport, serial, cmd);
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -08001485}
1486
Elliott Hughes3aec2ba2015-05-05 13:10:43 -07001487static int uninstall_app(TransportType transport, const char* serial, int argc, const char** argv) {
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -08001488 /* if the user choose the -k option, we refuse to do it until devices are
1489 out with the option to uninstall the remaining data somehow (adb/ui) */
1490 if (argc == 3 && strcmp(argv[1], "-k") == 0)
1491 {
1492 printf(
1493 "The -k option uninstalls the application while retaining the data/cache.\n"
1494 "At the moment, there is no way to remove the remaining data.\n"
1495 "You will have to reinstall the application with the same signature, and fully uninstall it.\n"
1496 "If you truly wish to continue, execute 'adb shell pm uninstall -k %s'\n", argv[2]);
1497 return -1;
1498 }
1499
1500 /* 'adb uninstall' takes the same arguments as 'pm uninstall' on device */
1501 return pm_command(transport, serial, argc, argv);
1502}
1503
Elliott Hughes3aec2ba2015-05-05 13:10:43 -07001504static int delete_file(TransportType transport, const char* serial, char* filename) {
Elliott Hughes170b5682015-04-17 10:59:34 -07001505 std::string cmd = "shell:rm -f " + escape_arg(filename);
Elliott Hughes111a2222015-04-21 17:58:55 -07001506 return send_shell_command(transport, serial, cmd);
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -08001507}
1508
Kenny Root3802c992011-08-05 11:19:45 -07001509static const char* get_basename(const char* filename)
1510{
1511 const char* basename = adb_dirstop(filename);
1512 if (basename) {
1513 basename++;
1514 return basename;
1515 } else {
1516 return filename;
1517 }
1518}
1519
Elliott Hughes3aec2ba2015-05-05 13:10:43 -07001520static int install_app(TransportType transport, const char* serial, int argc, const char** argv) {
Kenny Root3802c992011-08-05 11:19:45 -07001521 static const char *const DATA_DEST = "/data/local/tmp/%s";
1522 static const char *const SD_DEST = "/sdcard/tmp/%s";
1523 const char* where = DATA_DEST;
Kenny Root3802c992011-08-05 11:19:45 -07001524 int i;
Jeff Sharkey0e0d2512014-06-09 17:30:57 -07001525 struct stat sb;
Kenny Root3802c992011-08-05 11:19:45 -07001526
1527 for (i = 1; i < argc; i++) {
Jeff Sharkey0e0d2512014-06-09 17:30:57 -07001528 if (!strcmp(argv[i], "-s")) {
Kenny Root3802c992011-08-05 11:19:45 -07001529 where = SD_DEST;
1530 }
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -08001531 }
1532
Jeff Sharkey0e0d2512014-06-09 17:30:57 -07001533 // Find last APK argument.
1534 // All other arguments passed through verbatim.
1535 int last_apk = -1;
1536 for (i = argc - 1; i >= 0; i--) {
Dan Albertf30d73c2015-02-25 17:51:28 -08001537 const char* file = argv[i];
Jeff Sharkey0e0d2512014-06-09 17:30:57 -07001538 char* dot = strrchr(file, '.');
1539 if (dot && !strcasecmp(dot, ".apk")) {
1540 if (stat(file, &sb) == -1 || !S_ISREG(sb.st_mode)) {
1541 fprintf(stderr, "Invalid APK file: %s\n", file);
1542 return -1;
1543 }
1544
1545 last_apk = i;
1546 break;
1547 }
Kenny Root3802c992011-08-05 11:19:45 -07001548 }
1549
Jeff Sharkey0e0d2512014-06-09 17:30:57 -07001550 if (last_apk == -1) {
1551 fprintf(stderr, "Missing APK file\n");
1552 return -1;
Kenny Root3802c992011-08-05 11:19:45 -07001553 }
1554
Dan Albertf30d73c2015-02-25 17:51:28 -08001555 const char* apk_file = argv[last_apk];
Jeff Sharkey0e0d2512014-06-09 17:30:57 -07001556 char apk_dest[PATH_MAX];
Kenny Root3802c992011-08-05 11:19:45 -07001557 snprintf(apk_dest, sizeof apk_dest, where, get_basename(apk_file));
Jeff Sharkey0e0d2512014-06-09 17:30:57 -07001558 int err = do_sync_push(apk_file, apk_dest, 0 /* no show progress */);
Kenny Root3802c992011-08-05 11:19:45 -07001559 if (err) {
Kenny Root58d5f222012-03-26 16:14:02 -07001560 goto cleanup_apk;
Kenny Root3802c992011-08-05 11:19:45 -07001561 } else {
Jeff Sharkey0e0d2512014-06-09 17:30:57 -07001562 argv[last_apk] = apk_dest; /* destination name, not source location */
Kenny Root3802c992011-08-05 11:19:45 -07001563 }
1564
Elliott Hughes111a2222015-04-21 17:58:55 -07001565 err = pm_command(transport, serial, argc, argv);
Kenny Root3802c992011-08-05 11:19:45 -07001566
Kenny Root58d5f222012-03-26 16:14:02 -07001567cleanup_apk:
Jeff Sharkey0e0d2512014-06-09 17:30:57 -07001568 delete_file(transport, serial, apk_dest);
1569 return err;
1570}
1571
Elliott Hughes3aec2ba2015-05-05 13:10:43 -07001572static int install_multiple_app(TransportType transport, const char* serial, int argc,
Elliott Hughes38104452015-04-17 13:57:15 -07001573 const char** argv)
Jeff Sharkey0e0d2512014-06-09 17:30:57 -07001574{
Jeff Sharkey0e0d2512014-06-09 17:30:57 -07001575 int i;
1576 struct stat sb;
Elliott Hughesd1a5b2b2015-04-17 14:07:52 -07001577 uint64_t total_size = 0;
Jeff Sharkey0e0d2512014-06-09 17:30:57 -07001578
1579 // Find all APK arguments starting at end.
1580 // All other arguments passed through verbatim.
1581 int first_apk = -1;
1582 for (i = argc - 1; i >= 0; i--) {
Dan Albertf30d73c2015-02-25 17:51:28 -08001583 const char* file = argv[i];
Jeff Sharkey0e0d2512014-06-09 17:30:57 -07001584 char* dot = strrchr(file, '.');
1585 if (dot && !strcasecmp(dot, ".apk")) {
1586 if (stat(file, &sb) == -1 || !S_ISREG(sb.st_mode)) {
1587 fprintf(stderr, "Invalid APK file: %s\n", file);
1588 return -1;
1589 }
1590
1591 total_size += sb.st_size;
1592 first_apk = i;
1593 } else {
1594 break;
1595 }
Kenny Root3802c992011-08-05 11:19:45 -07001596 }
1597
Jeff Sharkey0e0d2512014-06-09 17:30:57 -07001598 if (first_apk == -1) {
1599 fprintf(stderr, "Missing APK file\n");
1600 return 1;
1601 }
Kenny Root3802c992011-08-05 11:19:45 -07001602
Elliott Hughesdf5bb432015-04-19 13:17:01 -07001603#if defined(_WIN32) // Remove when we're using clang for Win32.
1604 std::string cmd = android::base::StringPrintf("exec:pm install-create -S %u", (unsigned) total_size);
1605#else
Elliott Hughesd1a5b2b2015-04-17 14:07:52 -07001606 std::string cmd = android::base::StringPrintf("exec:pm install-create -S %" PRIu64, total_size);
Elliott Hughesdf5bb432015-04-19 13:17:01 -07001607#endif
Jeff Sharkey0e0d2512014-06-09 17:30:57 -07001608 for (i = 1; i < first_apk; i++) {
Elliott Hughese4b64792015-04-17 20:11:08 -07001609 cmd += " " + escape_arg(argv[i]);
Jeff Sharkey0e0d2512014-06-09 17:30:57 -07001610 }
1611
1612 // Create install session
Elliott Hughes04a98c22015-04-29 08:35:59 -07001613 std::string error;
Elliott Hughesda945812015-04-29 12:28:13 -07001614 int fd = adb_connect(cmd, &error);
Jeff Sharkey0e0d2512014-06-09 17:30:57 -07001615 if (fd < 0) {
Elliott Hughes04a98c22015-04-29 08:35:59 -07001616 fprintf(stderr, "Connect error for create: %s\n", error.c_str());
Jeff Sharkey0e0d2512014-06-09 17:30:57 -07001617 return -1;
1618 }
Elliott Hughes170b5682015-04-17 10:59:34 -07001619 char buf[BUFSIZ];
Jeff Sharkey0e0d2512014-06-09 17:30:57 -07001620 read_status_line(fd, buf, sizeof(buf));
1621 adb_close(fd);
1622
1623 int session_id = -1;
1624 if (!strncmp("Success", buf, 7)) {
1625 char* start = strrchr(buf, '[');
1626 char* end = strrchr(buf, ']');
1627 if (start && end) {
1628 *end = '\0';
1629 session_id = strtol(start + 1, NULL, 10);
1630 }
1631 }
1632 if (session_id < 0) {
1633 fprintf(stderr, "Failed to create session\n");
Christopher Tate29721da2014-07-14 16:45:13 -07001634 fputs(buf, stderr);
Jeff Sharkey0e0d2512014-06-09 17:30:57 -07001635 return -1;
1636 }
1637
1638 // Valid session, now stream the APKs
1639 int success = 1;
1640 for (i = first_apk; i < argc; i++) {
Dan Albertf30d73c2015-02-25 17:51:28 -08001641 const char* file = argv[i];
Jeff Sharkey0e0d2512014-06-09 17:30:57 -07001642 if (stat(file, &sb) == -1) {
1643 fprintf(stderr, "Failed to stat %s\n", file);
1644 success = 0;
1645 goto finalize_session;
1646 }
1647
Elliott Hughesdf5bb432015-04-19 13:17:01 -07001648#if defined(_WIN32) // Remove when we're using clang for Win32.
1649 std::string cmd = android::base::StringPrintf(
1650 "exec:pm install-write -S %u %d %d_%s -",
1651 (unsigned) sb.st_size, session_id, i, get_basename(file));
1652#else
Elliott Hughesd1a5b2b2015-04-17 14:07:52 -07001653 std::string cmd = android::base::StringPrintf(
1654 "exec:pm install-write -S %" PRIu64 " %d %d_%s -",
1655 static_cast<uint64_t>(sb.st_size), session_id, i, get_basename(file));
Elliott Hughesdf5bb432015-04-19 13:17:01 -07001656#endif
Jeff Sharkey0e0d2512014-06-09 17:30:57 -07001657
1658 int localFd = adb_open(file, O_RDONLY);
1659 if (localFd < 0) {
Elliott Hughes04a98c22015-04-29 08:35:59 -07001660 fprintf(stderr, "Failed to open %s: %s\n", file, strerror(errno));
Jeff Sharkey0e0d2512014-06-09 17:30:57 -07001661 success = 0;
1662 goto finalize_session;
1663 }
1664
Elliott Hughes04a98c22015-04-29 08:35:59 -07001665 std::string error;
Elliott Hughesda945812015-04-29 12:28:13 -07001666 int remoteFd = adb_connect(cmd, &error);
Jeff Sharkey0e0d2512014-06-09 17:30:57 -07001667 if (remoteFd < 0) {
Elliott Hughes04a98c22015-04-29 08:35:59 -07001668 fprintf(stderr, "Connect error for write: %s\n", error.c_str());
Jeff Sharkey0e0d2512014-06-09 17:30:57 -07001669 adb_close(localFd);
1670 success = 0;
1671 goto finalize_session;
1672 }
1673
1674 copy_to_file(localFd, remoteFd);
1675 read_status_line(remoteFd, buf, sizeof(buf));
1676
1677 adb_close(localFd);
1678 adb_close(remoteFd);
1679
1680 if (strncmp("Success", buf, 7)) {
1681 fprintf(stderr, "Failed to write %s\n", file);
Christopher Tate29721da2014-07-14 16:45:13 -07001682 fputs(buf, stderr);
Jeff Sharkey0e0d2512014-06-09 17:30:57 -07001683 success = 0;
1684 goto finalize_session;
1685 }
1686 }
1687
1688finalize_session:
Jeff Sharkey01f6fbf2014-07-25 09:58:25 -07001689 // Commit session if we streamed everything okay; otherwise abandon
Elliott Hughesda945812015-04-29 12:28:13 -07001690 std::string service =
1691 android::base::StringPrintf("exec:pm install-%s %d",
1692 success ? "commit" : "abandon", session_id);
1693 fd = adb_connect(service, &error);
Jeff Sharkey0e0d2512014-06-09 17:30:57 -07001694 if (fd < 0) {
Elliott Hughes04a98c22015-04-29 08:35:59 -07001695 fprintf(stderr, "Connect error for finalize: %s\n", error.c_str());
Jeff Sharkey0e0d2512014-06-09 17:30:57 -07001696 return -1;
1697 }
1698 read_status_line(fd, buf, sizeof(buf));
1699 adb_close(fd);
1700
1701 if (!strncmp("Success", buf, 7)) {
Christopher Tate29721da2014-07-14 16:45:13 -07001702 fputs(buf, stderr);
Jeff Sharkey0e0d2512014-06-09 17:30:57 -07001703 return 0;
1704 } else {
1705 fprintf(stderr, "Failed to finalize session\n");
Christopher Tate29721da2014-07-14 16:45:13 -07001706 fputs(buf, stderr);
Jeff Sharkey0e0d2512014-06-09 17:30:57 -07001707 return -1;
1708 }
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -08001709}