The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 1 | /* |
| 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 Albert | 3313426 | 2015-03-19 15:21:08 -0700 | [diff] [blame] | 17 | #define TRACE_TAG TRACE_ADB |
| 18 | |
| 19 | #include "sysdeps.h" |
| 20 | |
Dan Albert | 7664901 | 2015-02-24 15:51:19 -0800 | [diff] [blame] | 21 | #include <assert.h> |
| 22 | #include <ctype.h> |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 23 | #include <errno.h> |
Elliott Hughes | 2940ccf | 2015-04-17 14:07:52 -0700 | [diff] [blame] | 24 | #include <inttypes.h> |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 25 | #include <limits.h> |
| 26 | #include <stdarg.h> |
Dan Albert | 7664901 | 2015-02-24 15:51:19 -0800 | [diff] [blame] | 27 | #include <stdint.h> |
| 28 | #include <stdio.h> |
| 29 | #include <stdlib.h> |
| 30 | #include <string.h> |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 31 | #include <sys/stat.h> |
Dan Albert | 7664901 | 2015-02-24 15:51:19 -0800 | [diff] [blame] | 32 | #include <sys/types.h> |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 33 | |
Elliott Hughes | 2baae3a | 2015-04-17 10:59:34 -0700 | [diff] [blame] | 34 | #include <string> |
| 35 | |
| 36 | #include <base/stringprintf.h> |
| 37 | |
Yabin Cui | d325e86 | 2014-11-17 14:48:25 -0800 | [diff] [blame] | 38 | #if !defined(_WIN32) |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 39 | #include <termios.h> |
Dan Albert | 7664901 | 2015-02-24 15:51:19 -0800 | [diff] [blame] | 40 | #include <unistd.h> |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 41 | #endif |
| 42 | |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 43 | #include "adb.h" |
Nick Kralevich | bea3f9c | 2014-11-13 15:17:29 -0800 | [diff] [blame] | 44 | #include "adb_auth.h" |
Dan Albert | cc731cc | 2015-02-24 21:26:58 -0800 | [diff] [blame] | 45 | #include "adb_client.h" |
| 46 | #include "adb_io.h" |
Elliott Hughes | 5830577 | 2015-04-17 13:57:15 -0700 | [diff] [blame] | 47 | #include "adb_utils.h" |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 48 | #include "file_sync_service.h" |
| 49 | |
Dan Albert | bac3474 | 2015-02-25 17:51:28 -0800 | [diff] [blame] | 50 | static int do_cmd(transport_type ttype, const char* serial, const char *cmd, ...); |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 51 | |
Elliott Hughes | 5830577 | 2015-04-17 13:57:15 -0700 | [diff] [blame] | 52 | static int install_app(transport_type transport, const char* serial, int argc, |
| 53 | const char** argv); |
| 54 | static int install_multiple_app(transport_type transport, const char* serial, int argc, |
| 55 | const char** argv); |
| 56 | static int uninstall_app(transport_type transport, const char* serial, int argc, |
Dan Albert | bac3474 | 2015-02-25 17:51:28 -0800 | [diff] [blame] | 57 | const char** argv); |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 58 | |
Elliott Hughes | 5830577 | 2015-04-17 13:57:15 -0700 | [diff] [blame] | 59 | static std::string gProductOutPath; |
Matt Gumbel | d7b3308 | 2012-11-14 10:16:17 -0800 | [diff] [blame] | 60 | extern int gListenAll; |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 61 | |
Elliott Hughes | 5830577 | 2015-04-17 13:57:15 -0700 | [diff] [blame] | 62 | static std::string product_file(const char *extra) { |
| 63 | if (gProductOutPath.empty()) { |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 64 | fprintf(stderr, "adb: Product directory not specified; " |
| 65 | "use -p or define ANDROID_PRODUCT_OUT\n"); |
| 66 | exit(1); |
| 67 | } |
| 68 | |
Elliott Hughes | 5830577 | 2015-04-17 13:57:15 -0700 | [diff] [blame] | 69 | return android::base::StringPrintf("%s%s%s", |
| 70 | gProductOutPath.c_str(), OS_PATH_SEPARATOR_STR, extra); |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 71 | } |
| 72 | |
Elliott Hughes | 5830577 | 2015-04-17 13:57:15 -0700 | [diff] [blame] | 73 | static void version(FILE* out) { |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 74 | fprintf(out, "Android Debug Bridge version %d.%d.%d\n", |
Elliott Hughes | 5830577 | 2015-04-17 13:57:15 -0700 | [diff] [blame] | 75 | ADB_VERSION_MAJOR, ADB_VERSION_MINOR, ADB_SERVER_VERSION); |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 76 | } |
| 77 | |
Elliott Hughes | 5830577 | 2015-04-17 13:57:15 -0700 | [diff] [blame] | 78 | static void help() { |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 79 | version(stderr); |
| 80 | |
| 81 | fprintf(stderr, |
| 82 | "\n" |
Matt Gumbel | d7b3308 | 2012-11-14 10:16:17 -0800 | [diff] [blame] | 83 | " -a - directs adb to listen on all interfaces for a connection\n" |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 84 | " -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 Anderson | e109d26 | 2012-04-20 11:21:14 -0700 | [diff] [blame] | 88 | " -s <specific device> - directs command to the device or emulator with the given\n" |
Scott Anderson | 2ca3e6b | 2012-05-30 18:11:27 -0700 | [diff] [blame] | 89 | " serial number or qualifier. Overrides ANDROID_SERIAL\n" |
Elliott Hughes | 31dbed7 | 2009-10-07 15:38:53 -0700 | [diff] [blame] | 90 | " environment variable.\n" |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 91 | " -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 Gumbel | d7b3308 | 2012-11-14 10:16:17 -0800 | [diff] [blame] | 97 | " -H - Name of adb server host (default: localhost)\n" |
| 98 | " -P - Port of adb server (default: 5037)\n" |
Scott Anderson | e109d26 | 2012-04-20 11:21:14 -0700 | [diff] [blame] | 99 | " devices [-l] - list all connected devices\n" |
Scott Anderson | 2ca3e6b | 2012-05-30 18:11:27 -0700 | [diff] [blame] | 100 | " ('-l' will also list device qualifiers)\n" |
Mike Lockwood | cbbe79a | 2010-05-24 10:44:35 -0400 | [diff] [blame] | 101 | " 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-Fischer | 6715a43 | 2011-04-26 12:46:05 +0200 | [diff] [blame] | 105 | " Using this command with no additional arguments\n" |
Mike Lockwood | cbbe79a | 2010-05-24 10:44:35 -0400 | [diff] [blame] | 106 | " will disconnect from all connected TCP/IP devices.\n" |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 107 | "\n" |
| 108 | "device commands:\n" |
Mark Lindner | 76f2a93 | 2014-03-11 17:55:59 -0700 | [diff] [blame] | 109 | " adb push [-p] <local> <remote>\n" |
| 110 | " - copy file/dir to device\n" |
| 111 | " ('-p' to display the transfer progress)\n" |
Lajos Molnar | de8ff4a | 2013-04-19 12:41:09 -0700 | [diff] [blame] | 112 | " adb pull [-p] [-a] <remote> [<local>]\n" |
Mark Lindner | 76f2a93 | 2014-03-11 17:55:59 -0700 | [diff] [blame] | 113 | " - copy file/dir from device\n" |
| 114 | " ('-p' to display the transfer progress)\n" |
Lajos Molnar | de8ff4a | 2013-04-19 12:41:09 -0700 | [diff] [blame] | 115 | " ('-a' means copy timestamp and mode)\n" |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 116 | " adb sync [ <directory> ] - copy host->device only if changed\n" |
Anthony Newnam | 705c944 | 2010-02-22 08:36:49 -0600 | [diff] [blame] | 117 | " (-l means list but don't copy)\n" |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 118 | " (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' Turner | 0d82fbf | 2012-11-14 15:01:55 +0100 | [diff] [blame] | 123 | " 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 Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 126 | " 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' Turner | 0d82fbf | 2012-11-14 15:01:55 +0100 | [diff] [blame] | 134 | " 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' Turner | 2525869 | 2013-03-21 21:07:42 +0100 | [diff] [blame] | 139 | " 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 Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 152 | " adb jdwp - list PIDs of processes hosting a JDWP transport\n" |
Jeff Sharkey | 960df97 | 2014-06-09 17:30:57 -0700 | [diff] [blame] | 153 | " adb install [-lrtsd] <file>\n" |
| 154 | " adb install-multiple [-lrtsdp] <file...>\n" |
Anonymous Coward | 4474ac4 | 2012-04-24 10:43:41 -0700 | [diff] [blame] | 155 | " - push this package file to the device and install it\n" |
Jeff Sharkey | 960df97 | 2014-06-09 17:30:57 -0700 | [diff] [blame] | 156 | " (-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 Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 162 | " 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 Tate | 0c06eb5 | 2013-03-06 16:40:52 -0800 | [diff] [blame] | 167 | " adb backup [-f <file>] [-apk|-noapk] [-obb|-noobb] [-shared|-noshared] [-all] [-system|-nosystem] [<packages...>]\n" |
Christopher Tate | 5688509 | 2011-10-03 18:27:01 -0700 | [diff] [blame] | 168 | " - 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 Tate | d2f5415 | 2011-04-21 12:53:28 -0700 | [diff] [blame] | 171 | " (-apk|-noapk enable/disable backup of the .apks themselves\n" |
Christopher Tate | de034ec | 2011-08-09 17:05:29 -0700 | [diff] [blame] | 172 | " in the archive; the default is noapk.)\n" |
Christopher Tate | 0c06eb5 | 2013-03-06 16:40:52 -0800 | [diff] [blame] | 173 | " (-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 Tate | d2f5415 | 2011-04-21 12:53:28 -0700 | [diff] [blame] | 176 | " (-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 Tate | 5688509 | 2011-10-03 18:27:01 -0700 | [diff] [blame] | 179 | " (-system|-nosystem toggles whether -all automatically includes\n" |
| 180 | " system applications; the default is to include system apps)\n" |
Christopher Tate | d2f5415 | 2011-04-21 12:53:28 -0700 | [diff] [blame] | 181 | " (<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 Tate | 5688509 | 2011-10-03 18:27:01 -0700 | [diff] [blame] | 183 | " 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 Tate | d2f5415 | 2011-04-21 12:53:28 -0700 | [diff] [blame] | 186 | "\n" |
Christopher Tate | de034ec | 2011-08-09 17:05:29 -0700 | [diff] [blame] | 187 | " adb restore <file> - restore device contents from the <file> backup archive\n" |
Christopher Tate | 702967a | 2011-05-17 15:52:54 -0700 | [diff] [blame] | 188 | "\n" |
Paul Lawrence | 982089d | 2014-12-03 15:31:57 -0800 | [diff] [blame] | 189 | " 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 Kralevich | bea3f9c | 2014-11-13 15:17:29 -0800 | [diff] [blame] | 191 | " 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 Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 194 | " adb help - show this help message\n" |
| 195 | " adb version - show version num\n" |
| 196 | "\n" |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 197 | "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 Anderson | e109d26 | 2012-04-20 11:21:14 -0700 | [diff] [blame] | 203 | " adb get-devpath - prints: <device-path>\n" |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 204 | " adb status-window - continuously print device status for a specified device\n" |
Elliott Hughes | ec7a667 | 2015-03-16 21:58:32 +0000 | [diff] [blame] | 205 | " adb remount - remounts the /system, /vendor (if present) and /oem (if present) partitions on the device read-write\n" |
Tao Bao | 175b7bb | 2015-03-29 11:22:34 -0700 | [diff] [blame] | 206 | " 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 Guy | 311add4 | 2009-12-14 14:42:17 -0800 | [diff] [blame] | 211 | " adb reboot-bootloader - reboots the device into the bootloader\n" |
Mike Lockwood | ff19670 | 2009-08-24 15:58:40 -0700 | [diff] [blame] | 212 | " adb root - restarts the adbd daemon with root permissions\n" |
Dan Pasanen | 9885881 | 2014-10-06 12:57:20 -0500 | [diff] [blame] | 213 | " adb unroot - restarts the adbd daemon without root permissions\n" |
Romain Guy | 311add4 | 2009-12-14 14:42:17 -0800 | [diff] [blame] | 214 | " adb usb - restarts the adbd daemon listening on USB\n" |
Paul Lawrence | ec900bb | 2014-10-09 14:22:49 +0000 | [diff] [blame] | 215 | " adb tcpip <port> - restarts the adbd daemon listening on TCP on the specified port\n" |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 216 | "networking:\n" |
| 217 | " adb ppp <tty> [parameters] - Run PPP over USB.\n" |
Kenny Root | c989199 | 2009-06-08 14:40:30 -0500 | [diff] [blame] | 218 | " Note: you should not automatically start a PPP connection.\n" |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 219 | " <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 Hughes | ec7a667 | 2015-03-16 21:58:32 +0000 | [diff] [blame] | 225 | " - If <directory> is not specified, /system, /vendor (if present), /oem (if present) and /data partitions will be updated.\n" |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 226 | "\n" |
Elliott Hughes | ec7a667 | 2015-03-16 21:58:32 +0000 | [diff] [blame] | 227 | " - If it is \"system\", \"vendor\", \"oem\" or \"data\", only the corresponding partition\n" |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 228 | " is updated.\n" |
Tim | cd64315 | 2010-02-16 20:18:29 +0000 | [diff] [blame] | 229 | "\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 Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 235 | ); |
| 236 | } |
| 237 | |
Elliott Hughes | 5830577 | 2015-04-17 13:57:15 -0700 | [diff] [blame] | 238 | static int usage() { |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 239 | help(); |
| 240 | return 1; |
| 241 | } |
| 242 | |
Yabin Cui | d325e86 | 2014-11-17 14:48:25 -0800 | [diff] [blame] | 243 | #if defined(_WIN32) |
| 244 | |
Elliott Hughes | a2f2e56 | 2015-04-16 16:47:02 -0700 | [diff] [blame] | 245 | // Implemented in sysdeps_win32.cpp. |
Spencer Low | 5018406 | 2015-03-01 15:06:21 -0800 | [diff] [blame] | 246 | void stdin_raw_init(int fd); |
| 247 | void stdin_raw_restore(int fd); |
Yabin Cui | d325e86 | 2014-11-17 14:48:25 -0800 | [diff] [blame] | 248 | |
| 249 | #else |
Alistair Buxton | dfa09fd | 2013-03-01 22:16:41 +0100 | [diff] [blame] | 250 | static termios g_saved_terminal_state; |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 251 | |
Alistair Buxton | dfa09fd | 2013-03-01 22:16:41 +0100 | [diff] [blame] | 252 | static void stdin_raw_init(int fd) { |
| 253 | if (tcgetattr(fd, &g_saved_terminal_state)) return; |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 254 | |
Alistair Buxton | dfa09fd | 2013-03-01 22:16:41 +0100 | [diff] [blame] | 255 | termios tio; |
| 256 | if (tcgetattr(fd, &tio)) return; |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 257 | |
Alistair Buxton | dfa09fd | 2013-03-01 22:16:41 +0100 | [diff] [blame] | 258 | cfmakeraw(&tio); |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 259 | |
Alistair Buxton | dfa09fd | 2013-03-01 22:16:41 +0100 | [diff] [blame] | 260 | // No timeout but request at least one character per read. |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 261 | tio.c_cc[VTIME] = 0; |
| 262 | tio.c_cc[VMIN] = 1; |
| 263 | |
Alistair Buxton | dfa09fd | 2013-03-01 22:16:41 +0100 | [diff] [blame] | 264 | tcsetattr(fd, TCSAFLUSH, &tio); |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 265 | } |
| 266 | |
Alistair Buxton | dfa09fd | 2013-03-01 22:16:41 +0100 | [diff] [blame] | 267 | static void stdin_raw_restore(int fd) { |
| 268 | tcsetattr(fd, TCSAFLUSH, &g_saved_terminal_state); |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 269 | } |
| 270 | #endif |
| 271 | |
| 272 | static void read_and_dump(int fd) |
| 273 | { |
| 274 | char buf[4096]; |
| 275 | int len; |
| 276 | |
| 277 | while(fd >= 0) { |
JP Abgrall | 408fa57 | 2011-03-16 15:57:42 -0700 | [diff] [blame] | 278 | D("read_and_dump(): pre adb_read(fd=%d)\n", fd); |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 279 | len = adb_read(fd, buf, 4096); |
JP Abgrall | 408fa57 | 2011-03-16 15:57:42 -0700 | [diff] [blame] | 280 | D("read_and_dump(): post adb_read(fd=%d): len=%d\n", fd, len); |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 281 | if(len == 0) { |
| 282 | break; |
| 283 | } |
| 284 | |
| 285 | if(len < 0) { |
| 286 | if(errno == EINTR) continue; |
| 287 | break; |
| 288 | } |
Mike Lockwood | dd6b36e | 2009-09-22 01:18:40 -0400 | [diff] [blame] | 289 | fwrite(buf, 1, len, stdout); |
| 290 | fflush(stdout); |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 291 | } |
| 292 | } |
| 293 | |
Jeff Sharkey | 960df97 | 2014-06-09 17:30:57 -0700 | [diff] [blame] | 294 | static 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 Tate | d2f5415 | 2011-04-21 12:53:28 -0700 | [diff] [blame] | 312 | static void copy_to_file(int inFd, int outFd) { |
Christopher Tate | 5b811fa | 2011-06-10 11:38:37 -0700 | [diff] [blame] | 313 | const size_t BUFSIZE = 32 * 1024; |
| 314 | char* buf = (char*) malloc(BUFSIZE); |
Elliott Hughes | dc3b459 | 2015-04-21 19:39:52 -0700 | [diff] [blame] | 315 | if (buf == nullptr) fatal("couldn't allocate buffer for copy_to_file"); |
Christopher Tate | d2f5415 | 2011-04-21 12:53:28 -0700 | [diff] [blame] | 316 | int len; |
Christopher Tate | c9cd3b9 | 2011-06-01 17:56:23 -0700 | [diff] [blame] | 317 | long total = 0; |
Christopher Tate | d2f5415 | 2011-04-21 12:53:28 -0700 | [diff] [blame] | 318 | |
| 319 | D("copy_to_file(%d -> %d)\n", inFd, outFd); |
Yabin Cui | d325e86 | 2014-11-17 14:48:25 -0800 | [diff] [blame] | 320 | |
Jeff Sharkey | 5d9d434 | 2014-05-26 18:30:43 -0700 | [diff] [blame] | 321 | if (inFd == STDIN_FILENO) { |
| 322 | stdin_raw_init(STDIN_FILENO); |
| 323 | } |
Yabin Cui | d325e86 | 2014-11-17 14:48:25 -0800 | [diff] [blame] | 324 | |
Elliott Hughes | a7090b9 | 2015-04-17 17:03:59 -0700 | [diff] [blame] | 325 | while (true) { |
Jeff Sharkey | 5d9d434 | 2014-05-26 18:30:43 -0700 | [diff] [blame] | 326 | if (inFd == STDIN_FILENO) { |
| 327 | len = unix_read(inFd, buf, BUFSIZE); |
| 328 | } else { |
| 329 | len = adb_read(inFd, buf, BUFSIZE); |
| 330 | } |
Christopher Tate | d2f5415 | 2011-04-21 12:53:28 -0700 | [diff] [blame] | 331 | if (len == 0) { |
Christopher Tate | 5b811fa | 2011-06-10 11:38:37 -0700 | [diff] [blame] | 332 | D("copy_to_file() : read 0 bytes; exiting\n"); |
Christopher Tate | d2f5415 | 2011-04-21 12:53:28 -0700 | [diff] [blame] | 333 | break; |
| 334 | } |
| 335 | if (len < 0) { |
Christopher Tate | 5b811fa | 2011-06-10 11:38:37 -0700 | [diff] [blame] | 336 | if (errno == EINTR) { |
| 337 | D("copy_to_file() : EINTR, retrying\n"); |
| 338 | continue; |
| 339 | } |
Christopher Tate | d2f5415 | 2011-04-21 12:53:28 -0700 | [diff] [blame] | 340 | D("copy_to_file() : error %d\n", errno); |
| 341 | break; |
| 342 | } |
Jeff Sharkey | 5d9d434 | 2014-05-26 18:30:43 -0700 | [diff] [blame] | 343 | if (outFd == STDOUT_FILENO) { |
| 344 | fwrite(buf, 1, len, stdout); |
| 345 | fflush(stdout); |
| 346 | } else { |
| 347 | adb_write(outFd, buf, len); |
| 348 | } |
Christopher Tate | c9cd3b9 | 2011-06-01 17:56:23 -0700 | [diff] [blame] | 349 | total += len; |
Christopher Tate | d2f5415 | 2011-04-21 12:53:28 -0700 | [diff] [blame] | 350 | } |
Yabin Cui | d325e86 | 2014-11-17 14:48:25 -0800 | [diff] [blame] | 351 | |
Jeff Sharkey | 5d9d434 | 2014-05-26 18:30:43 -0700 | [diff] [blame] | 352 | if (inFd == STDIN_FILENO) { |
| 353 | stdin_raw_restore(STDIN_FILENO); |
| 354 | } |
Yabin Cui | d325e86 | 2014-11-17 14:48:25 -0800 | [diff] [blame] | 355 | |
Christopher Tate | c9cd3b9 | 2011-06-01 17:56:23 -0700 | [diff] [blame] | 356 | D("copy_to_file() finished after %lu bytes\n", total); |
Christopher Tate | 5b811fa | 2011-06-10 11:38:37 -0700 | [diff] [blame] | 357 | free(buf); |
Christopher Tate | d2f5415 | 2011-04-21 12:53:28 -0700 | [diff] [blame] | 358 | } |
| 359 | |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 360 | static void *stdin_read_thread(void *x) |
| 361 | { |
| 362 | int fd, fdi; |
| 363 | unsigned char buf[1024]; |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 364 | 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 Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 372 | for(;;) { |
| 373 | /* fdi is really the client's stdin, so use read, not adb_read here */ |
JP Abgrall | 408fa57 | 2011-03-16 15:57:42 -0700 | [diff] [blame] | 374 | D("stdin_read_thread(): pre unix_read(fdi=%d,...)\n", fdi); |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 375 | r = unix_read(fdi, buf, 1024); |
JP Abgrall | 408fa57 | 2011-03-16 15:57:42 -0700 | [diff] [blame] | 376 | D("stdin_read_thread(): post unix_read(fdi=%d,...)\n", fdi); |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 377 | if(r == 0) break; |
| 378 | if(r < 0) { |
| 379 | if(errno == EINTR) continue; |
| 380 | break; |
| 381 | } |
Mike Lockwood | 67d5358 | 2010-05-25 13:40:15 -0400 | [diff] [blame] | 382 | 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 Lockwood | 67d5358 | 2010-05-25 13:40:15 -0400 | [diff] [blame] | 396 | stdin_raw_restore(fdi); |
Mike Lockwood | 67d5358 | 2010-05-25 13:40:15 -0400 | [diff] [blame] | 397 | exit(0); |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 398 | } |
Mike Lockwood | 67d5358 | 2010-05-25 13:40:15 -0400 | [diff] [blame] | 399 | default: |
| 400 | state = 0; |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 401 | } |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 402 | } |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 403 | r = adb_write(fd, buf, r); |
| 404 | if(r <= 0) { |
| 405 | break; |
| 406 | } |
| 407 | } |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 408 | return 0; |
| 409 | } |
| 410 | |
Elliott Hughes | 5830577 | 2015-04-17 13:57:15 -0700 | [diff] [blame] | 411 | static int interactive_shell() { |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 412 | adb_thread_t thr; |
| 413 | int fdi, fd; |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 414 | |
| 415 | fd = adb_connect("shell:"); |
| 416 | if(fd < 0) { |
| 417 | fprintf(stderr,"error: %s\n", adb_error()); |
| 418 | return 1; |
| 419 | } |
| 420 | fdi = 0; //dup(0); |
| 421 | |
Dan Albert | bac3474 | 2015-02-25 17:51:28 -0800 | [diff] [blame] | 422 | int* fds = reinterpret_cast<int*>(malloc(sizeof(int) * 2)); |
Elliott Hughes | dc3b459 | 2015-04-21 19:39:52 -0700 | [diff] [blame] | 423 | if (fds == nullptr) { |
| 424 | fprintf(stderr, "couldn't allocate fds array: %s\n", strerror(errno)); |
| 425 | return 1; |
| 426 | } |
| 427 | |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 428 | fds[0] = fd; |
| 429 | fds[1] = fdi; |
| 430 | |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 431 | stdin_raw_init(fdi); |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 432 | adb_thread_create(&thr, stdin_read_thread, fds); |
| 433 | read_and_dump(fd); |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 434 | stdin_raw_restore(fdi); |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 435 | return 0; |
| 436 | } |
| 437 | |
| 438 | |
| 439 | static void format_host_command(char* buffer, size_t buflen, const char* command, transport_type ttype, const char* serial) |
| 440 | { |
| 441 | if (serial) { |
| 442 | snprintf(buffer, buflen, "host-serial:%s:%s", serial, command); |
| 443 | } else { |
| 444 | const char* prefix = "host"; |
| 445 | if (ttype == kTransportUsb) |
| 446 | prefix = "host-usb"; |
| 447 | else if (ttype == kTransportLocal) |
| 448 | prefix = "host-local"; |
| 449 | |
| 450 | snprintf(buffer, buflen, "%s:%s", prefix, command); |
| 451 | } |
| 452 | } |
| 453 | |
Elliott Hughes | 5830577 | 2015-04-17 13:57:15 -0700 | [diff] [blame] | 454 | static int adb_download_buffer(const char *service, const char *fn, const void* data, int sz, |
| 455 | unsigned progress) |
Doug Zongker | 447f061 | 2012-01-09 14:54:53 -0800 | [diff] [blame] | 456 | { |
| 457 | char buf[4096]; |
| 458 | unsigned total; |
| 459 | int fd; |
Doug Zongker | 447f061 | 2012-01-09 14:54:53 -0800 | [diff] [blame] | 460 | |
| 461 | sprintf(buf,"%s:%d", service, sz); |
| 462 | fd = adb_connect(buf); |
| 463 | if(fd < 0) { |
| 464 | fprintf(stderr,"error: %s\n", adb_error()); |
| 465 | return -1; |
| 466 | } |
| 467 | |
| 468 | int opt = CHUNK_SIZE; |
Spencer Low | f055c19 | 2015-01-25 14:40:16 -0800 | [diff] [blame] | 469 | opt = adb_setsockopt(fd, SOL_SOCKET, SO_SNDBUF, (const void *) &opt, sizeof(opt)); |
Doug Zongker | 447f061 | 2012-01-09 14:54:53 -0800 | [diff] [blame] | 470 | |
| 471 | total = sz; |
Dan Albert | bac3474 | 2015-02-25 17:51:28 -0800 | [diff] [blame] | 472 | const uint8_t* ptr = reinterpret_cast<const uint8_t*>(data); |
Doug Zongker | 447f061 | 2012-01-09 14:54:53 -0800 | [diff] [blame] | 473 | |
| 474 | if(progress) { |
| 475 | char *x = strrchr(service, ':'); |
| 476 | if(x) service = x + 1; |
| 477 | } |
| 478 | |
| 479 | while(sz > 0) { |
| 480 | unsigned xfer = (sz > CHUNK_SIZE) ? CHUNK_SIZE : sz; |
Dan Albert | cc731cc | 2015-02-24 21:26:58 -0800 | [diff] [blame] | 481 | if(!WriteFdExactly(fd, ptr, xfer)) { |
Doug Zongker | 447f061 | 2012-01-09 14:54:53 -0800 | [diff] [blame] | 482 | adb_status(fd); |
| 483 | fprintf(stderr,"* failed to write data '%s' *\n", adb_error()); |
| 484 | return -1; |
| 485 | } |
| 486 | sz -= xfer; |
| 487 | ptr += xfer; |
| 488 | if(progress) { |
Magnus Eriksson | 86ae6d5 | 2013-03-05 07:37:32 +0100 | [diff] [blame] | 489 | printf("sending: '%s' %4d%% \r", fn, (int)(100LL - ((100LL * sz) / (total)))); |
Doug Zongker | 447f061 | 2012-01-09 14:54:53 -0800 | [diff] [blame] | 490 | fflush(stdout); |
| 491 | } |
| 492 | } |
| 493 | if(progress) { |
| 494 | printf("\n"); |
| 495 | } |
| 496 | |
Dan Albert | cc731cc | 2015-02-24 21:26:58 -0800 | [diff] [blame] | 497 | if(!ReadFdExactly(fd, buf, 4)){ |
Doug Zongker | 447f061 | 2012-01-09 14:54:53 -0800 | [diff] [blame] | 498 | fprintf(stderr,"* error reading response *\n"); |
| 499 | adb_close(fd); |
| 500 | return -1; |
| 501 | } |
| 502 | if(memcmp(buf, "OKAY", 4)) { |
| 503 | buf[4] = 0; |
| 504 | fprintf(stderr,"* error response '%s' *\n", buf); |
| 505 | adb_close(fd); |
| 506 | return -1; |
| 507 | } |
| 508 | |
| 509 | adb_close(fd); |
| 510 | return 0; |
| 511 | } |
| 512 | |
Doug Zongker | 71fe584 | 2014-06-26 15:35:36 -0700 | [diff] [blame] | 513 | #define SIDELOAD_HOST_BLOCK_SIZE (CHUNK_SIZE) |
| 514 | |
| 515 | /* |
| 516 | * The sideload-host protocol serves the data in a file (given on the |
| 517 | * command line) to the client, using a simple protocol: |
| 518 | * |
| 519 | * - The connect message includes the total number of bytes in the |
| 520 | * file and a block size chosen by us. |
| 521 | * |
| 522 | * - The other side sends the desired block number as eight decimal |
| 523 | * digits (eg "00000023" for block 23). Blocks are numbered from |
| 524 | * zero. |
| 525 | * |
| 526 | * - We send back the data of the requested block. The last block is |
| 527 | * likely to be partial; when the last block is requested we only |
| 528 | * send the part of the block that exists, it's not padded up to the |
| 529 | * block size. |
| 530 | * |
| 531 | * - When the other side sends "DONEDONE" instead of a block number, |
| 532 | * we hang up. |
| 533 | */ |
Elliott Hughes | 5830577 | 2015-04-17 13:57:15 -0700 | [diff] [blame] | 534 | static int adb_sideload_host(const char* fn) { |
Doug Zongker | 71fe584 | 2014-06-26 15:35:36 -0700 | [diff] [blame] | 535 | unsigned sz; |
| 536 | size_t xfer = 0; |
| 537 | int status; |
Dan Albert | bac3474 | 2015-02-25 17:51:28 -0800 | [diff] [blame] | 538 | int last_percent = -1; |
| 539 | int opt = SIDELOAD_HOST_BLOCK_SIZE; |
Doug Zongker | 71fe584 | 2014-06-26 15:35:36 -0700 | [diff] [blame] | 540 | |
| 541 | printf("loading: '%s'", fn); |
| 542 | fflush(stdout); |
Dan Albert | bac3474 | 2015-02-25 17:51:28 -0800 | [diff] [blame] | 543 | uint8_t* data = reinterpret_cast<uint8_t*>(load_file(fn, &sz)); |
Doug Zongker | 71fe584 | 2014-06-26 15:35:36 -0700 | [diff] [blame] | 544 | if (data == 0) { |
| 545 | printf("\n"); |
| 546 | fprintf(stderr, "* cannot read '%s' *\n", fn); |
| 547 | return -1; |
| 548 | } |
| 549 | |
| 550 | char buf[100]; |
| 551 | sprintf(buf, "sideload-host:%d:%d", sz, SIDELOAD_HOST_BLOCK_SIZE); |
| 552 | int fd = adb_connect(buf); |
| 553 | if (fd < 0) { |
| 554 | // Try falling back to the older sideload method. Maybe this |
| 555 | // is an older device that doesn't support sideload-host. |
| 556 | printf("\n"); |
| 557 | status = adb_download_buffer("sideload", fn, data, sz, 1); |
| 558 | goto done; |
| 559 | } |
| 560 | |
Spencer Low | f055c19 | 2015-01-25 14:40:16 -0800 | [diff] [blame] | 561 | opt = adb_setsockopt(fd, SOL_SOCKET, SO_SNDBUF, (const void *) &opt, sizeof(opt)); |
Doug Zongker | 71fe584 | 2014-06-26 15:35:36 -0700 | [diff] [blame] | 562 | |
Elliott Hughes | a7090b9 | 2015-04-17 17:03:59 -0700 | [diff] [blame] | 563 | while (true) { |
Dan Albert | cc731cc | 2015-02-24 21:26:58 -0800 | [diff] [blame] | 564 | if (!ReadFdExactly(fd, buf, 8)) { |
Doug Zongker | 71fe584 | 2014-06-26 15:35:36 -0700 | [diff] [blame] | 565 | fprintf(stderr, "* failed to read command: %s\n", adb_error()); |
| 566 | status = -1; |
| 567 | goto done; |
| 568 | } |
| 569 | |
| 570 | if (strncmp("DONEDONE", buf, 8) == 0) { |
| 571 | status = 0; |
| 572 | break; |
| 573 | } |
| 574 | |
| 575 | buf[8] = '\0'; |
| 576 | int block = strtol(buf, NULL, 10); |
| 577 | |
| 578 | size_t offset = block * SIDELOAD_HOST_BLOCK_SIZE; |
| 579 | if (offset >= sz) { |
| 580 | fprintf(stderr, "* attempt to read past end: %s\n", adb_error()); |
| 581 | status = -1; |
| 582 | goto done; |
| 583 | } |
| 584 | uint8_t* start = data + offset; |
| 585 | size_t offset_end = offset + SIDELOAD_HOST_BLOCK_SIZE; |
| 586 | size_t to_write = SIDELOAD_HOST_BLOCK_SIZE; |
| 587 | if (offset_end > sz) { |
| 588 | to_write = sz - offset; |
| 589 | } |
| 590 | |
Dan Albert | cc731cc | 2015-02-24 21:26:58 -0800 | [diff] [blame] | 591 | if(!WriteFdExactly(fd, start, to_write)) { |
Doug Zongker | 71fe584 | 2014-06-26 15:35:36 -0700 | [diff] [blame] | 592 | adb_status(fd); |
| 593 | fprintf(stderr,"* failed to write data '%s' *\n", adb_error()); |
| 594 | status = -1; |
| 595 | goto done; |
| 596 | } |
| 597 | xfer += to_write; |
| 598 | |
| 599 | // For normal OTA packages, we expect to transfer every byte |
| 600 | // twice, plus a bit of overhead (one read during |
| 601 | // verification, one read of each byte for installation, plus |
| 602 | // extra access to things like the zip central directory). |
| 603 | // This estimate of the completion becomes 100% when we've |
| 604 | // transferred ~2.13 (=100/47) times the package size. |
| 605 | int percent = (int)(xfer * 47LL / (sz ? sz : 1)); |
| 606 | if (percent != last_percent) { |
| 607 | printf("\rserving: '%s' (~%d%%) ", fn, percent); |
| 608 | fflush(stdout); |
| 609 | last_percent = percent; |
| 610 | } |
| 611 | } |
| 612 | |
Colin Cross | 6d6a898 | 2014-07-07 14:12:41 -0700 | [diff] [blame] | 613 | printf("\rTotal xfer: %.2fx%*s\n", (double)xfer / (sz ? sz : 1), (int)strlen(fn)+10, ""); |
Doug Zongker | 71fe584 | 2014-06-26 15:35:36 -0700 | [diff] [blame] | 614 | |
| 615 | done: |
| 616 | if (fd >= 0) adb_close(fd); |
| 617 | free(data); |
| 618 | return status; |
| 619 | } |
| 620 | |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 621 | static void status_window(transport_type ttype, const char* serial) |
| 622 | { |
| 623 | char command[4096]; |
| 624 | char *state = 0; |
| 625 | char *laststate = 0; |
| 626 | |
| 627 | /* silence stderr */ |
| 628 | #ifdef _WIN32 |
| 629 | /* XXX: TODO */ |
| 630 | #else |
| 631 | int fd; |
| 632 | fd = unix_open("/dev/null", O_WRONLY); |
| 633 | dup2(fd, 2); |
| 634 | adb_close(fd); |
| 635 | #endif |
| 636 | |
| 637 | format_host_command(command, sizeof command, "get-state", ttype, serial); |
| 638 | |
| 639 | for(;;) { |
| 640 | adb_sleep_ms(250); |
| 641 | |
| 642 | if(state) { |
| 643 | free(state); |
| 644 | state = 0; |
| 645 | } |
| 646 | |
| 647 | state = adb_query(command); |
| 648 | |
| 649 | if(state) { |
| 650 | if(laststate && !strcmp(state,laststate)){ |
| 651 | continue; |
| 652 | } else { |
| 653 | if(laststate) free(laststate); |
| 654 | laststate = strdup(state); |
| 655 | } |
| 656 | } |
| 657 | |
| 658 | printf("%c[2J%c[2H", 27, 27); |
| 659 | printf("Android Debug Bridge\n"); |
| 660 | printf("State: %s\n", state ? state : "offline"); |
| 661 | fflush(stdout); |
| 662 | } |
| 663 | } |
| 664 | |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 665 | /** |
| 666 | * Run ppp in "notty" mode against a resource listed as the first parameter |
| 667 | * eg: |
| 668 | * |
| 669 | * ppp dev:/dev/omap_csmi_tty0 <ppp options> |
| 670 | * |
| 671 | */ |
Elliott Hughes | 5830577 | 2015-04-17 13:57:15 -0700 | [diff] [blame] | 672 | static int ppp(int argc, const char** argv) { |
Yabin Cui | e77b6a0 | 2014-11-11 09:24:11 -0800 | [diff] [blame] | 673 | #if defined(_WIN32) |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 674 | fprintf(stderr, "error: adb %s not implemented on Win32\n", argv[0]); |
| 675 | return -1; |
| 676 | #else |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 677 | pid_t pid; |
| 678 | int fd; |
| 679 | |
| 680 | if (argc < 2) { |
| 681 | fprintf(stderr, "usage: adb %s <adb service name> [ppp opts]\n", |
| 682 | argv[0]); |
| 683 | |
| 684 | return 1; |
| 685 | } |
| 686 | |
Dan Albert | bac3474 | 2015-02-25 17:51:28 -0800 | [diff] [blame] | 687 | const char* adb_service_name = argv[1]; |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 688 | fd = adb_connect(adb_service_name); |
| 689 | |
| 690 | if(fd < 0) { |
| 691 | fprintf(stderr,"Error: Could not open adb service: %s. Error: %s\n", |
| 692 | adb_service_name, adb_error()); |
| 693 | return 1; |
| 694 | } |
| 695 | |
| 696 | pid = fork(); |
| 697 | |
| 698 | if (pid < 0) { |
| 699 | perror("from fork()"); |
| 700 | return 1; |
| 701 | } else if (pid == 0) { |
| 702 | int err; |
| 703 | int i; |
| 704 | const char **ppp_args; |
| 705 | |
| 706 | // copy args |
| 707 | ppp_args = (const char **) alloca(sizeof(char *) * argc + 1); |
| 708 | ppp_args[0] = "pppd"; |
| 709 | for (i = 2 ; i < argc ; i++) { |
| 710 | //argv[2] and beyond become ppp_args[1] and beyond |
| 711 | ppp_args[i - 1] = argv[i]; |
| 712 | } |
| 713 | ppp_args[i-1] = NULL; |
| 714 | |
| 715 | // child side |
| 716 | |
| 717 | dup2(fd, STDIN_FILENO); |
| 718 | dup2(fd, STDOUT_FILENO); |
| 719 | adb_close(STDERR_FILENO); |
| 720 | adb_close(fd); |
| 721 | |
| 722 | err = execvp("pppd", (char * const *)ppp_args); |
| 723 | |
| 724 | if (err < 0) { |
| 725 | perror("execing pppd"); |
| 726 | } |
| 727 | exit(-1); |
| 728 | } else { |
| 729 | // parent side |
| 730 | |
| 731 | adb_close(fd); |
| 732 | return 0; |
| 733 | } |
Yabin Cui | e77b6a0 | 2014-11-11 09:24:11 -0800 | [diff] [blame] | 734 | #endif /* !defined(_WIN32) */ |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 735 | } |
| 736 | |
Elliott Hughes | 2baae3a | 2015-04-17 10:59:34 -0700 | [diff] [blame] | 737 | static int send_shell_command(transport_type transport, const char* serial, |
| 738 | const std::string& command) { |
| 739 | int fd; |
| 740 | while (true) { |
| 741 | fd = adb_connect(command.c_str()); |
| 742 | if (fd >= 0) |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 743 | break; |
| 744 | fprintf(stderr,"- waiting for device -\n"); |
| 745 | adb_sleep_ms(1000); |
| 746 | do_cmd(transport, serial, "wait-for-device", 0); |
| 747 | } |
| 748 | |
| 749 | read_and_dump(fd); |
Elliott Hughes | 2baae3a | 2015-04-17 10:59:34 -0700 | [diff] [blame] | 750 | int rc = adb_close(fd); |
| 751 | if (rc) { |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 752 | perror("close"); |
Elliott Hughes | 2baae3a | 2015-04-17 10:59:34 -0700 | [diff] [blame] | 753 | } |
| 754 | return rc; |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 755 | } |
| 756 | |
Elliott Hughes | 2baae3a | 2015-04-17 10:59:34 -0700 | [diff] [blame] | 757 | static int logcat(transport_type transport, const char* serial, int argc, const char** argv) { |
| 758 | char* log_tags = getenv("ANDROID_LOG_TAGS"); |
| 759 | std::string quoted = escape_arg(log_tags == nullptr ? "" : log_tags); |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 760 | |
Elliott Hughes | 2baae3a | 2015-04-17 10:59:34 -0700 | [diff] [blame] | 761 | std::string cmd = "shell:export ANDROID_LOG_TAGS=\"" + quoted + "\"; exec logcat"; |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 762 | |
Jeff Sharkey | fd546e8 | 2014-06-10 11:31:24 -0700 | [diff] [blame] | 763 | if (!strcmp(argv[0], "longcat")) { |
Elliott Hughes | 2baae3a | 2015-04-17 10:59:34 -0700 | [diff] [blame] | 764 | cmd += " -v long"; |
Christopher Tate | db0a880 | 2011-11-30 13:00:33 -0800 | [diff] [blame] | 765 | } |
| 766 | |
Elliott Hughes | 6c34bba | 2015-04-17 20:11:08 -0700 | [diff] [blame] | 767 | --argc; |
| 768 | ++argv; |
Elliott Hughes | 2baae3a | 2015-04-17 10:59:34 -0700 | [diff] [blame] | 769 | while (argc-- > 0) { |
Elliott Hughes | 6c34bba | 2015-04-17 20:11:08 -0700 | [diff] [blame] | 770 | cmd += " " + escape_arg(*argv++); |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 771 | } |
| 772 | |
Elliott Hughes | 1555147 | 2015-04-21 17:58:55 -0700 | [diff] [blame] | 773 | return send_shell_command(transport, serial, cmd); |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 774 | } |
| 775 | |
Mark Salyzyn | 60299df | 2014-04-30 09:10:31 -0700 | [diff] [blame] | 776 | static int mkdirs(const char *path) |
Christopher Tate | b1dfffe | 2011-12-08 19:04:34 -0800 | [diff] [blame] | 777 | { |
| 778 | int ret; |
Mark Salyzyn | 60299df | 2014-04-30 09:10:31 -0700 | [diff] [blame] | 779 | char *x = (char *)path + 1; |
Christopher Tate | b1dfffe | 2011-12-08 19:04:34 -0800 | [diff] [blame] | 780 | |
| 781 | for(;;) { |
| 782 | x = adb_dirstart(x); |
| 783 | if(x == 0) return 0; |
| 784 | *x = 0; |
| 785 | ret = adb_mkdir(path, 0775); |
| 786 | *x = OS_PATH_SEPARATOR; |
| 787 | if((ret < 0) && (errno != EEXIST)) { |
| 788 | return ret; |
| 789 | } |
| 790 | x++; |
| 791 | } |
| 792 | return 0; |
| 793 | } |
| 794 | |
Dan Albert | bac3474 | 2015-02-25 17:51:28 -0800 | [diff] [blame] | 795 | static int backup(int argc, const char** argv) { |
Elliott Hughes | 6c34bba | 2015-04-17 20:11:08 -0700 | [diff] [blame] | 796 | const char* filename = "./backup.ab"; |
Christopher Tate | d2f5415 | 2011-04-21 12:53:28 -0700 | [diff] [blame] | 797 | |
Christopher Tate | c9cd3b9 | 2011-06-01 17:56:23 -0700 | [diff] [blame] | 798 | /* find, extract, and use any -f argument */ |
Elliott Hughes | 6c34bba | 2015-04-17 20:11:08 -0700 | [diff] [blame] | 799 | for (int i = 1; i < argc; i++) { |
Christopher Tate | c9cd3b9 | 2011-06-01 17:56:23 -0700 | [diff] [blame] | 800 | if (!strcmp("-f", argv[i])) { |
| 801 | if (i == argc-1) { |
| 802 | fprintf(stderr, "adb: -f passed with no filename\n"); |
| 803 | return usage(); |
| 804 | } |
| 805 | filename = argv[i+1]; |
Elliott Hughes | 6c34bba | 2015-04-17 20:11:08 -0700 | [diff] [blame] | 806 | for (int j = i+2; j <= argc; ) { |
Christopher Tate | c9cd3b9 | 2011-06-01 17:56:23 -0700 | [diff] [blame] | 807 | argv[i++] = argv[j++]; |
| 808 | } |
| 809 | argc -= 2; |
| 810 | argv[argc] = NULL; |
| 811 | } |
Christopher Tate | d2f5415 | 2011-04-21 12:53:28 -0700 | [diff] [blame] | 812 | } |
| 813 | |
Christopher Tate | bb86bc5 | 2011-08-22 17:12:08 -0700 | [diff] [blame] | 814 | /* bare "adb backup" or "adb backup -f filename" are not valid invocations */ |
| 815 | if (argc < 2) return usage(); |
| 816 | |
Christopher Tate | b1dfffe | 2011-12-08 19:04:34 -0800 | [diff] [blame] | 817 | adb_unlink(filename); |
Mark Salyzyn | 60299df | 2014-04-30 09:10:31 -0700 | [diff] [blame] | 818 | mkdirs(filename); |
Elliott Hughes | 6c34bba | 2015-04-17 20:11:08 -0700 | [diff] [blame] | 819 | int outFd = adb_creat(filename, 0640); |
Christopher Tate | d2f5415 | 2011-04-21 12:53:28 -0700 | [diff] [blame] | 820 | if (outFd < 0) { |
| 821 | fprintf(stderr, "adb: unable to open file %s\n", filename); |
| 822 | return -1; |
| 823 | } |
| 824 | |
Elliott Hughes | 6c34bba | 2015-04-17 20:11:08 -0700 | [diff] [blame] | 825 | std::string cmd = "backup:"; |
| 826 | --argc; |
| 827 | ++argv; |
| 828 | while (argc-- > 0) { |
| 829 | cmd += " " + escape_arg(*argv++); |
Christopher Tate | d2f5415 | 2011-04-21 12:53:28 -0700 | [diff] [blame] | 830 | } |
| 831 | |
Elliott Hughes | 6c34bba | 2015-04-17 20:11:08 -0700 | [diff] [blame] | 832 | D("backup. filename=%s cmd=%s\n", filename, cmd.c_str()); |
| 833 | int fd = adb_connect(cmd.c_str()); |
Christopher Tate | d2f5415 | 2011-04-21 12:53:28 -0700 | [diff] [blame] | 834 | if (fd < 0) { |
| 835 | fprintf(stderr, "adb: unable to connect for backup\n"); |
| 836 | adb_close(outFd); |
| 837 | return -1; |
| 838 | } |
| 839 | |
Christopher Tate | bffa4ca | 2012-01-06 15:43:03 -0800 | [diff] [blame] | 840 | printf("Now unlock your device and confirm the backup operation.\n"); |
Christopher Tate | d2f5415 | 2011-04-21 12:53:28 -0700 | [diff] [blame] | 841 | copy_to_file(fd, outFd); |
| 842 | |
| 843 | adb_close(fd); |
| 844 | adb_close(outFd); |
| 845 | return 0; |
| 846 | } |
| 847 | |
Dan Albert | bac3474 | 2015-02-25 17:51:28 -0800 | [diff] [blame] | 848 | static int restore(int argc, const char** argv) { |
Christopher Tate | 702967a | 2011-05-17 15:52:54 -0700 | [diff] [blame] | 849 | const char* filename; |
| 850 | int fd, tarFd; |
| 851 | |
| 852 | if (argc != 2) return usage(); |
| 853 | |
| 854 | filename = argv[1]; |
| 855 | tarFd = adb_open(filename, O_RDONLY); |
| 856 | if (tarFd < 0) { |
| 857 | fprintf(stderr, "adb: unable to open file %s\n", filename); |
| 858 | return -1; |
| 859 | } |
| 860 | |
| 861 | fd = adb_connect("restore:"); |
| 862 | if (fd < 0) { |
Brian Carlstrom | 93c91fa | 2013-10-18 13:58:48 -0700 | [diff] [blame] | 863 | fprintf(stderr, "adb: unable to connect for restore\n"); |
Christopher Tate | 702967a | 2011-05-17 15:52:54 -0700 | [diff] [blame] | 864 | adb_close(tarFd); |
| 865 | return -1; |
| 866 | } |
| 867 | |
Christopher Tate | bffa4ca | 2012-01-06 15:43:03 -0800 | [diff] [blame] | 868 | printf("Now unlock your device and confirm the restore operation.\n"); |
Christopher Tate | 702967a | 2011-05-17 15:52:54 -0700 | [diff] [blame] | 869 | copy_to_file(tarFd, fd); |
| 870 | |
| 871 | adb_close(fd); |
| 872 | adb_close(tarFd); |
| 873 | return 0; |
| 874 | } |
| 875 | |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 876 | /* <hint> may be: |
| 877 | * - A simple product name |
| 878 | * e.g., "sooner" |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 879 | * - A relative path from the CWD to the ANDROID_PRODUCT_OUT dir |
| 880 | * e.g., "out/target/product/sooner" |
| 881 | * - An absolute path to the PRODUCT_OUT dir |
| 882 | * e.g., "/src/device/out/target/product/sooner" |
| 883 | * |
| 884 | * Given <hint>, try to construct an absolute path to the |
| 885 | * ANDROID_PRODUCT_OUT dir. |
| 886 | */ |
Elliott Hughes | 5830577 | 2015-04-17 13:57:15 -0700 | [diff] [blame] | 887 | static std::string find_product_out_path(const char* hint) { |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 888 | if (hint == NULL || hint[0] == '\0') { |
Elliott Hughes | 5830577 | 2015-04-17 13:57:15 -0700 | [diff] [blame] | 889 | return ""; |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 890 | } |
| 891 | |
Elliott Hughes | 5830577 | 2015-04-17 13:57:15 -0700 | [diff] [blame] | 892 | // If it's already absolute, don't bother doing any work. |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 893 | if (adb_is_absolute_host_path(hint)) { |
Elliott Hughes | 5830577 | 2015-04-17 13:57:15 -0700 | [diff] [blame] | 894 | return hint; |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 895 | } |
| 896 | |
Elliott Hughes | 5830577 | 2015-04-17 13:57:15 -0700 | [diff] [blame] | 897 | // If there are any slashes in it, assume it's a relative path; |
| 898 | // make it absolute. |
Elliott Hughes | a7090b9 | 2015-04-17 17:03:59 -0700 | [diff] [blame] | 899 | if (adb_dirstart(hint) != nullptr) { |
| 900 | std::string cwd; |
| 901 | if (!getcwd(&cwd)) { |
| 902 | fprintf(stderr, "adb: getcwd failed: %s\n", strerror(errno)); |
Elliott Hughes | 5830577 | 2015-04-17 13:57:15 -0700 | [diff] [blame] | 903 | return ""; |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 904 | } |
Elliott Hughes | a7090b9 | 2015-04-17 17:03:59 -0700 | [diff] [blame] | 905 | return android::base::StringPrintf("%s%s%s", cwd.c_str(), OS_PATH_SEPARATOR_STR, hint); |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 906 | } |
| 907 | |
Elliott Hughes | 5830577 | 2015-04-17 13:57:15 -0700 | [diff] [blame] | 908 | // It's a string without any slashes. Try to do something with it. |
| 909 | // |
| 910 | // Try to find the root of the build tree, and build a PRODUCT_OUT |
| 911 | // path from there. |
Elliott Hughes | a7090b9 | 2015-04-17 17:03:59 -0700 | [diff] [blame] | 912 | char* top = getenv("ANDROID_BUILD_TOP"); |
Elliott Hughes | 5830577 | 2015-04-17 13:57:15 -0700 | [diff] [blame] | 913 | if (top == nullptr) { |
Elliott Hughes | a7090b9 | 2015-04-17 17:03:59 -0700 | [diff] [blame] | 914 | fprintf(stderr, "adb: ANDROID_BUILD_TOP not set!\n"); |
Elliott Hughes | 5830577 | 2015-04-17 13:57:15 -0700 | [diff] [blame] | 915 | return ""; |
| 916 | } |
Elliott Hughes | a7090b9 | 2015-04-17 17:03:59 -0700 | [diff] [blame] | 917 | |
| 918 | std::string path = top; |
Elliott Hughes | 5830577 | 2015-04-17 13:57:15 -0700 | [diff] [blame] | 919 | path += OS_PATH_SEPARATOR_STR; |
| 920 | path += "out"; |
| 921 | path += OS_PATH_SEPARATOR_STR; |
| 922 | path += "target"; |
| 923 | path += OS_PATH_SEPARATOR_STR; |
| 924 | path += "product"; |
| 925 | path += OS_PATH_SEPARATOR_STR; |
| 926 | path += hint; |
| 927 | if (!directory_exists(path)) { |
| 928 | fprintf(stderr, "adb: Couldn't find a product dir based on -p %s; " |
| 929 | "\"%s\" doesn't exist\n", hint, path.c_str()); |
Elliott Hughes | a7090b9 | 2015-04-17 17:03:59 -0700 | [diff] [blame] | 930 | return ""; |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 931 | } |
Elliott Hughes | 5830577 | 2015-04-17 13:57:15 -0700 | [diff] [blame] | 932 | return path; |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 933 | } |
| 934 | |
Dan Albert | bac3474 | 2015-02-25 17:51:28 -0800 | [diff] [blame] | 935 | static void parse_push_pull_args(const char **arg, int narg, char const **path1, |
| 936 | char const **path2, int *show_progress, |
| 937 | int *copy_attrs) { |
Mark Lindner | 76f2a93 | 2014-03-11 17:55:59 -0700 | [diff] [blame] | 938 | *show_progress = 0; |
Lajos Molnar | de8ff4a | 2013-04-19 12:41:09 -0700 | [diff] [blame] | 939 | *copy_attrs = 0; |
Mark Lindner | 76f2a93 | 2014-03-11 17:55:59 -0700 | [diff] [blame] | 940 | |
Lajos Molnar | de8ff4a | 2013-04-19 12:41:09 -0700 | [diff] [blame] | 941 | while (narg > 0) { |
| 942 | if (!strcmp(*arg, "-p")) { |
| 943 | *show_progress = 1; |
| 944 | } else if (!strcmp(*arg, "-a")) { |
| 945 | *copy_attrs = 1; |
| 946 | } else { |
| 947 | break; |
| 948 | } |
Mark Lindner | 76f2a93 | 2014-03-11 17:55:59 -0700 | [diff] [blame] | 949 | ++arg; |
| 950 | --narg; |
| 951 | } |
| 952 | |
| 953 | if (narg > 0) { |
| 954 | *path1 = *arg; |
| 955 | ++arg; |
| 956 | --narg; |
| 957 | } |
| 958 | |
| 959 | if (narg > 0) { |
| 960 | *path2 = *arg; |
| 961 | } |
| 962 | } |
| 963 | |
Tao Bao | 175b7bb | 2015-03-29 11:22:34 -0700 | [diff] [blame] | 964 | static int adb_connect_command(const char* command) { |
| 965 | int fd = adb_connect(command); |
| 966 | if (fd != -1) { |
| 967 | read_and_dump(fd); |
| 968 | adb_close(fd); |
| 969 | return 0; |
| 970 | } |
| 971 | fprintf(stderr, "Error: %s\n", adb_error()); |
| 972 | return 1; |
| 973 | } |
| 974 | |
Dan Albert | bac3474 | 2015-02-25 17:51:28 -0800 | [diff] [blame] | 975 | int adb_commandline(int argc, const char **argv) |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 976 | { |
| 977 | char buf[4096]; |
| 978 | int no_daemon = 0; |
| 979 | int is_daemon = 0; |
David 'Digit' Turner | 305b4b0 | 2011-01-31 14:23:56 +0100 | [diff] [blame] | 980 | int is_server = 0; |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 981 | int persist = 0; |
| 982 | int r; |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 983 | transport_type ttype = kTransportAny; |
Dan Albert | bac3474 | 2015-02-25 17:51:28 -0800 | [diff] [blame] | 984 | const char* serial = NULL; |
| 985 | const char* server_port_str = NULL; |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 986 | |
Elliott Hughes | 5830577 | 2015-04-17 13:57:15 -0700 | [diff] [blame] | 987 | // If defined, this should be an absolute path to |
| 988 | // the directory containing all of the various system images |
| 989 | // for a particular product. If not defined, and the adb |
| 990 | // command requires this information, then the user must |
| 991 | // specify the path using "-p". |
| 992 | char* ANDROID_PRODUCT_OUT = getenv("ANDROID_PRODUCT_OUT"); |
| 993 | if (ANDROID_PRODUCT_OUT != nullptr) { |
| 994 | gProductOutPath = ANDROID_PRODUCT_OUT; |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 995 | } |
| 996 | // TODO: also try TARGET_PRODUCT/TARGET_DEVICE as a hint |
| 997 | |
Nick Pelly | db44926 | 2009-05-07 12:48:03 -0700 | [diff] [blame] | 998 | serial = getenv("ANDROID_SERIAL"); |
| 999 | |
Stefan Hilzinger | a84a42e | 2010-04-19 12:21:12 +0100 | [diff] [blame] | 1000 | /* Validate and assign the server port */ |
| 1001 | server_port_str = getenv("ANDROID_ADB_SERVER_PORT"); |
| 1002 | int server_port = DEFAULT_ADB_PORT; |
| 1003 | if (server_port_str && strlen(server_port_str) > 0) { |
| 1004 | server_port = (int) strtol(server_port_str, NULL, 0); |
Matt Gumbel | d7b3308 | 2012-11-14 10:16:17 -0800 | [diff] [blame] | 1005 | if (server_port <= 0 || server_port > 65535) { |
Stefan Hilzinger | a84a42e | 2010-04-19 12:21:12 +0100 | [diff] [blame] | 1006 | fprintf(stderr, |
Matt Gumbel | d7b3308 | 2012-11-14 10:16:17 -0800 | [diff] [blame] | 1007 | "adb: Env var ANDROID_ADB_SERVER_PORT must be a positive number less than 65535. Got \"%s\"\n", |
Stefan Hilzinger | a84a42e | 2010-04-19 12:21:12 +0100 | [diff] [blame] | 1008 | server_port_str); |
| 1009 | return usage(); |
| 1010 | } |
| 1011 | } |
| 1012 | |
| 1013 | /* modifiers and flags */ |
Riley Andrews | 98f58e8 | 2014-12-05 17:37:24 -0800 | [diff] [blame] | 1014 | while (argc > 0) { |
| 1015 | if (!strcmp(argv[0],"server")) { |
David 'Digit' Turner | 305b4b0 | 2011-01-31 14:23:56 +0100 | [diff] [blame] | 1016 | is_server = 1; |
Riley Andrews | 98f58e8 | 2014-12-05 17:37:24 -0800 | [diff] [blame] | 1017 | } else if (!strcmp(argv[0],"nodaemon")) { |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 1018 | no_daemon = 1; |
| 1019 | } else if (!strcmp(argv[0], "fork-server")) { |
| 1020 | /* this is a special flag used only when the ADB client launches the ADB Server */ |
| 1021 | is_daemon = 1; |
Riley Andrews | 98f58e8 | 2014-12-05 17:37:24 -0800 | [diff] [blame] | 1022 | } else if (!strcmp(argv[0],"persist")) { |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 1023 | persist = 1; |
Riley Andrews | 98f58e8 | 2014-12-05 17:37:24 -0800 | [diff] [blame] | 1024 | } else if (!strncmp(argv[0], "-p", 2)) { |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 1025 | const char *product = NULL; |
| 1026 | if (argv[0][2] == '\0') { |
| 1027 | if (argc < 2) return usage(); |
| 1028 | product = argv[1]; |
| 1029 | argc--; |
| 1030 | argv++; |
| 1031 | } else { |
Vairavan Srinivasan | 8127323 | 2012-08-04 16:40:50 -0700 | [diff] [blame] | 1032 | product = argv[0] + 2; |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 1033 | } |
| 1034 | gProductOutPath = find_product_out_path(product); |
Elliott Hughes | 5830577 | 2015-04-17 13:57:15 -0700 | [diff] [blame] | 1035 | if (gProductOutPath.empty()) { |
| 1036 | fprintf(stderr, "adb: could not resolve \"-p %s\"\n", product); |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 1037 | return usage(); |
| 1038 | } |
| 1039 | } else if (argv[0][0]=='-' && argv[0][1]=='s') { |
| 1040 | if (isdigit(argv[0][2])) { |
| 1041 | serial = argv[0] + 2; |
| 1042 | } else { |
Riley Andrews | 98f58e8 | 2014-12-05 17:37:24 -0800 | [diff] [blame] | 1043 | if (argc < 2 || argv[0][2] != '\0') return usage(); |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 1044 | serial = argv[1]; |
| 1045 | argc--; |
| 1046 | argv++; |
| 1047 | } |
| 1048 | } else if (!strcmp(argv[0],"-d")) { |
| 1049 | ttype = kTransportUsb; |
| 1050 | } else if (!strcmp(argv[0],"-e")) { |
| 1051 | ttype = kTransportLocal; |
Matt Gumbel | d7b3308 | 2012-11-14 10:16:17 -0800 | [diff] [blame] | 1052 | } else if (!strcmp(argv[0],"-a")) { |
| 1053 | gListenAll = 1; |
Riley Andrews | 98f58e8 | 2014-12-05 17:37:24 -0800 | [diff] [blame] | 1054 | } else if (!strncmp(argv[0], "-H", 2)) { |
Matt Gumbel | d7b3308 | 2012-11-14 10:16:17 -0800 | [diff] [blame] | 1055 | const char *hostname = NULL; |
| 1056 | if (argv[0][2] == '\0') { |
| 1057 | if (argc < 2) return usage(); |
| 1058 | hostname = argv[1]; |
| 1059 | argc--; |
| 1060 | argv++; |
| 1061 | } else { |
| 1062 | hostname = argv[0] + 2; |
| 1063 | } |
| 1064 | adb_set_tcp_name(hostname); |
| 1065 | |
Riley Andrews | 98f58e8 | 2014-12-05 17:37:24 -0800 | [diff] [blame] | 1066 | } else if (!strncmp(argv[0], "-P", 2)) { |
Matt Gumbel | d7b3308 | 2012-11-14 10:16:17 -0800 | [diff] [blame] | 1067 | if (argv[0][2] == '\0') { |
| 1068 | if (argc < 2) return usage(); |
| 1069 | server_port_str = argv[1]; |
| 1070 | argc--; |
| 1071 | argv++; |
| 1072 | } else { |
| 1073 | server_port_str = argv[0] + 2; |
| 1074 | } |
| 1075 | if (strlen(server_port_str) > 0) { |
| 1076 | server_port = (int) strtol(server_port_str, NULL, 0); |
| 1077 | if (server_port <= 0 || server_port > 65535) { |
| 1078 | fprintf(stderr, |
| 1079 | "adb: port number must be a positive number less than 65536. Got \"%s\"\n", |
| 1080 | server_port_str); |
| 1081 | return usage(); |
| 1082 | } |
| 1083 | } else { |
| 1084 | fprintf(stderr, |
| 1085 | "adb: port number must be a positive number less than 65536. Got empty string.\n"); |
| 1086 | return usage(); |
| 1087 | } |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 1088 | } else { |
| 1089 | /* out of recognized modifiers and flags */ |
| 1090 | break; |
| 1091 | } |
| 1092 | argc--; |
| 1093 | argv++; |
| 1094 | } |
| 1095 | |
| 1096 | adb_set_transport(ttype, serial); |
Stefan Hilzinger | a84a42e | 2010-04-19 12:21:12 +0100 | [diff] [blame] | 1097 | adb_set_tcp_specifics(server_port); |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 1098 | |
David 'Digit' Turner | 305b4b0 | 2011-01-31 14:23:56 +0100 | [diff] [blame] | 1099 | if (is_server) { |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 1100 | if (no_daemon || is_daemon) { |
Stefan Hilzinger | a84a42e | 2010-04-19 12:21:12 +0100 | [diff] [blame] | 1101 | r = adb_main(is_daemon, server_port); |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 1102 | } else { |
Stefan Hilzinger | a84a42e | 2010-04-19 12:21:12 +0100 | [diff] [blame] | 1103 | r = launch_server(server_port); |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 1104 | } |
Riley Andrews | 98f58e8 | 2014-12-05 17:37:24 -0800 | [diff] [blame] | 1105 | if (r) { |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 1106 | fprintf(stderr,"* could not start server *\n"); |
| 1107 | } |
| 1108 | return r; |
| 1109 | } |
| 1110 | |
Riley Andrews | 98f58e8 | 2014-12-05 17:37:24 -0800 | [diff] [blame] | 1111 | if (argc == 0) { |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 1112 | return usage(); |
| 1113 | } |
| 1114 | |
Riley Andrews | c8514c8 | 2014-12-05 17:32:46 -0800 | [diff] [blame] | 1115 | /* handle wait-for-* prefix */ |
| 1116 | if (!strncmp(argv[0], "wait-for-", strlen("wait-for-"))) { |
Dan Albert | bac3474 | 2015-02-25 17:51:28 -0800 | [diff] [blame] | 1117 | const char* service = argv[0]; |
Riley Andrews | c8514c8 | 2014-12-05 17:32:46 -0800 | [diff] [blame] | 1118 | if (!strncmp(service, "wait-for-device", strlen("wait-for-device"))) { |
| 1119 | if (ttype == kTransportUsb) { |
| 1120 | service = "wait-for-usb"; |
| 1121 | } else if (ttype == kTransportLocal) { |
| 1122 | service = "wait-for-local"; |
| 1123 | } else { |
| 1124 | service = "wait-for-any"; |
| 1125 | } |
| 1126 | } |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 1127 | |
Riley Andrews | c8514c8 | 2014-12-05 17:32:46 -0800 | [diff] [blame] | 1128 | format_host_command(buf, sizeof buf, service, ttype, serial); |
| 1129 | |
| 1130 | if (adb_command(buf)) { |
| 1131 | D("failure: %s *\n",adb_error()); |
| 1132 | fprintf(stderr,"error: %s\n", adb_error()); |
| 1133 | return 1; |
| 1134 | } |
| 1135 | |
| 1136 | /* Allow a command to be run after wait-for-device, |
| 1137 | * e.g. 'adb wait-for-device shell'. |
| 1138 | */ |
| 1139 | if (argc == 1) { |
| 1140 | return 0; |
| 1141 | } |
| 1142 | |
| 1143 | /* Fall through */ |
| 1144 | argc--; |
| 1145 | argv++; |
| 1146 | } |
| 1147 | |
| 1148 | /* adb_connect() commands */ |
Riley Andrews | 98f58e8 | 2014-12-05 17:37:24 -0800 | [diff] [blame] | 1149 | if (!strcmp(argv[0], "devices")) { |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 1150 | char *tmp; |
Dan Albert | bac3474 | 2015-02-25 17:51:28 -0800 | [diff] [blame] | 1151 | const char *listopt; |
Scott Anderson | e109d26 | 2012-04-20 11:21:14 -0700 | [diff] [blame] | 1152 | if (argc < 2) |
| 1153 | listopt = ""; |
| 1154 | else if (argc == 2 && !strcmp(argv[1], "-l")) |
| 1155 | listopt = argv[1]; |
| 1156 | else { |
| 1157 | fprintf(stderr, "Usage: adb devices [-l]\n"); |
| 1158 | return 1; |
| 1159 | } |
| 1160 | snprintf(buf, sizeof buf, "host:%s%s", argv[0], listopt); |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 1161 | tmp = adb_query(buf); |
Riley Andrews | 98f58e8 | 2014-12-05 17:37:24 -0800 | [diff] [blame] | 1162 | if (tmp) { |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 1163 | printf("List of devices attached \n"); |
| 1164 | printf("%s\n", tmp); |
| 1165 | return 0; |
| 1166 | } else { |
| 1167 | return 1; |
| 1168 | } |
| 1169 | } |
Riley Andrews | c8514c8 | 2014-12-05 17:32:46 -0800 | [diff] [blame] | 1170 | else if (!strcmp(argv[0], "connect")) { |
Mike Lockwood | ff19670 | 2009-08-24 15:58:40 -0700 | [diff] [blame] | 1171 | char *tmp; |
| 1172 | if (argc != 2) { |
Mike Lockwood | cbbe79a | 2010-05-24 10:44:35 -0400 | [diff] [blame] | 1173 | fprintf(stderr, "Usage: adb connect <host>[:<port>]\n"); |
Mike Lockwood | ff19670 | 2009-08-24 15:58:40 -0700 | [diff] [blame] | 1174 | return 1; |
| 1175 | } |
Mike Lockwood | cbbe79a | 2010-05-24 10:44:35 -0400 | [diff] [blame] | 1176 | snprintf(buf, sizeof buf, "host:connect:%s", argv[1]); |
| 1177 | tmp = adb_query(buf); |
Riley Andrews | 98f58e8 | 2014-12-05 17:37:24 -0800 | [diff] [blame] | 1178 | if (tmp) { |
Mike Lockwood | cbbe79a | 2010-05-24 10:44:35 -0400 | [diff] [blame] | 1179 | printf("%s\n", tmp); |
| 1180 | return 0; |
| 1181 | } else { |
| 1182 | return 1; |
| 1183 | } |
| 1184 | } |
Riley Andrews | c8514c8 | 2014-12-05 17:32:46 -0800 | [diff] [blame] | 1185 | else if (!strcmp(argv[0], "disconnect")) { |
Mike Lockwood | cbbe79a | 2010-05-24 10:44:35 -0400 | [diff] [blame] | 1186 | char *tmp; |
| 1187 | if (argc > 2) { |
| 1188 | fprintf(stderr, "Usage: adb disconnect [<host>[:<port>]]\n"); |
| 1189 | return 1; |
| 1190 | } |
| 1191 | if (argc == 2) { |
| 1192 | snprintf(buf, sizeof buf, "host:disconnect:%s", argv[1]); |
| 1193 | } else { |
| 1194 | snprintf(buf, sizeof buf, "host:disconnect:"); |
| 1195 | } |
Mike Lockwood | ff19670 | 2009-08-24 15:58:40 -0700 | [diff] [blame] | 1196 | tmp = adb_query(buf); |
Riley Andrews | 98f58e8 | 2014-12-05 17:37:24 -0800 | [diff] [blame] | 1197 | if (tmp) { |
Mike Lockwood | ff19670 | 2009-08-24 15:58:40 -0700 | [diff] [blame] | 1198 | printf("%s\n", tmp); |
| 1199 | return 0; |
| 1200 | } else { |
| 1201 | return 1; |
| 1202 | } |
| 1203 | } |
Riley Andrews | c8514c8 | 2014-12-05 17:32:46 -0800 | [diff] [blame] | 1204 | else if (!strcmp(argv[0], "emu")) { |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 1205 | return adb_send_emulator_command(argc, argv); |
| 1206 | } |
Riley Andrews | c8514c8 | 2014-12-05 17:32:46 -0800 | [diff] [blame] | 1207 | else if (!strcmp(argv[0], "shell") || !strcmp(argv[0], "hell")) { |
Daniel Sandler | ff91ab8 | 2010-08-19 01:10:18 -0400 | [diff] [blame] | 1208 | char h = (argv[0][0] == 'h'); |
| 1209 | |
| 1210 | if (h) { |
| 1211 | printf("\x1b[41;33m"); |
| 1212 | fflush(stdout); |
| 1213 | } |
| 1214 | |
Riley Andrews | 98f58e8 | 2014-12-05 17:37:24 -0800 | [diff] [blame] | 1215 | if (argc < 2) { |
JP Abgrall | 408fa57 | 2011-03-16 15:57:42 -0700 | [diff] [blame] | 1216 | D("starting interactive shell\n"); |
Daniel Sandler | ff91ab8 | 2010-08-19 01:10:18 -0400 | [diff] [blame] | 1217 | r = interactive_shell(); |
| 1218 | if (h) { |
| 1219 | printf("\x1b[0m"); |
| 1220 | fflush(stdout); |
| 1221 | } |
| 1222 | return r; |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 1223 | } |
| 1224 | |
Elliott Hughes | 2baae3a | 2015-04-17 10:59:34 -0700 | [diff] [blame] | 1225 | std::string cmd = "shell:"; |
| 1226 | cmd += argv[1]; |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 1227 | argc -= 2; |
| 1228 | argv += 2; |
Jeff Sharkey | 5d9d434 | 2014-05-26 18:30:43 -0700 | [diff] [blame] | 1229 | while (argc-- > 0) { |
Elliott Hughes | 6c34bba | 2015-04-17 20:11:08 -0700 | [diff] [blame] | 1230 | cmd += " " + escape_arg(*argv++); |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 1231 | } |
| 1232 | |
Elliott Hughes | 2baae3a | 2015-04-17 10:59:34 -0700 | [diff] [blame] | 1233 | while (true) { |
| 1234 | D("interactive shell loop. cmd=%s\n", cmd.c_str()); |
| 1235 | int fd = adb_connect(cmd.c_str()); |
| 1236 | int r; |
Riley Andrews | 98f58e8 | 2014-12-05 17:37:24 -0800 | [diff] [blame] | 1237 | if (fd >= 0) { |
JP Abgrall | 408fa57 | 2011-03-16 15:57:42 -0700 | [diff] [blame] | 1238 | D("about to read_and_dump(fd=%d)\n", fd); |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 1239 | read_and_dump(fd); |
JP Abgrall | 408fa57 | 2011-03-16 15:57:42 -0700 | [diff] [blame] | 1240 | D("read_and_dump() done.\n"); |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 1241 | adb_close(fd); |
| 1242 | r = 0; |
| 1243 | } else { |
| 1244 | fprintf(stderr,"error: %s\n", adb_error()); |
| 1245 | r = -1; |
| 1246 | } |
| 1247 | |
Riley Andrews | 98f58e8 | 2014-12-05 17:37:24 -0800 | [diff] [blame] | 1248 | if (persist) { |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 1249 | fprintf(stderr,"\n- waiting for device -\n"); |
| 1250 | adb_sleep_ms(1000); |
| 1251 | do_cmd(ttype, serial, "wait-for-device", 0); |
| 1252 | } else { |
Daniel Sandler | ff91ab8 | 2010-08-19 01:10:18 -0400 | [diff] [blame] | 1253 | if (h) { |
| 1254 | printf("\x1b[0m"); |
| 1255 | fflush(stdout); |
| 1256 | } |
JP Abgrall | 408fa57 | 2011-03-16 15:57:42 -0700 | [diff] [blame] | 1257 | D("interactive shell loop. return r=%d\n", r); |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 1258 | return r; |
| 1259 | } |
| 1260 | } |
| 1261 | } |
Riley Andrews | c8514c8 | 2014-12-05 17:32:46 -0800 | [diff] [blame] | 1262 | else if (!strcmp(argv[0], "exec-in") || !strcmp(argv[0], "exec-out")) { |
Jeff Sharkey | 5d9d434 | 2014-05-26 18:30:43 -0700 | [diff] [blame] | 1263 | int exec_in = !strcmp(argv[0], "exec-in"); |
Jeff Sharkey | 5d9d434 | 2014-05-26 18:30:43 -0700 | [diff] [blame] | 1264 | |
Elliott Hughes | 2baae3a | 2015-04-17 10:59:34 -0700 | [diff] [blame] | 1265 | std::string cmd = "exec:"; |
| 1266 | cmd += argv[1]; |
Jeff Sharkey | 5d9d434 | 2014-05-26 18:30:43 -0700 | [diff] [blame] | 1267 | argc -= 2; |
| 1268 | argv += 2; |
| 1269 | while (argc-- > 0) { |
Elliott Hughes | 6c34bba | 2015-04-17 20:11:08 -0700 | [diff] [blame] | 1270 | cmd += " " + escape_arg(*argv++); |
Jeff Sharkey | 5d9d434 | 2014-05-26 18:30:43 -0700 | [diff] [blame] | 1271 | } |
| 1272 | |
Elliott Hughes | 2baae3a | 2015-04-17 10:59:34 -0700 | [diff] [blame] | 1273 | int fd = adb_connect(cmd.c_str()); |
Jeff Sharkey | 5d9d434 | 2014-05-26 18:30:43 -0700 | [diff] [blame] | 1274 | if (fd < 0) { |
| 1275 | fprintf(stderr, "error: %s\n", adb_error()); |
| 1276 | return -1; |
| 1277 | } |
| 1278 | |
| 1279 | if (exec_in) { |
| 1280 | copy_to_file(STDIN_FILENO, fd); |
| 1281 | } else { |
| 1282 | copy_to_file(fd, STDOUT_FILENO); |
| 1283 | } |
| 1284 | |
| 1285 | adb_close(fd); |
| 1286 | return 0; |
| 1287 | } |
Riley Andrews | c8514c8 | 2014-12-05 17:32:46 -0800 | [diff] [blame] | 1288 | else if (!strcmp(argv[0], "kill-server")) { |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 1289 | int fd; |
| 1290 | fd = _adb_connect("host:kill"); |
Riley Andrews | 98f58e8 | 2014-12-05 17:37:24 -0800 | [diff] [blame] | 1291 | if (fd == -1) { |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 1292 | fprintf(stderr,"* server not running *\n"); |
| 1293 | return 1; |
| 1294 | } |
| 1295 | return 0; |
| 1296 | } |
Riley Andrews | c8514c8 | 2014-12-05 17:32:46 -0800 | [diff] [blame] | 1297 | else if (!strcmp(argv[0], "sideload")) { |
| 1298 | if (argc != 2) return usage(); |
Doug Zongker | 71fe584 | 2014-06-26 15:35:36 -0700 | [diff] [blame] | 1299 | if (adb_sideload_host(argv[1])) { |
Doug Zongker | 447f061 | 2012-01-09 14:54:53 -0800 | [diff] [blame] | 1300 | return 1; |
| 1301 | } else { |
| 1302 | return 0; |
| 1303 | } |
| 1304 | } |
Riley Andrews | c8514c8 | 2014-12-05 17:32:46 -0800 | [diff] [blame] | 1305 | else if (!strcmp(argv[0], "remount") || |
| 1306 | !strcmp(argv[0], "reboot") || |
| 1307 | !strcmp(argv[0], "reboot-bootloader") || |
| 1308 | !strcmp(argv[0], "tcpip") || |
| 1309 | !strcmp(argv[0], "usb") || |
| 1310 | !strcmp(argv[0], "root") || |
Dan Pasanen | 9885881 | 2014-10-06 12:57:20 -0500 | [diff] [blame] | 1311 | !strcmp(argv[0], "unroot") || |
Riley Andrews | c8514c8 | 2014-12-05 17:32:46 -0800 | [diff] [blame] | 1312 | !strcmp(argv[0], "disable-verity") || |
| 1313 | !strcmp(argv[0], "enable-verity")) { |
Mike Lockwood | ff19670 | 2009-08-24 15:58:40 -0700 | [diff] [blame] | 1314 | char command[100]; |
Tao Bao | 175b7bb | 2015-03-29 11:22:34 -0700 | [diff] [blame] | 1315 | if (!strcmp(argv[0], "reboot-bootloader")) { |
Romain Guy | 311add4 | 2009-12-14 14:42:17 -0800 | [diff] [blame] | 1316 | snprintf(command, sizeof(command), "reboot:bootloader"); |
Tao Bao | 175b7bb | 2015-03-29 11:22:34 -0700 | [diff] [blame] | 1317 | } else if (argc > 1) { |
Mike Lockwood | ff19670 | 2009-08-24 15:58:40 -0700 | [diff] [blame] | 1318 | snprintf(command, sizeof(command), "%s:%s", argv[0], argv[1]); |
Tao Bao | 175b7bb | 2015-03-29 11:22:34 -0700 | [diff] [blame] | 1319 | } else { |
Mike Lockwood | ff19670 | 2009-08-24 15:58:40 -0700 | [diff] [blame] | 1320 | snprintf(command, sizeof(command), "%s:", argv[0]); |
The Android Open Source Project | e037fd7 | 2009-03-13 13:04:37 -0700 | [diff] [blame] | 1321 | } |
Tao Bao | 175b7bb | 2015-03-29 11:22:34 -0700 | [diff] [blame] | 1322 | return adb_connect_command(command); |
The Android Open Source Project | e037fd7 | 2009-03-13 13:04:37 -0700 | [diff] [blame] | 1323 | } |
Riley Andrews | c8514c8 | 2014-12-05 17:32:46 -0800 | [diff] [blame] | 1324 | else if (!strcmp(argv[0], "bugreport")) { |
Dan Egnor | c130ea7 | 2010-01-20 13:50:36 -0800 | [diff] [blame] | 1325 | if (argc != 1) return usage(); |
| 1326 | do_cmd(ttype, serial, "shell", "bugreport", 0); |
Mike Lockwood | f56d1b5 | 2009-09-03 14:54:58 -0400 | [diff] [blame] | 1327 | return 0; |
| 1328 | } |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 1329 | /* adb_command() wrapper commands */ |
Riley Andrews | c8514c8 | 2014-12-05 17:32:46 -0800 | [diff] [blame] | 1330 | else if (!strcmp(argv[0], "forward") || !strcmp(argv[0], "reverse")) { |
David 'Digit' Turner | 0d82fbf | 2012-11-14 15:01:55 +0100 | [diff] [blame] | 1331 | char host_prefix[64]; |
David 'Digit' Turner | 2525869 | 2013-03-21 21:07:42 +0100 | [diff] [blame] | 1332 | char reverse = (char) !strcmp(argv[0], "reverse"); |
David 'Digit' Turner | 0d82fbf | 2012-11-14 15:01:55 +0100 | [diff] [blame] | 1333 | char remove = 0; |
| 1334 | char remove_all = 0; |
| 1335 | char list = 0; |
| 1336 | char no_rebind = 0; |
| 1337 | |
| 1338 | // Parse options here. |
| 1339 | while (argc > 1 && argv[1][0] == '-') { |
| 1340 | if (!strcmp(argv[1], "--list")) |
| 1341 | list = 1; |
| 1342 | else if (!strcmp(argv[1], "--remove")) |
| 1343 | remove = 1; |
| 1344 | else if (!strcmp(argv[1], "--remove-all")) |
| 1345 | remove_all = 1; |
| 1346 | else if (!strcmp(argv[1], "--no-rebind")) |
| 1347 | no_rebind = 1; |
| 1348 | else { |
| 1349 | return usage(); |
| 1350 | } |
| 1351 | argc--; |
| 1352 | argv++; |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 1353 | } |
David 'Digit' Turner | 0d82fbf | 2012-11-14 15:01:55 +0100 | [diff] [blame] | 1354 | |
| 1355 | // Ensure we can only use one option at a time. |
| 1356 | if (list + remove + remove_all + no_rebind > 1) { |
| 1357 | return usage(); |
| 1358 | } |
| 1359 | |
| 1360 | // Determine the <host-prefix> for this command. |
David 'Digit' Turner | 2525869 | 2013-03-21 21:07:42 +0100 | [diff] [blame] | 1361 | if (reverse) { |
| 1362 | snprintf(host_prefix, sizeof host_prefix, "reverse"); |
David 'Digit' Turner | 0d82fbf | 2012-11-14 15:01:55 +0100 | [diff] [blame] | 1363 | } else { |
David 'Digit' Turner | 2525869 | 2013-03-21 21:07:42 +0100 | [diff] [blame] | 1364 | if (serial) { |
| 1365 | snprintf(host_prefix, sizeof host_prefix, "host-serial:%s", |
| 1366 | serial); |
| 1367 | } else if (ttype == kTransportUsb) { |
| 1368 | snprintf(host_prefix, sizeof host_prefix, "host-usb"); |
| 1369 | } else if (ttype == kTransportLocal) { |
| 1370 | snprintf(host_prefix, sizeof host_prefix, "host-local"); |
| 1371 | } else { |
| 1372 | snprintf(host_prefix, sizeof host_prefix, "host"); |
| 1373 | } |
David 'Digit' Turner | 0d82fbf | 2012-11-14 15:01:55 +0100 | [diff] [blame] | 1374 | } |
| 1375 | |
| 1376 | // Implement forward --list |
| 1377 | if (list) { |
| 1378 | if (argc != 1) |
| 1379 | return usage(); |
| 1380 | snprintf(buf, sizeof buf, "%s:list-forward", host_prefix); |
| 1381 | char* forwards = adb_query(buf); |
| 1382 | if (forwards == NULL) { |
| 1383 | fprintf(stderr, "error: %s\n", adb_error()); |
| 1384 | return 1; |
| 1385 | } |
| 1386 | printf("%s", forwards); |
| 1387 | free(forwards); |
| 1388 | return 0; |
| 1389 | } |
| 1390 | |
| 1391 | // Implement forward --remove-all |
| 1392 | else if (remove_all) { |
| 1393 | if (argc != 1) |
| 1394 | return usage(); |
| 1395 | snprintf(buf, sizeof buf, "%s:killforward-all", host_prefix); |
| 1396 | } |
| 1397 | |
| 1398 | // Implement forward --remove <local> |
| 1399 | else if (remove) { |
| 1400 | if (argc != 2) |
| 1401 | return usage(); |
| 1402 | snprintf(buf, sizeof buf, "%s:killforward:%s", host_prefix, argv[1]); |
| 1403 | } |
| 1404 | // Or implement one of: |
| 1405 | // forward <local> <remote> |
| 1406 | // forward --no-rebind <local> <remote> |
| 1407 | else |
| 1408 | { |
| 1409 | if (argc != 3) |
| 1410 | return usage(); |
David 'Digit' Turner | f0e0c2e | 2015-01-22 09:07:41 +0100 | [diff] [blame] | 1411 | const char* command = no_rebind ? "forward:norebind" : "forward"; |
David 'Digit' Turner | 0d82fbf | 2012-11-14 15:01:55 +0100 | [diff] [blame] | 1412 | snprintf(buf, sizeof buf, "%s:%s:%s;%s", host_prefix, command, argv[1], argv[2]); |
| 1413 | } |
| 1414 | |
Riley Andrews | 98f58e8 | 2014-12-05 17:37:24 -0800 | [diff] [blame] | 1415 | if (adb_command(buf)) { |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 1416 | fprintf(stderr,"error: %s\n", adb_error()); |
| 1417 | return 1; |
| 1418 | } |
| 1419 | return 0; |
| 1420 | } |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 1421 | /* do_sync_*() commands */ |
Riley Andrews | c8514c8 | 2014-12-05 17:32:46 -0800 | [diff] [blame] | 1422 | else if (!strcmp(argv[0], "ls")) { |
| 1423 | if (argc != 2) return usage(); |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 1424 | return do_sync_ls(argv[1]); |
| 1425 | } |
Riley Andrews | c8514c8 | 2014-12-05 17:32:46 -0800 | [diff] [blame] | 1426 | else if (!strcmp(argv[0], "push")) { |
Mark Lindner | 76f2a93 | 2014-03-11 17:55:59 -0700 | [diff] [blame] | 1427 | int show_progress = 0; |
Lajos Molnar | de8ff4a | 2013-04-19 12:41:09 -0700 | [diff] [blame] | 1428 | int copy_attrs = 0; // unused |
Mark Lindner | 76f2a93 | 2014-03-11 17:55:59 -0700 | [diff] [blame] | 1429 | const char* lpath = NULL, *rpath = NULL; |
| 1430 | |
Lajos Molnar | de8ff4a | 2013-04-19 12:41:09 -0700 | [diff] [blame] | 1431 | parse_push_pull_args(&argv[1], argc - 1, &lpath, &rpath, &show_progress, ©_attrs); |
Mark Lindner | 76f2a93 | 2014-03-11 17:55:59 -0700 | [diff] [blame] | 1432 | |
| 1433 | if ((lpath != NULL) && (rpath != NULL)) { |
Jeff Sharkey | 960df97 | 2014-06-09 17:30:57 -0700 | [diff] [blame] | 1434 | return do_sync_push(lpath, rpath, show_progress); |
Mark Lindner | 76f2a93 | 2014-03-11 17:55:59 -0700 | [diff] [blame] | 1435 | } |
| 1436 | |
| 1437 | return usage(); |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 1438 | } |
Riley Andrews | c8514c8 | 2014-12-05 17:32:46 -0800 | [diff] [blame] | 1439 | else if (!strcmp(argv[0], "pull")) { |
Mark Lindner | 76f2a93 | 2014-03-11 17:55:59 -0700 | [diff] [blame] | 1440 | int show_progress = 0; |
Lajos Molnar | de8ff4a | 2013-04-19 12:41:09 -0700 | [diff] [blame] | 1441 | int copy_attrs = 0; |
Mark Lindner | 76f2a93 | 2014-03-11 17:55:59 -0700 | [diff] [blame] | 1442 | const char* rpath = NULL, *lpath = "."; |
| 1443 | |
Lajos Molnar | de8ff4a | 2013-04-19 12:41:09 -0700 | [diff] [blame] | 1444 | parse_push_pull_args(&argv[1], argc - 1, &rpath, &lpath, &show_progress, ©_attrs); |
Mark Lindner | 76f2a93 | 2014-03-11 17:55:59 -0700 | [diff] [blame] | 1445 | |
| 1446 | if (rpath != NULL) { |
Lajos Molnar | de8ff4a | 2013-04-19 12:41:09 -0700 | [diff] [blame] | 1447 | return do_sync_pull(rpath, lpath, show_progress, copy_attrs); |
Joe Onorato | 00c0eea | 2010-01-05 13:42:25 -0800 | [diff] [blame] | 1448 | } |
Mark Lindner | 76f2a93 | 2014-03-11 17:55:59 -0700 | [diff] [blame] | 1449 | |
| 1450 | return usage(); |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 1451 | } |
Riley Andrews | c8514c8 | 2014-12-05 17:32:46 -0800 | [diff] [blame] | 1452 | else if (!strcmp(argv[0], "install")) { |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 1453 | if (argc < 2) return usage(); |
| 1454 | return install_app(ttype, serial, argc, argv); |
| 1455 | } |
Riley Andrews | c8514c8 | 2014-12-05 17:32:46 -0800 | [diff] [blame] | 1456 | else if (!strcmp(argv[0], "install-multiple")) { |
Jeff Sharkey | 960df97 | 2014-06-09 17:30:57 -0700 | [diff] [blame] | 1457 | if (argc < 2) return usage(); |
| 1458 | return install_multiple_app(ttype, serial, argc, argv); |
| 1459 | } |
Riley Andrews | c8514c8 | 2014-12-05 17:32:46 -0800 | [diff] [blame] | 1460 | else if (!strcmp(argv[0], "uninstall")) { |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 1461 | if (argc < 2) return usage(); |
| 1462 | return uninstall_app(ttype, serial, argc, argv); |
| 1463 | } |
Riley Andrews | c8514c8 | 2014-12-05 17:32:46 -0800 | [diff] [blame] | 1464 | else if (!strcmp(argv[0], "sync")) { |
Elliott Hughes | d236d07 | 2015-04-21 10:17:07 -0700 | [diff] [blame] | 1465 | std::string src; |
Elliott Hughes | 5830577 | 2015-04-17 13:57:15 -0700 | [diff] [blame] | 1466 | bool list_only = false; |
Riley Andrews | 98f58e8 | 2014-12-05 17:37:24 -0800 | [diff] [blame] | 1467 | if (argc < 2) { |
Elliott Hughes | 5830577 | 2015-04-17 13:57:15 -0700 | [diff] [blame] | 1468 | // No local path was specified. |
Elliott Hughes | d236d07 | 2015-04-21 10:17:07 -0700 | [diff] [blame] | 1469 | src = ""; |
Anthony Newnam | 705c944 | 2010-02-22 08:36:49 -0600 | [diff] [blame] | 1470 | } else if (argc >= 2 && strcmp(argv[1], "-l") == 0) { |
Elliott Hughes | d236d07 | 2015-04-21 10:17:07 -0700 | [diff] [blame] | 1471 | list_only = true; |
Anthony Newnam | 705c944 | 2010-02-22 08:36:49 -0600 | [diff] [blame] | 1472 | if (argc == 3) { |
Elliott Hughes | d236d07 | 2015-04-21 10:17:07 -0700 | [diff] [blame] | 1473 | src = argv[2]; |
Anthony Newnam | 705c944 | 2010-02-22 08:36:49 -0600 | [diff] [blame] | 1474 | } else { |
Elliott Hughes | d236d07 | 2015-04-21 10:17:07 -0700 | [diff] [blame] | 1475 | src = ""; |
Anthony Newnam | 705c944 | 2010-02-22 08:36:49 -0600 | [diff] [blame] | 1476 | } |
Riley Andrews | 98f58e8 | 2014-12-05 17:37:24 -0800 | [diff] [blame] | 1477 | } else if (argc == 2) { |
Elliott Hughes | 5830577 | 2015-04-17 13:57:15 -0700 | [diff] [blame] | 1478 | // A local path or "android"/"data" arg was specified. |
Elliott Hughes | d236d07 | 2015-04-21 10:17:07 -0700 | [diff] [blame] | 1479 | src = argv[1]; |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 1480 | } else { |
| 1481 | return usage(); |
| 1482 | } |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 1483 | |
Elliott Hughes | d236d07 | 2015-04-21 10:17:07 -0700 | [diff] [blame] | 1484 | if (src != "" && |
| 1485 | src != "system" && src != "data" && src != "vendor" && src != "oem") { |
Elliott Hughes | 5830577 | 2015-04-17 13:57:15 -0700 | [diff] [blame] | 1486 | return usage(); |
| 1487 | } |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 1488 | |
Elliott Hughes | 5830577 | 2015-04-17 13:57:15 -0700 | [diff] [blame] | 1489 | std::string system_src_path = product_file("system"); |
| 1490 | std::string data_src_path = product_file("data"); |
| 1491 | std::string vendor_src_path = product_file("vendor"); |
| 1492 | std::string oem_src_path = product_file("oem"); |
Elliott Hughes | 5830577 | 2015-04-17 13:57:15 -0700 | [diff] [blame] | 1493 | |
| 1494 | int rc = 0; |
Elliott Hughes | d236d07 | 2015-04-21 10:17:07 -0700 | [diff] [blame] | 1495 | if (rc == 0 && (src.empty() || src == "system")) { |
| 1496 | rc = do_sync_sync(system_src_path, "/system", list_only); |
Elliott Hughes | 5830577 | 2015-04-17 13:57:15 -0700 | [diff] [blame] | 1497 | } |
Elliott Hughes | d236d07 | 2015-04-21 10:17:07 -0700 | [diff] [blame] | 1498 | if (rc == 0 && (src.empty() || src == "vendor") && directory_exists(vendor_src_path)) { |
| 1499 | rc = do_sync_sync(vendor_src_path, "/vendor", list_only); |
Elliott Hughes | 5830577 | 2015-04-17 13:57:15 -0700 | [diff] [blame] | 1500 | } |
Elliott Hughes | d236d07 | 2015-04-21 10:17:07 -0700 | [diff] [blame] | 1501 | if (rc == 0 && (src.empty() || src == "oem") && directory_exists(oem_src_path)) { |
| 1502 | rc = do_sync_sync(oem_src_path, "/oem", list_only); |
Elliott Hughes | 5830577 | 2015-04-17 13:57:15 -0700 | [diff] [blame] | 1503 | } |
Elliott Hughes | d236d07 | 2015-04-21 10:17:07 -0700 | [diff] [blame] | 1504 | if (rc == 0 && (src.empty() || src == "data")) { |
| 1505 | rc = do_sync_sync(data_src_path, "/data", list_only); |
Elliott Hughes | 5830577 | 2015-04-17 13:57:15 -0700 | [diff] [blame] | 1506 | } |
| 1507 | return rc; |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 1508 | } |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 1509 | /* passthrough commands */ |
Riley Andrews | c8514c8 | 2014-12-05 17:32:46 -0800 | [diff] [blame] | 1510 | else if (!strcmp(argv[0],"get-state") || |
Scott Anderson | e109d26 | 2012-04-20 11:21:14 -0700 | [diff] [blame] | 1511 | !strcmp(argv[0],"get-serialno") || |
| 1512 | !strcmp(argv[0],"get-devpath")) |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 1513 | { |
| 1514 | char *tmp; |
| 1515 | |
| 1516 | format_host_command(buf, sizeof buf, argv[0], ttype, serial); |
| 1517 | tmp = adb_query(buf); |
Riley Andrews | 98f58e8 | 2014-12-05 17:37:24 -0800 | [diff] [blame] | 1518 | if (tmp) { |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 1519 | printf("%s\n", tmp); |
| 1520 | return 0; |
| 1521 | } else { |
| 1522 | return 1; |
| 1523 | } |
| 1524 | } |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 1525 | /* other commands */ |
Riley Andrews | c8514c8 | 2014-12-05 17:32:46 -0800 | [diff] [blame] | 1526 | else if (!strcmp(argv[0],"status-window")) { |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 1527 | status_window(ttype, serial); |
| 1528 | return 0; |
| 1529 | } |
Riley Andrews | c8514c8 | 2014-12-05 17:32:46 -0800 | [diff] [blame] | 1530 | else if (!strcmp(argv[0],"logcat") || !strcmp(argv[0],"lolcat") || !strcmp(argv[0],"longcat")) { |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 1531 | return logcat(ttype, serial, argc, argv); |
| 1532 | } |
Riley Andrews | c8514c8 | 2014-12-05 17:32:46 -0800 | [diff] [blame] | 1533 | else if (!strcmp(argv[0],"ppp")) { |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 1534 | return ppp(argc, argv); |
| 1535 | } |
Riley Andrews | c8514c8 | 2014-12-05 17:32:46 -0800 | [diff] [blame] | 1536 | else if (!strcmp(argv[0], "start-server")) { |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 1537 | return adb_connect("host:start-server"); |
| 1538 | } |
Riley Andrews | c8514c8 | 2014-12-05 17:32:46 -0800 | [diff] [blame] | 1539 | else if (!strcmp(argv[0], "backup")) { |
Christopher Tate | d2f5415 | 2011-04-21 12:53:28 -0700 | [diff] [blame] | 1540 | return backup(argc, argv); |
| 1541 | } |
Riley Andrews | c8514c8 | 2014-12-05 17:32:46 -0800 | [diff] [blame] | 1542 | else if (!strcmp(argv[0], "restore")) { |
Christopher Tate | 702967a | 2011-05-17 15:52:54 -0700 | [diff] [blame] | 1543 | return restore(argc, argv); |
| 1544 | } |
Riley Andrews | c8514c8 | 2014-12-05 17:32:46 -0800 | [diff] [blame] | 1545 | else if (!strcmp(argv[0], "keygen")) { |
Nick Kralevich | bea3f9c | 2014-11-13 15:17:29 -0800 | [diff] [blame] | 1546 | if (argc < 2) return usage(); |
| 1547 | return adb_auth_keygen(argv[1]); |
| 1548 | } |
Riley Andrews | c8514c8 | 2014-12-05 17:32:46 -0800 | [diff] [blame] | 1549 | else if (!strcmp(argv[0], "jdwp")) { |
Tao Bao | 175b7bb | 2015-03-29 11:22:34 -0700 | [diff] [blame] | 1550 | return adb_connect_command("jdwp"); |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 1551 | } |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 1552 | /* "adb /?" is a common idiom under Windows */ |
Riley Andrews | c8514c8 | 2014-12-05 17:32:46 -0800 | [diff] [blame] | 1553 | else if (!strcmp(argv[0], "help") || !strcmp(argv[0], "/?")) { |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 1554 | help(); |
| 1555 | return 0; |
| 1556 | } |
Riley Andrews | c8514c8 | 2014-12-05 17:32:46 -0800 | [diff] [blame] | 1557 | else if (!strcmp(argv[0], "version")) { |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 1558 | version(stdout); |
| 1559 | return 0; |
| 1560 | } |
| 1561 | |
| 1562 | usage(); |
| 1563 | return 1; |
| 1564 | } |
| 1565 | |
Alexander Ivchenko | 678bd2e | 2014-08-06 14:51:40 +0400 | [diff] [blame] | 1566 | #define MAX_ARGV_LENGTH 16 |
Dan Albert | bac3474 | 2015-02-25 17:51:28 -0800 | [diff] [blame] | 1567 | static int do_cmd(transport_type ttype, const char* serial, const char *cmd, ...) |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 1568 | { |
Dan Albert | bac3474 | 2015-02-25 17:51:28 -0800 | [diff] [blame] | 1569 | const char *argv[MAX_ARGV_LENGTH]; |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 1570 | int argc; |
| 1571 | va_list ap; |
| 1572 | |
| 1573 | va_start(ap, cmd); |
| 1574 | argc = 0; |
| 1575 | |
| 1576 | if (serial) { |
| 1577 | argv[argc++] = "-s"; |
| 1578 | argv[argc++] = serial; |
| 1579 | } else if (ttype == kTransportUsb) { |
| 1580 | argv[argc++] = "-d"; |
| 1581 | } else if (ttype == kTransportLocal) { |
| 1582 | argv[argc++] = "-e"; |
| 1583 | } |
| 1584 | |
| 1585 | argv[argc++] = cmd; |
Alexander Ivchenko | 678bd2e | 2014-08-06 14:51:40 +0400 | [diff] [blame] | 1586 | while(argc < MAX_ARGV_LENGTH && |
| 1587 | (argv[argc] = va_arg(ap, char*)) != 0) argc++; |
| 1588 | assert(argc < MAX_ARGV_LENGTH); |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 1589 | va_end(ap); |
| 1590 | |
| 1591 | #if 0 |
| 1592 | int n; |
| 1593 | fprintf(stderr,"argc = %d\n",argc); |
| 1594 | for(n = 0; n < argc; n++) { |
| 1595 | fprintf(stderr,"argv[%d] = \"%s\"\n", n, argv[n]); |
| 1596 | } |
| 1597 | #endif |
| 1598 | |
| 1599 | return adb_commandline(argc, argv); |
| 1600 | } |
| 1601 | |
Dan Albert | bac3474 | 2015-02-25 17:51:28 -0800 | [diff] [blame] | 1602 | static int pm_command(transport_type transport, const char* serial, |
| 1603 | int argc, const char** argv) |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 1604 | { |
Elliott Hughes | 2baae3a | 2015-04-17 10:59:34 -0700 | [diff] [blame] | 1605 | std::string cmd = "shell:pm"; |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 1606 | |
Elliott Hughes | 2baae3a | 2015-04-17 10:59:34 -0700 | [diff] [blame] | 1607 | while (argc-- > 0) { |
Elliott Hughes | 6c34bba | 2015-04-17 20:11:08 -0700 | [diff] [blame] | 1608 | cmd += " " + escape_arg(*argv++); |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 1609 | } |
| 1610 | |
Elliott Hughes | 1555147 | 2015-04-21 17:58:55 -0700 | [diff] [blame] | 1611 | return send_shell_command(transport, serial, cmd); |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 1612 | } |
| 1613 | |
Elliott Hughes | 5830577 | 2015-04-17 13:57:15 -0700 | [diff] [blame] | 1614 | static int uninstall_app(transport_type transport, const char* serial, int argc, |
| 1615 | const char** argv) |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 1616 | { |
| 1617 | /* if the user choose the -k option, we refuse to do it until devices are |
| 1618 | out with the option to uninstall the remaining data somehow (adb/ui) */ |
| 1619 | if (argc == 3 && strcmp(argv[1], "-k") == 0) |
| 1620 | { |
| 1621 | printf( |
| 1622 | "The -k option uninstalls the application while retaining the data/cache.\n" |
| 1623 | "At the moment, there is no way to remove the remaining data.\n" |
| 1624 | "You will have to reinstall the application with the same signature, and fully uninstall it.\n" |
| 1625 | "If you truly wish to continue, execute 'adb shell pm uninstall -k %s'\n", argv[2]); |
| 1626 | return -1; |
| 1627 | } |
| 1628 | |
| 1629 | /* 'adb uninstall' takes the same arguments as 'pm uninstall' on device */ |
| 1630 | return pm_command(transport, serial, argc, argv); |
| 1631 | } |
| 1632 | |
Dan Albert | bac3474 | 2015-02-25 17:51:28 -0800 | [diff] [blame] | 1633 | static int delete_file(transport_type transport, const char* serial, char* filename) |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 1634 | { |
Elliott Hughes | 2baae3a | 2015-04-17 10:59:34 -0700 | [diff] [blame] | 1635 | std::string cmd = "shell:rm -f " + escape_arg(filename); |
Elliott Hughes | 1555147 | 2015-04-21 17:58:55 -0700 | [diff] [blame] | 1636 | return send_shell_command(transport, serial, cmd); |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 1637 | } |
| 1638 | |
Kenny Root | 597ea5b | 2011-08-05 11:19:45 -0700 | [diff] [blame] | 1639 | static const char* get_basename(const char* filename) |
| 1640 | { |
| 1641 | const char* basename = adb_dirstop(filename); |
| 1642 | if (basename) { |
| 1643 | basename++; |
| 1644 | return basename; |
| 1645 | } else { |
| 1646 | return filename; |
| 1647 | } |
| 1648 | } |
| 1649 | |
Elliott Hughes | 5830577 | 2015-04-17 13:57:15 -0700 | [diff] [blame] | 1650 | static int install_app(transport_type transport, const char* serial, int argc, |
| 1651 | const char** argv) |
Kenny Root | 597ea5b | 2011-08-05 11:19:45 -0700 | [diff] [blame] | 1652 | { |
| 1653 | static const char *const DATA_DEST = "/data/local/tmp/%s"; |
| 1654 | static const char *const SD_DEST = "/sdcard/tmp/%s"; |
| 1655 | const char* where = DATA_DEST; |
Kenny Root | 597ea5b | 2011-08-05 11:19:45 -0700 | [diff] [blame] | 1656 | int i; |
Jeff Sharkey | 960df97 | 2014-06-09 17:30:57 -0700 | [diff] [blame] | 1657 | struct stat sb; |
Kenny Root | 597ea5b | 2011-08-05 11:19:45 -0700 | [diff] [blame] | 1658 | |
| 1659 | for (i = 1; i < argc; i++) { |
Jeff Sharkey | 960df97 | 2014-06-09 17:30:57 -0700 | [diff] [blame] | 1660 | if (!strcmp(argv[i], "-s")) { |
Kenny Root | 597ea5b | 2011-08-05 11:19:45 -0700 | [diff] [blame] | 1661 | where = SD_DEST; |
| 1662 | } |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 1663 | } |
| 1664 | |
Jeff Sharkey | 960df97 | 2014-06-09 17:30:57 -0700 | [diff] [blame] | 1665 | // Find last APK argument. |
| 1666 | // All other arguments passed through verbatim. |
| 1667 | int last_apk = -1; |
| 1668 | for (i = argc - 1; i >= 0; i--) { |
Dan Albert | bac3474 | 2015-02-25 17:51:28 -0800 | [diff] [blame] | 1669 | const char* file = argv[i]; |
Jeff Sharkey | 960df97 | 2014-06-09 17:30:57 -0700 | [diff] [blame] | 1670 | char* dot = strrchr(file, '.'); |
| 1671 | if (dot && !strcasecmp(dot, ".apk")) { |
| 1672 | if (stat(file, &sb) == -1 || !S_ISREG(sb.st_mode)) { |
| 1673 | fprintf(stderr, "Invalid APK file: %s\n", file); |
| 1674 | return -1; |
| 1675 | } |
| 1676 | |
| 1677 | last_apk = i; |
| 1678 | break; |
| 1679 | } |
Kenny Root | 597ea5b | 2011-08-05 11:19:45 -0700 | [diff] [blame] | 1680 | } |
| 1681 | |
Jeff Sharkey | 960df97 | 2014-06-09 17:30:57 -0700 | [diff] [blame] | 1682 | if (last_apk == -1) { |
| 1683 | fprintf(stderr, "Missing APK file\n"); |
| 1684 | return -1; |
Kenny Root | 597ea5b | 2011-08-05 11:19:45 -0700 | [diff] [blame] | 1685 | } |
| 1686 | |
Dan Albert | bac3474 | 2015-02-25 17:51:28 -0800 | [diff] [blame] | 1687 | const char* apk_file = argv[last_apk]; |
Jeff Sharkey | 960df97 | 2014-06-09 17:30:57 -0700 | [diff] [blame] | 1688 | char apk_dest[PATH_MAX]; |
Kenny Root | 597ea5b | 2011-08-05 11:19:45 -0700 | [diff] [blame] | 1689 | snprintf(apk_dest, sizeof apk_dest, where, get_basename(apk_file)); |
Jeff Sharkey | 960df97 | 2014-06-09 17:30:57 -0700 | [diff] [blame] | 1690 | int err = do_sync_push(apk_file, apk_dest, 0 /* no show progress */); |
Kenny Root | 597ea5b | 2011-08-05 11:19:45 -0700 | [diff] [blame] | 1691 | if (err) { |
Kenny Root | 60733e9 | 2012-03-26 16:14:02 -0700 | [diff] [blame] | 1692 | goto cleanup_apk; |
Kenny Root | 597ea5b | 2011-08-05 11:19:45 -0700 | [diff] [blame] | 1693 | } else { |
Jeff Sharkey | 960df97 | 2014-06-09 17:30:57 -0700 | [diff] [blame] | 1694 | argv[last_apk] = apk_dest; /* destination name, not source location */ |
Kenny Root | 597ea5b | 2011-08-05 11:19:45 -0700 | [diff] [blame] | 1695 | } |
| 1696 | |
Elliott Hughes | 1555147 | 2015-04-21 17:58:55 -0700 | [diff] [blame] | 1697 | err = pm_command(transport, serial, argc, argv); |
Kenny Root | 597ea5b | 2011-08-05 11:19:45 -0700 | [diff] [blame] | 1698 | |
Kenny Root | 60733e9 | 2012-03-26 16:14:02 -0700 | [diff] [blame] | 1699 | cleanup_apk: |
Jeff Sharkey | 960df97 | 2014-06-09 17:30:57 -0700 | [diff] [blame] | 1700 | delete_file(transport, serial, apk_dest); |
| 1701 | return err; |
| 1702 | } |
| 1703 | |
Elliott Hughes | 5830577 | 2015-04-17 13:57:15 -0700 | [diff] [blame] | 1704 | static int install_multiple_app(transport_type transport, const char* serial, int argc, |
| 1705 | const char** argv) |
Jeff Sharkey | 960df97 | 2014-06-09 17:30:57 -0700 | [diff] [blame] | 1706 | { |
Jeff Sharkey | 960df97 | 2014-06-09 17:30:57 -0700 | [diff] [blame] | 1707 | int i; |
| 1708 | struct stat sb; |
Elliott Hughes | 2940ccf | 2015-04-17 14:07:52 -0700 | [diff] [blame] | 1709 | uint64_t total_size = 0; |
Jeff Sharkey | 960df97 | 2014-06-09 17:30:57 -0700 | [diff] [blame] | 1710 | |
| 1711 | // Find all APK arguments starting at end. |
| 1712 | // All other arguments passed through verbatim. |
| 1713 | int first_apk = -1; |
| 1714 | for (i = argc - 1; i >= 0; i--) { |
Dan Albert | bac3474 | 2015-02-25 17:51:28 -0800 | [diff] [blame] | 1715 | const char* file = argv[i]; |
Jeff Sharkey | 960df97 | 2014-06-09 17:30:57 -0700 | [diff] [blame] | 1716 | char* dot = strrchr(file, '.'); |
| 1717 | if (dot && !strcasecmp(dot, ".apk")) { |
| 1718 | if (stat(file, &sb) == -1 || !S_ISREG(sb.st_mode)) { |
| 1719 | fprintf(stderr, "Invalid APK file: %s\n", file); |
| 1720 | return -1; |
| 1721 | } |
| 1722 | |
| 1723 | total_size += sb.st_size; |
| 1724 | first_apk = i; |
| 1725 | } else { |
| 1726 | break; |
| 1727 | } |
Kenny Root | 597ea5b | 2011-08-05 11:19:45 -0700 | [diff] [blame] | 1728 | } |
| 1729 | |
Jeff Sharkey | 960df97 | 2014-06-09 17:30:57 -0700 | [diff] [blame] | 1730 | if (first_apk == -1) { |
| 1731 | fprintf(stderr, "Missing APK file\n"); |
| 1732 | return 1; |
| 1733 | } |
Kenny Root | 597ea5b | 2011-08-05 11:19:45 -0700 | [diff] [blame] | 1734 | |
Elliott Hughes | 53daee6 | 2015-04-19 13:17:01 -0700 | [diff] [blame] | 1735 | #if defined(_WIN32) // Remove when we're using clang for Win32. |
| 1736 | std::string cmd = android::base::StringPrintf("exec:pm install-create -S %u", (unsigned) total_size); |
| 1737 | #else |
Elliott Hughes | 2940ccf | 2015-04-17 14:07:52 -0700 | [diff] [blame] | 1738 | std::string cmd = android::base::StringPrintf("exec:pm install-create -S %" PRIu64, total_size); |
Elliott Hughes | 53daee6 | 2015-04-19 13:17:01 -0700 | [diff] [blame] | 1739 | #endif |
Jeff Sharkey | 960df97 | 2014-06-09 17:30:57 -0700 | [diff] [blame] | 1740 | for (i = 1; i < first_apk; i++) { |
Elliott Hughes | 6c34bba | 2015-04-17 20:11:08 -0700 | [diff] [blame] | 1741 | cmd += " " + escape_arg(argv[i]); |
Jeff Sharkey | 960df97 | 2014-06-09 17:30:57 -0700 | [diff] [blame] | 1742 | } |
| 1743 | |
| 1744 | // Create install session |
Elliott Hughes | 2baae3a | 2015-04-17 10:59:34 -0700 | [diff] [blame] | 1745 | int fd = adb_connect(cmd.c_str()); |
Jeff Sharkey | 960df97 | 2014-06-09 17:30:57 -0700 | [diff] [blame] | 1746 | if (fd < 0) { |
| 1747 | fprintf(stderr, "Connect error for create: %s\n", adb_error()); |
| 1748 | return -1; |
| 1749 | } |
Elliott Hughes | 2baae3a | 2015-04-17 10:59:34 -0700 | [diff] [blame] | 1750 | char buf[BUFSIZ]; |
Jeff Sharkey | 960df97 | 2014-06-09 17:30:57 -0700 | [diff] [blame] | 1751 | read_status_line(fd, buf, sizeof(buf)); |
| 1752 | adb_close(fd); |
| 1753 | |
| 1754 | int session_id = -1; |
| 1755 | if (!strncmp("Success", buf, 7)) { |
| 1756 | char* start = strrchr(buf, '['); |
| 1757 | char* end = strrchr(buf, ']'); |
| 1758 | if (start && end) { |
| 1759 | *end = '\0'; |
| 1760 | session_id = strtol(start + 1, NULL, 10); |
| 1761 | } |
| 1762 | } |
| 1763 | if (session_id < 0) { |
| 1764 | fprintf(stderr, "Failed to create session\n"); |
Christopher Tate | 71bbc67 | 2014-07-14 16:45:13 -0700 | [diff] [blame] | 1765 | fputs(buf, stderr); |
Jeff Sharkey | 960df97 | 2014-06-09 17:30:57 -0700 | [diff] [blame] | 1766 | return -1; |
| 1767 | } |
| 1768 | |
| 1769 | // Valid session, now stream the APKs |
| 1770 | int success = 1; |
| 1771 | for (i = first_apk; i < argc; i++) { |
Dan Albert | bac3474 | 2015-02-25 17:51:28 -0800 | [diff] [blame] | 1772 | const char* file = argv[i]; |
Jeff Sharkey | 960df97 | 2014-06-09 17:30:57 -0700 | [diff] [blame] | 1773 | if (stat(file, &sb) == -1) { |
| 1774 | fprintf(stderr, "Failed to stat %s\n", file); |
| 1775 | success = 0; |
| 1776 | goto finalize_session; |
| 1777 | } |
| 1778 | |
Elliott Hughes | 53daee6 | 2015-04-19 13:17:01 -0700 | [diff] [blame] | 1779 | #if defined(_WIN32) // Remove when we're using clang for Win32. |
| 1780 | std::string cmd = android::base::StringPrintf( |
| 1781 | "exec:pm install-write -S %u %d %d_%s -", |
| 1782 | (unsigned) sb.st_size, session_id, i, get_basename(file)); |
| 1783 | #else |
Elliott Hughes | 2940ccf | 2015-04-17 14:07:52 -0700 | [diff] [blame] | 1784 | std::string cmd = android::base::StringPrintf( |
| 1785 | "exec:pm install-write -S %" PRIu64 " %d %d_%s -", |
| 1786 | static_cast<uint64_t>(sb.st_size), session_id, i, get_basename(file)); |
Elliott Hughes | 53daee6 | 2015-04-19 13:17:01 -0700 | [diff] [blame] | 1787 | #endif |
Jeff Sharkey | 960df97 | 2014-06-09 17:30:57 -0700 | [diff] [blame] | 1788 | |
| 1789 | int localFd = adb_open(file, O_RDONLY); |
| 1790 | if (localFd < 0) { |
| 1791 | fprintf(stderr, "Failed to open %s: %s\n", file, adb_error()); |
| 1792 | success = 0; |
| 1793 | goto finalize_session; |
| 1794 | } |
| 1795 | |
Elliott Hughes | 2baae3a | 2015-04-17 10:59:34 -0700 | [diff] [blame] | 1796 | int remoteFd = adb_connect(cmd.c_str()); |
Jeff Sharkey | 960df97 | 2014-06-09 17:30:57 -0700 | [diff] [blame] | 1797 | if (remoteFd < 0) { |
| 1798 | fprintf(stderr, "Connect error for write: %s\n", adb_error()); |
| 1799 | adb_close(localFd); |
| 1800 | success = 0; |
| 1801 | goto finalize_session; |
| 1802 | } |
| 1803 | |
| 1804 | copy_to_file(localFd, remoteFd); |
| 1805 | read_status_line(remoteFd, buf, sizeof(buf)); |
| 1806 | |
| 1807 | adb_close(localFd); |
| 1808 | adb_close(remoteFd); |
| 1809 | |
| 1810 | if (strncmp("Success", buf, 7)) { |
| 1811 | fprintf(stderr, "Failed to write %s\n", file); |
Christopher Tate | 71bbc67 | 2014-07-14 16:45:13 -0700 | [diff] [blame] | 1812 | fputs(buf, stderr); |
Jeff Sharkey | 960df97 | 2014-06-09 17:30:57 -0700 | [diff] [blame] | 1813 | success = 0; |
| 1814 | goto finalize_session; |
| 1815 | } |
| 1816 | } |
| 1817 | |
| 1818 | finalize_session: |
Jeff Sharkey | ac77e1f | 2014-07-25 09:58:25 -0700 | [diff] [blame] | 1819 | // Commit session if we streamed everything okay; otherwise abandon |
Jeff Sharkey | 960df97 | 2014-06-09 17:30:57 -0700 | [diff] [blame] | 1820 | if (success) { |
| 1821 | snprintf(buf, sizeof(buf), "exec:pm install-commit %d", session_id); |
| 1822 | } else { |
Jeff Sharkey | ac77e1f | 2014-07-25 09:58:25 -0700 | [diff] [blame] | 1823 | snprintf(buf, sizeof(buf), "exec:pm install-abandon %d", session_id); |
Jeff Sharkey | 960df97 | 2014-06-09 17:30:57 -0700 | [diff] [blame] | 1824 | } |
| 1825 | |
| 1826 | fd = adb_connect(buf); |
| 1827 | if (fd < 0) { |
| 1828 | fprintf(stderr, "Connect error for finalize: %s\n", adb_error()); |
| 1829 | return -1; |
| 1830 | } |
| 1831 | read_status_line(fd, buf, sizeof(buf)); |
| 1832 | adb_close(fd); |
| 1833 | |
| 1834 | if (!strncmp("Success", buf, 7)) { |
Christopher Tate | 71bbc67 | 2014-07-14 16:45:13 -0700 | [diff] [blame] | 1835 | fputs(buf, stderr); |
Jeff Sharkey | 960df97 | 2014-06-09 17:30:57 -0700 | [diff] [blame] | 1836 | return 0; |
| 1837 | } else { |
| 1838 | fprintf(stderr, "Failed to finalize session\n"); |
Christopher Tate | 71bbc67 | 2014-07-14 16:45:13 -0700 | [diff] [blame] | 1839 | fputs(buf, stderr); |
Jeff Sharkey | 960df97 | 2014-06-09 17:30:57 -0700 | [diff] [blame] | 1840 | return -1; |
| 1841 | } |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 1842 | } |