blob: b5015ea327115f33b8a1fcb45689bf30cb40fd9f [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"
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800204 " adb status-window - continuously print device status for a specified device\n"
Elliott Hughesec7a6672015-03-16 21:58:32 +0000205 " 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 -0700206 " adb reboot [bootloader|recovery]\n"
207 " - reboots the device, optionally into the bootloader or recovery program.\n"
208 " adb reboot sideload - reboots the device into the sideload mode in recovery program (adb root required).\n"
209 " adb reboot sideload-auto-reboot\n"
210 " - reboots into the sideload mode, then reboots automatically after the sideload regardless of the result.\n"
Romain Guy311add42009-12-14 14:42:17 -0800211 " adb reboot-bootloader - reboots the device into the bootloader\n"
Mike Lockwoodff196702009-08-24 15:58:40 -0700212 " adb root - restarts the adbd daemon with root permissions\n"
Dan Pasanen98858812014-10-06 12:57:20 -0500213 " adb unroot - restarts the adbd daemon without root permissions\n"
Romain Guy311add42009-12-14 14:42:17 -0800214 " adb usb - restarts the adbd daemon listening on USB\n"
Paul Lawrenceec900bb2014-10-09 14:22:49 +0000215 " 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 -0800216 "networking:\n"
217 " adb ppp <tty> [parameters] - Run PPP over USB.\n"
Kenny Rootc9891992009-06-08 14:40:30 -0500218 " Note: you should not automatically start a PPP connection.\n"
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800219 " <tty> refers to the tty for PPP stream. Eg. dev:/dev/omap_csmi_tty1\n"
220 " [parameters] - Eg. defaultroute debug dump local notty usepeerdns\n"
221 "\n"
222 "adb sync notes: adb sync [ <directory> ]\n"
223 " <localdir> can be interpreted in several ways:\n"
224 "\n"
Elliott Hughesec7a6672015-03-16 21:58:32 +0000225 " - 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 -0800226 "\n"
Elliott Hughesec7a6672015-03-16 21:58:32 +0000227 " - If it is \"system\", \"vendor\", \"oem\" or \"data\", only the corresponding partition\n"
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800228 " is updated.\n"
Timcd643152010-02-16 20:18:29 +0000229 "\n"
230 "environmental variables:\n"
231 " ADB_TRACE - Print debug information. A comma separated list of the following values\n"
232 " 1 or all, adb, sockets, packets, rwx, usb, sync, sysdeps, transport, jdwp\n"
233 " ANDROID_SERIAL - The serial number to connect to. -s takes priority over this if given.\n"
234 " 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 -0800235 );
236}
237
Elliott Hughes58305772015-04-17 13:57:15 -0700238static int usage() {
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800239 help();
240 return 1;
241}
242
Yabin Cuid325e862014-11-17 14:48:25 -0800243#if defined(_WIN32)
244
Elliott Hughesa2f2e562015-04-16 16:47:02 -0700245// Implemented in sysdeps_win32.cpp.
Spencer Low50184062015-03-01 15:06:21 -0800246void stdin_raw_init(int fd);
247void stdin_raw_restore(int fd);
Yabin Cuid325e862014-11-17 14:48:25 -0800248
249#else
Alistair Buxtondfa09fd2013-03-01 22:16:41 +0100250static termios g_saved_terminal_state;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800251
Alistair Buxtondfa09fd2013-03-01 22:16:41 +0100252static void stdin_raw_init(int fd) {
253 if (tcgetattr(fd, &g_saved_terminal_state)) return;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800254
Alistair Buxtondfa09fd2013-03-01 22:16:41 +0100255 termios tio;
256 if (tcgetattr(fd, &tio)) return;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800257
Alistair Buxtondfa09fd2013-03-01 22:16:41 +0100258 cfmakeraw(&tio);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800259
Alistair Buxtondfa09fd2013-03-01 22:16:41 +0100260 // No timeout but request at least one character per read.
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800261 tio.c_cc[VTIME] = 0;
262 tio.c_cc[VMIN] = 1;
263
Alistair Buxtondfa09fd2013-03-01 22:16:41 +0100264 tcsetattr(fd, TCSAFLUSH, &tio);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800265}
266
Alistair Buxtondfa09fd2013-03-01 22:16:41 +0100267static void stdin_raw_restore(int fd) {
268 tcsetattr(fd, TCSAFLUSH, &g_saved_terminal_state);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800269}
270#endif
271
272static void read_and_dump(int fd)
273{
274 char buf[4096];
275 int len;
276
277 while(fd >= 0) {
JP Abgrall408fa572011-03-16 15:57:42 -0700278 D("read_and_dump(): pre adb_read(fd=%d)\n", fd);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800279 len = adb_read(fd, buf, 4096);
JP Abgrall408fa572011-03-16 15:57:42 -0700280 D("read_and_dump(): post adb_read(fd=%d): len=%d\n", fd, len);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800281 if(len == 0) {
282 break;
283 }
284
285 if(len < 0) {
286 if(errno == EINTR) continue;
287 break;
288 }
Mike Lockwooddd6b36e2009-09-22 01:18:40 -0400289 fwrite(buf, 1, len, stdout);
290 fflush(stdout);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800291 }
292}
293
Jeff Sharkey960df972014-06-09 17:30:57 -0700294static void read_status_line(int fd, char* buf, size_t count)
295{
296 count--;
297 while (count > 0) {
298 int len = adb_read(fd, buf, count);
299 if (len == 0) {
300 break;
301 } else if (len < 0) {
302 if (errno == EINTR) continue;
303 break;
304 }
305
306 buf += len;
307 count -= len;
308 }
309 *buf = '\0';
310}
311
Christopher Tated2f54152011-04-21 12:53:28 -0700312static void copy_to_file(int inFd, int outFd) {
Christopher Tate5b811fa2011-06-10 11:38:37 -0700313 const size_t BUFSIZE = 32 * 1024;
314 char* buf = (char*) malloc(BUFSIZE);
Elliott Hughesdc3b4592015-04-21 19:39:52 -0700315 if (buf == nullptr) fatal("couldn't allocate buffer for copy_to_file");
Christopher Tated2f54152011-04-21 12:53:28 -0700316 int len;
Christopher Tatec9cd3b92011-06-01 17:56:23 -0700317 long total = 0;
Christopher Tated2f54152011-04-21 12:53:28 -0700318
319 D("copy_to_file(%d -> %d)\n", inFd, outFd);
Yabin Cuid325e862014-11-17 14:48:25 -0800320
Jeff Sharkey5d9d4342014-05-26 18:30:43 -0700321 if (inFd == STDIN_FILENO) {
322 stdin_raw_init(STDIN_FILENO);
323 }
Yabin Cuid325e862014-11-17 14:48:25 -0800324
Elliott Hughesa7090b92015-04-17 17:03:59 -0700325 while (true) {
Jeff Sharkey5d9d4342014-05-26 18:30:43 -0700326 if (inFd == STDIN_FILENO) {
327 len = unix_read(inFd, buf, BUFSIZE);
328 } else {
329 len = adb_read(inFd, buf, BUFSIZE);
330 }
Christopher Tated2f54152011-04-21 12:53:28 -0700331 if (len == 0) {
Christopher Tate5b811fa2011-06-10 11:38:37 -0700332 D("copy_to_file() : read 0 bytes; exiting\n");
Christopher Tated2f54152011-04-21 12:53:28 -0700333 break;
334 }
335 if (len < 0) {
Christopher Tate5b811fa2011-06-10 11:38:37 -0700336 if (errno == EINTR) {
337 D("copy_to_file() : EINTR, retrying\n");
338 continue;
339 }
Christopher Tated2f54152011-04-21 12:53:28 -0700340 D("copy_to_file() : error %d\n", errno);
341 break;
342 }
Jeff Sharkey5d9d4342014-05-26 18:30:43 -0700343 if (outFd == STDOUT_FILENO) {
344 fwrite(buf, 1, len, stdout);
345 fflush(stdout);
346 } else {
347 adb_write(outFd, buf, len);
348 }
Christopher Tatec9cd3b92011-06-01 17:56:23 -0700349 total += len;
Christopher Tated2f54152011-04-21 12:53:28 -0700350 }
Yabin Cuid325e862014-11-17 14:48:25 -0800351
Jeff Sharkey5d9d4342014-05-26 18:30:43 -0700352 if (inFd == STDIN_FILENO) {
353 stdin_raw_restore(STDIN_FILENO);
354 }
Yabin Cuid325e862014-11-17 14:48:25 -0800355
Christopher Tatec9cd3b92011-06-01 17:56:23 -0700356 D("copy_to_file() finished after %lu bytes\n", total);
Christopher Tate5b811fa2011-06-10 11:38:37 -0700357 free(buf);
Christopher Tated2f54152011-04-21 12:53:28 -0700358}
359
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800360static void *stdin_read_thread(void *x)
361{
362 int fd, fdi;
363 unsigned char buf[1024];
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800364 int r, n;
365 int state = 0;
366
367 int *fds = (int*) x;
368 fd = fds[0];
369 fdi = fds[1];
370 free(fds);
371
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800372 for(;;) {
373 /* fdi is really the client's stdin, so use read, not adb_read here */
JP Abgrall408fa572011-03-16 15:57:42 -0700374 D("stdin_read_thread(): pre unix_read(fdi=%d,...)\n", fdi);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800375 r = unix_read(fdi, buf, 1024);
JP Abgrall408fa572011-03-16 15:57:42 -0700376 D("stdin_read_thread(): post unix_read(fdi=%d,...)\n", fdi);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800377 if(r == 0) break;
378 if(r < 0) {
379 if(errno == EINTR) continue;
380 break;
381 }
Mike Lockwood67d53582010-05-25 13:40:15 -0400382 for(n = 0; n < r; n++){
383 switch(buf[n]) {
384 case '\n':
385 state = 1;
386 break;
387 case '\r':
388 state = 1;
389 break;
390 case '~':
391 if(state == 1) state++;
392 break;
393 case '.':
394 if(state == 2) {
395 fprintf(stderr,"\n* disconnect *\n");
Mike Lockwood67d53582010-05-25 13:40:15 -0400396 stdin_raw_restore(fdi);
Mike Lockwood67d53582010-05-25 13:40:15 -0400397 exit(0);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800398 }
Mike Lockwood67d53582010-05-25 13:40:15 -0400399 default:
400 state = 0;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800401 }
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800402 }
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800403 r = adb_write(fd, buf, r);
404 if(r <= 0) {
405 break;
406 }
407 }
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800408 return 0;
409}
410
Elliott Hughes58305772015-04-17 13:57:15 -0700411static int interactive_shell() {
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800412 adb_thread_t thr;
Elliott Hughes71aeb792015-04-29 08:35:59 -0700413 int fdi;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800414
Elliott Hughes71aeb792015-04-29 08:35:59 -0700415 std::string error;
416 int fd = adb_connect("shell:", &error);
417 if (fd < 0) {
418 fprintf(stderr,"error: %s\n", error.c_str());
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800419 return 1;
420 }
421 fdi = 0; //dup(0);
422
Dan Albertbac34742015-02-25 17:51:28 -0800423 int* fds = reinterpret_cast<int*>(malloc(sizeof(int) * 2));
Elliott Hughesdc3b4592015-04-21 19:39:52 -0700424 if (fds == nullptr) {
425 fprintf(stderr, "couldn't allocate fds array: %s\n", strerror(errno));
426 return 1;
427 }
428
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800429 fds[0] = fd;
430 fds[1] = fdi;
431
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800432 stdin_raw_init(fdi);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800433 adb_thread_create(&thr, stdin_read_thread, fds);
434 read_and_dump(fd);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800435 stdin_raw_restore(fdi);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800436 return 0;
437}
438
439
440static void format_host_command(char* buffer, size_t buflen, const char* command, transport_type ttype, const char* serial)
441{
442 if (serial) {
443 snprintf(buffer, buflen, "host-serial:%s:%s", serial, command);
444 } else {
445 const char* prefix = "host";
446 if (ttype == kTransportUsb)
447 prefix = "host-usb";
448 else if (ttype == kTransportLocal)
449 prefix = "host-local";
450
451 snprintf(buffer, buflen, "%s:%s", prefix, command);
452 }
453}
454
Elliott Hughes58305772015-04-17 13:57:15 -0700455static int adb_download_buffer(const char *service, const char *fn, const void* data, int sz,
Elliott Hughes71aeb792015-04-29 08:35:59 -0700456 bool show_progress)
Doug Zongker447f0612012-01-09 14:54:53 -0800457{
458 char buf[4096];
459 unsigned total;
Doug Zongker447f0612012-01-09 14:54:53 -0800460
461 sprintf(buf,"%s:%d", service, sz);
Elliott Hughes71aeb792015-04-29 08:35:59 -0700462
463 std::string error;
464 int fd = adb_connect(buf, &error);
465 if (fd < 0) {
466 fprintf(stderr,"error: %s\n", error.c_str());
Doug Zongker447f0612012-01-09 14:54:53 -0800467 return -1;
468 }
469
470 int opt = CHUNK_SIZE;
Spencer Lowf055c192015-01-25 14:40:16 -0800471 opt = adb_setsockopt(fd, SOL_SOCKET, SO_SNDBUF, (const void *) &opt, sizeof(opt));
Doug Zongker447f0612012-01-09 14:54:53 -0800472
473 total = sz;
Dan Albertbac34742015-02-25 17:51:28 -0800474 const uint8_t* ptr = reinterpret_cast<const uint8_t*>(data);
Doug Zongker447f0612012-01-09 14:54:53 -0800475
Elliott Hughes71aeb792015-04-29 08:35:59 -0700476 if (show_progress) {
Doug Zongker447f0612012-01-09 14:54:53 -0800477 char *x = strrchr(service, ':');
478 if(x) service = x + 1;
479 }
480
481 while(sz > 0) {
482 unsigned xfer = (sz > CHUNK_SIZE) ? CHUNK_SIZE : sz;
Elliott Hughes71aeb792015-04-29 08:35:59 -0700483 if (!WriteFdExactly(fd, ptr, xfer)) {
484 std::string error;
485 adb_status(fd, &error);
486 fprintf(stderr,"* failed to write data '%s' *\n", error.c_str());
Doug Zongker447f0612012-01-09 14:54:53 -0800487 return -1;
488 }
489 sz -= xfer;
490 ptr += xfer;
Elliott Hughes71aeb792015-04-29 08:35:59 -0700491 if (show_progress) {
Magnus Eriksson86ae6d52013-03-05 07:37:32 +0100492 printf("sending: '%s' %4d%% \r", fn, (int)(100LL - ((100LL * sz) / (total))));
Doug Zongker447f0612012-01-09 14:54:53 -0800493 fflush(stdout);
494 }
495 }
Elliott Hughes71aeb792015-04-29 08:35:59 -0700496 if (show_progress) {
Doug Zongker447f0612012-01-09 14:54:53 -0800497 printf("\n");
498 }
499
Dan Albertcc731cc2015-02-24 21:26:58 -0800500 if(!ReadFdExactly(fd, buf, 4)){
Doug Zongker447f0612012-01-09 14:54:53 -0800501 fprintf(stderr,"* error reading response *\n");
502 adb_close(fd);
503 return -1;
504 }
505 if(memcmp(buf, "OKAY", 4)) {
506 buf[4] = 0;
507 fprintf(stderr,"* error response '%s' *\n", buf);
508 adb_close(fd);
509 return -1;
510 }
511
512 adb_close(fd);
513 return 0;
514}
515
Doug Zongker71fe5842014-06-26 15:35:36 -0700516#define SIDELOAD_HOST_BLOCK_SIZE (CHUNK_SIZE)
517
518/*
519 * The sideload-host protocol serves the data in a file (given on the
520 * command line) to the client, using a simple protocol:
521 *
522 * - The connect message includes the total number of bytes in the
523 * file and a block size chosen by us.
524 *
525 * - The other side sends the desired block number as eight decimal
526 * digits (eg "00000023" for block 23). Blocks are numbered from
527 * zero.
528 *
529 * - We send back the data of the requested block. The last block is
530 * likely to be partial; when the last block is requested we only
531 * send the part of the block that exists, it's not padded up to the
532 * block size.
533 *
534 * - When the other side sends "DONEDONE" instead of a block number,
535 * we hang up.
536 */
Elliott Hughes58305772015-04-17 13:57:15 -0700537static int adb_sideload_host(const char* fn) {
Doug Zongker71fe5842014-06-26 15:35:36 -0700538 unsigned sz;
539 size_t xfer = 0;
540 int status;
Dan Albertbac34742015-02-25 17:51:28 -0800541 int last_percent = -1;
542 int opt = SIDELOAD_HOST_BLOCK_SIZE;
Doug Zongker71fe5842014-06-26 15:35:36 -0700543
544 printf("loading: '%s'", fn);
545 fflush(stdout);
Dan Albertbac34742015-02-25 17:51:28 -0800546 uint8_t* data = reinterpret_cast<uint8_t*>(load_file(fn, &sz));
Doug Zongker71fe5842014-06-26 15:35:36 -0700547 if (data == 0) {
548 printf("\n");
549 fprintf(stderr, "* cannot read '%s' *\n", fn);
550 return -1;
551 }
552
553 char buf[100];
554 sprintf(buf, "sideload-host:%d:%d", sz, SIDELOAD_HOST_BLOCK_SIZE);
Elliott Hughes71aeb792015-04-29 08:35:59 -0700555 std::string error;
556 int fd = adb_connect(buf, &error);
Doug Zongker71fe5842014-06-26 15:35:36 -0700557 if (fd < 0) {
558 // Try falling back to the older sideload method. Maybe this
559 // is an older device that doesn't support sideload-host.
560 printf("\n");
Elliott Hughes71aeb792015-04-29 08:35:59 -0700561 status = adb_download_buffer("sideload", fn, data, sz, true);
Doug Zongker71fe5842014-06-26 15:35:36 -0700562 goto done;
563 }
564
Spencer Lowf055c192015-01-25 14:40:16 -0800565 opt = adb_setsockopt(fd, SOL_SOCKET, SO_SNDBUF, (const void *) &opt, sizeof(opt));
Doug Zongker71fe5842014-06-26 15:35:36 -0700566
Elliott Hughesa7090b92015-04-17 17:03:59 -0700567 while (true) {
Dan Albertcc731cc2015-02-24 21:26:58 -0800568 if (!ReadFdExactly(fd, buf, 8)) {
Elliott Hughes71aeb792015-04-29 08:35:59 -0700569 fprintf(stderr, "* failed to read command: %s\n", strerror(errno));
Doug Zongker71fe5842014-06-26 15:35:36 -0700570 status = -1;
571 goto done;
572 }
573
574 if (strncmp("DONEDONE", buf, 8) == 0) {
575 status = 0;
576 break;
577 }
578
579 buf[8] = '\0';
580 int block = strtol(buf, NULL, 10);
581
582 size_t offset = block * SIDELOAD_HOST_BLOCK_SIZE;
583 if (offset >= sz) {
Elliott Hughes71aeb792015-04-29 08:35:59 -0700584 fprintf(stderr, "* attempt to read block %d past end\n", block);
Doug Zongker71fe5842014-06-26 15:35:36 -0700585 status = -1;
586 goto done;
587 }
588 uint8_t* start = data + offset;
589 size_t offset_end = offset + SIDELOAD_HOST_BLOCK_SIZE;
590 size_t to_write = SIDELOAD_HOST_BLOCK_SIZE;
591 if (offset_end > sz) {
592 to_write = sz - offset;
593 }
594
Dan Albertcc731cc2015-02-24 21:26:58 -0800595 if(!WriteFdExactly(fd, start, to_write)) {
Elliott Hughes71aeb792015-04-29 08:35:59 -0700596 adb_status(fd, &error);
597 fprintf(stderr,"* failed to write data '%s' *\n", error.c_str());
Doug Zongker71fe5842014-06-26 15:35:36 -0700598 status = -1;
599 goto done;
600 }
601 xfer += to_write;
602
603 // For normal OTA packages, we expect to transfer every byte
604 // twice, plus a bit of overhead (one read during
605 // verification, one read of each byte for installation, plus
606 // extra access to things like the zip central directory).
607 // This estimate of the completion becomes 100% when we've
608 // transferred ~2.13 (=100/47) times the package size.
609 int percent = (int)(xfer * 47LL / (sz ? sz : 1));
610 if (percent != last_percent) {
611 printf("\rserving: '%s' (~%d%%) ", fn, percent);
612 fflush(stdout);
613 last_percent = percent;
614 }
615 }
616
Colin Cross6d6a8982014-07-07 14:12:41 -0700617 printf("\rTotal xfer: %.2fx%*s\n", (double)xfer / (sz ? sz : 1), (int)strlen(fn)+10, "");
Doug Zongker71fe5842014-06-26 15:35:36 -0700618
619 done:
620 if (fd >= 0) adb_close(fd);
621 free(data);
622 return status;
623}
624
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800625static void status_window(transport_type ttype, const char* serial)
626{
627 char command[4096];
628 char *state = 0;
629 char *laststate = 0;
630
631 /* silence stderr */
632#ifdef _WIN32
633 /* XXX: TODO */
634#else
635 int fd;
636 fd = unix_open("/dev/null", O_WRONLY);
637 dup2(fd, 2);
638 adb_close(fd);
639#endif
640
641 format_host_command(command, sizeof command, "get-state", ttype, serial);
642
Elliott Hughes71aeb792015-04-29 08:35:59 -0700643 while (true) {
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800644 adb_sleep_ms(250);
645
Elliott Hughes71aeb792015-04-29 08:35:59 -0700646 if (state) {
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800647 free(state);
648 state = 0;
649 }
650
Elliott Hughes71aeb792015-04-29 08:35:59 -0700651 std::string error;
652 state = adb_query(command, &error);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800653
Elliott Hughes71aeb792015-04-29 08:35:59 -0700654 if (state) {
655 if (laststate && !strcmp(state,laststate)){
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800656 continue;
657 } else {
Elliott Hughes71aeb792015-04-29 08:35:59 -0700658 if (laststate) free(laststate);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800659 laststate = strdup(state);
660 }
661 }
662
663 printf("%c[2J%c[2H", 27, 27);
664 printf("Android Debug Bridge\n");
665 printf("State: %s\n", state ? state : "offline");
666 fflush(stdout);
667 }
668}
669
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800670/**
671 * Run ppp in "notty" mode against a resource listed as the first parameter
672 * eg:
673 *
674 * ppp dev:/dev/omap_csmi_tty0 <ppp options>
675 *
676 */
Elliott Hughes58305772015-04-17 13:57:15 -0700677static int ppp(int argc, const char** argv) {
Yabin Cuie77b6a02014-11-11 09:24:11 -0800678#if defined(_WIN32)
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800679 fprintf(stderr, "error: adb %s not implemented on Win32\n", argv[0]);
680 return -1;
681#else
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800682 if (argc < 2) {
683 fprintf(stderr, "usage: adb %s <adb service name> [ppp opts]\n",
684 argv[0]);
685
686 return 1;
687 }
688
Dan Albertbac34742015-02-25 17:51:28 -0800689 const char* adb_service_name = argv[1];
Elliott Hughes71aeb792015-04-29 08:35:59 -0700690 std::string error;
691 int fd = adb_connect(adb_service_name, &error);
692 if (fd < 0) {
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800693 fprintf(stderr,"Error: Could not open adb service: %s. Error: %s\n",
Elliott Hughes71aeb792015-04-29 08:35:59 -0700694 adb_service_name, error.c_str());
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800695 return 1;
696 }
697
Elliott Hughes71aeb792015-04-29 08:35:59 -0700698 pid_t pid = fork();
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800699
700 if (pid < 0) {
701 perror("from fork()");
702 return 1;
703 } else if (pid == 0) {
704 int err;
705 int i;
706 const char **ppp_args;
707
708 // copy args
709 ppp_args = (const char **) alloca(sizeof(char *) * argc + 1);
710 ppp_args[0] = "pppd";
711 for (i = 2 ; i < argc ; i++) {
712 //argv[2] and beyond become ppp_args[1] and beyond
713 ppp_args[i - 1] = argv[i];
714 }
715 ppp_args[i-1] = NULL;
716
717 // child side
718
719 dup2(fd, STDIN_FILENO);
720 dup2(fd, STDOUT_FILENO);
721 adb_close(STDERR_FILENO);
722 adb_close(fd);
723
724 err = execvp("pppd", (char * const *)ppp_args);
725
726 if (err < 0) {
727 perror("execing pppd");
728 }
729 exit(-1);
730 } else {
731 // parent side
732
733 adb_close(fd);
734 return 0;
735 }
Yabin Cuie77b6a02014-11-11 09:24:11 -0800736#endif /* !defined(_WIN32) */
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800737}
738
Elliott Hughes2baae3a2015-04-17 10:59:34 -0700739static int send_shell_command(transport_type transport, const char* serial,
740 const std::string& command) {
741 int fd;
742 while (true) {
Elliott Hughes71aeb792015-04-29 08:35:59 -0700743 std::string error;
744 fd = adb_connect(command.c_str(), &error);
745 if (fd >= 0) {
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800746 break;
Elliott Hughes71aeb792015-04-29 08:35:59 -0700747 }
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800748 fprintf(stderr,"- waiting for device -\n");
749 adb_sleep_ms(1000);
750 do_cmd(transport, serial, "wait-for-device", 0);
751 }
752
753 read_and_dump(fd);
Elliott Hughes2baae3a2015-04-17 10:59:34 -0700754 int rc = adb_close(fd);
755 if (rc) {
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800756 perror("close");
Elliott Hughes2baae3a2015-04-17 10:59:34 -0700757 }
758 return rc;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800759}
760
Elliott Hughes2baae3a2015-04-17 10:59:34 -0700761static int logcat(transport_type transport, const char* serial, int argc, const char** argv) {
762 char* log_tags = getenv("ANDROID_LOG_TAGS");
763 std::string quoted = escape_arg(log_tags == nullptr ? "" : log_tags);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800764
Elliott Hughes2baae3a2015-04-17 10:59:34 -0700765 std::string cmd = "shell:export ANDROID_LOG_TAGS=\"" + quoted + "\"; exec logcat";
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800766
Jeff Sharkeyfd546e82014-06-10 11:31:24 -0700767 if (!strcmp(argv[0], "longcat")) {
Elliott Hughes2baae3a2015-04-17 10:59:34 -0700768 cmd += " -v long";
Christopher Tatedb0a8802011-11-30 13:00:33 -0800769 }
770
Elliott Hughes6c34bba2015-04-17 20:11:08 -0700771 --argc;
772 ++argv;
Elliott Hughes2baae3a2015-04-17 10:59:34 -0700773 while (argc-- > 0) {
Elliott Hughes6c34bba2015-04-17 20:11:08 -0700774 cmd += " " + escape_arg(*argv++);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800775 }
776
Elliott Hughes15551472015-04-21 17:58:55 -0700777 return send_shell_command(transport, serial, cmd);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800778}
779
Mark Salyzyn60299df2014-04-30 09:10:31 -0700780static int mkdirs(const char *path)
Christopher Tateb1dfffe2011-12-08 19:04:34 -0800781{
782 int ret;
Mark Salyzyn60299df2014-04-30 09:10:31 -0700783 char *x = (char *)path + 1;
Christopher Tateb1dfffe2011-12-08 19:04:34 -0800784
785 for(;;) {
786 x = adb_dirstart(x);
787 if(x == 0) return 0;
788 *x = 0;
789 ret = adb_mkdir(path, 0775);
790 *x = OS_PATH_SEPARATOR;
791 if((ret < 0) && (errno != EEXIST)) {
792 return ret;
793 }
794 x++;
795 }
796 return 0;
797}
798
Dan Albertbac34742015-02-25 17:51:28 -0800799static int backup(int argc, const char** argv) {
Elliott Hughes6c34bba2015-04-17 20:11:08 -0700800 const char* filename = "./backup.ab";
Christopher Tated2f54152011-04-21 12:53:28 -0700801
Christopher Tatec9cd3b92011-06-01 17:56:23 -0700802 /* find, extract, and use any -f argument */
Elliott Hughes6c34bba2015-04-17 20:11:08 -0700803 for (int i = 1; i < argc; i++) {
Christopher Tatec9cd3b92011-06-01 17:56:23 -0700804 if (!strcmp("-f", argv[i])) {
805 if (i == argc-1) {
806 fprintf(stderr, "adb: -f passed with no filename\n");
807 return usage();
808 }
809 filename = argv[i+1];
Elliott Hughes6c34bba2015-04-17 20:11:08 -0700810 for (int j = i+2; j <= argc; ) {
Christopher Tatec9cd3b92011-06-01 17:56:23 -0700811 argv[i++] = argv[j++];
812 }
813 argc -= 2;
814 argv[argc] = NULL;
815 }
Christopher Tated2f54152011-04-21 12:53:28 -0700816 }
817
Christopher Tatebb86bc52011-08-22 17:12:08 -0700818 /* bare "adb backup" or "adb backup -f filename" are not valid invocations */
819 if (argc < 2) return usage();
820
Christopher Tateb1dfffe2011-12-08 19:04:34 -0800821 adb_unlink(filename);
Mark Salyzyn60299df2014-04-30 09:10:31 -0700822 mkdirs(filename);
Elliott Hughes6c34bba2015-04-17 20:11:08 -0700823 int outFd = adb_creat(filename, 0640);
Christopher Tated2f54152011-04-21 12:53:28 -0700824 if (outFd < 0) {
825 fprintf(stderr, "adb: unable to open file %s\n", filename);
826 return -1;
827 }
828
Elliott Hughes6c34bba2015-04-17 20:11:08 -0700829 std::string cmd = "backup:";
830 --argc;
831 ++argv;
832 while (argc-- > 0) {
833 cmd += " " + escape_arg(*argv++);
Christopher Tated2f54152011-04-21 12:53:28 -0700834 }
835
Elliott Hughes6c34bba2015-04-17 20:11:08 -0700836 D("backup. filename=%s cmd=%s\n", filename, cmd.c_str());
Elliott Hughes71aeb792015-04-29 08:35:59 -0700837 std::string error;
838 int fd = adb_connect(cmd.c_str(), &error);
Christopher Tated2f54152011-04-21 12:53:28 -0700839 if (fd < 0) {
Elliott Hughes71aeb792015-04-29 08:35:59 -0700840 fprintf(stderr, "adb: unable to connect for backup: %s\n", error.c_str());
Christopher Tated2f54152011-04-21 12:53:28 -0700841 adb_close(outFd);
842 return -1;
843 }
844
Christopher Tatebffa4ca2012-01-06 15:43:03 -0800845 printf("Now unlock your device and confirm the backup operation.\n");
Christopher Tated2f54152011-04-21 12:53:28 -0700846 copy_to_file(fd, outFd);
847
848 adb_close(fd);
849 adb_close(outFd);
850 return 0;
851}
852
Dan Albertbac34742015-02-25 17:51:28 -0800853static int restore(int argc, const char** argv) {
Christopher Tate702967a2011-05-17 15:52:54 -0700854 if (argc != 2) return usage();
855
Elliott Hughes71aeb792015-04-29 08:35:59 -0700856 const char* filename = argv[1];
857 int tarFd = adb_open(filename, O_RDONLY);
Christopher Tate702967a2011-05-17 15:52:54 -0700858 if (tarFd < 0) {
Elliott Hughes71aeb792015-04-29 08:35:59 -0700859 fprintf(stderr, "adb: unable to open file %s: %s\n", filename, strerror(errno));
Christopher Tate702967a2011-05-17 15:52:54 -0700860 return -1;
861 }
862
Elliott Hughes71aeb792015-04-29 08:35:59 -0700863 std::string error;
864 int fd = adb_connect("restore:", &error);
Christopher Tate702967a2011-05-17 15:52:54 -0700865 if (fd < 0) {
Elliott Hughes71aeb792015-04-29 08:35:59 -0700866 fprintf(stderr, "adb: unable to connect for restore: %s\n", error.c_str());
Christopher Tate702967a2011-05-17 15:52:54 -0700867 adb_close(tarFd);
868 return -1;
869 }
870
Christopher Tatebffa4ca2012-01-06 15:43:03 -0800871 printf("Now unlock your device and confirm the restore operation.\n");
Christopher Tate702967a2011-05-17 15:52:54 -0700872 copy_to_file(tarFd, fd);
873
874 adb_close(fd);
875 adb_close(tarFd);
876 return 0;
877}
878
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800879/* <hint> may be:
880 * - A simple product name
881 * e.g., "sooner"
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800882 * - A relative path from the CWD to the ANDROID_PRODUCT_OUT dir
883 * e.g., "out/target/product/sooner"
884 * - An absolute path to the PRODUCT_OUT dir
885 * e.g., "/src/device/out/target/product/sooner"
886 *
887 * Given <hint>, try to construct an absolute path to the
888 * ANDROID_PRODUCT_OUT dir.
889 */
Elliott Hughes58305772015-04-17 13:57:15 -0700890static std::string find_product_out_path(const char* hint) {
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800891 if (hint == NULL || hint[0] == '\0') {
Elliott Hughes58305772015-04-17 13:57:15 -0700892 return "";
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800893 }
894
Elliott Hughes58305772015-04-17 13:57:15 -0700895 // If it's already absolute, don't bother doing any work.
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800896 if (adb_is_absolute_host_path(hint)) {
Elliott Hughes58305772015-04-17 13:57:15 -0700897 return hint;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800898 }
899
Elliott Hughes58305772015-04-17 13:57:15 -0700900 // If there are any slashes in it, assume it's a relative path;
901 // make it absolute.
Elliott Hughesa7090b92015-04-17 17:03:59 -0700902 if (adb_dirstart(hint) != nullptr) {
903 std::string cwd;
904 if (!getcwd(&cwd)) {
905 fprintf(stderr, "adb: getcwd failed: %s\n", strerror(errno));
Elliott Hughes58305772015-04-17 13:57:15 -0700906 return "";
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800907 }
Elliott Hughesa7090b92015-04-17 17:03:59 -0700908 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 -0800909 }
910
Elliott Hughes58305772015-04-17 13:57:15 -0700911 // It's a string without any slashes. Try to do something with it.
912 //
913 // Try to find the root of the build tree, and build a PRODUCT_OUT
914 // path from there.
Elliott Hughesa7090b92015-04-17 17:03:59 -0700915 char* top = getenv("ANDROID_BUILD_TOP");
Elliott Hughes58305772015-04-17 13:57:15 -0700916 if (top == nullptr) {
Elliott Hughesa7090b92015-04-17 17:03:59 -0700917 fprintf(stderr, "adb: ANDROID_BUILD_TOP not set!\n");
Elliott Hughes58305772015-04-17 13:57:15 -0700918 return "";
919 }
Elliott Hughesa7090b92015-04-17 17:03:59 -0700920
921 std::string path = top;
Elliott Hughes58305772015-04-17 13:57:15 -0700922 path += OS_PATH_SEPARATOR_STR;
923 path += "out";
924 path += OS_PATH_SEPARATOR_STR;
925 path += "target";
926 path += OS_PATH_SEPARATOR_STR;
927 path += "product";
928 path += OS_PATH_SEPARATOR_STR;
929 path += hint;
930 if (!directory_exists(path)) {
931 fprintf(stderr, "adb: Couldn't find a product dir based on -p %s; "
932 "\"%s\" doesn't exist\n", hint, path.c_str());
Elliott Hughesa7090b92015-04-17 17:03:59 -0700933 return "";
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800934 }
Elliott Hughes58305772015-04-17 13:57:15 -0700935 return path;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800936}
937
Dan Albertbac34742015-02-25 17:51:28 -0800938static void parse_push_pull_args(const char **arg, int narg, char const **path1,
939 char const **path2, int *show_progress,
940 int *copy_attrs) {
Mark Lindner76f2a932014-03-11 17:55:59 -0700941 *show_progress = 0;
Lajos Molnarde8ff4a2013-04-19 12:41:09 -0700942 *copy_attrs = 0;
Mark Lindner76f2a932014-03-11 17:55:59 -0700943
Lajos Molnarde8ff4a2013-04-19 12:41:09 -0700944 while (narg > 0) {
945 if (!strcmp(*arg, "-p")) {
946 *show_progress = 1;
947 } else if (!strcmp(*arg, "-a")) {
948 *copy_attrs = 1;
949 } else {
950 break;
951 }
Mark Lindner76f2a932014-03-11 17:55:59 -0700952 ++arg;
953 --narg;
954 }
955
956 if (narg > 0) {
957 *path1 = *arg;
958 ++arg;
959 --narg;
960 }
961
962 if (narg > 0) {
963 *path2 = *arg;
964 }
965}
966
Tao Bao175b7bb2015-03-29 11:22:34 -0700967static int adb_connect_command(const char* command) {
Elliott Hughes71aeb792015-04-29 08:35:59 -0700968 std::string error;
969 int fd = adb_connect(command, &error);
Tao Bao175b7bb2015-03-29 11:22:34 -0700970 if (fd != -1) {
971 read_and_dump(fd);
972 adb_close(fd);
973 return 0;
974 }
Elliott Hughes71aeb792015-04-29 08:35:59 -0700975 fprintf(stderr, "Error: %s\n", error.c_str());
Tao Bao175b7bb2015-03-29 11:22:34 -0700976 return 1;
977}
978
Dan Albertbac34742015-02-25 17:51:28 -0800979int adb_commandline(int argc, const char **argv)
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800980{
981 char buf[4096];
982 int no_daemon = 0;
983 int is_daemon = 0;
David 'Digit' Turner305b4b02011-01-31 14:23:56 +0100984 int is_server = 0;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800985 int persist = 0;
986 int r;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800987 transport_type ttype = kTransportAny;
Dan Albertbac34742015-02-25 17:51:28 -0800988 const char* serial = NULL;
989 const char* server_port_str = NULL;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800990
Elliott Hughes58305772015-04-17 13:57:15 -0700991 // If defined, this should be an absolute path to
992 // the directory containing all of the various system images
993 // for a particular product. If not defined, and the adb
994 // command requires this information, then the user must
995 // specify the path using "-p".
996 char* ANDROID_PRODUCT_OUT = getenv("ANDROID_PRODUCT_OUT");
997 if (ANDROID_PRODUCT_OUT != nullptr) {
998 gProductOutPath = ANDROID_PRODUCT_OUT;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800999 }
1000 // TODO: also try TARGET_PRODUCT/TARGET_DEVICE as a hint
1001
Nick Pellydb449262009-05-07 12:48:03 -07001002 serial = getenv("ANDROID_SERIAL");
1003
Stefan Hilzingera84a42e2010-04-19 12:21:12 +01001004 /* Validate and assign the server port */
1005 server_port_str = getenv("ANDROID_ADB_SERVER_PORT");
1006 int server_port = DEFAULT_ADB_PORT;
1007 if (server_port_str && strlen(server_port_str) > 0) {
1008 server_port = (int) strtol(server_port_str, NULL, 0);
Matt Gumbeld7b33082012-11-14 10:16:17 -08001009 if (server_port <= 0 || server_port > 65535) {
Stefan Hilzingera84a42e2010-04-19 12:21:12 +01001010 fprintf(stderr,
Matt Gumbeld7b33082012-11-14 10:16:17 -08001011 "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 +01001012 server_port_str);
1013 return usage();
1014 }
1015 }
1016
1017 /* modifiers and flags */
Riley Andrews98f58e82014-12-05 17:37:24 -08001018 while (argc > 0) {
1019 if (!strcmp(argv[0],"server")) {
David 'Digit' Turner305b4b02011-01-31 14:23:56 +01001020 is_server = 1;
Riley Andrews98f58e82014-12-05 17:37:24 -08001021 } else if (!strcmp(argv[0],"nodaemon")) {
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001022 no_daemon = 1;
1023 } else if (!strcmp(argv[0], "fork-server")) {
1024 /* this is a special flag used only when the ADB client launches the ADB Server */
1025 is_daemon = 1;
Riley Andrews98f58e82014-12-05 17:37:24 -08001026 } else if (!strcmp(argv[0],"persist")) {
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001027 persist = 1;
Riley Andrews98f58e82014-12-05 17:37:24 -08001028 } else if (!strncmp(argv[0], "-p", 2)) {
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001029 const char *product = NULL;
1030 if (argv[0][2] == '\0') {
1031 if (argc < 2) return usage();
1032 product = argv[1];
1033 argc--;
1034 argv++;
1035 } else {
Vairavan Srinivasan81273232012-08-04 16:40:50 -07001036 product = argv[0] + 2;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001037 }
1038 gProductOutPath = find_product_out_path(product);
Elliott Hughes58305772015-04-17 13:57:15 -07001039 if (gProductOutPath.empty()) {
1040 fprintf(stderr, "adb: could not resolve \"-p %s\"\n", product);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001041 return usage();
1042 }
1043 } else if (argv[0][0]=='-' && argv[0][1]=='s') {
1044 if (isdigit(argv[0][2])) {
1045 serial = argv[0] + 2;
1046 } else {
Riley Andrews98f58e82014-12-05 17:37:24 -08001047 if (argc < 2 || argv[0][2] != '\0') return usage();
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001048 serial = argv[1];
1049 argc--;
1050 argv++;
1051 }
1052 } else if (!strcmp(argv[0],"-d")) {
1053 ttype = kTransportUsb;
1054 } else if (!strcmp(argv[0],"-e")) {
1055 ttype = kTransportLocal;
Matt Gumbeld7b33082012-11-14 10:16:17 -08001056 } else if (!strcmp(argv[0],"-a")) {
1057 gListenAll = 1;
Riley Andrews98f58e82014-12-05 17:37:24 -08001058 } else if (!strncmp(argv[0], "-H", 2)) {
Matt Gumbeld7b33082012-11-14 10:16:17 -08001059 const char *hostname = NULL;
1060 if (argv[0][2] == '\0') {
1061 if (argc < 2) return usage();
1062 hostname = argv[1];
1063 argc--;
1064 argv++;
1065 } else {
1066 hostname = argv[0] + 2;
1067 }
1068 adb_set_tcp_name(hostname);
1069
Riley Andrews98f58e82014-12-05 17:37:24 -08001070 } else if (!strncmp(argv[0], "-P", 2)) {
Matt Gumbeld7b33082012-11-14 10:16:17 -08001071 if (argv[0][2] == '\0') {
1072 if (argc < 2) return usage();
1073 server_port_str = argv[1];
1074 argc--;
1075 argv++;
1076 } else {
1077 server_port_str = argv[0] + 2;
1078 }
1079 if (strlen(server_port_str) > 0) {
1080 server_port = (int) strtol(server_port_str, NULL, 0);
1081 if (server_port <= 0 || server_port > 65535) {
1082 fprintf(stderr,
1083 "adb: port number must be a positive number less than 65536. Got \"%s\"\n",
1084 server_port_str);
1085 return usage();
1086 }
1087 } else {
1088 fprintf(stderr,
1089 "adb: port number must be a positive number less than 65536. Got empty string.\n");
1090 return usage();
1091 }
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001092 } else {
1093 /* out of recognized modifiers and flags */
1094 break;
1095 }
1096 argc--;
1097 argv++;
1098 }
1099
1100 adb_set_transport(ttype, serial);
Stefan Hilzingera84a42e2010-04-19 12:21:12 +01001101 adb_set_tcp_specifics(server_port);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001102
David 'Digit' Turner305b4b02011-01-31 14:23:56 +01001103 if (is_server) {
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001104 if (no_daemon || is_daemon) {
Stefan Hilzingera84a42e2010-04-19 12:21:12 +01001105 r = adb_main(is_daemon, server_port);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001106 } else {
Stefan Hilzingera84a42e2010-04-19 12:21:12 +01001107 r = launch_server(server_port);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001108 }
Riley Andrews98f58e82014-12-05 17:37:24 -08001109 if (r) {
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001110 fprintf(stderr,"* could not start server *\n");
1111 }
1112 return r;
1113 }
1114
Riley Andrews98f58e82014-12-05 17:37:24 -08001115 if (argc == 0) {
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001116 return usage();
1117 }
1118
Riley Andrewsc8514c82014-12-05 17:32:46 -08001119 /* handle wait-for-* prefix */
1120 if (!strncmp(argv[0], "wait-for-", strlen("wait-for-"))) {
Dan Albertbac34742015-02-25 17:51:28 -08001121 const char* service = argv[0];
Riley Andrewsc8514c82014-12-05 17:32:46 -08001122 if (!strncmp(service, "wait-for-device", strlen("wait-for-device"))) {
1123 if (ttype == kTransportUsb) {
1124 service = "wait-for-usb";
1125 } else if (ttype == kTransportLocal) {
1126 service = "wait-for-local";
1127 } else {
1128 service = "wait-for-any";
1129 }
1130 }
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001131
Riley Andrewsc8514c82014-12-05 17:32:46 -08001132 format_host_command(buf, sizeof buf, service, ttype, serial);
1133
Elliott Hughes71aeb792015-04-29 08:35:59 -07001134 std::string error;
1135 if (adb_command(buf, &error)) {
1136 D("failure: %s *\n", error.c_str());
1137 fprintf(stderr,"error: %s\n", error.c_str());
Riley Andrewsc8514c82014-12-05 17:32:46 -08001138 return 1;
1139 }
1140
1141 /* Allow a command to be run after wait-for-device,
1142 * e.g. 'adb wait-for-device shell'.
1143 */
1144 if (argc == 1) {
1145 return 0;
1146 }
1147
1148 /* Fall through */
1149 argc--;
1150 argv++;
1151 }
1152
1153 /* adb_connect() commands */
Riley Andrews98f58e82014-12-05 17:37:24 -08001154 if (!strcmp(argv[0], "devices")) {
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001155 char *tmp;
Dan Albertbac34742015-02-25 17:51:28 -08001156 const char *listopt;
Scott Andersone109d262012-04-20 11:21:14 -07001157 if (argc < 2)
1158 listopt = "";
1159 else if (argc == 2 && !strcmp(argv[1], "-l"))
1160 listopt = argv[1];
1161 else {
1162 fprintf(stderr, "Usage: adb devices [-l]\n");
1163 return 1;
1164 }
1165 snprintf(buf, sizeof buf, "host:%s%s", argv[0], listopt);
Elliott Hughes71aeb792015-04-29 08:35:59 -07001166 std::string error;
1167 tmp = adb_query(buf, &error);
Riley Andrews98f58e82014-12-05 17:37:24 -08001168 if (tmp) {
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001169 printf("List of devices attached \n");
1170 printf("%s\n", tmp);
1171 return 0;
1172 } else {
1173 return 1;
1174 }
1175 }
Riley Andrewsc8514c82014-12-05 17:32:46 -08001176 else if (!strcmp(argv[0], "connect")) {
Mike Lockwoodff196702009-08-24 15:58:40 -07001177 char *tmp;
1178 if (argc != 2) {
Mike Lockwoodcbbe79a2010-05-24 10:44:35 -04001179 fprintf(stderr, "Usage: adb connect <host>[:<port>]\n");
Mike Lockwoodff196702009-08-24 15:58:40 -07001180 return 1;
1181 }
Mike Lockwoodcbbe79a2010-05-24 10:44:35 -04001182 snprintf(buf, sizeof buf, "host:connect:%s", argv[1]);
Elliott Hughes71aeb792015-04-29 08:35:59 -07001183 std::string error;
1184 tmp = adb_query(buf, &error);
Riley Andrews98f58e82014-12-05 17:37:24 -08001185 if (tmp) {
Mike Lockwoodcbbe79a2010-05-24 10:44:35 -04001186 printf("%s\n", tmp);
1187 return 0;
1188 } else {
1189 return 1;
1190 }
1191 }
Riley Andrewsc8514c82014-12-05 17:32:46 -08001192 else if (!strcmp(argv[0], "disconnect")) {
Mike Lockwoodcbbe79a2010-05-24 10:44:35 -04001193 char *tmp;
1194 if (argc > 2) {
1195 fprintf(stderr, "Usage: adb disconnect [<host>[:<port>]]\n");
1196 return 1;
1197 }
1198 if (argc == 2) {
1199 snprintf(buf, sizeof buf, "host:disconnect:%s", argv[1]);
1200 } else {
1201 snprintf(buf, sizeof buf, "host:disconnect:");
1202 }
Elliott Hughes71aeb792015-04-29 08:35:59 -07001203 std::string error;
1204 tmp = adb_query(buf, &error);
Riley Andrews98f58e82014-12-05 17:37:24 -08001205 if (tmp) {
Mike Lockwoodff196702009-08-24 15:58:40 -07001206 printf("%s\n", tmp);
1207 return 0;
1208 } else {
1209 return 1;
1210 }
1211 }
Riley Andrewsc8514c82014-12-05 17:32:46 -08001212 else if (!strcmp(argv[0], "emu")) {
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001213 return adb_send_emulator_command(argc, argv);
1214 }
Riley Andrewsc8514c82014-12-05 17:32:46 -08001215 else if (!strcmp(argv[0], "shell") || !strcmp(argv[0], "hell")) {
Daniel Sandlerff91ab82010-08-19 01:10:18 -04001216 char h = (argv[0][0] == 'h');
1217
1218 if (h) {
1219 printf("\x1b[41;33m");
1220 fflush(stdout);
1221 }
1222
Riley Andrews98f58e82014-12-05 17:37:24 -08001223 if (argc < 2) {
JP Abgrall408fa572011-03-16 15:57:42 -07001224 D("starting interactive shell\n");
Daniel Sandlerff91ab82010-08-19 01:10:18 -04001225 r = interactive_shell();
1226 if (h) {
1227 printf("\x1b[0m");
1228 fflush(stdout);
1229 }
1230 return r;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001231 }
1232
Elliott Hughes2baae3a2015-04-17 10:59:34 -07001233 std::string cmd = "shell:";
1234 cmd += argv[1];
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001235 argc -= 2;
1236 argv += 2;
Jeff Sharkey5d9d4342014-05-26 18:30:43 -07001237 while (argc-- > 0) {
Elliott Hughes6c34bba2015-04-17 20:11:08 -07001238 cmd += " " + escape_arg(*argv++);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001239 }
1240
Elliott Hughes2baae3a2015-04-17 10:59:34 -07001241 while (true) {
1242 D("interactive shell loop. cmd=%s\n", cmd.c_str());
Elliott Hughes71aeb792015-04-29 08:35:59 -07001243 std::string error;
1244 int fd = adb_connect(cmd.c_str(), &error);
Elliott Hughes2baae3a2015-04-17 10:59:34 -07001245 int r;
Riley Andrews98f58e82014-12-05 17:37:24 -08001246 if (fd >= 0) {
JP Abgrall408fa572011-03-16 15:57:42 -07001247 D("about to read_and_dump(fd=%d)\n", fd);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001248 read_and_dump(fd);
JP Abgrall408fa572011-03-16 15:57:42 -07001249 D("read_and_dump() done.\n");
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001250 adb_close(fd);
1251 r = 0;
1252 } else {
Elliott Hughes71aeb792015-04-29 08:35:59 -07001253 fprintf(stderr,"error: %s\n", error.c_str());
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001254 r = -1;
1255 }
1256
Riley Andrews98f58e82014-12-05 17:37:24 -08001257 if (persist) {
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001258 fprintf(stderr,"\n- waiting for device -\n");
1259 adb_sleep_ms(1000);
1260 do_cmd(ttype, serial, "wait-for-device", 0);
1261 } else {
Daniel Sandlerff91ab82010-08-19 01:10:18 -04001262 if (h) {
1263 printf("\x1b[0m");
1264 fflush(stdout);
1265 }
JP Abgrall408fa572011-03-16 15:57:42 -07001266 D("interactive shell loop. return r=%d\n", r);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001267 return r;
1268 }
1269 }
1270 }
Riley Andrewsc8514c82014-12-05 17:32:46 -08001271 else if (!strcmp(argv[0], "exec-in") || !strcmp(argv[0], "exec-out")) {
Jeff Sharkey5d9d4342014-05-26 18:30:43 -07001272 int exec_in = !strcmp(argv[0], "exec-in");
Jeff Sharkey5d9d4342014-05-26 18:30:43 -07001273
Elliott Hughes2baae3a2015-04-17 10:59:34 -07001274 std::string cmd = "exec:";
1275 cmd += argv[1];
Jeff Sharkey5d9d4342014-05-26 18:30:43 -07001276 argc -= 2;
1277 argv += 2;
1278 while (argc-- > 0) {
Elliott Hughes6c34bba2015-04-17 20:11:08 -07001279 cmd += " " + escape_arg(*argv++);
Jeff Sharkey5d9d4342014-05-26 18:30:43 -07001280 }
1281
Elliott Hughes71aeb792015-04-29 08:35:59 -07001282 std::string error;
1283 int fd = adb_connect(cmd.c_str(), &error);
Jeff Sharkey5d9d4342014-05-26 18:30:43 -07001284 if (fd < 0) {
Elliott Hughes71aeb792015-04-29 08:35:59 -07001285 fprintf(stderr, "error: %s\n", error.c_str());
Jeff Sharkey5d9d4342014-05-26 18:30:43 -07001286 return -1;
1287 }
1288
1289 if (exec_in) {
1290 copy_to_file(STDIN_FILENO, fd);
1291 } else {
1292 copy_to_file(fd, STDOUT_FILENO);
1293 }
1294
1295 adb_close(fd);
1296 return 0;
1297 }
Riley Andrewsc8514c82014-12-05 17:32:46 -08001298 else if (!strcmp(argv[0], "kill-server")) {
Elliott Hughes71aeb792015-04-29 08:35:59 -07001299 std::string error;
1300 int fd = _adb_connect("host:kill", &error);
Riley Andrews98f58e82014-12-05 17:37:24 -08001301 if (fd == -1) {
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001302 fprintf(stderr,"* server not running *\n");
1303 return 1;
1304 }
1305 return 0;
1306 }
Riley Andrewsc8514c82014-12-05 17:32:46 -08001307 else if (!strcmp(argv[0], "sideload")) {
1308 if (argc != 2) return usage();
Doug Zongker71fe5842014-06-26 15:35:36 -07001309 if (adb_sideload_host(argv[1])) {
Doug Zongker447f0612012-01-09 14:54:53 -08001310 return 1;
1311 } else {
1312 return 0;
1313 }
1314 }
Riley Andrewsc8514c82014-12-05 17:32:46 -08001315 else if (!strcmp(argv[0], "remount") ||
1316 !strcmp(argv[0], "reboot") ||
1317 !strcmp(argv[0], "reboot-bootloader") ||
1318 !strcmp(argv[0], "tcpip") ||
1319 !strcmp(argv[0], "usb") ||
1320 !strcmp(argv[0], "root") ||
Dan Pasanen98858812014-10-06 12:57:20 -05001321 !strcmp(argv[0], "unroot") ||
Riley Andrewsc8514c82014-12-05 17:32:46 -08001322 !strcmp(argv[0], "disable-verity") ||
1323 !strcmp(argv[0], "enable-verity")) {
Mike Lockwoodff196702009-08-24 15:58:40 -07001324 char command[100];
Tao Bao175b7bb2015-03-29 11:22:34 -07001325 if (!strcmp(argv[0], "reboot-bootloader")) {
Romain Guy311add42009-12-14 14:42:17 -08001326 snprintf(command, sizeof(command), "reboot:bootloader");
Tao Bao175b7bb2015-03-29 11:22:34 -07001327 } else if (argc > 1) {
Mike Lockwoodff196702009-08-24 15:58:40 -07001328 snprintf(command, sizeof(command), "%s:%s", argv[0], argv[1]);
Tao Bao175b7bb2015-03-29 11:22:34 -07001329 } else {
Mike Lockwoodff196702009-08-24 15:58:40 -07001330 snprintf(command, sizeof(command), "%s:", argv[0]);
The Android Open Source Projecte037fd72009-03-13 13:04:37 -07001331 }
Tao Bao175b7bb2015-03-29 11:22:34 -07001332 return adb_connect_command(command);
The Android Open Source Projecte037fd72009-03-13 13:04:37 -07001333 }
Riley Andrewsc8514c82014-12-05 17:32:46 -08001334 else if (!strcmp(argv[0], "bugreport")) {
Dan Egnorc130ea72010-01-20 13:50:36 -08001335 if (argc != 1) return usage();
1336 do_cmd(ttype, serial, "shell", "bugreport", 0);
Mike Lockwoodf56d1b52009-09-03 14:54:58 -04001337 return 0;
1338 }
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001339 /* adb_command() wrapper commands */
Riley Andrewsc8514c82014-12-05 17:32:46 -08001340 else if (!strcmp(argv[0], "forward") || !strcmp(argv[0], "reverse")) {
David 'Digit' Turner0d82fbf2012-11-14 15:01:55 +01001341 char host_prefix[64];
David 'Digit' Turner25258692013-03-21 21:07:42 +01001342 char reverse = (char) !strcmp(argv[0], "reverse");
David 'Digit' Turner0d82fbf2012-11-14 15:01:55 +01001343 char remove = 0;
1344 char remove_all = 0;
1345 char list = 0;
1346 char no_rebind = 0;
1347
1348 // Parse options here.
1349 while (argc > 1 && argv[1][0] == '-') {
1350 if (!strcmp(argv[1], "--list"))
1351 list = 1;
1352 else if (!strcmp(argv[1], "--remove"))
1353 remove = 1;
1354 else if (!strcmp(argv[1], "--remove-all"))
1355 remove_all = 1;
1356 else if (!strcmp(argv[1], "--no-rebind"))
1357 no_rebind = 1;
1358 else {
1359 return usage();
1360 }
1361 argc--;
1362 argv++;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001363 }
David 'Digit' Turner0d82fbf2012-11-14 15:01:55 +01001364
1365 // Ensure we can only use one option at a time.
1366 if (list + remove + remove_all + no_rebind > 1) {
1367 return usage();
1368 }
1369
1370 // Determine the <host-prefix> for this command.
David 'Digit' Turner25258692013-03-21 21:07:42 +01001371 if (reverse) {
1372 snprintf(host_prefix, sizeof host_prefix, "reverse");
David 'Digit' Turner0d82fbf2012-11-14 15:01:55 +01001373 } else {
David 'Digit' Turner25258692013-03-21 21:07:42 +01001374 if (serial) {
1375 snprintf(host_prefix, sizeof host_prefix, "host-serial:%s",
1376 serial);
1377 } else if (ttype == kTransportUsb) {
1378 snprintf(host_prefix, sizeof host_prefix, "host-usb");
1379 } else if (ttype == kTransportLocal) {
1380 snprintf(host_prefix, sizeof host_prefix, "host-local");
1381 } else {
1382 snprintf(host_prefix, sizeof host_prefix, "host");
1383 }
David 'Digit' Turner0d82fbf2012-11-14 15:01:55 +01001384 }
1385
1386 // Implement forward --list
1387 if (list) {
1388 if (argc != 1)
1389 return usage();
1390 snprintf(buf, sizeof buf, "%s:list-forward", host_prefix);
Elliott Hughes71aeb792015-04-29 08:35:59 -07001391 std::string error;
1392 char* forwards = adb_query(buf, &error);
David 'Digit' Turner0d82fbf2012-11-14 15:01:55 +01001393 if (forwards == NULL) {
Elliott Hughes71aeb792015-04-29 08:35:59 -07001394 fprintf(stderr, "error: %s\n", error.c_str());
David 'Digit' Turner0d82fbf2012-11-14 15:01:55 +01001395 return 1;
1396 }
1397 printf("%s", forwards);
1398 free(forwards);
1399 return 0;
1400 }
1401
1402 // Implement forward --remove-all
1403 else if (remove_all) {
1404 if (argc != 1)
1405 return usage();
1406 snprintf(buf, sizeof buf, "%s:killforward-all", host_prefix);
1407 }
1408
1409 // Implement forward --remove <local>
1410 else if (remove) {
1411 if (argc != 2)
1412 return usage();
1413 snprintf(buf, sizeof buf, "%s:killforward:%s", host_prefix, argv[1]);
1414 }
1415 // Or implement one of:
1416 // forward <local> <remote>
1417 // forward --no-rebind <local> <remote>
1418 else
1419 {
1420 if (argc != 3)
1421 return usage();
David 'Digit' Turnerf0e0c2e2015-01-22 09:07:41 +01001422 const char* command = no_rebind ? "forward:norebind" : "forward";
David 'Digit' Turner0d82fbf2012-11-14 15:01:55 +01001423 snprintf(buf, sizeof buf, "%s:%s:%s;%s", host_prefix, command, argv[1], argv[2]);
1424 }
1425
Elliott Hughes71aeb792015-04-29 08:35:59 -07001426 std::string error;
1427 if (adb_command(buf, &error)) {
1428 fprintf(stderr,"error: %s\n", error.c_str());
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001429 return 1;
1430 }
1431 return 0;
1432 }
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001433 /* do_sync_*() commands */
Riley Andrewsc8514c82014-12-05 17:32:46 -08001434 else if (!strcmp(argv[0], "ls")) {
1435 if (argc != 2) return usage();
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001436 return do_sync_ls(argv[1]);
1437 }
Riley Andrewsc8514c82014-12-05 17:32:46 -08001438 else if (!strcmp(argv[0], "push")) {
Mark Lindner76f2a932014-03-11 17:55:59 -07001439 int show_progress = 0;
Lajos Molnarde8ff4a2013-04-19 12:41:09 -07001440 int copy_attrs = 0; // unused
Mark Lindner76f2a932014-03-11 17:55:59 -07001441 const char* lpath = NULL, *rpath = NULL;
1442
Lajos Molnarde8ff4a2013-04-19 12:41:09 -07001443 parse_push_pull_args(&argv[1], argc - 1, &lpath, &rpath, &show_progress, &copy_attrs);
Mark Lindner76f2a932014-03-11 17:55:59 -07001444
1445 if ((lpath != NULL) && (rpath != NULL)) {
Jeff Sharkey960df972014-06-09 17:30:57 -07001446 return do_sync_push(lpath, rpath, show_progress);
Mark Lindner76f2a932014-03-11 17:55:59 -07001447 }
1448
1449 return usage();
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001450 }
Riley Andrewsc8514c82014-12-05 17:32:46 -08001451 else if (!strcmp(argv[0], "pull")) {
Mark Lindner76f2a932014-03-11 17:55:59 -07001452 int show_progress = 0;
Lajos Molnarde8ff4a2013-04-19 12:41:09 -07001453 int copy_attrs = 0;
Mark Lindner76f2a932014-03-11 17:55:59 -07001454 const char* rpath = NULL, *lpath = ".";
1455
Lajos Molnarde8ff4a2013-04-19 12:41:09 -07001456 parse_push_pull_args(&argv[1], argc - 1, &rpath, &lpath, &show_progress, &copy_attrs);
Mark Lindner76f2a932014-03-11 17:55:59 -07001457
1458 if (rpath != NULL) {
Lajos Molnarde8ff4a2013-04-19 12:41:09 -07001459 return do_sync_pull(rpath, lpath, show_progress, copy_attrs);
Joe Onorato00c0eea2010-01-05 13:42:25 -08001460 }
Mark Lindner76f2a932014-03-11 17:55:59 -07001461
1462 return usage();
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001463 }
Riley Andrewsc8514c82014-12-05 17:32:46 -08001464 else if (!strcmp(argv[0], "install")) {
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001465 if (argc < 2) return usage();
1466 return install_app(ttype, serial, argc, argv);
1467 }
Riley Andrewsc8514c82014-12-05 17:32:46 -08001468 else if (!strcmp(argv[0], "install-multiple")) {
Jeff Sharkey960df972014-06-09 17:30:57 -07001469 if (argc < 2) return usage();
1470 return install_multiple_app(ttype, serial, argc, argv);
1471 }
Riley Andrewsc8514c82014-12-05 17:32:46 -08001472 else if (!strcmp(argv[0], "uninstall")) {
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001473 if (argc < 2) return usage();
1474 return uninstall_app(ttype, serial, argc, argv);
1475 }
Riley Andrewsc8514c82014-12-05 17:32:46 -08001476 else if (!strcmp(argv[0], "sync")) {
Elliott Hughesd236d072015-04-21 10:17:07 -07001477 std::string src;
Elliott Hughes58305772015-04-17 13:57:15 -07001478 bool list_only = false;
Riley Andrews98f58e82014-12-05 17:37:24 -08001479 if (argc < 2) {
Elliott Hughes58305772015-04-17 13:57:15 -07001480 // No local path was specified.
Elliott Hughesd236d072015-04-21 10:17:07 -07001481 src = "";
Anthony Newnam705c9442010-02-22 08:36:49 -06001482 } else if (argc >= 2 && strcmp(argv[1], "-l") == 0) {
Elliott Hughesd236d072015-04-21 10:17:07 -07001483 list_only = true;
Anthony Newnam705c9442010-02-22 08:36:49 -06001484 if (argc == 3) {
Elliott Hughesd236d072015-04-21 10:17:07 -07001485 src = argv[2];
Anthony Newnam705c9442010-02-22 08:36:49 -06001486 } else {
Elliott Hughesd236d072015-04-21 10:17:07 -07001487 src = "";
Anthony Newnam705c9442010-02-22 08:36:49 -06001488 }
Riley Andrews98f58e82014-12-05 17:37:24 -08001489 } else if (argc == 2) {
Elliott Hughes58305772015-04-17 13:57:15 -07001490 // A local path or "android"/"data" arg was specified.
Elliott Hughesd236d072015-04-21 10:17:07 -07001491 src = argv[1];
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001492 } else {
1493 return usage();
1494 }
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001495
Elliott Hughesd236d072015-04-21 10:17:07 -07001496 if (src != "" &&
1497 src != "system" && src != "data" && src != "vendor" && src != "oem") {
Elliott Hughes58305772015-04-17 13:57:15 -07001498 return usage();
1499 }
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001500
Elliott Hughes58305772015-04-17 13:57:15 -07001501 std::string system_src_path = product_file("system");
1502 std::string data_src_path = product_file("data");
1503 std::string vendor_src_path = product_file("vendor");
1504 std::string oem_src_path = product_file("oem");
Elliott Hughes58305772015-04-17 13:57:15 -07001505
1506 int rc = 0;
Elliott Hughesd236d072015-04-21 10:17:07 -07001507 if (rc == 0 && (src.empty() || src == "system")) {
1508 rc = do_sync_sync(system_src_path, "/system", list_only);
Elliott Hughes58305772015-04-17 13:57:15 -07001509 }
Elliott Hughesd236d072015-04-21 10:17:07 -07001510 if (rc == 0 && (src.empty() || src == "vendor") && directory_exists(vendor_src_path)) {
1511 rc = do_sync_sync(vendor_src_path, "/vendor", list_only);
Elliott Hughes58305772015-04-17 13:57:15 -07001512 }
Elliott Hughesd236d072015-04-21 10:17:07 -07001513 if (rc == 0 && (src.empty() || src == "oem") && directory_exists(oem_src_path)) {
1514 rc = do_sync_sync(oem_src_path, "/oem", list_only);
Elliott Hughes58305772015-04-17 13:57:15 -07001515 }
Elliott Hughesd236d072015-04-21 10:17:07 -07001516 if (rc == 0 && (src.empty() || src == "data")) {
1517 rc = do_sync_sync(data_src_path, "/data", list_only);
Elliott Hughes58305772015-04-17 13:57:15 -07001518 }
1519 return rc;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001520 }
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001521 /* passthrough commands */
Riley Andrewsc8514c82014-12-05 17:32:46 -08001522 else if (!strcmp(argv[0],"get-state") ||
Scott Andersone109d262012-04-20 11:21:14 -07001523 !strcmp(argv[0],"get-serialno") ||
1524 !strcmp(argv[0],"get-devpath"))
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001525 {
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001526 format_host_command(buf, sizeof buf, argv[0], ttype, serial);
Elliott Hughes71aeb792015-04-29 08:35:59 -07001527 std::string error;
1528 char* tmp = adb_query(buf, &error);
Riley Andrews98f58e82014-12-05 17:37:24 -08001529 if (tmp) {
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001530 printf("%s\n", tmp);
1531 return 0;
1532 } else {
1533 return 1;
1534 }
1535 }
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001536 /* other commands */
Riley Andrewsc8514c82014-12-05 17:32:46 -08001537 else if (!strcmp(argv[0],"status-window")) {
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001538 status_window(ttype, serial);
1539 return 0;
1540 }
Riley Andrewsc8514c82014-12-05 17:32:46 -08001541 else if (!strcmp(argv[0],"logcat") || !strcmp(argv[0],"lolcat") || !strcmp(argv[0],"longcat")) {
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001542 return logcat(ttype, serial, argc, argv);
1543 }
Riley Andrewsc8514c82014-12-05 17:32:46 -08001544 else if (!strcmp(argv[0],"ppp")) {
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001545 return ppp(argc, argv);
1546 }
Riley Andrewsc8514c82014-12-05 17:32:46 -08001547 else if (!strcmp(argv[0], "start-server")) {
Elliott Hughes71aeb792015-04-29 08:35:59 -07001548 std::string error;
1549 return adb_connect("host:start-server", &error);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001550 }
Riley Andrewsc8514c82014-12-05 17:32:46 -08001551 else if (!strcmp(argv[0], "backup")) {
Christopher Tated2f54152011-04-21 12:53:28 -07001552 return backup(argc, argv);
1553 }
Riley Andrewsc8514c82014-12-05 17:32:46 -08001554 else if (!strcmp(argv[0], "restore")) {
Christopher Tate702967a2011-05-17 15:52:54 -07001555 return restore(argc, argv);
1556 }
Riley Andrewsc8514c82014-12-05 17:32:46 -08001557 else if (!strcmp(argv[0], "keygen")) {
Nick Kralevichbea3f9c2014-11-13 15:17:29 -08001558 if (argc < 2) return usage();
1559 return adb_auth_keygen(argv[1]);
1560 }
Riley Andrewsc8514c82014-12-05 17:32:46 -08001561 else if (!strcmp(argv[0], "jdwp")) {
Tao Bao175b7bb2015-03-29 11:22:34 -07001562 return adb_connect_command("jdwp");
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001563 }
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001564 /* "adb /?" is a common idiom under Windows */
Riley Andrewsc8514c82014-12-05 17:32:46 -08001565 else if (!strcmp(argv[0], "help") || !strcmp(argv[0], "/?")) {
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001566 help();
1567 return 0;
1568 }
Riley Andrewsc8514c82014-12-05 17:32:46 -08001569 else if (!strcmp(argv[0], "version")) {
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001570 version(stdout);
1571 return 0;
1572 }
1573
1574 usage();
1575 return 1;
1576}
1577
Alexander Ivchenko678bd2e2014-08-06 14:51:40 +04001578#define MAX_ARGV_LENGTH 16
Dan Albertbac34742015-02-25 17:51:28 -08001579static int do_cmd(transport_type ttype, const char* serial, const char *cmd, ...)
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001580{
Dan Albertbac34742015-02-25 17:51:28 -08001581 const char *argv[MAX_ARGV_LENGTH];
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001582 int argc;
1583 va_list ap;
1584
1585 va_start(ap, cmd);
1586 argc = 0;
1587
1588 if (serial) {
1589 argv[argc++] = "-s";
1590 argv[argc++] = serial;
1591 } else if (ttype == kTransportUsb) {
1592 argv[argc++] = "-d";
1593 } else if (ttype == kTransportLocal) {
1594 argv[argc++] = "-e";
1595 }
1596
1597 argv[argc++] = cmd;
Alexander Ivchenko678bd2e2014-08-06 14:51:40 +04001598 while(argc < MAX_ARGV_LENGTH &&
1599 (argv[argc] = va_arg(ap, char*)) != 0) argc++;
1600 assert(argc < MAX_ARGV_LENGTH);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001601 va_end(ap);
1602
1603#if 0
1604 int n;
1605 fprintf(stderr,"argc = %d\n",argc);
1606 for(n = 0; n < argc; n++) {
1607 fprintf(stderr,"argv[%d] = \"%s\"\n", n, argv[n]);
1608 }
1609#endif
1610
1611 return adb_commandline(argc, argv);
1612}
1613
Dan Albertbac34742015-02-25 17:51:28 -08001614static int pm_command(transport_type transport, const char* serial,
1615 int argc, const char** argv)
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001616{
Elliott Hughes2baae3a2015-04-17 10:59:34 -07001617 std::string cmd = "shell:pm";
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001618
Elliott Hughes2baae3a2015-04-17 10:59:34 -07001619 while (argc-- > 0) {
Elliott Hughes6c34bba2015-04-17 20:11:08 -07001620 cmd += " " + escape_arg(*argv++);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001621 }
1622
Elliott Hughes15551472015-04-21 17:58:55 -07001623 return send_shell_command(transport, serial, cmd);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001624}
1625
Elliott Hughes58305772015-04-17 13:57:15 -07001626static int uninstall_app(transport_type transport, const char* serial, int argc,
1627 const char** argv)
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001628{
1629 /* if the user choose the -k option, we refuse to do it until devices are
1630 out with the option to uninstall the remaining data somehow (adb/ui) */
1631 if (argc == 3 && strcmp(argv[1], "-k") == 0)
1632 {
1633 printf(
1634 "The -k option uninstalls the application while retaining the data/cache.\n"
1635 "At the moment, there is no way to remove the remaining data.\n"
1636 "You will have to reinstall the application with the same signature, and fully uninstall it.\n"
1637 "If you truly wish to continue, execute 'adb shell pm uninstall -k %s'\n", argv[2]);
1638 return -1;
1639 }
1640
1641 /* 'adb uninstall' takes the same arguments as 'pm uninstall' on device */
1642 return pm_command(transport, serial, argc, argv);
1643}
1644
Dan Albertbac34742015-02-25 17:51:28 -08001645static int delete_file(transport_type transport, const char* serial, char* filename)
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001646{
Elliott Hughes2baae3a2015-04-17 10:59:34 -07001647 std::string cmd = "shell:rm -f " + escape_arg(filename);
Elliott Hughes15551472015-04-21 17:58:55 -07001648 return send_shell_command(transport, serial, cmd);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001649}
1650
Kenny Root597ea5b2011-08-05 11:19:45 -07001651static const char* get_basename(const char* filename)
1652{
1653 const char* basename = adb_dirstop(filename);
1654 if (basename) {
1655 basename++;
1656 return basename;
1657 } else {
1658 return filename;
1659 }
1660}
1661
Elliott Hughes58305772015-04-17 13:57:15 -07001662static int install_app(transport_type transport, const char* serial, int argc,
1663 const char** argv)
Kenny Root597ea5b2011-08-05 11:19:45 -07001664{
1665 static const char *const DATA_DEST = "/data/local/tmp/%s";
1666 static const char *const SD_DEST = "/sdcard/tmp/%s";
1667 const char* where = DATA_DEST;
Kenny Root597ea5b2011-08-05 11:19:45 -07001668 int i;
Jeff Sharkey960df972014-06-09 17:30:57 -07001669 struct stat sb;
Kenny Root597ea5b2011-08-05 11:19:45 -07001670
1671 for (i = 1; i < argc; i++) {
Jeff Sharkey960df972014-06-09 17:30:57 -07001672 if (!strcmp(argv[i], "-s")) {
Kenny Root597ea5b2011-08-05 11:19:45 -07001673 where = SD_DEST;
1674 }
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001675 }
1676
Jeff Sharkey960df972014-06-09 17:30:57 -07001677 // Find last APK argument.
1678 // All other arguments passed through verbatim.
1679 int last_apk = -1;
1680 for (i = argc - 1; i >= 0; i--) {
Dan Albertbac34742015-02-25 17:51:28 -08001681 const char* file = argv[i];
Jeff Sharkey960df972014-06-09 17:30:57 -07001682 char* dot = strrchr(file, '.');
1683 if (dot && !strcasecmp(dot, ".apk")) {
1684 if (stat(file, &sb) == -1 || !S_ISREG(sb.st_mode)) {
1685 fprintf(stderr, "Invalid APK file: %s\n", file);
1686 return -1;
1687 }
1688
1689 last_apk = i;
1690 break;
1691 }
Kenny Root597ea5b2011-08-05 11:19:45 -07001692 }
1693
Jeff Sharkey960df972014-06-09 17:30:57 -07001694 if (last_apk == -1) {
1695 fprintf(stderr, "Missing APK file\n");
1696 return -1;
Kenny Root597ea5b2011-08-05 11:19:45 -07001697 }
1698
Dan Albertbac34742015-02-25 17:51:28 -08001699 const char* apk_file = argv[last_apk];
Jeff Sharkey960df972014-06-09 17:30:57 -07001700 char apk_dest[PATH_MAX];
Kenny Root597ea5b2011-08-05 11:19:45 -07001701 snprintf(apk_dest, sizeof apk_dest, where, get_basename(apk_file));
Jeff Sharkey960df972014-06-09 17:30:57 -07001702 int err = do_sync_push(apk_file, apk_dest, 0 /* no show progress */);
Kenny Root597ea5b2011-08-05 11:19:45 -07001703 if (err) {
Kenny Root60733e92012-03-26 16:14:02 -07001704 goto cleanup_apk;
Kenny Root597ea5b2011-08-05 11:19:45 -07001705 } else {
Jeff Sharkey960df972014-06-09 17:30:57 -07001706 argv[last_apk] = apk_dest; /* destination name, not source location */
Kenny Root597ea5b2011-08-05 11:19:45 -07001707 }
1708
Elliott Hughes15551472015-04-21 17:58:55 -07001709 err = pm_command(transport, serial, argc, argv);
Kenny Root597ea5b2011-08-05 11:19:45 -07001710
Kenny Root60733e92012-03-26 16:14:02 -07001711cleanup_apk:
Jeff Sharkey960df972014-06-09 17:30:57 -07001712 delete_file(transport, serial, apk_dest);
1713 return err;
1714}
1715
Elliott Hughes58305772015-04-17 13:57:15 -07001716static int install_multiple_app(transport_type transport, const char* serial, int argc,
1717 const char** argv)
Jeff Sharkey960df972014-06-09 17:30:57 -07001718{
Jeff Sharkey960df972014-06-09 17:30:57 -07001719 int i;
1720 struct stat sb;
Elliott Hughes2940ccf2015-04-17 14:07:52 -07001721 uint64_t total_size = 0;
Jeff Sharkey960df972014-06-09 17:30:57 -07001722
1723 // Find all APK arguments starting at end.
1724 // All other arguments passed through verbatim.
1725 int first_apk = -1;
1726 for (i = argc - 1; i >= 0; i--) {
Dan Albertbac34742015-02-25 17:51:28 -08001727 const char* file = argv[i];
Jeff Sharkey960df972014-06-09 17:30:57 -07001728 char* dot = strrchr(file, '.');
1729 if (dot && !strcasecmp(dot, ".apk")) {
1730 if (stat(file, &sb) == -1 || !S_ISREG(sb.st_mode)) {
1731 fprintf(stderr, "Invalid APK file: %s\n", file);
1732 return -1;
1733 }
1734
1735 total_size += sb.st_size;
1736 first_apk = i;
1737 } else {
1738 break;
1739 }
Kenny Root597ea5b2011-08-05 11:19:45 -07001740 }
1741
Jeff Sharkey960df972014-06-09 17:30:57 -07001742 if (first_apk == -1) {
1743 fprintf(stderr, "Missing APK file\n");
1744 return 1;
1745 }
Kenny Root597ea5b2011-08-05 11:19:45 -07001746
Elliott Hughes53daee62015-04-19 13:17:01 -07001747#if defined(_WIN32) // Remove when we're using clang for Win32.
1748 std::string cmd = android::base::StringPrintf("exec:pm install-create -S %u", (unsigned) total_size);
1749#else
Elliott Hughes2940ccf2015-04-17 14:07:52 -07001750 std::string cmd = android::base::StringPrintf("exec:pm install-create -S %" PRIu64, total_size);
Elliott Hughes53daee62015-04-19 13:17:01 -07001751#endif
Jeff Sharkey960df972014-06-09 17:30:57 -07001752 for (i = 1; i < first_apk; i++) {
Elliott Hughes6c34bba2015-04-17 20:11:08 -07001753 cmd += " " + escape_arg(argv[i]);
Jeff Sharkey960df972014-06-09 17:30:57 -07001754 }
1755
1756 // Create install session
Elliott Hughes71aeb792015-04-29 08:35:59 -07001757 std::string error;
1758 int fd = adb_connect(cmd.c_str(), &error);
Jeff Sharkey960df972014-06-09 17:30:57 -07001759 if (fd < 0) {
Elliott Hughes71aeb792015-04-29 08:35:59 -07001760 fprintf(stderr, "Connect error for create: %s\n", error.c_str());
Jeff Sharkey960df972014-06-09 17:30:57 -07001761 return -1;
1762 }
Elliott Hughes2baae3a2015-04-17 10:59:34 -07001763 char buf[BUFSIZ];
Jeff Sharkey960df972014-06-09 17:30:57 -07001764 read_status_line(fd, buf, sizeof(buf));
1765 adb_close(fd);
1766
1767 int session_id = -1;
1768 if (!strncmp("Success", buf, 7)) {
1769 char* start = strrchr(buf, '[');
1770 char* end = strrchr(buf, ']');
1771 if (start && end) {
1772 *end = '\0';
1773 session_id = strtol(start + 1, NULL, 10);
1774 }
1775 }
1776 if (session_id < 0) {
1777 fprintf(stderr, "Failed to create session\n");
Christopher Tate71bbc672014-07-14 16:45:13 -07001778 fputs(buf, stderr);
Jeff Sharkey960df972014-06-09 17:30:57 -07001779 return -1;
1780 }
1781
1782 // Valid session, now stream the APKs
1783 int success = 1;
1784 for (i = first_apk; i < argc; i++) {
Dan Albertbac34742015-02-25 17:51:28 -08001785 const char* file = argv[i];
Jeff Sharkey960df972014-06-09 17:30:57 -07001786 if (stat(file, &sb) == -1) {
1787 fprintf(stderr, "Failed to stat %s\n", file);
1788 success = 0;
1789 goto finalize_session;
1790 }
1791
Elliott Hughes53daee62015-04-19 13:17:01 -07001792#if defined(_WIN32) // Remove when we're using clang for Win32.
1793 std::string cmd = android::base::StringPrintf(
1794 "exec:pm install-write -S %u %d %d_%s -",
1795 (unsigned) sb.st_size, session_id, i, get_basename(file));
1796#else
Elliott Hughes2940ccf2015-04-17 14:07:52 -07001797 std::string cmd = android::base::StringPrintf(
1798 "exec:pm install-write -S %" PRIu64 " %d %d_%s -",
1799 static_cast<uint64_t>(sb.st_size), session_id, i, get_basename(file));
Elliott Hughes53daee62015-04-19 13:17:01 -07001800#endif
Jeff Sharkey960df972014-06-09 17:30:57 -07001801
1802 int localFd = adb_open(file, O_RDONLY);
1803 if (localFd < 0) {
Elliott Hughes71aeb792015-04-29 08:35:59 -07001804 fprintf(stderr, "Failed to open %s: %s\n", file, strerror(errno));
Jeff Sharkey960df972014-06-09 17:30:57 -07001805 success = 0;
1806 goto finalize_session;
1807 }
1808
Elliott Hughes71aeb792015-04-29 08:35:59 -07001809 std::string error;
1810 int remoteFd = adb_connect(cmd.c_str(), &error);
Jeff Sharkey960df972014-06-09 17:30:57 -07001811 if (remoteFd < 0) {
Elliott Hughes71aeb792015-04-29 08:35:59 -07001812 fprintf(stderr, "Connect error for write: %s\n", error.c_str());
Jeff Sharkey960df972014-06-09 17:30:57 -07001813 adb_close(localFd);
1814 success = 0;
1815 goto finalize_session;
1816 }
1817
1818 copy_to_file(localFd, remoteFd);
1819 read_status_line(remoteFd, buf, sizeof(buf));
1820
1821 adb_close(localFd);
1822 adb_close(remoteFd);
1823
1824 if (strncmp("Success", buf, 7)) {
1825 fprintf(stderr, "Failed to write %s\n", file);
Christopher Tate71bbc672014-07-14 16:45:13 -07001826 fputs(buf, stderr);
Jeff Sharkey960df972014-06-09 17:30:57 -07001827 success = 0;
1828 goto finalize_session;
1829 }
1830 }
1831
1832finalize_session:
Jeff Sharkeyac77e1f2014-07-25 09:58:25 -07001833 // Commit session if we streamed everything okay; otherwise abandon
Jeff Sharkey960df972014-06-09 17:30:57 -07001834 if (success) {
1835 snprintf(buf, sizeof(buf), "exec:pm install-commit %d", session_id);
1836 } else {
Jeff Sharkeyac77e1f2014-07-25 09:58:25 -07001837 snprintf(buf, sizeof(buf), "exec:pm install-abandon %d", session_id);
Jeff Sharkey960df972014-06-09 17:30:57 -07001838 }
1839
Elliott Hughes71aeb792015-04-29 08:35:59 -07001840 fd = adb_connect(buf, &error);
Jeff Sharkey960df972014-06-09 17:30:57 -07001841 if (fd < 0) {
Elliott Hughes71aeb792015-04-29 08:35:59 -07001842 fprintf(stderr, "Connect error for finalize: %s\n", error.c_str());
Jeff Sharkey960df972014-06-09 17:30:57 -07001843 return -1;
1844 }
1845 read_status_line(fd, buf, sizeof(buf));
1846 adb_close(fd);
1847
1848 if (!strncmp("Success", buf, 7)) {
Christopher Tate71bbc672014-07-14 16:45:13 -07001849 fputs(buf, stderr);
Jeff Sharkey960df972014-06-09 17:30:57 -07001850 return 0;
1851 } else {
1852 fprintf(stderr, "Failed to finalize session\n");
Christopher Tate71bbc672014-07-14 16:45:13 -07001853 fputs(buf, stderr);
Jeff Sharkey960df972014-06-09 17:30:57 -07001854 return -1;
1855 }
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001856}