blob: 909592dcc6e63f85ff7cf910e06d532dede3ae17 [file] [log] [blame]
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001/*
2 * Copyright (C) 2007 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
Dan Albert33134262015-03-19 15:21:08 -070017#define TRACE_TAG TRACE_ADB
18
19#include "sysdeps.h"
20
Dan Albert76649012015-02-24 15:51:19 -080021#include <assert.h>
22#include <ctype.h>
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -080023#include <errno.h>
Elliott Hughes2940ccf2015-04-17 14:07:52 -070024#include <inttypes.h>
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -080025#include <limits.h>
26#include <stdarg.h>
Dan Albert76649012015-02-24 15:51:19 -080027#include <stdint.h>
28#include <stdio.h>
29#include <stdlib.h>
30#include <string.h>
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -080031#include <sys/stat.h>
Dan Albert76649012015-02-24 15:51:19 -080032#include <sys/types.h>
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -080033
Elliott Hughes2baae3a2015-04-17 10:59:34 -070034#include <string>
35
36#include <base/stringprintf.h>
37
Yabin Cuid325e862014-11-17 14:48:25 -080038#if !defined(_WIN32)
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -080039#include <termios.h>
Dan Albert76649012015-02-24 15:51:19 -080040#include <unistd.h>
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -080041#endif
42
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -080043#include "adb.h"
Nick Kralevichbea3f9c2014-11-13 15:17:29 -080044#include "adb_auth.h"
Dan Albertcc731cc2015-02-24 21:26:58 -080045#include "adb_client.h"
46#include "adb_io.h"
Elliott Hughes58305772015-04-17 13:57:15 -070047#include "adb_utils.h"
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -080048#include "file_sync_service.h"
49
Elliott Hughesaceb9c02015-05-04 19:29:32 -070050static int install_app(transport_type t, const char* serial, int argc, const char** argv);
51static int install_multiple_app(transport_type t, const char* serial, int argc, const char** argv);
52static int uninstall_app(transport_type t, const char* serial, int argc, const char** argv);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -080053
Elliott Hughes58305772015-04-17 13:57:15 -070054static std::string gProductOutPath;
Matt Gumbeld7b33082012-11-14 10:16:17 -080055extern int gListenAll;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -080056
Elliott Hughes58305772015-04-17 13:57:15 -070057static std::string product_file(const char *extra) {
58 if (gProductOutPath.empty()) {
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -080059 fprintf(stderr, "adb: Product directory not specified; "
60 "use -p or define ANDROID_PRODUCT_OUT\n");
61 exit(1);
62 }
63
Elliott Hughes58305772015-04-17 13:57:15 -070064 return android::base::StringPrintf("%s%s%s",
65 gProductOutPath.c_str(), OS_PATH_SEPARATOR_STR, extra);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -080066}
67
Elliott Hughes58305772015-04-17 13:57:15 -070068static void version(FILE* out) {
Elliott Hughes02418b32015-05-07 21:56:31 -070069 fprintf(out, "Android Debug Bridge version %d.%d.%d\nRevision %s\n",
70 ADB_VERSION_MAJOR, ADB_VERSION_MINOR, ADB_SERVER_VERSION, ADB_REVISION);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -080071}
72
Elliott Hughes58305772015-04-17 13:57:15 -070073static void help() {
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -080074 version(stderr);
75
76 fprintf(stderr,
77 "\n"
Matt Gumbeld7b33082012-11-14 10:16:17 -080078 " -a - directs adb to listen on all interfaces for a connection\n"
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -080079 " -d - directs command to the only connected USB device\n"
80 " returns an error if more than one USB device is present.\n"
81 " -e - directs command to the only running emulator.\n"
82 " returns an error if more than one emulator is running.\n"
Scott Andersone109d262012-04-20 11:21:14 -070083 " -s <specific device> - directs command to the device or emulator with the given\n"
Scott Anderson2ca3e6b2012-05-30 18:11:27 -070084 " serial number or qualifier. Overrides ANDROID_SERIAL\n"
Elliott Hughes31dbed72009-10-07 15:38:53 -070085 " environment variable.\n"
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -080086 " -p <product name or path> - simple product name like 'sooner', or\n"
87 " a relative/absolute path to a product\n"
88 " out directory like 'out/target/product/sooner'.\n"
89 " If -p is not specified, the ANDROID_PRODUCT_OUT\n"
90 " environment variable is used, which must\n"
91 " be an absolute path.\n"
Matt Gumbeld7b33082012-11-14 10:16:17 -080092 " -H - Name of adb server host (default: localhost)\n"
93 " -P - Port of adb server (default: 5037)\n"
Scott Andersone109d262012-04-20 11:21:14 -070094 " devices [-l] - list all connected devices\n"
Scott Anderson2ca3e6b2012-05-30 18:11:27 -070095 " ('-l' will also list device qualifiers)\n"
Mike Lockwoodcbbe79a2010-05-24 10:44:35 -040096 " connect <host>[:<port>] - connect to a device via TCP/IP\n"
97 " Port 5555 is used by default if no port number is specified.\n"
98 " disconnect [<host>[:<port>]] - disconnect from a TCP/IP device.\n"
99 " Port 5555 is used by default if no port number is specified.\n"
Bernhard Reutner-Fischer6715a432011-04-26 12:46:05 +0200100 " Using this command with no additional arguments\n"
Mike Lockwoodcbbe79a2010-05-24 10:44:35 -0400101 " will disconnect from all connected TCP/IP devices.\n"
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800102 "\n"
103 "device commands:\n"
Mark Lindner76f2a932014-03-11 17:55:59 -0700104 " adb push [-p] <local> <remote>\n"
105 " - copy file/dir to device\n"
106 " ('-p' to display the transfer progress)\n"
Lajos Molnarde8ff4a2013-04-19 12:41:09 -0700107 " adb pull [-p] [-a] <remote> [<local>]\n"
Mark Lindner76f2a932014-03-11 17:55:59 -0700108 " - copy file/dir from device\n"
109 " ('-p' to display the transfer progress)\n"
Lajos Molnarde8ff4a2013-04-19 12:41:09 -0700110 " ('-a' means copy timestamp and mode)\n"
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800111 " adb sync [ <directory> ] - copy host->device only if changed\n"
Anthony Newnam705c9442010-02-22 08:36:49 -0600112 " (-l means list but don't copy)\n"
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800113 " (see 'adb help all')\n"
114 " adb shell - run remote shell interactively\n"
115 " adb shell <command> - run remote shell command\n"
116 " adb emu <command> - run emulator console command\n"
117 " adb logcat [ <filter-spec> ] - View device log\n"
David 'Digit' Turner0d82fbf2012-11-14 15:01:55 +0100118 " adb forward --list - list all forward socket connections.\n"
119 " the format is a list of lines with the following format:\n"
120 " <serial> \" \" <local> \" \" <remote> \"\\n\"\n"
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800121 " adb forward <local> <remote> - forward socket connections\n"
122 " forward specs are one of: \n"
123 " tcp:<port>\n"
124 " localabstract:<unix domain socket name>\n"
125 " localreserved:<unix domain socket name>\n"
126 " localfilesystem:<unix domain socket name>\n"
127 " dev:<character device name>\n"
128 " jdwp:<process pid> (remote only)\n"
David 'Digit' Turner0d82fbf2012-11-14 15:01:55 +0100129 " adb forward --no-rebind <local> <remote>\n"
130 " - same as 'adb forward <local> <remote>' but fails\n"
131 " if <local> is already forwarded\n"
132 " adb forward --remove <local> - remove a specific forward socket connection\n"
133 " adb forward --remove-all - remove all forward socket connections\n"
David 'Digit' Turner25258692013-03-21 21:07:42 +0100134 " adb reverse --list - list all reverse socket connections from device\n"
135 " adb reverse <remote> <local> - reverse socket connections\n"
136 " reverse specs are one of:\n"
137 " tcp:<port>\n"
138 " localabstract:<unix domain socket name>\n"
139 " localreserved:<unix domain socket name>\n"
140 " localfilesystem:<unix domain socket name>\n"
141 " adb reverse --norebind <remote> <local>\n"
142 " - same as 'adb reverse <remote> <local>' but fails\n"
143 " if <remote> is already reversed.\n"
144 " adb reverse --remove <remote>\n"
145 " - remove a specific reversed socket connection\n"
146 " adb reverse --remove-all - remove all reversed socket connections from device\n"
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800147 " adb jdwp - list PIDs of processes hosting a JDWP transport\n"
Lorenzo Colitti0b3baac2015-05-28 12:03:44 +0900148 " adb install [-lrtsdg] <file>\n"
149 " adb install-multiple [-lrtsdpg] <file...>\n"
Anonymous Coward4474ac42012-04-24 10:43:41 -0700150 " - push this package file to the device and install it\n"
Jeff Sharkey960df972014-06-09 17:30:57 -0700151 " (-l: forward lock application)\n"
152 " (-r: replace existing application)\n"
153 " (-t: allow test packages)\n"
154 " (-s: install application on sdcard)\n"
155 " (-d: allow version code downgrade)\n"
156 " (-p: partial application install)\n"
Lorenzo Colitti0b3baac2015-05-28 12:03:44 +0900157 " (-g: grant all runtime permissions)\n"
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800158 " adb uninstall [-k] <package> - remove this app package from the device\n"
159 " ('-k' means keep the data and cache directories)\n"
160 " adb bugreport - return all information from the device\n"
161 " that should be included in a bug report.\n"
162 "\n"
Christopher Tate0c06eb52013-03-06 16:40:52 -0800163 " adb backup [-f <file>] [-apk|-noapk] [-obb|-noobb] [-shared|-noshared] [-all] [-system|-nosystem] [<packages...>]\n"
Christopher Tate56885092011-10-03 18:27:01 -0700164 " - write an archive of the device's data to <file>.\n"
165 " If no -f option is supplied then the data is written\n"
166 " to \"backup.ab\" in the current directory.\n"
Christopher Tated2f54152011-04-21 12:53:28 -0700167 " (-apk|-noapk enable/disable backup of the .apks themselves\n"
Christopher Tatede034ec2011-08-09 17:05:29 -0700168 " in the archive; the default is noapk.)\n"
Christopher Tate0c06eb52013-03-06 16:40:52 -0800169 " (-obb|-noobb enable/disable backup of any installed apk expansion\n"
170 " (aka .obb) files associated with each application; the default\n"
171 " is noobb.)\n"
Christopher Tated2f54152011-04-21 12:53:28 -0700172 " (-shared|-noshared enable/disable backup of the device's\n"
173 " shared storage / SD card contents; the default is noshared.)\n"
174 " (-all means to back up all installed applications)\n"
Christopher Tate56885092011-10-03 18:27:01 -0700175 " (-system|-nosystem toggles whether -all automatically includes\n"
176 " system applications; the default is to include system apps)\n"
Christopher Tated2f54152011-04-21 12:53:28 -0700177 " (<packages...> is the list of applications to be backed up. If\n"
178 " the -all or -shared flags are passed, then the package\n"
Christopher Tate56885092011-10-03 18:27:01 -0700179 " list is optional. Applications explicitly given on the\n"
180 " command line will be included even if -nosystem would\n"
181 " ordinarily cause them to be omitted.)\n"
Christopher Tated2f54152011-04-21 12:53:28 -0700182 "\n"
Christopher Tatede034ec2011-08-09 17:05:29 -0700183 " adb restore <file> - restore device contents from the <file> backup archive\n"
Christopher Tate702967a2011-05-17 15:52:54 -0700184 "\n"
Paul Lawrence982089d2014-12-03 15:31:57 -0800185 " adb disable-verity - disable dm-verity checking on USERDEBUG builds\n"
186 " adb enable-verity - re-enable dm-verity checking on USERDEBUG builds\n"
Nick Kralevichbea3f9c2014-11-13 15:17:29 -0800187 " adb keygen <file> - generate adb public/private key. The private key is stored in <file>,\n"
188 " and the public key is stored in <file>.pub. Any existing files\n"
189 " are overwritten.\n"
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800190 " adb help - show this help message\n"
191 " adb version - show version num\n"
192 "\n"
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800193 "scripting:\n"
194 " adb wait-for-device - block until device is online\n"
195 " adb start-server - ensure that there is a server running\n"
196 " adb kill-server - kill the server if it is running\n"
197 " adb get-state - prints: offline | bootloader | device\n"
198 " adb get-serialno - prints: <serial-number>\n"
Scott Andersone109d262012-04-20 11:21:14 -0700199 " adb get-devpath - prints: <device-path>\n"
Elliott Hughesec7a6672015-03-16 21:58:32 +0000200 " 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 -0700201 " adb reboot [bootloader|recovery]\n"
202 " - reboots the device, optionally into the bootloader or recovery program.\n"
203 " adb reboot sideload - reboots the device into the sideload mode in recovery program (adb root required).\n"
204 " adb reboot sideload-auto-reboot\n"
205 " - reboots into the sideload mode, then reboots automatically after the sideload regardless of the result.\n"
Romain Guy311add42009-12-14 14:42:17 -0800206 " adb reboot-bootloader - reboots the device into the bootloader\n"
Mike Lockwoodff196702009-08-24 15:58:40 -0700207 " adb root - restarts the adbd daemon with root permissions\n"
Dan Pasanen98858812014-10-06 12:57:20 -0500208 " adb unroot - restarts the adbd daemon without root permissions\n"
Romain Guy311add42009-12-14 14:42:17 -0800209 " adb usb - restarts the adbd daemon listening on USB\n"
Paul Lawrenceec900bb2014-10-09 14:22:49 +0000210 " 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 -0800211 "networking:\n"
212 " adb ppp <tty> [parameters] - Run PPP over USB.\n"
Kenny Rootc9891992009-06-08 14:40:30 -0500213 " Note: you should not automatically start a PPP connection.\n"
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800214 " <tty> refers to the tty for PPP stream. Eg. dev:/dev/omap_csmi_tty1\n"
215 " [parameters] - Eg. defaultroute debug dump local notty usepeerdns\n"
216 "\n"
217 "adb sync notes: adb sync [ <directory> ]\n"
218 " <localdir> can be interpreted in several ways:\n"
219 "\n"
Elliott Hughesec7a6672015-03-16 21:58:32 +0000220 " - 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 -0800221 "\n"
Elliott Hughesec7a6672015-03-16 21:58:32 +0000222 " - If it is \"system\", \"vendor\", \"oem\" or \"data\", only the corresponding partition\n"
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800223 " is updated.\n"
Timcd643152010-02-16 20:18:29 +0000224 "\n"
225 "environmental variables:\n"
226 " ADB_TRACE - Print debug information. A comma separated list of the following values\n"
227 " 1 or all, adb, sockets, packets, rwx, usb, sync, sysdeps, transport, jdwp\n"
228 " ANDROID_SERIAL - The serial number to connect to. -s takes priority over this if given.\n"
229 " 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 -0800230 );
231}
232
Elliott Hughes58305772015-04-17 13:57:15 -0700233static int usage() {
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800234 help();
235 return 1;
236}
237
Yabin Cuid325e862014-11-17 14:48:25 -0800238#if defined(_WIN32)
239
Elliott Hughesa2f2e562015-04-16 16:47:02 -0700240// Implemented in sysdeps_win32.cpp.
Spencer Low50184062015-03-01 15:06:21 -0800241void stdin_raw_init(int fd);
242void stdin_raw_restore(int fd);
Yabin Cuid325e862014-11-17 14:48:25 -0800243
244#else
Alistair Buxtondfa09fd2013-03-01 22:16:41 +0100245static termios g_saved_terminal_state;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800246
Alistair Buxtondfa09fd2013-03-01 22:16:41 +0100247static void stdin_raw_init(int fd) {
248 if (tcgetattr(fd, &g_saved_terminal_state)) return;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800249
Alistair Buxtondfa09fd2013-03-01 22:16:41 +0100250 termios tio;
251 if (tcgetattr(fd, &tio)) return;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800252
Alistair Buxtondfa09fd2013-03-01 22:16:41 +0100253 cfmakeraw(&tio);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800254
Alistair Buxtondfa09fd2013-03-01 22:16:41 +0100255 // No timeout but request at least one character per read.
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800256 tio.c_cc[VTIME] = 0;
257 tio.c_cc[VMIN] = 1;
258
Alistair Buxtondfa09fd2013-03-01 22:16:41 +0100259 tcsetattr(fd, TCSAFLUSH, &tio);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800260}
261
Alistair Buxtondfa09fd2013-03-01 22:16:41 +0100262static void stdin_raw_restore(int fd) {
263 tcsetattr(fd, TCSAFLUSH, &g_saved_terminal_state);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800264}
265#endif
266
Elliott Hughes207ddb22015-05-07 23:37:40 -0700267static void read_and_dump(int fd) {
268 while (fd >= 0) {
JP Abgrall408fa572011-03-16 15:57:42 -0700269 D("read_and_dump(): pre adb_read(fd=%d)\n", fd);
Elliott Hughes207ddb22015-05-07 23:37:40 -0700270 char buf[BUFSIZ];
271 int len = adb_read(fd, buf, sizeof(buf));
JP Abgrall408fa572011-03-16 15:57:42 -0700272 D("read_and_dump(): post adb_read(fd=%d): len=%d\n", fd, len);
Elliott Hughes207ddb22015-05-07 23:37:40 -0700273 if (len <= 0) {
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800274 break;
275 }
276
Mike Lockwooddd6b36e2009-09-22 01:18:40 -0400277 fwrite(buf, 1, len, stdout);
278 fflush(stdout);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800279 }
280}
281
Jeff Sharkey960df972014-06-09 17:30:57 -0700282static void read_status_line(int fd, char* buf, size_t count)
283{
284 count--;
285 while (count > 0) {
286 int len = adb_read(fd, buf, count);
287 if (len == 0) {
288 break;
289 } else if (len < 0) {
290 if (errno == EINTR) continue;
291 break;
292 }
293
294 buf += len;
295 count -= len;
296 }
297 *buf = '\0';
298}
299
Christopher Tated2f54152011-04-21 12:53:28 -0700300static void copy_to_file(int inFd, int outFd) {
Christopher Tate5b811fa2011-06-10 11:38:37 -0700301 const size_t BUFSIZE = 32 * 1024;
302 char* buf = (char*) malloc(BUFSIZE);
Elliott Hughesdc3b4592015-04-21 19:39:52 -0700303 if (buf == nullptr) fatal("couldn't allocate buffer for copy_to_file");
Christopher Tated2f54152011-04-21 12:53:28 -0700304 int len;
Christopher Tatec9cd3b92011-06-01 17:56:23 -0700305 long total = 0;
Christopher Tated2f54152011-04-21 12:53:28 -0700306
307 D("copy_to_file(%d -> %d)\n", inFd, outFd);
Yabin Cuid325e862014-11-17 14:48:25 -0800308
Jeff Sharkey5d9d4342014-05-26 18:30:43 -0700309 if (inFd == STDIN_FILENO) {
310 stdin_raw_init(STDIN_FILENO);
311 }
Yabin Cuid325e862014-11-17 14:48:25 -0800312
Elliott Hughesa7090b92015-04-17 17:03:59 -0700313 while (true) {
Jeff Sharkey5d9d4342014-05-26 18:30:43 -0700314 if (inFd == STDIN_FILENO) {
315 len = unix_read(inFd, buf, BUFSIZE);
316 } else {
317 len = adb_read(inFd, buf, BUFSIZE);
318 }
Christopher Tated2f54152011-04-21 12:53:28 -0700319 if (len == 0) {
Christopher Tate5b811fa2011-06-10 11:38:37 -0700320 D("copy_to_file() : read 0 bytes; exiting\n");
Christopher Tated2f54152011-04-21 12:53:28 -0700321 break;
322 }
323 if (len < 0) {
Christopher Tate5b811fa2011-06-10 11:38:37 -0700324 if (errno == EINTR) {
325 D("copy_to_file() : EINTR, retrying\n");
326 continue;
327 }
Christopher Tated2f54152011-04-21 12:53:28 -0700328 D("copy_to_file() : error %d\n", errno);
329 break;
330 }
Jeff Sharkey5d9d4342014-05-26 18:30:43 -0700331 if (outFd == STDOUT_FILENO) {
332 fwrite(buf, 1, len, stdout);
333 fflush(stdout);
334 } else {
335 adb_write(outFd, buf, len);
336 }
Christopher Tatec9cd3b92011-06-01 17:56:23 -0700337 total += len;
Christopher Tated2f54152011-04-21 12:53:28 -0700338 }
Yabin Cuid325e862014-11-17 14:48:25 -0800339
Jeff Sharkey5d9d4342014-05-26 18:30:43 -0700340 if (inFd == STDIN_FILENO) {
341 stdin_raw_restore(STDIN_FILENO);
342 }
Yabin Cuid325e862014-11-17 14:48:25 -0800343
Christopher Tatec9cd3b92011-06-01 17:56:23 -0700344 D("copy_to_file() finished after %lu bytes\n", total);
Christopher Tate5b811fa2011-06-10 11:38:37 -0700345 free(buf);
Christopher Tated2f54152011-04-21 12:53:28 -0700346}
347
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800348static void *stdin_read_thread(void *x)
349{
350 int fd, fdi;
351 unsigned char buf[1024];
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800352 int r, n;
353 int state = 0;
354
355 int *fds = (int*) x;
356 fd = fds[0];
357 fdi = fds[1];
358 free(fds);
359
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800360 for(;;) {
361 /* fdi is really the client's stdin, so use read, not adb_read here */
JP Abgrall408fa572011-03-16 15:57:42 -0700362 D("stdin_read_thread(): pre unix_read(fdi=%d,...)\n", fdi);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800363 r = unix_read(fdi, buf, 1024);
JP Abgrall408fa572011-03-16 15:57:42 -0700364 D("stdin_read_thread(): post unix_read(fdi=%d,...)\n", fdi);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800365 if(r == 0) break;
366 if(r < 0) {
367 if(errno == EINTR) continue;
368 break;
369 }
Mike Lockwood67d53582010-05-25 13:40:15 -0400370 for(n = 0; n < r; n++){
371 switch(buf[n]) {
372 case '\n':
373 state = 1;
374 break;
375 case '\r':
376 state = 1;
377 break;
378 case '~':
379 if(state == 1) state++;
380 break;
381 case '.':
382 if(state == 2) {
383 fprintf(stderr,"\n* disconnect *\n");
Mike Lockwood67d53582010-05-25 13:40:15 -0400384 stdin_raw_restore(fdi);
Mike Lockwood67d53582010-05-25 13:40:15 -0400385 exit(0);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800386 }
Mike Lockwood67d53582010-05-25 13:40:15 -0400387 default:
388 state = 0;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800389 }
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800390 }
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800391 r = adb_write(fd, buf, r);
392 if(r <= 0) {
393 break;
394 }
395 }
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800396 return 0;
397}
398
Elliott Hughes58305772015-04-17 13:57:15 -0700399static int interactive_shell() {
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800400 adb_thread_t thr;
Elliott Hughes71aeb792015-04-29 08:35:59 -0700401 int fdi;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800402
Elliott Hughes71aeb792015-04-29 08:35:59 -0700403 std::string error;
404 int fd = adb_connect("shell:", &error);
405 if (fd < 0) {
406 fprintf(stderr,"error: %s\n", error.c_str());
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800407 return 1;
408 }
409 fdi = 0; //dup(0);
410
Dan Albertbac34742015-02-25 17:51:28 -0800411 int* fds = reinterpret_cast<int*>(malloc(sizeof(int) * 2));
Elliott Hughesdc3b4592015-04-21 19:39:52 -0700412 if (fds == nullptr) {
413 fprintf(stderr, "couldn't allocate fds array: %s\n", strerror(errno));
414 return 1;
415 }
416
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800417 fds[0] = fd;
418 fds[1] = fdi;
419
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800420 stdin_raw_init(fdi);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800421 adb_thread_create(&thr, stdin_read_thread, fds);
422 read_and_dump(fd);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800423 stdin_raw_restore(fdi);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800424 return 0;
425}
426
427
Elliott Hughesf1a58f82015-04-29 12:28:13 -0700428static std::string format_host_command(const char* command, transport_type type, const char* serial) {
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800429 if (serial) {
Elliott Hughesf1a58f82015-04-29 12:28:13 -0700430 return android::base::StringPrintf("host-serial:%s:%s", serial, command);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800431 }
Elliott Hughesf1a58f82015-04-29 12:28:13 -0700432
433 const char* prefix = "host";
434 if (type == kTransportUsb) {
435 prefix = "host-usb";
436 } else if (type == kTransportLocal) {
437 prefix = "host-local";
438 }
439 return android::base::StringPrintf("%s:%s", prefix, command);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800440}
441
Elliott Hughesf1a58f82015-04-29 12:28:13 -0700442static int adb_download_buffer(const char *service, const char *fn, const void* data, unsigned sz,
Elliott Hughes71aeb792015-04-29 08:35:59 -0700443 bool show_progress)
Doug Zongker447f0612012-01-09 14:54:53 -0800444{
Elliott Hughes71aeb792015-04-29 08:35:59 -0700445 std::string error;
Elliott Hughesf1a58f82015-04-29 12:28:13 -0700446 int fd = adb_connect(android::base::StringPrintf("%s:%d", service, sz), &error);
Elliott Hughes71aeb792015-04-29 08:35:59 -0700447 if (fd < 0) {
448 fprintf(stderr,"error: %s\n", error.c_str());
Doug Zongker447f0612012-01-09 14:54:53 -0800449 return -1;
450 }
451
452 int opt = CHUNK_SIZE;
Spencer Lowf055c192015-01-25 14:40:16 -0800453 opt = adb_setsockopt(fd, SOL_SOCKET, SO_SNDBUF, (const void *) &opt, sizeof(opt));
Doug Zongker447f0612012-01-09 14:54:53 -0800454
Elliott Hughesf1a58f82015-04-29 12:28:13 -0700455 unsigned total = sz;
Dan Albertbac34742015-02-25 17:51:28 -0800456 const uint8_t* ptr = reinterpret_cast<const uint8_t*>(data);
Doug Zongker447f0612012-01-09 14:54:53 -0800457
Elliott Hughes71aeb792015-04-29 08:35:59 -0700458 if (show_progress) {
Doug Zongker447f0612012-01-09 14:54:53 -0800459 char *x = strrchr(service, ':');
460 if(x) service = x + 1;
461 }
462
Elliott Hughesf1a58f82015-04-29 12:28:13 -0700463 while (sz > 0) {
Doug Zongker447f0612012-01-09 14:54:53 -0800464 unsigned xfer = (sz > CHUNK_SIZE) ? CHUNK_SIZE : sz;
Elliott Hughes71aeb792015-04-29 08:35:59 -0700465 if (!WriteFdExactly(fd, ptr, xfer)) {
466 std::string error;
467 adb_status(fd, &error);
468 fprintf(stderr,"* failed to write data '%s' *\n", error.c_str());
Doug Zongker447f0612012-01-09 14:54:53 -0800469 return -1;
470 }
471 sz -= xfer;
472 ptr += xfer;
Elliott Hughes71aeb792015-04-29 08:35:59 -0700473 if (show_progress) {
Magnus Eriksson86ae6d52013-03-05 07:37:32 +0100474 printf("sending: '%s' %4d%% \r", fn, (int)(100LL - ((100LL * sz) / (total))));
Doug Zongker447f0612012-01-09 14:54:53 -0800475 fflush(stdout);
476 }
477 }
Elliott Hughes71aeb792015-04-29 08:35:59 -0700478 if (show_progress) {
Doug Zongker447f0612012-01-09 14:54:53 -0800479 printf("\n");
480 }
481
Elliott Hughes92af7332015-04-30 17:32:03 -0700482 if (!adb_status(fd, &error)) {
483 fprintf(stderr,"* error response '%s' *\n", error.c_str());
Doug Zongker447f0612012-01-09 14:54:53 -0800484 return -1;
485 }
486
487 adb_close(fd);
488 return 0;
489}
490
Doug Zongker71fe5842014-06-26 15:35:36 -0700491#define SIDELOAD_HOST_BLOCK_SIZE (CHUNK_SIZE)
492
493/*
494 * The sideload-host protocol serves the data in a file (given on the
495 * command line) to the client, using a simple protocol:
496 *
497 * - The connect message includes the total number of bytes in the
498 * file and a block size chosen by us.
499 *
500 * - The other side sends the desired block number as eight decimal
501 * digits (eg "00000023" for block 23). Blocks are numbered from
502 * zero.
503 *
504 * - We send back the data of the requested block. The last block is
505 * likely to be partial; when the last block is requested we only
506 * send the part of the block that exists, it's not padded up to the
507 * block size.
508 *
509 * - When the other side sends "DONEDONE" instead of a block number,
510 * we hang up.
511 */
Elliott Hughes58305772015-04-17 13:57:15 -0700512static int adb_sideload_host(const char* fn) {
Doug Zongker71fe5842014-06-26 15:35:36 -0700513 unsigned sz;
514 size_t xfer = 0;
515 int status;
Dan Albertbac34742015-02-25 17:51:28 -0800516 int last_percent = -1;
517 int opt = SIDELOAD_HOST_BLOCK_SIZE;
Doug Zongker71fe5842014-06-26 15:35:36 -0700518
519 printf("loading: '%s'", fn);
520 fflush(stdout);
Dan Albertbac34742015-02-25 17:51:28 -0800521 uint8_t* data = reinterpret_cast<uint8_t*>(load_file(fn, &sz));
Doug Zongker71fe5842014-06-26 15:35:36 -0700522 if (data == 0) {
523 printf("\n");
524 fprintf(stderr, "* cannot read '%s' *\n", fn);
525 return -1;
526 }
527
Elliott Hughesf1a58f82015-04-29 12:28:13 -0700528 std::string service =
529 android::base::StringPrintf("sideload-host:%d:%d", sz, SIDELOAD_HOST_BLOCK_SIZE);
Elliott Hughes71aeb792015-04-29 08:35:59 -0700530 std::string error;
Elliott Hughesf1a58f82015-04-29 12:28:13 -0700531 int fd = adb_connect(service, &error);
Doug Zongker71fe5842014-06-26 15:35:36 -0700532 if (fd < 0) {
533 // Try falling back to the older sideload method. Maybe this
534 // is an older device that doesn't support sideload-host.
535 printf("\n");
Elliott Hughes71aeb792015-04-29 08:35:59 -0700536 status = adb_download_buffer("sideload", fn, data, sz, true);
Doug Zongker71fe5842014-06-26 15:35:36 -0700537 goto done;
538 }
539
Spencer Lowf055c192015-01-25 14:40:16 -0800540 opt = adb_setsockopt(fd, SOL_SOCKET, SO_SNDBUF, (const void *) &opt, sizeof(opt));
Doug Zongker71fe5842014-06-26 15:35:36 -0700541
Elliott Hughesa7090b92015-04-17 17:03:59 -0700542 while (true) {
Elliott Hughesf1a58f82015-04-29 12:28:13 -0700543 char buf[9];
Dan Albertcc731cc2015-02-24 21:26:58 -0800544 if (!ReadFdExactly(fd, buf, 8)) {
Elliott Hughes71aeb792015-04-29 08:35:59 -0700545 fprintf(stderr, "* failed to read command: %s\n", strerror(errno));
Doug Zongker71fe5842014-06-26 15:35:36 -0700546 status = -1;
547 goto done;
548 }
Elliott Hughesf1a58f82015-04-29 12:28:13 -0700549 buf[8] = '\0';
Doug Zongker71fe5842014-06-26 15:35:36 -0700550
Elliott Hughesf1a58f82015-04-29 12:28:13 -0700551 if (strcmp("DONEDONE", buf) == 0) {
Doug Zongker71fe5842014-06-26 15:35:36 -0700552 status = 0;
553 break;
554 }
555
Doug Zongker71fe5842014-06-26 15:35:36 -0700556 int block = strtol(buf, NULL, 10);
557
558 size_t offset = block * SIDELOAD_HOST_BLOCK_SIZE;
559 if (offset >= sz) {
Elliott Hughes71aeb792015-04-29 08:35:59 -0700560 fprintf(stderr, "* attempt to read block %d past end\n", block);
Doug Zongker71fe5842014-06-26 15:35:36 -0700561 status = -1;
562 goto done;
563 }
564 uint8_t* start = data + offset;
565 size_t offset_end = offset + SIDELOAD_HOST_BLOCK_SIZE;
566 size_t to_write = SIDELOAD_HOST_BLOCK_SIZE;
567 if (offset_end > sz) {
568 to_write = sz - offset;
569 }
570
Dan Albertcc731cc2015-02-24 21:26:58 -0800571 if(!WriteFdExactly(fd, start, to_write)) {
Elliott Hughes71aeb792015-04-29 08:35:59 -0700572 adb_status(fd, &error);
573 fprintf(stderr,"* failed to write data '%s' *\n", error.c_str());
Doug Zongker71fe5842014-06-26 15:35:36 -0700574 status = -1;
575 goto done;
576 }
577 xfer += to_write;
578
579 // For normal OTA packages, we expect to transfer every byte
580 // twice, plus a bit of overhead (one read during
581 // verification, one read of each byte for installation, plus
582 // extra access to things like the zip central directory).
583 // This estimate of the completion becomes 100% when we've
584 // transferred ~2.13 (=100/47) times the package size.
585 int percent = (int)(xfer * 47LL / (sz ? sz : 1));
586 if (percent != last_percent) {
587 printf("\rserving: '%s' (~%d%%) ", fn, percent);
588 fflush(stdout);
589 last_percent = percent;
590 }
591 }
592
Colin Cross6d6a8982014-07-07 14:12:41 -0700593 printf("\rTotal xfer: %.2fx%*s\n", (double)xfer / (sz ? sz : 1), (int)strlen(fn)+10, "");
Doug Zongker71fe5842014-06-26 15:35:36 -0700594
595 done:
596 if (fd >= 0) adb_close(fd);
597 free(data);
598 return status;
599}
600
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800601/**
602 * Run ppp in "notty" mode against a resource listed as the first parameter
603 * eg:
604 *
605 * ppp dev:/dev/omap_csmi_tty0 <ppp options>
606 *
607 */
Elliott Hughes58305772015-04-17 13:57:15 -0700608static int ppp(int argc, const char** argv) {
Yabin Cuie77b6a02014-11-11 09:24:11 -0800609#if defined(_WIN32)
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800610 fprintf(stderr, "error: adb %s not implemented on Win32\n", argv[0]);
611 return -1;
612#else
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800613 if (argc < 2) {
614 fprintf(stderr, "usage: adb %s <adb service name> [ppp opts]\n",
615 argv[0]);
616
617 return 1;
618 }
619
Dan Albertbac34742015-02-25 17:51:28 -0800620 const char* adb_service_name = argv[1];
Elliott Hughes71aeb792015-04-29 08:35:59 -0700621 std::string error;
622 int fd = adb_connect(adb_service_name, &error);
623 if (fd < 0) {
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800624 fprintf(stderr,"Error: Could not open adb service: %s. Error: %s\n",
Elliott Hughes71aeb792015-04-29 08:35:59 -0700625 adb_service_name, error.c_str());
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800626 return 1;
627 }
628
Elliott Hughes71aeb792015-04-29 08:35:59 -0700629 pid_t pid = fork();
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800630
631 if (pid < 0) {
632 perror("from fork()");
633 return 1;
634 } else if (pid == 0) {
635 int err;
636 int i;
637 const char **ppp_args;
638
639 // copy args
640 ppp_args = (const char **) alloca(sizeof(char *) * argc + 1);
641 ppp_args[0] = "pppd";
642 for (i = 2 ; i < argc ; i++) {
643 //argv[2] and beyond become ppp_args[1] and beyond
644 ppp_args[i - 1] = argv[i];
645 }
646 ppp_args[i-1] = NULL;
647
648 // child side
649
650 dup2(fd, STDIN_FILENO);
651 dup2(fd, STDOUT_FILENO);
652 adb_close(STDERR_FILENO);
653 adb_close(fd);
654
655 err = execvp("pppd", (char * const *)ppp_args);
656
657 if (err < 0) {
658 perror("execing pppd");
659 }
660 exit(-1);
661 } else {
662 // parent side
663
664 adb_close(fd);
665 return 0;
666 }
Yabin Cuie77b6a02014-11-11 09:24:11 -0800667#endif /* !defined(_WIN32) */
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800668}
669
Elliott Hughesaceb9c02015-05-04 19:29:32 -0700670static bool wait_for_device(const char* service, transport_type t, const char* serial) {
671 // Was the caller vague about what they'd like us to wait for?
672 // If so, check they weren't more specific in their choice of transport type.
673 if (strcmp(service, "wait-for-device") == 0) {
674 if (t == kTransportUsb) {
675 service = "wait-for-usb";
676 } else if (t == kTransportLocal) {
677 service = "wait-for-local";
678 } else {
679 service = "wait-for-any";
680 }
681 }
682
683 std::string cmd = format_host_command(service, t, serial);
684 std::string error;
685 if (adb_command(cmd, &error)) {
686 D("failure: %s *\n", error.c_str());
687 fprintf(stderr,"error: %s\n", error.c_str());
688 return false;
689 }
690
691 return true;
692}
693
694static int send_shell_command(transport_type transport_type, const char* serial,
Elliott Hughes2baae3a2015-04-17 10:59:34 -0700695 const std::string& command) {
696 int fd;
697 while (true) {
Elliott Hughes71aeb792015-04-29 08:35:59 -0700698 std::string error;
Elliott Hughesf1a58f82015-04-29 12:28:13 -0700699 fd = adb_connect(command, &error);
Elliott Hughes71aeb792015-04-29 08:35:59 -0700700 if (fd >= 0) {
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800701 break;
Elliott Hughes71aeb792015-04-29 08:35:59 -0700702 }
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800703 fprintf(stderr,"- waiting for device -\n");
704 adb_sleep_ms(1000);
Elliott Hughesaceb9c02015-05-04 19:29:32 -0700705 wait_for_device("wait-for-device", transport_type, serial);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800706 }
707
708 read_and_dump(fd);
Elliott Hughes2baae3a2015-04-17 10:59:34 -0700709 int rc = adb_close(fd);
710 if (rc) {
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800711 perror("close");
Elliott Hughes2baae3a2015-04-17 10:59:34 -0700712 }
713 return rc;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800714}
715
Elliott Hughes2baae3a2015-04-17 10:59:34 -0700716static int logcat(transport_type transport, const char* serial, int argc, const char** argv) {
717 char* log_tags = getenv("ANDROID_LOG_TAGS");
718 std::string quoted = escape_arg(log_tags == nullptr ? "" : log_tags);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800719
Elliott Hughes2baae3a2015-04-17 10:59:34 -0700720 std::string cmd = "shell:export ANDROID_LOG_TAGS=\"" + quoted + "\"; exec logcat";
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800721
Jeff Sharkeyfd546e82014-06-10 11:31:24 -0700722 if (!strcmp(argv[0], "longcat")) {
Elliott Hughes2baae3a2015-04-17 10:59:34 -0700723 cmd += " -v long";
Christopher Tatedb0a8802011-11-30 13:00:33 -0800724 }
725
Elliott Hughes6c34bba2015-04-17 20:11:08 -0700726 --argc;
727 ++argv;
Elliott Hughes2baae3a2015-04-17 10:59:34 -0700728 while (argc-- > 0) {
Elliott Hughes6c34bba2015-04-17 20:11:08 -0700729 cmd += " " + escape_arg(*argv++);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800730 }
731
Elliott Hughes15551472015-04-21 17:58:55 -0700732 return send_shell_command(transport, serial, cmd);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800733}
734
Mark Salyzyn60299df2014-04-30 09:10:31 -0700735static int mkdirs(const char *path)
Christopher Tateb1dfffe2011-12-08 19:04:34 -0800736{
737 int ret;
Mark Salyzyn60299df2014-04-30 09:10:31 -0700738 char *x = (char *)path + 1;
Christopher Tateb1dfffe2011-12-08 19:04:34 -0800739
740 for(;;) {
741 x = adb_dirstart(x);
742 if(x == 0) return 0;
743 *x = 0;
744 ret = adb_mkdir(path, 0775);
745 *x = OS_PATH_SEPARATOR;
746 if((ret < 0) && (errno != EEXIST)) {
747 return ret;
748 }
749 x++;
750 }
751 return 0;
752}
753
Dan Albertbac34742015-02-25 17:51:28 -0800754static int backup(int argc, const char** argv) {
Elliott Hughes6c34bba2015-04-17 20:11:08 -0700755 const char* filename = "./backup.ab";
Christopher Tated2f54152011-04-21 12:53:28 -0700756
Christopher Tatec9cd3b92011-06-01 17:56:23 -0700757 /* find, extract, and use any -f argument */
Elliott Hughes6c34bba2015-04-17 20:11:08 -0700758 for (int i = 1; i < argc; i++) {
Christopher Tatec9cd3b92011-06-01 17:56:23 -0700759 if (!strcmp("-f", argv[i])) {
760 if (i == argc-1) {
761 fprintf(stderr, "adb: -f passed with no filename\n");
762 return usage();
763 }
764 filename = argv[i+1];
Elliott Hughes6c34bba2015-04-17 20:11:08 -0700765 for (int j = i+2; j <= argc; ) {
Christopher Tatec9cd3b92011-06-01 17:56:23 -0700766 argv[i++] = argv[j++];
767 }
768 argc -= 2;
769 argv[argc] = NULL;
770 }
Christopher Tated2f54152011-04-21 12:53:28 -0700771 }
772
Christopher Tatebb86bc52011-08-22 17:12:08 -0700773 /* bare "adb backup" or "adb backup -f filename" are not valid invocations */
774 if (argc < 2) return usage();
775
Christopher Tateb1dfffe2011-12-08 19:04:34 -0800776 adb_unlink(filename);
Mark Salyzyn60299df2014-04-30 09:10:31 -0700777 mkdirs(filename);
Elliott Hughes6c34bba2015-04-17 20:11:08 -0700778 int outFd = adb_creat(filename, 0640);
Christopher Tated2f54152011-04-21 12:53:28 -0700779 if (outFd < 0) {
780 fprintf(stderr, "adb: unable to open file %s\n", filename);
781 return -1;
782 }
783
Elliott Hughes6c34bba2015-04-17 20:11:08 -0700784 std::string cmd = "backup:";
785 --argc;
786 ++argv;
787 while (argc-- > 0) {
788 cmd += " " + escape_arg(*argv++);
Christopher Tated2f54152011-04-21 12:53:28 -0700789 }
790
Elliott Hughes6c34bba2015-04-17 20:11:08 -0700791 D("backup. filename=%s cmd=%s\n", filename, cmd.c_str());
Elliott Hughes71aeb792015-04-29 08:35:59 -0700792 std::string error;
Elliott Hughesf1a58f82015-04-29 12:28:13 -0700793 int fd = adb_connect(cmd, &error);
Christopher Tated2f54152011-04-21 12:53:28 -0700794 if (fd < 0) {
Elliott Hughes71aeb792015-04-29 08:35:59 -0700795 fprintf(stderr, "adb: unable to connect for backup: %s\n", error.c_str());
Christopher Tated2f54152011-04-21 12:53:28 -0700796 adb_close(outFd);
797 return -1;
798 }
799
Christopher Tatebffa4ca2012-01-06 15:43:03 -0800800 printf("Now unlock your device and confirm the backup operation.\n");
Christopher Tated2f54152011-04-21 12:53:28 -0700801 copy_to_file(fd, outFd);
802
803 adb_close(fd);
804 adb_close(outFd);
805 return 0;
806}
807
Dan Albertbac34742015-02-25 17:51:28 -0800808static int restore(int argc, const char** argv) {
Christopher Tate702967a2011-05-17 15:52:54 -0700809 if (argc != 2) return usage();
810
Elliott Hughes71aeb792015-04-29 08:35:59 -0700811 const char* filename = argv[1];
812 int tarFd = adb_open(filename, O_RDONLY);
Christopher Tate702967a2011-05-17 15:52:54 -0700813 if (tarFd < 0) {
Elliott Hughes71aeb792015-04-29 08:35:59 -0700814 fprintf(stderr, "adb: unable to open file %s: %s\n", filename, strerror(errno));
Christopher Tate702967a2011-05-17 15:52:54 -0700815 return -1;
816 }
817
Elliott Hughes71aeb792015-04-29 08:35:59 -0700818 std::string error;
819 int fd = adb_connect("restore:", &error);
Christopher Tate702967a2011-05-17 15:52:54 -0700820 if (fd < 0) {
Elliott Hughes71aeb792015-04-29 08:35:59 -0700821 fprintf(stderr, "adb: unable to connect for restore: %s\n", error.c_str());
Christopher Tate702967a2011-05-17 15:52:54 -0700822 adb_close(tarFd);
823 return -1;
824 }
825
Christopher Tatebffa4ca2012-01-06 15:43:03 -0800826 printf("Now unlock your device and confirm the restore operation.\n");
Christopher Tate702967a2011-05-17 15:52:54 -0700827 copy_to_file(tarFd, fd);
828
829 adb_close(fd);
830 adb_close(tarFd);
831 return 0;
832}
833
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800834/* <hint> may be:
835 * - A simple product name
836 * e.g., "sooner"
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800837 * - A relative path from the CWD to the ANDROID_PRODUCT_OUT dir
838 * e.g., "out/target/product/sooner"
839 * - An absolute path to the PRODUCT_OUT dir
840 * e.g., "/src/device/out/target/product/sooner"
841 *
842 * Given <hint>, try to construct an absolute path to the
843 * ANDROID_PRODUCT_OUT dir.
844 */
Elliott Hughes58305772015-04-17 13:57:15 -0700845static std::string find_product_out_path(const char* hint) {
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800846 if (hint == NULL || hint[0] == '\0') {
Elliott Hughes58305772015-04-17 13:57:15 -0700847 return "";
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800848 }
849
Elliott Hughes58305772015-04-17 13:57:15 -0700850 // If it's already absolute, don't bother doing any work.
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800851 if (adb_is_absolute_host_path(hint)) {
Elliott Hughes58305772015-04-17 13:57:15 -0700852 return hint;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800853 }
854
Elliott Hughes58305772015-04-17 13:57:15 -0700855 // If there are any slashes in it, assume it's a relative path;
856 // make it absolute.
Elliott Hughesa7090b92015-04-17 17:03:59 -0700857 if (adb_dirstart(hint) != nullptr) {
858 std::string cwd;
859 if (!getcwd(&cwd)) {
860 fprintf(stderr, "adb: getcwd failed: %s\n", strerror(errno));
Elliott Hughes58305772015-04-17 13:57:15 -0700861 return "";
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800862 }
Elliott Hughesa7090b92015-04-17 17:03:59 -0700863 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 -0800864 }
865
Elliott Hughes58305772015-04-17 13:57:15 -0700866 // It's a string without any slashes. Try to do something with it.
867 //
868 // Try to find the root of the build tree, and build a PRODUCT_OUT
869 // path from there.
Elliott Hughesa7090b92015-04-17 17:03:59 -0700870 char* top = getenv("ANDROID_BUILD_TOP");
Elliott Hughes58305772015-04-17 13:57:15 -0700871 if (top == nullptr) {
Elliott Hughesa7090b92015-04-17 17:03:59 -0700872 fprintf(stderr, "adb: ANDROID_BUILD_TOP not set!\n");
Elliott Hughes58305772015-04-17 13:57:15 -0700873 return "";
874 }
Elliott Hughesa7090b92015-04-17 17:03:59 -0700875
876 std::string path = top;
Elliott Hughes58305772015-04-17 13:57:15 -0700877 path += OS_PATH_SEPARATOR_STR;
878 path += "out";
879 path += OS_PATH_SEPARATOR_STR;
880 path += "target";
881 path += OS_PATH_SEPARATOR_STR;
882 path += "product";
883 path += OS_PATH_SEPARATOR_STR;
884 path += hint;
885 if (!directory_exists(path)) {
886 fprintf(stderr, "adb: Couldn't find a product dir based on -p %s; "
887 "\"%s\" doesn't exist\n", hint, path.c_str());
Elliott Hughesa7090b92015-04-17 17:03:59 -0700888 return "";
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800889 }
Elliott Hughes58305772015-04-17 13:57:15 -0700890 return path;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800891}
892
Dan Albertbac34742015-02-25 17:51:28 -0800893static void parse_push_pull_args(const char **arg, int narg, char const **path1,
894 char const **path2, int *show_progress,
895 int *copy_attrs) {
Mark Lindner76f2a932014-03-11 17:55:59 -0700896 *show_progress = 0;
Lajos Molnarde8ff4a2013-04-19 12:41:09 -0700897 *copy_attrs = 0;
Mark Lindner76f2a932014-03-11 17:55:59 -0700898
Lajos Molnarde8ff4a2013-04-19 12:41:09 -0700899 while (narg > 0) {
900 if (!strcmp(*arg, "-p")) {
901 *show_progress = 1;
902 } else if (!strcmp(*arg, "-a")) {
903 *copy_attrs = 1;
904 } else {
905 break;
906 }
Mark Lindner76f2a932014-03-11 17:55:59 -0700907 ++arg;
908 --narg;
909 }
910
911 if (narg > 0) {
912 *path1 = *arg;
913 ++arg;
914 --narg;
915 }
916
917 if (narg > 0) {
918 *path2 = *arg;
919 }
920}
921
Elliott Hughesf1a58f82015-04-29 12:28:13 -0700922static int adb_connect_command(const std::string& command) {
Elliott Hughes71aeb792015-04-29 08:35:59 -0700923 std::string error;
924 int fd = adb_connect(command, &error);
Elliott Hughes207ddb22015-05-07 23:37:40 -0700925 if (fd < 0) {
926 fprintf(stderr, "error: %s\n", error.c_str());
927 return 1;
Tao Bao175b7bb2015-03-29 11:22:34 -0700928 }
Elliott Hughes207ddb22015-05-07 23:37:40 -0700929 read_and_dump(fd);
930 adb_close(fd);
931 return 0;
Tao Bao175b7bb2015-03-29 11:22:34 -0700932}
933
Elliott Hughesf1a58f82015-04-29 12:28:13 -0700934static int adb_query_command(const std::string& command) {
935 std::string result;
936 std::string error;
937 if (!adb_query(command, &result, &error)) {
938 fprintf(stderr, "error: %s\n", error.c_str());
939 return 1;
940 }
941 printf("%s\n", result.c_str());
942 return 0;
943}
944
Elliott Hughese1a55002015-05-01 17:04:38 -0700945int adb_commandline(int argc, const char **argv) {
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800946 int no_daemon = 0;
947 int is_daemon = 0;
David 'Digit' Turner305b4b02011-01-31 14:23:56 +0100948 int is_server = 0;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800949 int persist = 0;
950 int r;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800951 transport_type ttype = kTransportAny;
Dan Albertbac34742015-02-25 17:51:28 -0800952 const char* serial = NULL;
953 const char* server_port_str = NULL;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800954
Elliott Hughes58305772015-04-17 13:57:15 -0700955 // If defined, this should be an absolute path to
956 // the directory containing all of the various system images
957 // for a particular product. If not defined, and the adb
958 // command requires this information, then the user must
959 // specify the path using "-p".
960 char* ANDROID_PRODUCT_OUT = getenv("ANDROID_PRODUCT_OUT");
961 if (ANDROID_PRODUCT_OUT != nullptr) {
962 gProductOutPath = ANDROID_PRODUCT_OUT;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800963 }
964 // TODO: also try TARGET_PRODUCT/TARGET_DEVICE as a hint
965
Nick Pellydb449262009-05-07 12:48:03 -0700966 serial = getenv("ANDROID_SERIAL");
967
Stefan Hilzingera84a42e2010-04-19 12:21:12 +0100968 /* Validate and assign the server port */
969 server_port_str = getenv("ANDROID_ADB_SERVER_PORT");
970 int server_port = DEFAULT_ADB_PORT;
971 if (server_port_str && strlen(server_port_str) > 0) {
972 server_port = (int) strtol(server_port_str, NULL, 0);
Matt Gumbeld7b33082012-11-14 10:16:17 -0800973 if (server_port <= 0 || server_port > 65535) {
Stefan Hilzingera84a42e2010-04-19 12:21:12 +0100974 fprintf(stderr,
Matt Gumbeld7b33082012-11-14 10:16:17 -0800975 "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 +0100976 server_port_str);
977 return usage();
978 }
979 }
980
981 /* modifiers and flags */
Riley Andrews98f58e82014-12-05 17:37:24 -0800982 while (argc > 0) {
983 if (!strcmp(argv[0],"server")) {
David 'Digit' Turner305b4b02011-01-31 14:23:56 +0100984 is_server = 1;
Riley Andrews98f58e82014-12-05 17:37:24 -0800985 } else if (!strcmp(argv[0],"nodaemon")) {
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800986 no_daemon = 1;
987 } else if (!strcmp(argv[0], "fork-server")) {
988 /* this is a special flag used only when the ADB client launches the ADB Server */
989 is_daemon = 1;
Riley Andrews98f58e82014-12-05 17:37:24 -0800990 } else if (!strcmp(argv[0],"persist")) {
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800991 persist = 1;
Riley Andrews98f58e82014-12-05 17:37:24 -0800992 } else if (!strncmp(argv[0], "-p", 2)) {
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800993 const char *product = NULL;
994 if (argv[0][2] == '\0') {
995 if (argc < 2) return usage();
996 product = argv[1];
997 argc--;
998 argv++;
999 } else {
Vairavan Srinivasan81273232012-08-04 16:40:50 -07001000 product = argv[0] + 2;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001001 }
1002 gProductOutPath = find_product_out_path(product);
Elliott Hughes58305772015-04-17 13:57:15 -07001003 if (gProductOutPath.empty()) {
1004 fprintf(stderr, "adb: could not resolve \"-p %s\"\n", product);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001005 return usage();
1006 }
1007 } else if (argv[0][0]=='-' && argv[0][1]=='s') {
1008 if (isdigit(argv[0][2])) {
1009 serial = argv[0] + 2;
1010 } else {
Riley Andrews98f58e82014-12-05 17:37:24 -08001011 if (argc < 2 || argv[0][2] != '\0') return usage();
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001012 serial = argv[1];
1013 argc--;
1014 argv++;
1015 }
1016 } else if (!strcmp(argv[0],"-d")) {
1017 ttype = kTransportUsb;
1018 } else if (!strcmp(argv[0],"-e")) {
1019 ttype = kTransportLocal;
Matt Gumbeld7b33082012-11-14 10:16:17 -08001020 } else if (!strcmp(argv[0],"-a")) {
1021 gListenAll = 1;
Riley Andrews98f58e82014-12-05 17:37:24 -08001022 } else if (!strncmp(argv[0], "-H", 2)) {
Matt Gumbeld7b33082012-11-14 10:16:17 -08001023 const char *hostname = NULL;
1024 if (argv[0][2] == '\0') {
1025 if (argc < 2) return usage();
1026 hostname = argv[1];
1027 argc--;
1028 argv++;
1029 } else {
1030 hostname = argv[0] + 2;
1031 }
1032 adb_set_tcp_name(hostname);
1033
Riley Andrews98f58e82014-12-05 17:37:24 -08001034 } else if (!strncmp(argv[0], "-P", 2)) {
Matt Gumbeld7b33082012-11-14 10:16:17 -08001035 if (argv[0][2] == '\0') {
1036 if (argc < 2) return usage();
1037 server_port_str = argv[1];
1038 argc--;
1039 argv++;
1040 } else {
1041 server_port_str = argv[0] + 2;
1042 }
1043 if (strlen(server_port_str) > 0) {
1044 server_port = (int) strtol(server_port_str, NULL, 0);
1045 if (server_port <= 0 || server_port > 65535) {
1046 fprintf(stderr,
1047 "adb: port number must be a positive number less than 65536. Got \"%s\"\n",
1048 server_port_str);
1049 return usage();
1050 }
1051 } else {
1052 fprintf(stderr,
1053 "adb: port number must be a positive number less than 65536. Got empty string.\n");
1054 return usage();
1055 }
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001056 } else {
1057 /* out of recognized modifiers and flags */
1058 break;
1059 }
1060 argc--;
1061 argv++;
1062 }
1063
1064 adb_set_transport(ttype, serial);
Stefan Hilzingera84a42e2010-04-19 12:21:12 +01001065 adb_set_tcp_specifics(server_port);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001066
David 'Digit' Turner305b4b02011-01-31 14:23:56 +01001067 if (is_server) {
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001068 if (no_daemon || is_daemon) {
Stefan Hilzingera84a42e2010-04-19 12:21:12 +01001069 r = adb_main(is_daemon, server_port);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001070 } else {
Stefan Hilzingera84a42e2010-04-19 12:21:12 +01001071 r = launch_server(server_port);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001072 }
Riley Andrews98f58e82014-12-05 17:37:24 -08001073 if (r) {
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001074 fprintf(stderr,"* could not start server *\n");
1075 }
1076 return r;
1077 }
1078
Riley Andrews98f58e82014-12-05 17:37:24 -08001079 if (argc == 0) {
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001080 return usage();
1081 }
1082
Riley Andrewsc8514c82014-12-05 17:32:46 -08001083 /* handle wait-for-* prefix */
1084 if (!strncmp(argv[0], "wait-for-", strlen("wait-for-"))) {
Dan Albertbac34742015-02-25 17:51:28 -08001085 const char* service = argv[0];
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001086
Elliott Hughesaceb9c02015-05-04 19:29:32 -07001087 if (!wait_for_device(service, ttype, serial)) {
Riley Andrewsc8514c82014-12-05 17:32:46 -08001088 return 1;
1089 }
1090
Elliott Hughesaceb9c02015-05-04 19:29:32 -07001091 // Allow a command to be run after wait-for-device,
1092 // e.g. 'adb wait-for-device shell'.
Riley Andrewsc8514c82014-12-05 17:32:46 -08001093 if (argc == 1) {
1094 return 0;
1095 }
1096
1097 /* Fall through */
1098 argc--;
1099 argv++;
1100 }
1101
1102 /* adb_connect() commands */
Riley Andrews98f58e82014-12-05 17:37:24 -08001103 if (!strcmp(argv[0], "devices")) {
Dan Albertbac34742015-02-25 17:51:28 -08001104 const char *listopt;
Elliott Hughesf1a58f82015-04-29 12:28:13 -07001105 if (argc < 2) {
Scott Andersone109d262012-04-20 11:21:14 -07001106 listopt = "";
Elliott Hughesf1a58f82015-04-29 12:28:13 -07001107 } else if (argc == 2 && !strcmp(argv[1], "-l")) {
Scott Andersone109d262012-04-20 11:21:14 -07001108 listopt = argv[1];
Elliott Hughesf1a58f82015-04-29 12:28:13 -07001109 } else {
Scott Andersone109d262012-04-20 11:21:14 -07001110 fprintf(stderr, "Usage: adb devices [-l]\n");
1111 return 1;
1112 }
Elliott Hughesf1a58f82015-04-29 12:28:13 -07001113
1114 std::string query = android::base::StringPrintf("host:%s%s", argv[0], listopt);
1115 printf("List of devices attached\n");
1116 return adb_query_command(query);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001117 }
Riley Andrewsc8514c82014-12-05 17:32:46 -08001118 else if (!strcmp(argv[0], "connect")) {
Mike Lockwoodff196702009-08-24 15:58:40 -07001119 if (argc != 2) {
Mike Lockwoodcbbe79a2010-05-24 10:44:35 -04001120 fprintf(stderr, "Usage: adb connect <host>[:<port>]\n");
Mike Lockwoodff196702009-08-24 15:58:40 -07001121 return 1;
1122 }
Elliott Hughesf1a58f82015-04-29 12:28:13 -07001123
1124 std::string query = android::base::StringPrintf("host:connect:%s", argv[1]);
1125 return adb_query_command(query);
Mike Lockwoodcbbe79a2010-05-24 10:44:35 -04001126 }
Riley Andrewsc8514c82014-12-05 17:32:46 -08001127 else if (!strcmp(argv[0], "disconnect")) {
Mike Lockwoodcbbe79a2010-05-24 10:44:35 -04001128 if (argc > 2) {
1129 fprintf(stderr, "Usage: adb disconnect [<host>[:<port>]]\n");
1130 return 1;
1131 }
Elliott Hughesf1a58f82015-04-29 12:28:13 -07001132
1133 std::string query = android::base::StringPrintf("host:disconnect:%s",
1134 (argc == 2) ? argv[1] : "");
1135 return adb_query_command(query);
Mike Lockwoodff196702009-08-24 15:58:40 -07001136 }
Riley Andrewsc8514c82014-12-05 17:32:46 -08001137 else if (!strcmp(argv[0], "emu")) {
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001138 return adb_send_emulator_command(argc, argv);
1139 }
Riley Andrewsc8514c82014-12-05 17:32:46 -08001140 else if (!strcmp(argv[0], "shell") || !strcmp(argv[0], "hell")) {
Daniel Sandlerff91ab82010-08-19 01:10:18 -04001141 char h = (argv[0][0] == 'h');
1142
1143 if (h) {
1144 printf("\x1b[41;33m");
1145 fflush(stdout);
1146 }
1147
Riley Andrews98f58e82014-12-05 17:37:24 -08001148 if (argc < 2) {
JP Abgrall408fa572011-03-16 15:57:42 -07001149 D("starting interactive shell\n");
Daniel Sandlerff91ab82010-08-19 01:10:18 -04001150 r = interactive_shell();
1151 if (h) {
1152 printf("\x1b[0m");
1153 fflush(stdout);
1154 }
1155 return r;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001156 }
1157
Elliott Hughes2baae3a2015-04-17 10:59:34 -07001158 std::string cmd = "shell:";
Elliott Hughesaceb9c02015-05-04 19:29:32 -07001159 --argc;
1160 ++argv;
Jeff Sharkey5d9d4342014-05-26 18:30:43 -07001161 while (argc-- > 0) {
Elliott Hughesaceb9c02015-05-04 19:29:32 -07001162 // We don't escape here, just like ssh(1). http://b/20564385.
1163 cmd += *argv++;
1164 if (*argv) cmd += " ";
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001165 }
1166
Elliott Hughes2baae3a2015-04-17 10:59:34 -07001167 while (true) {
1168 D("interactive shell loop. cmd=%s\n", cmd.c_str());
Elliott Hughes71aeb792015-04-29 08:35:59 -07001169 std::string error;
Elliott Hughesf1a58f82015-04-29 12:28:13 -07001170 int fd = adb_connect(cmd, &error);
Elliott Hughes2baae3a2015-04-17 10:59:34 -07001171 int r;
Riley Andrews98f58e82014-12-05 17:37:24 -08001172 if (fd >= 0) {
JP Abgrall408fa572011-03-16 15:57:42 -07001173 D("about to read_and_dump(fd=%d)\n", fd);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001174 read_and_dump(fd);
JP Abgrall408fa572011-03-16 15:57:42 -07001175 D("read_and_dump() done.\n");
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001176 adb_close(fd);
1177 r = 0;
1178 } else {
Elliott Hughes71aeb792015-04-29 08:35:59 -07001179 fprintf(stderr,"error: %s\n", error.c_str());
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001180 r = -1;
1181 }
1182
Riley Andrews98f58e82014-12-05 17:37:24 -08001183 if (persist) {
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001184 fprintf(stderr,"\n- waiting for device -\n");
1185 adb_sleep_ms(1000);
Elliott Hughesaceb9c02015-05-04 19:29:32 -07001186 wait_for_device("wait-for-device", ttype, serial);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001187 } else {
Daniel Sandlerff91ab82010-08-19 01:10:18 -04001188 if (h) {
1189 printf("\x1b[0m");
1190 fflush(stdout);
1191 }
JP Abgrall408fa572011-03-16 15:57:42 -07001192 D("interactive shell loop. return r=%d\n", r);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001193 return r;
1194 }
1195 }
1196 }
Riley Andrewsc8514c82014-12-05 17:32:46 -08001197 else if (!strcmp(argv[0], "exec-in") || !strcmp(argv[0], "exec-out")) {
Jeff Sharkey5d9d4342014-05-26 18:30:43 -07001198 int exec_in = !strcmp(argv[0], "exec-in");
Jeff Sharkey5d9d4342014-05-26 18:30:43 -07001199
Elliott Hughes2baae3a2015-04-17 10:59:34 -07001200 std::string cmd = "exec:";
1201 cmd += argv[1];
Jeff Sharkey5d9d4342014-05-26 18:30:43 -07001202 argc -= 2;
1203 argv += 2;
1204 while (argc-- > 0) {
Elliott Hughes6c34bba2015-04-17 20:11:08 -07001205 cmd += " " + escape_arg(*argv++);
Jeff Sharkey5d9d4342014-05-26 18:30:43 -07001206 }
1207
Elliott Hughes71aeb792015-04-29 08:35:59 -07001208 std::string error;
Elliott Hughesf1a58f82015-04-29 12:28:13 -07001209 int fd = adb_connect(cmd, &error);
Jeff Sharkey5d9d4342014-05-26 18:30:43 -07001210 if (fd < 0) {
Elliott Hughes71aeb792015-04-29 08:35:59 -07001211 fprintf(stderr, "error: %s\n", error.c_str());
Jeff Sharkey5d9d4342014-05-26 18:30:43 -07001212 return -1;
1213 }
1214
1215 if (exec_in) {
1216 copy_to_file(STDIN_FILENO, fd);
1217 } else {
1218 copy_to_file(fd, STDOUT_FILENO);
1219 }
1220
1221 adb_close(fd);
1222 return 0;
1223 }
Riley Andrewsc8514c82014-12-05 17:32:46 -08001224 else if (!strcmp(argv[0], "kill-server")) {
Elliott Hughes71aeb792015-04-29 08:35:59 -07001225 std::string error;
1226 int fd = _adb_connect("host:kill", &error);
Riley Andrews98f58e82014-12-05 17:37:24 -08001227 if (fd == -1) {
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001228 fprintf(stderr,"* server not running *\n");
1229 return 1;
1230 }
1231 return 0;
1232 }
Riley Andrewsc8514c82014-12-05 17:32:46 -08001233 else if (!strcmp(argv[0], "sideload")) {
1234 if (argc != 2) return usage();
Doug Zongker71fe5842014-06-26 15:35:36 -07001235 if (adb_sideload_host(argv[1])) {
Doug Zongker447f0612012-01-09 14:54:53 -08001236 return 1;
1237 } else {
1238 return 0;
1239 }
1240 }
Riley Andrewsc8514c82014-12-05 17:32:46 -08001241 else if (!strcmp(argv[0], "remount") ||
1242 !strcmp(argv[0], "reboot") ||
1243 !strcmp(argv[0], "reboot-bootloader") ||
1244 !strcmp(argv[0], "tcpip") ||
1245 !strcmp(argv[0], "usb") ||
1246 !strcmp(argv[0], "root") ||
Dan Pasanen98858812014-10-06 12:57:20 -05001247 !strcmp(argv[0], "unroot") ||
Riley Andrewsc8514c82014-12-05 17:32:46 -08001248 !strcmp(argv[0], "disable-verity") ||
1249 !strcmp(argv[0], "enable-verity")) {
Elliott Hughes207ddb22015-05-07 23:37:40 -07001250 std::string command;
Tao Bao175b7bb2015-03-29 11:22:34 -07001251 if (!strcmp(argv[0], "reboot-bootloader")) {
Elliott Hughes207ddb22015-05-07 23:37:40 -07001252 command = "reboot:bootloader";
Tao Bao175b7bb2015-03-29 11:22:34 -07001253 } else if (argc > 1) {
Elliott Hughes207ddb22015-05-07 23:37:40 -07001254 command = android::base::StringPrintf("%s:%s", argv[0], argv[1]);
Tao Bao175b7bb2015-03-29 11:22:34 -07001255 } else {
Elliott Hughes207ddb22015-05-07 23:37:40 -07001256 command = android::base::StringPrintf("%s:", argv[0]);
The Android Open Source Projecte037fd72009-03-13 13:04:37 -07001257 }
Tao Bao175b7bb2015-03-29 11:22:34 -07001258 return adb_connect_command(command);
The Android Open Source Projecte037fd72009-03-13 13:04:37 -07001259 }
Riley Andrewsc8514c82014-12-05 17:32:46 -08001260 else if (!strcmp(argv[0], "bugreport")) {
Dan Egnorc130ea72010-01-20 13:50:36 -08001261 if (argc != 1) return usage();
Elliott Hughesaceb9c02015-05-04 19:29:32 -07001262 return send_shell_command(ttype, serial, "shell:bugreport");
Mike Lockwoodf56d1b52009-09-03 14:54:58 -04001263 }
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001264 /* adb_command() wrapper commands */
Riley Andrewsc8514c82014-12-05 17:32:46 -08001265 else if (!strcmp(argv[0], "forward") || !strcmp(argv[0], "reverse")) {
Elliott Hughese1a55002015-05-01 17:04:38 -07001266 std::string cmd;
David 'Digit' Turner0d82fbf2012-11-14 15:01:55 +01001267 char host_prefix[64];
David 'Digit' Turner25258692013-03-21 21:07:42 +01001268 char reverse = (char) !strcmp(argv[0], "reverse");
David 'Digit' Turner0d82fbf2012-11-14 15:01:55 +01001269 char remove = 0;
1270 char remove_all = 0;
1271 char list = 0;
1272 char no_rebind = 0;
1273
1274 // Parse options here.
1275 while (argc > 1 && argv[1][0] == '-') {
1276 if (!strcmp(argv[1], "--list"))
1277 list = 1;
1278 else if (!strcmp(argv[1], "--remove"))
1279 remove = 1;
1280 else if (!strcmp(argv[1], "--remove-all"))
1281 remove_all = 1;
1282 else if (!strcmp(argv[1], "--no-rebind"))
1283 no_rebind = 1;
1284 else {
1285 return usage();
1286 }
1287 argc--;
1288 argv++;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001289 }
David 'Digit' Turner0d82fbf2012-11-14 15:01:55 +01001290
1291 // Ensure we can only use one option at a time.
1292 if (list + remove + remove_all + no_rebind > 1) {
1293 return usage();
1294 }
1295
1296 // Determine the <host-prefix> for this command.
David 'Digit' Turner25258692013-03-21 21:07:42 +01001297 if (reverse) {
1298 snprintf(host_prefix, sizeof host_prefix, "reverse");
David 'Digit' Turner0d82fbf2012-11-14 15:01:55 +01001299 } else {
David 'Digit' Turner25258692013-03-21 21:07:42 +01001300 if (serial) {
1301 snprintf(host_prefix, sizeof host_prefix, "host-serial:%s",
1302 serial);
1303 } else if (ttype == kTransportUsb) {
1304 snprintf(host_prefix, sizeof host_prefix, "host-usb");
1305 } else if (ttype == kTransportLocal) {
1306 snprintf(host_prefix, sizeof host_prefix, "host-local");
1307 } else {
1308 snprintf(host_prefix, sizeof host_prefix, "host");
1309 }
David 'Digit' Turner0d82fbf2012-11-14 15:01:55 +01001310 }
1311
1312 // Implement forward --list
1313 if (list) {
Elliott Hughesf1a58f82015-04-29 12:28:13 -07001314 if (argc != 1) {
David 'Digit' Turner0d82fbf2012-11-14 15:01:55 +01001315 return usage();
David 'Digit' Turner0d82fbf2012-11-14 15:01:55 +01001316 }
Elliott Hughesf1a58f82015-04-29 12:28:13 -07001317
1318 std::string query = android::base::StringPrintf("%s:list-forward", host_prefix);
1319 return adb_query_command(query);
David 'Digit' Turner0d82fbf2012-11-14 15:01:55 +01001320 }
1321
1322 // Implement forward --remove-all
1323 else if (remove_all) {
Elliott Hughese1a55002015-05-01 17:04:38 -07001324 if (argc != 1) return usage();
1325 cmd = android::base::StringPrintf("%s:killforward-all", host_prefix);
David 'Digit' Turner0d82fbf2012-11-14 15:01:55 +01001326 }
1327
1328 // Implement forward --remove <local>
1329 else if (remove) {
Elliott Hughese1a55002015-05-01 17:04:38 -07001330 if (argc != 2) return usage();
1331 cmd = android::base::StringPrintf("%s:killforward:%s", host_prefix, argv[1]);
David 'Digit' Turner0d82fbf2012-11-14 15:01:55 +01001332 }
1333 // Or implement one of:
1334 // forward <local> <remote>
1335 // forward --no-rebind <local> <remote>
Elliott Hughese1a55002015-05-01 17:04:38 -07001336 else {
1337 if (argc != 3) return usage();
1338 const char* command = no_rebind ? "forward:norebind" : "forward";
1339 cmd = android::base::StringPrintf("%s:%s:%s;%s", host_prefix, command, argv[1], argv[2]);
David 'Digit' Turner0d82fbf2012-11-14 15:01:55 +01001340 }
1341
Elliott Hughes71aeb792015-04-29 08:35:59 -07001342 std::string error;
Elliott Hughese1a55002015-05-01 17:04:38 -07001343 if (adb_command(cmd, &error)) {
1344 fprintf(stderr, "error: %s\n", error.c_str());
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001345 return 1;
1346 }
1347 return 0;
1348 }
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001349 /* do_sync_*() commands */
Riley Andrewsc8514c82014-12-05 17:32:46 -08001350 else if (!strcmp(argv[0], "ls")) {
1351 if (argc != 2) return usage();
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001352 return do_sync_ls(argv[1]);
1353 }
Riley Andrewsc8514c82014-12-05 17:32:46 -08001354 else if (!strcmp(argv[0], "push")) {
Mark Lindner76f2a932014-03-11 17:55:59 -07001355 int show_progress = 0;
Lajos Molnarde8ff4a2013-04-19 12:41:09 -07001356 int copy_attrs = 0; // unused
Mark Lindner76f2a932014-03-11 17:55:59 -07001357 const char* lpath = NULL, *rpath = NULL;
1358
Lajos Molnarde8ff4a2013-04-19 12:41:09 -07001359 parse_push_pull_args(&argv[1], argc - 1, &lpath, &rpath, &show_progress, &copy_attrs);
Mark Lindner76f2a932014-03-11 17:55:59 -07001360
1361 if ((lpath != NULL) && (rpath != NULL)) {
Jeff Sharkey960df972014-06-09 17:30:57 -07001362 return do_sync_push(lpath, rpath, show_progress);
Mark Lindner76f2a932014-03-11 17:55:59 -07001363 }
1364
1365 return usage();
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001366 }
Riley Andrewsc8514c82014-12-05 17:32:46 -08001367 else if (!strcmp(argv[0], "pull")) {
Mark Lindner76f2a932014-03-11 17:55:59 -07001368 int show_progress = 0;
Lajos Molnarde8ff4a2013-04-19 12:41:09 -07001369 int copy_attrs = 0;
Mark Lindner76f2a932014-03-11 17:55:59 -07001370 const char* rpath = NULL, *lpath = ".";
1371
Lajos Molnarde8ff4a2013-04-19 12:41:09 -07001372 parse_push_pull_args(&argv[1], argc - 1, &rpath, &lpath, &show_progress, &copy_attrs);
Mark Lindner76f2a932014-03-11 17:55:59 -07001373
1374 if (rpath != NULL) {
Lajos Molnarde8ff4a2013-04-19 12:41:09 -07001375 return do_sync_pull(rpath, lpath, show_progress, copy_attrs);
Joe Onorato00c0eea2010-01-05 13:42:25 -08001376 }
Mark Lindner76f2a932014-03-11 17:55:59 -07001377
1378 return usage();
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001379 }
Riley Andrewsc8514c82014-12-05 17:32:46 -08001380 else if (!strcmp(argv[0], "install")) {
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001381 if (argc < 2) return usage();
1382 return install_app(ttype, serial, argc, argv);
1383 }
Riley Andrewsc8514c82014-12-05 17:32:46 -08001384 else if (!strcmp(argv[0], "install-multiple")) {
Jeff Sharkey960df972014-06-09 17:30:57 -07001385 if (argc < 2) return usage();
1386 return install_multiple_app(ttype, serial, argc, argv);
1387 }
Riley Andrewsc8514c82014-12-05 17:32:46 -08001388 else if (!strcmp(argv[0], "uninstall")) {
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001389 if (argc < 2) return usage();
1390 return uninstall_app(ttype, serial, argc, argv);
1391 }
Riley Andrewsc8514c82014-12-05 17:32:46 -08001392 else if (!strcmp(argv[0], "sync")) {
Elliott Hughesd236d072015-04-21 10:17:07 -07001393 std::string src;
Elliott Hughes58305772015-04-17 13:57:15 -07001394 bool list_only = false;
Riley Andrews98f58e82014-12-05 17:37:24 -08001395 if (argc < 2) {
Elliott Hughes58305772015-04-17 13:57:15 -07001396 // No local path was specified.
Elliott Hughesd236d072015-04-21 10:17:07 -07001397 src = "";
Anthony Newnam705c9442010-02-22 08:36:49 -06001398 } else if (argc >= 2 && strcmp(argv[1], "-l") == 0) {
Elliott Hughesd236d072015-04-21 10:17:07 -07001399 list_only = true;
Anthony Newnam705c9442010-02-22 08:36:49 -06001400 if (argc == 3) {
Elliott Hughesd236d072015-04-21 10:17:07 -07001401 src = argv[2];
Anthony Newnam705c9442010-02-22 08:36:49 -06001402 } else {
Elliott Hughesd236d072015-04-21 10:17:07 -07001403 src = "";
Anthony Newnam705c9442010-02-22 08:36:49 -06001404 }
Riley Andrews98f58e82014-12-05 17:37:24 -08001405 } else if (argc == 2) {
Elliott Hughes58305772015-04-17 13:57:15 -07001406 // A local path or "android"/"data" arg was specified.
Elliott Hughesd236d072015-04-21 10:17:07 -07001407 src = argv[1];
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001408 } else {
1409 return usage();
1410 }
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001411
Elliott Hughesd236d072015-04-21 10:17:07 -07001412 if (src != "" &&
1413 src != "system" && src != "data" && src != "vendor" && src != "oem") {
Elliott Hughes58305772015-04-17 13:57:15 -07001414 return usage();
1415 }
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001416
Elliott Hughes58305772015-04-17 13:57:15 -07001417 std::string system_src_path = product_file("system");
1418 std::string data_src_path = product_file("data");
1419 std::string vendor_src_path = product_file("vendor");
1420 std::string oem_src_path = product_file("oem");
Elliott Hughes58305772015-04-17 13:57:15 -07001421
1422 int rc = 0;
Elliott Hughesd236d072015-04-21 10:17:07 -07001423 if (rc == 0 && (src.empty() || src == "system")) {
1424 rc = do_sync_sync(system_src_path, "/system", list_only);
Elliott Hughes58305772015-04-17 13:57:15 -07001425 }
Elliott Hughesd236d072015-04-21 10:17:07 -07001426 if (rc == 0 && (src.empty() || src == "vendor") && directory_exists(vendor_src_path)) {
1427 rc = do_sync_sync(vendor_src_path, "/vendor", list_only);
Elliott Hughes58305772015-04-17 13:57:15 -07001428 }
Elliott Hughesd236d072015-04-21 10:17:07 -07001429 if (rc == 0 && (src.empty() || src == "oem") && directory_exists(oem_src_path)) {
1430 rc = do_sync_sync(oem_src_path, "/oem", list_only);
Elliott Hughes58305772015-04-17 13:57:15 -07001431 }
Elliott Hughesd236d072015-04-21 10:17:07 -07001432 if (rc == 0 && (src.empty() || src == "data")) {
1433 rc = do_sync_sync(data_src_path, "/data", list_only);
Elliott Hughes58305772015-04-17 13:57:15 -07001434 }
1435 return rc;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001436 }
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001437 /* passthrough commands */
Riley Andrewsc8514c82014-12-05 17:32:46 -08001438 else if (!strcmp(argv[0],"get-state") ||
Scott Andersone109d262012-04-20 11:21:14 -07001439 !strcmp(argv[0],"get-serialno") ||
1440 !strcmp(argv[0],"get-devpath"))
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001441 {
Elliott Hughesf1a58f82015-04-29 12:28:13 -07001442 return adb_query_command(format_host_command(argv[0], ttype, serial));
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001443 }
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001444 /* other commands */
Riley Andrewsc8514c82014-12-05 17:32:46 -08001445 else if (!strcmp(argv[0],"logcat") || !strcmp(argv[0],"lolcat") || !strcmp(argv[0],"longcat")) {
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001446 return logcat(ttype, serial, argc, argv);
1447 }
Riley Andrewsc8514c82014-12-05 17:32:46 -08001448 else if (!strcmp(argv[0],"ppp")) {
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001449 return ppp(argc, argv);
1450 }
Riley Andrewsc8514c82014-12-05 17:32:46 -08001451 else if (!strcmp(argv[0], "start-server")) {
Elliott Hughes71aeb792015-04-29 08:35:59 -07001452 std::string error;
1453 return adb_connect("host:start-server", &error);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001454 }
Riley Andrewsc8514c82014-12-05 17:32:46 -08001455 else if (!strcmp(argv[0], "backup")) {
Christopher Tated2f54152011-04-21 12:53:28 -07001456 return backup(argc, argv);
1457 }
Riley Andrewsc8514c82014-12-05 17:32:46 -08001458 else if (!strcmp(argv[0], "restore")) {
Christopher Tate702967a2011-05-17 15:52:54 -07001459 return restore(argc, argv);
1460 }
Riley Andrewsc8514c82014-12-05 17:32:46 -08001461 else if (!strcmp(argv[0], "keygen")) {
Nick Kralevichbea3f9c2014-11-13 15:17:29 -08001462 if (argc < 2) return usage();
1463 return adb_auth_keygen(argv[1]);
1464 }
Riley Andrewsc8514c82014-12-05 17:32:46 -08001465 else if (!strcmp(argv[0], "jdwp")) {
Tao Bao175b7bb2015-03-29 11:22:34 -07001466 return adb_connect_command("jdwp");
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001467 }
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001468 /* "adb /?" is a common idiom under Windows */
Riley Andrewsc8514c82014-12-05 17:32:46 -08001469 else if (!strcmp(argv[0], "help") || !strcmp(argv[0], "/?")) {
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001470 help();
1471 return 0;
1472 }
Riley Andrewsc8514c82014-12-05 17:32:46 -08001473 else if (!strcmp(argv[0], "version")) {
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001474 version(stdout);
1475 return 0;
1476 }
1477
1478 usage();
1479 return 1;
1480}
1481
Dan Albertbac34742015-02-25 17:51:28 -08001482static int pm_command(transport_type transport, const char* serial,
1483 int argc, const char** argv)
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001484{
Elliott Hughes2baae3a2015-04-17 10:59:34 -07001485 std::string cmd = "shell:pm";
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001486
Elliott Hughes2baae3a2015-04-17 10:59:34 -07001487 while (argc-- > 0) {
Elliott Hughes6c34bba2015-04-17 20:11:08 -07001488 cmd += " " + escape_arg(*argv++);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001489 }
1490
Elliott Hughes15551472015-04-21 17:58:55 -07001491 return send_shell_command(transport, serial, cmd);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001492}
1493
Elliott Hughes58305772015-04-17 13:57:15 -07001494static int uninstall_app(transport_type transport, const char* serial, int argc,
1495 const char** argv)
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001496{
1497 /* if the user choose the -k option, we refuse to do it until devices are
1498 out with the option to uninstall the remaining data somehow (adb/ui) */
1499 if (argc == 3 && strcmp(argv[1], "-k") == 0)
1500 {
1501 printf(
1502 "The -k option uninstalls the application while retaining the data/cache.\n"
1503 "At the moment, there is no way to remove the remaining data.\n"
1504 "You will have to reinstall the application with the same signature, and fully uninstall it.\n"
1505 "If you truly wish to continue, execute 'adb shell pm uninstall -k %s'\n", argv[2]);
1506 return -1;
1507 }
1508
1509 /* 'adb uninstall' takes the same arguments as 'pm uninstall' on device */
1510 return pm_command(transport, serial, argc, argv);
1511}
1512
Dan Albertbac34742015-02-25 17:51:28 -08001513static int delete_file(transport_type transport, const char* serial, char* filename)
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001514{
Elliott Hughes2baae3a2015-04-17 10:59:34 -07001515 std::string cmd = "shell:rm -f " + escape_arg(filename);
Elliott Hughes15551472015-04-21 17:58:55 -07001516 return send_shell_command(transport, serial, cmd);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001517}
1518
Kenny Root597ea5b2011-08-05 11:19:45 -07001519static const char* get_basename(const char* filename)
1520{
1521 const char* basename = adb_dirstop(filename);
1522 if (basename) {
1523 basename++;
1524 return basename;
1525 } else {
1526 return filename;
1527 }
1528}
1529
Elliott Hughes58305772015-04-17 13:57:15 -07001530static int install_app(transport_type transport, const char* serial, int argc,
1531 const char** argv)
Kenny Root597ea5b2011-08-05 11:19:45 -07001532{
1533 static const char *const DATA_DEST = "/data/local/tmp/%s";
1534 static const char *const SD_DEST = "/sdcard/tmp/%s";
1535 const char* where = DATA_DEST;
Kenny Root597ea5b2011-08-05 11:19:45 -07001536 int i;
Jeff Sharkey960df972014-06-09 17:30:57 -07001537 struct stat sb;
Kenny Root597ea5b2011-08-05 11:19:45 -07001538
1539 for (i = 1; i < argc; i++) {
Jeff Sharkey960df972014-06-09 17:30:57 -07001540 if (!strcmp(argv[i], "-s")) {
Kenny Root597ea5b2011-08-05 11:19:45 -07001541 where = SD_DEST;
1542 }
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001543 }
1544
Jeff Sharkey960df972014-06-09 17:30:57 -07001545 // Find last APK argument.
1546 // All other arguments passed through verbatim.
1547 int last_apk = -1;
1548 for (i = argc - 1; i >= 0; i--) {
Dan Albertbac34742015-02-25 17:51:28 -08001549 const char* file = argv[i];
Jeff Sharkey960df972014-06-09 17:30:57 -07001550 char* dot = strrchr(file, '.');
1551 if (dot && !strcasecmp(dot, ".apk")) {
1552 if (stat(file, &sb) == -1 || !S_ISREG(sb.st_mode)) {
1553 fprintf(stderr, "Invalid APK file: %s\n", file);
1554 return -1;
1555 }
1556
1557 last_apk = i;
1558 break;
1559 }
Kenny Root597ea5b2011-08-05 11:19:45 -07001560 }
1561
Jeff Sharkey960df972014-06-09 17:30:57 -07001562 if (last_apk == -1) {
1563 fprintf(stderr, "Missing APK file\n");
1564 return -1;
Kenny Root597ea5b2011-08-05 11:19:45 -07001565 }
1566
Dan Albertbac34742015-02-25 17:51:28 -08001567 const char* apk_file = argv[last_apk];
Jeff Sharkey960df972014-06-09 17:30:57 -07001568 char apk_dest[PATH_MAX];
Kenny Root597ea5b2011-08-05 11:19:45 -07001569 snprintf(apk_dest, sizeof apk_dest, where, get_basename(apk_file));
Jeff Sharkey960df972014-06-09 17:30:57 -07001570 int err = do_sync_push(apk_file, apk_dest, 0 /* no show progress */);
Kenny Root597ea5b2011-08-05 11:19:45 -07001571 if (err) {
Kenny Root60733e92012-03-26 16:14:02 -07001572 goto cleanup_apk;
Kenny Root597ea5b2011-08-05 11:19:45 -07001573 } else {
Jeff Sharkey960df972014-06-09 17:30:57 -07001574 argv[last_apk] = apk_dest; /* destination name, not source location */
Kenny Root597ea5b2011-08-05 11:19:45 -07001575 }
1576
Elliott Hughes15551472015-04-21 17:58:55 -07001577 err = pm_command(transport, serial, argc, argv);
Kenny Root597ea5b2011-08-05 11:19:45 -07001578
Kenny Root60733e92012-03-26 16:14:02 -07001579cleanup_apk:
Jeff Sharkey960df972014-06-09 17:30:57 -07001580 delete_file(transport, serial, apk_dest);
1581 return err;
1582}
1583
Elliott Hughes58305772015-04-17 13:57:15 -07001584static int install_multiple_app(transport_type transport, const char* serial, int argc,
1585 const char** argv)
Jeff Sharkey960df972014-06-09 17:30:57 -07001586{
Jeff Sharkey960df972014-06-09 17:30:57 -07001587 int i;
1588 struct stat sb;
Elliott Hughes2940ccf2015-04-17 14:07:52 -07001589 uint64_t total_size = 0;
Jeff Sharkey960df972014-06-09 17:30:57 -07001590
1591 // Find all APK arguments starting at end.
1592 // All other arguments passed through verbatim.
1593 int first_apk = -1;
1594 for (i = argc - 1; i >= 0; i--) {
Dan Albertbac34742015-02-25 17:51:28 -08001595 const char* file = argv[i];
Jeff Sharkey960df972014-06-09 17:30:57 -07001596 char* dot = strrchr(file, '.');
1597 if (dot && !strcasecmp(dot, ".apk")) {
1598 if (stat(file, &sb) == -1 || !S_ISREG(sb.st_mode)) {
1599 fprintf(stderr, "Invalid APK file: %s\n", file);
1600 return -1;
1601 }
1602
1603 total_size += sb.st_size;
1604 first_apk = i;
1605 } else {
1606 break;
1607 }
Kenny Root597ea5b2011-08-05 11:19:45 -07001608 }
1609
Jeff Sharkey960df972014-06-09 17:30:57 -07001610 if (first_apk == -1) {
1611 fprintf(stderr, "Missing APK file\n");
1612 return 1;
1613 }
Kenny Root597ea5b2011-08-05 11:19:45 -07001614
Elliott Hughes53daee62015-04-19 13:17:01 -07001615#if defined(_WIN32) // Remove when we're using clang for Win32.
1616 std::string cmd = android::base::StringPrintf("exec:pm install-create -S %u", (unsigned) total_size);
1617#else
Elliott Hughes2940ccf2015-04-17 14:07:52 -07001618 std::string cmd = android::base::StringPrintf("exec:pm install-create -S %" PRIu64, total_size);
Elliott Hughes53daee62015-04-19 13:17:01 -07001619#endif
Jeff Sharkey960df972014-06-09 17:30:57 -07001620 for (i = 1; i < first_apk; i++) {
Elliott Hughes6c34bba2015-04-17 20:11:08 -07001621 cmd += " " + escape_arg(argv[i]);
Jeff Sharkey960df972014-06-09 17:30:57 -07001622 }
1623
1624 // Create install session
Elliott Hughes71aeb792015-04-29 08:35:59 -07001625 std::string error;
Elliott Hughesf1a58f82015-04-29 12:28:13 -07001626 int fd = adb_connect(cmd, &error);
Jeff Sharkey960df972014-06-09 17:30:57 -07001627 if (fd < 0) {
Elliott Hughes71aeb792015-04-29 08:35:59 -07001628 fprintf(stderr, "Connect error for create: %s\n", error.c_str());
Jeff Sharkey960df972014-06-09 17:30:57 -07001629 return -1;
1630 }
Elliott Hughes2baae3a2015-04-17 10:59:34 -07001631 char buf[BUFSIZ];
Jeff Sharkey960df972014-06-09 17:30:57 -07001632 read_status_line(fd, buf, sizeof(buf));
1633 adb_close(fd);
1634
1635 int session_id = -1;
1636 if (!strncmp("Success", buf, 7)) {
1637 char* start = strrchr(buf, '[');
1638 char* end = strrchr(buf, ']');
1639 if (start && end) {
1640 *end = '\0';
1641 session_id = strtol(start + 1, NULL, 10);
1642 }
1643 }
1644 if (session_id < 0) {
1645 fprintf(stderr, "Failed to create session\n");
Christopher Tate71bbc672014-07-14 16:45:13 -07001646 fputs(buf, stderr);
Jeff Sharkey960df972014-06-09 17:30:57 -07001647 return -1;
1648 }
1649
1650 // Valid session, now stream the APKs
1651 int success = 1;
1652 for (i = first_apk; i < argc; i++) {
Dan Albertbac34742015-02-25 17:51:28 -08001653 const char* file = argv[i];
Jeff Sharkey960df972014-06-09 17:30:57 -07001654 if (stat(file, &sb) == -1) {
1655 fprintf(stderr, "Failed to stat %s\n", file);
1656 success = 0;
1657 goto finalize_session;
1658 }
1659
Elliott Hughes53daee62015-04-19 13:17:01 -07001660#if defined(_WIN32) // Remove when we're using clang for Win32.
1661 std::string cmd = android::base::StringPrintf(
1662 "exec:pm install-write -S %u %d %d_%s -",
1663 (unsigned) sb.st_size, session_id, i, get_basename(file));
1664#else
Elliott Hughes2940ccf2015-04-17 14:07:52 -07001665 std::string cmd = android::base::StringPrintf(
1666 "exec:pm install-write -S %" PRIu64 " %d %d_%s -",
1667 static_cast<uint64_t>(sb.st_size), session_id, i, get_basename(file));
Elliott Hughes53daee62015-04-19 13:17:01 -07001668#endif
Jeff Sharkey960df972014-06-09 17:30:57 -07001669
1670 int localFd = adb_open(file, O_RDONLY);
1671 if (localFd < 0) {
Elliott Hughes71aeb792015-04-29 08:35:59 -07001672 fprintf(stderr, "Failed to open %s: %s\n", file, strerror(errno));
Jeff Sharkey960df972014-06-09 17:30:57 -07001673 success = 0;
1674 goto finalize_session;
1675 }
1676
Elliott Hughes71aeb792015-04-29 08:35:59 -07001677 std::string error;
Elliott Hughesf1a58f82015-04-29 12:28:13 -07001678 int remoteFd = adb_connect(cmd, &error);
Jeff Sharkey960df972014-06-09 17:30:57 -07001679 if (remoteFd < 0) {
Elliott Hughes71aeb792015-04-29 08:35:59 -07001680 fprintf(stderr, "Connect error for write: %s\n", error.c_str());
Jeff Sharkey960df972014-06-09 17:30:57 -07001681 adb_close(localFd);
1682 success = 0;
1683 goto finalize_session;
1684 }
1685
1686 copy_to_file(localFd, remoteFd);
1687 read_status_line(remoteFd, buf, sizeof(buf));
1688
1689 adb_close(localFd);
1690 adb_close(remoteFd);
1691
1692 if (strncmp("Success", buf, 7)) {
1693 fprintf(stderr, "Failed to write %s\n", file);
Christopher Tate71bbc672014-07-14 16:45:13 -07001694 fputs(buf, stderr);
Jeff Sharkey960df972014-06-09 17:30:57 -07001695 success = 0;
1696 goto finalize_session;
1697 }
1698 }
1699
1700finalize_session:
Jeff Sharkeyac77e1f2014-07-25 09:58:25 -07001701 // Commit session if we streamed everything okay; otherwise abandon
Elliott Hughesf1a58f82015-04-29 12:28:13 -07001702 std::string service =
1703 android::base::StringPrintf("exec:pm install-%s %d",
1704 success ? "commit" : "abandon", session_id);
1705 fd = adb_connect(service, &error);
Jeff Sharkey960df972014-06-09 17:30:57 -07001706 if (fd < 0) {
Elliott Hughes71aeb792015-04-29 08:35:59 -07001707 fprintf(stderr, "Connect error for finalize: %s\n", error.c_str());
Jeff Sharkey960df972014-06-09 17:30:57 -07001708 return -1;
1709 }
1710 read_status_line(fd, buf, sizeof(buf));
1711 adb_close(fd);
1712
1713 if (!strncmp("Success", buf, 7)) {
Christopher Tate71bbc672014-07-14 16:45:13 -07001714 fputs(buf, stderr);
Jeff Sharkey960df972014-06-09 17:30:57 -07001715 return 0;
1716 } else {
1717 fprintf(stderr, "Failed to finalize session\n");
Christopher Tate71bbc672014-07-14 16:45:13 -07001718 fputs(buf, stderr);
Jeff Sharkey960df972014-06-09 17:30:57 -07001719 return -1;
1720 }
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001721}