blob: 438da9fc33569c1bfb466aa6e22bb76f580a91e3 [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
Tao Bao0150d012017-05-01 11:31:28 -070017#include "adb_install.h"
18
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 "common.h"
33#include "fuse_sideload.h"
34#include "install.h"
35#include "ui.h"
36
Tao Bao641fa972018-04-25 18:59:40 -070037int apply_from_adb(bool* wipe_cache) {
Tao Bao0150d012017-05-01 11:31:28 -070038 modified_flash = true;
Hridya Valsarajue4ef4532018-08-31 11:57:51 -070039 // Save the usb state to restore after the sideload operation.
40 std::string usb_state = android::base::GetProperty("sys.usb.state", "none");
41 // Clean up state and stop adbd.
42 if (usb_state != "none" && !SetUsbConfig("none")) {
43 LOG(ERROR) << "Failed to clear USB config";
44 return INSTALL_ERROR;
45 }
Tao Bao682c34b2015-04-07 17:16:35 -070046
Tao Bao0150d012017-05-01 11:31:28 -070047 ui->Print(
48 "\n\nNow send the package you want to apply\n"
49 "to the device with \"adb sideload <filename>\"...\n");
Doug Zongker9270a202012-01-09 15:16:13 -080050
Tao Bao0150d012017-05-01 11:31:28 -070051 pid_t child;
52 if ((child = fork()) == 0) {
Hridya Valsarajucfb3c922018-07-26 13:04:06 -070053 execl("/system/bin/recovery", "recovery", "--adbd", nullptr);
Tao Bao0150d012017-05-01 11:31:28 -070054 _exit(EXIT_FAILURE);
55 }
Doug Zongker9270a202012-01-09 15:16:13 -080056
Hridya Valsarajue4ef4532018-08-31 11:57:51 -070057 if (!SetUsbConfig("sideload")) {
58 LOG(ERROR) << "Failed to set usb config to sideload";
59 return INSTALL_ERROR;
60 }
61
Tao Bao0150d012017-05-01 11:31:28 -070062 // How long (in seconds) we wait for the host to start sending us a package, before timing out.
63 static constexpr int ADB_INSTALL_TIMEOUT = 300;
64
65 // FUSE_SIDELOAD_HOST_PATHNAME will start to exist once the host connects and starts serving a
66 // package. Poll for its appearance. (Note that inotify doesn't work with FUSE.)
67 int result = INSTALL_ERROR;
68 int status;
69 bool waited = false;
70 for (int i = 0; i < ADB_INSTALL_TIMEOUT; ++i) {
71 if (waitpid(child, &status, WNOHANG) != 0) {
72 result = INSTALL_ERROR;
73 waited = true;
74 break;
Doug Zongker9270a202012-01-09 15:16:13 -080075 }
Doug Zongker075ad802014-06-26 15:35:51 -070076
Doug Zongker075ad802014-06-26 15:35:51 -070077 struct stat st;
Tao Bao0150d012017-05-01 11:31:28 -070078 if (stat(FUSE_SIDELOAD_HOST_PATHNAME, &st) != 0) {
79 if (errno == ENOENT && i < ADB_INSTALL_TIMEOUT - 1) {
80 sleep(1);
81 continue;
82 } else {
83 ui->Print("\nTimed out waiting for package.\n\n");
84 result = INSTALL_ERROR;
85 kill(child, SIGKILL);
Doug Zongker075ad802014-06-26 15:35:51 -070086 break;
Tao Bao0150d012017-05-01 11:31:28 -070087 }
Doug Zongker075ad802014-06-26 15:35:51 -070088 }
Tao Bao641fa972018-04-25 18:59:40 -070089 result = install_package(FUSE_SIDELOAD_HOST_PATHNAME, wipe_cache, false, 0);
Tao Bao0150d012017-05-01 11:31:28 -070090 break;
91 }
Doug Zongker075ad802014-06-26 15:35:51 -070092
Tao Bao0150d012017-05-01 11:31:28 -070093 if (!waited) {
94 // Calling stat() on this magic filename signals the minadbd subprocess to shut down.
95 struct stat st;
96 stat(FUSE_SIDELOAD_HOST_EXIT_PATHNAME, &st);
Doug Zongker075ad802014-06-26 15:35:51 -070097
Tao Bao0150d012017-05-01 11:31:28 -070098 // TODO: there should be a way to cancel waiting for a package (by pushing some button combo on
99 // the device). For now you just have to 'adb sideload' a file that's not a valid package, like
100 // "/dev/null".
101 waitpid(child, &status, 0);
102 }
103
104 if (!WIFEXITED(status) || WEXITSTATUS(status) != 0) {
105 if (WEXITSTATUS(status) == 3) {
106 ui->Print("\nYou need adb 1.0.32 or newer to sideload\nto this device.\n\n");
107 } else if (!WIFSIGNALED(status)) {
108 ui->Print("\n(adbd status %d)\n", WEXITSTATUS(status));
Doug Zongker075ad802014-06-26 15:35:51 -0700109 }
Tao Bao0150d012017-05-01 11:31:28 -0700110 }
Doug Zongker075ad802014-06-26 15:35:51 -0700111
Hridya Valsarajue4ef4532018-08-31 11:57:51 -0700112 // Clean up before switching to the older state, for example setting the state
113 // to none sets sys/class/android_usb/android0/enable to 0.
114 if (!SetUsbConfig("none")) {
115 LOG(ERROR) << "Failed to clear USB config";
116 }
117
118 if (usb_state != "none") {
119 if (!SetUsbConfig(usb_state)) {
120 LOG(ERROR) << "Failed to set USB config to " << usb_state;
121 }
122 }
Doug Zongker9270a202012-01-09 15:16:13 -0800123
Tao Bao0150d012017-05-01 11:31:28 -0700124 return result;
Doug Zongker9270a202012-01-09 15:16:13 -0800125}