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