blob: 5296ff608619710aa45b3e22af3d9b2c80ef20eb [file] [log] [blame]
Doug Zongker9270a202012-01-09 15:16:13 -08001/*
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
xunchang24788852019-03-22 16:08:52 -070017#include "install/adb_install.h"
Tao Bao0150d012017-05-01 11:31:28 -070018
Doug Zongker9270a202012-01-09 15:16:13 -080019#include <errno.h>
Tao Bao0150d012017-05-01 11:31:28 -070020#include <fcntl.h>
21#include <signal.h>
Doug Zongker9270a202012-01-09 15:16:13 -080022#include <stdlib.h>
23#include <string.h>
Tao Bao0150d012017-05-01 11:31:28 -070024#include <sys/stat.h>
Doug Zongker9270a202012-01-09 15:16:13 -080025#include <sys/types.h>
26#include <sys/wait.h>
Tao Bao0150d012017-05-01 11:31:28 -070027#include <unistd.h>
Doug Zongker9270a202012-01-09 15:16:13 -080028
Tao Bao0167d4c2017-05-11 14:44:15 -070029#include <android-base/logging.h>
Elliott Hughescb220402016-09-23 15:30:55 -070030#include <android-base/properties.h>
31
Tao Bao0150d012017-05-01 11:31:28 -070032#include "fuse_sideload.h"
xunchang24788852019-03-22 16:08:52 -070033#include "install/install.h"
Tianjie Xu8f397302018-08-20 13:40:47 -070034#include "recovery_ui/ui.h"
Tao Bao0150d012017-05-01 11:31:28 -070035
xunchang24788852019-03-22 16:08:52 -070036static bool SetUsbConfig(const std::string& state) {
37 android::base::SetProperty("sys.usb.config", state);
38 return android::base::WaitForProperty("sys.usb.state", state);
39}
40
41int apply_from_adb(bool* wipe_cache, RecoveryUI* ui) {
Hridya Valsarajue4ef4532018-08-31 11:57:51 -070042 // Save the usb state to restore after the sideload operation.
43 std::string usb_state = android::base::GetProperty("sys.usb.state", "none");
44 // Clean up state and stop adbd.
45 if (usb_state != "none" && !SetUsbConfig("none")) {
46 LOG(ERROR) << "Failed to clear USB config";
47 return INSTALL_ERROR;
48 }
Tao Bao682c34b2015-04-07 17:16:35 -070049
Tao Bao0150d012017-05-01 11:31:28 -070050 ui->Print(
51 "\n\nNow send the package you want to apply\n"
52 "to the device with \"adb sideload <filename>\"...\n");
Doug Zongker9270a202012-01-09 15:16:13 -080053
Tao Bao0150d012017-05-01 11:31:28 -070054 pid_t child;
55 if ((child = fork()) == 0) {
Hridya Valsarajucfb3c922018-07-26 13:04:06 -070056 execl("/system/bin/recovery", "recovery", "--adbd", nullptr);
Tao Bao0150d012017-05-01 11:31:28 -070057 _exit(EXIT_FAILURE);
58 }
Doug Zongker9270a202012-01-09 15:16:13 -080059
Hridya Valsarajue4ef4532018-08-31 11:57:51 -070060 if (!SetUsbConfig("sideload")) {
61 LOG(ERROR) << "Failed to set usb config to sideload";
62 return INSTALL_ERROR;
63 }
64
Tao Bao0150d012017-05-01 11:31:28 -070065 // How long (in seconds) we wait for the host to start sending us a package, before timing out.
66 static constexpr int ADB_INSTALL_TIMEOUT = 300;
67
68 // FUSE_SIDELOAD_HOST_PATHNAME will start to exist once the host connects and starts serving a
69 // package. Poll for its appearance. (Note that inotify doesn't work with FUSE.)
70 int result = INSTALL_ERROR;
71 int status;
72 bool waited = false;
73 for (int i = 0; i < ADB_INSTALL_TIMEOUT; ++i) {
74 if (waitpid(child, &status, WNOHANG) != 0) {
75 result = INSTALL_ERROR;
76 waited = true;
77 break;
Doug Zongker9270a202012-01-09 15:16:13 -080078 }
Doug Zongker075ad802014-06-26 15:35:51 -070079
Doug Zongker075ad802014-06-26 15:35:51 -070080 struct stat st;
Tao Bao0150d012017-05-01 11:31:28 -070081 if (stat(FUSE_SIDELOAD_HOST_PATHNAME, &st) != 0) {
82 if (errno == ENOENT && i < ADB_INSTALL_TIMEOUT - 1) {
83 sleep(1);
84 continue;
85 } else {
86 ui->Print("\nTimed out waiting for package.\n\n");
87 result = INSTALL_ERROR;
88 kill(child, SIGKILL);
Doug Zongker075ad802014-06-26 15:35:51 -070089 break;
Tao Bao0150d012017-05-01 11:31:28 -070090 }
Doug Zongker075ad802014-06-26 15:35:51 -070091 }
xunchang24788852019-03-22 16:08:52 -070092 result = install_package(FUSE_SIDELOAD_HOST_PATHNAME, wipe_cache, false, 0, ui);
Tao Bao0150d012017-05-01 11:31:28 -070093 break;
94 }
Doug Zongker075ad802014-06-26 15:35:51 -070095
Tao Bao0150d012017-05-01 11:31:28 -070096 if (!waited) {
97 // Calling stat() on this magic filename signals the minadbd subprocess to shut down.
98 struct stat st;
99 stat(FUSE_SIDELOAD_HOST_EXIT_PATHNAME, &st);
Doug Zongker075ad802014-06-26 15:35:51 -0700100
Tao Bao0150d012017-05-01 11:31:28 -0700101 // TODO: there should be a way to cancel waiting for a package (by pushing some button combo on
102 // the device). For now you just have to 'adb sideload' a file that's not a valid package, like
103 // "/dev/null".
104 waitpid(child, &status, 0);
105 }
106
107 if (!WIFEXITED(status) || WEXITSTATUS(status) != 0) {
108 if (WEXITSTATUS(status) == 3) {
109 ui->Print("\nYou need adb 1.0.32 or newer to sideload\nto this device.\n\n");
110 } else if (!WIFSIGNALED(status)) {
111 ui->Print("\n(adbd status %d)\n", WEXITSTATUS(status));
Doug Zongker075ad802014-06-26 15:35:51 -0700112 }
Tao Bao0150d012017-05-01 11:31:28 -0700113 }
Doug Zongker075ad802014-06-26 15:35:51 -0700114
Hridya Valsarajue4ef4532018-08-31 11:57:51 -0700115 // Clean up before switching to the older state, for example setting the state
116 // to none sets sys/class/android_usb/android0/enable to 0.
117 if (!SetUsbConfig("none")) {
118 LOG(ERROR) << "Failed to clear USB config";
119 }
120
121 if (usb_state != "none") {
122 if (!SetUsbConfig(usb_state)) {
123 LOG(ERROR) << "Failed to set USB config to " << usb_state;
124 }
125 }
Doug Zongker9270a202012-01-09 15:16:13 -0800126
Tao Bao0150d012017-05-01 11:31:28 -0700127 return result;
Doug Zongker9270a202012-01-09 15:16:13 -0800128}