blob: fa1feca7f71d75901e38835cbc4199b842414fa7 [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 Hughes3bd73c12015-05-05 13:10:43 -070050static int install_app(TransportType t, const char* serial, int argc, const char** argv);
51static int install_multiple_app(TransportType t, const char* serial, int argc, const char** argv);
52static int uninstall_app(TransportType t, const char* serial, int argc, const char** argv);
The Android Open Source 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 Hughesf3bbfa62015-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 " adb shell - run remote shell interactively\n"
114 " adb shell <command> - run remote shell command\n"
115 " adb emu <command> - run emulator console command\n"
116 " adb logcat [ <filter-spec> ] - View device log\n"
David 'Digit' Turner0d82fbf2012-11-14 15:01:55 +0100117 " adb forward --list - list all forward socket connections.\n"
118 " the format is a list of lines with the following format:\n"
119 " <serial> \" \" <local> \" \" <remote> \"\\n\"\n"
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800120 " adb forward <local> <remote> - forward socket connections\n"
121 " forward specs are one of: \n"
122 " tcp:<port>\n"
123 " localabstract:<unix domain socket name>\n"
124 " localreserved:<unix domain socket name>\n"
125 " localfilesystem:<unix domain socket name>\n"
126 " dev:<character device name>\n"
127 " jdwp:<process pid> (remote only)\n"
David 'Digit' Turner0d82fbf2012-11-14 15:01:55 +0100128 " adb forward --no-rebind <local> <remote>\n"
129 " - same as 'adb forward <local> <remote>' but fails\n"
130 " if <local> is already forwarded\n"
131 " adb forward --remove <local> - remove a specific forward socket connection\n"
132 " adb forward --remove-all - remove all forward socket connections\n"
David 'Digit' Turner25258692013-03-21 21:07:42 +0100133 " adb reverse --list - list all reverse socket connections from device\n"
134 " adb reverse <remote> <local> - reverse socket connections\n"
135 " reverse specs are one of:\n"
136 " tcp:<port>\n"
137 " localabstract:<unix domain socket name>\n"
138 " localreserved:<unix domain socket name>\n"
139 " localfilesystem:<unix domain socket name>\n"
140 " adb reverse --norebind <remote> <local>\n"
141 " - same as 'adb reverse <remote> <local>' but fails\n"
142 " if <remote> is already reversed.\n"
143 " adb reverse --remove <remote>\n"
144 " - remove a specific reversed socket connection\n"
145 " adb reverse --remove-all - remove all reversed socket connections from device\n"
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800146 " adb jdwp - list PIDs of processes hosting a JDWP transport\n"
Lorenzo Colitti0b3baac2015-05-28 12:03:44 +0900147 " adb install [-lrtsdg] <file>\n"
Svetoslav23d84072015-06-01 16:02:50 -0700148 " - push this package file to the device and install it\n"
149 " (-l: forward lock application)\n"
150 " (-r: replace existing application)\n"
151 " (-t: allow test packages)\n"
152 " (-s: install application on sdcard)\n"
153 " (-d: allow version code downgrade)\n"
154 " (-g: grant all runtime permissions)\n"
Lorenzo Colitti0b3baac2015-05-28 12:03:44 +0900155 " adb install-multiple [-lrtsdpg] <file...>\n"
Anonymous Coward4474ac42012-04-24 10:43:41 -0700156 " - push this package file to the device and install it\n"
Jeff Sharkey960df972014-06-09 17:30:57 -0700157 " (-l: forward lock application)\n"
158 " (-r: replace existing application)\n"
159 " (-t: allow test packages)\n"
160 " (-s: install application on sdcard)\n"
161 " (-d: allow version code downgrade)\n"
162 " (-p: partial application install)\n"
Lorenzo Colitti0b3baac2015-05-28 12:03:44 +0900163 " (-g: grant all runtime permissions)\n"
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800164 " adb uninstall [-k] <package> - remove this app package from the device\n"
165 " ('-k' means keep the data and cache directories)\n"
166 " adb bugreport - return all information from the device\n"
167 " that should be included in a bug report.\n"
168 "\n"
Christopher Tate0c06eb52013-03-06 16:40:52 -0800169 " adb backup [-f <file>] [-apk|-noapk] [-obb|-noobb] [-shared|-noshared] [-all] [-system|-nosystem] [<packages...>]\n"
Christopher Tate56885092011-10-03 18:27:01 -0700170 " - write an archive of the device's data to <file>.\n"
171 " If no -f option is supplied then the data is written\n"
172 " to \"backup.ab\" in the current directory.\n"
Christopher Tated2f54152011-04-21 12:53:28 -0700173 " (-apk|-noapk enable/disable backup of the .apks themselves\n"
Christopher Tatede034ec2011-08-09 17:05:29 -0700174 " in the archive; the default is noapk.)\n"
Christopher Tate0c06eb52013-03-06 16:40:52 -0800175 " (-obb|-noobb enable/disable backup of any installed apk expansion\n"
176 " (aka .obb) files associated with each application; the default\n"
177 " is noobb.)\n"
Christopher Tated2f54152011-04-21 12:53:28 -0700178 " (-shared|-noshared enable/disable backup of the device's\n"
179 " shared storage / SD card contents; the default is noshared.)\n"
180 " (-all means to back up all installed applications)\n"
Christopher Tate56885092011-10-03 18:27:01 -0700181 " (-system|-nosystem toggles whether -all automatically includes\n"
182 " system applications; the default is to include system apps)\n"
Christopher Tated2f54152011-04-21 12:53:28 -0700183 " (<packages...> is the list of applications to be backed up. If\n"
184 " the -all or -shared flags are passed, then the package\n"
Christopher Tate56885092011-10-03 18:27:01 -0700185 " list is optional. Applications explicitly given on the\n"
186 " command line will be included even if -nosystem would\n"
187 " ordinarily cause them to be omitted.)\n"
Christopher Tated2f54152011-04-21 12:53:28 -0700188 "\n"
Christopher Tatede034ec2011-08-09 17:05:29 -0700189 " adb restore <file> - restore device contents from the <file> backup archive\n"
Christopher Tate702967a2011-05-17 15:52:54 -0700190 "\n"
Paul Lawrence982089d2014-12-03 15:31:57 -0800191 " adb disable-verity - disable dm-verity checking on USERDEBUG builds\n"
192 " adb enable-verity - re-enable dm-verity checking on USERDEBUG builds\n"
Nick Kralevichbea3f9c2014-11-13 15:17:29 -0800193 " adb keygen <file> - generate adb public/private key. The private key is stored in <file>,\n"
194 " and the public key is stored in <file>.pub. Any existing files\n"
195 " are overwritten.\n"
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800196 " adb help - show this help message\n"
197 " adb version - show version num\n"
198 "\n"
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800199 "scripting:\n"
200 " adb wait-for-device - block until device is online\n"
201 " adb start-server - ensure that there is a server running\n"
202 " adb kill-server - kill the server if it is running\n"
203 " adb get-state - prints: offline | bootloader | device\n"
204 " adb get-serialno - prints: <serial-number>\n"
Scott Andersone109d262012-04-20 11:21:14 -0700205 " adb get-devpath - prints: <device-path>\n"
Elliott Hughesec7a6672015-03-16 21:58:32 +0000206 " 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 -0700207 " adb reboot [bootloader|recovery]\n"
208 " - reboots the device, optionally into the bootloader or recovery program.\n"
209 " adb reboot sideload - reboots the device into the sideload mode in recovery program (adb root required).\n"
210 " adb reboot sideload-auto-reboot\n"
211 " - reboots into the sideload mode, then reboots automatically after the sideload regardless of the result.\n"
Elliott Hughes7e067cf2015-06-12 14:26:29 -0700212 " adb sideload <file> - sideloads the given package\n"
Mike Lockwoodff196702009-08-24 15:58:40 -0700213 " adb root - restarts the adbd daemon with root permissions\n"
Dan Pasanen98858812014-10-06 12:57:20 -0500214 " adb unroot - restarts the adbd daemon without root permissions\n"
Romain Guy311add42009-12-14 14:42:17 -0800215 " adb usb - restarts the adbd daemon listening on USB\n"
Paul Lawrenceec900bb2014-10-09 14:22:49 +0000216 " adb tcpip <port> - restarts the adbd daemon listening on TCP on the specified port\n"
Elliott Hughes7e067cf2015-06-12 14:26:29 -0700217 "\n"
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800218 "networking:\n"
219 " adb ppp <tty> [parameters] - Run PPP over USB.\n"
Kenny Rootc9891992009-06-08 14:40:30 -0500220 " Note: you should not automatically start a PPP connection.\n"
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800221 " <tty> refers to the tty for PPP stream. Eg. dev:/dev/omap_csmi_tty1\n"
222 " [parameters] - Eg. defaultroute debug dump local notty usepeerdns\n"
223 "\n"
224 "adb sync notes: adb sync [ <directory> ]\n"
225 " <localdir> can be interpreted in several ways:\n"
226 "\n"
Elliott Hughesec7a6672015-03-16 21:58:32 +0000227 " - 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 -0800228 "\n"
Elliott Hughesec7a6672015-03-16 21:58:32 +0000229 " - If it is \"system\", \"vendor\", \"oem\" or \"data\", only the corresponding partition\n"
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800230 " is updated.\n"
Timcd643152010-02-16 20:18:29 +0000231 "\n"
Elliott Hughes7e067cf2015-06-12 14:26:29 -0700232 "environment variables:\n"
Timcd643152010-02-16 20:18:29 +0000233 " ADB_TRACE - Print debug information. A comma separated list of the following values\n"
234 " 1 or all, adb, sockets, packets, rwx, usb, sync, sysdeps, transport, jdwp\n"
235 " ANDROID_SERIAL - The serial number to connect to. -s takes priority over this if given.\n"
236 " 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 -0800237 );
238}
239
Elliott Hughes58305772015-04-17 13:57:15 -0700240static int usage() {
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800241 help();
242 return 1;
243}
244
Yabin Cuid325e862014-11-17 14:48:25 -0800245#if defined(_WIN32)
246
Elliott Hughesa2f2e562015-04-16 16:47:02 -0700247// Implemented in sysdeps_win32.cpp.
Spencer Low50184062015-03-01 15:06:21 -0800248void stdin_raw_init(int fd);
249void stdin_raw_restore(int fd);
Yabin Cuid325e862014-11-17 14:48:25 -0800250
251#else
Alistair Buxtondfa09fd2013-03-01 22:16:41 +0100252static termios g_saved_terminal_state;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800253
Alistair Buxtondfa09fd2013-03-01 22:16:41 +0100254static void stdin_raw_init(int fd) {
255 if (tcgetattr(fd, &g_saved_terminal_state)) return;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800256
Alistair Buxtondfa09fd2013-03-01 22:16:41 +0100257 termios tio;
258 if (tcgetattr(fd, &tio)) return;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800259
Alistair Buxtondfa09fd2013-03-01 22:16:41 +0100260 cfmakeraw(&tio);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800261
Alistair Buxtondfa09fd2013-03-01 22:16:41 +0100262 // No timeout but request at least one character per read.
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800263 tio.c_cc[VTIME] = 0;
264 tio.c_cc[VMIN] = 1;
265
Alistair Buxtondfa09fd2013-03-01 22:16:41 +0100266 tcsetattr(fd, TCSAFLUSH, &tio);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800267}
268
Alistair Buxtondfa09fd2013-03-01 22:16:41 +0100269static void stdin_raw_restore(int fd) {
270 tcsetattr(fd, TCSAFLUSH, &g_saved_terminal_state);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800271}
272#endif
273
Elliott Hughes5677c232015-05-07 23:37:40 -0700274static void read_and_dump(int fd) {
275 while (fd >= 0) {
JP Abgrall408fa572011-03-16 15:57:42 -0700276 D("read_and_dump(): pre adb_read(fd=%d)\n", fd);
Elliott Hughes5677c232015-05-07 23:37:40 -0700277 char buf[BUFSIZ];
278 int len = adb_read(fd, buf, sizeof(buf));
JP Abgrall408fa572011-03-16 15:57:42 -0700279 D("read_and_dump(): post adb_read(fd=%d): len=%d\n", fd, len);
Elliott Hughes5677c232015-05-07 23:37:40 -0700280 if (len <= 0) {
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800281 break;
282 }
283
Mike Lockwooddd6b36e2009-09-22 01:18:40 -0400284 fwrite(buf, 1, len, stdout);
285 fflush(stdout);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800286 }
287}
288
Jeff Sharkey960df972014-06-09 17:30:57 -0700289static void read_status_line(int fd, char* buf, size_t count)
290{
291 count--;
292 while (count > 0) {
293 int len = adb_read(fd, buf, count);
294 if (len == 0) {
295 break;
296 } else if (len < 0) {
297 if (errno == EINTR) continue;
298 break;
299 }
300
301 buf += len;
302 count -= len;
303 }
304 *buf = '\0';
305}
306
Christopher Tated2f54152011-04-21 12:53:28 -0700307static void copy_to_file(int inFd, int outFd) {
Christopher Tate5b811fa2011-06-10 11:38:37 -0700308 const size_t BUFSIZE = 32 * 1024;
309 char* buf = (char*) malloc(BUFSIZE);
Elliott Hughesdc3b4592015-04-21 19:39:52 -0700310 if (buf == nullptr) fatal("couldn't allocate buffer for copy_to_file");
Christopher Tated2f54152011-04-21 12:53:28 -0700311 int len;
Christopher Tatec9cd3b92011-06-01 17:56:23 -0700312 long total = 0;
Spencer Lowb7dfb792015-05-22 16:48:31 -0700313#ifdef _WIN32
314 int old_stdin_mode = -1;
315 int old_stdout_mode = -1;
316#endif
Christopher Tated2f54152011-04-21 12:53:28 -0700317
318 D("copy_to_file(%d -> %d)\n", inFd, outFd);
Yabin Cuid325e862014-11-17 14:48:25 -0800319
Jeff Sharkey5d9d4342014-05-26 18:30:43 -0700320 if (inFd == STDIN_FILENO) {
321 stdin_raw_init(STDIN_FILENO);
Spencer Lowb7dfb792015-05-22 16:48:31 -0700322#ifdef _WIN32
323 old_stdin_mode = _setmode(STDIN_FILENO, _O_BINARY);
324 if (old_stdin_mode == -1) {
325 fatal_errno("could not set stdin to binary");
326 }
327#endif
Jeff Sharkey5d9d4342014-05-26 18:30:43 -0700328 }
Yabin Cuid325e862014-11-17 14:48:25 -0800329
Spencer Lowb7dfb792015-05-22 16:48:31 -0700330#ifdef _WIN32
331 if (outFd == STDOUT_FILENO) {
332 old_stdout_mode = _setmode(STDOUT_FILENO, _O_BINARY);
333 if (old_stdout_mode == -1) {
334 fatal_errno("could not set stdout to binary");
335 }
336 }
337#endif
338
Elliott Hughesa7090b92015-04-17 17:03:59 -0700339 while (true) {
Jeff Sharkey5d9d4342014-05-26 18:30:43 -0700340 if (inFd == STDIN_FILENO) {
341 len = unix_read(inFd, buf, BUFSIZE);
342 } else {
343 len = adb_read(inFd, buf, BUFSIZE);
344 }
Christopher Tated2f54152011-04-21 12:53:28 -0700345 if (len == 0) {
Christopher Tate5b811fa2011-06-10 11:38:37 -0700346 D("copy_to_file() : read 0 bytes; exiting\n");
Christopher Tated2f54152011-04-21 12:53:28 -0700347 break;
348 }
349 if (len < 0) {
Christopher Tate5b811fa2011-06-10 11:38:37 -0700350 if (errno == EINTR) {
351 D("copy_to_file() : EINTR, retrying\n");
352 continue;
353 }
Christopher Tated2f54152011-04-21 12:53:28 -0700354 D("copy_to_file() : error %d\n", errno);
355 break;
356 }
Jeff Sharkey5d9d4342014-05-26 18:30:43 -0700357 if (outFd == STDOUT_FILENO) {
358 fwrite(buf, 1, len, stdout);
359 fflush(stdout);
360 } else {
361 adb_write(outFd, buf, len);
362 }
Christopher Tatec9cd3b92011-06-01 17:56:23 -0700363 total += len;
Christopher Tated2f54152011-04-21 12:53:28 -0700364 }
Yabin Cuid325e862014-11-17 14:48:25 -0800365
Jeff Sharkey5d9d4342014-05-26 18:30:43 -0700366 if (inFd == STDIN_FILENO) {
367 stdin_raw_restore(STDIN_FILENO);
Spencer Lowb7dfb792015-05-22 16:48:31 -0700368#ifdef _WIN32
369 if (_setmode(STDIN_FILENO, old_stdin_mode) == -1) {
370 fatal_errno("could not restore stdin mode");
371 }
372#endif
Jeff Sharkey5d9d4342014-05-26 18:30:43 -0700373 }
Yabin Cuid325e862014-11-17 14:48:25 -0800374
Spencer Lowb7dfb792015-05-22 16:48:31 -0700375#ifdef _WIN32
376 if (outFd == STDOUT_FILENO) {
377 if (_setmode(STDOUT_FILENO, old_stdout_mode) == -1) {
378 fatal_errno("could not restore stdout mode");
379 }
380 }
381#endif
382
Christopher Tatec9cd3b92011-06-01 17:56:23 -0700383 D("copy_to_file() finished after %lu bytes\n", total);
Christopher Tate5b811fa2011-06-10 11:38:37 -0700384 free(buf);
Christopher Tated2f54152011-04-21 12:53:28 -0700385}
386
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800387static void *stdin_read_thread(void *x)
388{
389 int fd, fdi;
390 unsigned char buf[1024];
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800391 int r, n;
392 int state = 0;
393
394 int *fds = (int*) x;
395 fd = fds[0];
396 fdi = fds[1];
397 free(fds);
398
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800399 for(;;) {
400 /* fdi is really the client's stdin, so use read, not adb_read here */
JP Abgrall408fa572011-03-16 15:57:42 -0700401 D("stdin_read_thread(): pre unix_read(fdi=%d,...)\n", fdi);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800402 r = unix_read(fdi, buf, 1024);
JP Abgrall408fa572011-03-16 15:57:42 -0700403 D("stdin_read_thread(): post unix_read(fdi=%d,...)\n", fdi);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800404 if(r == 0) break;
405 if(r < 0) {
406 if(errno == EINTR) continue;
407 break;
408 }
Mike Lockwood67d53582010-05-25 13:40:15 -0400409 for(n = 0; n < r; n++){
410 switch(buf[n]) {
411 case '\n':
412 state = 1;
413 break;
414 case '\r':
415 state = 1;
416 break;
417 case '~':
418 if(state == 1) state++;
419 break;
420 case '.':
421 if(state == 2) {
422 fprintf(stderr,"\n* disconnect *\n");
Mike Lockwood67d53582010-05-25 13:40:15 -0400423 stdin_raw_restore(fdi);
Mike Lockwood67d53582010-05-25 13:40:15 -0400424 exit(0);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800425 }
Mike Lockwood67d53582010-05-25 13:40:15 -0400426 default:
427 state = 0;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800428 }
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800429 }
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800430 r = adb_write(fd, buf, r);
431 if(r <= 0) {
432 break;
433 }
434 }
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800435 return 0;
436}
437
Elliott Hughes58305772015-04-17 13:57:15 -0700438static int interactive_shell() {
Elliott Hughes078f0fc2015-04-29 08:35:59 -0700439 int fdi;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800440
Elliott Hughes078f0fc2015-04-29 08:35:59 -0700441 std::string error;
442 int fd = adb_connect("shell:", &error);
443 if (fd < 0) {
444 fprintf(stderr,"error: %s\n", error.c_str());
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800445 return 1;
446 }
447 fdi = 0; //dup(0);
448
Dan Albertbac34742015-02-25 17:51:28 -0800449 int* fds = reinterpret_cast<int*>(malloc(sizeof(int) * 2));
Elliott Hughesdc3b4592015-04-21 19:39:52 -0700450 if (fds == nullptr) {
451 fprintf(stderr, "couldn't allocate fds array: %s\n", strerror(errno));
452 return 1;
453 }
454
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800455 fds[0] = fd;
456 fds[1] = fdi;
457
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800458 stdin_raw_init(fdi);
Elliott Hughes9b0f3542015-05-05 13:41:21 -0700459
460 adb_thread_create(stdin_read_thread, fds);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800461 read_and_dump(fd);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800462 stdin_raw_restore(fdi);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800463 return 0;
464}
465
466
Elliott Hughes3bd73c12015-05-05 13:10:43 -0700467static std::string format_host_command(const char* command, TransportType type, const char* serial) {
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800468 if (serial) {
Elliott Hughes6452a892015-04-29 12:28:13 -0700469 return android::base::StringPrintf("host-serial:%s:%s", serial, command);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800470 }
Elliott Hughes6452a892015-04-29 12:28:13 -0700471
472 const char* prefix = "host";
473 if (type == kTransportUsb) {
474 prefix = "host-usb";
475 } else if (type == kTransportLocal) {
476 prefix = "host-local";
477 }
478 return android::base::StringPrintf("%s:%s", prefix, command);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800479}
480
Elliott Hughes6452a892015-04-29 12:28:13 -0700481static int adb_download_buffer(const char *service, const char *fn, const void* data, unsigned sz,
Elliott Hughes078f0fc2015-04-29 08:35:59 -0700482 bool show_progress)
Doug Zongker447f0612012-01-09 14:54:53 -0800483{
Elliott Hughes078f0fc2015-04-29 08:35:59 -0700484 std::string error;
Elliott Hughes6452a892015-04-29 12:28:13 -0700485 int fd = adb_connect(android::base::StringPrintf("%s:%d", service, sz), &error);
Elliott Hughes078f0fc2015-04-29 08:35:59 -0700486 if (fd < 0) {
487 fprintf(stderr,"error: %s\n", error.c_str());
Doug Zongker447f0612012-01-09 14:54:53 -0800488 return -1;
489 }
490
491 int opt = CHUNK_SIZE;
Spencer Lowf055c192015-01-25 14:40:16 -0800492 opt = adb_setsockopt(fd, SOL_SOCKET, SO_SNDBUF, (const void *) &opt, sizeof(opt));
Doug Zongker447f0612012-01-09 14:54:53 -0800493
Elliott Hughes6452a892015-04-29 12:28:13 -0700494 unsigned total = sz;
Dan Albertbac34742015-02-25 17:51:28 -0800495 const uint8_t* ptr = reinterpret_cast<const uint8_t*>(data);
Doug Zongker447f0612012-01-09 14:54:53 -0800496
Elliott Hughes078f0fc2015-04-29 08:35:59 -0700497 if (show_progress) {
Doug Zongker447f0612012-01-09 14:54:53 -0800498 char *x = strrchr(service, ':');
499 if(x) service = x + 1;
500 }
501
Elliott Hughes6452a892015-04-29 12:28:13 -0700502 while (sz > 0) {
Doug Zongker447f0612012-01-09 14:54:53 -0800503 unsigned xfer = (sz > CHUNK_SIZE) ? CHUNK_SIZE : sz;
Elliott Hughes078f0fc2015-04-29 08:35:59 -0700504 if (!WriteFdExactly(fd, ptr, xfer)) {
505 std::string error;
506 adb_status(fd, &error);
507 fprintf(stderr,"* failed to write data '%s' *\n", error.c_str());
Doug Zongker447f0612012-01-09 14:54:53 -0800508 return -1;
509 }
510 sz -= xfer;
511 ptr += xfer;
Elliott Hughes078f0fc2015-04-29 08:35:59 -0700512 if (show_progress) {
Magnus Eriksson86ae6d52013-03-05 07:37:32 +0100513 printf("sending: '%s' %4d%% \r", fn, (int)(100LL - ((100LL * sz) / (total))));
Doug Zongker447f0612012-01-09 14:54:53 -0800514 fflush(stdout);
515 }
516 }
Elliott Hughes078f0fc2015-04-29 08:35:59 -0700517 if (show_progress) {
Doug Zongker447f0612012-01-09 14:54:53 -0800518 printf("\n");
519 }
520
Elliott Hughese67f1f82015-04-30 17:32:03 -0700521 if (!adb_status(fd, &error)) {
522 fprintf(stderr,"* error response '%s' *\n", error.c_str());
Doug Zongker447f0612012-01-09 14:54:53 -0800523 return -1;
524 }
525
526 adb_close(fd);
527 return 0;
528}
529
Doug Zongker71fe5842014-06-26 15:35:36 -0700530#define SIDELOAD_HOST_BLOCK_SIZE (CHUNK_SIZE)
531
532/*
533 * The sideload-host protocol serves the data in a file (given on the
534 * command line) to the client, using a simple protocol:
535 *
536 * - The connect message includes the total number of bytes in the
537 * file and a block size chosen by us.
538 *
539 * - The other side sends the desired block number as eight decimal
540 * digits (eg "00000023" for block 23). Blocks are numbered from
541 * zero.
542 *
543 * - We send back the data of the requested block. The last block is
544 * likely to be partial; when the last block is requested we only
545 * send the part of the block that exists, it's not padded up to the
546 * block size.
547 *
548 * - When the other side sends "DONEDONE" instead of a block number,
549 * we hang up.
550 */
Elliott Hughes58305772015-04-17 13:57:15 -0700551static int adb_sideload_host(const char* fn) {
Doug Zongker71fe5842014-06-26 15:35:36 -0700552 unsigned sz;
553 size_t xfer = 0;
554 int status;
Dan Albertbac34742015-02-25 17:51:28 -0800555 int last_percent = -1;
556 int opt = SIDELOAD_HOST_BLOCK_SIZE;
Doug Zongker71fe5842014-06-26 15:35:36 -0700557
558 printf("loading: '%s'", fn);
559 fflush(stdout);
Dan Albertbac34742015-02-25 17:51:28 -0800560 uint8_t* data = reinterpret_cast<uint8_t*>(load_file(fn, &sz));
Doug Zongker71fe5842014-06-26 15:35:36 -0700561 if (data == 0) {
562 printf("\n");
563 fprintf(stderr, "* cannot read '%s' *\n", fn);
564 return -1;
565 }
566
Elliott Hughes6452a892015-04-29 12:28:13 -0700567 std::string service =
568 android::base::StringPrintf("sideload-host:%d:%d", sz, SIDELOAD_HOST_BLOCK_SIZE);
Elliott Hughes078f0fc2015-04-29 08:35:59 -0700569 std::string error;
Elliott Hughes6452a892015-04-29 12:28:13 -0700570 int fd = adb_connect(service, &error);
Doug Zongker71fe5842014-06-26 15:35:36 -0700571 if (fd < 0) {
572 // Try falling back to the older sideload method. Maybe this
573 // is an older device that doesn't support sideload-host.
574 printf("\n");
Elliott Hughes078f0fc2015-04-29 08:35:59 -0700575 status = adb_download_buffer("sideload", fn, data, sz, true);
Doug Zongker71fe5842014-06-26 15:35:36 -0700576 goto done;
577 }
578
Spencer Lowf055c192015-01-25 14:40:16 -0800579 opt = adb_setsockopt(fd, SOL_SOCKET, SO_SNDBUF, (const void *) &opt, sizeof(opt));
Doug Zongker71fe5842014-06-26 15:35:36 -0700580
Elliott Hughesa7090b92015-04-17 17:03:59 -0700581 while (true) {
Elliott Hughes6452a892015-04-29 12:28:13 -0700582 char buf[9];
Dan Albertcc731cc2015-02-24 21:26:58 -0800583 if (!ReadFdExactly(fd, buf, 8)) {
Elliott Hughes078f0fc2015-04-29 08:35:59 -0700584 fprintf(stderr, "* failed to read command: %s\n", strerror(errno));
Doug Zongker71fe5842014-06-26 15:35:36 -0700585 status = -1;
586 goto done;
587 }
Elliott Hughes6452a892015-04-29 12:28:13 -0700588 buf[8] = '\0';
Doug Zongker71fe5842014-06-26 15:35:36 -0700589
Elliott Hughes6452a892015-04-29 12:28:13 -0700590 if (strcmp("DONEDONE", buf) == 0) {
Doug Zongker71fe5842014-06-26 15:35:36 -0700591 status = 0;
592 break;
593 }
594
Doug Zongker71fe5842014-06-26 15:35:36 -0700595 int block = strtol(buf, NULL, 10);
596
597 size_t offset = block * SIDELOAD_HOST_BLOCK_SIZE;
598 if (offset >= sz) {
Elliott Hughes078f0fc2015-04-29 08:35:59 -0700599 fprintf(stderr, "* attempt to read block %d past end\n", block);
Doug Zongker71fe5842014-06-26 15:35:36 -0700600 status = -1;
601 goto done;
602 }
603 uint8_t* start = data + offset;
604 size_t offset_end = offset + SIDELOAD_HOST_BLOCK_SIZE;
605 size_t to_write = SIDELOAD_HOST_BLOCK_SIZE;
606 if (offset_end > sz) {
607 to_write = sz - offset;
608 }
609
Dan Albertcc731cc2015-02-24 21:26:58 -0800610 if(!WriteFdExactly(fd, start, to_write)) {
Elliott Hughes078f0fc2015-04-29 08:35:59 -0700611 adb_status(fd, &error);
612 fprintf(stderr,"* failed to write data '%s' *\n", error.c_str());
Doug Zongker71fe5842014-06-26 15:35:36 -0700613 status = -1;
614 goto done;
615 }
616 xfer += to_write;
617
618 // For normal OTA packages, we expect to transfer every byte
619 // twice, plus a bit of overhead (one read during
620 // verification, one read of each byte for installation, plus
621 // extra access to things like the zip central directory).
622 // This estimate of the completion becomes 100% when we've
623 // transferred ~2.13 (=100/47) times the package size.
624 int percent = (int)(xfer * 47LL / (sz ? sz : 1));
625 if (percent != last_percent) {
626 printf("\rserving: '%s' (~%d%%) ", fn, percent);
627 fflush(stdout);
628 last_percent = percent;
629 }
630 }
631
Colin Cross6d6a8982014-07-07 14:12:41 -0700632 printf("\rTotal xfer: %.2fx%*s\n", (double)xfer / (sz ? sz : 1), (int)strlen(fn)+10, "");
Doug Zongker71fe5842014-06-26 15:35:36 -0700633
634 done:
635 if (fd >= 0) adb_close(fd);
636 free(data);
637 return status;
638}
639
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800640/**
641 * Run ppp in "notty" mode against a resource listed as the first parameter
642 * eg:
643 *
644 * ppp dev:/dev/omap_csmi_tty0 <ppp options>
645 *
646 */
Elliott Hughes58305772015-04-17 13:57:15 -0700647static int ppp(int argc, const char** argv) {
Yabin Cuie77b6a02014-11-11 09:24:11 -0800648#if defined(_WIN32)
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800649 fprintf(stderr, "error: adb %s not implemented on Win32\n", argv[0]);
650 return -1;
651#else
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800652 if (argc < 2) {
653 fprintf(stderr, "usage: adb %s <adb service name> [ppp opts]\n",
654 argv[0]);
655
656 return 1;
657 }
658
Dan Albertbac34742015-02-25 17:51:28 -0800659 const char* adb_service_name = argv[1];
Elliott Hughes078f0fc2015-04-29 08:35:59 -0700660 std::string error;
661 int fd = adb_connect(adb_service_name, &error);
662 if (fd < 0) {
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800663 fprintf(stderr,"Error: Could not open adb service: %s. Error: %s\n",
Elliott Hughes078f0fc2015-04-29 08:35:59 -0700664 adb_service_name, error.c_str());
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800665 return 1;
666 }
667
Elliott Hughes078f0fc2015-04-29 08:35:59 -0700668 pid_t pid = fork();
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800669
670 if (pid < 0) {
671 perror("from fork()");
672 return 1;
673 } else if (pid == 0) {
674 int err;
675 int i;
676 const char **ppp_args;
677
678 // copy args
679 ppp_args = (const char **) alloca(sizeof(char *) * argc + 1);
680 ppp_args[0] = "pppd";
681 for (i = 2 ; i < argc ; i++) {
682 //argv[2] and beyond become ppp_args[1] and beyond
683 ppp_args[i - 1] = argv[i];
684 }
685 ppp_args[i-1] = NULL;
686
687 // child side
688
689 dup2(fd, STDIN_FILENO);
690 dup2(fd, STDOUT_FILENO);
691 adb_close(STDERR_FILENO);
692 adb_close(fd);
693
694 err = execvp("pppd", (char * const *)ppp_args);
695
696 if (err < 0) {
697 perror("execing pppd");
698 }
699 exit(-1);
700 } else {
701 // parent side
702
703 adb_close(fd);
704 return 0;
705 }
Yabin Cuie77b6a02014-11-11 09:24:11 -0800706#endif /* !defined(_WIN32) */
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800707}
708
Elliott Hughes3bd73c12015-05-05 13:10:43 -0700709static bool wait_for_device(const char* service, TransportType t, const char* serial) {
Elliott Hughes2b101112015-05-04 19:29:32 -0700710 // Was the caller vague about what they'd like us to wait for?
711 // If so, check they weren't more specific in their choice of transport type.
712 if (strcmp(service, "wait-for-device") == 0) {
713 if (t == kTransportUsb) {
714 service = "wait-for-usb";
715 } else if (t == kTransportLocal) {
716 service = "wait-for-local";
717 } else {
718 service = "wait-for-any";
719 }
720 }
721
722 std::string cmd = format_host_command(service, t, serial);
Elliott Hughes424af022015-05-29 17:55:19 -0700723 return adb_command(cmd);
Elliott Hughes2b101112015-05-04 19:29:32 -0700724}
725
Elliott Hughes3bd73c12015-05-05 13:10:43 -0700726static int send_shell_command(TransportType transport_type, const char* serial,
Elliott Hughes2baae3a2015-04-17 10:59:34 -0700727 const std::string& command) {
728 int fd;
729 while (true) {
Elliott Hughes078f0fc2015-04-29 08:35:59 -0700730 std::string error;
Elliott Hughes6452a892015-04-29 12:28:13 -0700731 fd = adb_connect(command, &error);
Elliott Hughes078f0fc2015-04-29 08:35:59 -0700732 if (fd >= 0) {
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800733 break;
Elliott Hughes078f0fc2015-04-29 08:35:59 -0700734 }
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800735 fprintf(stderr,"- waiting for device -\n");
736 adb_sleep_ms(1000);
Elliott Hughes2b101112015-05-04 19:29:32 -0700737 wait_for_device("wait-for-device", transport_type, serial);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800738 }
739
740 read_and_dump(fd);
Elliott Hughes2baae3a2015-04-17 10:59:34 -0700741 int rc = adb_close(fd);
742 if (rc) {
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800743 perror("close");
Elliott Hughes2baae3a2015-04-17 10:59:34 -0700744 }
745 return rc;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800746}
747
Elliott Hughes3bd73c12015-05-05 13:10:43 -0700748static int logcat(TransportType transport, const char* serial, int argc, const char** argv) {
Elliott Hughes2baae3a2015-04-17 10:59:34 -0700749 char* log_tags = getenv("ANDROID_LOG_TAGS");
750 std::string quoted = escape_arg(log_tags == nullptr ? "" : log_tags);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800751
Elliott Hughes2baae3a2015-04-17 10:59:34 -0700752 std::string cmd = "shell:export ANDROID_LOG_TAGS=\"" + quoted + "\"; exec logcat";
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800753
Jeff Sharkeyfd546e82014-06-10 11:31:24 -0700754 if (!strcmp(argv[0], "longcat")) {
Elliott Hughes2baae3a2015-04-17 10:59:34 -0700755 cmd += " -v long";
Christopher Tatedb0a8802011-11-30 13:00:33 -0800756 }
757
Elliott Hughes6c34bba2015-04-17 20:11:08 -0700758 --argc;
759 ++argv;
Elliott Hughes2baae3a2015-04-17 10:59:34 -0700760 while (argc-- > 0) {
Elliott Hughes6c34bba2015-04-17 20:11:08 -0700761 cmd += " " + escape_arg(*argv++);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800762 }
763
Elliott Hughes15551472015-04-21 17:58:55 -0700764 return send_shell_command(transport, serial, cmd);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800765}
766
Dan Albertbac34742015-02-25 17:51:28 -0800767static int backup(int argc, const char** argv) {
Elliott Hughes6c34bba2015-04-17 20:11:08 -0700768 const char* filename = "./backup.ab";
Christopher Tated2f54152011-04-21 12:53:28 -0700769
Christopher Tatec9cd3b92011-06-01 17:56:23 -0700770 /* find, extract, and use any -f argument */
Elliott Hughes6c34bba2015-04-17 20:11:08 -0700771 for (int i = 1; i < argc; i++) {
Christopher Tatec9cd3b92011-06-01 17:56:23 -0700772 if (!strcmp("-f", argv[i])) {
773 if (i == argc-1) {
774 fprintf(stderr, "adb: -f passed with no filename\n");
775 return usage();
776 }
777 filename = argv[i+1];
Elliott Hughes6c34bba2015-04-17 20:11:08 -0700778 for (int j = i+2; j <= argc; ) {
Christopher Tatec9cd3b92011-06-01 17:56:23 -0700779 argv[i++] = argv[j++];
780 }
781 argc -= 2;
782 argv[argc] = NULL;
783 }
Christopher Tated2f54152011-04-21 12:53:28 -0700784 }
785
Christopher Tatebb86bc52011-08-22 17:12:08 -0700786 /* bare "adb backup" or "adb backup -f filename" are not valid invocations */
787 if (argc < 2) return usage();
788
Christopher Tateb1dfffe2011-12-08 19:04:34 -0800789 adb_unlink(filename);
Mark Salyzyn60299df2014-04-30 09:10:31 -0700790 mkdirs(filename);
Elliott Hughes6c34bba2015-04-17 20:11:08 -0700791 int outFd = adb_creat(filename, 0640);
Christopher Tated2f54152011-04-21 12:53:28 -0700792 if (outFd < 0) {
793 fprintf(stderr, "adb: unable to open file %s\n", filename);
794 return -1;
795 }
796
Elliott Hughes6c34bba2015-04-17 20:11:08 -0700797 std::string cmd = "backup:";
798 --argc;
799 ++argv;
800 while (argc-- > 0) {
801 cmd += " " + escape_arg(*argv++);
Christopher Tated2f54152011-04-21 12:53:28 -0700802 }
803
Elliott Hughes6c34bba2015-04-17 20:11:08 -0700804 D("backup. filename=%s cmd=%s\n", filename, cmd.c_str());
Elliott Hughes078f0fc2015-04-29 08:35:59 -0700805 std::string error;
Elliott Hughes6452a892015-04-29 12:28:13 -0700806 int fd = adb_connect(cmd, &error);
Christopher Tated2f54152011-04-21 12:53:28 -0700807 if (fd < 0) {
Elliott Hughes078f0fc2015-04-29 08:35:59 -0700808 fprintf(stderr, "adb: unable to connect for backup: %s\n", error.c_str());
Christopher Tated2f54152011-04-21 12:53:28 -0700809 adb_close(outFd);
810 return -1;
811 }
812
Christopher Tatebffa4ca2012-01-06 15:43:03 -0800813 printf("Now unlock your device and confirm the backup operation.\n");
Christopher Tated2f54152011-04-21 12:53:28 -0700814 copy_to_file(fd, outFd);
815
816 adb_close(fd);
817 adb_close(outFd);
818 return 0;
819}
820
Dan Albertbac34742015-02-25 17:51:28 -0800821static int restore(int argc, const char** argv) {
Christopher Tate702967a2011-05-17 15:52:54 -0700822 if (argc != 2) return usage();
823
Elliott Hughes078f0fc2015-04-29 08:35:59 -0700824 const char* filename = argv[1];
825 int tarFd = adb_open(filename, O_RDONLY);
Christopher Tate702967a2011-05-17 15:52:54 -0700826 if (tarFd < 0) {
Elliott Hughes078f0fc2015-04-29 08:35:59 -0700827 fprintf(stderr, "adb: unable to open file %s: %s\n", filename, strerror(errno));
Christopher Tate702967a2011-05-17 15:52:54 -0700828 return -1;
829 }
830
Elliott Hughes078f0fc2015-04-29 08:35:59 -0700831 std::string error;
832 int fd = adb_connect("restore:", &error);
Christopher Tate702967a2011-05-17 15:52:54 -0700833 if (fd < 0) {
Elliott Hughes078f0fc2015-04-29 08:35:59 -0700834 fprintf(stderr, "adb: unable to connect for restore: %s\n", error.c_str());
Christopher Tate702967a2011-05-17 15:52:54 -0700835 adb_close(tarFd);
836 return -1;
837 }
838
Christopher Tatebffa4ca2012-01-06 15:43:03 -0800839 printf("Now unlock your device and confirm the restore operation.\n");
Christopher Tate702967a2011-05-17 15:52:54 -0700840 copy_to_file(tarFd, fd);
841
842 adb_close(fd);
843 adb_close(tarFd);
844 return 0;
845}
846
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800847/* <hint> may be:
848 * - A simple product name
849 * e.g., "sooner"
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800850 * - A relative path from the CWD to the ANDROID_PRODUCT_OUT dir
851 * e.g., "out/target/product/sooner"
852 * - An absolute path to the PRODUCT_OUT dir
853 * e.g., "/src/device/out/target/product/sooner"
854 *
855 * Given <hint>, try to construct an absolute path to the
856 * ANDROID_PRODUCT_OUT dir.
857 */
Elliott Hughes58305772015-04-17 13:57:15 -0700858static std::string find_product_out_path(const char* hint) {
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800859 if (hint == NULL || hint[0] == '\0') {
Elliott Hughes58305772015-04-17 13:57:15 -0700860 return "";
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800861 }
862
Elliott Hughes58305772015-04-17 13:57:15 -0700863 // If it's already absolute, don't bother doing any work.
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800864 if (adb_is_absolute_host_path(hint)) {
Elliott Hughes58305772015-04-17 13:57:15 -0700865 return hint;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800866 }
867
Elliott Hughes58305772015-04-17 13:57:15 -0700868 // If there are any slashes in it, assume it's a relative path;
869 // make it absolute.
Elliott Hughesa7090b92015-04-17 17:03:59 -0700870 if (adb_dirstart(hint) != nullptr) {
871 std::string cwd;
872 if (!getcwd(&cwd)) {
873 fprintf(stderr, "adb: getcwd failed: %s\n", strerror(errno));
Elliott Hughes58305772015-04-17 13:57:15 -0700874 return "";
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800875 }
Elliott Hughesa7090b92015-04-17 17:03:59 -0700876 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 -0800877 }
878
Elliott Hughes58305772015-04-17 13:57:15 -0700879 // It's a string without any slashes. Try to do something with it.
880 //
881 // Try to find the root of the build tree, and build a PRODUCT_OUT
882 // path from there.
Elliott Hughesa7090b92015-04-17 17:03:59 -0700883 char* top = getenv("ANDROID_BUILD_TOP");
Elliott Hughes58305772015-04-17 13:57:15 -0700884 if (top == nullptr) {
Elliott Hughesa7090b92015-04-17 17:03:59 -0700885 fprintf(stderr, "adb: ANDROID_BUILD_TOP not set!\n");
Elliott Hughes58305772015-04-17 13:57:15 -0700886 return "";
887 }
Elliott Hughesa7090b92015-04-17 17:03:59 -0700888
889 std::string path = top;
Elliott Hughes58305772015-04-17 13:57:15 -0700890 path += OS_PATH_SEPARATOR_STR;
891 path += "out";
892 path += OS_PATH_SEPARATOR_STR;
893 path += "target";
894 path += OS_PATH_SEPARATOR_STR;
895 path += "product";
896 path += OS_PATH_SEPARATOR_STR;
897 path += hint;
898 if (!directory_exists(path)) {
899 fprintf(stderr, "adb: Couldn't find a product dir based on -p %s; "
900 "\"%s\" doesn't exist\n", hint, path.c_str());
Elliott Hughesa7090b92015-04-17 17:03:59 -0700901 return "";
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800902 }
Elliott Hughes58305772015-04-17 13:57:15 -0700903 return path;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800904}
905
Dan Albertbac34742015-02-25 17:51:28 -0800906static void parse_push_pull_args(const char **arg, int narg, char const **path1,
907 char const **path2, int *show_progress,
908 int *copy_attrs) {
Mark Lindner76f2a932014-03-11 17:55:59 -0700909 *show_progress = 0;
Lajos Molnarde8ff4a2013-04-19 12:41:09 -0700910 *copy_attrs = 0;
Mark Lindner76f2a932014-03-11 17:55:59 -0700911
Lajos Molnarde8ff4a2013-04-19 12:41:09 -0700912 while (narg > 0) {
913 if (!strcmp(*arg, "-p")) {
914 *show_progress = 1;
915 } else if (!strcmp(*arg, "-a")) {
916 *copy_attrs = 1;
917 } else {
918 break;
919 }
Mark Lindner76f2a932014-03-11 17:55:59 -0700920 ++arg;
921 --narg;
922 }
923
924 if (narg > 0) {
925 *path1 = *arg;
926 ++arg;
927 --narg;
928 }
929
930 if (narg > 0) {
931 *path2 = *arg;
932 }
933}
934
Elliott Hughes6452a892015-04-29 12:28:13 -0700935static int adb_connect_command(const std::string& command) {
Elliott Hughes078f0fc2015-04-29 08:35:59 -0700936 std::string error;
937 int fd = adb_connect(command, &error);
Elliott Hughes5677c232015-05-07 23:37:40 -0700938 if (fd < 0) {
939 fprintf(stderr, "error: %s\n", error.c_str());
940 return 1;
Tao Bao175b7bb2015-03-29 11:22:34 -0700941 }
Elliott Hughes5677c232015-05-07 23:37:40 -0700942 read_and_dump(fd);
943 adb_close(fd);
944 return 0;
Tao Bao175b7bb2015-03-29 11:22:34 -0700945}
946
Elliott Hughes6452a892015-04-29 12:28:13 -0700947static int adb_query_command(const std::string& command) {
948 std::string result;
949 std::string error;
950 if (!adb_query(command, &result, &error)) {
951 fprintf(stderr, "error: %s\n", error.c_str());
952 return 1;
953 }
954 printf("%s\n", result.c_str());
955 return 0;
956}
957
Elliott Hughesab52c182015-05-01 17:04:38 -0700958int adb_commandline(int argc, const char **argv) {
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800959 int no_daemon = 0;
960 int is_daemon = 0;
David 'Digit' Turner305b4b02011-01-31 14:23:56 +0100961 int is_server = 0;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800962 int r;
Elliott Hughes3bd73c12015-05-05 13:10:43 -0700963 TransportType transport_type = kTransportAny;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800964
Elliott Hughes58305772015-04-17 13:57:15 -0700965 // If defined, this should be an absolute path to
966 // the directory containing all of the various system images
967 // for a particular product. If not defined, and the adb
968 // command requires this information, then the user must
969 // specify the path using "-p".
970 char* ANDROID_PRODUCT_OUT = getenv("ANDROID_PRODUCT_OUT");
971 if (ANDROID_PRODUCT_OUT != nullptr) {
972 gProductOutPath = ANDROID_PRODUCT_OUT;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800973 }
974 // TODO: also try TARGET_PRODUCT/TARGET_DEVICE as a hint
975
Elliott Hughes3bd73c12015-05-05 13:10:43 -0700976 const char* serial = getenv("ANDROID_SERIAL");
Nick Pellydb449262009-05-07 12:48:03 -0700977
Stefan Hilzingera84a42e2010-04-19 12:21:12 +0100978 /* Validate and assign the server port */
Elliott Hughes3bd73c12015-05-05 13:10:43 -0700979 const char* server_port_str = getenv("ANDROID_ADB_SERVER_PORT");
Stefan Hilzingera84a42e2010-04-19 12:21:12 +0100980 int server_port = DEFAULT_ADB_PORT;
981 if (server_port_str && strlen(server_port_str) > 0) {
982 server_port = (int) strtol(server_port_str, NULL, 0);
Matt Gumbeld7b33082012-11-14 10:16:17 -0800983 if (server_port <= 0 || server_port > 65535) {
Stefan Hilzingera84a42e2010-04-19 12:21:12 +0100984 fprintf(stderr,
Matt Gumbeld7b33082012-11-14 10:16:17 -0800985 "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 +0100986 server_port_str);
987 return usage();
988 }
989 }
990
991 /* modifiers and flags */
Riley Andrews98f58e82014-12-05 17:37:24 -0800992 while (argc > 0) {
993 if (!strcmp(argv[0],"server")) {
David 'Digit' Turner305b4b02011-01-31 14:23:56 +0100994 is_server = 1;
Riley Andrews98f58e82014-12-05 17:37:24 -0800995 } else if (!strcmp(argv[0],"nodaemon")) {
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800996 no_daemon = 1;
997 } else if (!strcmp(argv[0], "fork-server")) {
998 /* this is a special flag used only when the ADB client launches the ADB Server */
999 is_daemon = 1;
Riley Andrews98f58e82014-12-05 17:37:24 -08001000 } else if (!strncmp(argv[0], "-p", 2)) {
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001001 const char *product = NULL;
1002 if (argv[0][2] == '\0') {
1003 if (argc < 2) return usage();
1004 product = argv[1];
1005 argc--;
1006 argv++;
1007 } else {
Vairavan Srinivasan81273232012-08-04 16:40:50 -07001008 product = argv[0] + 2;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001009 }
1010 gProductOutPath = find_product_out_path(product);
Elliott Hughes58305772015-04-17 13:57:15 -07001011 if (gProductOutPath.empty()) {
1012 fprintf(stderr, "adb: could not resolve \"-p %s\"\n", product);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001013 return usage();
1014 }
1015 } else if (argv[0][0]=='-' && argv[0][1]=='s') {
1016 if (isdigit(argv[0][2])) {
1017 serial = argv[0] + 2;
1018 } else {
Riley Andrews98f58e82014-12-05 17:37:24 -08001019 if (argc < 2 || argv[0][2] != '\0') return usage();
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001020 serial = argv[1];
1021 argc--;
1022 argv++;
1023 }
1024 } else if (!strcmp(argv[0],"-d")) {
Elliott Hughes3bd73c12015-05-05 13:10:43 -07001025 transport_type = kTransportUsb;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001026 } else if (!strcmp(argv[0],"-e")) {
Elliott Hughes3bd73c12015-05-05 13:10:43 -07001027 transport_type = kTransportLocal;
Matt Gumbeld7b33082012-11-14 10:16:17 -08001028 } else if (!strcmp(argv[0],"-a")) {
1029 gListenAll = 1;
Riley Andrews98f58e82014-12-05 17:37:24 -08001030 } else if (!strncmp(argv[0], "-H", 2)) {
Matt Gumbeld7b33082012-11-14 10:16:17 -08001031 const char *hostname = NULL;
1032 if (argv[0][2] == '\0') {
1033 if (argc < 2) return usage();
1034 hostname = argv[1];
1035 argc--;
1036 argv++;
1037 } else {
1038 hostname = argv[0] + 2;
1039 }
1040 adb_set_tcp_name(hostname);
1041
Riley Andrews98f58e82014-12-05 17:37:24 -08001042 } else if (!strncmp(argv[0], "-P", 2)) {
Matt Gumbeld7b33082012-11-14 10:16:17 -08001043 if (argv[0][2] == '\0') {
1044 if (argc < 2) return usage();
1045 server_port_str = argv[1];
1046 argc--;
1047 argv++;
1048 } else {
1049 server_port_str = argv[0] + 2;
1050 }
1051 if (strlen(server_port_str) > 0) {
1052 server_port = (int) strtol(server_port_str, NULL, 0);
1053 if (server_port <= 0 || server_port > 65535) {
1054 fprintf(stderr,
1055 "adb: port number must be a positive number less than 65536. Got \"%s\"\n",
1056 server_port_str);
1057 return usage();
1058 }
1059 } else {
1060 fprintf(stderr,
1061 "adb: port number must be a positive number less than 65536. Got empty string.\n");
1062 return usage();
1063 }
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001064 } else {
1065 /* out of recognized modifiers and flags */
1066 break;
1067 }
1068 argc--;
1069 argv++;
1070 }
1071
Elliott Hughes3bd73c12015-05-05 13:10:43 -07001072 adb_set_transport(transport_type, serial);
Stefan Hilzingera84a42e2010-04-19 12:21:12 +01001073 adb_set_tcp_specifics(server_port);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001074
David 'Digit' Turner305b4b02011-01-31 14:23:56 +01001075 if (is_server) {
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001076 if (no_daemon || is_daemon) {
Stefan Hilzingera84a42e2010-04-19 12:21:12 +01001077 r = adb_main(is_daemon, server_port);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001078 } else {
Stefan Hilzingera84a42e2010-04-19 12:21:12 +01001079 r = launch_server(server_port);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001080 }
Riley Andrews98f58e82014-12-05 17:37:24 -08001081 if (r) {
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001082 fprintf(stderr,"* could not start server *\n");
1083 }
1084 return r;
1085 }
1086
Riley Andrews98f58e82014-12-05 17:37:24 -08001087 if (argc == 0) {
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001088 return usage();
1089 }
1090
Riley Andrewsc8514c82014-12-05 17:32:46 -08001091 /* handle wait-for-* prefix */
1092 if (!strncmp(argv[0], "wait-for-", strlen("wait-for-"))) {
Dan Albertbac34742015-02-25 17:51:28 -08001093 const char* service = argv[0];
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001094
Elliott Hughes3bd73c12015-05-05 13:10:43 -07001095 if (!wait_for_device(service, transport_type, serial)) {
Riley Andrewsc8514c82014-12-05 17:32:46 -08001096 return 1;
1097 }
1098
Elliott Hughes2b101112015-05-04 19:29:32 -07001099 // Allow a command to be run after wait-for-device,
1100 // e.g. 'adb wait-for-device shell'.
Riley Andrewsc8514c82014-12-05 17:32:46 -08001101 if (argc == 1) {
1102 return 0;
1103 }
1104
1105 /* Fall through */
1106 argc--;
1107 argv++;
1108 }
1109
1110 /* adb_connect() commands */
Riley Andrews98f58e82014-12-05 17:37:24 -08001111 if (!strcmp(argv[0], "devices")) {
Dan Albertbac34742015-02-25 17:51:28 -08001112 const char *listopt;
Elliott Hughes6452a892015-04-29 12:28:13 -07001113 if (argc < 2) {
Scott Andersone109d262012-04-20 11:21:14 -07001114 listopt = "";
Elliott Hughes6452a892015-04-29 12:28:13 -07001115 } else if (argc == 2 && !strcmp(argv[1], "-l")) {
Scott Andersone109d262012-04-20 11:21:14 -07001116 listopt = argv[1];
Elliott Hughes6452a892015-04-29 12:28:13 -07001117 } else {
Scott Andersone109d262012-04-20 11:21:14 -07001118 fprintf(stderr, "Usage: adb devices [-l]\n");
1119 return 1;
1120 }
Elliott Hughes6452a892015-04-29 12:28:13 -07001121
1122 std::string query = android::base::StringPrintf("host:%s%s", argv[0], listopt);
1123 printf("List of devices attached\n");
1124 return adb_query_command(query);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001125 }
Riley Andrewsc8514c82014-12-05 17:32:46 -08001126 else if (!strcmp(argv[0], "connect")) {
Mike Lockwoodff196702009-08-24 15:58:40 -07001127 if (argc != 2) {
Mike Lockwoodcbbe79a2010-05-24 10:44:35 -04001128 fprintf(stderr, "Usage: adb connect <host>[:<port>]\n");
Mike Lockwoodff196702009-08-24 15:58:40 -07001129 return 1;
1130 }
Elliott Hughes6452a892015-04-29 12:28:13 -07001131
1132 std::string query = android::base::StringPrintf("host:connect:%s", argv[1]);
1133 return adb_query_command(query);
Mike Lockwoodcbbe79a2010-05-24 10:44:35 -04001134 }
Riley Andrewsc8514c82014-12-05 17:32:46 -08001135 else if (!strcmp(argv[0], "disconnect")) {
Mike Lockwoodcbbe79a2010-05-24 10:44:35 -04001136 if (argc > 2) {
1137 fprintf(stderr, "Usage: adb disconnect [<host>[:<port>]]\n");
1138 return 1;
1139 }
Elliott Hughes6452a892015-04-29 12:28:13 -07001140
1141 std::string query = android::base::StringPrintf("host:disconnect:%s",
1142 (argc == 2) ? argv[1] : "");
1143 return adb_query_command(query);
Mike Lockwoodff196702009-08-24 15:58:40 -07001144 }
Riley Andrewsc8514c82014-12-05 17:32:46 -08001145 else if (!strcmp(argv[0], "emu")) {
Spencer Low142ec752015-05-06 16:13:42 -07001146 return adb_send_emulator_command(argc, argv, serial);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001147 }
Riley Andrewsc8514c82014-12-05 17:32:46 -08001148 else if (!strcmp(argv[0], "shell") || !strcmp(argv[0], "hell")) {
Daniel Sandlerff91ab82010-08-19 01:10:18 -04001149 char h = (argv[0][0] == 'h');
1150
1151 if (h) {
1152 printf("\x1b[41;33m");
1153 fflush(stdout);
1154 }
1155
Riley Andrews98f58e82014-12-05 17:37:24 -08001156 if (argc < 2) {
JP Abgrall408fa572011-03-16 15:57:42 -07001157 D("starting interactive shell\n");
Daniel Sandlerff91ab82010-08-19 01:10:18 -04001158 r = interactive_shell();
1159 if (h) {
1160 printf("\x1b[0m");
1161 fflush(stdout);
1162 }
1163 return r;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001164 }
1165
Elliott Hughes2baae3a2015-04-17 10:59:34 -07001166 std::string cmd = "shell:";
Elliott Hughes2b101112015-05-04 19:29:32 -07001167 --argc;
1168 ++argv;
Jeff Sharkey5d9d4342014-05-26 18:30:43 -07001169 while (argc-- > 0) {
Elliott Hughes2b101112015-05-04 19:29:32 -07001170 // We don't escape here, just like ssh(1). http://b/20564385.
1171 cmd += *argv++;
1172 if (*argv) cmd += " ";
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001173 }
1174
Elliott Hughes2baae3a2015-04-17 10:59:34 -07001175 while (true) {
1176 D("interactive shell loop. cmd=%s\n", cmd.c_str());
Elliott Hughes078f0fc2015-04-29 08:35:59 -07001177 std::string error;
Elliott Hughes6452a892015-04-29 12:28:13 -07001178 int fd = adb_connect(cmd, &error);
Elliott Hughes2baae3a2015-04-17 10:59:34 -07001179 int r;
Riley Andrews98f58e82014-12-05 17:37:24 -08001180 if (fd >= 0) {
JP Abgrall408fa572011-03-16 15:57:42 -07001181 D("about to read_and_dump(fd=%d)\n", fd);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001182 read_and_dump(fd);
JP Abgrall408fa572011-03-16 15:57:42 -07001183 D("read_and_dump() done.\n");
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001184 adb_close(fd);
1185 r = 0;
1186 } else {
Elliott Hughes078f0fc2015-04-29 08:35:59 -07001187 fprintf(stderr,"error: %s\n", error.c_str());
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001188 r = -1;
1189 }
1190
Elliott Hughes32687be2015-05-05 12:50:26 -07001191 if (h) {
1192 printf("\x1b[0m");
1193 fflush(stdout);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001194 }
Elliott Hughes32687be2015-05-05 12:50:26 -07001195 D("interactive shell loop. return r=%d\n", r);
1196 return r;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001197 }
1198 }
Riley Andrewsc8514c82014-12-05 17:32:46 -08001199 else if (!strcmp(argv[0], "exec-in") || !strcmp(argv[0], "exec-out")) {
Jeff Sharkey5d9d4342014-05-26 18:30:43 -07001200 int exec_in = !strcmp(argv[0], "exec-in");
Jeff Sharkey5d9d4342014-05-26 18:30:43 -07001201
Elliott Hughes2baae3a2015-04-17 10:59:34 -07001202 std::string cmd = "exec:";
1203 cmd += argv[1];
Jeff Sharkey5d9d4342014-05-26 18:30:43 -07001204 argc -= 2;
1205 argv += 2;
1206 while (argc-- > 0) {
Elliott Hughes6c34bba2015-04-17 20:11:08 -07001207 cmd += " " + escape_arg(*argv++);
Jeff Sharkey5d9d4342014-05-26 18:30:43 -07001208 }
1209
Elliott Hughes078f0fc2015-04-29 08:35:59 -07001210 std::string error;
Elliott Hughes6452a892015-04-29 12:28:13 -07001211 int fd = adb_connect(cmd, &error);
Jeff Sharkey5d9d4342014-05-26 18:30:43 -07001212 if (fd < 0) {
Elliott Hughes078f0fc2015-04-29 08:35:59 -07001213 fprintf(stderr, "error: %s\n", error.c_str());
Jeff Sharkey5d9d4342014-05-26 18:30:43 -07001214 return -1;
1215 }
1216
1217 if (exec_in) {
1218 copy_to_file(STDIN_FILENO, fd);
1219 } else {
1220 copy_to_file(fd, STDOUT_FILENO);
1221 }
1222
1223 adb_close(fd);
1224 return 0;
1225 }
Riley Andrewsc8514c82014-12-05 17:32:46 -08001226 else if (!strcmp(argv[0], "kill-server")) {
Elliott Hughes078f0fc2015-04-29 08:35:59 -07001227 std::string error;
1228 int fd = _adb_connect("host:kill", &error);
Riley Andrews98f58e82014-12-05 17:37:24 -08001229 if (fd == -1) {
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001230 fprintf(stderr,"* server not running *\n");
1231 return 1;
1232 }
1233 return 0;
1234 }
Riley Andrewsc8514c82014-12-05 17:32:46 -08001235 else if (!strcmp(argv[0], "sideload")) {
1236 if (argc != 2) return usage();
Doug Zongker71fe5842014-06-26 15:35:36 -07001237 if (adb_sideload_host(argv[1])) {
Doug Zongker447f0612012-01-09 14:54:53 -08001238 return 1;
1239 } else {
1240 return 0;
1241 }
1242 }
Elliott Hughes19d80b82015-07-21 16:13:40 -07001243 else if (!strcmp(argv[0], "tcpip") && argc > 1) {
1244 return adb_connect_command(android::base::StringPrintf("tcpip:%s", argv[1]));
1245 }
Riley Andrewsc8514c82014-12-05 17:32:46 -08001246 else if (!strcmp(argv[0], "remount") ||
1247 !strcmp(argv[0], "reboot") ||
1248 !strcmp(argv[0], "reboot-bootloader") ||
Riley Andrewsc8514c82014-12-05 17:32:46 -08001249 !strcmp(argv[0], "usb") ||
1250 !strcmp(argv[0], "root") ||
Dan Pasanen98858812014-10-06 12:57:20 -05001251 !strcmp(argv[0], "unroot") ||
Riley Andrewsc8514c82014-12-05 17:32:46 -08001252 !strcmp(argv[0], "disable-verity") ||
1253 !strcmp(argv[0], "enable-verity")) {
Elliott Hughes5677c232015-05-07 23:37:40 -07001254 std::string command;
Tao Bao175b7bb2015-03-29 11:22:34 -07001255 if (!strcmp(argv[0], "reboot-bootloader")) {
Elliott Hughes5677c232015-05-07 23:37:40 -07001256 command = "reboot:bootloader";
Tao Bao175b7bb2015-03-29 11:22:34 -07001257 } else if (argc > 1) {
Elliott Hughes5677c232015-05-07 23:37:40 -07001258 command = android::base::StringPrintf("%s:%s", argv[0], argv[1]);
Tao Bao175b7bb2015-03-29 11:22:34 -07001259 } else {
Elliott Hughes5677c232015-05-07 23:37:40 -07001260 command = android::base::StringPrintf("%s:", argv[0]);
The Android Open Source Projecte037fd72009-03-13 13:04:37 -07001261 }
Tao Bao175b7bb2015-03-29 11:22:34 -07001262 return adb_connect_command(command);
The Android Open Source Projecte037fd72009-03-13 13:04:37 -07001263 }
Riley Andrewsc8514c82014-12-05 17:32:46 -08001264 else if (!strcmp(argv[0], "bugreport")) {
Dan Egnorc130ea72010-01-20 13:50:36 -08001265 if (argc != 1) return usage();
Elliott Hughes3bd73c12015-05-05 13:10:43 -07001266 return send_shell_command(transport_type, serial, "shell:bugreport");
Mike Lockwoodf56d1b52009-09-03 14:54:58 -04001267 }
Riley Andrewsc8514c82014-12-05 17:32:46 -08001268 else if (!strcmp(argv[0], "forward") || !strcmp(argv[0], "reverse")) {
Elliott Hughes424af022015-05-29 17:55:19 -07001269 bool reverse = !strcmp(argv[0], "reverse");
1270 ++argv;
1271 --argc;
1272 if (argc < 1) return usage();
David 'Digit' Turner0d82fbf2012-11-14 15:01:55 +01001273
1274 // Determine the <host-prefix> for this command.
Elliott Hughes424af022015-05-29 17:55:19 -07001275 std::string host_prefix;
David 'Digit' Turner25258692013-03-21 21:07:42 +01001276 if (reverse) {
Elliott Hughes424af022015-05-29 17:55:19 -07001277 host_prefix = "reverse";
David 'Digit' Turner0d82fbf2012-11-14 15:01:55 +01001278 } else {
David 'Digit' Turner25258692013-03-21 21:07:42 +01001279 if (serial) {
Elliott Hughes424af022015-05-29 17:55:19 -07001280 host_prefix = android::base::StringPrintf("host-serial:%s", serial);
Elliott Hughes3bd73c12015-05-05 13:10:43 -07001281 } else if (transport_type == kTransportUsb) {
Elliott Hughes424af022015-05-29 17:55:19 -07001282 host_prefix = "host-usb";
Elliott Hughes3bd73c12015-05-05 13:10:43 -07001283 } else if (transport_type == kTransportLocal) {
Elliott Hughes424af022015-05-29 17:55:19 -07001284 host_prefix = "host-local";
David 'Digit' Turner25258692013-03-21 21:07:42 +01001285 } else {
Elliott Hughes424af022015-05-29 17:55:19 -07001286 host_prefix = "host";
David 'Digit' Turner25258692013-03-21 21:07:42 +01001287 }
David 'Digit' Turner0d82fbf2012-11-14 15:01:55 +01001288 }
1289
Elliott Hughes424af022015-05-29 17:55:19 -07001290 std::string cmd;
1291 if (strcmp(argv[0], "--list") == 0) {
Elliott Hughesab52c182015-05-01 17:04:38 -07001292 if (argc != 1) return usage();
Elliott Hughes424af022015-05-29 17:55:19 -07001293 return adb_query_command(host_prefix + ":list-forward");
1294 } else if (strcmp(argv[0], "--remove-all") == 0) {
1295 if (argc != 1) return usage();
1296 cmd = host_prefix + ":killforward-all";
1297 } else if (strcmp(argv[0], "--remove") == 0) {
1298 // forward --remove <local>
Elliott Hughesab52c182015-05-01 17:04:38 -07001299 if (argc != 2) return usage();
Elliott Hughes424af022015-05-29 17:55:19 -07001300 cmd = host_prefix + ":killforward:" + argv[1];
1301 } else if (strcmp(argv[0], "--no-rebind") == 0) {
1302 // forward --no-rebind <local> <remote>
Elliott Hughesab52c182015-05-01 17:04:38 -07001303 if (argc != 3) return usage();
Elliott Hughes424af022015-05-29 17:55:19 -07001304 cmd = host_prefix + ":forward:norebind:" + argv[1] + ";" + argv[2];
1305 } else {
1306 // forward <local> <remote>
1307 if (argc != 2) return usage();
1308 cmd = host_prefix + ":forward:" + argv[0] + ";" + argv[1];
David 'Digit' Turner0d82fbf2012-11-14 15:01:55 +01001309 }
1310
Elliott Hughes424af022015-05-29 17:55:19 -07001311 return adb_command(cmd) ? 0 : 1;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001312 }
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001313 /* do_sync_*() commands */
Riley Andrewsc8514c82014-12-05 17:32:46 -08001314 else if (!strcmp(argv[0], "ls")) {
1315 if (argc != 2) return usage();
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001316 return do_sync_ls(argv[1]);
1317 }
Riley Andrewsc8514c82014-12-05 17:32:46 -08001318 else if (!strcmp(argv[0], "push")) {
Mark Lindner76f2a932014-03-11 17:55:59 -07001319 int show_progress = 0;
Lajos Molnarde8ff4a2013-04-19 12:41:09 -07001320 int copy_attrs = 0; // unused
Mark Lindner76f2a932014-03-11 17:55:59 -07001321 const char* lpath = NULL, *rpath = NULL;
1322
Lajos Molnarde8ff4a2013-04-19 12:41:09 -07001323 parse_push_pull_args(&argv[1], argc - 1, &lpath, &rpath, &show_progress, &copy_attrs);
Mark Lindner76f2a932014-03-11 17:55:59 -07001324
1325 if ((lpath != NULL) && (rpath != NULL)) {
Jeff Sharkey960df972014-06-09 17:30:57 -07001326 return do_sync_push(lpath, rpath, show_progress);
Mark Lindner76f2a932014-03-11 17:55:59 -07001327 }
1328
1329 return usage();
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001330 }
Riley Andrewsc8514c82014-12-05 17:32:46 -08001331 else if (!strcmp(argv[0], "pull")) {
Mark Lindner76f2a932014-03-11 17:55:59 -07001332 int show_progress = 0;
Lajos Molnarde8ff4a2013-04-19 12:41:09 -07001333 int copy_attrs = 0;
Mark Lindner76f2a932014-03-11 17:55:59 -07001334 const char* rpath = NULL, *lpath = ".";
1335
Lajos Molnarde8ff4a2013-04-19 12:41:09 -07001336 parse_push_pull_args(&argv[1], argc - 1, &rpath, &lpath, &show_progress, &copy_attrs);
Mark Lindner76f2a932014-03-11 17:55:59 -07001337
1338 if (rpath != NULL) {
Lajos Molnarde8ff4a2013-04-19 12:41:09 -07001339 return do_sync_pull(rpath, lpath, show_progress, copy_attrs);
Joe Onorato00c0eea2010-01-05 13:42:25 -08001340 }
Mark Lindner76f2a932014-03-11 17:55:59 -07001341
1342 return usage();
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001343 }
Riley Andrewsc8514c82014-12-05 17:32:46 -08001344 else if (!strcmp(argv[0], "install")) {
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001345 if (argc < 2) return usage();
Elliott Hughes3bd73c12015-05-05 13:10:43 -07001346 return install_app(transport_type, serial, argc, argv);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001347 }
Riley Andrewsc8514c82014-12-05 17:32:46 -08001348 else if (!strcmp(argv[0], "install-multiple")) {
Jeff Sharkey960df972014-06-09 17:30:57 -07001349 if (argc < 2) return usage();
Elliott Hughes3bd73c12015-05-05 13:10:43 -07001350 return install_multiple_app(transport_type, serial, argc, argv);
Jeff Sharkey960df972014-06-09 17:30:57 -07001351 }
Riley Andrewsc8514c82014-12-05 17:32:46 -08001352 else if (!strcmp(argv[0], "uninstall")) {
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001353 if (argc < 2) return usage();
Elliott Hughes3bd73c12015-05-05 13:10:43 -07001354 return uninstall_app(transport_type, serial, argc, argv);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001355 }
Riley Andrewsc8514c82014-12-05 17:32:46 -08001356 else if (!strcmp(argv[0], "sync")) {
Elliott Hughesd236d072015-04-21 10:17:07 -07001357 std::string src;
Elliott Hughes58305772015-04-17 13:57:15 -07001358 bool list_only = false;
Riley Andrews98f58e82014-12-05 17:37:24 -08001359 if (argc < 2) {
Elliott Hughes58305772015-04-17 13:57:15 -07001360 // No local path was specified.
Elliott Hughesd236d072015-04-21 10:17:07 -07001361 src = "";
Anthony Newnam705c9442010-02-22 08:36:49 -06001362 } else if (argc >= 2 && strcmp(argv[1], "-l") == 0) {
Elliott Hughesd236d072015-04-21 10:17:07 -07001363 list_only = true;
Anthony Newnam705c9442010-02-22 08:36:49 -06001364 if (argc == 3) {
Elliott Hughesd236d072015-04-21 10:17:07 -07001365 src = argv[2];
Anthony Newnam705c9442010-02-22 08:36:49 -06001366 } else {
Elliott Hughesd236d072015-04-21 10:17:07 -07001367 src = "";
Anthony Newnam705c9442010-02-22 08:36:49 -06001368 }
Riley Andrews98f58e82014-12-05 17:37:24 -08001369 } else if (argc == 2) {
Elliott Hughes58305772015-04-17 13:57:15 -07001370 // A local path or "android"/"data" arg was specified.
Elliott Hughesd236d072015-04-21 10:17:07 -07001371 src = argv[1];
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001372 } else {
1373 return usage();
1374 }
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001375
Elliott Hughesd236d072015-04-21 10:17:07 -07001376 if (src != "" &&
1377 src != "system" && src != "data" && src != "vendor" && src != "oem") {
Elliott Hughes58305772015-04-17 13:57:15 -07001378 return usage();
1379 }
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001380
Elliott Hughes58305772015-04-17 13:57:15 -07001381 std::string system_src_path = product_file("system");
1382 std::string data_src_path = product_file("data");
1383 std::string vendor_src_path = product_file("vendor");
1384 std::string oem_src_path = product_file("oem");
Elliott Hughes58305772015-04-17 13:57:15 -07001385
1386 int rc = 0;
Elliott Hughesd236d072015-04-21 10:17:07 -07001387 if (rc == 0 && (src.empty() || src == "system")) {
1388 rc = do_sync_sync(system_src_path, "/system", list_only);
Elliott Hughes58305772015-04-17 13:57:15 -07001389 }
Elliott Hughesd236d072015-04-21 10:17:07 -07001390 if (rc == 0 && (src.empty() || src == "vendor") && directory_exists(vendor_src_path)) {
1391 rc = do_sync_sync(vendor_src_path, "/vendor", list_only);
Elliott Hughes58305772015-04-17 13:57:15 -07001392 }
Elliott Hughesd236d072015-04-21 10:17:07 -07001393 if (rc == 0 && (src.empty() || src == "oem") && directory_exists(oem_src_path)) {
1394 rc = do_sync_sync(oem_src_path, "/oem", list_only);
Elliott Hughes58305772015-04-17 13:57:15 -07001395 }
Elliott Hughesd236d072015-04-21 10:17:07 -07001396 if (rc == 0 && (src.empty() || src == "data")) {
1397 rc = do_sync_sync(data_src_path, "/data", list_only);
Elliott Hughes58305772015-04-17 13:57:15 -07001398 }
1399 return rc;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001400 }
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001401 /* passthrough commands */
Riley Andrewsc8514c82014-12-05 17:32:46 -08001402 else if (!strcmp(argv[0],"get-state") ||
Scott Andersone109d262012-04-20 11:21:14 -07001403 !strcmp(argv[0],"get-serialno") ||
1404 !strcmp(argv[0],"get-devpath"))
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001405 {
Elliott Hughes3bd73c12015-05-05 13:10:43 -07001406 return adb_query_command(format_host_command(argv[0], transport_type, serial));
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001407 }
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001408 /* other commands */
Riley Andrewsc8514c82014-12-05 17:32:46 -08001409 else if (!strcmp(argv[0],"logcat") || !strcmp(argv[0],"lolcat") || !strcmp(argv[0],"longcat")) {
Elliott Hughes3bd73c12015-05-05 13:10:43 -07001410 return logcat(transport_type, serial, argc, argv);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001411 }
Riley Andrewsc8514c82014-12-05 17:32:46 -08001412 else if (!strcmp(argv[0],"ppp")) {
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001413 return ppp(argc, argv);
1414 }
Riley Andrewsc8514c82014-12-05 17:32:46 -08001415 else if (!strcmp(argv[0], "start-server")) {
Elliott Hughes078f0fc2015-04-29 08:35:59 -07001416 std::string error;
1417 return adb_connect("host:start-server", &error);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001418 }
Riley Andrewsc8514c82014-12-05 17:32:46 -08001419 else if (!strcmp(argv[0], "backup")) {
Christopher Tated2f54152011-04-21 12:53:28 -07001420 return backup(argc, argv);
1421 }
Riley Andrewsc8514c82014-12-05 17:32:46 -08001422 else if (!strcmp(argv[0], "restore")) {
Christopher Tate702967a2011-05-17 15:52:54 -07001423 return restore(argc, argv);
1424 }
Riley Andrewsc8514c82014-12-05 17:32:46 -08001425 else if (!strcmp(argv[0], "keygen")) {
Nick Kralevichbea3f9c2014-11-13 15:17:29 -08001426 if (argc < 2) return usage();
1427 return adb_auth_keygen(argv[1]);
1428 }
Riley Andrewsc8514c82014-12-05 17:32:46 -08001429 else if (!strcmp(argv[0], "jdwp")) {
Tao Bao175b7bb2015-03-29 11:22:34 -07001430 return adb_connect_command("jdwp");
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001431 }
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001432 /* "adb /?" is a common idiom under Windows */
Riley Andrewsc8514c82014-12-05 17:32:46 -08001433 else if (!strcmp(argv[0], "help") || !strcmp(argv[0], "/?")) {
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001434 help();
1435 return 0;
1436 }
Riley Andrewsc8514c82014-12-05 17:32:46 -08001437 else if (!strcmp(argv[0], "version")) {
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001438 version(stdout);
1439 return 0;
1440 }
1441
1442 usage();
1443 return 1;
1444}
1445
Elliott Hughes3bd73c12015-05-05 13:10:43 -07001446static int pm_command(TransportType transport, const char* serial, int argc, const char** argv) {
Elliott Hughes2baae3a2015-04-17 10:59:34 -07001447 std::string cmd = "shell:pm";
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001448
Elliott Hughes2baae3a2015-04-17 10:59:34 -07001449 while (argc-- > 0) {
Elliott Hughes6c34bba2015-04-17 20:11:08 -07001450 cmd += " " + escape_arg(*argv++);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001451 }
1452
Elliott Hughes15551472015-04-21 17:58:55 -07001453 return send_shell_command(transport, serial, cmd);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001454}
1455
Elliott Hughes3bd73c12015-05-05 13:10:43 -07001456static int uninstall_app(TransportType transport, const char* serial, int argc, const char** argv) {
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001457 /* if the user choose the -k option, we refuse to do it until devices are
1458 out with the option to uninstall the remaining data somehow (adb/ui) */
1459 if (argc == 3 && strcmp(argv[1], "-k") == 0)
1460 {
1461 printf(
1462 "The -k option uninstalls the application while retaining the data/cache.\n"
1463 "At the moment, there is no way to remove the remaining data.\n"
1464 "You will have to reinstall the application with the same signature, and fully uninstall it.\n"
1465 "If you truly wish to continue, execute 'adb shell pm uninstall -k %s'\n", argv[2]);
1466 return -1;
1467 }
1468
1469 /* 'adb uninstall' takes the same arguments as 'pm uninstall' on device */
1470 return pm_command(transport, serial, argc, argv);
1471}
1472
Dan Albert286bb6d2015-07-09 20:35:09 +00001473static int delete_file(TransportType transport, const char* serial, char* filename) {
Elliott Hughes2baae3a2015-04-17 10:59:34 -07001474 std::string cmd = "shell:rm -f " + escape_arg(filename);
Elliott Hughes15551472015-04-21 17:58:55 -07001475 return send_shell_command(transport, serial, cmd);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001476}
1477
Kenny Root597ea5b2011-08-05 11:19:45 -07001478static const char* get_basename(const char* filename)
1479{
1480 const char* basename = adb_dirstop(filename);
1481 if (basename) {
1482 basename++;
1483 return basename;
1484 } else {
1485 return filename;
1486 }
1487}
1488
Elliott Hughes3bd73c12015-05-05 13:10:43 -07001489static int install_app(TransportType transport, const char* serial, int argc, const char** argv) {
Dan Albert286bb6d2015-07-09 20:35:09 +00001490 static const char *const DATA_DEST = "/data/local/tmp/%s";
1491 static const char *const SD_DEST = "/sdcard/tmp/%s";
Kenny Root597ea5b2011-08-05 11:19:45 -07001492 const char* where = DATA_DEST;
Kenny Root597ea5b2011-08-05 11:19:45 -07001493 int i;
Jeff Sharkey960df972014-06-09 17:30:57 -07001494 struct stat sb;
Kenny Root597ea5b2011-08-05 11:19:45 -07001495
1496 for (i = 1; i < argc; i++) {
Jeff Sharkey960df972014-06-09 17:30:57 -07001497 if (!strcmp(argv[i], "-s")) {
Kenny Root597ea5b2011-08-05 11:19:45 -07001498 where = SD_DEST;
1499 }
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001500 }
1501
Jeff Sharkey960df972014-06-09 17:30:57 -07001502 // Find last APK argument.
1503 // All other arguments passed through verbatim.
1504 int last_apk = -1;
1505 for (i = argc - 1; i >= 0; i--) {
Dan Albertbac34742015-02-25 17:51:28 -08001506 const char* file = argv[i];
Jeff Sharkey960df972014-06-09 17:30:57 -07001507 char* dot = strrchr(file, '.');
1508 if (dot && !strcasecmp(dot, ".apk")) {
1509 if (stat(file, &sb) == -1 || !S_ISREG(sb.st_mode)) {
1510 fprintf(stderr, "Invalid APK file: %s\n", file);
1511 return -1;
1512 }
1513
1514 last_apk = i;
1515 break;
1516 }
Kenny Root597ea5b2011-08-05 11:19:45 -07001517 }
1518
Jeff Sharkey960df972014-06-09 17:30:57 -07001519 if (last_apk == -1) {
1520 fprintf(stderr, "Missing APK file\n");
1521 return -1;
Kenny Root597ea5b2011-08-05 11:19:45 -07001522 }
1523
Dan Albertbac34742015-02-25 17:51:28 -08001524 const char* apk_file = argv[last_apk];
Dan Albert286bb6d2015-07-09 20:35:09 +00001525 char apk_dest[PATH_MAX];
1526 snprintf(apk_dest, sizeof apk_dest, where, get_basename(apk_file));
1527 int err = do_sync_push(apk_file, apk_dest, 0 /* no show progress */);
Kenny Root597ea5b2011-08-05 11:19:45 -07001528 if (err) {
Kenny Root60733e92012-03-26 16:14:02 -07001529 goto cleanup_apk;
Kenny Root597ea5b2011-08-05 11:19:45 -07001530 } else {
Dan Albert286bb6d2015-07-09 20:35:09 +00001531 argv[last_apk] = apk_dest; /* destination name, not source location */
Kenny Root597ea5b2011-08-05 11:19:45 -07001532 }
1533
Elliott Hughes15551472015-04-21 17:58:55 -07001534 err = pm_command(transport, serial, argc, argv);
Kenny Root597ea5b2011-08-05 11:19:45 -07001535
Kenny Root60733e92012-03-26 16:14:02 -07001536cleanup_apk:
Dan Albert286bb6d2015-07-09 20:35:09 +00001537 delete_file(transport, serial, apk_dest);
Jeff Sharkey960df972014-06-09 17:30:57 -07001538 return err;
1539}
1540
Elliott Hughes3bd73c12015-05-05 13:10:43 -07001541static int install_multiple_app(TransportType transport, const char* serial, int argc,
Elliott Hughes58305772015-04-17 13:57:15 -07001542 const char** argv)
Jeff Sharkey960df972014-06-09 17:30:57 -07001543{
Jeff Sharkey960df972014-06-09 17:30:57 -07001544 int i;
1545 struct stat sb;
Elliott Hughes2940ccf2015-04-17 14:07:52 -07001546 uint64_t total_size = 0;
Jeff Sharkey960df972014-06-09 17:30:57 -07001547
1548 // Find all APK arguments starting at end.
1549 // All other arguments passed through verbatim.
1550 int first_apk = -1;
1551 for (i = argc - 1; i >= 0; i--) {
Dan Albertbac34742015-02-25 17:51:28 -08001552 const char* file = argv[i];
Jeff Sharkey960df972014-06-09 17:30:57 -07001553 char* dot = strrchr(file, '.');
1554 if (dot && !strcasecmp(dot, ".apk")) {
1555 if (stat(file, &sb) == -1 || !S_ISREG(sb.st_mode)) {
1556 fprintf(stderr, "Invalid APK file: %s\n", file);
1557 return -1;
1558 }
1559
1560 total_size += sb.st_size;
1561 first_apk = i;
1562 } else {
1563 break;
1564 }
Kenny Root597ea5b2011-08-05 11:19:45 -07001565 }
1566
Jeff Sharkey960df972014-06-09 17:30:57 -07001567 if (first_apk == -1) {
1568 fprintf(stderr, "Missing APK file\n");
1569 return 1;
1570 }
Kenny Root597ea5b2011-08-05 11:19:45 -07001571
Elliott Hughes2940ccf2015-04-17 14:07:52 -07001572 std::string cmd = android::base::StringPrintf("exec:pm install-create -S %" PRIu64, total_size);
Jeff Sharkey960df972014-06-09 17:30:57 -07001573 for (i = 1; i < first_apk; i++) {
Elliott Hughes6c34bba2015-04-17 20:11:08 -07001574 cmd += " " + escape_arg(argv[i]);
Jeff Sharkey960df972014-06-09 17:30:57 -07001575 }
1576
1577 // Create install session
Elliott Hughes078f0fc2015-04-29 08:35:59 -07001578 std::string error;
Elliott Hughes6452a892015-04-29 12:28:13 -07001579 int fd = adb_connect(cmd, &error);
Jeff Sharkey960df972014-06-09 17:30:57 -07001580 if (fd < 0) {
Elliott Hughes078f0fc2015-04-29 08:35:59 -07001581 fprintf(stderr, "Connect error for create: %s\n", error.c_str());
Jeff Sharkey960df972014-06-09 17:30:57 -07001582 return -1;
1583 }
Elliott Hughes2baae3a2015-04-17 10:59:34 -07001584 char buf[BUFSIZ];
Jeff Sharkey960df972014-06-09 17:30:57 -07001585 read_status_line(fd, buf, sizeof(buf));
1586 adb_close(fd);
1587
1588 int session_id = -1;
1589 if (!strncmp("Success", buf, 7)) {
1590 char* start = strrchr(buf, '[');
1591 char* end = strrchr(buf, ']');
1592 if (start && end) {
1593 *end = '\0';
1594 session_id = strtol(start + 1, NULL, 10);
1595 }
1596 }
1597 if (session_id < 0) {
1598 fprintf(stderr, "Failed to create session\n");
Christopher Tate71bbc672014-07-14 16:45:13 -07001599 fputs(buf, stderr);
Jeff Sharkey960df972014-06-09 17:30:57 -07001600 return -1;
1601 }
1602
1603 // Valid session, now stream the APKs
1604 int success = 1;
1605 for (i = first_apk; i < argc; i++) {
Dan Albertbac34742015-02-25 17:51:28 -08001606 const char* file = argv[i];
Jeff Sharkey960df972014-06-09 17:30:57 -07001607 if (stat(file, &sb) == -1) {
1608 fprintf(stderr, "Failed to stat %s\n", file);
1609 success = 0;
1610 goto finalize_session;
1611 }
1612
Elliott Hughes2940ccf2015-04-17 14:07:52 -07001613 std::string cmd = android::base::StringPrintf(
1614 "exec:pm install-write -S %" PRIu64 " %d %d_%s -",
1615 static_cast<uint64_t>(sb.st_size), session_id, i, get_basename(file));
Jeff Sharkey960df972014-06-09 17:30:57 -07001616
1617 int localFd = adb_open(file, O_RDONLY);
1618 if (localFd < 0) {
Elliott Hughes078f0fc2015-04-29 08:35:59 -07001619 fprintf(stderr, "Failed to open %s: %s\n", file, strerror(errno));
Jeff Sharkey960df972014-06-09 17:30:57 -07001620 success = 0;
1621 goto finalize_session;
1622 }
1623
Elliott Hughes078f0fc2015-04-29 08:35:59 -07001624 std::string error;
Elliott Hughes6452a892015-04-29 12:28:13 -07001625 int remoteFd = adb_connect(cmd, &error);
Jeff Sharkey960df972014-06-09 17:30:57 -07001626 if (remoteFd < 0) {
Elliott Hughes078f0fc2015-04-29 08:35:59 -07001627 fprintf(stderr, "Connect error for write: %s\n", error.c_str());
Jeff Sharkey960df972014-06-09 17:30:57 -07001628 adb_close(localFd);
1629 success = 0;
1630 goto finalize_session;
1631 }
1632
1633 copy_to_file(localFd, remoteFd);
1634 read_status_line(remoteFd, buf, sizeof(buf));
1635
1636 adb_close(localFd);
1637 adb_close(remoteFd);
1638
1639 if (strncmp("Success", buf, 7)) {
1640 fprintf(stderr, "Failed to write %s\n", file);
Christopher Tate71bbc672014-07-14 16:45:13 -07001641 fputs(buf, stderr);
Jeff Sharkey960df972014-06-09 17:30:57 -07001642 success = 0;
1643 goto finalize_session;
1644 }
1645 }
1646
1647finalize_session:
Jeff Sharkeyac77e1f2014-07-25 09:58:25 -07001648 // Commit session if we streamed everything okay; otherwise abandon
Elliott Hughes6452a892015-04-29 12:28:13 -07001649 std::string service =
1650 android::base::StringPrintf("exec:pm install-%s %d",
1651 success ? "commit" : "abandon", session_id);
1652 fd = adb_connect(service, &error);
Jeff Sharkey960df972014-06-09 17:30:57 -07001653 if (fd < 0) {
Elliott Hughes078f0fc2015-04-29 08:35:59 -07001654 fprintf(stderr, "Connect error for finalize: %s\n", error.c_str());
Jeff Sharkey960df972014-06-09 17:30:57 -07001655 return -1;
1656 }
1657 read_status_line(fd, buf, sizeof(buf));
1658 adb_close(fd);
1659
1660 if (!strncmp("Success", buf, 7)) {
Christopher Tate71bbc672014-07-14 16:45:13 -07001661 fputs(buf, stderr);
Jeff Sharkey960df972014-06-09 17:30:57 -07001662 return 0;
1663 } else {
1664 fprintf(stderr, "Failed to finalize session\n");
Christopher Tate71bbc672014-07-14 16:45:13 -07001665 fputs(buf, stderr);
Jeff Sharkey960df972014-06-09 17:30:57 -07001666 return -1;
1667 }
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001668}