blob: 771994cd91a3ac041b13e39cc71f152c26fa9caa [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
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>
Dees_Troy2673cec2013-04-02 20:22:16 +000027#include <stdio.h>
Doug Zongker9270a202012-01-09 15:16:13 -080028
29#include "ui.h"
30#include "cutils/properties.h"
31#include "install.h"
32#include "common.h"
33#include "adb_install.h"
Doug Zongker18a78e02014-07-10 07:31:46 -070034#include "minadbd/fuse_adb_provider.h"
35#include "fuse_sideload.h"
Ethan Yonkerf1179622016-08-25 15:32:21 -050036#ifdef USE_OLD_VERIFIER
Ethan Yonker4bf259f2016-08-29 11:50:34 -050037#include "verifier24/verifier.h"
Ethan Yonkerf1179622016-08-25 15:32:21 -050038#else
Ethan Yonker34ae4832016-08-24 15:32:18 -050039#include "verifier.h"
Ethan Yonkerf1179622016-08-25 15:32:21 -050040#endif
Doug Zongker9270a202012-01-09 15:16:13 -080041
Ethan Yonker8373cfe2017-09-08 06:50:54 -050042static void set_usb_driver(bool enabled) {
Doug Zongker9270a202012-01-09 15:16:13 -080043 int fd = open("/sys/class/android_usb/android0/enable", O_WRONLY);
44 if (fd < 0) {
Dees_Troye00c83a2012-09-21 10:00:52 -040045/* These error messages show when built in older Android branches (e.g. Gingerbread)
46 It's not a critical error so we're disabling the error messages.
Doug Zongker9270a202012-01-09 15:16:13 -080047 ui->Print("failed to open driver control: %s\n", strerror(errno));
Dees_Troye00c83a2012-09-21 10:00:52 -040048*/
Dees_Troy2673cec2013-04-02 20:22:16 +000049 printf("failed to open driver control: %s\n", strerror(errno));
Doug Zongker9270a202012-01-09 15:16:13 -080050 return;
51 }
Ethan Yonkerc798c9c2015-10-09 11:15:26 -050052
Elliott Hughes2f5feed2015-04-28 17:24:24 -070053 if (TEMP_FAILURE_RETRY(write(fd, enabled ? "1" : "0", 1)) == -1) {
Dees_Troye00c83a2012-09-21 10:00:52 -040054/*
Doug Zongker9270a202012-01-09 15:16:13 -080055 ui->Print("failed to set driver control: %s\n", strerror(errno));
Dees_Troye00c83a2012-09-21 10:00:52 -040056*/
Dees_Troy2673cec2013-04-02 20:22:16 +000057 printf("failed to set driver control: %s\n", strerror(errno));
Doug Zongker9270a202012-01-09 15:16:13 -080058 }
59 if (close(fd) < 0) {
Dees_Troye00c83a2012-09-21 10:00:52 -040060/*
Doug Zongker9270a202012-01-09 15:16:13 -080061 ui->Print("failed to close driver control: %s\n", strerror(errno));
Dees_Troye00c83a2012-09-21 10:00:52 -040062*/
Dees_Troy2673cec2013-04-02 20:22:16 +000063 printf("failed to close driver control: %s\n", strerror(errno));
Doug Zongker9270a202012-01-09 15:16:13 -080064 }
65}
66
Ethan Yonker8373cfe2017-09-08 06:50:54 -050067static void stop_adbd() {
68 printf("Stopping adbd...\n");
Doug Zongker9270a202012-01-09 15:16:13 -080069 property_set("ctl.stop", "adbd");
70 set_usb_driver(false);
71}
72
Ethan Yonker8373cfe2017-09-08 06:50:54 -050073static bool is_ro_debuggable() {
Ethan Yonkerc798c9c2015-10-09 11:15:26 -050074 char value[PROPERTY_VALUE_MAX+1];
75 return (property_get("ro.debuggable", value, NULL) == 1 && value[0] == '1');
76}
Doug Zongker9270a202012-01-09 15:16:13 -080077
Ethan Yonker8373cfe2017-09-08 06:50:54 -050078static void maybe_restart_adbd() {
Elliott Hughesf14af802015-02-10 14:46:14 -080079 if (is_ro_debuggable()) {
Dees_Troy2673cec2013-04-02 20:22:16 +000080 printf("Restarting adbd...\n");
Doug Zongker9270a202012-01-09 15:16:13 -080081 set_usb_driver(true);
82 property_set("ctl.start", "adbd");
83 }
84}
85
Doug Zongker075ad802014-06-26 15:35:51 -070086// How long (in seconds) we wait for the host to start sending us a
87// package, before timing out.
88#define ADB_INSTALL_TIMEOUT 300
89
Doug Zongker9270a202012-01-09 15:16:13 -080090int
thatcc8ddca2015-01-03 01:59:36 +010091apply_from_adb(const char* install_file, pid_t* child_pid) {
Doug Zongker9270a202012-01-09 15:16:13 -080092
93 stop_adbd();
94 set_usb_driver(true);
Dees_Troy2673cec2013-04-02 20:22:16 +000095/*
Elliott Hughes59bf0da2016-06-15 15:14:04 -070096int apply_from_adb(RecoveryUI* ui, bool* wipe_cache, const char* install_file) {
Tao Bao682c34b2015-04-07 17:16:35 -070097 modified_flash = true;
98
Elliott Hughes59bf0da2016-06-15 15:14:04 -070099 stop_adbd(ui);
100 set_usb_driver(ui, true);
Doug Zongker9270a202012-01-09 15:16:13 -0800101
102 ui->Print("\n\nNow send the package you want to apply\n"
103 "to the device with \"adb sideload <filename>\"...\n");
Dees_Troy2673cec2013-04-02 20:22:16 +0000104*/
Doug Zongker9270a202012-01-09 15:16:13 -0800105 pid_t child;
106 if ((child = fork()) == 0) {
Dees_Troy9a4b5692012-09-19 15:09:45 -0400107 execl("/sbin/recovery", "recovery", "--adbd", install_file, NULL);
Doug Zongker9270a202012-01-09 15:16:13 -0800108 _exit(-1);
109 }
Doug Zongker075ad802014-06-26 15:35:51 -0700110
thatcc8ddca2015-01-03 01:59:36 +0100111 *child_pid = child;
112 // caller can now kill the child thread from another thread
Ethan Yonkera1674162014-11-06 08:35:10 -0600113
Doug Zongker18a78e02014-07-10 07:31:46 -0700114 // FUSE_SIDELOAD_HOST_PATHNAME will start to exist once the host
Doug Zongker075ad802014-06-26 15:35:51 -0700115 // connects and starts serving a package. Poll for its
116 // appearance. (Note that inotify doesn't work with FUSE.)
Tao Bao80e46e02015-06-03 10:49:29 -0700117 int result = INSTALL_ERROR;
Doug Zongker9270a202012-01-09 15:16:13 -0800118 int status;
Doug Zongker075ad802014-06-26 15:35:51 -0700119 bool waited = false;
120 struct stat st;
121 for (int i = 0; i < ADB_INSTALL_TIMEOUT; ++i) {
122 if (waitpid(child, &status, WNOHANG) != 0) {
Ethan Yonker26860092014-11-06 09:49:25 -0600123 result = -1;
Doug Zongker075ad802014-06-26 15:35:51 -0700124 waited = true;
125 break;
126 }
127
Doug Zongker18a78e02014-07-10 07:31:46 -0700128 if (stat(FUSE_SIDELOAD_HOST_PATHNAME, &st) != 0) {
Doug Zongker075ad802014-06-26 15:35:51 -0700129 if (errno == ENOENT && i < ADB_INSTALL_TIMEOUT-1) {
130 sleep(1);
131 continue;
132 } else {
thatcc8ddca2015-01-03 01:59:36 +0100133 printf("\nTimed out waiting for package: %s\n\n", strerror(errno));
Ethan Yonker26860092014-11-06 09:49:25 -0600134 result = -1;
Doug Zongker075ad802014-06-26 15:35:51 -0700135 kill(child, SIGKILL);
136 break;
137 }
138 }
Ethan Yonker24813422014-11-07 17:19:07 -0600139 // Install is handled elsewhere in TWRP
thatcc8ddca2015-01-03 01:59:36 +0100140 //install_package(FUSE_SIDELOAD_HOST_PATHNAME, wipe_cache, install_file, false);
141 return 0;
Doug Zongker075ad802014-06-26 15:35:51 -0700142 }
143
thatcc8ddca2015-01-03 01:59:36 +0100144 // if we got here, something failed
145 *child_pid = 0;
146
147 if (!waited) {
Doug Zongker075ad802014-06-26 15:35:51 -0700148 // Calling stat() on this magic filename signals the minadbd
149 // subprocess to shut down.
Doug Zongker18a78e02014-07-10 07:31:46 -0700150 stat(FUSE_SIDELOAD_HOST_EXIT_PATHNAME, &st);
Doug Zongker075ad802014-06-26 15:35:51 -0700151
152 // TODO(dougz): there should be a way to cancel waiting for a
153 // package (by pushing some button combo on the device). For now
154 // you just have to 'adb sideload' a file that's not a valid
155 // package, like "/dev/null".
156 waitpid(child, &status, 0);
thatcc8ddca2015-01-03 01:59:36 +0100157 }
Doug Zongker075ad802014-06-26 15:35:51 -0700158
thatcc8ddca2015-01-03 01:59:36 +0100159 if (!WIFEXITED(status) || WEXITSTATUS(status) != 0) {
160 if (WEXITSTATUS(status) == 3) {
161 printf("\nYou need adb 1.0.32 or newer to sideload\nto this device.\n\n");
162 result = -2;
163 } else if (!WIFSIGNALED(status)) {
164 printf("status %d\n", WEXITSTATUS(status));
Doug Zongker075ad802014-06-26 15:35:51 -0700165 }
thatcc8ddca2015-01-03 01:59:36 +0100166 }
Doug Zongker9270a202012-01-09 15:16:13 -0800167
thatcc8ddca2015-01-03 01:59:36 +0100168 set_usb_driver(false);
169 maybe_restart_adbd();
170
171 return result;
Doug Zongker9270a202012-01-09 15:16:13 -0800172}