blob: 4941689ac066ab1c14195e019527216149a4e5ef [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
Dan Albertbac34742015-02-25 17:51:28 -080050static int do_cmd(transport_type ttype, const char* serial, const char *cmd, ...);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -080051
Elliott Hughes58305772015-04-17 13:57:15 -070052static int install_app(transport_type transport, const char* serial, int argc,
53 const char** argv);
54static int install_multiple_app(transport_type transport, const char* serial, int argc,
55 const char** argv);
56static int uninstall_app(transport_type transport, const char* serial, int argc,
Dan Albertbac34742015-02-25 17:51:28 -080057 const char** argv);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -080058
Elliott Hughes58305772015-04-17 13:57:15 -070059static std::string gProductOutPath;
Matt Gumbeld7b33082012-11-14 10:16:17 -080060extern int gListenAll;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -080061
Elliott Hughes58305772015-04-17 13:57:15 -070062static std::string product_file(const char *extra) {
63 if (gProductOutPath.empty()) {
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -080064 fprintf(stderr, "adb: Product directory not specified; "
65 "use -p or define ANDROID_PRODUCT_OUT\n");
66 exit(1);
67 }
68
Elliott Hughes58305772015-04-17 13:57:15 -070069 return android::base::StringPrintf("%s%s%s",
70 gProductOutPath.c_str(), OS_PATH_SEPARATOR_STR, extra);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -080071}
72
Elliott Hughes58305772015-04-17 13:57:15 -070073static void version(FILE* out) {
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -080074 fprintf(out, "Android Debug Bridge version %d.%d.%d\n",
Elliott Hughes58305772015-04-17 13:57:15 -070075 ADB_VERSION_MAJOR, ADB_VERSION_MINOR, ADB_SERVER_VERSION);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -080076}
77
Elliott Hughes58305772015-04-17 13:57:15 -070078static void help() {
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -080079 version(stderr);
80
81 fprintf(stderr,
82 "\n"
Matt Gumbeld7b33082012-11-14 10:16:17 -080083 " -a - directs adb to listen on all interfaces for a connection\n"
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -080084 " -d - directs command to the only connected USB device\n"
85 " returns an error if more than one USB device is present.\n"
86 " -e - directs command to the only running emulator.\n"
87 " returns an error if more than one emulator is running.\n"
Scott Andersone109d262012-04-20 11:21:14 -070088 " -s <specific device> - directs command to the device or emulator with the given\n"
Scott Anderson2ca3e6b2012-05-30 18:11:27 -070089 " serial number or qualifier. Overrides ANDROID_SERIAL\n"
Elliott Hughes31dbed72009-10-07 15:38:53 -070090 " environment variable.\n"
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -080091 " -p <product name or path> - simple product name like 'sooner', or\n"
92 " a relative/absolute path to a product\n"
93 " out directory like 'out/target/product/sooner'.\n"
94 " If -p is not specified, the ANDROID_PRODUCT_OUT\n"
95 " environment variable is used, which must\n"
96 " be an absolute path.\n"
Matt Gumbeld7b33082012-11-14 10:16:17 -080097 " -H - Name of adb server host (default: localhost)\n"
98 " -P - Port of adb server (default: 5037)\n"
Scott Andersone109d262012-04-20 11:21:14 -070099 " devices [-l] - list all connected devices\n"
Scott Anderson2ca3e6b2012-05-30 18:11:27 -0700100 " ('-l' will also list device qualifiers)\n"
Mike Lockwoodcbbe79a2010-05-24 10:44:35 -0400101 " connect <host>[:<port>] - connect to a device via TCP/IP\n"
102 " Port 5555 is used by default if no port number is specified.\n"
103 " disconnect [<host>[:<port>]] - disconnect from a TCP/IP device.\n"
104 " Port 5555 is used by default if no port number is specified.\n"
Bernhard Reutner-Fischer6715a432011-04-26 12:46:05 +0200105 " Using this command with no additional arguments\n"
Mike Lockwoodcbbe79a2010-05-24 10:44:35 -0400106 " will disconnect from all connected TCP/IP devices.\n"
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800107 "\n"
108 "device commands:\n"
Mark Lindner76f2a932014-03-11 17:55:59 -0700109 " adb push [-p] <local> <remote>\n"
110 " - copy file/dir to device\n"
111 " ('-p' to display the transfer progress)\n"
Lajos Molnarde8ff4a2013-04-19 12:41:09 -0700112 " adb pull [-p] [-a] <remote> [<local>]\n"
Mark Lindner76f2a932014-03-11 17:55:59 -0700113 " - copy file/dir from device\n"
114 " ('-p' to display the transfer progress)\n"
Lajos Molnarde8ff4a2013-04-19 12:41:09 -0700115 " ('-a' means copy timestamp and mode)\n"
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800116 " adb sync [ <directory> ] - copy host->device only if changed\n"
Anthony Newnam705c9442010-02-22 08:36:49 -0600117 " (-l means list but don't copy)\n"
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800118 " (see 'adb help all')\n"
119 " adb shell - run remote shell interactively\n"
120 " adb shell <command> - run remote shell command\n"
121 " adb emu <command> - run emulator console command\n"
122 " adb logcat [ <filter-spec> ] - View device log\n"
David 'Digit' Turner0d82fbf2012-11-14 15:01:55 +0100123 " adb forward --list - list all forward socket connections.\n"
124 " the format is a list of lines with the following format:\n"
125 " <serial> \" \" <local> \" \" <remote> \"\\n\"\n"
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800126 " adb forward <local> <remote> - forward socket connections\n"
127 " forward specs are one of: \n"
128 " tcp:<port>\n"
129 " localabstract:<unix domain socket name>\n"
130 " localreserved:<unix domain socket name>\n"
131 " localfilesystem:<unix domain socket name>\n"
132 " dev:<character device name>\n"
133 " jdwp:<process pid> (remote only)\n"
David 'Digit' Turner0d82fbf2012-11-14 15:01:55 +0100134 " adb forward --no-rebind <local> <remote>\n"
135 " - same as 'adb forward <local> <remote>' but fails\n"
136 " if <local> is already forwarded\n"
137 " adb forward --remove <local> - remove a specific forward socket connection\n"
138 " adb forward --remove-all - remove all forward socket connections\n"
David 'Digit' Turner25258692013-03-21 21:07:42 +0100139 " adb reverse --list - list all reverse socket connections from device\n"
140 " adb reverse <remote> <local> - reverse socket connections\n"
141 " reverse specs are one of:\n"
142 " tcp:<port>\n"
143 " localabstract:<unix domain socket name>\n"
144 " localreserved:<unix domain socket name>\n"
145 " localfilesystem:<unix domain socket name>\n"
146 " adb reverse --norebind <remote> <local>\n"
147 " - same as 'adb reverse <remote> <local>' but fails\n"
148 " if <remote> is already reversed.\n"
149 " adb reverse --remove <remote>\n"
150 " - remove a specific reversed socket connection\n"
151 " adb reverse --remove-all - remove all reversed socket connections from device\n"
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800152 " adb jdwp - list PIDs of processes hosting a JDWP transport\n"
Jeff Sharkey960df972014-06-09 17:30:57 -0700153 " adb install [-lrtsd] <file>\n"
154 " adb install-multiple [-lrtsdp] <file...>\n"
Anonymous Coward4474ac42012-04-24 10:43:41 -0700155 " - push this package file to the device and install it\n"
Jeff Sharkey960df972014-06-09 17:30:57 -0700156 " (-l: forward lock application)\n"
157 " (-r: replace existing application)\n"
158 " (-t: allow test packages)\n"
159 " (-s: install application on sdcard)\n"
160 " (-d: allow version code downgrade)\n"
161 " (-p: partial application install)\n"
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800162 " adb uninstall [-k] <package> - remove this app package from the device\n"
163 " ('-k' means keep the data and cache directories)\n"
164 " adb bugreport - return all information from the device\n"
165 " that should be included in a bug report.\n"
166 "\n"
Christopher Tate0c06eb52013-03-06 16:40:52 -0800167 " adb backup [-f <file>] [-apk|-noapk] [-obb|-noobb] [-shared|-noshared] [-all] [-system|-nosystem] [<packages...>]\n"
Christopher Tate56885092011-10-03 18:27:01 -0700168 " - write an archive of the device's data to <file>.\n"
169 " If no -f option is supplied then the data is written\n"
170 " to \"backup.ab\" in the current directory.\n"
Christopher Tated2f54152011-04-21 12:53:28 -0700171 " (-apk|-noapk enable/disable backup of the .apks themselves\n"
Christopher Tatede034ec2011-08-09 17:05:29 -0700172 " in the archive; the default is noapk.)\n"
Christopher Tate0c06eb52013-03-06 16:40:52 -0800173 " (-obb|-noobb enable/disable backup of any installed apk expansion\n"
174 " (aka .obb) files associated with each application; the default\n"
175 " is noobb.)\n"
Christopher Tated2f54152011-04-21 12:53:28 -0700176 " (-shared|-noshared enable/disable backup of the device's\n"
177 " shared storage / SD card contents; the default is noshared.)\n"
178 " (-all means to back up all installed applications)\n"
Christopher Tate56885092011-10-03 18:27:01 -0700179 " (-system|-nosystem toggles whether -all automatically includes\n"
180 " system applications; the default is to include system apps)\n"
Christopher Tated2f54152011-04-21 12:53:28 -0700181 " (<packages...> is the list of applications to be backed up. If\n"
182 " the -all or -shared flags are passed, then the package\n"
Christopher Tate56885092011-10-03 18:27:01 -0700183 " list is optional. Applications explicitly given on the\n"
184 " command line will be included even if -nosystem would\n"
185 " ordinarily cause them to be omitted.)\n"
Christopher Tated2f54152011-04-21 12:53:28 -0700186 "\n"
Christopher Tatede034ec2011-08-09 17:05:29 -0700187 " adb restore <file> - restore device contents from the <file> backup archive\n"
Christopher Tate702967a2011-05-17 15:52:54 -0700188 "\n"
Paul Lawrence982089d2014-12-03 15:31:57 -0800189 " adb disable-verity - disable dm-verity checking on USERDEBUG builds\n"
190 " adb enable-verity - re-enable dm-verity checking on USERDEBUG builds\n"
Nick Kralevichbea3f9c2014-11-13 15:17:29 -0800191 " adb keygen <file> - generate adb public/private key. The private key is stored in <file>,\n"
192 " and the public key is stored in <file>.pub. Any existing files\n"
193 " are overwritten.\n"
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800194 " adb help - show this help message\n"
195 " adb version - show version num\n"
196 "\n"
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800197 "scripting:\n"
198 " adb wait-for-device - block until device is online\n"
199 " adb start-server - ensure that there is a server running\n"
200 " adb kill-server - kill the server if it is running\n"
201 " adb get-state - prints: offline | bootloader | device\n"
202 " adb get-serialno - prints: <serial-number>\n"
Scott Andersone109d262012-04-20 11:21:14 -0700203 " adb get-devpath - prints: <device-path>\n"
Elliott Hughesec7a6672015-03-16 21:58:32 +0000204 " 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 -0700205 " adb reboot [bootloader|recovery]\n"
206 " - reboots the device, optionally into the bootloader or recovery program.\n"
207 " adb reboot sideload - reboots the device into the sideload mode in recovery program (adb root required).\n"
208 " adb reboot sideload-auto-reboot\n"
209 " - reboots into the sideload mode, then reboots automatically after the sideload regardless of the result.\n"
Romain Guy311add42009-12-14 14:42:17 -0800210 " adb reboot-bootloader - reboots the device into the bootloader\n"
Mike Lockwoodff196702009-08-24 15:58:40 -0700211 " adb root - restarts the adbd daemon with root permissions\n"
Dan Pasanen98858812014-10-06 12:57:20 -0500212 " adb unroot - restarts the adbd daemon without root permissions\n"
Romain Guy311add42009-12-14 14:42:17 -0800213 " adb usb - restarts the adbd daemon listening on USB\n"
Paul Lawrenceec900bb2014-10-09 14:22:49 +0000214 " 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 -0800215 "networking:\n"
216 " adb ppp <tty> [parameters] - Run PPP over USB.\n"
Kenny Rootc9891992009-06-08 14:40:30 -0500217 " Note: you should not automatically start a PPP connection.\n"
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800218 " <tty> refers to the tty for PPP stream. Eg. dev:/dev/omap_csmi_tty1\n"
219 " [parameters] - Eg. defaultroute debug dump local notty usepeerdns\n"
220 "\n"
221 "adb sync notes: adb sync [ <directory> ]\n"
222 " <localdir> can be interpreted in several ways:\n"
223 "\n"
Elliott Hughesec7a6672015-03-16 21:58:32 +0000224 " - 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 -0800225 "\n"
Elliott Hughesec7a6672015-03-16 21:58:32 +0000226 " - If it is \"system\", \"vendor\", \"oem\" or \"data\", only the corresponding partition\n"
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800227 " is updated.\n"
Timcd643152010-02-16 20:18:29 +0000228 "\n"
229 "environmental variables:\n"
230 " ADB_TRACE - Print debug information. A comma separated list of the following values\n"
231 " 1 or all, adb, sockets, packets, rwx, usb, sync, sysdeps, transport, jdwp\n"
232 " ANDROID_SERIAL - The serial number to connect to. -s takes priority over this if given.\n"
233 " 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 -0800234 );
235}
236
Elliott Hughes58305772015-04-17 13:57:15 -0700237static int usage() {
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800238 help();
239 return 1;
240}
241
Yabin Cuid325e862014-11-17 14:48:25 -0800242#if defined(_WIN32)
243
Elliott Hughesa2f2e562015-04-16 16:47:02 -0700244// Implemented in sysdeps_win32.cpp.
Spencer Low50184062015-03-01 15:06:21 -0800245void stdin_raw_init(int fd);
246void stdin_raw_restore(int fd);
Yabin Cuid325e862014-11-17 14:48:25 -0800247
248#else
Alistair Buxtondfa09fd2013-03-01 22:16:41 +0100249static termios g_saved_terminal_state;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800250
Alistair Buxtondfa09fd2013-03-01 22:16:41 +0100251static void stdin_raw_init(int fd) {
252 if (tcgetattr(fd, &g_saved_terminal_state)) return;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800253
Alistair Buxtondfa09fd2013-03-01 22:16:41 +0100254 termios tio;
255 if (tcgetattr(fd, &tio)) return;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800256
Alistair Buxtondfa09fd2013-03-01 22:16:41 +0100257 cfmakeraw(&tio);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800258
Alistair Buxtondfa09fd2013-03-01 22:16:41 +0100259 // No timeout but request at least one character per read.
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800260 tio.c_cc[VTIME] = 0;
261 tio.c_cc[VMIN] = 1;
262
Alistair Buxtondfa09fd2013-03-01 22:16:41 +0100263 tcsetattr(fd, TCSAFLUSH, &tio);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800264}
265
Alistair Buxtondfa09fd2013-03-01 22:16:41 +0100266static void stdin_raw_restore(int fd) {
267 tcsetattr(fd, TCSAFLUSH, &g_saved_terminal_state);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800268}
269#endif
270
271static void read_and_dump(int fd)
272{
273 char buf[4096];
274 int len;
275
276 while(fd >= 0) {
JP Abgrall408fa572011-03-16 15:57:42 -0700277 D("read_and_dump(): pre adb_read(fd=%d)\n", fd);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800278 len = adb_read(fd, buf, 4096);
JP Abgrall408fa572011-03-16 15:57:42 -0700279 D("read_and_dump(): post adb_read(fd=%d): len=%d\n", fd, len);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800280 if(len == 0) {
281 break;
282 }
283
284 if(len < 0) {
285 if(errno == EINTR) continue;
286 break;
287 }
Mike Lockwooddd6b36e2009-09-22 01:18:40 -0400288 fwrite(buf, 1, len, stdout);
289 fflush(stdout);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800290 }
291}
292
Jeff Sharkey960df972014-06-09 17:30:57 -0700293static void read_status_line(int fd, char* buf, size_t count)
294{
295 count--;
296 while (count > 0) {
297 int len = adb_read(fd, buf, count);
298 if (len == 0) {
299 break;
300 } else if (len < 0) {
301 if (errno == EINTR) continue;
302 break;
303 }
304
305 buf += len;
306 count -= len;
307 }
308 *buf = '\0';
309}
310
Christopher Tated2f54152011-04-21 12:53:28 -0700311static void copy_to_file(int inFd, int outFd) {
Christopher Tate5b811fa2011-06-10 11:38:37 -0700312 const size_t BUFSIZE = 32 * 1024;
313 char* buf = (char*) malloc(BUFSIZE);
Elliott Hughesdc3b4592015-04-21 19:39:52 -0700314 if (buf == nullptr) fatal("couldn't allocate buffer for copy_to_file");
Christopher Tated2f54152011-04-21 12:53:28 -0700315 int len;
Christopher Tatec9cd3b92011-06-01 17:56:23 -0700316 long total = 0;
Christopher Tated2f54152011-04-21 12:53:28 -0700317
318 D("copy_to_file(%d -> %d)\n", inFd, outFd);
Yabin Cuid325e862014-11-17 14:48:25 -0800319
Jeff Sharkey5d9d4342014-05-26 18:30:43 -0700320 if (inFd == STDIN_FILENO) {
321 stdin_raw_init(STDIN_FILENO);
322 }
Yabin Cuid325e862014-11-17 14:48:25 -0800323
Elliott Hughesa7090b92015-04-17 17:03:59 -0700324 while (true) {
Jeff Sharkey5d9d4342014-05-26 18:30:43 -0700325 if (inFd == STDIN_FILENO) {
326 len = unix_read(inFd, buf, BUFSIZE);
327 } else {
328 len = adb_read(inFd, buf, BUFSIZE);
329 }
Christopher Tated2f54152011-04-21 12:53:28 -0700330 if (len == 0) {
Christopher Tate5b811fa2011-06-10 11:38:37 -0700331 D("copy_to_file() : read 0 bytes; exiting\n");
Christopher Tated2f54152011-04-21 12:53:28 -0700332 break;
333 }
334 if (len < 0) {
Christopher Tate5b811fa2011-06-10 11:38:37 -0700335 if (errno == EINTR) {
336 D("copy_to_file() : EINTR, retrying\n");
337 continue;
338 }
Christopher Tated2f54152011-04-21 12:53:28 -0700339 D("copy_to_file() : error %d\n", errno);
340 break;
341 }
Jeff Sharkey5d9d4342014-05-26 18:30:43 -0700342 if (outFd == STDOUT_FILENO) {
343 fwrite(buf, 1, len, stdout);
344 fflush(stdout);
345 } else {
346 adb_write(outFd, buf, len);
347 }
Christopher Tatec9cd3b92011-06-01 17:56:23 -0700348 total += len;
Christopher Tated2f54152011-04-21 12:53:28 -0700349 }
Yabin Cuid325e862014-11-17 14:48:25 -0800350
Jeff Sharkey5d9d4342014-05-26 18:30:43 -0700351 if (inFd == STDIN_FILENO) {
352 stdin_raw_restore(STDIN_FILENO);
353 }
Yabin Cuid325e862014-11-17 14:48:25 -0800354
Christopher Tatec9cd3b92011-06-01 17:56:23 -0700355 D("copy_to_file() finished after %lu bytes\n", total);
Christopher Tate5b811fa2011-06-10 11:38:37 -0700356 free(buf);
Christopher Tated2f54152011-04-21 12:53:28 -0700357}
358
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800359static void *stdin_read_thread(void *x)
360{
361 int fd, fdi;
362 unsigned char buf[1024];
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800363 int r, n;
364 int state = 0;
365
366 int *fds = (int*) x;
367 fd = fds[0];
368 fdi = fds[1];
369 free(fds);
370
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800371 for(;;) {
372 /* fdi is really the client's stdin, so use read, not adb_read here */
JP Abgrall408fa572011-03-16 15:57:42 -0700373 D("stdin_read_thread(): pre unix_read(fdi=%d,...)\n", fdi);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800374 r = unix_read(fdi, buf, 1024);
JP Abgrall408fa572011-03-16 15:57:42 -0700375 D("stdin_read_thread(): post unix_read(fdi=%d,...)\n", fdi);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800376 if(r == 0) break;
377 if(r < 0) {
378 if(errno == EINTR) continue;
379 break;
380 }
Mike Lockwood67d53582010-05-25 13:40:15 -0400381 for(n = 0; n < r; n++){
382 switch(buf[n]) {
383 case '\n':
384 state = 1;
385 break;
386 case '\r':
387 state = 1;
388 break;
389 case '~':
390 if(state == 1) state++;
391 break;
392 case '.':
393 if(state == 2) {
394 fprintf(stderr,"\n* disconnect *\n");
Mike Lockwood67d53582010-05-25 13:40:15 -0400395 stdin_raw_restore(fdi);
Mike Lockwood67d53582010-05-25 13:40:15 -0400396 exit(0);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800397 }
Mike Lockwood67d53582010-05-25 13:40:15 -0400398 default:
399 state = 0;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800400 }
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800401 }
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800402 r = adb_write(fd, buf, r);
403 if(r <= 0) {
404 break;
405 }
406 }
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800407 return 0;
408}
409
Elliott Hughes58305772015-04-17 13:57:15 -0700410static int interactive_shell() {
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800411 adb_thread_t thr;
Elliott Hughes078f0fc2015-04-29 08:35:59 -0700412 int fdi;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800413
Elliott Hughes078f0fc2015-04-29 08:35:59 -0700414 std::string error;
415 int fd = adb_connect("shell:", &error);
416 if (fd < 0) {
417 fprintf(stderr,"error: %s\n", error.c_str());
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800418 return 1;
419 }
420 fdi = 0; //dup(0);
421
Dan Albertbac34742015-02-25 17:51:28 -0800422 int* fds = reinterpret_cast<int*>(malloc(sizeof(int) * 2));
Elliott Hughesdc3b4592015-04-21 19:39:52 -0700423 if (fds == nullptr) {
424 fprintf(stderr, "couldn't allocate fds array: %s\n", strerror(errno));
425 return 1;
426 }
427
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800428 fds[0] = fd;
429 fds[1] = fdi;
430
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800431 stdin_raw_init(fdi);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800432 adb_thread_create(&thr, stdin_read_thread, fds);
433 read_and_dump(fd);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800434 stdin_raw_restore(fdi);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800435 return 0;
436}
437
438
Elliott Hughes6452a892015-04-29 12:28:13 -0700439static std::string format_host_command(const char* command, transport_type type, const char* serial) {
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800440 if (serial) {
Elliott Hughes6452a892015-04-29 12:28:13 -0700441 return android::base::StringPrintf("host-serial:%s:%s", serial, command);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800442 }
Elliott Hughes6452a892015-04-29 12:28:13 -0700443
444 const char* prefix = "host";
445 if (type == kTransportUsb) {
446 prefix = "host-usb";
447 } else if (type == kTransportLocal) {
448 prefix = "host-local";
449 }
450 return android::base::StringPrintf("%s:%s", prefix, command);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800451}
452
Elliott Hughes6452a892015-04-29 12:28:13 -0700453static int adb_download_buffer(const char *service, const char *fn, const void* data, unsigned sz,
Elliott Hughes078f0fc2015-04-29 08:35:59 -0700454 bool show_progress)
Doug Zongker447f0612012-01-09 14:54:53 -0800455{
Elliott Hughes078f0fc2015-04-29 08:35:59 -0700456 std::string error;
Elliott Hughes6452a892015-04-29 12:28:13 -0700457 int fd = adb_connect(android::base::StringPrintf("%s:%d", service, sz), &error);
Elliott Hughes078f0fc2015-04-29 08:35:59 -0700458 if (fd < 0) {
459 fprintf(stderr,"error: %s\n", error.c_str());
Doug Zongker447f0612012-01-09 14:54:53 -0800460 return -1;
461 }
462
463 int opt = CHUNK_SIZE;
Spencer Lowf055c192015-01-25 14:40:16 -0800464 opt = adb_setsockopt(fd, SOL_SOCKET, SO_SNDBUF, (const void *) &opt, sizeof(opt));
Doug Zongker447f0612012-01-09 14:54:53 -0800465
Elliott Hughes6452a892015-04-29 12:28:13 -0700466 unsigned total = sz;
Dan Albertbac34742015-02-25 17:51:28 -0800467 const uint8_t* ptr = reinterpret_cast<const uint8_t*>(data);
Doug Zongker447f0612012-01-09 14:54:53 -0800468
Elliott Hughes078f0fc2015-04-29 08:35:59 -0700469 if (show_progress) {
Doug Zongker447f0612012-01-09 14:54:53 -0800470 char *x = strrchr(service, ':');
471 if(x) service = x + 1;
472 }
473
Elliott Hughes6452a892015-04-29 12:28:13 -0700474 while (sz > 0) {
Doug Zongker447f0612012-01-09 14:54:53 -0800475 unsigned xfer = (sz > CHUNK_SIZE) ? CHUNK_SIZE : sz;
Elliott Hughes078f0fc2015-04-29 08:35:59 -0700476 if (!WriteFdExactly(fd, ptr, xfer)) {
477 std::string error;
478 adb_status(fd, &error);
479 fprintf(stderr,"* failed to write data '%s' *\n", error.c_str());
Doug Zongker447f0612012-01-09 14:54:53 -0800480 return -1;
481 }
482 sz -= xfer;
483 ptr += xfer;
Elliott Hughes078f0fc2015-04-29 08:35:59 -0700484 if (show_progress) {
Magnus Eriksson86ae6d52013-03-05 07:37:32 +0100485 printf("sending: '%s' %4d%% \r", fn, (int)(100LL - ((100LL * sz) / (total))));
Doug Zongker447f0612012-01-09 14:54:53 -0800486 fflush(stdout);
487 }
488 }
Elliott Hughes078f0fc2015-04-29 08:35:59 -0700489 if (show_progress) {
Doug Zongker447f0612012-01-09 14:54:53 -0800490 printf("\n");
491 }
492
Elliott Hughes6452a892015-04-29 12:28:13 -0700493 // TODO: should this be adb_status?
494 char buf[5];
Dan Albertcc731cc2015-02-24 21:26:58 -0800495 if(!ReadFdExactly(fd, buf, 4)){
Doug Zongker447f0612012-01-09 14:54:53 -0800496 fprintf(stderr,"* error reading response *\n");
497 adb_close(fd);
498 return -1;
499 }
500 if(memcmp(buf, "OKAY", 4)) {
501 buf[4] = 0;
502 fprintf(stderr,"* error response '%s' *\n", buf);
503 adb_close(fd);
504 return -1;
505 }
506
507 adb_close(fd);
508 return 0;
509}
510
Doug Zongker71fe5842014-06-26 15:35:36 -0700511#define SIDELOAD_HOST_BLOCK_SIZE (CHUNK_SIZE)
512
513/*
514 * The sideload-host protocol serves the data in a file (given on the
515 * command line) to the client, using a simple protocol:
516 *
517 * - The connect message includes the total number of bytes in the
518 * file and a block size chosen by us.
519 *
520 * - The other side sends the desired block number as eight decimal
521 * digits (eg "00000023" for block 23). Blocks are numbered from
522 * zero.
523 *
524 * - We send back the data of the requested block. The last block is
525 * likely to be partial; when the last block is requested we only
526 * send the part of the block that exists, it's not padded up to the
527 * block size.
528 *
529 * - When the other side sends "DONEDONE" instead of a block number,
530 * we hang up.
531 */
Elliott Hughes58305772015-04-17 13:57:15 -0700532static int adb_sideload_host(const char* fn) {
Doug Zongker71fe5842014-06-26 15:35:36 -0700533 unsigned sz;
534 size_t xfer = 0;
535 int status;
Dan Albertbac34742015-02-25 17:51:28 -0800536 int last_percent = -1;
537 int opt = SIDELOAD_HOST_BLOCK_SIZE;
Doug Zongker71fe5842014-06-26 15:35:36 -0700538
539 printf("loading: '%s'", fn);
540 fflush(stdout);
Dan Albertbac34742015-02-25 17:51:28 -0800541 uint8_t* data = reinterpret_cast<uint8_t*>(load_file(fn, &sz));
Doug Zongker71fe5842014-06-26 15:35:36 -0700542 if (data == 0) {
543 printf("\n");
544 fprintf(stderr, "* cannot read '%s' *\n", fn);
545 return -1;
546 }
547
Elliott Hughes6452a892015-04-29 12:28:13 -0700548 std::string service =
549 android::base::StringPrintf("sideload-host:%d:%d", sz, SIDELOAD_HOST_BLOCK_SIZE);
Elliott Hughes078f0fc2015-04-29 08:35:59 -0700550 std::string error;
Elliott Hughes6452a892015-04-29 12:28:13 -0700551 int fd = adb_connect(service, &error);
Doug Zongker71fe5842014-06-26 15:35:36 -0700552 if (fd < 0) {
553 // Try falling back to the older sideload method. Maybe this
554 // is an older device that doesn't support sideload-host.
555 printf("\n");
Elliott Hughes078f0fc2015-04-29 08:35:59 -0700556 status = adb_download_buffer("sideload", fn, data, sz, true);
Doug Zongker71fe5842014-06-26 15:35:36 -0700557 goto done;
558 }
559
Spencer Lowf055c192015-01-25 14:40:16 -0800560 opt = adb_setsockopt(fd, SOL_SOCKET, SO_SNDBUF, (const void *) &opt, sizeof(opt));
Doug Zongker71fe5842014-06-26 15:35:36 -0700561
Elliott Hughesa7090b92015-04-17 17:03:59 -0700562 while (true) {
Elliott Hughes6452a892015-04-29 12:28:13 -0700563 char buf[9];
Dan Albertcc731cc2015-02-24 21:26:58 -0800564 if (!ReadFdExactly(fd, buf, 8)) {
Elliott Hughes078f0fc2015-04-29 08:35:59 -0700565 fprintf(stderr, "* failed to read command: %s\n", strerror(errno));
Doug Zongker71fe5842014-06-26 15:35:36 -0700566 status = -1;
567 goto done;
568 }
Elliott Hughes6452a892015-04-29 12:28:13 -0700569 buf[8] = '\0';
Doug Zongker71fe5842014-06-26 15:35:36 -0700570
Elliott Hughes6452a892015-04-29 12:28:13 -0700571 if (strcmp("DONEDONE", buf) == 0) {
Doug Zongker71fe5842014-06-26 15:35:36 -0700572 status = 0;
573 break;
574 }
575
Doug Zongker71fe5842014-06-26 15:35:36 -0700576 int block = strtol(buf, NULL, 10);
577
578 size_t offset = block * SIDELOAD_HOST_BLOCK_SIZE;
579 if (offset >= sz) {
Elliott Hughes078f0fc2015-04-29 08:35:59 -0700580 fprintf(stderr, "* attempt to read block %d past end\n", block);
Doug Zongker71fe5842014-06-26 15:35:36 -0700581 status = -1;
582 goto done;
583 }
584 uint8_t* start = data + offset;
585 size_t offset_end = offset + SIDELOAD_HOST_BLOCK_SIZE;
586 size_t to_write = SIDELOAD_HOST_BLOCK_SIZE;
587 if (offset_end > sz) {
588 to_write = sz - offset;
589 }
590
Dan Albertcc731cc2015-02-24 21:26:58 -0800591 if(!WriteFdExactly(fd, start, to_write)) {
Elliott Hughes078f0fc2015-04-29 08:35:59 -0700592 adb_status(fd, &error);
593 fprintf(stderr,"* failed to write data '%s' *\n", error.c_str());
Doug Zongker71fe5842014-06-26 15:35:36 -0700594 status = -1;
595 goto done;
596 }
597 xfer += to_write;
598
599 // For normal OTA packages, we expect to transfer every byte
600 // twice, plus a bit of overhead (one read during
601 // verification, one read of each byte for installation, plus
602 // extra access to things like the zip central directory).
603 // This estimate of the completion becomes 100% when we've
604 // transferred ~2.13 (=100/47) times the package size.
605 int percent = (int)(xfer * 47LL / (sz ? sz : 1));
606 if (percent != last_percent) {
607 printf("\rserving: '%s' (~%d%%) ", fn, percent);
608 fflush(stdout);
609 last_percent = percent;
610 }
611 }
612
Colin Cross6d6a8982014-07-07 14:12:41 -0700613 printf("\rTotal xfer: %.2fx%*s\n", (double)xfer / (sz ? sz : 1), (int)strlen(fn)+10, "");
Doug Zongker71fe5842014-06-26 15:35:36 -0700614
615 done:
616 if (fd >= 0) adb_close(fd);
617 free(data);
618 return status;
619}
620
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800621/**
622 * Run ppp in "notty" mode against a resource listed as the first parameter
623 * eg:
624 *
625 * ppp dev:/dev/omap_csmi_tty0 <ppp options>
626 *
627 */
Elliott Hughes58305772015-04-17 13:57:15 -0700628static int ppp(int argc, const char** argv) {
Yabin Cuie77b6a02014-11-11 09:24:11 -0800629#if defined(_WIN32)
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800630 fprintf(stderr, "error: adb %s not implemented on Win32\n", argv[0]);
631 return -1;
632#else
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800633 if (argc < 2) {
634 fprintf(stderr, "usage: adb %s <adb service name> [ppp opts]\n",
635 argv[0]);
636
637 return 1;
638 }
639
Dan Albertbac34742015-02-25 17:51:28 -0800640 const char* adb_service_name = argv[1];
Elliott Hughes078f0fc2015-04-29 08:35:59 -0700641 std::string error;
642 int fd = adb_connect(adb_service_name, &error);
643 if (fd < 0) {
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800644 fprintf(stderr,"Error: Could not open adb service: %s. Error: %s\n",
Elliott Hughes078f0fc2015-04-29 08:35:59 -0700645 adb_service_name, error.c_str());
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800646 return 1;
647 }
648
Elliott Hughes078f0fc2015-04-29 08:35:59 -0700649 pid_t pid = fork();
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800650
651 if (pid < 0) {
652 perror("from fork()");
653 return 1;
654 } else if (pid == 0) {
655 int err;
656 int i;
657 const char **ppp_args;
658
659 // copy args
660 ppp_args = (const char **) alloca(sizeof(char *) * argc + 1);
661 ppp_args[0] = "pppd";
662 for (i = 2 ; i < argc ; i++) {
663 //argv[2] and beyond become ppp_args[1] and beyond
664 ppp_args[i - 1] = argv[i];
665 }
666 ppp_args[i-1] = NULL;
667
668 // child side
669
670 dup2(fd, STDIN_FILENO);
671 dup2(fd, STDOUT_FILENO);
672 adb_close(STDERR_FILENO);
673 adb_close(fd);
674
675 err = execvp("pppd", (char * const *)ppp_args);
676
677 if (err < 0) {
678 perror("execing pppd");
679 }
680 exit(-1);
681 } else {
682 // parent side
683
684 adb_close(fd);
685 return 0;
686 }
Yabin Cuie77b6a02014-11-11 09:24:11 -0800687#endif /* !defined(_WIN32) */
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800688}
689
Elliott Hughes2baae3a2015-04-17 10:59:34 -0700690static int send_shell_command(transport_type transport, const char* serial,
691 const std::string& command) {
692 int fd;
693 while (true) {
Elliott Hughes078f0fc2015-04-29 08:35:59 -0700694 std::string error;
Elliott Hughes6452a892015-04-29 12:28:13 -0700695 fd = adb_connect(command, &error);
Elliott Hughes078f0fc2015-04-29 08:35:59 -0700696 if (fd >= 0) {
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800697 break;
Elliott Hughes078f0fc2015-04-29 08:35:59 -0700698 }
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800699 fprintf(stderr,"- waiting for device -\n");
700 adb_sleep_ms(1000);
701 do_cmd(transport, serial, "wait-for-device", 0);
702 }
703
704 read_and_dump(fd);
Elliott Hughes2baae3a2015-04-17 10:59:34 -0700705 int rc = adb_close(fd);
706 if (rc) {
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800707 perror("close");
Elliott Hughes2baae3a2015-04-17 10:59:34 -0700708 }
709 return rc;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800710}
711
Elliott Hughes2baae3a2015-04-17 10:59:34 -0700712static int logcat(transport_type transport, const char* serial, int argc, const char** argv) {
713 char* log_tags = getenv("ANDROID_LOG_TAGS");
714 std::string quoted = escape_arg(log_tags == nullptr ? "" : log_tags);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800715
Elliott Hughes2baae3a2015-04-17 10:59:34 -0700716 std::string cmd = "shell:export ANDROID_LOG_TAGS=\"" + quoted + "\"; exec logcat";
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800717
Jeff Sharkeyfd546e82014-06-10 11:31:24 -0700718 if (!strcmp(argv[0], "longcat")) {
Elliott Hughes2baae3a2015-04-17 10:59:34 -0700719 cmd += " -v long";
Christopher Tatedb0a8802011-11-30 13:00:33 -0800720 }
721
Elliott Hughes6c34bba2015-04-17 20:11:08 -0700722 --argc;
723 ++argv;
Elliott Hughes2baae3a2015-04-17 10:59:34 -0700724 while (argc-- > 0) {
Elliott Hughes6c34bba2015-04-17 20:11:08 -0700725 cmd += " " + escape_arg(*argv++);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800726 }
727
Elliott Hughes15551472015-04-21 17:58:55 -0700728 return send_shell_command(transport, serial, cmd);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800729}
730
Mark Salyzyn60299df2014-04-30 09:10:31 -0700731static int mkdirs(const char *path)
Christopher Tateb1dfffe2011-12-08 19:04:34 -0800732{
733 int ret;
Mark Salyzyn60299df2014-04-30 09:10:31 -0700734 char *x = (char *)path + 1;
Christopher Tateb1dfffe2011-12-08 19:04:34 -0800735
736 for(;;) {
737 x = adb_dirstart(x);
738 if(x == 0) return 0;
739 *x = 0;
740 ret = adb_mkdir(path, 0775);
741 *x = OS_PATH_SEPARATOR;
742 if((ret < 0) && (errno != EEXIST)) {
743 return ret;
744 }
745 x++;
746 }
747 return 0;
748}
749
Dan Albertbac34742015-02-25 17:51:28 -0800750static int backup(int argc, const char** argv) {
Elliott Hughes6c34bba2015-04-17 20:11:08 -0700751 const char* filename = "./backup.ab";
Christopher Tated2f54152011-04-21 12:53:28 -0700752
Christopher Tatec9cd3b92011-06-01 17:56:23 -0700753 /* find, extract, and use any -f argument */
Elliott Hughes6c34bba2015-04-17 20:11:08 -0700754 for (int i = 1; i < argc; i++) {
Christopher Tatec9cd3b92011-06-01 17:56:23 -0700755 if (!strcmp("-f", argv[i])) {
756 if (i == argc-1) {
757 fprintf(stderr, "adb: -f passed with no filename\n");
758 return usage();
759 }
760 filename = argv[i+1];
Elliott Hughes6c34bba2015-04-17 20:11:08 -0700761 for (int j = i+2; j <= argc; ) {
Christopher Tatec9cd3b92011-06-01 17:56:23 -0700762 argv[i++] = argv[j++];
763 }
764 argc -= 2;
765 argv[argc] = NULL;
766 }
Christopher Tated2f54152011-04-21 12:53:28 -0700767 }
768
Christopher Tatebb86bc52011-08-22 17:12:08 -0700769 /* bare "adb backup" or "adb backup -f filename" are not valid invocations */
770 if (argc < 2) return usage();
771
Christopher Tateb1dfffe2011-12-08 19:04:34 -0800772 adb_unlink(filename);
Mark Salyzyn60299df2014-04-30 09:10:31 -0700773 mkdirs(filename);
Elliott Hughes6c34bba2015-04-17 20:11:08 -0700774 int outFd = adb_creat(filename, 0640);
Christopher Tated2f54152011-04-21 12:53:28 -0700775 if (outFd < 0) {
776 fprintf(stderr, "adb: unable to open file %s\n", filename);
777 return -1;
778 }
779
Elliott Hughes6c34bba2015-04-17 20:11:08 -0700780 std::string cmd = "backup:";
781 --argc;
782 ++argv;
783 while (argc-- > 0) {
784 cmd += " " + escape_arg(*argv++);
Christopher Tated2f54152011-04-21 12:53:28 -0700785 }
786
Elliott Hughes6c34bba2015-04-17 20:11:08 -0700787 D("backup. filename=%s cmd=%s\n", filename, cmd.c_str());
Elliott Hughes078f0fc2015-04-29 08:35:59 -0700788 std::string error;
Elliott Hughes6452a892015-04-29 12:28:13 -0700789 int fd = adb_connect(cmd, &error);
Christopher Tated2f54152011-04-21 12:53:28 -0700790 if (fd < 0) {
Elliott Hughes078f0fc2015-04-29 08:35:59 -0700791 fprintf(stderr, "adb: unable to connect for backup: %s\n", error.c_str());
Christopher Tated2f54152011-04-21 12:53:28 -0700792 adb_close(outFd);
793 return -1;
794 }
795
Christopher Tatebffa4ca2012-01-06 15:43:03 -0800796 printf("Now unlock your device and confirm the backup operation.\n");
Christopher Tated2f54152011-04-21 12:53:28 -0700797 copy_to_file(fd, outFd);
798
799 adb_close(fd);
800 adb_close(outFd);
801 return 0;
802}
803
Dan Albertbac34742015-02-25 17:51:28 -0800804static int restore(int argc, const char** argv) {
Christopher Tate702967a2011-05-17 15:52:54 -0700805 if (argc != 2) return usage();
806
Elliott Hughes078f0fc2015-04-29 08:35:59 -0700807 const char* filename = argv[1];
808 int tarFd = adb_open(filename, O_RDONLY);
Christopher Tate702967a2011-05-17 15:52:54 -0700809 if (tarFd < 0) {
Elliott Hughes078f0fc2015-04-29 08:35:59 -0700810 fprintf(stderr, "adb: unable to open file %s: %s\n", filename, strerror(errno));
Christopher Tate702967a2011-05-17 15:52:54 -0700811 return -1;
812 }
813
Elliott Hughes078f0fc2015-04-29 08:35:59 -0700814 std::string error;
815 int fd = adb_connect("restore:", &error);
Christopher Tate702967a2011-05-17 15:52:54 -0700816 if (fd < 0) {
Elliott Hughes078f0fc2015-04-29 08:35:59 -0700817 fprintf(stderr, "adb: unable to connect for restore: %s\n", error.c_str());
Christopher Tate702967a2011-05-17 15:52:54 -0700818 adb_close(tarFd);
819 return -1;
820 }
821
Christopher Tatebffa4ca2012-01-06 15:43:03 -0800822 printf("Now unlock your device and confirm the restore operation.\n");
Christopher Tate702967a2011-05-17 15:52:54 -0700823 copy_to_file(tarFd, fd);
824
825 adb_close(fd);
826 adb_close(tarFd);
827 return 0;
828}
829
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800830/* <hint> may be:
831 * - A simple product name
832 * e.g., "sooner"
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800833 * - A relative path from the CWD to the ANDROID_PRODUCT_OUT dir
834 * e.g., "out/target/product/sooner"
835 * - An absolute path to the PRODUCT_OUT dir
836 * e.g., "/src/device/out/target/product/sooner"
837 *
838 * Given <hint>, try to construct an absolute path to the
839 * ANDROID_PRODUCT_OUT dir.
840 */
Elliott Hughes58305772015-04-17 13:57:15 -0700841static std::string find_product_out_path(const char* hint) {
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800842 if (hint == NULL || hint[0] == '\0') {
Elliott Hughes58305772015-04-17 13:57:15 -0700843 return "";
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800844 }
845
Elliott Hughes58305772015-04-17 13:57:15 -0700846 // If it's already absolute, don't bother doing any work.
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800847 if (adb_is_absolute_host_path(hint)) {
Elliott Hughes58305772015-04-17 13:57:15 -0700848 return hint;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800849 }
850
Elliott Hughes58305772015-04-17 13:57:15 -0700851 // If there are any slashes in it, assume it's a relative path;
852 // make it absolute.
Elliott Hughesa7090b92015-04-17 17:03:59 -0700853 if (adb_dirstart(hint) != nullptr) {
854 std::string cwd;
855 if (!getcwd(&cwd)) {
856 fprintf(stderr, "adb: getcwd failed: %s\n", strerror(errno));
Elliott Hughes58305772015-04-17 13:57:15 -0700857 return "";
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800858 }
Elliott Hughesa7090b92015-04-17 17:03:59 -0700859 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 -0800860 }
861
Elliott Hughes58305772015-04-17 13:57:15 -0700862 // It's a string without any slashes. Try to do something with it.
863 //
864 // Try to find the root of the build tree, and build a PRODUCT_OUT
865 // path from there.
Elliott Hughesa7090b92015-04-17 17:03:59 -0700866 char* top = getenv("ANDROID_BUILD_TOP");
Elliott Hughes58305772015-04-17 13:57:15 -0700867 if (top == nullptr) {
Elliott Hughesa7090b92015-04-17 17:03:59 -0700868 fprintf(stderr, "adb: ANDROID_BUILD_TOP not set!\n");
Elliott Hughes58305772015-04-17 13:57:15 -0700869 return "";
870 }
Elliott Hughesa7090b92015-04-17 17:03:59 -0700871
872 std::string path = top;
Elliott Hughes58305772015-04-17 13:57:15 -0700873 path += OS_PATH_SEPARATOR_STR;
874 path += "out";
875 path += OS_PATH_SEPARATOR_STR;
876 path += "target";
877 path += OS_PATH_SEPARATOR_STR;
878 path += "product";
879 path += OS_PATH_SEPARATOR_STR;
880 path += hint;
881 if (!directory_exists(path)) {
882 fprintf(stderr, "adb: Couldn't find a product dir based on -p %s; "
883 "\"%s\" doesn't exist\n", hint, path.c_str());
Elliott Hughesa7090b92015-04-17 17:03:59 -0700884 return "";
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800885 }
Elliott Hughes58305772015-04-17 13:57:15 -0700886 return path;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800887}
888
Dan Albertbac34742015-02-25 17:51:28 -0800889static void parse_push_pull_args(const char **arg, int narg, char const **path1,
890 char const **path2, int *show_progress,
891 int *copy_attrs) {
Mark Lindner76f2a932014-03-11 17:55:59 -0700892 *show_progress = 0;
Lajos Molnarde8ff4a2013-04-19 12:41:09 -0700893 *copy_attrs = 0;
Mark Lindner76f2a932014-03-11 17:55:59 -0700894
Lajos Molnarde8ff4a2013-04-19 12:41:09 -0700895 while (narg > 0) {
896 if (!strcmp(*arg, "-p")) {
897 *show_progress = 1;
898 } else if (!strcmp(*arg, "-a")) {
899 *copy_attrs = 1;
900 } else {
901 break;
902 }
Mark Lindner76f2a932014-03-11 17:55:59 -0700903 ++arg;
904 --narg;
905 }
906
907 if (narg > 0) {
908 *path1 = *arg;
909 ++arg;
910 --narg;
911 }
912
913 if (narg > 0) {
914 *path2 = *arg;
915 }
916}
917
Elliott Hughes6452a892015-04-29 12:28:13 -0700918static int adb_connect_command(const std::string& command) {
Elliott Hughes078f0fc2015-04-29 08:35:59 -0700919 std::string error;
920 int fd = adb_connect(command, &error);
Tao Bao175b7bb2015-03-29 11:22:34 -0700921 if (fd != -1) {
922 read_and_dump(fd);
923 adb_close(fd);
924 return 0;
925 }
Elliott Hughes078f0fc2015-04-29 08:35:59 -0700926 fprintf(stderr, "Error: %s\n", error.c_str());
Tao Bao175b7bb2015-03-29 11:22:34 -0700927 return 1;
928}
929
Elliott Hughes6452a892015-04-29 12:28:13 -0700930static int adb_query_command(const std::string& command) {
931 std::string result;
932 std::string error;
933 if (!adb_query(command, &result, &error)) {
934 fprintf(stderr, "error: %s\n", error.c_str());
935 return 1;
936 }
937 printf("%s\n", result.c_str());
938 return 0;
939}
940
Dan Albertbac34742015-02-25 17:51:28 -0800941int adb_commandline(int argc, const char **argv)
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800942{
943 char buf[4096];
944 int no_daemon = 0;
945 int is_daemon = 0;
David 'Digit' Turner305b4b02011-01-31 14:23:56 +0100946 int is_server = 0;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800947 int persist = 0;
948 int r;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800949 transport_type ttype = kTransportAny;
Dan Albertbac34742015-02-25 17:51:28 -0800950 const char* serial = NULL;
951 const char* server_port_str = NULL;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800952
Elliott Hughes58305772015-04-17 13:57:15 -0700953 // If defined, this should be an absolute path to
954 // the directory containing all of the various system images
955 // for a particular product. If not defined, and the adb
956 // command requires this information, then the user must
957 // specify the path using "-p".
958 char* ANDROID_PRODUCT_OUT = getenv("ANDROID_PRODUCT_OUT");
959 if (ANDROID_PRODUCT_OUT != nullptr) {
960 gProductOutPath = ANDROID_PRODUCT_OUT;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800961 }
962 // TODO: also try TARGET_PRODUCT/TARGET_DEVICE as a hint
963
Nick Pellydb449262009-05-07 12:48:03 -0700964 serial = getenv("ANDROID_SERIAL");
965
Stefan Hilzingera84a42e2010-04-19 12:21:12 +0100966 /* Validate and assign the server port */
967 server_port_str = getenv("ANDROID_ADB_SERVER_PORT");
968 int server_port = DEFAULT_ADB_PORT;
969 if (server_port_str && strlen(server_port_str) > 0) {
970 server_port = (int) strtol(server_port_str, NULL, 0);
Matt Gumbeld7b33082012-11-14 10:16:17 -0800971 if (server_port <= 0 || server_port > 65535) {
Stefan Hilzingera84a42e2010-04-19 12:21:12 +0100972 fprintf(stderr,
Matt Gumbeld7b33082012-11-14 10:16:17 -0800973 "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 +0100974 server_port_str);
975 return usage();
976 }
977 }
978
979 /* modifiers and flags */
Riley Andrews98f58e82014-12-05 17:37:24 -0800980 while (argc > 0) {
981 if (!strcmp(argv[0],"server")) {
David 'Digit' Turner305b4b02011-01-31 14:23:56 +0100982 is_server = 1;
Riley Andrews98f58e82014-12-05 17:37:24 -0800983 } else if (!strcmp(argv[0],"nodaemon")) {
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800984 no_daemon = 1;
985 } else if (!strcmp(argv[0], "fork-server")) {
986 /* this is a special flag used only when the ADB client launches the ADB Server */
987 is_daemon = 1;
Riley Andrews98f58e82014-12-05 17:37:24 -0800988 } else if (!strcmp(argv[0],"persist")) {
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800989 persist = 1;
Riley Andrews98f58e82014-12-05 17:37:24 -0800990 } else if (!strncmp(argv[0], "-p", 2)) {
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800991 const char *product = NULL;
992 if (argv[0][2] == '\0') {
993 if (argc < 2) return usage();
994 product = argv[1];
995 argc--;
996 argv++;
997 } else {
Vairavan Srinivasan81273232012-08-04 16:40:50 -0700998 product = argv[0] + 2;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800999 }
1000 gProductOutPath = find_product_out_path(product);
Elliott Hughes58305772015-04-17 13:57:15 -07001001 if (gProductOutPath.empty()) {
1002 fprintf(stderr, "adb: could not resolve \"-p %s\"\n", product);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001003 return usage();
1004 }
1005 } else if (argv[0][0]=='-' && argv[0][1]=='s') {
1006 if (isdigit(argv[0][2])) {
1007 serial = argv[0] + 2;
1008 } else {
Riley Andrews98f58e82014-12-05 17:37:24 -08001009 if (argc < 2 || argv[0][2] != '\0') return usage();
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001010 serial = argv[1];
1011 argc--;
1012 argv++;
1013 }
1014 } else if (!strcmp(argv[0],"-d")) {
1015 ttype = kTransportUsb;
1016 } else if (!strcmp(argv[0],"-e")) {
1017 ttype = kTransportLocal;
Matt Gumbeld7b33082012-11-14 10:16:17 -08001018 } else if (!strcmp(argv[0],"-a")) {
1019 gListenAll = 1;
Riley Andrews98f58e82014-12-05 17:37:24 -08001020 } else if (!strncmp(argv[0], "-H", 2)) {
Matt Gumbeld7b33082012-11-14 10:16:17 -08001021 const char *hostname = NULL;
1022 if (argv[0][2] == '\0') {
1023 if (argc < 2) return usage();
1024 hostname = argv[1];
1025 argc--;
1026 argv++;
1027 } else {
1028 hostname = argv[0] + 2;
1029 }
1030 adb_set_tcp_name(hostname);
1031
Riley Andrews98f58e82014-12-05 17:37:24 -08001032 } else if (!strncmp(argv[0], "-P", 2)) {
Matt Gumbeld7b33082012-11-14 10:16:17 -08001033 if (argv[0][2] == '\0') {
1034 if (argc < 2) return usage();
1035 server_port_str = argv[1];
1036 argc--;
1037 argv++;
1038 } else {
1039 server_port_str = argv[0] + 2;
1040 }
1041 if (strlen(server_port_str) > 0) {
1042 server_port = (int) strtol(server_port_str, NULL, 0);
1043 if (server_port <= 0 || server_port > 65535) {
1044 fprintf(stderr,
1045 "adb: port number must be a positive number less than 65536. Got \"%s\"\n",
1046 server_port_str);
1047 return usage();
1048 }
1049 } else {
1050 fprintf(stderr,
1051 "adb: port number must be a positive number less than 65536. Got empty string.\n");
1052 return usage();
1053 }
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001054 } else {
1055 /* out of recognized modifiers and flags */
1056 break;
1057 }
1058 argc--;
1059 argv++;
1060 }
1061
1062 adb_set_transport(ttype, serial);
Stefan Hilzingera84a42e2010-04-19 12:21:12 +01001063 adb_set_tcp_specifics(server_port);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001064
David 'Digit' Turner305b4b02011-01-31 14:23:56 +01001065 if (is_server) {
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001066 if (no_daemon || is_daemon) {
Stefan Hilzingera84a42e2010-04-19 12:21:12 +01001067 r = adb_main(is_daemon, server_port);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001068 } else {
Stefan Hilzingera84a42e2010-04-19 12:21:12 +01001069 r = launch_server(server_port);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001070 }
Riley Andrews98f58e82014-12-05 17:37:24 -08001071 if (r) {
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001072 fprintf(stderr,"* could not start server *\n");
1073 }
1074 return r;
1075 }
1076
Riley Andrews98f58e82014-12-05 17:37:24 -08001077 if (argc == 0) {
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001078 return usage();
1079 }
1080
Riley Andrewsc8514c82014-12-05 17:32:46 -08001081 /* handle wait-for-* prefix */
1082 if (!strncmp(argv[0], "wait-for-", strlen("wait-for-"))) {
Dan Albertbac34742015-02-25 17:51:28 -08001083 const char* service = argv[0];
Riley Andrewsc8514c82014-12-05 17:32:46 -08001084 if (!strncmp(service, "wait-for-device", strlen("wait-for-device"))) {
1085 if (ttype == kTransportUsb) {
1086 service = "wait-for-usb";
1087 } else if (ttype == kTransportLocal) {
1088 service = "wait-for-local";
1089 } else {
1090 service = "wait-for-any";
1091 }
1092 }
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001093
Elliott Hughes6452a892015-04-29 12:28:13 -07001094 std::string cmd = format_host_command(service, ttype, serial);
Elliott Hughes078f0fc2015-04-29 08:35:59 -07001095 std::string error;
Elliott Hughes6452a892015-04-29 12:28:13 -07001096 if (adb_command(cmd, &error)) {
Elliott Hughes078f0fc2015-04-29 08:35:59 -07001097 D("failure: %s *\n", error.c_str());
1098 fprintf(stderr,"error: %s\n", error.c_str());
Riley Andrewsc8514c82014-12-05 17:32:46 -08001099 return 1;
1100 }
1101
1102 /* Allow a command to be run after wait-for-device,
1103 * e.g. 'adb wait-for-device shell'.
1104 */
1105 if (argc == 1) {
1106 return 0;
1107 }
1108
1109 /* Fall through */
1110 argc--;
1111 argv++;
1112 }
1113
1114 /* adb_connect() commands */
Riley Andrews98f58e82014-12-05 17:37:24 -08001115 if (!strcmp(argv[0], "devices")) {
Dan Albertbac34742015-02-25 17:51:28 -08001116 const char *listopt;
Elliott Hughes6452a892015-04-29 12:28:13 -07001117 if (argc < 2) {
Scott Andersone109d262012-04-20 11:21:14 -07001118 listopt = "";
Elliott Hughes6452a892015-04-29 12:28:13 -07001119 } else if (argc == 2 && !strcmp(argv[1], "-l")) {
Scott Andersone109d262012-04-20 11:21:14 -07001120 listopt = argv[1];
Elliott Hughes6452a892015-04-29 12:28:13 -07001121 } else {
Scott Andersone109d262012-04-20 11:21:14 -07001122 fprintf(stderr, "Usage: adb devices [-l]\n");
1123 return 1;
1124 }
Elliott Hughes6452a892015-04-29 12:28:13 -07001125
1126 std::string query = android::base::StringPrintf("host:%s%s", argv[0], listopt);
1127 printf("List of devices attached\n");
1128 return adb_query_command(query);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001129 }
Riley Andrewsc8514c82014-12-05 17:32:46 -08001130 else if (!strcmp(argv[0], "connect")) {
Mike Lockwoodff196702009-08-24 15:58:40 -07001131 if (argc != 2) {
Mike Lockwoodcbbe79a2010-05-24 10:44:35 -04001132 fprintf(stderr, "Usage: adb connect <host>[:<port>]\n");
Mike Lockwoodff196702009-08-24 15:58:40 -07001133 return 1;
1134 }
Elliott Hughes6452a892015-04-29 12:28:13 -07001135
1136 std::string query = android::base::StringPrintf("host:connect:%s", argv[1]);
1137 return adb_query_command(query);
Mike Lockwoodcbbe79a2010-05-24 10:44:35 -04001138 }
Riley Andrewsc8514c82014-12-05 17:32:46 -08001139 else if (!strcmp(argv[0], "disconnect")) {
Mike Lockwoodcbbe79a2010-05-24 10:44:35 -04001140 if (argc > 2) {
1141 fprintf(stderr, "Usage: adb disconnect [<host>[:<port>]]\n");
1142 return 1;
1143 }
Elliott Hughes6452a892015-04-29 12:28:13 -07001144
1145 std::string query = android::base::StringPrintf("host:disconnect:%s",
1146 (argc == 2) ? argv[1] : "");
1147 return adb_query_command(query);
Mike Lockwoodff196702009-08-24 15:58:40 -07001148 }
Riley Andrewsc8514c82014-12-05 17:32:46 -08001149 else if (!strcmp(argv[0], "emu")) {
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001150 return adb_send_emulator_command(argc, argv);
1151 }
Riley Andrewsc8514c82014-12-05 17:32:46 -08001152 else if (!strcmp(argv[0], "shell") || !strcmp(argv[0], "hell")) {
Daniel Sandlerff91ab82010-08-19 01:10:18 -04001153 char h = (argv[0][0] == 'h');
1154
1155 if (h) {
1156 printf("\x1b[41;33m");
1157 fflush(stdout);
1158 }
1159
Riley Andrews98f58e82014-12-05 17:37:24 -08001160 if (argc < 2) {
JP Abgrall408fa572011-03-16 15:57:42 -07001161 D("starting interactive shell\n");
Daniel Sandlerff91ab82010-08-19 01:10:18 -04001162 r = interactive_shell();
1163 if (h) {
1164 printf("\x1b[0m");
1165 fflush(stdout);
1166 }
1167 return r;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001168 }
1169
Elliott Hughes2baae3a2015-04-17 10:59:34 -07001170 std::string cmd = "shell:";
1171 cmd += argv[1];
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001172 argc -= 2;
1173 argv += 2;
Jeff Sharkey5d9d4342014-05-26 18:30:43 -07001174 while (argc-- > 0) {
Elliott Hughes6c34bba2015-04-17 20:11:08 -07001175 cmd += " " + escape_arg(*argv++);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001176 }
1177
Elliott Hughes2baae3a2015-04-17 10:59:34 -07001178 while (true) {
1179 D("interactive shell loop. cmd=%s\n", cmd.c_str());
Elliott Hughes078f0fc2015-04-29 08:35:59 -07001180 std::string error;
Elliott Hughes6452a892015-04-29 12:28:13 -07001181 int fd = adb_connect(cmd, &error);
Elliott Hughes2baae3a2015-04-17 10:59:34 -07001182 int r;
Riley Andrews98f58e82014-12-05 17:37:24 -08001183 if (fd >= 0) {
JP Abgrall408fa572011-03-16 15:57:42 -07001184 D("about to read_and_dump(fd=%d)\n", fd);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001185 read_and_dump(fd);
JP Abgrall408fa572011-03-16 15:57:42 -07001186 D("read_and_dump() done.\n");
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001187 adb_close(fd);
1188 r = 0;
1189 } else {
Elliott Hughes078f0fc2015-04-29 08:35:59 -07001190 fprintf(stderr,"error: %s\n", error.c_str());
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001191 r = -1;
1192 }
1193
Riley Andrews98f58e82014-12-05 17:37:24 -08001194 if (persist) {
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001195 fprintf(stderr,"\n- waiting for device -\n");
1196 adb_sleep_ms(1000);
1197 do_cmd(ttype, serial, "wait-for-device", 0);
1198 } else {
Daniel Sandlerff91ab82010-08-19 01:10:18 -04001199 if (h) {
1200 printf("\x1b[0m");
1201 fflush(stdout);
1202 }
JP Abgrall408fa572011-03-16 15:57:42 -07001203 D("interactive shell loop. return r=%d\n", r);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001204 return r;
1205 }
1206 }
1207 }
Riley Andrewsc8514c82014-12-05 17:32:46 -08001208 else if (!strcmp(argv[0], "exec-in") || !strcmp(argv[0], "exec-out")) {
Jeff Sharkey5d9d4342014-05-26 18:30:43 -07001209 int exec_in = !strcmp(argv[0], "exec-in");
Jeff Sharkey5d9d4342014-05-26 18:30:43 -07001210
Elliott Hughes2baae3a2015-04-17 10:59:34 -07001211 std::string cmd = "exec:";
1212 cmd += argv[1];
Jeff Sharkey5d9d4342014-05-26 18:30:43 -07001213 argc -= 2;
1214 argv += 2;
1215 while (argc-- > 0) {
Elliott Hughes6c34bba2015-04-17 20:11:08 -07001216 cmd += " " + escape_arg(*argv++);
Jeff Sharkey5d9d4342014-05-26 18:30:43 -07001217 }
1218
Elliott Hughes078f0fc2015-04-29 08:35:59 -07001219 std::string error;
Elliott Hughes6452a892015-04-29 12:28:13 -07001220 int fd = adb_connect(cmd, &error);
Jeff Sharkey5d9d4342014-05-26 18:30:43 -07001221 if (fd < 0) {
Elliott Hughes078f0fc2015-04-29 08:35:59 -07001222 fprintf(stderr, "error: %s\n", error.c_str());
Jeff Sharkey5d9d4342014-05-26 18:30:43 -07001223 return -1;
1224 }
1225
1226 if (exec_in) {
1227 copy_to_file(STDIN_FILENO, fd);
1228 } else {
1229 copy_to_file(fd, STDOUT_FILENO);
1230 }
1231
1232 adb_close(fd);
1233 return 0;
1234 }
Riley Andrewsc8514c82014-12-05 17:32:46 -08001235 else if (!strcmp(argv[0], "kill-server")) {
Elliott Hughes078f0fc2015-04-29 08:35:59 -07001236 std::string error;
1237 int fd = _adb_connect("host:kill", &error);
Riley Andrews98f58e82014-12-05 17:37:24 -08001238 if (fd == -1) {
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001239 fprintf(stderr,"* server not running *\n");
1240 return 1;
1241 }
1242 return 0;
1243 }
Riley Andrewsc8514c82014-12-05 17:32:46 -08001244 else if (!strcmp(argv[0], "sideload")) {
1245 if (argc != 2) return usage();
Doug Zongker71fe5842014-06-26 15:35:36 -07001246 if (adb_sideload_host(argv[1])) {
Doug Zongker447f0612012-01-09 14:54:53 -08001247 return 1;
1248 } else {
1249 return 0;
1250 }
1251 }
Riley Andrewsc8514c82014-12-05 17:32:46 -08001252 else if (!strcmp(argv[0], "remount") ||
1253 !strcmp(argv[0], "reboot") ||
1254 !strcmp(argv[0], "reboot-bootloader") ||
1255 !strcmp(argv[0], "tcpip") ||
1256 !strcmp(argv[0], "usb") ||
1257 !strcmp(argv[0], "root") ||
Dan Pasanen98858812014-10-06 12:57:20 -05001258 !strcmp(argv[0], "unroot") ||
Riley Andrewsc8514c82014-12-05 17:32:46 -08001259 !strcmp(argv[0], "disable-verity") ||
1260 !strcmp(argv[0], "enable-verity")) {
Mike Lockwoodff196702009-08-24 15:58:40 -07001261 char command[100];
Tao Bao175b7bb2015-03-29 11:22:34 -07001262 if (!strcmp(argv[0], "reboot-bootloader")) {
Romain Guy311add42009-12-14 14:42:17 -08001263 snprintf(command, sizeof(command), "reboot:bootloader");
Tao Bao175b7bb2015-03-29 11:22:34 -07001264 } else if (argc > 1) {
Mike Lockwoodff196702009-08-24 15:58:40 -07001265 snprintf(command, sizeof(command), "%s:%s", argv[0], argv[1]);
Tao Bao175b7bb2015-03-29 11:22:34 -07001266 } else {
Mike Lockwoodff196702009-08-24 15:58:40 -07001267 snprintf(command, sizeof(command), "%s:", argv[0]);
The Android Open Source Projecte037fd72009-03-13 13:04:37 -07001268 }
Tao Bao175b7bb2015-03-29 11:22:34 -07001269 return adb_connect_command(command);
The Android Open Source Projecte037fd72009-03-13 13:04:37 -07001270 }
Riley Andrewsc8514c82014-12-05 17:32:46 -08001271 else if (!strcmp(argv[0], "bugreport")) {
Dan Egnorc130ea72010-01-20 13:50:36 -08001272 if (argc != 1) return usage();
1273 do_cmd(ttype, serial, "shell", "bugreport", 0);
Mike Lockwoodf56d1b52009-09-03 14:54:58 -04001274 return 0;
1275 }
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001276 /* adb_command() wrapper commands */
Riley Andrewsc8514c82014-12-05 17:32:46 -08001277 else if (!strcmp(argv[0], "forward") || !strcmp(argv[0], "reverse")) {
David 'Digit' Turner0d82fbf2012-11-14 15:01:55 +01001278 char host_prefix[64];
David 'Digit' Turner25258692013-03-21 21:07:42 +01001279 char reverse = (char) !strcmp(argv[0], "reverse");
David 'Digit' Turner0d82fbf2012-11-14 15:01:55 +01001280 char remove = 0;
1281 char remove_all = 0;
1282 char list = 0;
1283 char no_rebind = 0;
1284
1285 // Parse options here.
1286 while (argc > 1 && argv[1][0] == '-') {
1287 if (!strcmp(argv[1], "--list"))
1288 list = 1;
1289 else if (!strcmp(argv[1], "--remove"))
1290 remove = 1;
1291 else if (!strcmp(argv[1], "--remove-all"))
1292 remove_all = 1;
1293 else if (!strcmp(argv[1], "--no-rebind"))
1294 no_rebind = 1;
1295 else {
1296 return usage();
1297 }
1298 argc--;
1299 argv++;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001300 }
David 'Digit' Turner0d82fbf2012-11-14 15:01:55 +01001301
1302 // Ensure we can only use one option at a time.
1303 if (list + remove + remove_all + no_rebind > 1) {
1304 return usage();
1305 }
1306
1307 // Determine the <host-prefix> for this command.
David 'Digit' Turner25258692013-03-21 21:07:42 +01001308 if (reverse) {
1309 snprintf(host_prefix, sizeof host_prefix, "reverse");
David 'Digit' Turner0d82fbf2012-11-14 15:01:55 +01001310 } else {
David 'Digit' Turner25258692013-03-21 21:07:42 +01001311 if (serial) {
1312 snprintf(host_prefix, sizeof host_prefix, "host-serial:%s",
1313 serial);
1314 } else if (ttype == kTransportUsb) {
1315 snprintf(host_prefix, sizeof host_prefix, "host-usb");
1316 } else if (ttype == kTransportLocal) {
1317 snprintf(host_prefix, sizeof host_prefix, "host-local");
1318 } else {
1319 snprintf(host_prefix, sizeof host_prefix, "host");
1320 }
David 'Digit' Turner0d82fbf2012-11-14 15:01:55 +01001321 }
1322
1323 // Implement forward --list
1324 if (list) {
Elliott Hughes6452a892015-04-29 12:28:13 -07001325 if (argc != 1) {
David 'Digit' Turner0d82fbf2012-11-14 15:01:55 +01001326 return usage();
David 'Digit' Turner0d82fbf2012-11-14 15:01:55 +01001327 }
Elliott Hughes6452a892015-04-29 12:28:13 -07001328
1329 std::string query = android::base::StringPrintf("%s:list-forward", host_prefix);
1330 return adb_query_command(query);
David 'Digit' Turner0d82fbf2012-11-14 15:01:55 +01001331 }
1332
1333 // Implement forward --remove-all
1334 else if (remove_all) {
1335 if (argc != 1)
1336 return usage();
1337 snprintf(buf, sizeof buf, "%s:killforward-all", host_prefix);
1338 }
1339
1340 // Implement forward --remove <local>
1341 else if (remove) {
1342 if (argc != 2)
1343 return usage();
1344 snprintf(buf, sizeof buf, "%s:killforward:%s", host_prefix, argv[1]);
1345 }
1346 // Or implement one of:
1347 // forward <local> <remote>
1348 // forward --no-rebind <local> <remote>
1349 else
1350 {
1351 if (argc != 3)
1352 return usage();
David 'Digit' Turnerf0e0c2e2015-01-22 09:07:41 +01001353 const char* command = no_rebind ? "forward:norebind" : "forward";
David 'Digit' Turner0d82fbf2012-11-14 15:01:55 +01001354 snprintf(buf, sizeof buf, "%s:%s:%s;%s", host_prefix, command, argv[1], argv[2]);
1355 }
1356
Elliott Hughes078f0fc2015-04-29 08:35:59 -07001357 std::string error;
1358 if (adb_command(buf, &error)) {
1359 fprintf(stderr,"error: %s\n", error.c_str());
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001360 return 1;
1361 }
1362 return 0;
1363 }
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001364 /* do_sync_*() commands */
Riley Andrewsc8514c82014-12-05 17:32:46 -08001365 else if (!strcmp(argv[0], "ls")) {
1366 if (argc != 2) return usage();
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001367 return do_sync_ls(argv[1]);
1368 }
Riley Andrewsc8514c82014-12-05 17:32:46 -08001369 else if (!strcmp(argv[0], "push")) {
Mark Lindner76f2a932014-03-11 17:55:59 -07001370 int show_progress = 0;
Lajos Molnarde8ff4a2013-04-19 12:41:09 -07001371 int copy_attrs = 0; // unused
Mark Lindner76f2a932014-03-11 17:55:59 -07001372 const char* lpath = NULL, *rpath = NULL;
1373
Lajos Molnarde8ff4a2013-04-19 12:41:09 -07001374 parse_push_pull_args(&argv[1], argc - 1, &lpath, &rpath, &show_progress, &copy_attrs);
Mark Lindner76f2a932014-03-11 17:55:59 -07001375
1376 if ((lpath != NULL) && (rpath != NULL)) {
Jeff Sharkey960df972014-06-09 17:30:57 -07001377 return do_sync_push(lpath, rpath, show_progress);
Mark Lindner76f2a932014-03-11 17:55:59 -07001378 }
1379
1380 return usage();
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001381 }
Riley Andrewsc8514c82014-12-05 17:32:46 -08001382 else if (!strcmp(argv[0], "pull")) {
Mark Lindner76f2a932014-03-11 17:55:59 -07001383 int show_progress = 0;
Lajos Molnarde8ff4a2013-04-19 12:41:09 -07001384 int copy_attrs = 0;
Mark Lindner76f2a932014-03-11 17:55:59 -07001385 const char* rpath = NULL, *lpath = ".";
1386
Lajos Molnarde8ff4a2013-04-19 12:41:09 -07001387 parse_push_pull_args(&argv[1], argc - 1, &rpath, &lpath, &show_progress, &copy_attrs);
Mark Lindner76f2a932014-03-11 17:55:59 -07001388
1389 if (rpath != NULL) {
Lajos Molnarde8ff4a2013-04-19 12:41:09 -07001390 return do_sync_pull(rpath, lpath, show_progress, copy_attrs);
Joe Onorato00c0eea2010-01-05 13:42:25 -08001391 }
Mark Lindner76f2a932014-03-11 17:55:59 -07001392
1393 return usage();
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001394 }
Riley Andrewsc8514c82014-12-05 17:32:46 -08001395 else if (!strcmp(argv[0], "install")) {
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001396 if (argc < 2) return usage();
1397 return install_app(ttype, serial, argc, argv);
1398 }
Riley Andrewsc8514c82014-12-05 17:32:46 -08001399 else if (!strcmp(argv[0], "install-multiple")) {
Jeff Sharkey960df972014-06-09 17:30:57 -07001400 if (argc < 2) return usage();
1401 return install_multiple_app(ttype, serial, argc, argv);
1402 }
Riley Andrewsc8514c82014-12-05 17:32:46 -08001403 else if (!strcmp(argv[0], "uninstall")) {
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001404 if (argc < 2) return usage();
1405 return uninstall_app(ttype, serial, argc, argv);
1406 }
Riley Andrewsc8514c82014-12-05 17:32:46 -08001407 else if (!strcmp(argv[0], "sync")) {
Elliott Hughesd236d072015-04-21 10:17:07 -07001408 std::string src;
Elliott Hughes58305772015-04-17 13:57:15 -07001409 bool list_only = false;
Riley Andrews98f58e82014-12-05 17:37:24 -08001410 if (argc < 2) {
Elliott Hughes58305772015-04-17 13:57:15 -07001411 // No local path was specified.
Elliott Hughesd236d072015-04-21 10:17:07 -07001412 src = "";
Anthony Newnam705c9442010-02-22 08:36:49 -06001413 } else if (argc >= 2 && strcmp(argv[1], "-l") == 0) {
Elliott Hughesd236d072015-04-21 10:17:07 -07001414 list_only = true;
Anthony Newnam705c9442010-02-22 08:36:49 -06001415 if (argc == 3) {
Elliott Hughesd236d072015-04-21 10:17:07 -07001416 src = argv[2];
Anthony Newnam705c9442010-02-22 08:36:49 -06001417 } else {
Elliott Hughesd236d072015-04-21 10:17:07 -07001418 src = "";
Anthony Newnam705c9442010-02-22 08:36:49 -06001419 }
Riley Andrews98f58e82014-12-05 17:37:24 -08001420 } else if (argc == 2) {
Elliott Hughes58305772015-04-17 13:57:15 -07001421 // A local path or "android"/"data" arg was specified.
Elliott Hughesd236d072015-04-21 10:17:07 -07001422 src = argv[1];
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001423 } else {
1424 return usage();
1425 }
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001426
Elliott Hughesd236d072015-04-21 10:17:07 -07001427 if (src != "" &&
1428 src != "system" && src != "data" && src != "vendor" && src != "oem") {
Elliott Hughes58305772015-04-17 13:57:15 -07001429 return usage();
1430 }
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001431
Elliott Hughes58305772015-04-17 13:57:15 -07001432 std::string system_src_path = product_file("system");
1433 std::string data_src_path = product_file("data");
1434 std::string vendor_src_path = product_file("vendor");
1435 std::string oem_src_path = product_file("oem");
Elliott Hughes58305772015-04-17 13:57:15 -07001436
1437 int rc = 0;
Elliott Hughesd236d072015-04-21 10:17:07 -07001438 if (rc == 0 && (src.empty() || src == "system")) {
1439 rc = do_sync_sync(system_src_path, "/system", list_only);
Elliott Hughes58305772015-04-17 13:57:15 -07001440 }
Elliott Hughesd236d072015-04-21 10:17:07 -07001441 if (rc == 0 && (src.empty() || src == "vendor") && directory_exists(vendor_src_path)) {
1442 rc = do_sync_sync(vendor_src_path, "/vendor", list_only);
Elliott Hughes58305772015-04-17 13:57:15 -07001443 }
Elliott Hughesd236d072015-04-21 10:17:07 -07001444 if (rc == 0 && (src.empty() || src == "oem") && directory_exists(oem_src_path)) {
1445 rc = do_sync_sync(oem_src_path, "/oem", list_only);
Elliott Hughes58305772015-04-17 13:57:15 -07001446 }
Elliott Hughesd236d072015-04-21 10:17:07 -07001447 if (rc == 0 && (src.empty() || src == "data")) {
1448 rc = do_sync_sync(data_src_path, "/data", list_only);
Elliott Hughes58305772015-04-17 13:57:15 -07001449 }
1450 return rc;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001451 }
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001452 /* passthrough commands */
Riley Andrewsc8514c82014-12-05 17:32:46 -08001453 else if (!strcmp(argv[0],"get-state") ||
Scott Andersone109d262012-04-20 11:21:14 -07001454 !strcmp(argv[0],"get-serialno") ||
1455 !strcmp(argv[0],"get-devpath"))
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001456 {
Elliott Hughes6452a892015-04-29 12:28:13 -07001457 return adb_query_command(format_host_command(argv[0], ttype, serial));
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001458 }
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001459 /* other commands */
Riley Andrewsc8514c82014-12-05 17:32:46 -08001460 else if (!strcmp(argv[0],"logcat") || !strcmp(argv[0],"lolcat") || !strcmp(argv[0],"longcat")) {
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001461 return logcat(ttype, serial, argc, argv);
1462 }
Riley Andrewsc8514c82014-12-05 17:32:46 -08001463 else if (!strcmp(argv[0],"ppp")) {
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001464 return ppp(argc, argv);
1465 }
Riley Andrewsc8514c82014-12-05 17:32:46 -08001466 else if (!strcmp(argv[0], "start-server")) {
Elliott Hughes078f0fc2015-04-29 08:35:59 -07001467 std::string error;
1468 return adb_connect("host:start-server", &error);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001469 }
Riley Andrewsc8514c82014-12-05 17:32:46 -08001470 else if (!strcmp(argv[0], "backup")) {
Christopher Tated2f54152011-04-21 12:53:28 -07001471 return backup(argc, argv);
1472 }
Riley Andrewsc8514c82014-12-05 17:32:46 -08001473 else if (!strcmp(argv[0], "restore")) {
Christopher Tate702967a2011-05-17 15:52:54 -07001474 return restore(argc, argv);
1475 }
Riley Andrewsc8514c82014-12-05 17:32:46 -08001476 else if (!strcmp(argv[0], "keygen")) {
Nick Kralevichbea3f9c2014-11-13 15:17:29 -08001477 if (argc < 2) return usage();
1478 return adb_auth_keygen(argv[1]);
1479 }
Riley Andrewsc8514c82014-12-05 17:32:46 -08001480 else if (!strcmp(argv[0], "jdwp")) {
Tao Bao175b7bb2015-03-29 11:22:34 -07001481 return adb_connect_command("jdwp");
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001482 }
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001483 /* "adb /?" is a common idiom under Windows */
Riley Andrewsc8514c82014-12-05 17:32:46 -08001484 else if (!strcmp(argv[0], "help") || !strcmp(argv[0], "/?")) {
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001485 help();
1486 return 0;
1487 }
Riley Andrewsc8514c82014-12-05 17:32:46 -08001488 else if (!strcmp(argv[0], "version")) {
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001489 version(stdout);
1490 return 0;
1491 }
1492
1493 usage();
1494 return 1;
1495}
1496
Alexander Ivchenko678bd2e2014-08-06 14:51:40 +04001497#define MAX_ARGV_LENGTH 16
Dan Albertbac34742015-02-25 17:51:28 -08001498static int do_cmd(transport_type ttype, const char* serial, const char *cmd, ...)
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001499{
Dan Albertbac34742015-02-25 17:51:28 -08001500 const char *argv[MAX_ARGV_LENGTH];
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001501 int argc;
1502 va_list ap;
1503
1504 va_start(ap, cmd);
1505 argc = 0;
1506
1507 if (serial) {
1508 argv[argc++] = "-s";
1509 argv[argc++] = serial;
1510 } else if (ttype == kTransportUsb) {
1511 argv[argc++] = "-d";
1512 } else if (ttype == kTransportLocal) {
1513 argv[argc++] = "-e";
1514 }
1515
1516 argv[argc++] = cmd;
Alexander Ivchenko678bd2e2014-08-06 14:51:40 +04001517 while(argc < MAX_ARGV_LENGTH &&
1518 (argv[argc] = va_arg(ap, char*)) != 0) argc++;
1519 assert(argc < MAX_ARGV_LENGTH);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001520 va_end(ap);
1521
1522#if 0
1523 int n;
1524 fprintf(stderr,"argc = %d\n",argc);
1525 for(n = 0; n < argc; n++) {
1526 fprintf(stderr,"argv[%d] = \"%s\"\n", n, argv[n]);
1527 }
1528#endif
1529
1530 return adb_commandline(argc, argv);
1531}
1532
Dan Albertbac34742015-02-25 17:51:28 -08001533static int pm_command(transport_type transport, const char* serial,
1534 int argc, const char** argv)
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001535{
Elliott Hughes2baae3a2015-04-17 10:59:34 -07001536 std::string cmd = "shell:pm";
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001537
Elliott Hughes2baae3a2015-04-17 10:59:34 -07001538 while (argc-- > 0) {
Elliott Hughes6c34bba2015-04-17 20:11:08 -07001539 cmd += " " + escape_arg(*argv++);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001540 }
1541
Elliott Hughes15551472015-04-21 17:58:55 -07001542 return send_shell_command(transport, serial, cmd);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001543}
1544
Elliott Hughes58305772015-04-17 13:57:15 -07001545static int uninstall_app(transport_type transport, const char* serial, int argc,
1546 const char** argv)
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001547{
1548 /* if the user choose the -k option, we refuse to do it until devices are
1549 out with the option to uninstall the remaining data somehow (adb/ui) */
1550 if (argc == 3 && strcmp(argv[1], "-k") == 0)
1551 {
1552 printf(
1553 "The -k option uninstalls the application while retaining the data/cache.\n"
1554 "At the moment, there is no way to remove the remaining data.\n"
1555 "You will have to reinstall the application with the same signature, and fully uninstall it.\n"
1556 "If you truly wish to continue, execute 'adb shell pm uninstall -k %s'\n", argv[2]);
1557 return -1;
1558 }
1559
1560 /* 'adb uninstall' takes the same arguments as 'pm uninstall' on device */
1561 return pm_command(transport, serial, argc, argv);
1562}
1563
Dan Albertbac34742015-02-25 17:51:28 -08001564static int delete_file(transport_type transport, const char* serial, char* filename)
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001565{
Elliott Hughes2baae3a2015-04-17 10:59:34 -07001566 std::string cmd = "shell:rm -f " + escape_arg(filename);
Elliott Hughes15551472015-04-21 17:58:55 -07001567 return send_shell_command(transport, serial, cmd);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001568}
1569
Kenny Root597ea5b2011-08-05 11:19:45 -07001570static const char* get_basename(const char* filename)
1571{
1572 const char* basename = adb_dirstop(filename);
1573 if (basename) {
1574 basename++;
1575 return basename;
1576 } else {
1577 return filename;
1578 }
1579}
1580
Elliott Hughes58305772015-04-17 13:57:15 -07001581static int install_app(transport_type transport, const char* serial, int argc,
1582 const char** argv)
Kenny Root597ea5b2011-08-05 11:19:45 -07001583{
1584 static const char *const DATA_DEST = "/data/local/tmp/%s";
1585 static const char *const SD_DEST = "/sdcard/tmp/%s";
1586 const char* where = DATA_DEST;
Kenny Root597ea5b2011-08-05 11:19:45 -07001587 int i;
Jeff Sharkey960df972014-06-09 17:30:57 -07001588 struct stat sb;
Kenny Root597ea5b2011-08-05 11:19:45 -07001589
1590 for (i = 1; i < argc; i++) {
Jeff Sharkey960df972014-06-09 17:30:57 -07001591 if (!strcmp(argv[i], "-s")) {
Kenny Root597ea5b2011-08-05 11:19:45 -07001592 where = SD_DEST;
1593 }
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001594 }
1595
Jeff Sharkey960df972014-06-09 17:30:57 -07001596 // Find last APK argument.
1597 // All other arguments passed through verbatim.
1598 int last_apk = -1;
1599 for (i = argc - 1; i >= 0; i--) {
Dan Albertbac34742015-02-25 17:51:28 -08001600 const char* file = argv[i];
Jeff Sharkey960df972014-06-09 17:30:57 -07001601 char* dot = strrchr(file, '.');
1602 if (dot && !strcasecmp(dot, ".apk")) {
1603 if (stat(file, &sb) == -1 || !S_ISREG(sb.st_mode)) {
1604 fprintf(stderr, "Invalid APK file: %s\n", file);
1605 return -1;
1606 }
1607
1608 last_apk = i;
1609 break;
1610 }
Kenny Root597ea5b2011-08-05 11:19:45 -07001611 }
1612
Jeff Sharkey960df972014-06-09 17:30:57 -07001613 if (last_apk == -1) {
1614 fprintf(stderr, "Missing APK file\n");
1615 return -1;
Kenny Root597ea5b2011-08-05 11:19:45 -07001616 }
1617
Dan Albertbac34742015-02-25 17:51:28 -08001618 const char* apk_file = argv[last_apk];
Jeff Sharkey960df972014-06-09 17:30:57 -07001619 char apk_dest[PATH_MAX];
Kenny Root597ea5b2011-08-05 11:19:45 -07001620 snprintf(apk_dest, sizeof apk_dest, where, get_basename(apk_file));
Jeff Sharkey960df972014-06-09 17:30:57 -07001621 int err = do_sync_push(apk_file, apk_dest, 0 /* no show progress */);
Kenny Root597ea5b2011-08-05 11:19:45 -07001622 if (err) {
Kenny Root60733e92012-03-26 16:14:02 -07001623 goto cleanup_apk;
Kenny Root597ea5b2011-08-05 11:19:45 -07001624 } else {
Jeff Sharkey960df972014-06-09 17:30:57 -07001625 argv[last_apk] = apk_dest; /* destination name, not source location */
Kenny Root597ea5b2011-08-05 11:19:45 -07001626 }
1627
Elliott Hughes15551472015-04-21 17:58:55 -07001628 err = pm_command(transport, serial, argc, argv);
Kenny Root597ea5b2011-08-05 11:19:45 -07001629
Kenny Root60733e92012-03-26 16:14:02 -07001630cleanup_apk:
Jeff Sharkey960df972014-06-09 17:30:57 -07001631 delete_file(transport, serial, apk_dest);
1632 return err;
1633}
1634
Elliott Hughes58305772015-04-17 13:57:15 -07001635static int install_multiple_app(transport_type transport, const char* serial, int argc,
1636 const char** argv)
Jeff Sharkey960df972014-06-09 17:30:57 -07001637{
Jeff Sharkey960df972014-06-09 17:30:57 -07001638 int i;
1639 struct stat sb;
Elliott Hughes2940ccf2015-04-17 14:07:52 -07001640 uint64_t total_size = 0;
Jeff Sharkey960df972014-06-09 17:30:57 -07001641
1642 // Find all APK arguments starting at end.
1643 // All other arguments passed through verbatim.
1644 int first_apk = -1;
1645 for (i = argc - 1; i >= 0; i--) {
Dan Albertbac34742015-02-25 17:51:28 -08001646 const char* file = argv[i];
Jeff Sharkey960df972014-06-09 17:30:57 -07001647 char* dot = strrchr(file, '.');
1648 if (dot && !strcasecmp(dot, ".apk")) {
1649 if (stat(file, &sb) == -1 || !S_ISREG(sb.st_mode)) {
1650 fprintf(stderr, "Invalid APK file: %s\n", file);
1651 return -1;
1652 }
1653
1654 total_size += sb.st_size;
1655 first_apk = i;
1656 } else {
1657 break;
1658 }
Kenny Root597ea5b2011-08-05 11:19:45 -07001659 }
1660
Jeff Sharkey960df972014-06-09 17:30:57 -07001661 if (first_apk == -1) {
1662 fprintf(stderr, "Missing APK file\n");
1663 return 1;
1664 }
Kenny Root597ea5b2011-08-05 11:19:45 -07001665
Elliott Hughes53daee62015-04-19 13:17:01 -07001666#if defined(_WIN32) // Remove when we're using clang for Win32.
1667 std::string cmd = android::base::StringPrintf("exec:pm install-create -S %u", (unsigned) total_size);
1668#else
Elliott Hughes2940ccf2015-04-17 14:07:52 -07001669 std::string cmd = android::base::StringPrintf("exec:pm install-create -S %" PRIu64, total_size);
Elliott Hughes53daee62015-04-19 13:17:01 -07001670#endif
Jeff Sharkey960df972014-06-09 17:30:57 -07001671 for (i = 1; i < first_apk; i++) {
Elliott Hughes6c34bba2015-04-17 20:11:08 -07001672 cmd += " " + escape_arg(argv[i]);
Jeff Sharkey960df972014-06-09 17:30:57 -07001673 }
1674
1675 // Create install session
Elliott Hughes078f0fc2015-04-29 08:35:59 -07001676 std::string error;
Elliott Hughes6452a892015-04-29 12:28:13 -07001677 int fd = adb_connect(cmd, &error);
Jeff Sharkey960df972014-06-09 17:30:57 -07001678 if (fd < 0) {
Elliott Hughes078f0fc2015-04-29 08:35:59 -07001679 fprintf(stderr, "Connect error for create: %s\n", error.c_str());
Jeff Sharkey960df972014-06-09 17:30:57 -07001680 return -1;
1681 }
Elliott Hughes2baae3a2015-04-17 10:59:34 -07001682 char buf[BUFSIZ];
Jeff Sharkey960df972014-06-09 17:30:57 -07001683 read_status_line(fd, buf, sizeof(buf));
1684 adb_close(fd);
1685
1686 int session_id = -1;
1687 if (!strncmp("Success", buf, 7)) {
1688 char* start = strrchr(buf, '[');
1689 char* end = strrchr(buf, ']');
1690 if (start && end) {
1691 *end = '\0';
1692 session_id = strtol(start + 1, NULL, 10);
1693 }
1694 }
1695 if (session_id < 0) {
1696 fprintf(stderr, "Failed to create session\n");
Christopher Tate71bbc672014-07-14 16:45:13 -07001697 fputs(buf, stderr);
Jeff Sharkey960df972014-06-09 17:30:57 -07001698 return -1;
1699 }
1700
1701 // Valid session, now stream the APKs
1702 int success = 1;
1703 for (i = first_apk; i < argc; i++) {
Dan Albertbac34742015-02-25 17:51:28 -08001704 const char* file = argv[i];
Jeff Sharkey960df972014-06-09 17:30:57 -07001705 if (stat(file, &sb) == -1) {
1706 fprintf(stderr, "Failed to stat %s\n", file);
1707 success = 0;
1708 goto finalize_session;
1709 }
1710
Elliott Hughes53daee62015-04-19 13:17:01 -07001711#if defined(_WIN32) // Remove when we're using clang for Win32.
1712 std::string cmd = android::base::StringPrintf(
1713 "exec:pm install-write -S %u %d %d_%s -",
1714 (unsigned) sb.st_size, session_id, i, get_basename(file));
1715#else
Elliott Hughes2940ccf2015-04-17 14:07:52 -07001716 std::string cmd = android::base::StringPrintf(
1717 "exec:pm install-write -S %" PRIu64 " %d %d_%s -",
1718 static_cast<uint64_t>(sb.st_size), session_id, i, get_basename(file));
Elliott Hughes53daee62015-04-19 13:17:01 -07001719#endif
Jeff Sharkey960df972014-06-09 17:30:57 -07001720
1721 int localFd = adb_open(file, O_RDONLY);
1722 if (localFd < 0) {
Elliott Hughes078f0fc2015-04-29 08:35:59 -07001723 fprintf(stderr, "Failed to open %s: %s\n", file, strerror(errno));
Jeff Sharkey960df972014-06-09 17:30:57 -07001724 success = 0;
1725 goto finalize_session;
1726 }
1727
Elliott Hughes078f0fc2015-04-29 08:35:59 -07001728 std::string error;
Elliott Hughes6452a892015-04-29 12:28:13 -07001729 int remoteFd = adb_connect(cmd, &error);
Jeff Sharkey960df972014-06-09 17:30:57 -07001730 if (remoteFd < 0) {
Elliott Hughes078f0fc2015-04-29 08:35:59 -07001731 fprintf(stderr, "Connect error for write: %s\n", error.c_str());
Jeff Sharkey960df972014-06-09 17:30:57 -07001732 adb_close(localFd);
1733 success = 0;
1734 goto finalize_session;
1735 }
1736
1737 copy_to_file(localFd, remoteFd);
1738 read_status_line(remoteFd, buf, sizeof(buf));
1739
1740 adb_close(localFd);
1741 adb_close(remoteFd);
1742
1743 if (strncmp("Success", buf, 7)) {
1744 fprintf(stderr, "Failed to write %s\n", file);
Christopher Tate71bbc672014-07-14 16:45:13 -07001745 fputs(buf, stderr);
Jeff Sharkey960df972014-06-09 17:30:57 -07001746 success = 0;
1747 goto finalize_session;
1748 }
1749 }
1750
1751finalize_session:
Jeff Sharkeyac77e1f2014-07-25 09:58:25 -07001752 // Commit session if we streamed everything okay; otherwise abandon
Elliott Hughes6452a892015-04-29 12:28:13 -07001753 std::string service =
1754 android::base::StringPrintf("exec:pm install-%s %d",
1755 success ? "commit" : "abandon", session_id);
1756 fd = adb_connect(service, &error);
Jeff Sharkey960df972014-06-09 17:30:57 -07001757 if (fd < 0) {
Elliott Hughes078f0fc2015-04-29 08:35:59 -07001758 fprintf(stderr, "Connect error for finalize: %s\n", error.c_str());
Jeff Sharkey960df972014-06-09 17:30:57 -07001759 return -1;
1760 }
1761 read_status_line(fd, buf, sizeof(buf));
1762 adb_close(fd);
1763
1764 if (!strncmp("Success", buf, 7)) {
Christopher Tate71bbc672014-07-14 16:45:13 -07001765 fputs(buf, stderr);
Jeff Sharkey960df972014-06-09 17:30:57 -07001766 return 0;
1767 } else {
1768 fprintf(stderr, "Failed to finalize session\n");
Christopher Tate71bbc672014-07-14 16:45:13 -07001769 fputs(buf, stderr);
Jeff Sharkey960df972014-06-09 17:30:57 -07001770 return -1;
1771 }
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001772}