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