Doug Zongker | 9270a20 | 2012-01-09 15:16:13 -0800 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (C) 2012 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 | |
| 17 | #include <unistd.h> |
| 18 | #include <dirent.h> |
| 19 | #include <errno.h> |
| 20 | #include <stdlib.h> |
| 21 | #include <string.h> |
| 22 | #include <sys/types.h> |
| 23 | #include <sys/wait.h> |
| 24 | #include <sys/stat.h> |
| 25 | #include <signal.h> |
| 26 | #include <fcntl.h> |
| 27 | |
| 28 | #include "ui.h" |
Doug Zongker | 9270a20 | 2012-01-09 15:16:13 -0800 | [diff] [blame] | 29 | #include "install.h" |
| 30 | #include "common.h" |
| 31 | #include "adb_install.h" |
Doug Zongker | 18a78e0 | 2014-07-10 07:31:46 -0700 | [diff] [blame] | 32 | #include "minadbd/fuse_adb_provider.h" |
| 33 | #include "fuse_sideload.h" |
Doug Zongker | 9270a20 | 2012-01-09 15:16:13 -0800 | [diff] [blame] | 34 | |
Elliott Hughes | cb22040 | 2016-09-23 15:30:55 -0700 | [diff] [blame] | 35 | #include <android-base/properties.h> |
| 36 | |
Elliott Hughes | 59bf0da | 2016-06-15 15:14:04 -0700 | [diff] [blame] | 37 | static void set_usb_driver(RecoveryUI* ui, bool enabled) { |
Doug Zongker | 9270a20 | 2012-01-09 15:16:13 -0800 | [diff] [blame] | 38 | int fd = open("/sys/class/android_usb/android0/enable", O_WRONLY); |
| 39 | if (fd < 0) { |
| 40 | ui->Print("failed to open driver control: %s\n", strerror(errno)); |
| 41 | return; |
| 42 | } |
Elliott Hughes | 7bad7c4 | 2015-04-28 17:24:24 -0700 | [diff] [blame] | 43 | if (TEMP_FAILURE_RETRY(write(fd, enabled ? "1" : "0", 1)) == -1) { |
Doug Zongker | 9270a20 | 2012-01-09 15:16:13 -0800 | [diff] [blame] | 44 | ui->Print("failed to set driver control: %s\n", strerror(errno)); |
| 45 | } |
| 46 | if (close(fd) < 0) { |
| 47 | ui->Print("failed to close driver control: %s\n", strerror(errno)); |
| 48 | } |
| 49 | } |
| 50 | |
Elliott Hughes | 59bf0da | 2016-06-15 15:14:04 -0700 | [diff] [blame] | 51 | static void stop_adbd(RecoveryUI* ui) { |
| 52 | ui->Print("Stopping adbd...\n"); |
Elliott Hughes | cb22040 | 2016-09-23 15:30:55 -0700 | [diff] [blame] | 53 | android::base::SetProperty("ctl.stop", "adbd"); |
Elliott Hughes | 59bf0da | 2016-06-15 15:14:04 -0700 | [diff] [blame] | 54 | set_usb_driver(ui, false); |
Doug Zongker | 9270a20 | 2012-01-09 15:16:13 -0800 | [diff] [blame] | 55 | } |
| 56 | |
Elliott Hughes | 59bf0da | 2016-06-15 15:14:04 -0700 | [diff] [blame] | 57 | static void maybe_restart_adbd(RecoveryUI* ui) { |
Elliott Hughes | f14af80 | 2015-02-10 14:46:14 -0800 | [diff] [blame] | 58 | if (is_ro_debuggable()) { |
Doug Zongker | 9270a20 | 2012-01-09 15:16:13 -0800 | [diff] [blame] | 59 | ui->Print("Restarting adbd...\n"); |
Elliott Hughes | 59bf0da | 2016-06-15 15:14:04 -0700 | [diff] [blame] | 60 | set_usb_driver(ui, true); |
Elliott Hughes | cb22040 | 2016-09-23 15:30:55 -0700 | [diff] [blame] | 61 | android::base::SetProperty("ctl.start", "adbd"); |
Doug Zongker | 9270a20 | 2012-01-09 15:16:13 -0800 | [diff] [blame] | 62 | } |
| 63 | } |
| 64 | |
Doug Zongker | 075ad80 | 2014-06-26 15:35:51 -0700 | [diff] [blame] | 65 | // How long (in seconds) we wait for the host to start sending us a |
| 66 | // package, before timing out. |
| 67 | #define ADB_INSTALL_TIMEOUT 300 |
| 68 | |
Elliott Hughes | 59bf0da | 2016-06-15 15:14:04 -0700 | [diff] [blame] | 69 | int apply_from_adb(RecoveryUI* ui, bool* wipe_cache, const char* install_file) { |
Tao Bao | 682c34b | 2015-04-07 17:16:35 -0700 | [diff] [blame] | 70 | modified_flash = true; |
| 71 | |
Elliott Hughes | 59bf0da | 2016-06-15 15:14:04 -0700 | [diff] [blame] | 72 | stop_adbd(ui); |
| 73 | set_usb_driver(ui, true); |
Doug Zongker | 9270a20 | 2012-01-09 15:16:13 -0800 | [diff] [blame] | 74 | |
| 75 | ui->Print("\n\nNow send the package you want to apply\n" |
| 76 | "to the device with \"adb sideload <filename>\"...\n"); |
| 77 | |
| 78 | pid_t child; |
| 79 | if ((child = fork()) == 0) { |
| 80 | execl("/sbin/recovery", "recovery", "--adbd", NULL); |
| 81 | _exit(-1); |
| 82 | } |
Doug Zongker | 075ad80 | 2014-06-26 15:35:51 -0700 | [diff] [blame] | 83 | |
Doug Zongker | 18a78e0 | 2014-07-10 07:31:46 -0700 | [diff] [blame] | 84 | // FUSE_SIDELOAD_HOST_PATHNAME will start to exist once the host |
Doug Zongker | 075ad80 | 2014-06-26 15:35:51 -0700 | [diff] [blame] | 85 | // connects and starts serving a package. Poll for its |
| 86 | // appearance. (Note that inotify doesn't work with FUSE.) |
Tao Bao | 80e46e0 | 2015-06-03 10:49:29 -0700 | [diff] [blame] | 87 | int result = INSTALL_ERROR; |
Doug Zongker | 9270a20 | 2012-01-09 15:16:13 -0800 | [diff] [blame] | 88 | int status; |
Doug Zongker | 075ad80 | 2014-06-26 15:35:51 -0700 | [diff] [blame] | 89 | bool waited = false; |
| 90 | struct stat st; |
| 91 | for (int i = 0; i < ADB_INSTALL_TIMEOUT; ++i) { |
| 92 | if (waitpid(child, &status, WNOHANG) != 0) { |
| 93 | result = INSTALL_ERROR; |
| 94 | waited = true; |
| 95 | break; |
| 96 | } |
| 97 | |
Doug Zongker | 18a78e0 | 2014-07-10 07:31:46 -0700 | [diff] [blame] | 98 | if (stat(FUSE_SIDELOAD_HOST_PATHNAME, &st) != 0) { |
Doug Zongker | 075ad80 | 2014-06-26 15:35:51 -0700 | [diff] [blame] | 99 | if (errno == ENOENT && i < ADB_INSTALL_TIMEOUT-1) { |
| 100 | sleep(1); |
| 101 | continue; |
| 102 | } else { |
Elliott Hughes | 018ed31 | 2015-04-08 16:51:36 -0700 | [diff] [blame] | 103 | ui->Print("\nTimed out waiting for package.\n\n"); |
Doug Zongker | 075ad80 | 2014-06-26 15:35:51 -0700 | [diff] [blame] | 104 | result = INSTALL_ERROR; |
| 105 | kill(child, SIGKILL); |
| 106 | break; |
| 107 | } |
| 108 | } |
Tianjie Xu | 1625583 | 2016-04-30 11:49:59 -0700 | [diff] [blame] | 109 | result = install_package(FUSE_SIDELOAD_HOST_PATHNAME, wipe_cache, install_file, false, 0); |
Doug Zongker | 075ad80 | 2014-06-26 15:35:51 -0700 | [diff] [blame] | 110 | break; |
| 111 | } |
| 112 | |
| 113 | if (!waited) { |
| 114 | // Calling stat() on this magic filename signals the minadbd |
| 115 | // subprocess to shut down. |
Doug Zongker | 18a78e0 | 2014-07-10 07:31:46 -0700 | [diff] [blame] | 116 | stat(FUSE_SIDELOAD_HOST_EXIT_PATHNAME, &st); |
Doug Zongker | 075ad80 | 2014-06-26 15:35:51 -0700 | [diff] [blame] | 117 | |
| 118 | // TODO(dougz): there should be a way to cancel waiting for a |
| 119 | // package (by pushing some button combo on the device). For now |
| 120 | // you just have to 'adb sideload' a file that's not a valid |
| 121 | // package, like "/dev/null". |
| 122 | waitpid(child, &status, 0); |
| 123 | } |
| 124 | |
Doug Zongker | 9270a20 | 2012-01-09 15:16:13 -0800 | [diff] [blame] | 125 | if (!WIFEXITED(status) || WEXITSTATUS(status) != 0) { |
Doug Zongker | 075ad80 | 2014-06-26 15:35:51 -0700 | [diff] [blame] | 126 | if (WEXITSTATUS(status) == 3) { |
| 127 | ui->Print("\nYou need adb 1.0.32 or newer to sideload\nto this device.\n\n"); |
| 128 | } else if (!WIFSIGNALED(status)) { |
| 129 | ui->Print("\n(adbd status %d)\n", WEXITSTATUS(status)); |
| 130 | } |
Doug Zongker | 9270a20 | 2012-01-09 15:16:13 -0800 | [diff] [blame] | 131 | } |
| 132 | |
Elliott Hughes | 59bf0da | 2016-06-15 15:14:04 -0700 | [diff] [blame] | 133 | set_usb_driver(ui, false); |
| 134 | maybe_restart_adbd(ui); |
Doug Zongker | 9270a20 | 2012-01-09 15:16:13 -0800 | [diff] [blame] | 135 | |
Doug Zongker | 075ad80 | 2014-06-26 15:35:51 -0700 | [diff] [blame] | 136 | return result; |
Doug Zongker | 9270a20 | 2012-01-09 15:16:13 -0800 | [diff] [blame] | 137 | } |